# Claude Code Agents A collection of custom Claude Code agents for software development workflows. ## Included Agents | Agent | Description | |-------|-------------| | `acceptance-criteria-verifier` | Verifies implementation against acceptance criteria | | `code-reviewer` | Performs code reviews | | `issue-planner` | Creates implementation plans from issues | | `issue-selector` | Helps select the next issue to work on | | `plan-implementer` | Implements a plan step by step | | `user-story-drafter` | Drafts user stories with Gitea integration | ## Directory Structure ``` agents//AGENT.md — Agent definitions skills//SKILL.md — Skill definitions (future) output-styles/.md — Output style definitions (future) install.sh — Symlink installer ``` ## Installation ```bash git clone cd agents ./install.sh ``` This symlinks all agents, skills, and output styles into `~/.claude/`. Restart Claude Code to pick up the changes. To use a non-standard Claude home directory: ```bash CLAUDE_HOME=/path/to/claude ./install.sh ``` ## Uninstall ```bash ./install.sh --uninstall ``` Only removes symlinks that point back into this repo. ## Adding New Agents 1. Create `agents//AGENT.md` 2. Run `./install.sh` to symlink it into `~/.claude/agents/`