<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: prince vasoya</title>
    <description>The latest articles on DEV Community by prince vasoya (@prince_vasoya_12d7a1a2bae).</description>
    <link>https://dev.to/prince_vasoya_12d7a1a2bae</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2847763%2Fde0ef753-4f28-4fef-add3-5dabe800950c.png</url>
      <title>DEV Community: prince vasoya</title>
      <link>https://dev.to/prince_vasoya_12d7a1a2bae</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prince_vasoya_12d7a1a2bae"/>
    <language>en</language>
    <item>
      <title>I Built 24 AI Agents for My Terminal — Here's What They Do</title>
      <dc:creator>prince vasoya</dc:creator>
      <pubDate>Fri, 20 Mar 2026 19:37:59 +0000</pubDate>
      <link>https://dev.to/prince_vasoya_12d7a1a2bae/i-built-24-ai-agents-for-my-terminal-heres-what-they-do-31jn</link>
      <guid>https://dev.to/prince_vasoya_12d7a1a2bae/i-built-24-ai-agents-for-my-terminal-heres-what-they-do-31jn</guid>
      <description>&lt;p&gt;## The Problem                                                                                                                                                                                          &lt;/p&gt;

&lt;p&gt;Every time I needed a code review, I'd copy code into ChatGPT, explain the stack, paste the schema... It was painful.                                                                                   &lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;Dev-Crew&lt;/strong&gt; — a CLI that gives you 24 specialized AI agents, each expert in one domain.                                                                                                     &lt;/p&gt;

&lt;p&gt;## Install                                                                                                                                                                                            &lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
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                                                                                                                                                            

  ---   
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>javascript</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
