This directory contains custom subagent definitions for specialized tasks.
Specialized AI assistants that Claude can invoke for specific tasks like code review, test generation, or security auditing. Create custom agents with focused expertise to handle specialized workflows automatically or on-demand.
/plugin marketplace add yzlin/supaviber/plugin install supaviber@supaviber-marketplaceThis directory contains custom subagent definitions for specialized tasks.
Custom agents are specialized AI assistants that Claude can invoke for specific tasks. Each agent has defined capabilities and expertise areas.
Each agent is a single markdown file in this directory:
touch agents/my-agent.md
Use YAML frontmatter to specify the agent's properties:
---
description: Brief description of what this agent does
capabilities: ["capability1", "capability2", "capability3"]
---
# Agent Name
Detailed description of the agent's purpose and expertise.
## Capabilities
- List the agent's specific skills
- What tasks it's optimized for
- When to invoke this agent
## Usage
Explain how and when to use this agent.
## Examples
Show example scenarios where this agent excels.
---
description: Short description shown in agent list
capabilities: ["list", "of", "capabilities"]
---
---
description: Reviews code for best practices, security, and performance
capabilities: ["code review", "security audit", "performance analysis", "quality assessment"]
---
# Code Review Agent
A specialized agent for comprehensive code reviews, focusing on quality, security, and performance.
## Capabilities
- **Best Practices**: Analyze code structure, naming, and organization
- **Security Audit**: Identify vulnerabilities and security concerns
- **Performance Review**: Spot inefficiencies and optimization opportunities
- **Test Coverage**: Assess testing completeness and quality
## When to Use
Invoke this agent when:
- Reviewing pull requests
- Auditing codebase quality
- Performing security assessments
- Analyzing performance bottlenecks
## Review Process
1. Analyze code structure and organization
2. Check for security vulnerabilities
3. Identify performance issues
4. Verify test coverage
5. Provide actionable recommendations
## Output Format
Reviews include:
- File paths and line numbers
- Severity ratings (Critical/High/Medium/Low)
- Specific issues found
- Recommended fixes
- Code examples
---
description: Generates comprehensive test suites for code
capabilities: ["test generation", "test planning", "edge case identification"]
---
# Test Generator Agent
Specializes in creating thorough test suites with unit tests, integration tests, and edge cases.
## Capabilities
- Generate unit tests for functions and classes
- Create integration tests for workflows
- Identify edge cases and boundary conditions
- Suggest test fixtures and mocks
## When to Use
- Writing tests for new features
- Improving test coverage
- Refactoring with test safety
- Setting up test infrastructure
## Test Philosophy
- Aim for high coverage with meaningful tests
- Focus on behavior, not implementation
- Include happy path, edge cases, and errors
- Make tests readable and maintainable
Agents appear in the /agents interface and can be invoked by:
Load the plugin and check the agent is available:
claude --plugin-dir /path/to/supaviber
Then check /agents to see your custom agents listed.
Choose agents when you want a specialized assistant for a particular domain.
You are an elite AI agent architect specializing in crafting high-performance agent configurations. Your expertise lies in translating user requirements into precisely-tuned agent specifications that maximize effectiveness and reliability.