<?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: 林宗賢</title>
    <description>The latest articles on DEV Community by 林宗賢 (@_205065226f2262c378143).</description>
    <link>https://dev.to/_205065226f2262c378143</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%2F3957539%2F2b2df84b-da01-4696-8dfe-bb93d484ffba.jpg</url>
      <title>DEV Community: 林宗賢</title>
      <link>https://dev.to/_205065226f2262c378143</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/_205065226f2262c378143"/>
    <language>en</language>
    <item>
      <title>I built a 9-agent AI dev team in a Claude Code plugin — here's what happened</title>
      <dc:creator>林宗賢</dc:creator>
      <pubDate>Fri, 29 May 2026 03:47:21 +0000</pubDate>
      <link>https://dev.to/_205065226f2262c378143/i-built-a-9-agent-ai-dev-team-in-a-claude-code-plugin-heres-what-happened-281p</link>
      <guid>https://dev.to/_205065226f2262c378143/i-built-a-9-agent-ai-dev-team-in-a-claude-code-plugin-heres-what-happened-281p</guid>
      <description>&lt;h2&gt;
  
  
  The moment I realized AI coding assistants were broken
&lt;/h2&gt;

&lt;p&gt;I was building a side project — a simple task manager app. I opened Claude Code, typed:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Add user authentication with email and password login"&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;…and hit enter.&lt;/p&gt;

&lt;p&gt;Twenty minutes later, I had code. A lot of code. Authentication logic, routes, middleware, even some basic tests.&lt;/p&gt;

&lt;p&gt;But there was a problem.&lt;/p&gt;

&lt;p&gt;The frontend (me, on a different day) had assumed a different API shape. The tests only covered the happy path. There was no architecture decision to reference — I just picked JWT because it felt right. And the &lt;code&gt;docker-compose.yml&lt;/code&gt;? It didn't exist yet.&lt;/p&gt;

&lt;p&gt;I had AI-generated code, but no real software development workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  What was actually missing
&lt;/h2&gt;

&lt;p&gt;Good software isn't just code. Before you write a single line, you need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A spec that everyone (including future-you) agrees on&lt;/li&gt;
&lt;li&gt;An architecture decision that explains the &lt;em&gt;why&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;Backend and frontend designed to talk to each other&lt;/li&gt;
&lt;li&gt;Tests that prove things actually work&lt;/li&gt;
&lt;li&gt;A code review that catches security holes before they ship&lt;/li&gt;
&lt;li&gt;A deployment config that someone can actually run&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Normally, a team handles all of this. A PM writes the spec. An architect proposes options. Engineers implement and review each other's work. A DevOps person sets up CI/CD.&lt;/p&gt;

&lt;p&gt;What if AI could fill all those roles?&lt;/p&gt;




&lt;h2&gt;
  
  
  Building the pipeline
&lt;/h2&gt;

&lt;p&gt;I built &lt;strong&gt;&lt;code&gt;claude-dev-pipeline&lt;/code&gt;&lt;/strong&gt; — a Claude Code plugin that orchestrates a team of specialized AI agents, each with a specific job.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://assets.dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/airwaves778899" rel="noopener noreferrer"&gt;
        airwaves778899
      &lt;/a&gt; / &lt;a href="https://github.com/airwaves778899/claude-dev-pipeline" rel="noopener noreferrer"&gt;
        claude-dev-pipeline
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      7-agent full-stack development pipeline plugin for Claude Code — PM → Architect → Backend → Frontend → QA → Reviewer → DevOps
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;claude-dev-pipeline&lt;/h1&gt;
&lt;/div&gt;
&lt;blockquote&gt;
&lt;p&gt;A Claude Code plugin that orchestrates &lt;strong&gt;7 specialized AI agents&lt;/strong&gt; to take your feature request all the way from requirements analysis to production deployment — with a human-in-the-loop checkpoint at every phase.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href="https://github.com/airwaves778899/claude-dev-pipeline/./README.zh.md" rel="noopener noreferrer"&gt;中文說明&lt;/a&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Why?&lt;/h2&gt;
&lt;/div&gt;
&lt;p&gt;Writing a feature involves more than just code. You need:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A clear spec that everyone agrees on&lt;/li&gt;
&lt;li&gt;An architecture decision before you write a single line&lt;/li&gt;
&lt;li&gt;Backend and frontend that actually fit together&lt;/li&gt;
&lt;li&gt;Tests that prove things work&lt;/li&gt;
&lt;li&gt;A code review that catches security holes&lt;/li&gt;
&lt;li&gt;A deployment config that actually runs&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;code&gt;claude-dev-pipeline&lt;/code&gt; encodes that workflow as a Claude Code plugin. Each agent is an expert. You stay in control at every gate.&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;The 7 Agents&lt;/h2&gt;
&lt;/div&gt;
&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;#&lt;/th&gt;
&lt;th&gt;Agent&lt;/th&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;th&gt;Output&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Discovery&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Clarifies vague requirements via dialogue&lt;/td&gt;
&lt;td&gt;Confirmed requirement&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Exploration&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Scans existing codebase in parallel&lt;/td&gt;
&lt;td&gt;&lt;code&gt;.pipeline/exploration.md&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;PM&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Writes a structured PRD with user stories &amp;amp; acceptance criteria&lt;/td&gt;
&lt;td&gt;&lt;code&gt;.pipeline/pm.md&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Architect&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Proposes 2–3 architecture options&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;…&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/airwaves778899/claude-dev-pipeline" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyr7dvz1x7qnlf5hhhvuk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyr7dvz1x7qnlf5hhhvuk.png" alt="claude-dev-pipeline GitHub repo" width="800" height="413"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The idea was simple: instead of one big AI doing everything, use multiple agents in sequence — each expert at one job — with you approving the output at every important gate.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Nine agents, nine phases:&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;#&lt;/th&gt;
&lt;th&gt;Agent&lt;/th&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;th&gt;Output&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;0&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Discovery&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Clarifies vague requirements via dialogue&lt;/td&gt;
&lt;td&gt;Confirmed requirement&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Exploration&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Scans existing codebase in parallel&lt;/td&gt;
&lt;td&gt;&lt;code&gt;.pipeline/exploration.md&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;PM&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Writes a structured PRD with user stories &amp;amp; acceptance criteria&lt;/td&gt;
&lt;td&gt;&lt;code&gt;.pipeline/pm.md&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Architect&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Proposes 2–3 architecture options with trade-offs&lt;/td&gt;
&lt;td&gt;&lt;code&gt;.pipeline/architect.md&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4a&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Backend&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Implements REST APIs, services, repositories&lt;/td&gt;
&lt;td&gt;&lt;code&gt;src/backend/&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4b&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Frontend&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Implements React UI, hooks, API client&lt;/td&gt;
&lt;td&gt;&lt;code&gt;src/frontend/&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;QA&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Writes and runs unit, integration, and E2E tests&lt;/td&gt;
&lt;td&gt;&lt;code&gt;tests/&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Reviewer&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Audits code for security, bugs, and quality (confidence ≥ 80)&lt;/td&gt;
&lt;td&gt;&lt;code&gt;.pipeline/review.md&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;DevOps&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Creates Dockerfile, docker-compose, GitHub Actions CI/CD&lt;/td&gt;
&lt;td&gt;&lt;code&gt;deploy/&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgmg31jupv7vcw1w2sq16.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgmg31jupv7vcw1w2sq16.png" alt="Nine agents and their roles" width="800" height="413"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Phases 4a and 4b run in parallel.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The full flow:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User requirement
│
[Discovery]    ← asks clarifying questions if vague
│  confirmed requirement
[Exploration]  ← scans codebase in parallel (2 sub-agents)
│  exploration.md
[PM]           ← you review &amp;amp; approve PRD
│  pm.md
[Architect]    ← you choose 1 of 3 architecture options
│  architect.md
┌────┴────┐
[Backend]  [Frontend]  ← run in parallel
└────┬────┘
[QA]
│  tests green
[Reviewer] ← pipeline pauses if Critical issues &amp;gt; 3
│  review.md clean
[DevOps]
│
🎉 Done
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvyb5ck5hthagcognjy5l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvyb5ck5hthagcognjy5l.png" alt="Pipeline flow diagram" width="800" height="413"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  A few design decisions I'm proud of
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Human-in-the-loop at every critical gate.&lt;/strong&gt;&lt;br&gt;
You approve the PRD before architecture begins. You choose one of three architecture options before code is written. The Reviewer pauses everything if it finds more than 3 critical issues. AI does the work; you stay in control.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Backend and Frontend run in parallel.&lt;/strong&gt;&lt;br&gt;
Since both agents were given the same architecture document, they fit together. This shaves real time off the pipeline and eliminates the classic "your API doesn't match what I expected" problem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Every agent writes a structured artifact.&lt;/strong&gt;&lt;br&gt;
The PM writes &lt;code&gt;.pipeline/pm.md&lt;/code&gt;. The Architect writes &lt;code&gt;.pipeline/architect.md&lt;/code&gt;. These files become the living memory of your project — persistent knowledge that survives across pipeline runs and future features.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Git auto-commits after each approved phase.&lt;/strong&gt;&lt;br&gt;
Every milestone is tracked:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;pipeline: PM — add PRD for &amp;lt;feature&amp;gt;
pipeline: Architect — add architecture for &amp;lt;feature&amp;gt;
pipeline: Implement &amp;lt;feature&amp;gt; (backend + frontend)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  How to try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# 1. Clone the repo&lt;/span&gt;
git clone https://github.com/airwaves778899/claude-dev-pipeline.git

&lt;span class="c"&gt;# 2. Register as a local marketplace&lt;/span&gt;
claude plugin marketplace add &lt;span class="s2"&gt;"C:&lt;/span&gt;&lt;span class="se"&gt;\p&lt;/span&gt;&lt;span class="s2"&gt;ath&lt;/span&gt;&lt;span class="se"&gt;\t&lt;/span&gt;&lt;span class="s2"&gt;o&lt;/span&gt;&lt;span class="se"&gt;\c&lt;/span&gt;&lt;span class="s2"&gt;laude-dev-pipeline"&lt;/span&gt;   &lt;span class="c"&gt;# Windows&lt;/span&gt;
claude plugin marketplace add &lt;span class="s2"&gt;"/path/to/claude-dev-pipeline"&lt;/span&gt;     &lt;span class="c"&gt;# macOS/Linux&lt;/span&gt;

&lt;span class="c"&gt;# 3. Install&lt;/span&gt;
claude plugin &lt;span class="nb"&gt;install &lt;/span&gt;claude-dev-pipeline

&lt;span class="c"&gt;# 4. Verify&lt;/span&gt;
claude plugin list
&lt;span class="c"&gt;# should show: ✓ claude-dev-pipeline  enabled&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then, inside any project with Claude Code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/claude-dev-pipeline:dev-pipeline start "Add user authentication with email + password login"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can also target a single agent or resume from a specific phase:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/claude-dev-pipeline:dev-pipeline run --agent architect
/claude-dev-pipeline:dev-pipeline run --from qa
/claude-dev-pipeline:dev-pipeline status
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Stack profiles&lt;/strong&gt; let you skip the tech-stack configuration prompt:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/dev-pipeline start "Add payment processing" --stack python
/dev-pipeline start "Build mobile onboarding" --stack flutter
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Supported: &lt;code&gt;ts-node&lt;/code&gt; (default), &lt;code&gt;ts-react&lt;/code&gt;, &lt;code&gt;python&lt;/code&gt;, &lt;code&gt;go&lt;/code&gt;, &lt;code&gt;flutter&lt;/code&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  The unexpected hard part
&lt;/h2&gt;

&lt;p&gt;I thought the hardest part would be writing the agent prompts. It wasn't.&lt;/p&gt;

&lt;p&gt;The hardest part was &lt;strong&gt;handoffs&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Each agent needs to know exactly what the previous agent decided. The PM agent's output has to be structured in a way the Architect can actually parse. The Architect's decision has to be specific enough that Backend and Frontend can implement without contradicting each other.&lt;/p&gt;

&lt;p&gt;I went through many iterations. The current solution: every agent reads the previous &lt;code&gt;.pipeline/*.md&lt;/code&gt; files as context, and writes its own output in a documented schema. Structured handoffs, not vibes.&lt;/p&gt;

&lt;p&gt;The second hard part was &lt;strong&gt;encoding my own opinions&lt;/strong&gt; into prompts. When I write code alone, I make dozens of micro-decisions automatically. Teaching an agent to make those same decisions consistently — and to explain its reasoning — took real effort. It's essentially writing a very opinionated style guide for each role.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I learned
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Structure beats raw intelligence.&lt;/strong&gt; A well-prompted agent that always produces a specific output format is more useful than a powerful model that does something different every time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Approval gates are not friction — they're the whole point.&lt;/strong&gt; The value of this pipeline isn't speed. It's that you &lt;em&gt;understand&lt;/em&gt; every decision that was made. You approved the PRD. You chose the architecture. You reviewed the tests. When something breaks in production, you know why — because you were part of every decision.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;AI agents need to read before they write.&lt;/strong&gt; The Exploration agent was a late addition, but it turned out to be essential. Without it, the Backend agent would generate code with no awareness of existing patterns, naming conventions, or architecture choices already in the codebase. Reading first changed everything.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;p&gt;The project is open source (MIT) and actively evolving.&lt;/p&gt;

&lt;p&gt;Recent additions in v3.0.0 include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Security Agent&lt;/strong&gt; — runs an OWASP Top 10 audit between QA and Reviewer&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Troubleshooter Agent&lt;/strong&gt; — structured bug-fix loop: Reproduce → Isolate → Diagnose → Fix → Verify, triggered with &lt;code&gt;/dev-pipeline fix "description of the bug"&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I'm planning to add support for multi-repo pipelines and a web-based progress dashboard.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;⭐ If this resonates, give it a star:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://github.com/airwaves778899/claude-dev-pipeline" rel="noopener noreferrer"&gt;github.com/airwaves778899/claude-dev-pipeline&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm curious: what's the most painful part of your own dev workflow that you wish an AI could handle? Drop it in the comments.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;This plugin is built on Claude Code, Anthropic's CLI tool for agentic coding. The plugin system lets you define custom agents and slash commands that Claude Code can load and orchestrate.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>claudecode</category>
      <category>programming</category>
      <category>devtools</category>
    </item>
  </channel>
</rss>
