<?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: Erik</title>
    <description>The latest articles on DEV Community by Erik (@eschaar).</description>
    <link>https://dev.to/eschaar</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4005479%2Fb408af60-5cea-4675-b3d1-bf62fa43c71e.png</url>
      <title>DEV Community: Erik</title>
      <link>https://dev.to/eschaar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/eschaar"/>
    <language>en</language>
    <item>
      <title>Why I Built vstack for VS Code Copilot Agent Workflows</title>
      <dc:creator>Erik</dc:creator>
      <pubDate>Sat, 27 Jun 2026 14:52:06 +0000</pubDate>
      <link>https://dev.to/eschaar/why-i-built-vstack-for-vs-code-copilot-agent-workflows-77o</link>
      <guid>https://dev.to/eschaar/why-i-built-vstack-for-vs-code-copilot-agent-workflows-77o</guid>
      <description>&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fcs97zxav9apg0b8sw13p.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fcs97zxav9apg0b8sw13p.png" alt="vstack" width="223" height="178"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I built vstack because I kept seeing the same pattern:&lt;/p&gt;

&lt;p&gt;AI coding agents can be very capable, but team delivery still becomes inconsistent.&lt;/p&gt;

&lt;p&gt;For one-off tasks, the default planner and agent experience in VS Code is often good enough.&lt;br&gt;&lt;br&gt;
But once work crosses multiple stages, planning, architecture, design, implementation, verification, and release, quality and alignment can drift quickly.&lt;/p&gt;

&lt;p&gt;That is the gap I wanted to address.&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/eschaar/vstack" rel="noopener noreferrer"&gt;https://github.com/eschaar/vstack&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;PyPI: &lt;a href="https://pypi.org/project/vstack/" rel="noopener noreferrer"&gt;https://pypi.org/project/vstack/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What vstack is
&lt;/h2&gt;

&lt;p&gt;vstack is a VS Code-native AI engineering workflow system for backend-oriented software work.&lt;/p&gt;

&lt;p&gt;It provides a structured operating model through reusable:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;agents&lt;/li&gt;
&lt;li&gt;skills&lt;/li&gt;
&lt;li&gt;instructions&lt;/li&gt;
&lt;li&gt;prompts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is simple: reduce ad-hoc prompting and improve repeatable delivery.&lt;/p&gt;

&lt;h2&gt;
  
  
  A quick note on the name
&lt;/h2&gt;

&lt;p&gt;The name vstack is a small nod to gstack, which helped inspire the early thinking.&lt;br&gt;&lt;br&gt;
From there, I intentionally took a different direction: more VS Code-native, more template-driven, and more focused on structured team workflows.&lt;/p&gt;

&lt;p&gt;So yes, there is inspiration, but vstack is intentionally its own thing.&lt;/p&gt;

&lt;h2&gt;
  
  
  How teams can run it
&lt;/h2&gt;

&lt;p&gt;vstack supports multiple execution styles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;agentic mode: planner-led orchestration across stages&lt;/li&gt;
&lt;li&gt;manual mode: explicit stage-by-stage handoffs&lt;/li&gt;
&lt;li&gt;hybrid mode: both paths available when teams need flexibility&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This allows teams to choose strict orchestration, explicit control, or a practical mix based on change risk and team maturity.&lt;/p&gt;

&lt;h2&gt;
  
  
  Human-in-the-loop by design
&lt;/h2&gt;

&lt;p&gt;A core principle in vstack is user-gated progression.&lt;/p&gt;

&lt;p&gt;Stages produce artifacts, and progression can pause based on human-in-the-loop policy for explicit confirmation when needed.&lt;br&gt;&lt;br&gt;
In practice, users can inspect outputs, validate direction, and approve before moving to the next stage.&lt;/p&gt;

&lt;p&gt;For me, this is the practical version of human-in-the-loop: not just AI output, but human control over progression and quality gates.&lt;/p&gt;

&lt;h2&gt;
  
  
  What vstack is not
&lt;/h2&gt;

&lt;p&gt;vstack is not trying to replace default VS Code agent usage for quick solo tasks.&lt;/p&gt;

&lt;p&gt;Default flows can already work very well.&lt;br&gt;&lt;br&gt;
vstack is aimed at teams that want clearer boundaries, more consistency, and a shared way of working over time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I am sharing this now
&lt;/h2&gt;

&lt;p&gt;I am looking for practical feedback from people actively using agentic workflows in VS Code.&lt;/p&gt;

&lt;p&gt;I want to understand:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;whether vstack creates real value in day-to-day use&lt;/li&gt;
&lt;li&gt;where friction is too high&lt;/li&gt;
&lt;li&gt;what should be improved next&lt;/li&gt;
&lt;li&gt;and whether to continue deepening this direction or adjust course&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you are using similar workflows, I would value your experience.&lt;br&gt;&lt;br&gt;
Short and honest feedback is exactly what I need.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/eschaar/vstack" rel="noopener noreferrer"&gt;https://github.com/eschaar/vstack&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;PyPI: &lt;a href="https://pypi.org/project/vstack/" rel="noopener noreferrer"&gt;https://pypi.org/project/vstack/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Install options:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;pipx install vstack&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;pip install vstack&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;brew install eschaar/vstack/vstack&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>vscode</category>
      <category>githubcopilot</category>
      <category>productivity</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
