Skip to content

Commit 38201ec

Browse files
author
cellwebb
committed
docs(subagents): update documentation for new subagent types
- Organize subagents into logical categories: General Purpose, Code Quality & Development, System & Operations, and Research & Analysis - Add detailed documentation for six new specialty subagents - Include purpose, tools, max iterations, model inheritance, and use cases for each new subagent - Maintain consistency with existing documentation structure
1 parent b5a84dd commit 38201ec

2 files changed

Lines changed: 63 additions & 3 deletions

File tree

AGENTS.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,14 +210,27 @@ clippy-code includes a powerful subagent system for complex task decomposition a
210210

211211
#### Available Subagent Types
212212

213+
##### General Purpose
213214
- **general**: General-purpose tasks with all tools available
215+
- **grepper**: Information gathering and exploration specialist (search/read only)
216+
- **fast_general**: Quick tasks using faster models (gpt-3.5-turbo)
217+
- **power_analysis**: Deep analysis using powerful models (claude-3-opus)
218+
219+
##### Code Quality & Development
214220
- **code_review**: Read-only code analysis and review
215221
- **testing**: Test generation and execution
216222
- **refactor**: Code refactoring and improvement
217223
- **documentation**: Documentation generation and updates
218-
- **grepper**: Information gathering and exploration specialist (search/read only)
219-
- **fast_general**: Quick tasks using faster models (gpt-3.5-turbo)
220-
- **power_analysis**: Deep analysis using powerful models (claude-3-opus)
224+
- **debugger**: Issue diagnosis and bug resolution
225+
226+
##### System & Operations
227+
- **architect**: System design and architecture planning
228+
- **security**: Security analysis and vulnerability assessment
229+
- **performance**: Performance optimization and profiling
230+
- **integrator**: Integration and deployment specialist
231+
232+
##### Research & Analysis
233+
- **researcher**: Research and information synthesis
221234

222235
#### Subagent Features
223236

docs/SUBAGENTS.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,53 @@ The subagent system allows the main ClippyAgent to delegate complex subtasks to
6767
- **Use Case**: Code cleanup, performance optimization, design pattern implementation
6868

6969
#### `documentation`
70+
#### `architect`
71+
72+
- **Purpose**: System design and architecture planning
73+
- **Tools**: Architecture tools (read_file, read_files, write_file, search_files, grep, list_directory, get_file_info, create_directory, edit_file)
74+
- **Max Iterations**: 100
75+
- **Model**: Inherits from parent agent
76+
- **Use Case**: System design, technology stack selection, architectural blueprints
77+
78+
#### `debugger`
79+
80+
- **Purpose**: Issue diagnosis and bug resolution
81+
- **Tools**: Debugging tools (read_file, write_file, execute_command, search_files, grep, list_directory, get_file_info, edit_file)
82+
- **Max Iterations**: 100
83+
- **Model**: Inherits from parent agent
84+
- **Use Case**: Bug investigation, root cause analysis, troubleshooting
85+
86+
#### `security`
87+
88+
- **Purpose**: Security analysis and vulnerability assessment
89+
- **Tools**: Security analysis tools (read_file, read_files, grep, search_files, list_directory, get_file_info, execute_command)
90+
- **Max Iterations**: 100
91+
- **Model**: Inherits from parent agent
92+
- **Use Case**: Security audits, vulnerability scanning, compliance checks
93+
94+
#### `performance`
95+
96+
- **Purpose**: Performance optimization and profiling
97+
- **Tools**: Performance tools (read_file, write_file, execute_command, search_files, grep, list_directory, get_file_info, edit_file)
98+
- **Max Iterations**: 100
99+
- **Model**: Inherits from parent agent
100+
- **Use Case**: Performance profiling, optimization, benchmarking
101+
102+
#### `integrator`
103+
104+
- **Purpose**: Integration and deployment specialist
105+
- **Tools**: Integration tools (read_file, write_file, execute_command, search_files, grep, list_directory, get_file_info, create_directory, edit_file)
106+
- **Max Iterations**: 100
107+
- **Model**: Inherits from parent agent
108+
- **Use Case**: CI/CD setup, deployment pipelines, system integration
109+
110+
#### `researcher`
111+
112+
- **Purpose**: Research and information synthesis
113+
- **Tools**: Research tools (read_file, read_files, fetch_webpage, grep, search_files, list_directory, get_file_info, execute_command)
114+
- **Max Iterations**: 100
115+
- **Model**: Inherits from parent agent
116+
- **Use Case**: Technical research, information gathering, competitive analysis
70117

71118
- **Purpose**: Documentation creation and maintenance
72119
- **Tools**: Documentation tools (read_file, read_files, write_file, search_files, grep, list_directory, get_file_info, create_directory)

0 commit comments

Comments
 (0)