A centralized collection of reusable skills and prompts for all AI agents.
A skill is a reusable set of instructions that gives an AI agent a specific capability. Skills range from simple prompt files to full tool packages with supporting code.
| Complexity | Description | Example |
|---|---|---|
prompt-only |
A markdown file with instructions | code-review, git-commit |
prompt-with-code |
Prompt + supporting templates/scripts | git-commit with hooks |
full-package |
Complete tool with code, configs, prompts | MCP server, CLI plugin |
- Browse
skills/to find what you need - Read the skill's
SKILL.mdfor instructions and compatible agents - Copy the skill into your agent's config directory
For Claude Code:
cp -r skills/<skill-name>/ ~/.claude/skills/<skill-name>/helix-skills/
├── CLAUDE.md # Project conventions for Claude Code
├── skills/ # All skills live here
│ └── <skill-name>/
│ ├── SKILL.md # Manifest + prompt (required)
│ ├── templates/ # Supporting templates (optional)
│ ├── examples/ # Usage examples (optional)
│ └── scripts/ # Supporting code (optional)
├── docs/
│ ├── SKILL-FORMAT.md # How to write a SKILL.md
│ └── CONTRIBUTING.md # How to contribute
└── registry.json # Auto-generated skill index
Skills are designed to be portable. The agents field in each SKILL.md lists tested/compatible agents:
- Claude Code
- Cursor
- Windsurf
- GPT (ChatGPT, API)
- Gemini
- And more...
See docs/CONTRIBUTING.md for the full guide.
Private. Not yet open source.