<?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: junai</title>
    <description>The latest articles on DEV Community by junai (@junai).</description>
    <link>https://dev.to/junai</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%2F3795524%2Ff1eec290-f768-444c-a085-cd4941a1eb43.jpeg</url>
      <title>DEV Community: junai</title>
      <link>https://dev.to/junai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/junai"/>
    <language>en</language>
    <item>
      <title>The AI Agentic pipeline that actually finishes what it starts</title>
      <dc:creator>junai</dc:creator>
      <pubDate>Thu, 26 Feb 2026 22:30:46 +0000</pubDate>
      <link>https://dev.to/junai/the-ai-agentic-pipeline-that-actually-finishes-what-it-starts-21g2</link>
      <guid>https://dev.to/junai/the-ai-agentic-pipeline-that-actually-finishes-what-it-starts-21g2</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;⚡ &lt;strong&gt;Early access / beta&lt;/strong&gt; — shipping updates daily. Things move fast. Jump in now and grow with it.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;Most AI coding tools give you a smart assistant.&lt;/p&gt;

&lt;p&gt;You ask. It answers. You ask again. It answers again.&lt;/p&gt;

&lt;p&gt;There's no &lt;em&gt;process&lt;/em&gt;. No structure. No handoffs. Just you, manually steering an LLM through every decision from idea to shipped feature — one prompt at a time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What if you didn't have to steer at all?&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🎬 Watch the pipeline run - Coming soon..
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;📸 &lt;em&gt;[GIF: intent typed into &lt;a class="mentioned-user" href="https://dev.to/orchestrator"&gt;@orchestrator&lt;/a&gt; → routes to &lt;a class="mentioned-user" href="https://dev.to/prd"&gt;@prd&lt;/a&gt; → PRD writes itself → pipeline-state.json updates in real-time → next agent auto-opens]&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's not a demo environment. That's just VS Code + GitHub Copilot + junai installed.&lt;/p&gt;




&lt;h2&gt;
  
  
  The idea: a real engineering process, run by AI
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;junai&lt;/strong&gt; is an agentic pipeline inside VS Code. Every stage of your delivery lifecycle has a dedicated specialist agent. The Orchestrator routes between them. State is tracked in a plain-text file in your repo.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Intent → PRD → Architecture → Plan → Implement → Test → Review → Shipped ✅
    ↑ every stage has a specialist, every transition is logged, every gate is explicit
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You describe what you want to build. The pipeline figures out what needs to happen and who handles each part — automatically.&lt;/p&gt;




&lt;h2&gt;
  
  
  🤖 Autopilot: sign off once, watch it go
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;📸 &lt;em&gt;[GIF: autopilot mode — pipeline-state.json updating on disk, next agent auto-opening in Copilot chat, handoff prompt firing, no mouse clicks]&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Switch to &lt;strong&gt;autopilot mode&lt;/strong&gt; and junai's watcher monitors &lt;code&gt;pipeline-state.json&lt;/code&gt; in real-time. The moment a stage completes:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Reads the routing decision&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Automatically opens the correct specialist agent&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sends the handoff prompt&lt;/strong&gt; — the next agent starts immediately&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No copy-paste. No "now go tell the architect agent...". It just &lt;em&gt;goes&lt;/em&gt; — until it hits a decision that genuinely needs you.&lt;/p&gt;

&lt;p&gt;You sign off the intent once. The pipeline runs the rest.&lt;/p&gt;




&lt;h2&gt;
  
  
  24 specialists. Right model for the right job.
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Agent&lt;/th&gt;
&lt;th&gt;Model&lt;/th&gt;
&lt;th&gt;Why&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Orchestrator, Architect, Anchor&lt;/td&gt;
&lt;td&gt;Claude Opus&lt;/td&gt;
&lt;td&gt;Highest-stakes reasoning&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Code Reviewer, Debug&lt;/td&gt;
&lt;td&gt;Claude Sonnet&lt;/td&gt;
&lt;td&gt;Judgment over generation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Implement, Tester, SQL, Frontend&lt;/td&gt;
&lt;td&gt;GPT-5.3-Codex&lt;/td&gt;
&lt;td&gt;Pure code output&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Diagrams, UI/UX&lt;/td&gt;
&lt;td&gt;Gemini Pro&lt;/td&gt;
&lt;td&gt;Visual + design&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  9 MCP tools — pipeline control from chat
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Where are we?"&lt;/em&gt; → &lt;code&gt;get_pipeline_status&lt;/code&gt;&lt;br&gt;
&lt;em&gt;"Skip this stage"&lt;/em&gt; → &lt;code&gt;skip_stage&lt;/code&gt;&lt;br&gt;
&lt;em&gt;"Who handles testing?"&lt;/em&gt; → &lt;code&gt;get_agent_for_stage&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  3 modes for 3 situations
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Mode&lt;/th&gt;
&lt;th&gt;What it does&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;🎛️ &lt;strong&gt;supervised&lt;/strong&gt;
&lt;/td&gt;
&lt;td&gt;You approve every gate — full control&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;🤝 &lt;strong&gt;assisted&lt;/strong&gt;
&lt;/td&gt;
&lt;td&gt;AI recommends, you decide&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;🤖 &lt;strong&gt;autopilot&lt;/strong&gt;
&lt;/td&gt;
&lt;td&gt;Sign off the intent once. Pipeline runs itself.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Try it in 60 seconds
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Open VS Code (GitHub Copilot required — the one you already pay for)&lt;/li&gt;
&lt;li&gt;Search &lt;strong&gt;junai&lt;/strong&gt; in Extensions, or → &lt;a href="https://marketplace.visualstudio.com/items?itemName=junai-labs.junai" rel="noopener noreferrer"&gt;install from marketplace&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Open Copilot Chat → type &lt;code&gt;@Orchestrator&lt;/code&gt; → describe what you want to build&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The agent pool lives in &lt;code&gt;.github/&lt;/code&gt; — portable across machines, shareable across teams.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚠️ This is moving fast
&lt;/h2&gt;

&lt;p&gt;junai is in &lt;strong&gt;active beta&lt;/strong&gt;. Features ship &lt;em&gt;daily&lt;/em&gt;. The core pipeline is late beta and battle-tested, but rough edges exist.&lt;/p&gt;

&lt;p&gt;If something breaks — &lt;a href="https://github.com/saajunaid/junai-vscode/issues" rel="noopener noreferrer"&gt;open an issue&lt;/a&gt;. Fixes land same day or next. Early adopters shape what this becomes.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;→ &lt;a href="https://marketplace.visualstudio.com/items?itemName=junai-labs.junai" rel="noopener noreferrer"&gt;junai on VS Code Marketplace&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;→ &lt;a href="https://github.com/saajunaid/junai-vscode" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>githubcopilot</category>
      <category>agents</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
