Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions agents/iannuttall__claude-agents/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# claude-agents

A curated library of **seven Claude Code custom sub-agents** by [@iannuttall](https://github.com/iannuttall), covering the full software-development lifecycle. Drop any agent into `.claude/agents/` and Claude Code automatically selects the right specialist for each task.

## Available agents

| Agent | What it does |
|---|---|
| **code-refactorer** | Improves code structure, readability, and maintainability without changing behaviour |
| **security-auditor** | Performs comprehensive security audits and produces prioritised remediation reports |
| **prd-writer** | Creates detailed, structured Product Requirements Documents |
| **project-task-planner** | Converts a PRD into a fully-phased development task list |
| **frontend-designer** | Translates mockups and wireframes into component specs and design systems |
| **content-writer** | Produces high-quality written content for a wide range of purposes |
| **vibe-coding-coach** | Translates app ideas and aesthetic preferences into working software |

## Installation

```bash
# Project-scoped
mkdir -p .claude/agents
cp agents/*.md .claude/agents/

# Global (all projects)
mkdir -p ~/.claude/agents
cp agents/*.md ~/.claude/agents/
```

## Usage

Once installed, Claude Code detects and delegates tasks to the appropriate agent automatically — no extra configuration needed.

## Links

- Repository: https://github.com/iannuttall/claude-agents
- License: MIT
14 changes: 14 additions & 0 deletions agents/iannuttall__claude-agents/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "claude-agents",
"author": "iannuttall",
"description": "Seven Claude Code sub-agents covering the full dev lifecycle: code refactoring, security auditing, PRD writing, task planning, frontend design, content writing, and vibe coaching.",
"repository": "https://github.com/iannuttall/claude-agents",
"version": "1.0.0",
"category": "developer-tools",
"tags": ["claude-code", "sub-agents", "code-refactoring", "security", "prd", "frontend", "productivity"],
"license": "MIT",
"model": "claude-sonnet-4-5-20250929",
"adapters": ["claude-code", "system-prompt"],
"icon": false,
"banner": false
}
Loading