|
| 1 | +# claude-agents |
| 2 | + |
| 3 | +A curated collection of **seven production-ready Claude Code sub-agents** for professional software development teams. Each agent is a specialist — drop the `.md` files into `.claude/agents/` and Claude Code will automatically route tasks to the right expert. |
| 4 | + |
| 5 | +## Agents |
| 6 | + |
| 7 | +| Agent | What it does | |
| 8 | +|-------|-------------| |
| 9 | +| **code-refactorer** | Improves code structure, readability, and maintainability without changing functionality. Asks about priorities before touching a single line. | |
| 10 | +| **content-writer** | Senior content marketer who writes at 8th-grade reading level. Two modes: `outline` and `write`. Never hallucinates. | |
| 11 | +| **frontend-designer** | Converts Figma mockups, wireframes, and screenshots into detailed component specs, design systems, and implementation guides. | |
| 12 | +| **prd-writer** | Authors comprehensive Product Requirements Documents with personas, user stories, acceptance criteria, and success metrics. | |
| 13 | +| **project-task-planner** | Transforms a PRD into a phase-ordered development task list covering setup, backend, frontend, integration, testing, docs, and deployment. Requires a PRD. | |
| 14 | +| **security-auditor** | Enterprise-level security review — auth flaws, injection, dependency CVEs, CORS misconfig, secrets in code. Outputs severity-ranked report with fix checklists. | |
| 15 | +| **vibe-coding-coach** | Translates "I want it to feel like X" into working applications. Handles all security and architecture invisibly while the user focuses on vision. | |
| 16 | + |
| 17 | +## Installation |
| 18 | + |
| 19 | +**Project-specific:** |
| 20 | +```bash |
| 21 | +mkdir -p .claude/agents |
| 22 | +cp agents/*.md .claude/agents/ |
| 23 | +``` |
| 24 | + |
| 25 | +**Global (all projects):** |
| 26 | +```bash |
| 27 | +mkdir -p ~/.claude/agents |
| 28 | +cp agents/*.md ~/.claude/agents/ |
| 29 | +``` |
| 30 | + |
| 31 | +## Usage |
| 32 | + |
| 33 | +Once installed, Claude Code automatically detects and delegates to the right agent based on your task. You can also invoke them explicitly: |
| 34 | + |
| 35 | +``` |
| 36 | +Use the security-auditor to review my authentication module. |
| 37 | +Use the prd-writer to document the checkout flow. |
| 38 | +``` |
| 39 | + |
| 40 | +## Protocol |
| 41 | + |
| 42 | +This repo conforms to the [GitAgent Protocol](https://gitagent.sh) — see `agent.yaml` and `SOUL.md` at the repo root for the standard manifest and persona. |
0 commit comments