Skip to content

Commit 51b166d

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

2 files changed

Lines changed: 67 additions & 0 deletions

File tree

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "claude-agents",
3+
"author": "iannuttall",
4+
"description": "Seven specialized Claude Code sub-agents for software teams: code refactoring, content writing, frontend design, PRD authoring, task planning, security auditing, and vibe coding.",
5+
"repository": "https://github.com/shreyas-lyzr/claude-agents",
6+
"version": "1.0.0",
7+
"category": "developer-tools",
8+
"tags": [
9+
"claude-code",
10+
"sub-agents",
11+
"code-refactoring",
12+
"security-audit",
13+
"prd",
14+
"frontend-design",
15+
"content-writing",
16+
"task-planning"
17+
],
18+
"license": "MIT",
19+
"model": "claude-sonnet-4-6",
20+
"adapters": [
21+
"claude-code",
22+
"system-prompt"
23+
],
24+
"icon": false
25+
}

0 commit comments

Comments
 (0)