Open-source skill repository for ClawPump AI agents. Anyone can contribute skills that get listed in the Community Skills section of the ClawPump dashboard.
A skill is a markdown file (SKILL.md) that gets injected into your agent's system prompt. It defines instructions, rules, and context that shape how the agent behaves for a specific task — like analyzing meme tokens, managing risk, or running a trading strategy.
skills/
your-skill-slug/
SKILL.md # The skill content (injected into agent prompt)
metadata.json # Name, description, author, tags
registry.json # Auto-generated index of all skills
- Fork this repo
- Create a new directory under
skills/with a URL-safe slug - Add your
SKILL.mdandmetadata.json - Add an entry to
registry.json - Open a PR
{
"name": "Your Skill Name",
"description": "One-line description of what it does",
"author": "your-github-username",
"tags": ["defi", "trading"],
"version": "1.0.0"
}- Use clear markdown headings to organize instructions
- Define explicit rules and constraints
- Include examples of expected behavior
- Keep it focused — one skill, one purpose
See CONTRIBUTING.md for full guidelines.
In the ClawPump dashboard, go to Skills and scroll to Community Skills. Browse, preview, and import any skill with one click. Imported skills become custom skills on your agent that you can edit or disable at any time.
MIT