|
| 1 | +# claude-agents |
| 2 | + |
| 3 | +A curated collection of seven specialist Claude Code subagents, each with a |
| 4 | +detailed system prompt, scoped tool allowlist, and trigger examples. Drop them |
| 5 | +into `.claude/agents/` and Claude Code auto-routes tasks to the right expert. |
| 6 | + |
| 7 | +## Available Agents |
| 8 | + |
| 9 | +| Agent | What it does | |
| 10 | +|---|---| |
| 11 | +| **code-refactorer** | Improves code structure, readability, and maintainability without changing behaviour. Asks about priorities (performance vs. readability), proposes changes with before/after snippets. | |
| 12 | +| **content-writer** | Writes or outlines articles and blog posts that explain complex topics clearly. Operates in *outline* or *write* mode; targets a Flesch-Kincaid Grade 8 reading level. | |
| 13 | +| **frontend-designer** | Converts mockups, wireframes, and screenshots into component architectures and design-system specs. Covers any frontend stack (React, Vue, Tailwind, etc.). | |
| 14 | +| **prd-writer** | Drafts comprehensive Product Requirements Documents — business goals, user personas, functional requirements, UX flows, success metrics, and user stories. | |
| 15 | +| **project-task-planner** | Turns a PRD into a structured, sprint-ready development task list covering frontend, backend, and DevOps tracks. | |
| 16 | +| **security-auditor** | Performs a full security audit (auth, input validation, API security, dependencies, config) and generates a `security-report.md` with severity ratings and remediation checklists. | |
| 17 | +| **vibe-coding-coach** | Builds apps through conversation — translates vision, screenshots, and "vibes" into working code while handling all technical complexity behind the scenes. | |
| 18 | + |
| 19 | +## Installation |
| 20 | + |
| 21 | +```bash |
| 22 | +# Project-specific |
| 23 | +mkdir -p .claude/agents |
| 24 | +cp agents/*.md .claude/agents/ |
| 25 | + |
| 26 | +# Global (all projects) |
| 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 |
| 34 | +specialist based on your request. For example: |
| 35 | + |
| 36 | +- *"Clean up this 300-line function"* → **code-refactorer** |
| 37 | +- *"Write a blog post explaining WebAssembly for beginners"* → **content-writer** |
| 38 | +- *"Audit our Express API for vulnerabilities"* → **security-auditor** |
| 39 | +- *"I want to build something that feels like Notion but for recipes"* → **vibe-coding-coach** |
| 40 | + |
| 41 | +## License |
| 42 | + |
| 43 | +MIT © [iannuttall](https://github.com/iannuttall) |
0 commit comments