Skip to content

Commit 9458c03

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

2 files changed

Lines changed: 73 additions & 0 deletions

File tree

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# claude-agents
2+
3+
> A curated collection of seven drop-in Claude Code subagents covering the full software-development lifecycle.
4+
5+
**Author:** [iannuttall](https://github.com/iannuttall)
6+
**Repository:** https://github.com/iannuttall/claude-agents
7+
**License:** MIT
8+
**Model:** Claude Sonnet (via Claude Code)
9+
10+
---
11+
12+
## What it does
13+
14+
`claude-agents` gives you a ready-made AI development team in your `.claude/agents/` folder. Each subagent owns a specific slice of the workflow — Claude Code automatically routes tasks to the right specialist.
15+
16+
## Available agents
17+
18+
| Agent | What it does |
19+
|---|---|
20+
| **security-auditor** | Full codebase security audit: auth, input validation, API security, dependency CVEs, infra config. Outputs a structured `security-report.md` with CVSS-prioritised findings and remediation checklists. |
21+
| **code-refactorer** | Improves structure, naming, and cohesion without changing behaviour. Analyses duplication, complexity, design patterns, and function size before proposing changes. |
22+
| **frontend-designer** | Converts Figma files, wireframes, or screenshots into component architectures and design-system specs for React, Vue, Next.js, etc. |
23+
| **prd-writer** | Creates comprehensive Product Requirements Documents — business goals, personas, functional requirements, UX flows, success metrics, and user stories — saved as `prd.md`. |
24+
| **project-task-planner** | Reads a PRD and generates a phased development roadmap (setup → backend → frontend → integration) saved as `plan.md`. |
25+
| **content-writer** | Direct-response copywriter. Works in outline or write mode. 8th-grade reading level, rhythm-aware, never hallucinates. Outputs clean Markdown articles or blog posts. |
26+
| **vibe-coding-coach** | Helps non-technical builders create apps through conversation and visual references — handles all technical complexity invisibly. |
27+
28+
## Installation
29+
30+
```bash
31+
# Project-specific (recommended)
32+
mkdir -p .claude/agents
33+
cp agents/*.md .claude/agents/
34+
35+
# Global (all projects)
36+
mkdir -p ~/.claude/agents
37+
cp agents/*.md ~/.claude/agents/
38+
```
39+
40+
Once installed, Claude Code detects and uses the agents automatically.
41+
42+
## Example usage
43+
44+
```
45+
# In Claude Code, just describe what you need:
46+
"Audit my codebase for security vulnerabilities"
47+
→ security-auditor spins up automatically
48+
49+
"Refactor this 300-line auth module"
50+
→ code-refactorer takes over
51+
52+
"I have a Figma mockup — turn it into React components"
53+
→ frontend-designer handles the translation
54+
```
55+
56+
## Why GAP?
57+
58+
This collection is listed in the [Open GAP registry](https://registry.gitagent.sh) so it can be discovered and run on any GAP-compatible runtime — not just Claude Code. The `agent.yaml` manifest and `SOUL.md` persona file (added via [PR #19](https://github.com/iannuttall/claude-agents/pull/19)) follow the [GitAgent Protocol v0.1.0](https://gitagent.sh) spec.
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 Claude Code subagents covering the full dev lifecycle: security auditing, code refactoring, frontend design, PRD writing, task planning, content writing, and vibe coding.",
5+
"repository": "https://github.com/iannuttall/claude-agents",
6+
"path": "",
7+
"version": "1.0.0",
8+
"category": "developer-tools",
9+
"tags": ["claude-code", "subagents", "security", "refactoring", "frontend", "prd", "planning", "content", "vibe-coding"],
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)