A collection of AI agent skills for Claude Code (and similar AI coding assistants). Each skill gives your agent specialised knowledge and workflows for specific tasks.
Contributions welcome! Found a way to improve a skill or have a new one to add? Open a PR.
Skills are markdown files that give AI agents specialised knowledge and workflows for specific tasks. When you add these to your project, Claude Code can recognise when you're working on a relevant task and apply the right frameworks and best practices.
| Skill | Description |
|---|---|
| devcontainer-security | Guide for setting up secured VS Code dev containers for coding agents. Use when creating or hardening a DevContainer to... |
Use npx skills to install skills directly:
# Install all skills
npx skills add daaain/skills
# Install specific skills
npx skills add daaain/skills --skill devcontainer-security
# List available skills
npx skills add daaain/skills --listThis automatically installs to your .claude/skills/ directory.
Install via Claude Code's built-in plugin system:
# Add the marketplace
/plugin marketplace add daaain/skills
# Install all skills
/plugin install skillsClone the entire repo and copy the skills folder:
git clone https://github.com/daaain/skills.git
cp -r skills/skills/* .claude/skills/Add as a submodule for easy updates:
git submodule add https://github.com/daaain/skills.git .claude/skills-repoThen reference skills from .claude/skills-repo/skills/.
- Fork this repository
- Customise skills for your specific needs
- Clone your fork into your projects
Use SkillKit to install skills across multiple AI agents (Claude Code, Cursor, Copilot, etc.):
# Install all skills
npx skillkit install daaain/skills
# Install specific skills
npx skillkit install daaain/skills --skill devcontainer-security
# List available skills
npx skillkit install daaain/skills --listOnce installed, just ask Claude Code for help with tasks covered by the installed skills:
"Help me set up a secure dev container for coding agents"
→ Uses devcontainer-security skill
You can also invoke skills directly:
/devcontainer-security
Found a way to improve a skill? Have a new skill to suggest? PRs and issues welcome!
See CONTRIBUTING.md for guidelines on adding or improving skills.
MIT - Use these however you want.