Skip to content

Install the Skills Catalog

Skills are installed per user or per project. Claude Code reads them from:

  • ~/.claude/skills/<skill-name>/ — available in every session on your machine.
  • <project>/.claude/skills/<skill-name>/ — scoped to one project.

Option 1 — clone + copy (today)

bash
# Clone the catalog into a side location.
git clone https://github.com/nullstone-io/agent-skills.git ~/.claude/agent-skills

# Copy the skills you want. (Omit the `_template` directory.)
mkdir -p ~/.claude/skills
cp -R ~/.claude/agent-skills/skills/nullstone-config-files ~/.claude/skills/

Verify by running claude and listing skills — nullstone-config-files should appear.

Upgrading

bash
cd ~/.claude/agent-skills
git pull
# Re-copy the skill directories you want to update.
cp -R skills/nullstone-config-files ~/.claude/skills/

Uninstalling

bash
rm -rf ~/.claude/skills/nullstone-config-files

Option 2 — plugin install (coming soon)

A Claude Code plugin for the catalog is planned. When it ships, one install will pick up both the MCP server and every skill:

bash
# Preview — not yet available
claude plugin install nullstone/agent-skills

Track nullstone-io/agent-skills#TBD for progress.

Project-scoped installs

If you want the skill to apply only inside one repo (e.g. to pin a specific catalog version for that project):

bash
mkdir -p /path/to/your/repo/.claude/skills
cp -R ~/.claude/agent-skills/skills/nullstone-config-files /path/to/your/repo/.claude/skills/

Commit .claude/skills/ if you want the entire team to share the same skill version.