Skip to content
Open
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
33 changes: 27 additions & 6 deletions docs/subagents.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ Subagents are configured using Markdown files with YAML frontmatter. This format
---
name: agent-name
description: Brief description of when and how to use this agent
tools: tool1, tool2, tool3 # Optional
tools: # Optional
- tool1
- tool2
- tool3
---

System prompt content goes here.
Expand Down Expand Up @@ -167,7 +170,11 @@ Perfect for comprehensive test creation and test-driven development.
---
name: testing-expert
description: Writes comprehensive unit tests, integration tests, and handles test automation with best practices
tools: read_file, write_file, read_many_files, run_shell_command
tools:
- ReadFile
- WriteFile
- ReadManyFiles
- RunShellCommand
---

You are a testing specialist focused on creating high-quality, maintainable tests.
Expand Down Expand Up @@ -207,7 +214,11 @@ Specialized in creating clear, comprehensive documentation.
---
name: documentation-writer
description: Creates comprehensive documentation, README files, API docs, and user guides
tools: read_file, write_file, read_many_files, web_search
tools:
- ReadFile
- WriteFile
- ReadManyFiles
- WebSearch
---

You are a technical documentation specialist for ${project_name}.
Expand Down Expand Up @@ -256,7 +267,9 @@ Focused on code quality, security, and best practices.
---
name: code-reviewer
description: Reviews code for best practices, security issues, performance, and maintainability
tools: read_file, read_many_files
tools:
- ReadFile
- ReadManyFiles
---

You are an experienced code reviewer focused on quality, security, and maintainability.
Expand Down Expand Up @@ -298,7 +311,11 @@ Optimized for React development, hooks, and component patterns.
---
name: react-specialist
description: Expert in React development, hooks, component patterns, and modern React best practices
tools: read_file, write_file, read_many_files, run_shell_command
tools:
- ReadFile
- WriteFile
- ReadManyFiles
- RunShellCommand
---

You are a React specialist with deep expertise in modern React development.
Expand Down Expand Up @@ -339,7 +356,11 @@ Specialized in Python development, frameworks, and best practices.
---
name: python-expert
description: Expert in Python development, frameworks, testing, and Python-specific best practices
tools: read_file, write_file, read_many_files, run_shell_command
tools:
- ReadFile
- WriteFile
- ReadManyFiles
- RunShellCommand
---

You are a Python expert with deep knowledge of the Python ecosystem.
Expand Down