Knowledge packages that extend AI agent capabilities.
Works with Kode CLI, Claude Code, Cursor, and any agent supporting the Agent Skills Spec.
kode plugins install https://github.com/shareAI-lab/shareAI-skillsclaude plugins install https://github.com/shareAI-lab/shareAI-skillsCopy the skills/ directory to your Cursor skills folder.
Load SKILL.md files on-demand when the agent needs domain expertise.
| Skill | Description |
|---|---|
| agent-builder | Design and build AI agents for any domain |
Skills are modular knowledge packages that give AI agents domain expertise on-demand. They follow the Agent Skills Spec.
skill-name/
├── SKILL.md # Core instructions (required)
├── references/ # Detailed documentation (optional)
├── scripts/ # Executable code (optional)
└── assets/ # Templates and resources (optional)
Skills are knowledge, not code.
A skill doesn't tell the agent what to do step-by-step. It gives the agent the knowledge to figure out what to do. The model is smart - your job is to inform it, not constrain it.
We welcome contributions! To add a new skill:
- Create a directory under
skills/ - Add a
SKILL.mdwith YAML frontmatter (name, description) - Include any necessary references, scripts, or assets
- Submit a PR
| Repository | Purpose |
|---|---|
| Kode | Full-featured open source agent CLI |
| learn-claude-code | Learn how to build AI agents from scratch |
| Agent Skills Spec | Official specification |
Apache-2.0