AI Agents Guide
RAPIDS includes 11 autonomous AI agents that execute complex tasks in parallel. Use them to 10x your productivity.
Feature Builder
Builds complete features across mobile, web, and backend.
Usage:
/feature "Add user authentication"
When to use:
• Complete multi-layer features
• Complex integrations
• New full modules
Bug Hunter
Finds and fixes bugs throughout the codebase.
Usage:
/bug "Login redirect broken"
When to use:
• Complex multi-file bugs
• Intermittent errors
• Performance issues
Code Searcher
Searches and analyzes code patterns (auto-activates).
Usage:
Find all places where we handle user authentication
When to use:
• Exploring unfamiliar code
• Tracing implementations
• Understanding architecture
Test Generator
Generates comprehensive tests for your code.
Usage:
/test "Create tests for user authentication"
When to use:
• New features without tests
• Improving coverage
• Regression tests
Refactor Master
Intelligent and safe refactoring while maintaining functionality.
Usage:
/refactor "Extract auth logic to hooks"
When to use:
• Significant code smells
• Excessive duplication
• High complexity
Performance Analyzer
Analyzes and optimizes performance across the stack.
Usage:
/performance "Optimize flows screen loading"
When to use:
• Noticeable slowness
• Memory spikes
• Slow database queries
DB Architect
Manages database schema and migrations.
Usage:
/db "Add user_preferences table"
When to use:
• Schema changes
• New tables
• Complex modifications
Security Scanner
Scans for security vulnerabilities and provides fixes.
Usage:
/security "Audit authentication flow"
When to use:
• Before production release
• After auth refactoring
• Periodic audits
Deployment Manager
Manages deployments to staging and production.
Usage:
/deploy "Push to staging"
When to use:
• Staging/prod deployments
• Important releases
• Rollback needed
Marketing Strategist
THE MOST CRITICAL: Revenue generation, user acquisition, GTM strategy.
Usage:
/market "Create launch campaign for feature X"
When to use:
• Validate revenue potential
• User acquisition strategy
• Product launch campaigns
• Conversion optimization
Design Master
Material Design 3 expert for UNIQUE, CUSTOM designs that stand out.
Usage:
/design "Create unique color scheme for feature X"
When to use:
• Distinctive brand identity
• Custom Material Design 3 themes
• Accessibility audits
• Responsive design
🔥 Parallel Execution
Run multiple agents simultaneously for maximum efficiency:
Example: Complete Feature in Parallel
Launch 3 agents in parallel to create workout timer:
Agent 1 (backend): Create API endpoints for timer
Agent 2 (mobile): Create Flutter timer UI
Agent 3 (web): Create Next.js timer page
Run simultaneously and report when all done.
💡 Best Practices
1. Be Precise
❌ "Fix the bug"
✅ "Launch bug-hunter agent to fix: Database connection timeout in backend/app/main.py line 15"
2. Provide Context
✅ "Launch feature-builder with context: Similar to existing flows feature, uses same DB structure, follow PRD section 2.3"
3. Use Parallelism
✅ "Launch 3 agents in parallel: Agent 1 builds backend API, Agent 2 builds mobile UI, Agent 3 designs landing page"
4. Validate Before Building
Always run marketing-strategist FIRST to validate revenue potential before implementing features.