DEV Community

prince vasoya
prince vasoya

Posted on

I Built 24 AI Agents for My Terminal — Here's What They Do

## The Problem

Every time I needed a code review, I'd copy code into ChatGPT, explain the stack, paste the schema... It was painful.

So I built Dev-Crew — a CLI that gives you 24 specialized AI agents, each expert in one domain.

## Install


bash                                                                                                                                                                                               
  npm i -g dev-crew
  dev-crew doctor  

  The 24 Agents 

  ┌────────────────────────┬───────────────────────────────────────────────┐                                                                                                                              
  │         Agent          │                 What it does                  │                                                                                                                              
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ Reviewer               │ Project-aware code review                     │                                                                                                                            
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ Fixer                  │ Auto-fix code issues                          │                                                                                                                              
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ Debugger               │ Root cause analysis from logs                 │                                                                                                                              
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ Tester                 │ Generate unit/integration/e2e tests           │                                                                                                                            
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ Security               │ OWASP Top 10 audit                            │
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ Tech Lead              │ Architecture decisions                        │                                                                                                                            
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ DevOps                 │ Docker, CI/CD, K8s guidance                   │                                                                                                                            
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ DB Architect           │ Schema design, query optimization             │                                                                                                                            
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ API Architect          │ REST/GraphQL design review                    │                                                                                                                            
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ Flutter/RN/iOS/Android │ Mobile dev agents                             │                                                                                                                            
  ├────────────────────────┼───────────────────────────────────────────────┤                                                                                                                              
  │ ...and 14 more         │ Performance, accessibility, cost optimization │                                                                                                                            
  └────────────────────────┴───────────────────────────────────────────────┘                                                                                                                              

  Interactive Mode                                                                                                                                                                                        

  dev-crew interactive                                                                                                                                                                                    

  Type naturally:                                                                                                                                                                                         
  ❯ review @src/app.ts                                                                                                                                                                                  
  ❯ is there any security issue in src/api?
  ❯ write tests for @lib/auth.ts                                                                                                                                                                          
  ❯ explain how the middleware works                                                                                                                                                                      

  Use @ to tag files (Tab autocompletes), / for slash commands.                                                                                                                                           

  Multi-Provider                                                                                                                                                                                          

  Works with Claude Code, OpenAI, Copilot, Aider, or Ollama. No AI installed? Simulation mode lets you try everything.                                                                                    

  Token Optimization                                                                                                                                                                                      

  Built-in smart context engine:                                                                                                                                                                          
  - Auto-detects your stack (framework, DB, ORM, tests)                                                                                                                                                 
  - Gathers only relevant files (max 15 files, 80K chars)                                                                                                                                                 
  - Compresses prompts to save 40-70% tokens                                                                                                                                                            

  Try It                                                                                                                                                                                                

  npm i -g dev-crew                                                                                                                                                                                     
  dev-crew interactive                                                                                                                                                                                    

  GitHub: https://github.com/vasoyaprince14/dev-crew                                                                                                                                                      

  I'd love feedback — what would make this more useful for your workflow?                                                                                                                                 

  ---                                                                                                                                                                                                     
  Built by https://github.com/vasoyaprince14                                                                                                                                                            

  ---   
Enter fullscreen mode Exit fullscreen mode

Top comments (0)