A collection of reusable Claude Code agents for the team. Each agent is available in two formats: CLAUDE.md (copy/paste) and SKILL.md (auto-registering slash commands).
| Agent | Slash Command | Description |
|---|---|---|
| secrets-scanner | /scan-secrets |
Scans repos for accidentally committed API keys, passwords, and sensitive config files |
| task-planner | /plan |
Manages persistent task plans that survive across Claude Code sessions |
| codebase-onboarding | /onboard |
Explores a repo and generates a structured onboarding walkthrough |
| pr-reviewer | /review |
Reviews PRs or staged changes for bugs, security, style, and missing tests |
| dependency-auditor | /audit-deps |
Audits dependencies for vulnerabilities, outdated packages, and unused imports |
| refactor-advisor | /refactor |
Analyzes code for refactoring opportunities, prioritized by impact and effort |
| changelog-generator | /changelog |
Generates a changelog from git commits with categorization and PR links |
| dead-code-finder | /find-dead-code |
Finds unused functions, variables, imports, exports, types, and unreachable code |
| stale-branch-cleaner | /clean-branches |
Finds and safely cleans up stale git branches — merged, abandoned, or inactive |
Each agent folder contains:
- CLAUDE.md — Full agent instructions. Copy/paste into any Claude Code session.
- SKILL.md — Same instructions with YAML frontmatter. Drop into
.claude/skills/for auto-registered slash commands. - README.md — Human-readable docs.
- Open the agent's folder
- Copy the
CLAUDE.mdcontent - Paste into your Claude Code session
Copy an agent folder into your project's .claude/skills/ directory:
cp -r secrets-scanner /path/to/your-project/.claude/skills/
Now /scan-secrets is available as a slash command in that project.
To install for all your projects, copy to ~/.claude/skills/ instead.
cp -r secrets-scanner task-planner codebase-onboarding pr-reviewer dependency-auditor refactor-advisor changelog-generator dead-code-finder stale-branch-cleaner /path/to/your-project/.claude/skills/
Skills support arguments via $ARGUMENTS:
/review 42 → Reviews PR #42
/refactor src/api/auth.ts → Analyzes that file
/changelog v1.0.0..v2.0.0 → Changelog for that range
/scan-secrets /path/to/repo → Scans that repo
/plan add dark mode feature → Creates a plan for that task
- Copy the
_template/folder and rename it (use kebab-case) - Edit
CLAUDE.mdwith your agent's instructions (portable format) - Edit
SKILL.mdwith the same instructions + YAML frontmatter (skill format) - Write a
README.mdwith usage docs - Add a row to the catalog table above