Open collection of AI agent skills — reusable, framework-agnostic SKILL.md packages for Claude Code and compatible agents.
A skill is a self-contained directory with a SKILL.md file. It packages "how to do X" in a way any SKILL.md-aware agent can execute, with no shared runtime and no global state. Copy it, fork it, move it between projects — it just works.
Skills follow a three-layer progressive disclosure model: lightweight frontmatter (for activation), a bounded body (for execution), and optional references (loaded on demand). See HUMAN.md for the design philosophy.
| Skill | Description | Docs |
|---|---|---|
| skill-optimizer | Kaizen for AI agent skills — observes execution, diagnoses friction, proposes concrete SKILL.md improvements | README |
| skill-map | Map, inspect and manage collections of interconnected Markdown skills, agents and docs — graph explorer + CLI + optional LLM layer. Lives in its own repo. | README |
More coming. Want to add one? Jump to Contributing.
# All skills via Claude Code plugin
claude /plugin install crystian/skills
# All skills via npx
npx skills add crystian/skills
# A single skill
npx skills add crystian/skills --skill skill-optimizerOnce installed, invoke with the plugin namespace: /crystools-skills:<skill-name>.
npx skills check # check for updates
npx skills update # update all
npx skills add crystian/skills # reinstall latestContributions are welcome — new skills, improvements, bug fixes, docs. Start here:
- Read CONTRIBUTING.md.
- For a new skill, open a New skill proposal first to align on scope.
- Copy
skills/_template/as your starting point. - Open a PR; CI validates SKILL.md structure automatically.
Quick start for a new skill:
cp -r skills/_template skills/my-new-skill
# edit skills/my-new-skill/SKILL.md and README.md.claude-plugin/
plugin.json # plugin manifest
.github/
ISSUE_TEMPLATE/ # issue forms
workflows/ # CI (validate + auto-bump version)
pull_request_template.md
scripts/
validate-skills.py # SKILL.md linter (used by CI and locally)
skills/
_template/ # starting point for new skills
skill-optimizer/
SKILL.md # skill definition (frontmatter + body)
README.md # user-facing docs
references/ # optional, loaded on demand
CONTRIBUTING.md # how to contribute
CODE_OF_CONDUCT.md # community standards
SECURITY.md # how to report vulnerabilities
CHANGELOG.md # release notes
HUMAN.md # design notes for humans (not for agents)
CLAUDE.md # instructions for Claude / agents
- CONTRIBUTING.md — how to contribute, skill standard, PR workflow.
- CODE_OF_CONDUCT.md — community standards (Contributor Covenant v2.1).
- SECURITY.md — vulnerability reporting policy.
- CHANGELOG.md — release history.
- HUMAN.md — design principles and project vision (for humans).
- LICENSE — MIT.
- skill-map — companion tool that maps, inspects and manages collections of Markdown-based skills, agents, commands and docs. Graph explorer + CLI + optional LLM layer. Works on any ecosystem of interconnected MDs (not limited to this repo).
MIT. See LICENSE.