How to use AgentsCamp
Everything here is copy-paste ready. Each agent, skill, and command page has install actions — copy the file or download it, then drop it into the right folder. Or skip the copying entirely and use the CLI.
Quick install with the CLI
The agentscamp npm package bundles the full catalog, so you can install anything in one command with npx — nothing to set up. Run it with no arguments to pick what you want, or install everything at once:
npx agentscamp # interactive picker
npx agentscamp --all # install the whole catalog
npx agentscamp install agents # all agents
npx agentscamp add skills/dependency-audit commands/plan-feature
npx agentscamp search "code review"Bulk installs (--all, install, or the picker) default to ~/.claude/ so the items work in every project; targeted add writes into the current project's .claude/ directory. Pass -g or --project anywhere to override. Every agent, skill, and command page on this site also shows its exact add command.
Agents
Claude Code subagents are Markdown files with frontmatter. Save an agent to your project at .claude/agents/<name>.md (committed to version control) or personally at ~/.claude/agents/<name>.md (available across all your projects). Claude delegates to it automatically based on its description, or you can invoke it explicitly.
Skills
Skills live at .claude/skills/<name>/SKILL.md (project, committed to version control) or ~/.claude/skills/<name>/SKILL.md (personal, available across all your projects). They load on demand (progressive disclosure) so they only consume context when relevant. Multi-file skills bundle additional resources alongside the SKILL.md.
Slash commands
Save a command to .claude/commands/<name>.md and invoke it with /<name>. Commands can take arguments via $ARGUMENTS.
Tools
The tools directory points you to editors, CLIs, extensions, and SDKs for AI-assisted development. Each entry links to the official site and source where available.
Guides
Guides are tutorials and deep-dives. Start with Getting Started with Claude Code Agents.
For AI agents & LLMs
AgentsCamp is built to be read by machines as well as people. Every page has a clean Markdown twin at the same URL plus a .md suffix — for example, /agents/<category>/<slug>.md. For the whole catalog, fetch /llms.txt (a linked index) or /llms-full.txt (every page concatenated as Markdown).