Skip to content
agentscamp

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).

Frequently asked questions

Are AgentsCamp agents and skills free to use?
Yes. Everything on AgentsCamp is free to copy, download, and install. Agents, skills, and commands are plain Markdown files you drop into your .claude directory.
How do I install a Claude Code agent?
Run npx agentscamp add agents/<name> to install one into your project's .claude/agents/ directory (add -g for ~/.claude/agents/), or run npx agentscamp to pick from the full catalog interactively. You can also copy the agent's Markdown file there manually. Claude Code delegates to it automatically based on its description, or you can invoke it explicitly.
Can I install AgentsCamp content from the command line?
Yes. The agentscamp npm package bundles the full catalog. Run npx agentscamp to pick what to install interactively, npx agentscamp --all to install everything into ~/.claude, or npx agentscamp add <type>/<name> to install specific items into your project. npx agentscamp list and search explore the catalog offline.
What is the difference between an agent, a skill, and a slash command?
Agents are specialized subagents with their own system prompt and isolated context window. Skills are capabilities Claude loads on demand via progressive disclosure. Slash commands are reusable prompts you invoke with /name.
Can I use AgentsCamp content with tools other than Claude Code?
The agents, skills, and commands follow Claude Code's file format, so they install directly into Claude Code. The guides and the tools directory are useful for any AI-assisted coding workflow.
Does AgentsCamp offer machine-readable content for LLMs and agents?
Yes. Every page has a clean Markdown version at the same URL with a .md suffix, and the entire catalog is available at /llms.txt (an index) and /llms-full.txt (every page concatenated).