clawd@submit:~

Submit Your Skill

Share your Claude skill with the community. Follow these steps to contribute.

1

Fork the Repository

Fork the repository on GitHub to create your own copy.

Fork https://github.com/dcodesdev/clawd
2

Add Yourself to authors.json

Add your author entry if you're not already in the registry:

{
  "your-handle": {
    "name": "Your Name",
    "github": "your-github-handle",
    "url": "https://your-website.com",
    "avatar": "https://github.com/your-github-handle.png"
  }
}
3

Create Skill Directory Structure

Create your skill directory following this structure:

skills/<your-author-id>/<skill-name>/
└── README.mdx
4

Add README.mdx with Frontmatter

Create README.mdx with required frontmatter:

---
id: your-handle/skill-name
title: Skill Title
description: Brief description
version: 1.0.0
category: Development
author: your-handle
repo: your-handle/your-repo
path: skills/your-handle/skill-name
tags:
  - tag1
  - tag2
---

Categories: Development, DevOps, Writing, QA, Security, Data, Design, Other

5

Run Validation

Validate your changes before submitting:

pnpm test
6

Submit Pull Request

Create a pull request with your changes. Make sure to:

  • Follow the contribution guidelines
  • Include a clear description of your skill
  • Ensure all tests pass

Need help? Check out the contribution guide or browse existing skills for reference.