Skip to content

Commit 2e444d4

Browse files
author
GAP Promoter
committed
Add iannuttall/claude-agents to the registry
1 parent d317418 commit 2e444d4

2 files changed

Lines changed: 58 additions & 0 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "claude-agents",
3+
"author": "iannuttall",
4+
"description": "Seven specialist Claude Code subagents: code-refactorer, content-writer, frontend-designer, prd-writer, project-task-planner, security-auditor, and vibe-coding-coach.",
5+
"repository": "https://github.com/iannuttall/claude-agents",
6+
"path": "",
7+
"version": "1.0.0",
8+
"category": "developer-tools",
9+
"tags": ["claude-code", "subagents", "refactoring", "security", "frontend", "prd", "productivity"],
10+
"license": "MIT",
11+
"model": "claude-sonnet-4-5-20250929",
12+
"adapters": ["claude-code", "system-prompt"],
13+
"icon": false,
14+
"banner": false
15+
}

0 commit comments

Comments
 (0)