We're excited to announce Community Skills—a place where developers can share and discover AI coding instructions.

What Are Community Skills?

Community Skills is an open repository where developers share their SuperClawd skill files. Instead of building your coding standards from scratch, you can:

  • Browse skills created by other developers
  • Import them directly into your SuperClawd workspace
  • Contribute your own skills for others to use

It's like a package registry, but for AI coding instructions.

Why We Built This

Every developer has coding standards they've refined over time. React patterns, TypeScript guidelines, code review checklists—these represent hard-won knowledge.

But this knowledge often stays siloed. You might have excellent React guidelines, while another developer has great testing patterns. Neither of you benefits from the other's expertise.

Community Skills changes that. Share once, benefit everyone.

How It Works

Discovering Skills

  1. Visit github.com/superclawd-ai/superclawd
  2. Browse the skills/ directory
  3. Find a skill you like
  4. Download the JSON file
  5. Import it into SuperClawd via Skills → Import

That's it. The skill is now in your workspace, ready to guide your AI assistant.

What's Available

We're starting with example skills for:

  • React — Component patterns, hooks best practices, state management
  • TypeScript — Strict typing, null safety, generics usage

More categories will grow as the community contributes.

Quality You Can Trust

Every skill goes through validation before it's accepted:

  • Schema validation — Correct JSON structure and required fields
  • File naming — Consistent kebab-case naming
  • Catalog listing — Every skill is documented and discoverable

Pull requests that don't pass CI checks won't be merged. This keeps the repository clean and reliable.

Contributing Your Skills

Have coding standards that work well for you? Share them!

The contribution process is simple:

  1. Fork the repository
  2. Add your skill JSON file
  3. Add it to the catalog
  4. Submit a pull request

We review contributions for quality and merge them for everyone to use.

See our Contributing Guide for detailed instructions.

The Skill Format

Skills come in two formats. Structured skills organize instructions into categories:

JSON
{
  "name": "React Best Practices",
  "action": "code",
  "executionMode": "auto",
  "description": "Guidelines for writing clean React code",
  "format": "structured",
  "categories": [
    {
      "name": "Component Structure",
      "instructions": [
        {
          "content": "Use functional components with hooks",
          "type": "direct"
        }
      ]
    }
  ]
}

With structured skills you organize instructions into categories, and each instruction can be:

  • Direct — Always applies
  • Conditional — Applies in specific situations (with sub-instructions)

Markdown skills are even simpler — a single free-form markdown body:

JSON
{
  "name": "Code Review Checklist",
  "action": "review",
  "executionMode": "auto",
  "description": "A checklist for thorough code reviews",
  "format": "markdown",
  "body": "# Code Review Checklist\n\n## Correctness\n- Does the change do what the PR says?\n"
}

Either way, the skill loads on demand when its action matches your work. (Skills exported before the format field existed import as structured — older files keep working.)

What's Next

This is just the beginning. We're planning:

  • More example skills across different languages and frameworks
  • Skill ratings to surface the most useful contributions
  • Categories for easier discovery
  • In-app browsing to import skills without leaving SuperClawd

Get Involved

Community Skills is only as good as its contributors. Here's how you can help:

  1. Browse and use existing skills — give feedback on what works
  2. Contribute your own skills — share your expertise
  3. Request skills — tell us what you'd like to see
  4. Spread the word — share with developers who might benefit

Visit github.com/superclawd-ai/superclawd to get started.


Have questions or ideas? Join the GitHub Discussions or reach out to us directly.

Pro tip: Use coupon code WELCOME in your billing settings to get free credits when you sign up for SuperClawd!