Claude Consult
Get expert help from Claude specialist agents during implementation. Each agent
has domain-specific skills pre-loaded and tools scoped to its role.
This is NOT a replacement for the review gates. The agent-loops skill
defines formal code review (specialist-review) and test audit
(diff-test-audit) gates that run after implementation. This skill is for
asking questions during implementation — before you've written code, while
you're writing it, or when you're stuck.
When to Use
- "How does this module work?" — before implementing
- "Does my approach match existing conventions?" — while implementing
- "Is this pattern secure?" — before committing to a design
- "Why is this test failing?" — when stuck
- "What do the testing standards say about X?" — before writing tests
- "Is this component accessible?" — during UI work
How to Invoke
claude -p --agent <agent-name> "<your question>"
All agents run headless (-p / print mode). They read the codebase, apply their
loaded skills, and return an answer to stdout. Capture or pipe as needed:
# Direct invocation
claude -p --agent debugger "Why is test_auth_flow failing in src/auth/tests.py?"
# Capture to variable
ANSWER=$(claude -p --agent security-auditor "Is the input validation in src/api/handler.py safe?")
# Save to file
claude -p --agent architect-reviewer "Does adding a cache layer between api and db match the existing architecture?" > /tmp/arch-advice.md
Agent Roster
Codebase Understanding
| Agent |
Use when you need to... |
Skills loaded |
search-specialist |
Find where something is defined or called |
codanna-codebase-intelligence |
architect-reviewer |
Evaluate module boundaries and dependencies |
system-design, api-design-patterns |
docs-architect |
Understand existing documentation structure |
documentation-production, code-explanation |
Code Quality & Patterns
| Agent |
Use when you need to... |
Skills loaded |
code-reviewer |
Check if code follows project conventions |
code-quality-workflow, testing-anti-patterns, secure-coding-practices |
refiner |
Get suggestions for improving code quality |
code-quality-workflow |
rest-expert |
Design or check REST API patterns |
api-design-patterns |
Security
| Agent |
Use when you need to... |
Skills loaded |
security-auditor |
Full security review of a code path |
owasp-top-10, secure-coding-practices, vibe-security, security-testing-patterns |
owasp-top10-expert |
Check against OWASP Top 10 specifically |
owasp-top-10, secure-coding-practices, vibe-security |
penetration-tester |
Identify exploitable vulnerabilities |
security-testing-patterns, owasp-top-10, threat-modeling-techniques |
jwt-expert |
Review JWT/auth token handling |
secure-coding-practices |
compliance-auditor |
Check regulatory compliance |
secure-coding-practices, owasp-top-10 |
Testing
| Agent |
Use when you need to... |
Skills loaded |
test-automator |
Plan test strategy or check coverage approach |
test-review, python-testing-patterns, testing-anti-patterns |
vitest-expert |
Vitest-specific test patterns |
testing-anti-patterns |
Debugging
| Agent |
Use when you need to... |
Skills loaded |
debugger |
Investigate a test failure or error |
systematic-debugging, root-cause-tracing |
Performance
| Agent |
Use when you need to... |
Skills loaded |
performance-engineer |
Find bottlenecks in code paths |
workflow-performance, python-performance-optimization, react-performance-optimization |
frontend-optimizer |
Optimize frontend bundle/rendering |
react-performance-optimization, design-system-architecture |
performance-monitor |
Set up or check monitoring/observability |
workflow-performance |
Frontend & UI
| Agent |
Use when you need to... |
Skills loaded |
ui-ux-designer |
Review UI for usability and accessibility |
ux-review, accessibility-audit, design-system-architecture |
component-architect |
Design component APIs and composition |
design-system-architecture, typescript-advanced-patterns |
interaction-designer |
Review interaction patterns and states |
ux-review, accessibility-audit |
state-architect |
Choose or review state management approach |
react-performance-optimization, typescript-advanced-patterns |
react-specialist |
React-specific patterns and optimization |
react-performance-optimization, typescript-advanced-patterns, testing-anti-patterns |
tailwind-expert |
Tailwind styling and responsive design |
design-system-architecture, accessibility-audit |
Language Specialists
| Agent |
Use when you need to... |
Skills loaded |
python-pro |
Python idioms, async, decorators |
async-python-patterns, python-testing-patterns, python-performance-optimization |
rust-pro |
Ownership, lifetimes, traits |
test-driven-development |
typescript-pro |
Advanced types and type safety |
typescript-advanced-patterns, testing-anti-patterns |
javascript-pro |
JS/Node.js async and cross-runtime |
testing-anti-patterns, typescript-advanced-patterns |
sql-pro |
Query optimization and schema design |
database-design-patterns |
Infrastructure
| Agent |
Use when you need to... |
Skills loaded |
cloud-architect |
AWS/Azure/GCP architecture decisions |
terraform-best-practices, kubernetes-deployment-patterns, gitops-workflows |
kubernetes-architect |
K8s deployment and service mesh |
kubernetes-deployment-patterns, kubernetes-security-policies, helm-chart-patterns, gitops-workflows |
terraform-specialist |
IaC modules and state management |
terraform-best-practices |
Data
| Agent |
Use when you need to... |
Skills loaded |
database-admin |
DB operations, backup, replication |
database-design-patterns |
database-optimizer |
Slow queries, indexing, N+1 problems |
database-design-patterns |
postgres-expert |
Postgres-specific schemas and migrations |
database-design-patterns |
Documentation
| Agent |
Use when you need to... |
Skills loaded |
mermaid-expert |
Generate architecture/flow diagrams |
documentation-production |
tutorial-engineer |
Write tutorials and how-to guides |
documentation-production, code-explanation |
technical-writer |
Write clear technical documentation |
documentation-production, code-explanation |
reference-builder |
Generate API/config reference docs |
documentation-production |
Coordination & Meta
| Agent |
Use when you need to... |
Skills loaded |
orchestrator |
Break down complex tasks |
task-orchestration, dispatching-parallel-agents |
prompt-engineer |
Craft or improve prompts for AI features |
writing-skills |
learning-guide |
Understand a concept or pattern |
code-explanation |
Operating Rules
1. Consult, don't delegate implementation
These agents advise — they don't write your code. Read the answer, apply it
yourself. The agent may suggest approaches, but you implement them.
2. Scope your questions
Bad: "Review everything in src/"
Good: "Is the input validation in src/api/handler.py:45-60 safe against injection?"
Narrow questions get better answers and use fewer tokens.
3. Don't replace review gates
Consulting security-auditor during implementation doesn't skip the formal
specialist-review gate afterward. The review gates exist for independent
verification — consulting during implementation is for getting guidance early.
4. Use the cheapest agent that works
For factual lookups (where is X, what does the standard say), prefer
search-specialist or the language-specific agents. Reserve
security-auditor, debugger, and performance-engineer for questions
that need deeper analysis.
5. One question per invocation
Each claude -p --agent call is a cold start. Don't try to batch multiple
unrelated questions in one call — they'll get shallow treatment. Ask one
focused question per invocation.
Relationship to agent-loops
agent-loops claude-consult
───────────── ──────────────
Formal review gates Mid-implementation help
Runs AFTER implementation Runs DURING implementation
Produces reports with P0-P3 Answers questions directly
Required before merge Optional, use as needed
specialist-review + test-review Any agent from the roster
Both skills are designed to work together. Consult agents while implementing
to prevent issues, then run the formal review gates to verify nothing was missed.
1---2name: claude-consult3description: Consult Claude specialist agents during implementation for codebase understanding, pattern checking, security review, debugging help, and more. Use this skill whenever you're unsure about conventions, stuck on a failure, or need expert input before writing code. Does not replace the formal review gates in agent-loops — this is for mid-implementation consultation.4---5
6# Claude Consult
7
8Get expert help from Claude specialist agents during implementation. Each agent
9has domain-specific skills pre-loaded and tools scoped to its role.
10
11**This is NOT a replacement for the review gates.** The `agent-loops` skill
12defines formal code review (`specialist-review`) and test audit
13(`diff-test-audit`) gates that run after implementation. This skill is for
14asking questions **during** implementation — before you've written code, while
15you're writing it, or when you're stuck.
16
17## When to Use
18
19- "How does this module work?" — before implementing
20- "Does my approach match existing conventions?" — while implementing
21- "Is this pattern secure?" — before committing to a design
22- "Why is this test failing?" — when stuck
23- "What do the testing standards say about X?" — before writing tests
24- "Is this component accessible?" — during UI work
25
26## How to Invoke
27
28```bash
29claude -p --agent <agent-name> "<your question>"
30```
31
32All agents run headless (`-p` / print mode). They read the codebase, apply their
33loaded skills, and return an answer to stdout. Capture or pipe as needed:
34
35```bash
36# Direct invocation
37claude -p --agent debugger "Why is test_auth_flow failing in src/auth/tests.py?"
38
39# Capture to variable
40ANSWER=$(claude -p --agent security-auditor "Is the input validation in src/api/handler.py safe?")
41
42# Save to file
43claude -p --agent architect-reviewer "Does adding a cache layer between api and db match the existing architecture?" > /tmp/arch-advice.md
44```
45
46## Agent Roster
47
48### Codebase Understanding
49
50| Agent | Use when you need to... | Skills loaded |
51|---|---|---|
52| `search-specialist` | Find where something is defined or called | codanna-codebase-intelligence |
53| `architect-reviewer` | Evaluate module boundaries and dependencies | system-design, api-design-patterns |
54| `docs-architect` | Understand existing documentation structure | documentation-production, code-explanation |
55
56### Code Quality & Patterns
57
58| Agent | Use when you need to... | Skills loaded |
59|---|---|---|
60| `code-reviewer` | Check if code follows project conventions | code-quality-workflow, testing-anti-patterns, secure-coding-practices |
61| `refiner` | Get suggestions for improving code quality | code-quality-workflow |
62| `rest-expert` | Design or check REST API patterns | api-design-patterns |
63
64### Security
65
66| Agent | Use when you need to... | Skills loaded |
67|---|---|---|
68| `security-auditor` | Full security review of a code path | owasp-top-10, secure-coding-practices, vibe-security, security-testing-patterns |
69| `owasp-top10-expert` | Check against OWASP Top 10 specifically | owasp-top-10, secure-coding-practices, vibe-security |
70| `penetration-tester` | Identify exploitable vulnerabilities | security-testing-patterns, owasp-top-10, threat-modeling-techniques |
71| `jwt-expert` | Review JWT/auth token handling | secure-coding-practices |
72| `compliance-auditor` | Check regulatory compliance | secure-coding-practices, owasp-top-10 |
73
74### Testing
75
76| Agent | Use when you need to... | Skills loaded |
77|---|---|---|
78| `test-automator` | Plan test strategy or check coverage approach | test-review, python-testing-patterns, testing-anti-patterns |
79| `vitest-expert` | Vitest-specific test patterns | testing-anti-patterns |
80
81### Debugging
82
83| Agent | Use when you need to... | Skills loaded |
84|---|---|---|
85| `debugger` | Investigate a test failure or error | systematic-debugging, root-cause-tracing |
86
87### Performance
88
89| Agent | Use when you need to... | Skills loaded |
90|---|---|---|
91| `performance-engineer` | Find bottlenecks in code paths | workflow-performance, python-performance-optimization, react-performance-optimization |
92| `frontend-optimizer` | Optimize frontend bundle/rendering | react-performance-optimization, design-system-architecture |
93| `performance-monitor` | Set up or check monitoring/observability | workflow-performance |
94
95### Frontend & UI
96
97| Agent | Use when you need to... | Skills loaded |
98|---|---|---|
99| `ui-ux-designer` | Review UI for usability and accessibility | ux-review, accessibility-audit, design-system-architecture |
100| `component-architect` | Design component APIs and composition | design-system-architecture, typescript-advanced-patterns |
101| `interaction-designer` | Review interaction patterns and states | ux-review, accessibility-audit |
102| `state-architect` | Choose or review state management approach | react-performance-optimization, typescript-advanced-patterns |
103| `react-specialist` | React-specific patterns and optimization | react-performance-optimization, typescript-advanced-patterns, testing-anti-patterns |
104| `tailwind-expert` | Tailwind styling and responsive design | design-system-architecture, accessibility-audit |
105
106### Language Specialists
107
108| Agent | Use when you need to... | Skills loaded |
109|---|---|---|
110| `python-pro` | Python idioms, async, decorators | async-python-patterns, python-testing-patterns, python-performance-optimization |
111| `rust-pro` | Ownership, lifetimes, traits | test-driven-development |
112| `typescript-pro` | Advanced types and type safety | typescript-advanced-patterns, testing-anti-patterns |
113| `javascript-pro` | JS/Node.js async and cross-runtime | testing-anti-patterns, typescript-advanced-patterns |
114| `sql-pro` | Query optimization and schema design | database-design-patterns |
115
116### Infrastructure
117
118| Agent | Use when you need to... | Skills loaded |
119|---|---|---|
120| `cloud-architect` | AWS/Azure/GCP architecture decisions | terraform-best-practices, kubernetes-deployment-patterns, gitops-workflows |
121| `kubernetes-architect` | K8s deployment and service mesh | kubernetes-deployment-patterns, kubernetes-security-policies, helm-chart-patterns, gitops-workflows |
122| `terraform-specialist` | IaC modules and state management | terraform-best-practices |
123
124### Data
125
126| Agent | Use when you need to... | Skills loaded |
127|---|---|---|
128| `database-admin` | DB operations, backup, replication | database-design-patterns |
129| `database-optimizer` | Slow queries, indexing, N+1 problems | database-design-patterns |
130| `postgres-expert` | Postgres-specific schemas and migrations | database-design-patterns |
131
132### Documentation
133
134| Agent | Use when you need to... | Skills loaded |
135|---|---|---|
136| `mermaid-expert` | Generate architecture/flow diagrams | documentation-production |
137| `tutorial-engineer` | Write tutorials and how-to guides | documentation-production, code-explanation |
138| `technical-writer` | Write clear technical documentation | documentation-production, code-explanation |
139| `reference-builder` | Generate API/config reference docs | documentation-production |
140
141### Coordination & Meta
142
143| Agent | Use when you need to... | Skills loaded |
144|---|---|---|
145| `orchestrator` | Break down complex tasks | task-orchestration, dispatching-parallel-agents |
146| `prompt-engineer` | Craft or improve prompts for AI features | writing-skills |
147| `learning-guide` | Understand a concept or pattern | code-explanation |
148
149## Operating Rules
150
151### 1. Consult, don't delegate implementation
152
153These agents advise — they don't write your code. Read the answer, apply it
154yourself. The agent may suggest approaches, but **you** implement them.
155
156### 2. Scope your questions
157
158Bad: `"Review everything in src/"`
159Good: `"Is the input validation in src/api/handler.py:45-60 safe against injection?"`
160
161Narrow questions get better answers and use fewer tokens.
162
163### 3. Don't replace review gates
164
165Consulting `security-auditor` during implementation doesn't skip the formal
166`specialist-review` gate afterward. The review gates exist for independent
167verification — consulting during implementation is for getting guidance early.
168
169### 4. Use the cheapest agent that works
170
171For factual lookups (where is X, what does the standard say), prefer
172`search-specialist` or the language-specific agents. Reserve
173`security-auditor`, `debugger`, and `performance-engineer` for questions
174that need deeper analysis.
175
176### 5. One question per invocation
177
178Each `claude -p --agent` call is a cold start. Don't try to batch multiple
179unrelated questions in one call — they'll get shallow treatment. Ask one
180focused question per invocation.
181
182## Relationship to agent-loops
183
184```
185agent-loops claude-consult
186───────────── ──────────────
187Formal review gates Mid-implementation help
188Runs AFTER implementation Runs DURING implementation
189Produces reports with P0-P3 Answers questions directly
190Required before merge Optional, use as needed
191specialist-review + test-review Any agent from the roster
192```
193
194Both skills are designed to work together. Consult agents while implementing
195to prevent issues, then run the formal review gates to verify nothing was missed.