<?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: Willem van Heemstra</title>
    <description>The latest articles on DEV Community by Willem van Heemstra (@wvanheemstra).</description>
    <link>https://dev.to/wvanheemstra</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%2F1547150%2Fcf4a7812-9d15-47b3-9284-0510a0931fd9.jpeg</url>
      <title>DEV Community: Willem van Heemstra</title>
      <link>https://dev.to/wvanheemstra</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/wvanheemstra"/>
    <language>en</language>
    <item>
      <title>Santa Augmentcode Intent Ep.4</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Mon, 25 May 2026 14:31:40 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep4-19h2</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep4-19h2</guid>
      <description>&lt;h1&gt;
  
  
  Every Elf Gets a Workbench — Isolated Workspaces 🔨
&lt;/h1&gt;

&lt;p&gt;Accompanying source code repository: &lt;a href="https://github.com/software-journey/augmentcode-intent" rel="noopener noreferrer"&gt;&lt;code&gt;Santa Augmentcode Intent&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In the early Workshop days, all the Elves shared one big table. It seemed efficient. It was a disaster. Jingle would sand a wheel just as Jangle reached for it. Twinkle’s paint would end up on Tinkle’s train set. The great Christmas Collision of 1889 — I do not wish to speak of it. The solution was obvious in retrospect: give every Elf their own workbench. Isolated, private, but connected to the same Master Gift List.Augment Intent does the same thing. It just calls them workspaces.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Problem With Sharing a Codebase
&lt;/h2&gt;

&lt;p&gt;When multiple agents — or indeed multiple humans — work on the same set of files at the same time, collisions are inevitable. Agent A modifies &lt;code&gt;auth-middleware.ts&lt;/code&gt; at line 47. Agent B modifies the same file at line 52. Neither agent knows the other is there. The merge conflict that results is not a bug in either agent’s reasoning. It is a &lt;strong&gt;coordination failure&lt;/strong&gt; — the absence of isolation.&lt;/p&gt;

&lt;p&gt;Git was designed for humans working mostly in series. A branch is opened, worked on for days or weeks, then merged. The assumption is that the pace of change is human-paced.&lt;/p&gt;

&lt;p&gt;AI agents are not human-paced. They can modify dozens of files in minutes. Under parallel multi-agent execution, the conflict rate rises faster than any team can manage manually.&lt;/p&gt;

&lt;p&gt;Intent solves this with &lt;strong&gt;isolated workspaces backed by Git worktrees&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is a Git Worktree?
&lt;/h2&gt;

&lt;p&gt;A worktree is a lesser-known Git feature that allows you to check out &lt;strong&gt;multiple branches of the same repository simultaneously&lt;/strong&gt;, each in its own directory. Unlike opening two terminal windows and hoping for the best, worktrees are a first-class Git concept: they share the repository’s object store, so no data is duplicated, but each worktree has its own working tree and index.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Classic git workflow (one checkout)&lt;/span&gt;
git checkout feat/jwt-auth
&lt;span class="c"&gt;# ... work, commit, push&lt;/span&gt;

&lt;span class="c"&gt;# Git worktree (multiple simultaneous checkouts)&lt;/span&gt;
git worktree add ../api-gateway-worktree feat/jwt-auth
git worktree add ../auth-service-worktree feat/auth-service
&lt;span class="c"&gt;# Both directories exist simultaneously, sharing one .git object store&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Intent automates all of this. When the Coordinator spawns a Specialist, Intent creates a dedicated worktree for that agent automatically. The Elf gets its own workbench. Other Elves cannot see its in-progress files. The files are isolated until the Elf is done and the Coordinator integrates the work.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Elf Workbench in Practice
&lt;/h2&gt;

&lt;p&gt;Imagine the Coordinator has spawned three Specialist Agents for the JWT authentication task from Episode 3:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Workshop Floor
├── Auth Token Elf          → worktree: feat/auth-token-service
├── Gateway Middleware Elf  → worktree: feat/gateway-middleware
└── Test Suite Elf          → worktree: feat/integration-tests (waiting)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each worktree contains a copy of the relevant files at the point the Elf starts. Changes made by Auth Token Elf in &lt;code&gt;auth-service/src/token-service.ts&lt;/code&gt; are &lt;strong&gt;invisible to Gateway Middleware Elf&lt;/strong&gt; until they are explicitly integrated. There are no accidental clobberings. No race conditions on file writes.&lt;/p&gt;

&lt;p&gt;The Coordinator tracks the state of each worktree. When both implementation Elves complete, it orchestrates the merge — resolving any conflicts at the spec level (because the interface contracts were declared there) rather than discovering them at the file level.&lt;/p&gt;

&lt;h2&gt;
  
  
  Resumable Sessions: The Workshop Is Open When You Return
&lt;/h2&gt;

&lt;p&gt;There is another form of isolation that Father Christmas values enormously: &lt;strong&gt;temporal isolation&lt;/strong&gt;. The ability to close the Workshop at night and find it exactly as you left it in the morning.&lt;/p&gt;

&lt;p&gt;In most AI tools, closing the window ends the session. Context is lost. Agents forget. You start over.&lt;/p&gt;

&lt;p&gt;Intent’s workspaces are &lt;strong&gt;resumable&lt;/strong&gt;. When you close the application and reopen it the next morning, every agent is exactly where it was. The spec is unchanged. The worktrees are intact. The in-progress commits are safe. The Elves are waiting at their workbenches, ready to continue.&lt;/p&gt;

&lt;p&gt;This is possible because Intent uses &lt;strong&gt;auto-commit&lt;/strong&gt; — as agents complete units of work, their changes are committed to their branch automatically. The persistent state is the git history itself, which survives any restart.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Intent workspace state on close:
├── spec: JWT auth — 6/9 tasks complete
├── Auth Token Elf: feat/auth-token-service — all commits saved
├── Gateway Middleware Elf: feat/gateway-middleware — all commits saved
└── Test Suite Elf: feat/integration-tests — waiting to start

Intent workspace state on reopen (next morning):
└── [identical to above — nothing lost]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For Father Christmas, this means I can step away from the Workshop on December 23rd for a brief rest, return on the 24th, and find every Elf at their bench with their gifts half-wrapped exactly as I left them. The Workshop never forgets.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Unified Window: Code, Browser, Terminal, Git
&lt;/h2&gt;

&lt;p&gt;Isolation does not mean fragmentation. Intent keeps everything visible in &lt;strong&gt;one window&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The &lt;strong&gt;code editor&lt;/strong&gt; shows the active agent’s files.&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;built-in Chrome browser&lt;/strong&gt; previews localhost changes in real time.&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;terminal&lt;/strong&gt; runs builds, tests, and scripts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Git integration&lt;/strong&gt; handles staging, committing, and branch management.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You do not need to switch between VS Code, iTerm, Chrome, and SourceTree. The Workshop floor is one room with everything on it.&lt;/p&gt;

&lt;p&gt;This matters for agent work because agents need to &lt;strong&gt;see results immediately&lt;/strong&gt;. A Specialist that modifies a React component can open the browser preview in the same window, verify the rendering, and either commit or adjust — without handing off to a human to check.&lt;/p&gt;

&lt;h2&gt;
  
  
  SIPOC: Isolated Workspace Management
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Coordinator, Git repository, file system&lt;/td&gt;
&lt;td&gt;Task assignment, branch name, starting file state&lt;/td&gt;
&lt;td&gt;Coordinator spawns agent → Intent creates worktree → Agent works in isolation → Auto-commit saves progress → Coordinator integrates on completion&lt;/td&gt;
&lt;td&gt;Isolated branch per agent, no conflicts, resumable state&lt;/td&gt;
&lt;td&gt;Coordinator Agent, Developer, CI/CD pipeline&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Father Christmas, the main toy vault&lt;/td&gt;
&lt;td&gt;Elf assignment, workbench materials&lt;/td&gt;
&lt;td&gt;Santa assigns bench → Elf gets private materials → works without interruption → gifts stored safely → Santa integrates at end&lt;/td&gt;
&lt;td&gt;No collisions, no broken gifts, always resumable&lt;/td&gt;
&lt;td&gt;Quality Control, Head Elf Pepper, the Sleigh&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Practical Tip: When to Merge
&lt;/h2&gt;

&lt;p&gt;Father Christmas has one firm rule about workbenches: an Elf’s work stays on their bench until it is &lt;strong&gt;finished and verified&lt;/strong&gt;. Premature merges cause half-built toys to appear in the main inventory, confusing other Elves.&lt;/p&gt;

&lt;p&gt;In Intent terms: the Coordinator should not merge a Specialist’s branch until:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The Specialist has reported completion.&lt;/li&gt;
&lt;li&gt;The Verifier Agent has confirmed compliance with the spec.&lt;/li&gt;
&lt;li&gt;Any interface contracts with other Elves have been respected.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The spec is the checklist. When all boxes are ticked, the merge is safe.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Comes Next
&lt;/h2&gt;

&lt;p&gt;In Episode 5, Father Christmas will explain &lt;strong&gt;Spec-Driven Development&lt;/strong&gt; — the philosophical shift that puts the living spec at the centre of the workflow and uses it to ensure everything finishes in time for Christmas. This is the &lt;em&gt;why&lt;/em&gt; behind everything we have built so far.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A tidy workbench is the sign of an organised mind. And an organised Workshop is the sign of gifts arriving on time.Ho ho ho! 🎅&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Part of the &lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;Santa Augmentcode Intent&lt;/a&gt; series. Published on &lt;a href="https://dev.to"&gt;dev.to&lt;/a&gt; under the &lt;a href="https://dev.to/the-software-s-journey"&gt;the-software-s-journey&lt;/a&gt; organisation.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>intent</category>
      <category>git</category>
      <category>devtools</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.8</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Mon, 25 May 2026 14:31:04 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep8-5bik</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep8-5bik</guid>
      <description>&lt;h1&gt;
  
  
  The Gifts Are Under the Tree — From Spec to Merged PR 🎄
&lt;/h1&gt;

&lt;p&gt;Accompanying source code repository: &lt;code&gt;Santa Augmentcode Intent&lt;/code&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Every year, on the morning of December 25th, I allow myself one quiet moment before the sleigh is unpacked and the Thank-You Letters start arriving. I sit in the empty Workshop, still warm from the night’s work, and look at the bare shelves where the gifts used to be. They are gone because they were delivered. Every one of them. On time, as specified, to the right address. That moment — that quiet confirmation that everything worked — is what we have been building towards in this entire series. Today, we deliver.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Complete Picture
&lt;/h2&gt;

&lt;p&gt;Over the past seven episodes, we have assembled all the pieces of the Intent workshop:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Episode 1&lt;/strong&gt;: The Workshop and what Intent is.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 2&lt;/strong&gt;: The Living Spec — the source of truth.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 3&lt;/strong&gt;: Santa the Coordinator and the Specialist Elves.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 4&lt;/strong&gt;: Isolated workspaces and resumable sessions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 5&lt;/strong&gt;: Spec-Driven Development and finishing on time.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 6&lt;/strong&gt;: The Context Engine — the Workshop Library.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 7&lt;/strong&gt;: Multi-agent orchestration in waves.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now we put them all together and walk through a complete Intent session, from the moment Head Elf Pepper opens the application to the moment the pull request is merged.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Scenario
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Goal&lt;/strong&gt;: Add a real-time gift delivery progress dashboard to the North Pole’s internal web application. The dashboard should show live sleigh position, remaining delivery count, and an estimated completion time. It must work on tablets and update every 30 seconds.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Constraints&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use the existing Reindeer GPS API (v2)&lt;/li&gt;
&lt;li&gt;No changes to the Delivery Manifest microservice&lt;/li&gt;
&lt;li&gt;Safari / iPad compatible&lt;/li&gt;
&lt;li&gt;Must pass existing end-to-end test suite&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Step 1: Open Intent and Set the Goal
&lt;/h2&gt;

&lt;p&gt;Pepper opens Intent on her MacBook. She types into the Coordinator:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;We need a real-time gift delivery dashboard. Show sleigh position
on a map, remaining delivery count, and estimated completion time.
Updates every 30 seconds. Must work on iPad Safari.
Use Reindeer GPS API v2. No changes to Delivery Manifest Service.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The Coordinator reads this prompt alongside the Context Engine’s analysis of the codebase. It knows the existing frontend stack (React, TypeScript), the API patterns used elsewhere in the project, and the existing test suite structure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2: The Coordinator Drafts the Living Spec
&lt;/h2&gt;

&lt;p&gt;Within seconds, the Coordinator produces:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Gift Delivery Dashboard — Living Spec&lt;/span&gt;

&lt;span class="gu"&gt;### Goal&lt;/span&gt;
Real-time dashboard showing sleigh position, delivery count,
and ETA. Updates every 30 seconds. iPad Safari compatible.

&lt;span class="gu"&gt;### Success Criteria&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Map renders in &amp;lt; 1s on iPad Safari
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Position updates within 30s of GPS data change
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Delivery count matches Manifest API response
&lt;span class="p"&gt;-&lt;/span&gt; [ ] ETA calculated from current position + remaining stops
&lt;span class="p"&gt;-&lt;/span&gt; [ ] All existing e2e tests pass
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Lighthouse accessibility score ≥ 90

&lt;span class="gu"&gt;### Constraints&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Reindeer GPS API v2 (existing auth token pattern)
&lt;span class="p"&gt;-&lt;/span&gt; Delivery Manifest Service: read-only, no new endpoints
&lt;span class="p"&gt;-&lt;/span&gt; Safari / iPad: no Chrome-only APIs

&lt;span class="gu"&gt;### Architecture&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; New React component: &lt;span class="sb"&gt;`&amp;lt;DeliveryDashboard /&amp;gt;`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; GPS polling service (30s interval, exponential backoff on fail)
&lt;span class="p"&gt;-&lt;/span&gt; Map: Leaflet.js (already in dependencies — see package.json)
&lt;span class="p"&gt;-&lt;/span&gt; Offline fallback: show last known position with staleness indicator

&lt;span class="gu"&gt;### Tasks&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [ ] GPS Polling Service — GPS Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Map Component — Map Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Delivery Count &amp;amp; ETA Widget — Data Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Safari/iPad CSS fixes — Responsive Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Integration tests — Test Elf (starts after GPS + Map done)
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Accessibility audit — A11y Elf (background)

&lt;span class="gu"&gt;### Decisions&lt;/span&gt;
(none yet)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Pepper reads the spec. She adds one clarification: &lt;em&gt;“ETA should display in local Workshop time, not UTC.”&lt;/em&gt; The Coordinator updates the spec and records the decision.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Review time: 4 minutes. No code written yet. One important decision already captured.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3: Intent Creates Isolated Workspaces
&lt;/h2&gt;

&lt;p&gt;The Coordinator identifies the dependency graph:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GPS Elf and Map Elf can start in parallel immediately.&lt;/li&gt;
&lt;li&gt;Data Elf can start immediately (it only reads from the Manifest API).&lt;/li&gt;
&lt;li&gt;Responsive Elf can start once Map Elf has a working component.&lt;/li&gt;
&lt;li&gt;Test Elf starts after GPS Elf and Map Elf complete.&lt;/li&gt;
&lt;li&gt;A11y Elf runs as a background agent throughout.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Intent creates five Git worktrees:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;feat/dashboard-gps-service        ← GPS Elf
feat/dashboard-map-component      ← Map Elf
feat/dashboard-data-widgets       ← Data Elf
feat/dashboard-responsive         ← Responsive Elf (waiting)
feat/dashboard-tests              ← Test Elf (waiting)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Wave 1 agents — GPS Elf, Map Elf, Data Elf — start simultaneously. The A11y Elf begins in the background.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 4: Wave 1 Runs
&lt;/h2&gt;

&lt;p&gt;Pepper watches the Intent window. Three agent conversations are active. Code appears in the Changes panel. The spec’s task list updates as work progresses.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GPS Elf&lt;/strong&gt; implements the polling service, using the existing auth token pattern it found via the Context Engine:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// gps-polling.service.ts&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="kd"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;GpsPollingService&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;private&lt;/span&gt; &lt;span class="nx"&gt;interval&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;30&lt;/span&gt;&lt;span class="nx"&gt;_000&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="k"&gt;private&lt;/span&gt; &lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

  &lt;span class="k"&gt;async&lt;/span&gt; &lt;span class="nf"&gt;startPolling&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;onUpdate&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;pos&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;SleighPosition&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="k"&gt;void&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;poll&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="k"&gt;try&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;pos&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;reindeerGpsApi&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getCurrentPosition&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
        &lt;span class="nf"&gt;onUpdate&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;pos&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
        &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
      &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;catch&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;min&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;8&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
      &lt;span class="p"&gt;}&lt;/span&gt;
      &lt;span class="nf"&gt;setTimeout&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;poll&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;interval&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="p"&gt;};&lt;/span&gt;
    &lt;span class="nf"&gt;poll&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The spec updates: ✅ GPS Polling Service — GPS Elf — done.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Map Elf&lt;/strong&gt; creates the &lt;code&gt;&amp;lt;DeliveryMap /&amp;gt;&lt;/code&gt; component using Leaflet.js, which it found already installed in &lt;code&gt;package.json&lt;/code&gt; via the Context Engine. It does not install a duplicate library.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data Elf&lt;/strong&gt; builds the delivery count and ETA widget, correctly calling the Manifest API’s read-only endpoint and displaying ETA in Workshop local time (it read the spec decision).&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 5: Handoffs and Wave 2
&lt;/h2&gt;

&lt;p&gt;Both GPS Elf and Map Elf report completion. The spec records the interfaces they produced:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;### Decisions&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; GPS service exposes: &lt;span class="sb"&gt;`startPolling(cb: (SleighPosition) =&amp;gt; void)`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Map component props: &lt;span class="sb"&gt;`{ position: SleighPosition; zoom?: number }`&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The Coordinator briefs Responsive Elf with the updated spec and the actual component structure. No guesswork. Test Elf receives both the GPS service interface and the Map component props, plus the existing e2e test patterns from the Context Engine.&lt;/p&gt;

&lt;p&gt;Wave 2 begins. Responsive Elf adds Safari/iPad CSS. Test Elf writes integration tests.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 6: The Verifier Checks Everything
&lt;/h2&gt;

&lt;p&gt;Wave 2 complete. The Coordinator spawns the Verifier Elf with the full spec and all five implementations.&lt;/p&gt;

&lt;p&gt;Verifier’s report:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;✅ Map renders in &amp;lt; 1s on iPad Safari — confirmed (Lighthouse: 0.7s)
✅ Position updates within 30s — confirmed
✅ Delivery count matches Manifest API — confirmed
✅ ETA in Workshop local time — confirmed
✅ Existing e2e tests pass — confirmed
✅ Lighthouse accessibility score ≥ 90 — confirmed (score: 94)
⚠️  Minor: GPS service does not log polling errors to existing
    structured logger (see logger.ts — used throughout codebase)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The warning is real and useful. The Context Engine told the Verifier about &lt;code&gt;logger.ts&lt;/code&gt;. A generic agent would have missed it.&lt;/p&gt;

&lt;p&gt;The Coordinator sends the GPS Elf back for a five-minute fix. It adds one line:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;catch &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;err&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nx"&gt;logger&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;warn&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;GPS polling failed&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;error&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;err&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;backoff&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Re-verification: all green.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 7: The Pull Request
&lt;/h2&gt;

&lt;p&gt;The Coordinator integrates all five worktrees into a single branch &lt;code&gt;feat/delivery-dashboard&lt;/code&gt; and opens a pull request. The PR description is generated from the Living Spec:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Gift Delivery Dashboard&lt;/span&gt;

Implements real-time dashboard (sleigh position, delivery count, ETA).

&lt;span class="gu"&gt;### Changes&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; New: &lt;span class="sb"&gt;`GpsPollingService`&lt;/span&gt; with 30s polling + exponential backoff
&lt;span class="p"&gt;-&lt;/span&gt; New: &lt;span class="sb"&gt;`&amp;lt;DeliveryMap /&amp;gt;`&lt;/span&gt; using existing Leaflet.js dependency
&lt;span class="p"&gt;-&lt;/span&gt; New: &lt;span class="sb"&gt;`&amp;lt;DeliveryStats /&amp;gt;`&lt;/span&gt; widget with ETA in Workshop local time
&lt;span class="p"&gt;-&lt;/span&gt; New: iPad/Safari responsive CSS
&lt;span class="p"&gt;-&lt;/span&gt; New: Integration test suite (12 tests, all passing)

&lt;span class="gu"&gt;### Verified Against Spec&lt;/span&gt;
All 6 success criteria confirmed by Verifier Agent.
Existing e2e suite: all passing.

&lt;span class="gu"&gt;### Decisions Recorded&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; ETA displayed in Workshop local time (not UTC) — per Pepper, Dec 3
&lt;span class="p"&gt;-&lt;/span&gt; Used existing Leaflet.js (not installed new mapping library)
&lt;span class="p"&gt;-&lt;/span&gt; GPS errors logged via existing structured logger (logger.ts)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Pepper reviews the spec (4 minutes). She reviews the diff (10 minutes, because the spec told her exactly what to look for). She approves.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Total elapsed time: 47 minutes. Zero rework. Christmas safe.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built Together
&lt;/h2&gt;

&lt;p&gt;Over this series, Father Christmas and Head Elf Pepper have explained every layer of Intent:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Concept&lt;/th&gt;
&lt;th&gt;What It Does&lt;/th&gt;
&lt;th&gt;Workshop Equivalent&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Living Spec&lt;/td&gt;
&lt;td&gt;Source of truth, auto-updated&lt;/td&gt;
&lt;td&gt;Master Gift List&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Coordinator Agent&lt;/td&gt;
&lt;td&gt;Plans, delegates, manages handoffs&lt;/td&gt;
&lt;td&gt;Father Christmas&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Specialist Agents&lt;/td&gt;
&lt;td&gt;Execute focused tasks in parallel&lt;/td&gt;
&lt;td&gt;Craft Elves&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Isolated Workspaces&lt;/td&gt;
&lt;td&gt;No collisions between parallel agents&lt;/td&gt;
&lt;td&gt;Private workbenches&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Spec-Driven Development&lt;/td&gt;
&lt;td&gt;Plan first, code follows&lt;/td&gt;
&lt;td&gt;Write the List before carving begins&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Context Engine&lt;/td&gt;
&lt;td&gt;Deep codebase knowledge for every agent&lt;/td&gt;
&lt;td&gt;The Workshop Library&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-Agent Orchestration&lt;/td&gt;
&lt;td&gt;Waves, handoffs, background agents&lt;/td&gt;
&lt;td&gt;Workshop floor choreography&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Resumable Sessions&lt;/td&gt;
&lt;td&gt;State preserved across restarts&lt;/td&gt;
&lt;td&gt;Workshop never forgets&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  SIPOC: The Complete Intent Workflow
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Developer, Coordinator, Specialists, Context Engine, AI models&lt;/td&gt;
&lt;td&gt;Goal statement, codebase, constraints, model selection&lt;/td&gt;
&lt;td&gt;Spec → Review → Wave 1 agents → Handoffs → Wave 2 → Verifier → PR&lt;/td&gt;
&lt;td&gt;Verified code, living spec, decision log, merged PR&lt;/td&gt;
&lt;td&gt;Engineering team, product owner, CI/CD, end users&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Pepper, Father Christmas, all Elves, the Library&lt;/td&gt;
&lt;td&gt;Gift order, Workshop constraints, quality standards&lt;/td&gt;
&lt;td&gt;Write List → Agree → Parallel building → Handoffs → QC → Sleigh&lt;/td&gt;
&lt;td&gt;All gifts delivered correctly, on time, to every child&lt;/td&gt;
&lt;td&gt;Children of the world&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Intent is available in &lt;strong&gt;public beta for macOS&lt;/strong&gt;. &lt;a href="https://www.augmentcode.com/product/intent" rel="noopener noreferrer"&gt;Download it here&lt;/a&gt;. It uses your existing Augment credits. You can also bring Claude Code, Codex, or OpenCode if you already have subscriptions.&lt;/p&gt;

&lt;p&gt;Augment’s documentation is at &lt;a href="https://docs.augmentcode.com" rel="noopener noreferrer"&gt;docs.augmentcode.com&lt;/a&gt;. Their manifesto — &lt;em&gt;The End of Linear Work&lt;/em&gt; — is worth reading before your first session.&lt;/p&gt;

&lt;h2&gt;
  
  
  One More Sleigh Stop
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;We have reached the point where the gifts are wrapped, the sleigh is loaded, and the Workshop itself is humming beautifully. But Head Elf Pepper asked me one more excellent question over a final cup of cocoa: *“Santa, what if I want some of this magic outside Intent itself? What if I want Claude Code, the Augment Context Engine, RTK, and LiteLLM working together on a machine of my own?”*Quite right, Pepper. One more stop, then. One more lesson before the reindeer sleep.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In the next episode, Father Christmas steps just beyond the Workshop walls to show how Intent’s principles carry into an external, token-aware coding stack: &lt;strong&gt;Claude Code + Augment Context Engine MCP + RTK + LiteLLM on a Mac Mini M4 Pro&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Part of the &lt;em&gt;[*Santa Augmentcode Intent&lt;/em&gt;](&lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;https://dev.to/wvanheemstra/series/37310&lt;/a&gt;)&lt;/em&gt; series. Published on &lt;em&gt;[*dev.to&lt;/em&gt;](&lt;a href="https://dev.to)*"&gt;https://dev.to)*&lt;/a&gt; under the &lt;em&gt;[*the-software-s-journey&lt;/em&gt;](&lt;a href="https://dev.to/the-software-s-journey)*"&gt;https://dev.to/the-software-s-journey)*&lt;/a&gt; organisation.*&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>intent</category>
      <category>devworkflow</category>
      <category>aiagents</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.1</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Mon, 25 May 2026 14:30:58 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep1-3dc3</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep1-3dc3</guid>
      <description>&lt;h1&gt;
  
  
  Santa’s Secret Weapon: Welcome to the Workshop! 🎅
&lt;/h1&gt;

&lt;p&gt;Accompanying source code repository: &lt;a href="https://github.com/software-journey/augmentcode-intent" rel="noopener noreferrer"&gt;&lt;code&gt;Santa Augmentcode Intent&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Ho ho ho! Come in, come in — the fire is warm and the cocoa is hot. Pull up a stool and let Father Christmas tell you a story. Not about reindeer, not about presents — but about the most magical piece of software to land in the Workshop since the invention of the Nice List.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Problem With Being Father Christmas
&lt;/h2&gt;

&lt;p&gt;Every year it is the same. December arrives like an avalanche, and suddenly Father Christmas has more tasks than minutes.&lt;/p&gt;

&lt;p&gt;The chimneys of the world do not care that Jingle-Bell the Elf is busy repainting the rocking horses while Twinkle the Elf is still debugging the train set firmware. The world expects &lt;strong&gt;one coordinated, perfectly wrapped result&lt;/strong&gt; under every tree by Christmas morning.&lt;/p&gt;

&lt;p&gt;For centuries, I managed this with clipboards, coloured yarn on a corkboard, and a great deal of shouting across the workshop floor. Then, this year, Head Elf Pepper handed me a laptop and said: &lt;em&gt;“Santa, you need to see Augment Intent.”&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Reader, I wept a single dignified tear into my beard.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is Augment Intent?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.augmentcode.com/product/intent" rel="noopener noreferrer"&gt;Augment Intent&lt;/a&gt; is a &lt;strong&gt;macOS developer workspace&lt;/strong&gt; designed for the age of AI agents. It is not merely a chat window where you ask a single Elf to do one thing. It is a &lt;strong&gt;coordinated workshop&lt;/strong&gt; where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;strong&gt;Coordinator&lt;/strong&gt; (that would be me, Father Christmas) breaks down a complex goal into a living &lt;strong&gt;Spec&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Specialist Agents&lt;/strong&gt; (my Elves) run in &lt;strong&gt;parallel&lt;/strong&gt;, each tackling their portion of the work.&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;Verifier Agent&lt;/strong&gt; checks that what was built actually matches the Spec.&lt;/li&gt;
&lt;li&gt;The entire workspace — code, browser, terminal, git — lives in &lt;strong&gt;one window&lt;/strong&gt;, and the state &lt;strong&gt;persists&lt;/strong&gt; when you close the lid.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In short: it is the North Pole Workshop, but running on silicon instead of snowflakes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The North Pole Analogy, Explained
&lt;/h2&gt;

&lt;p&gt;Before we dive into the technical magic in later episodes, let me introduce the cast of characters you will meet throughout this series.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;The Workshop&lt;/th&gt;
&lt;th&gt;Augment Intent&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Father Christmas&lt;/td&gt;
&lt;td&gt;Coordinator Agent&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Head Elf Pepper&lt;/td&gt;
&lt;td&gt;You, the Developer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Elves&lt;/td&gt;
&lt;td&gt;Specialist Agents (Implement, Verify, Debug, Review…)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Master Gift List&lt;/td&gt;
&lt;td&gt;The Living Spec&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Each Elf’s Workbench&lt;/td&gt;
&lt;td&gt;Isolated Workspace / Git Worktree&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Workshop Floor&lt;/td&gt;
&lt;td&gt;Intent’s unified window&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The Context Engine&lt;/td&gt;
&lt;td&gt;The Workshop’s shared knowledge of every toy design, material, and elf skill&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The magic of Christmas has always been &lt;strong&gt;parallelism with coordination&lt;/strong&gt;. Teddy-bear Elves do not wait for train-set Elves to finish. They work simultaneously, guided by the same Master Gift List. That is precisely what Intent enables for software development.&lt;/p&gt;

&lt;h2&gt;
  
  
  What This Series Covers
&lt;/h2&gt;

&lt;p&gt;Over the coming episodes, Father Christmas will walk you through Intent one concept at a time, always in the style of a cosy fireside chat. Here is the full gift list:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Episode&lt;/th&gt;
&lt;th&gt;Topic&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;1&lt;/td&gt;
&lt;td&gt;Welcome to the Workshop (you are here!)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;2&lt;/td&gt;
&lt;td&gt;The Master Gift List — Living Specs&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;Santa &amp;amp; the Elves — Coordinator vs Specialist Agents&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;4&lt;/td&gt;
&lt;td&gt;Every Elf Has a Workbench — Isolated Workspaces&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;5&lt;/td&gt;
&lt;td&gt;Finishing in Time for Christmas — Spec-Driven Development&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6&lt;/td&gt;
&lt;td&gt;The Context Engine — The Workshop Knows Every Toy&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;7&lt;/td&gt;
&lt;td&gt;Parallel Elves, No Chaos — Multi-Agent Orchestration&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;8&lt;/td&gt;
&lt;td&gt;The Delivery — From Spec to Merged Pull Request&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;9&lt;/td&gt;
&lt;td&gt;Beyond the Workshop — Intent Meets an External Agent Stack&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  SIPOC: The Workshop at a Glance
&lt;/h2&gt;

&lt;p&gt;Before any Elf touches a piece of wood, Father Christmas draws the SIPOC on the big blackboard. Here is Intent’s SIPOC.&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What provides&lt;/td&gt;
&lt;td&gt;Developer intent, codebase, models (Claude Opus, Sonnet, GPT…)&lt;/td&gt;
&lt;td&gt;Task description, repository files, rules &amp;amp; guidelines&lt;/td&gt;
&lt;td&gt;Spec creation → Coordinator planning → Parallel agent execution → Verification&lt;/td&gt;
&lt;td&gt;Working code, updated spec, pull request&lt;/td&gt;
&lt;td&gt;Engineering team, end users, CI/CD pipeline&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop equivalent&lt;/td&gt;
&lt;td&gt;Head Elf Pepper, the toy blueprints, the Elf skill registry&lt;/td&gt;
&lt;td&gt;The gift order, the raw materials, the Elf roster&lt;/td&gt;
&lt;td&gt;Santa writes the Master List → assigns Elves → Elves build in parallel → quality check&lt;/td&gt;
&lt;td&gt;Wrapped, labelled gifts → sleigh&lt;/td&gt;
&lt;td&gt;Children of the world&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Why Should You Care?
&lt;/h2&gt;

&lt;p&gt;You may be thinking: &lt;em&gt;“Santa, I already have VS Code and a single agent. Why do I need a whole workshop?”&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Fair question. The answer is the same reason I do not gift-wrap eight billion presents with one pair of hands. Beyond a certain complexity, &lt;strong&gt;serial work with a single agent creates a bottleneck&lt;/strong&gt;. The agent re-explains context, loses state between sessions, and cannot parallelise.&lt;/p&gt;

&lt;p&gt;As Augment’s own manifesto puts it: &lt;em&gt;parallel execution is no longer the hard part — coordination is.&lt;/em&gt; Intent solves the coordination problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Intent is currently in &lt;strong&gt;public beta for macOS&lt;/strong&gt;. You can &lt;a href="https://www.augmentcode.com/product/intent" rel="noopener noreferrer"&gt;download it here&lt;/a&gt;. It works with your existing Augment credits, and you can even bring Claude Code, Codex, or OpenCode if you already have a subscription for those.&lt;/p&gt;

&lt;p&gt;In the next episode, Father Christmas will introduce &lt;strong&gt;The Master Gift List&lt;/strong&gt; — the Living Spec that keeps every Elf pointed at the same star.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Until then: stay warm, write good specs, and remember — Christmas is only ever early for developers who plan ahead.Ho ho ho! 🎅&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Part of the &lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;Santa Augmentcode Intent&lt;/a&gt; series. Published on &lt;a href="https://dev.to"&gt;dev.to&lt;/a&gt; under the &lt;a href="https://dev.to/the-software-s-journey"&gt;the-software-s-journey&lt;/a&gt; organisation.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>intent</category>
      <category>aiagents</category>
      <category>devtools</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.9</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Mon, 25 May 2026 14:30:21 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep9-44ne</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep9-44ne</guid>
      <description>&lt;h1&gt;
  
  
  Beyond the Workshop — Intent Meets an External Agent Stack 🎅
&lt;/h1&gt;

&lt;p&gt;Accompanying solution repository: &lt;code&gt;augment-claude-litellm-rtk&lt;/code&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Not every job can be done at the main workbench. Sometimes Father Christmas must leave the Workshop entirely — to inspect a toy factory in Helsinki, advise a biscuit plant in Brussels, or help a Mac Mini in a quiet study learn some manners. On such occasions, I cannot carry the whole North Pole on my back. But I can carry its discipline. And that, dear reader, is what this final episode is about.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  When the Workshop Must Travel
&lt;/h2&gt;

&lt;p&gt;Throughout this series, we have talked about Augment Intent as though it were the whole Workshop in one warm, glowing window. And in many ways, it is.&lt;/p&gt;

&lt;p&gt;But Head Elf Pepper, being both brilliant and troublesome in equal measure, asked the obvious next question:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;“Santa, what if I want some of these advantages when I am working with an external agent stack? What if I want semantic retrieval, slimmer shell output, and model routing without abandoning good engineering discipline?”&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;An excellent question. The answer is not to copy Intent feature-for-feature in a panic. The answer is to assemble a &lt;strong&gt;practical travelling toolkit&lt;/strong&gt; that preserves the same principles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;use the &lt;strong&gt;right context&lt;/strong&gt;, not just more context,&lt;/li&gt;
&lt;li&gt;keep noisy output from flooding the model window,&lt;/li&gt;
&lt;li&gt;maintain clear verification steps,&lt;/li&gt;
&lt;li&gt;and route models sensibly rather than treating every task as if it requires a royal audience with the most expensive intelligence in the kingdom.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is precisely what the solution in &lt;code&gt;augment-claude-litellm-rtk&lt;/code&gt; offers.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Travelling Kit: Four Tools in One Case
&lt;/h2&gt;

&lt;p&gt;The repository documents a concrete setup for a &lt;strong&gt;token-aware coding stack on macOS Apple Silicon&lt;/strong&gt;, especially a &lt;strong&gt;Mac Mini M4 Pro&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Its four main pieces are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code&lt;/strong&gt; as the external coding agent&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Augment Context Engine MCP&lt;/strong&gt; for semantic codebase retrieval&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RTK&lt;/strong&gt; for reducing verbose shell output before it reaches the model context&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LiteLLM&lt;/strong&gt; as a local AI gateway for routing, budgets, testing, and future expansion&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In Workshop terms:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Travelling Kit&lt;/th&gt;
&lt;th&gt;Workshop Equivalent&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Claude Code&lt;/td&gt;
&lt;td&gt;The senior travelling Elf who can actually do the work&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Augment Context Engine MCP&lt;/td&gt;
&lt;td&gt;The portable Workshop Library&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RTK&lt;/td&gt;
&lt;td&gt;The Elf who edits rambling reports down to what matters&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LiteLLM&lt;/td&gt;
&lt;td&gt;The dispatch office that decides which sleigh goes where&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The magic here is not the individual tools alone. It is the fact that each one solves a different form of waste.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Context Quality Beats Context Quantity
&lt;/h2&gt;

&lt;p&gt;One of the deepest lessons from Intent is that &lt;strong&gt;retrieval quality matters more than brute-force stuffing&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;If you hand an agent an entire warehouse of scrolls, you have not made it wise. You have merely made it late.&lt;/p&gt;

&lt;p&gt;The Augment Context Engine MCP matters because it gives an external agent stack something much closer to the Workshop Library from Episode 6: a way to retrieve the &lt;em&gt;relevant&lt;/em&gt; architectural memory at the right moment. Instead of pasting huge files and hoping for the best, the agent can ask for the meaningful part of the codebase.&lt;/p&gt;

&lt;p&gt;That is not a luxury. It is cost control, latency control, and correctness control, all disguised as tidiness.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Hidden Token Tax: Shell Output
&lt;/h2&gt;

&lt;p&gt;Now let Father Christmas tell you about a villain rarely invited into respectable technical architecture diagrams: the verbose shell command.&lt;/p&gt;

&lt;p&gt;The shell is useful, of course. But many tools speak like overexcited uncles after mulled wine. They print logs, warnings, duplicate context, and endless lines of output that an agent then dutifully drags into the model context window like muddy boots across a clean floor.&lt;/p&gt;

&lt;p&gt;This is where &lt;strong&gt;RTK&lt;/strong&gt; enters the scene.&lt;/p&gt;

&lt;p&gt;RTK helps reduce shell output before it hits the model context. In other words, it trims the transcript to what is materially useful. That is splendidly important. Every token wasted on irrelevant command noise is a token &lt;em&gt;not&lt;/em&gt; spent on reasoning.&lt;/p&gt;

&lt;p&gt;Or, to put it in festive terms: if the reindeer are hauling boilerplate logs, they are not hauling presents.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Gateway Question: Why LiteLLM Belongs in the Story
&lt;/h2&gt;

&lt;p&gt;The LiteLLM part of this setup deserves a careful, honest explanation.&lt;/p&gt;

&lt;p&gt;The repository is admirably clear about this: the fully documented and officially supported core path is &lt;strong&gt;Claude Code + Augment Context Engine MCP + RTK&lt;/strong&gt;. LiteLLM is included because it is &lt;strong&gt;useful and production-worthy&lt;/strong&gt;, but not every environment clearly guarantees a direct Claude Code → LiteLLM base-URL workflow.&lt;/p&gt;

&lt;p&gt;That honesty matters.&lt;/p&gt;

&lt;p&gt;In the Workshop, we do not claim a sleigh can land on a roof it has never tested. We say what is proven, what is practical, and what is ready for future expansion.&lt;/p&gt;

&lt;p&gt;LiteLLM still brings real value here because it gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a &lt;strong&gt;local AI gateway&lt;/strong&gt;,&lt;/li&gt;
&lt;li&gt;a place for &lt;strong&gt;routing and budget control&lt;/strong&gt;,&lt;/li&gt;
&lt;li&gt;support for &lt;strong&gt;OpenAI-compatible tools and scripts&lt;/strong&gt;,&lt;/li&gt;
&lt;li&gt;and a staging ground for future direct integration paths.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is not smoke and mirrors. It is infrastructure with proper manners.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Finished Setup Looks Like
&lt;/h2&gt;

&lt;p&gt;After following the repository, the machine ends up with a rather handsome set of capabilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Homebrew-installed prerequisites&lt;/li&gt;
&lt;li&gt;Python 3.12 for LiteLLM&lt;/li&gt;
&lt;li&gt;Node.js for &lt;code&gt;auggie&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Auggie CLI installed and ready&lt;/li&gt;
&lt;li&gt;Claude Code installed and authenticated&lt;/li&gt;
&lt;li&gt;Augment MCP registered inside Claude Code&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;rtk&lt;/code&gt; installed and initialized for Claude Code shell usage&lt;/li&gt;
&lt;li&gt;PostgreSQL 17 running locally for the LiteLLM UI backend&lt;/li&gt;
&lt;li&gt;LiteLLM Proxy on &lt;code&gt;http://127.0.0.1:4000&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;LiteLLM admin UI at &lt;code&gt;http://127.0.0.1:4000/ui&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;verification scripts and example prompts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is not merely “a bunch of tools installed.” It is a &lt;strong&gt;composed operator’s station&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Architecture, as Father Christmas Would Draw It
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Developer
   │
   ▼
Claude Code
   ├── Augment Context Engine MCP  → retrieves relevant code context
   ├── RTK                         → compresses noisy shell output
   └── LiteLLM Proxy               → routes requests, tracks budgets, enables expansion
                                      │
                                      ▼
                                  Model providers / compatible tools
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You will notice something familiar here.&lt;/p&gt;

&lt;p&gt;Intent taught us that coordination beats improvisation. This stack applies the same lesson in a looser environment. The coordination is not provided by one integrated application window now; it is provided by a carefully assembled toolchain whose pieces each have a distinct job.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Recommended Order Matters
&lt;/h2&gt;

&lt;p&gt;The repository even has the decency to tell you the correct order in which to approach the setup:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;architecture&lt;/li&gt;
&lt;li&gt;prerequisites&lt;/li&gt;
&lt;li&gt;install Claude Code&lt;/li&gt;
&lt;li&gt;install Auggie and the MCP connection&lt;/li&gt;
&lt;li&gt;install RTK&lt;/li&gt;
&lt;li&gt;install LiteLLM&lt;/li&gt;
&lt;li&gt;verification&lt;/li&gt;
&lt;li&gt;daily usage&lt;/li&gt;
&lt;li&gt;troubleshooting&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is not administrative fussiness. It is Workshop thinking.&lt;/p&gt;

&lt;p&gt;Good systems are built in the right order because later steps depend on earlier truths. Episode 7 taught us about orchestration waves. The same logic applies here, only now the “agents” are installations, services, scripts, and runtime expectations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Fast Path for the Impatient Elf
&lt;/h2&gt;

&lt;p&gt;For those who cannot resist pulling the ribbon before reading the card, the repository also gives a direct setup path:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; /path/to/your/workspace
&lt;span class="nb"&gt;chmod&lt;/span&gt; +x scripts/&lt;span class="k"&gt;*&lt;/span&gt;.sh
./scripts/install_prereqs.sh
./scripts/install_auggie.sh
./scripts/install_rtk.sh
./scripts/setup_litellm.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then you manually complete the sign-ins, register the MCP server, restart Claude Code, and run the verification script.&lt;/p&gt;

&lt;p&gt;Even the “fast path” still respects the discipline of verification. That is how you know serious engineers packed this travelling case.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Is a Perfect Episode 9
&lt;/h2&gt;

&lt;p&gt;If Episode 8 showed the ideal, integrated flow of work inside Intent, Episode 9 answers the natural follow-up:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What do the same principles look like when the Workshop goes mobile?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The answer is reassuringly consistent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;preserve semantic retrieval,&lt;/li&gt;
&lt;li&gt;reduce irrelevant context,&lt;/li&gt;
&lt;li&gt;separate proven paths from aspirational ones,&lt;/li&gt;
&lt;li&gt;verify the stack end-to-end,&lt;/li&gt;
&lt;li&gt;and make room for future routing sophistication without lying about what is already supported.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is excellent engineering. Also, I am pleased to report, excellent Christmas engineering.&lt;/p&gt;

&lt;h2&gt;
  
  
  SIPOC: The Travelling Stack
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Developer, Claude Code, Augment MCP, RTK, LiteLLM, local services&lt;/td&gt;
&lt;td&gt;Repository, shell commands, MCP registration, local config, verification scripts&lt;/td&gt;
&lt;td&gt;Install prerequisites → connect MCP → trim shell output → route through gateway → verify stack&lt;/td&gt;
&lt;td&gt;Working token-aware coding environment, lower context waste, future-ready routing setup&lt;/td&gt;
&lt;td&gt;Solo developers, engineering teams, cost-conscious operators&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Father Christmas, travelling Elf, portable library, dispatch desk, tidy stenographer&lt;/td&gt;
&lt;td&gt;Tool chest, route map, sleigh rules, checked inventory&lt;/td&gt;
&lt;td&gt;Pack the case → bring the right books → shorten the chatter → dispatch the right sleigh → inspect before departure&lt;/td&gt;
&lt;td&gt;A reliable travelling workshop that still behaves like the North Pole&lt;/td&gt;
&lt;td&gt;Every workshop beyond the snow line&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  A Final Word from Father Christmas
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;The true sign of a good Workshop is not that it works only in its own building. It is that its principles survive the journey. Intent taught us to coordinate, retrieve wisely, verify carefully, and keep the plan honest. This external stack shows those same values travelling well: the right agent, the right context, less wasted chatter, and an honest gateway for the road ahead. If you can carry that discipline with you, then you are not merely using clever tools. You are building like the North Pole.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;This concludes the &lt;em&gt;[*Santa Augmentcode Intent&lt;/em&gt;](&lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;https://dev.to/wvanheemstra/series/37310&lt;/a&gt;)&lt;/em&gt; series. All nine episodes are available on &lt;em&gt;[*dev.to&lt;/em&gt;](&lt;a href="https://dev.to)*"&gt;https://dev.to)*&lt;/a&gt; under the &lt;em&gt;[*the-software-s-journey&lt;/em&gt;](&lt;a href="https://dev.to/the-software-s-journey)*"&gt;https://dev.to/the-software-s-journey)*&lt;/a&gt; organisation.*&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Thank you for reading. May your specs be living, your context relevant, and your token bills modest. Ho ho ho! 🎅&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>claudecode</category>
      <category>litellm</category>
      <category>mcp</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.6</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Mon, 25 May 2026 14:30:15 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep6-2jmd</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep6-2jmd</guid>
      <description>&lt;h1&gt;
  
  
  The Workshop Knows Every Toy — The Context Engine 🧠
&lt;/h1&gt;

&lt;p&gt;Accompanying source code repository: &lt;a href="https://github.com/software-journey/augmentcode-intent" rel="noopener noreferrer"&gt;&lt;code&gt;Santa Augmentcode Intent&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;People often ask: how do the Elves know how to build anything? We do not run a formal university. There is no Elf Academy. The answer is the Workshop Library — a living collection of every toy blueprint, every material data sheet, every technique manual, and every lesson learned from every Christmas since 843 AD. When an Elf sits down at their workbench, they are not starting from scratch. They are standing on twelve centuries of accumulated knowledge. Augment calls their version of this the Context Engine. I call it essential.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Problem Every AI Tool Has
&lt;/h2&gt;

&lt;p&gt;Most AI coding tools share one fundamental limitation: they know a great deal about programming in general, and almost nothing about &lt;strong&gt;your&lt;/strong&gt; codebase in particular.&lt;/p&gt;

&lt;p&gt;Ask a generic AI assistant to add a feature to your application and it will produce something that compiles — but may ignore your naming conventions, duplicate utilities you already have, conflict with an architecture decision made six months ago, or violate a security pattern your team spent weeks establishing.&lt;/p&gt;

&lt;p&gt;The AI does not know what it does not know. And what it does not know is everything specific to you.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Context Engine Does
&lt;/h2&gt;

&lt;p&gt;Augment’s Context Engine solves this by maintaining a &lt;strong&gt;live, semantic understanding of your entire stack&lt;/strong&gt; — not just the files you have open, but everything:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Code&lt;/strong&gt;: every file, class, function, interface across the whole repository.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dependencies&lt;/strong&gt;: the libraries you use and how you use them.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Documentation&lt;/strong&gt;: inline comments, READMEs, architecture docs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Style&lt;/strong&gt;: your naming conventions, code patterns, formatting preferences.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Recent changes&lt;/strong&gt;: what has changed, when, and why (from commit messages and PRs).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Issues&lt;/strong&gt;: open tickets and known problems in the tracker.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Context Engine does not just store this as flat text. It builds &lt;strong&gt;semantic understanding&lt;/strong&gt; — it knows that &lt;code&gt;UserAuthService&lt;/code&gt; depends on &lt;code&gt;TokenRepository&lt;/code&gt;, that the codebase uses dependency injection everywhere, that the team agreed six weeks ago to use RS256 for all signing operations.&lt;/p&gt;

&lt;p&gt;When a Specialist Agent is spawned in Intent, it does not receive a raw dump of your entire codebase (which would exceed any model’s context window). The Context Engine &lt;strong&gt;curates&lt;/strong&gt; the relevant context: from 4,456 potential sources, it selects the 682 actually relevant to this task. The Elf gets the right blueprints for the toy it is building, not the entire library.&lt;/p&gt;

&lt;h2&gt;
  
  
  The North Pole Library Analogy
&lt;/h2&gt;

&lt;p&gt;Imagine your Workshop contains twelve centuries of toy designs. Before the Context Engine, an Elf would walk to the Library, spend an hour searching, find three relevant blueprints, and guess at the rest. Slow, incomplete, error-prone.&lt;/p&gt;

&lt;p&gt;With the Context Engine, the Library is &lt;strong&gt;live and intelligent&lt;/strong&gt;. The moment an Elf is assigned to build a toy locomotive, the Library automatically surfaces:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Every locomotive built in the past ten years (with the code patterns used).&lt;/li&gt;
&lt;li&gt;The wheel standard the Workshop adopted in 2019.&lt;/li&gt;
&lt;li&gt;The paint specification that applies to all wheeled toys.&lt;/li&gt;
&lt;li&gt;The safety test that all vehicles must pass.&lt;/li&gt;
&lt;li&gt;The in-progress work by the Gauge Elf that this locomotive’s tracks must match.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Elf starts with full situational awareness. It will not accidentally use the old wheel standard. It will not duplicate the paint specification utility someone wrote three years ago. It will not create a track gauge that conflicts with the in-progress work next door.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Matters for Multi-Agent Work
&lt;/h2&gt;

&lt;p&gt;In single-agent workflows, limited context is an inconvenience. The agent produces slightly generic code that needs tidying.&lt;/p&gt;

&lt;p&gt;In multi-agent workflows, limited context is a &lt;strong&gt;coordination failure&lt;/strong&gt;. If Agent A does not know that Agent B is using RS256 signing, Agent A might implement its own signing with a different algorithm. The Verifier will catch this — but only after both agents have done significant work that now needs to be reconciled.&lt;/p&gt;

&lt;p&gt;The Context Engine prevents this by ensuring &lt;strong&gt;all agents share the same understanding&lt;/strong&gt; of the codebase from the start. When the Coordinator drafts the spec, it can declare &lt;em&gt;“use RS256 for signing — see existing pattern in *&lt;code&gt;auth/signing.ts&lt;/code&gt;&lt;/em&gt;”* because it has that knowledge available. Every Specialist that reads the spec inherits that context.&lt;/p&gt;

&lt;h2&gt;
  
  
  Context Engine vs Vanilla Models: The Numbers
&lt;/h2&gt;

&lt;p&gt;Augment published benchmarks comparing agent performance on the Elasticsearch repository (3.6 million lines of Java, 2,187 contributors). Their agents — powered by the Context Engine — outperformed other tools on a blind evaluation of 500 agent-generated pull requests:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Criterion&lt;/th&gt;
&lt;th&gt;Augment&lt;/th&gt;
&lt;th&gt;Others&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Overall&lt;/td&gt;
&lt;td&gt;Outperforms&lt;/td&gt;
&lt;td&gt;Underperforms&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Correctness&lt;/td&gt;
&lt;td&gt;+14.8&lt;/td&gt;
&lt;td&gt;-9 to -12&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Code Reuse&lt;/td&gt;
&lt;td&gt;Notable&lt;/td&gt;
&lt;td&gt;Below baseline&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Best Practice adherence&lt;/td&gt;
&lt;td&gt;Strong&lt;/td&gt;
&lt;td&gt;Weakest area&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The largest gap was in &lt;strong&gt;code reuse&lt;/strong&gt; and &lt;strong&gt;best practice adherence&lt;/strong&gt; — exactly the dimensions where knowing the codebase matters most. Any model can write code that compiles. Knowing when to reuse an existing utility instead of writing a new one requires context.&lt;/p&gt;

&lt;h2&gt;
  
  
  How the Context Engine Feeds Intent Specifically
&lt;/h2&gt;

&lt;p&gt;Inside Intent, the Context Engine serves three distinct consumers:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Coordinator&lt;/strong&gt; uses it to write a better spec. When it knows the existing architecture, it can propose task decompositions that respect real dependencies rather than imagined ones.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Specialists&lt;/strong&gt; use it to write better code. They know the patterns, the utilities, the interfaces they must respect.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Verifier&lt;/strong&gt; uses it to catch spec violations that are only visible with codebase knowledge. “This code bypasses the existing rate-limiting middleware” is only a useful comment if the Verifier knows that middleware exists.&lt;/p&gt;

&lt;h2&gt;
  
  
  SIPOC: Context Engine in Action
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Repository, CI/CD history, docs, issues, recent changes&lt;/td&gt;
&lt;td&gt;Raw codebase files, dependency manifests, commit history, tickets&lt;/td&gt;
&lt;td&gt;Index → Semantic analysis → Relevance ranking → Context curation per task&lt;/td&gt;
&lt;td&gt;Curated, task-relevant context for each agent&lt;/td&gt;
&lt;td&gt;Coordinator Agent, all Specialist Agents, Verifier Agent&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;The Workshop Library (12 centuries of blueprints)&lt;/td&gt;
&lt;td&gt;Every toy design, material spec, historical decisions&lt;/td&gt;
&lt;td&gt;Library catalogues → Semantic search → Relevant blueprints selected per Elf&lt;/td&gt;
&lt;td&gt;Exactly the right materials and references for each workbench&lt;/td&gt;
&lt;td&gt;Every Elf, Father Christmas, Quality Control&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  A Note on Privacy
&lt;/h2&gt;

&lt;p&gt;Father Christmas takes privacy seriously. So does Augment. The Context Engine processes your codebase to build its index, and Augment’s &lt;a href="https://trust.augmentcode.com" rel="noopener noreferrer"&gt;Trust Center&lt;/a&gt; documents how data is handled. For enterprise teams with sensitive codebases, it is worth reviewing before you hand the Library over to the Engine.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Comes Next
&lt;/h2&gt;

&lt;p&gt;In Episode 7, we bring everything together: multiple Elves, working simultaneously, without chaos. &lt;strong&gt;Multi-Agent Orchestration&lt;/strong&gt; — the art of running a parallel workshop without collision, confusion, or Christmas catastrophe.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;An Elf without context is an Elf making expensive guesses. Give them the Library. Give them the Context Engine. Watch them build miracles.Ho ho ho! 🎅&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Part of the &lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;Santa Augmentcode Intent&lt;/a&gt; series. Published on &lt;a href="https://dev.to"&gt;dev.to&lt;/a&gt; under the &lt;a href="https://dev.to/the-software-s-journey"&gt;the-software-s-journey&lt;/a&gt; organisation.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>intent</category>
      <category>contextengine</category>
      <category>ai</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.5</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Mon, 25 May 2026 14:29:38 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep5-26o5</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep5-26o5</guid>
      <description>&lt;h1&gt;
  
  
  Finishing Before Christmas — Spec-Driven Development 📜
&lt;/h1&gt;

&lt;p&gt;Accompanying source code repository: &lt;a href="https://github.com/software-journey/augmentcode-intent" rel="noopener noreferrer"&gt;&lt;code&gt;Santa Augmentcode Intent&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Do you know why Christmas always arrives on time? Not because I am superhuman. Not because the reindeer are faster than physics should allow. Christmas arrives on time because of one inviolable rule in the North Pole: nothing gets built until we agree, in writing, on what done looks like. We call it the Master Gift List. The world calls it Spec-Driven Development. The result is the same: no surprises on Christmas morning.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Old Way: Code First, Regret Later
&lt;/h2&gt;

&lt;p&gt;There is a seductive pattern in software development that I call &lt;strong&gt;Build First, Discover Later&lt;/strong&gt;. It goes like this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Someone has a rough idea.&lt;/li&gt;
&lt;li&gt;A developer (or, increasingly, an agent) starts building immediately.&lt;/li&gt;
&lt;li&gt;Halfway through, the stakeholder sees a demo and says: &lt;em&gt;“That is not what I meant at all.”&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;Everything is reworked. The deadline slips. Someone’s Christmas is ruined.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I have witnessed this pattern in the Workshop. A zealous Elf, eager to begin, starts carving a rocking horse before Father Christmas has decided whether it should be red or blue, large or small, with or without a mane. Three hours later, the horse is red, large, and maned — and the child’s letter clearly specified &lt;em&gt;blue, small, no mane&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;The problem is not the Elf’s carving ability. The problem is that work began before intent was explicit.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is Spec-Driven Development?
&lt;/h2&gt;

&lt;p&gt;Spec-Driven Development (SDD) is a workflow practice, not a programming paradigm. It has one central principle:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The spec is the primary artifact. Code is the result of executing it.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In SDD, you do not write code and then document it. You write a spec — a precise, executable description of what you intend to build — and then agents (or humans) implement it. The spec comes first. The spec stays current. The spec is what gets reviewed.&lt;/p&gt;

&lt;p&gt;Augment Intent was built around this principle. Their product manifesto states it plainly: &lt;strong&gt;at that point, the plan becomes the product.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Three Pillars of SDD in Intent
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Pillar 1: Write the Spec Before Any Code
&lt;/h3&gt;

&lt;p&gt;The Coordinator Agent will not spawn Specialists until a spec exists. This is not bureaucracy — it is discipline. A spec written before implementation captures the human’s &lt;strong&gt;intent&lt;/strong&gt; (what success looks like, what constraints exist, what decisions have been made) rather than narrating code that has already been written.&lt;/p&gt;

&lt;p&gt;A good pre-implementation spec answers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What is the goal, measured how?&lt;/li&gt;
&lt;li&gt;What must not change (frozen modules, existing contracts, budget)?&lt;/li&gt;
&lt;li&gt;What does “done” look like in a test?&lt;/li&gt;
&lt;li&gt;Which parts depend on which others?&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Pillar 2: The Spec Updates as Work Progresses
&lt;/h3&gt;

&lt;p&gt;A spec that does not evolve becomes fiction. Intent’s living spec updates automatically as agents complete tasks, record decisions, and encounter new constraints. When you return to the spec after a day of agent work, it reflects &lt;strong&gt;what was actually built&lt;/strong&gt;, not what was originally planned.&lt;/p&gt;

&lt;p&gt;This closes the gap that traditionally exists between the plan and the product. In most organisations, that gap is enormous and filled with undocumented decisions, tribal knowledge, and polite disagreements about what the requirements “really meant.”&lt;/p&gt;

&lt;h3&gt;
  
  
  Pillar 3: Review the Spec, Not Just the Code
&lt;/h3&gt;

&lt;p&gt;Code review is expensive. Reviewing a 2,000-line pull request is difficult, slow, and error-prone. Reviewing a spec is cheap. A well-structured spec can be reviewed in minutes, catching fundamental misalignments before a single line of code is written.&lt;/p&gt;

&lt;p&gt;SDD moves the review point earlier in the pipeline. You review &lt;strong&gt;intent&lt;/strong&gt; first. Implementation follows. This is why Intent has the Verifier Agent checking output against the spec — because the spec is the ground truth, and the code is measured against it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Christmas Deadline as a Forcing Function
&lt;/h2&gt;

&lt;p&gt;Father Christmas has one advantage over most product teams: &lt;strong&gt;an unmovable deadline&lt;/strong&gt;. Christmas is December 25th. Always. Everywhere. It does not slip. It does not move to accommodate a stakeholder who changed their mind in November.&lt;/p&gt;

&lt;p&gt;This deadline is a gift (pun intended). It forces the Workshop to be explicit about scope from the very beginning. We cannot add “one more toy” on December 20th without removing something else. Every addition requires a trade-off. The Master Gift List enforces this.&lt;/p&gt;

&lt;p&gt;SDD imposes the same discipline on software teams. When the spec defines the scope, additions are &lt;strong&gt;visible&lt;/strong&gt;. You can see exactly what is in and what is out. Scope creep does not happen silently — it requires a spec change, which requires a decision, which requires a conversation. That conversation, had early, is cheap. Had at 11pm on December 24th, it is catastrophic.&lt;/p&gt;

&lt;h2&gt;
  
  
  SDD vs Traditional Approaches
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Aspect&lt;/th&gt;
&lt;th&gt;Traditional&lt;/th&gt;
&lt;th&gt;Spec-Driven&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Source of truth&lt;/td&gt;
&lt;td&gt;Code&lt;/td&gt;
&lt;td&gt;Living Spec&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;When specs are written&lt;/td&gt;
&lt;td&gt;After or alongside code&lt;/td&gt;
&lt;td&gt;Before code&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Spec accuracy over time&lt;/td&gt;
&lt;td&gt;Drifts (document rot)&lt;/td&gt;
&lt;td&gt;Stays current (auto-updated)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Agent alignment&lt;/td&gt;
&lt;td&gt;Re-explain each session&lt;/td&gt;
&lt;td&gt;Automatic via spec&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Review point&lt;/td&gt;
&lt;td&gt;Code review only&lt;/td&gt;
&lt;td&gt;Spec review + code review&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Scope control&lt;/td&gt;
&lt;td&gt;Implicit, often invisible&lt;/td&gt;
&lt;td&gt;Explicit, requires spec change&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Refactoring cost&lt;/td&gt;
&lt;td&gt;Break and fix&lt;/td&gt;
&lt;td&gt;Spec-guided&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  SIPOC: Spec-Driven Development Workflow
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Product owner, developer, Coordinator Agent&lt;/td&gt;
&lt;td&gt;Business goal, constraints, success criteria&lt;/td&gt;
&lt;td&gt;Write spec → Review spec → Spawn agents → Agents implement → Spec updates → Verifier checks&lt;/td&gt;
&lt;td&gt;Working software that matches intent, accurate documentation, decision log&lt;/td&gt;
&lt;td&gt;Engineering team, product owner, QA, end users&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Management, Head Elf Pepper, Father Christmas&lt;/td&gt;
&lt;td&gt;Child’s wish list, Workshop constraints, quality standards&lt;/td&gt;
&lt;td&gt;Write the Master List → Agree on scope → Elves build → List updates → QC checks&lt;/td&gt;
&lt;td&gt;Gifts that match the wish list, accurate gift manifest, no surprises&lt;/td&gt;
&lt;td&gt;Children, parents, Father Christmas himself&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  A Worked Example: The Christmas Eve Delivery App
&lt;/h2&gt;

&lt;p&gt;Let us say Head Elf Pepper wants to build a real-time delivery tracker for the sleigh. The old way:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Pepper: "Build a delivery tracker."
Agent: [builds something]
Pepper: "That is not what I wanted."
[Repeat until December 24th.]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The SDD way:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Christmas Eve Delivery Tracker — Spec&lt;/span&gt;

&lt;span class="gu"&gt;### Goal&lt;/span&gt;
Real-time map showing sleigh position and remaining deliveries,
updating every 30 seconds, accessible on elves' tablets.

&lt;span class="gu"&gt;### Success Criteria&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Map renders in &amp;lt; 1 second on standard tablet browser
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Position updates within 30s of sleigh movement
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Remaining house count is accurate (matches manifest)
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Works offline (last known position shown if signal lost)

&lt;span class="gu"&gt;### Constraints&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Must use existing Reindeer GPS API (v2)
&lt;span class="p"&gt;-&lt;/span&gt; No server-side changes to Delivery Manifest Service
&lt;span class="p"&gt;-&lt;/span&gt; Must work in Safari (elves use iPads)

&lt;span class="gu"&gt;### Out of Scope (v1)&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Historical route replay
&lt;span class="p"&gt;-&lt;/span&gt; Per-gift tracking
&lt;span class="p"&gt;-&lt;/span&gt; Weather overlay

&lt;span class="gu"&gt;### Tasks&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Implement GPS polling service — Tracker Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Build map component — Map Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Integrate manifest API — Data Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Offline fallback — Resilience Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Integration tests — Test Elf
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This spec takes ten minutes to write and saves days of rework. The Elves know exactly what to build. Pepper reviews the spec and agrees it is correct before a line of code is written. The Verifier knows exactly what to check.&lt;/p&gt;

&lt;p&gt;This is SDD. This is how Christmas gets delivered on time.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Comes Next
&lt;/h2&gt;

&lt;p&gt;In Episode 6, Father Christmas will explain the &lt;strong&gt;Context Engine&lt;/strong&gt; — the magical knowledge base that ensures every Elf in the Workshop understands every toy design, every material property, and every past decision. Without it, SDD is impossible at scale.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The plan is the product. Everything else is wrapping paper.Ho ho ho! 🎅&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Part of the &lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;Santa Augmentcode Intent&lt;/a&gt; series. Published on &lt;a href="https://dev.to"&gt;dev.to&lt;/a&gt; under the &lt;a href="https://dev.to/the-software-s-journey"&gt;the-software-s-journey&lt;/a&gt; organisation.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>intent</category>
      <category>specdriven</category>
      <category>softwaredevelopment</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.2</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Mon, 25 May 2026 14:29:32 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep2-2co0</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep2-2co0</guid>
      <description>&lt;h1&gt;
  
  
  The Master Gift List That Writes Itself 🎄
&lt;/h1&gt;

&lt;p&gt;Accompanying source code repository: &lt;a href="https://github.com/software-journey/augmentcode-intent" rel="noopener noreferrer"&gt;&lt;code&gt;Santa Augmentcode Intent&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Every year, on the first of December, I sit at my great oak desk and open the Master Gift List. In the old days, I wrote it once and hoped for the best. By the fifteenth, it bore little resemblance to reality. An Elf had improvised. A supplier had changed a toy’s colour. Three children had written amended letters. The List lied to me — and I only found out on Christmas Eve.No more.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Problem With Static Specifications
&lt;/h2&gt;

&lt;p&gt;In software, as in Christmas, requirements arrive in waves. The product owner changes her mind. The designer refines the mockup. The security review adds three new constraints.&lt;/p&gt;

&lt;p&gt;Traditional specifications — whether a Confluence page, a Notion doc, or a PDF handed over at the start of a sprint — share one fatal flaw: &lt;strong&gt;they are written once and then abandoned&lt;/strong&gt;. The moment the first line of code is committed, the spec begins to drift. By the time you ship, nobody is quite sure what the original intention was.&lt;/p&gt;

&lt;p&gt;Fred Brooks called this “document rot.” Father Christmas calls it “the Lying List,” and it has ruined more Christmas Eves than I care to admit.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Living Spec: What Intent Does Differently
&lt;/h2&gt;

&lt;p&gt;In Augment Intent, the specification is not a document you write and forget. It is a &lt;strong&gt;living spec&lt;/strong&gt; — a Markdown file that lives inside your workspace and evolves as work progresses.&lt;/p&gt;

&lt;p&gt;Here is how it works:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. You seed the spec.&lt;/strong&gt; Head Elf Pepper (that is you) types a goal into the Coordinator. The Coordinator drafts an initial spec: requirements, architecture decisions, task breakdown, success criteria.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. The spec is the source of truth.&lt;/strong&gt; Every Specialist Agent receives the spec as its briefing. Not a copy of a chat history. Not a vague summary. The actual, versioned spec.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. As Elves complete tasks, the spec updates.&lt;/strong&gt; When the Auth Agent finishes the token service, the spec marks that task complete. When the API Agent discovers a complication, the spec records the decision. The spec stays accurate because it is being written by the same agents that are doing the work.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. When you change your mind, the update propagates.&lt;/strong&gt; If Pepper changes a constraint mid-flight, the Coordinator updates the spec and re-briefs any Elves whose work is affected. No more Elves building to an outdated design.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Tale of Two Lists
&lt;/h2&gt;

&lt;p&gt;Let me show you the difference in concrete terms.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Old Way (Static List):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Ticket XMAS-1234
Title: Improve gift delivery speed
Description: Make it faster. Children are waiting.
Assigned to: @delivery-elf
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This ticket is, forgive my language, &lt;strong&gt;useless to an agent&lt;/strong&gt;. What does “faster” mean? Faster than last year? Faster than a competitor? Faster per route, or faster in aggregate? An Elf handed this will make a reasonable guess — and the guess may be entirely wrong.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The New Way (Living Spec):&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Gift Delivery Optimisation — Living Spec&lt;/span&gt;

&lt;span class="gu"&gt;### Goal&lt;/span&gt;
Reduce average per-route delivery time by 20% vs Christmas 2024.

&lt;span class="gu"&gt;### Success Criteria&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Route calculation completes in &amp;lt; 200ms
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Zero missed deliveries in smoke test (1,000 houses)
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Sleigh fuel consumption unchanged or reduced

&lt;span class="gu"&gt;### Constraints&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Must work with existing reindeer harness API (v3.2)
&lt;span class="p"&gt;-&lt;/span&gt; No changes to the chimney-descent module (frozen until Jan)

&lt;span class="gu"&gt;### Tasks&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [x] Profile current route-calculation bottleneck — Dasher Agent
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Implement A&lt;span class="err"&gt;*&lt;/span&gt; pathfinding — Prancer Agent (in progress)
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Integration test against 2024 route dataset — Blitzen Agent
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Update delivery manifest schema — Rudolph Agent

&lt;span class="gu"&gt;### Decisions&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; 2025-12-03: Chose A&lt;span class="err"&gt;*&lt;/span&gt; over Dijkstra for weighted graph support
&lt;span class="p"&gt;-&lt;/span&gt; 2025-12-05: Excluded Antarctic routes from v1 scope
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This spec is &lt;strong&gt;machine-executable&lt;/strong&gt;. Every Elf knows what “done” means. Every constraint is explicit. Every decision is recorded. And when Prancer finishes A*, the spec will tick that box and Blitzen will know it is time to start testing.&lt;/p&gt;

&lt;h2&gt;
  
  
  SIPOC: The Living Spec Process
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Developer (Head Elf Pepper), Coordinator Agent, Specialist Agents&lt;/td&gt;
&lt;td&gt;Initial goal statement, codebase context, model selection&lt;/td&gt;
&lt;td&gt;Goal → Coordinator drafts spec → Agents execute &amp;amp; update → Spec reflects reality&lt;/td&gt;
&lt;td&gt;Always-accurate living spec, completed task list, decision log&lt;/td&gt;
&lt;td&gt;All Specialist Agents, human reviewers, future contributors&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Pepper, Father Christmas, the Elves&lt;/td&gt;
&lt;td&gt;“Deliver all gifts 20% faster”&lt;/td&gt;
&lt;td&gt;Santa writes the List → Elves build → List updates as gifts are wrapped&lt;/td&gt;
&lt;td&gt;A gift list that is always true&lt;/td&gt;
&lt;td&gt;Every Elf, every Quality Inspector, the Head of Logistics&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Why This Matters for Parallel Work
&lt;/h2&gt;

&lt;p&gt;Here is the key insight. When three Elves work simultaneously on different parts of the toy, each one needs to know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What the other two are building.&lt;/li&gt;
&lt;li&gt;Which interfaces they must respect.&lt;/li&gt;
&lt;li&gt;What has already been decided.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without a living spec, each Elf improvises. The train set’s power connector uses a different voltage than the controller the second Elf built. Integration collapses at the last minute.&lt;/p&gt;

&lt;p&gt;With a living spec, those interfaces are declared upfront. When the first Elf changes something, the spec records it, and the second Elf’s briefing updates. &lt;strong&gt;The spec is the coordination mechanism&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;As Augment’s manifesto puts it: once you are running multiple agents in parallel, the spec stops being process and starts being infrastructure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Practical Notes: Writing a Good Spec Seed
&lt;/h2&gt;

&lt;p&gt;Father Christmas has learned, through decades of painful experience, that the quality of the output depends entirely on the quality of the intent put in. Here are my rules for seeding a Living Spec:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Name the goal, not the solution.&lt;/strong&gt; Write &lt;em&gt;“reduce onboarding drop-off by 20%”&lt;/em&gt;, not &lt;em&gt;“add a progress bar to the onboarding screen”&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;State the constraints explicitly.&lt;/strong&gt; Frozen modules, existing APIs, budget limits — write them down before any Elf starts.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Define done.&lt;/strong&gt; A measurable success criterion is worth a hundred vague requirements.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Record decisions as they are made.&lt;/strong&gt; An undocumented decision is an ambiguity waiting to cause a merge conflict.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What Is Coming Next
&lt;/h2&gt;

&lt;p&gt;In Episode 3, Father Christmas will introduce the most important relationship in the Workshop: &lt;strong&gt;Santa the Coordinator and the Elves as Specialist Agents&lt;/strong&gt;. We will examine who does what, how handoffs work, and why the Verifier Elf might be the most important Elf in the building.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The Master Gift List is only as good as the team that follows it. Fortunately, my team is excellent.Ho ho ho! 🎅&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Part of the &lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;Santa Augmentcode Intent&lt;/a&gt; series. Published on &lt;a href="https://dev.to"&gt;dev.to&lt;/a&gt; under the &lt;a href="https://dev.to/the-software-s-journey"&gt;the-software-s-journey&lt;/a&gt; organisation.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>intent</category>
      <category>specdriven</category>
      <category>aiagents</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.3</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Mon, 25 May 2026 14:28:55 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep3-410d</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep3-410d</guid>
      <description>&lt;h1&gt;
  
  
  Santa Plans, Elves Build — Coordinator &amp;amp; Specialist Agents 🧝
&lt;/h1&gt;

&lt;p&gt;Accompanying source code repository: &lt;a href="https://github.com/software-journey/augmentcode-intent" rel="noopener noreferrer"&gt;&lt;code&gt;Santa Augmentcode Intent&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A common misconception about the North Pole is that I build all the toys. I do not. I tried that once in 1742. It was catastrophic. What I do — what I have always done — is understand what needs to be built, break it into sensible pieces, assign the right Elf to each piece, and make sure the whole thing comes together correctly. That is the job of Father Christmas. And, as it turns out, that is also the job of the Coordinator Agent in Augment Intent.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Fundamental Division of Labour
&lt;/h2&gt;

&lt;p&gt;There is a reason the Workshop has roles. An Elf who is brilliant at carving wooden horses may be hopeless at soldering circuit boards. Mixing roles creates chaos. Clear roles create Christmas.&lt;/p&gt;

&lt;p&gt;Augment Intent formalises this insight into a three-part agent architecture:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;th&gt;Intent Name&lt;/th&gt;
&lt;th&gt;North Pole Equivalent&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Plans, delegates, aligns&lt;/td&gt;
&lt;td&gt;Coordinator&lt;/td&gt;
&lt;td&gt;Father Christmas&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Executes a specific task&lt;/td&gt;
&lt;td&gt;Specialist / Implementor&lt;/td&gt;
&lt;td&gt;Craft Elves&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Checks output against the spec&lt;/td&gt;
&lt;td&gt;Verifier&lt;/td&gt;
&lt;td&gt;Quality Control Elves&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Explores feasibility&lt;/td&gt;
&lt;td&gt;Investigate Agent&lt;/td&gt;
&lt;td&gt;Scout Elves&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Finds and fixes failures&lt;/td&gt;
&lt;td&gt;Debug Agent&lt;/td&gt;
&lt;td&gt;Repair Elves&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Reviews code quality&lt;/td&gt;
&lt;td&gt;Code Review Agent&lt;/td&gt;
&lt;td&gt;Senior Elves&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Each role is available as a named Specialist inside Intent. You can use the built-in roster or bring your own.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Coordinator Does
&lt;/h2&gt;

&lt;p&gt;The Coordinator is the first Agent you interact with in Intent. You give it a goal — in plain language — and it does the following:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1 — Draft the Living Spec.&lt;/strong&gt; The Coordinator reads your goal, consults the Context Engine (the Workshop’s knowledge of your entire codebase), and produces a structured spec with requirements, constraints, success criteria, and a proposed task breakdown.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2 — Decompose into parallel tasks.&lt;/strong&gt; The Coordinator identifies which parts of the work can run simultaneously. Building the token service does not depend on the gateway middleware being ready. Both can start at once. The Coordinator maps these dependencies explicitly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3 — Spawn and brief Specialists.&lt;/strong&gt; For each task, the Coordinator creates a Specialist Agent, hands it the relevant portion of the spec, and grants it access to the appropriate files. The Specialist gets what it needs — nothing more, nothing less.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4 — Manage handoffs.&lt;/strong&gt; When Specialist A finishes and Specialist B depends on that result, the Coordinator orchestrates the handoff. The spec updates, B gets the new context, and work continues without human involvement.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 5 — Run the Verifier.&lt;/strong&gt; Once implementation is complete, the Coordinator spawns the Verifier Agent, which checks the output against the spec’s success criteria. If something fails, the Coordinator sends it back to the relevant Specialist.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Specialists Do
&lt;/h2&gt;

&lt;p&gt;Specialists are focused. Each one has a single job and the full Context Engine behind it.&lt;/p&gt;

&lt;p&gt;An &lt;strong&gt;Implement Specialist&lt;/strong&gt; receives a task like &lt;em&gt;“add JWT validation middleware to the API gateway”&lt;/em&gt; along with the relevant spec section, the existing middleware code, and the interface contracts agreed with other Specialists. It writes the code, commits it to its isolated branch, and reports back to the Coordinator.&lt;/p&gt;

&lt;p&gt;A &lt;strong&gt;Verify Specialist&lt;/strong&gt; receives the spec’s success criteria and the completed implementation. It runs tests, checks edge cases, and returns a structured verdict: pass, fail, or pass-with-caveats.&lt;/p&gt;

&lt;p&gt;A &lt;strong&gt;Debug Specialist&lt;/strong&gt; receives a failing test, a stack trace, and the relevant code. Its only job is to find and fix the root cause.&lt;/p&gt;

&lt;p&gt;None of these Specialists needs to know about the other tasks in the session. The Coordinator holds the big picture. The Specialists hold deep focus.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Conversation Pattern
&lt;/h2&gt;

&lt;p&gt;Here is a simplified transcript of how a session looks, using the North Pole analogy:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Head Elf Pepper → Coordinator:
"We need JWT authentication across the API gateway and auth service.
Tokens issued by auth-service, validated by gateway middleware.
Support refresh tokens and rate-limit the token endpoint."

Coordinator:
"Understood. I have drafted the spec. I am spawning three Elves:
• Auth Token Elf — implements issuance and refresh in auth-service
• Gateway Middleware Elf — implements validation in api-gateway
• Test Suite Elf — writes integration tests (starts after both finish)
Auth Token Elf and Gateway Middleware Elf are running in parallel now."

[20 minutes pass]

Auth Token Elf → Coordinator:
"Token issuance and refresh complete. Endpoints documented in spec."

Gateway Middleware Elf → Coordinator:
"JWT validation middleware complete. RS256 signing, expiry handling done."

Coordinator → Test Suite Elf:
"Both implementation Elves are done. Here is the updated spec.
Please write integration tests covering token issuance, refresh, expiry,
and rate limiting."

[Test Suite Elf runs]

Coordinator → Verify Elf:
"All tasks complete. Please verify against spec success criteria."

Verify Elf → Coordinator:
"Passed: 8/9 criteria. FAILED: rate limiting returns 429 but does not
include Retry-After header (spec line 14)."

Coordinator → Gateway Middleware Elf:
"Please fix: add Retry-After header to 429 responses."
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No human needed to manage any of that. Pepper set the goal. Father Christmas ran the workshop.&lt;/p&gt;

&lt;h2&gt;
  
  
  Choosing the Right Model for Each Role
&lt;/h2&gt;

&lt;p&gt;One of Intent’s most practical features is that you can assign different AI models to different roles. Not every task benefits from the most powerful (and most expensive) model.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Task&lt;/th&gt;
&lt;th&gt;Recommended Model Tier&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;Coordinator — initial architecture&lt;/td&gt;
&lt;td&gt;Opus (high reasoning)&lt;/td&gt;
&lt;td&gt;Complex decomposition requires deep thinking&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Implementor — routine code&lt;/td&gt;
&lt;td&gt;Sonnet (fast, efficient)&lt;/td&gt;
&lt;td&gt;Well-scoped tasks need speed, not heavy reasoning&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Verifier&lt;/td&gt;
&lt;td&gt;Sonnet or Opus&lt;/td&gt;
&lt;td&gt;Depends on spec complexity&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Debug&lt;/td&gt;
&lt;td&gt;Opus&lt;/td&gt;
&lt;td&gt;Root-cause analysis benefits from thorough reasoning&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Father Christmas always uses his best judgment for the biggest decisions and delegates the routine work to whichever Elf is quickest. Intent works the same way.&lt;/p&gt;

&lt;h2&gt;
  
  
  SIPOC: Coordinator → Specialists → Verifier
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Developer, Context Engine, AI models&lt;/td&gt;
&lt;td&gt;Goal statement, living spec, codebase, model selection&lt;/td&gt;
&lt;td&gt;Coordinator plans → Specialists implement in parallel → Verifier checks → loop until done&lt;/td&gt;
&lt;td&gt;Verified, spec-compliant implementation, merged PR&lt;/td&gt;
&lt;td&gt;Engineering team, product owner, end users&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Pepper, the Workshop’s knowledge base, Elf skill roster&lt;/td&gt;
&lt;td&gt;“Implement JWT auth”&lt;/td&gt;
&lt;td&gt;Santa assigns → Elves build simultaneously → QC Elf inspects → rework if needed&lt;/td&gt;
&lt;td&gt;Wrapped, quality-checked gifts ready for the sleigh&lt;/td&gt;
&lt;td&gt;Children worldwide&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  What Can Go Wrong (And How Intent Handles It)
&lt;/h2&gt;

&lt;p&gt;Even the best Workshop has incidents. An Elf misunderstands a spec line. A dependency is not available. A test fails unexpectedly.&lt;/p&gt;

&lt;p&gt;Intent’s response is always to route the problem back through the spec. The Coordinator does not panic. It reads the failure report, updates the spec with the new constraint or decision, and re-briefs the relevant Specialist. The loop closes cleanly.&lt;/p&gt;

&lt;p&gt;The developer only needs to intervene when the Coordinator surfaces a decision that requires &lt;strong&gt;human judgment&lt;/strong&gt; — a product question, a risk acceptance, a business constraint that was not in the original spec. Everything else is handled in the Workshop.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Comes Next
&lt;/h2&gt;

&lt;p&gt;In Episode 4, we will visit each Elf’s private workbench — the &lt;strong&gt;isolated workspace&lt;/strong&gt; that Intent creates for every agent, ensuring no two Elves ever clobber each other’s work. Git worktrees, parallel branches, and the magic of resumable sessions.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Every great team needs great coordination. I have been coordinating for over a thousand years. I am pleased that software has finally caught up.Ho ho ho! 🎅&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Part of the &lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;Santa Augmentcode Intent&lt;/a&gt; series. Published on &lt;a href="https://dev.to"&gt;dev.to&lt;/a&gt; under the &lt;a href="https://dev.to/the-software-s-journey"&gt;the-software-s-journey&lt;/a&gt; organisation.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>intent</category>
      <category>aiagents</category>
      <category>agentic</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.7</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Mon, 25 May 2026 14:28:49 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep7-15mn</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep7-15mn</guid>
      <description>&lt;h1&gt;
  
  
  Parallel Elves, Zero Chaos — Multi-Agent Orchestration 🎁
&lt;/h1&gt;

&lt;p&gt;Accompanying source code repository: &lt;a href="https://github.com/software-journey/augmentcode-intent" rel="noopener noreferrer"&gt;&lt;code&gt;Santa Augmentcode Intent&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The secret to running a smooth Workshop is understanding the difference between work that can happen at the same time and work that cannot. You cannot paint a toy before it is carved. You cannot test a toy before it is assembled. But you can absolutely carve a hundred toys simultaneously, paint them in parallel once each is carved, and run quality checks in a third wave. The key is knowing the dependencies. The key, always, is the spec.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  From Solo Agent to Agent Orchestra
&lt;/h2&gt;

&lt;p&gt;In the early days of AI-assisted coding, the workflow was simple: one developer, one agent, one task at a time. The agent typed fast, but the work was serial. Task A finished before Task B started.&lt;/p&gt;

&lt;p&gt;This is like running the North Pole Workshop with one Elf. Technically sufficient. Practically absurd.&lt;/p&gt;

&lt;p&gt;The shift to multi-agent work is not simply “run more agents.” It is a fundamentally different coordination challenge. Fred Brooks described it for humans in &lt;em&gt;The Mythical Man-Month&lt;/em&gt;: adding more workers to a project does not automatically accelerate it, because communication overhead grows and integration becomes the dominant cost. AI agents do not repeal this dynamic — they accelerate it.&lt;/p&gt;

&lt;p&gt;Intent’s multi-agent orchestration is the answer to Brooks’ challenge, applied to AI agents.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Three-Wave Pattern
&lt;/h2&gt;

&lt;p&gt;Father Christmas has observed that most Workshop tasks fall into three waves of parallelism. Intent reflects this naturally.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Wave 1 — Parallel Implementation&lt;/strong&gt;Tasks that are independent of each other can start simultaneously. The Auth Token Elf and the Gateway Middleware Elf do not need each other’s output. They start at the same time, work on separate worktrees, and finish independently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Wave 2 — Dependent Integration&lt;/strong&gt;Tasks that depend on Wave 1 completing. The Test Suite Elf cannot write meaningful integration tests until both implementation Elves are done. It waits for its inputs, then starts immediately when they arrive.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Wave 3 — Verification and Review&lt;/strong&gt;The Verifier and Code Review Elves run after Wave 2. They check everything against the spec, catch remaining issues, and produce the final verdict.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Wave 1 (parallel):
  Auth Token Elf ─────────────────────── done ──┐
  Gateway Middleware Elf ──────────────── done ──┤

Wave 2 (parallel, starts after Wave 1):          │
  Test Suite Elf ◄──────────────────────────────┤
  Docs Generator Elf ◄──────────────────────────┘

Wave 3 (after Wave 2):
  Verifier Elf ◄──────────────── checks all ──► Report
  Code Review Elf ◄────────────────────────── Review
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The Coordinator manages these waves automatically, based on the dependency graph in the spec. No human needs to tell it when Wave 2 can start. The spec encodes that information.&lt;/p&gt;

&lt;h2&gt;
  
  
  Background Agents: The Night Shift
&lt;/h2&gt;

&lt;p&gt;Intent also supports &lt;strong&gt;background agents&lt;/strong&gt; — Elves who work quietly while you are focused elsewhere.&lt;/p&gt;

&lt;p&gt;In the JWT authentication example from Episode 3, while the two main implementation Elves are doing their headline work, three background Elves are running simultaneously:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Lint &amp;amp; Type Check Elf&lt;/strong&gt;: continuously checking that changes do not break type safety or style rules.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Test Suite Elf&lt;/strong&gt;: writing tests in the background as interfaces are published.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Docs Generator Elf&lt;/strong&gt;: updating API documentation as endpoint signatures emerge.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These background agents do not block the main flow. They run in their own worktrees, produce their own commits, and report back to the Coordinator when done. The Coordinator integrates their output into the final pull request.&lt;/p&gt;

&lt;p&gt;In the Workshop, these are the Elves who quietly restock materials, update the inventory, and prepare the packaging while the headline crafting is happening. They are not glamorous. They are indispensable.&lt;/p&gt;

&lt;h2&gt;
  
  
  Handling Handoffs Gracefully
&lt;/h2&gt;

&lt;p&gt;The most fragile moment in any multi-agent workflow is the &lt;strong&gt;handoff&lt;/strong&gt;: when one agent’s output becomes another agent’s input.&lt;/p&gt;

&lt;p&gt;Without orchestration, handoffs fail silently. Agent A finishes and commits. Agent B starts and discovers Agent A’s interface is different from what the spec described. Confusion, rework, delay.&lt;/p&gt;

&lt;p&gt;Intent handles handoffs through the spec. When Agent A completes, it &lt;strong&gt;updates the spec&lt;/strong&gt; with the actual interface it produced. The Coordinator reads this update and re-briefs Agent B with the accurate information before it starts. Agent B always starts with the truth.&lt;/p&gt;

&lt;p&gt;This is analogous to a baton in a relay race. The baton is the spec. The Coordinator ensures it is passed correctly. No dropped batons. No Christmas Eve disasters.&lt;/p&gt;

&lt;h2&gt;
  
  
  When to Use Which Specialist
&lt;/h2&gt;

&lt;p&gt;Intent ships with a default set of Specialists. Here is Father Christmas’s guide to deploying them:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Specialist&lt;/th&gt;
&lt;th&gt;When to Use&lt;/th&gt;
&lt;th&gt;North Pole Role&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Investigate&lt;/td&gt;
&lt;td&gt;Before writing the spec — explore feasibility&lt;/td&gt;
&lt;td&gt;Scout Elves assessing a new toy design&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Implement&lt;/td&gt;
&lt;td&gt;Core code production&lt;/td&gt;
&lt;td&gt;Craft Elves at their workbenches&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Verify&lt;/td&gt;
&lt;td&gt;After implementation — check against spec&lt;/td&gt;
&lt;td&gt;Quality Control Elves&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Critique&lt;/td&gt;
&lt;td&gt;Review the spec before coding starts&lt;/td&gt;
&lt;td&gt;Senior Elves challenging the design&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Debug&lt;/td&gt;
&lt;td&gt;When tests fail or behaviour is wrong&lt;/td&gt;
&lt;td&gt;Repair Elves&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Code Review&lt;/td&gt;
&lt;td&gt;Automated PR review with codebase context&lt;/td&gt;
&lt;td&gt;Senior Elves reviewing finished work&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The rule is: &lt;strong&gt;never skip Investigate for genuinely novel tasks&lt;/strong&gt;, and &lt;strong&gt;never skip Verify before merging&lt;/strong&gt;. Skipping these is how gifts arrive with missing parts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Bringing Your Own Elves
&lt;/h2&gt;

&lt;p&gt;Intent is designed to be open. You can bring your own specialist agents — Claude Code, OpenAI Codex, or OpenCode — and integrate them into the orchestration. If your team has built a custom agent that specialises in your domain (a “Security Review Elf” that knows your specific compliance requirements, for example), it can be plugged in as a Specialist.&lt;/p&gt;

&lt;p&gt;Father Christmas respects specialisation. The best Toy Locomotive Elf is not the best Rag Doll Elf. The Workshop thrives because it matches the right Elf to the right toy.&lt;/p&gt;

&lt;h2&gt;
  
  
  SIPOC: Multi-Agent Orchestration
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Coordinator, all Specialist Agents, Context Engine, spec&lt;/td&gt;
&lt;td&gt;Task dependency graph, agent roster, model selections, codebase&lt;/td&gt;
&lt;td&gt;Identify parallelism → Wave 1 agents start → Handoffs via spec → Wave 2 starts → Background agents run → Verifier checks → PR ready&lt;/td&gt;
&lt;td&gt;Verified, integrated pull request; updated spec; decision log&lt;/td&gt;
&lt;td&gt;Developer, CI/CD, code reviewers, end users&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Father Christmas, all Elves, the Library&lt;/td&gt;
&lt;td&gt;Dependency chart, Elf skills, material availability&lt;/td&gt;
&lt;td&gt;Independent tasks start together → Handoffs recorded in Master List → Dependent tasks start when inputs ready → QC checks everything&lt;/td&gt;
&lt;td&gt;All gifts built correctly, verified, packaged, on the sleigh&lt;/td&gt;
&lt;td&gt;Children, parents, Christmas morning&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  The Mythical Man-Month, Solved (Partially)
&lt;/h2&gt;

&lt;p&gt;Brooks was right: coordination is the dominant cost. Adding more agents to a poorly organised task makes it worse.&lt;/p&gt;

&lt;p&gt;But Brooks was writing about human coordination, with its communication overhead and context-switching costs. Intent changes the calculus. When the spec is the coordination layer — when every agent is briefed from the same living document, when handoffs are managed by the Coordinator, when each agent has its own isolated workspace — the overhead of adding an agent is dramatically lower than adding a human.&lt;/p&gt;

&lt;p&gt;Not zero. Not magic. But dramatically lower.&lt;/p&gt;

&lt;p&gt;This is how the North Pole gets better every year. We do not just add Elves. We improve the coordination. The Workshop gets smarter, not just bigger.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Comes Next
&lt;/h2&gt;

&lt;p&gt;In our final episode, Father Christmas walks you through the complete journey: from first prompt to &lt;strong&gt;merged pull request&lt;/strong&gt;. We bring together the spec, the Coordinator, the Elves, the workbenches, the Context Engine, and the orchestration — and we ship.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;An orchestra without a conductor is noise. With a conductor, it is music. The spec is the score. The Coordinator is the conductor. The Elves are the musicians. And the result, when everything works, is Christmas.Ho ho ho! 🎅&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;Part of the &lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;Santa Augmentcode Intent&lt;/a&gt; series. Published on &lt;a href="https://dev.to"&gt;dev.to&lt;/a&gt; under the &lt;a href="https://dev.to/the-software-s-journey"&gt;the-software-s-journey&lt;/a&gt; organisation.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>intent</category>
      <category>multiagent</category>
      <category>orchestration</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.9</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Fri, 24 Apr 2026 07:25:48 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep9-44jl</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep9-44jl</guid>
      <description>&lt;h1&gt;
  
  
  Beyond the Workshop — Intent Meets an External Agent Stack 🎅
&lt;/h1&gt;

&lt;p&gt;Accompanying solution repository: &lt;code&gt;augment-claude-litellm-rtk&lt;/code&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Not every job can be done at the main workbench. Sometimes Father Christmas must leave the Workshop entirely — to inspect a toy factory in Helsinki, advise a biscuit plant in Brussels, or help a Mac Mini in a quiet study learn some manners. On such occasions, I cannot carry the whole North Pole on my back. But I can carry its discipline. And that, dear reader, is what this final episode is about.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  When the Workshop Must Travel
&lt;/h2&gt;

&lt;p&gt;Throughout this series, we have talked about Augment Intent as though it were the whole Workshop in one warm, glowing window. And in many ways, it is.&lt;/p&gt;

&lt;p&gt;But Head Elf Pepper, being both brilliant and troublesome in equal measure, asked the obvious next question:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;“Santa, what if I want some of these advantages when I am working with an external agent stack? What if I want semantic retrieval, slimmer shell output, and model routing without abandoning good engineering discipline?”&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;An excellent question. The answer is not to copy Intent feature-for-feature in a panic. The answer is to assemble a &lt;strong&gt;practical travelling toolkit&lt;/strong&gt; that preserves the same principles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;use the &lt;strong&gt;right context&lt;/strong&gt;, not just more context,&lt;/li&gt;
&lt;li&gt;keep noisy output from flooding the model window,&lt;/li&gt;
&lt;li&gt;maintain clear verification steps,&lt;/li&gt;
&lt;li&gt;and route models sensibly rather than treating every task as if it requires a royal audience with the most expensive intelligence in the kingdom.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is precisely what the solution in &lt;code&gt;augment-claude-litellm-rtk&lt;/code&gt; offers.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Travelling Kit: Four Tools in One Case
&lt;/h2&gt;

&lt;p&gt;The repository documents a concrete setup for a &lt;strong&gt;token-aware coding stack on macOS Apple Silicon&lt;/strong&gt;, especially a &lt;strong&gt;Mac Mini M4 Pro&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Its four main pieces are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code&lt;/strong&gt; as the external coding agent&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Augment Context Engine MCP&lt;/strong&gt; for semantic codebase retrieval&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RTK&lt;/strong&gt; for reducing verbose shell output before it reaches the model context&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LiteLLM&lt;/strong&gt; as a local AI gateway for routing, budgets, testing, and future expansion&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In Workshop terms:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Travelling Kit&lt;/th&gt;
&lt;th&gt;Workshop Equivalent&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Claude Code&lt;/td&gt;
&lt;td&gt;The senior travelling Elf who can actually do the work&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Augment Context Engine MCP&lt;/td&gt;
&lt;td&gt;The portable Workshop Library&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RTK&lt;/td&gt;
&lt;td&gt;The Elf who edits rambling reports down to what matters&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LiteLLM&lt;/td&gt;
&lt;td&gt;The dispatch office that decides which sleigh goes where&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The magic here is not the individual tools alone. It is the fact that each one solves a different form of waste.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Context Quality Beats Context Quantity
&lt;/h2&gt;

&lt;p&gt;One of the deepest lessons from Intent is that &lt;strong&gt;retrieval quality matters more than brute-force stuffing&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;If you hand an agent an entire warehouse of scrolls, you have not made it wise. You have merely made it late.&lt;/p&gt;

&lt;p&gt;The Augment Context Engine MCP matters because it gives an external agent stack something much closer to the Workshop Library from Episode 6: a way to retrieve the &lt;em&gt;relevant&lt;/em&gt; architectural memory at the right moment. Instead of pasting huge files and hoping for the best, the agent can ask for the meaningful part of the codebase.&lt;/p&gt;

&lt;p&gt;That is not a luxury. It is cost control, latency control, and correctness control, all disguised as tidiness.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Hidden Token Tax: Shell Output
&lt;/h2&gt;

&lt;p&gt;Now let Father Christmas tell you about a villain rarely invited into respectable technical architecture diagrams: the verbose shell command.&lt;/p&gt;

&lt;p&gt;The shell is useful, of course. But many tools speak like overexcited uncles after mulled wine. They print logs, warnings, duplicate context, and endless lines of output that an agent then dutifully drags into the model context window like muddy boots across a clean floor.&lt;/p&gt;

&lt;p&gt;This is where &lt;strong&gt;RTK&lt;/strong&gt; enters the scene.&lt;/p&gt;

&lt;p&gt;RTK helps reduce shell output before it hits the model context. In other words, it trims the transcript to what is materially useful. That is splendidly important. Every token wasted on irrelevant command noise is a token &lt;em&gt;not&lt;/em&gt; spent on reasoning.&lt;/p&gt;

&lt;p&gt;Or, to put it in festive terms: if the reindeer are hauling boilerplate logs, they are not hauling presents.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Gateway Question: Why LiteLLM Belongs in the Story
&lt;/h2&gt;

&lt;p&gt;The LiteLLM part of this setup deserves a careful, honest explanation.&lt;/p&gt;

&lt;p&gt;The repository is admirably clear about this: the fully documented and officially supported core path is &lt;strong&gt;Claude Code + Augment Context Engine MCP + RTK&lt;/strong&gt;. LiteLLM is included because it is &lt;strong&gt;useful and production-worthy&lt;/strong&gt;, but not every environment clearly guarantees a direct Claude Code → LiteLLM base-URL workflow.&lt;/p&gt;

&lt;p&gt;That honesty matters.&lt;/p&gt;

&lt;p&gt;In the Workshop, we do not claim a sleigh can land on a roof it has never tested. We say what is proven, what is practical, and what is ready for future expansion.&lt;/p&gt;

&lt;p&gt;LiteLLM still brings real value here because it gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a &lt;strong&gt;local AI gateway&lt;/strong&gt;,&lt;/li&gt;
&lt;li&gt;a place for &lt;strong&gt;routing and budget control&lt;/strong&gt;,&lt;/li&gt;
&lt;li&gt;support for &lt;strong&gt;OpenAI-compatible tools and scripts&lt;/strong&gt;,&lt;/li&gt;
&lt;li&gt;and a staging ground for future direct integration paths.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is not smoke and mirrors. It is infrastructure with proper manners.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Finished Setup Looks Like
&lt;/h2&gt;

&lt;p&gt;After following the repository, the machine ends up with a rather handsome set of capabilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Homebrew-installed prerequisites&lt;/li&gt;
&lt;li&gt;Python 3.12 for LiteLLM&lt;/li&gt;
&lt;li&gt;Node.js for &lt;code&gt;auggie&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Auggie CLI installed and ready&lt;/li&gt;
&lt;li&gt;Claude Code installed and authenticated&lt;/li&gt;
&lt;li&gt;Augment MCP registered inside Claude Code&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;rtk&lt;/code&gt; installed and initialized for Claude Code shell usage&lt;/li&gt;
&lt;li&gt;PostgreSQL 17 running locally for the LiteLLM UI backend&lt;/li&gt;
&lt;li&gt;LiteLLM Proxy on &lt;code&gt;http://127.0.0.1:4000&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;LiteLLM admin UI at &lt;code&gt;http://127.0.0.1:4000/ui&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;verification scripts and example prompts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is not merely “a bunch of tools installed.” It is a &lt;strong&gt;composed operator’s station&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Architecture, as Father Christmas Would Draw It
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Developer
   │
   ▼
Claude Code
   ├── Augment Context Engine MCP  → retrieves relevant code context
   ├── RTK                         → compresses noisy shell output
   └── LiteLLM Proxy               → routes requests, tracks budgets, enables expansion
                                      │
                                      ▼
                                  Model providers / compatible tools
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You will notice something familiar here.&lt;/p&gt;

&lt;p&gt;Intent taught us that coordination beats improvisation. This stack applies the same lesson in a looser environment. The coordination is not provided by one integrated application window now; it is provided by a carefully assembled toolchain whose pieces each have a distinct job.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Recommended Order Matters
&lt;/h2&gt;

&lt;p&gt;The repository even has the decency to tell you the correct order in which to approach the setup:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;architecture&lt;/li&gt;
&lt;li&gt;prerequisites&lt;/li&gt;
&lt;li&gt;install Claude Code&lt;/li&gt;
&lt;li&gt;install Auggie and the MCP connection&lt;/li&gt;
&lt;li&gt;install RTK&lt;/li&gt;
&lt;li&gt;install LiteLLM&lt;/li&gt;
&lt;li&gt;verification&lt;/li&gt;
&lt;li&gt;daily usage&lt;/li&gt;
&lt;li&gt;troubleshooting&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is not administrative fussiness. It is Workshop thinking.&lt;/p&gt;

&lt;p&gt;Good systems are built in the right order because later steps depend on earlier truths. Episode 7 taught us about orchestration waves. The same logic applies here, only now the “agents” are installations, services, scripts, and runtime expectations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Fast Path for the Impatient Elf
&lt;/h2&gt;

&lt;p&gt;For those who cannot resist pulling the ribbon before reading the card, the repository also gives a direct setup path:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; /path/to/your/workspace
&lt;span class="nb"&gt;chmod&lt;/span&gt; +x scripts/&lt;span class="k"&gt;*&lt;/span&gt;.sh
./scripts/install_prereqs.sh
./scripts/install_auggie.sh
./scripts/install_rtk.sh
./scripts/setup_litellm.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then you manually complete the sign-ins, register the MCP server, restart Claude Code, and run the verification script.&lt;/p&gt;

&lt;p&gt;Even the “fast path” still respects the discipline of verification. That is how you know serious engineers packed this travelling case.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Is a Perfect Episode 9
&lt;/h2&gt;

&lt;p&gt;If Episode 8 showed the ideal, integrated flow of work inside Intent, Episode 9 answers the natural follow-up:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What do the same principles look like when the Workshop goes mobile?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The answer is reassuringly consistent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;preserve semantic retrieval,&lt;/li&gt;
&lt;li&gt;reduce irrelevant context,&lt;/li&gt;
&lt;li&gt;separate proven paths from aspirational ones,&lt;/li&gt;
&lt;li&gt;verify the stack end-to-end,&lt;/li&gt;
&lt;li&gt;and make room for future routing sophistication without lying about what is already supported.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is excellent engineering. Also, I am pleased to report, excellent Christmas engineering.&lt;/p&gt;

&lt;h2&gt;
  
  
  SIPOC: The Travelling Stack
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Developer, Claude Code, Augment MCP, RTK, LiteLLM, local services&lt;/td&gt;
&lt;td&gt;Repository, shell commands, MCP registration, local config, verification scripts&lt;/td&gt;
&lt;td&gt;Install prerequisites → connect MCP → trim shell output → route through gateway → verify stack&lt;/td&gt;
&lt;td&gt;Working token-aware coding environment, lower context waste, future-ready routing setup&lt;/td&gt;
&lt;td&gt;Solo developers, engineering teams, cost-conscious operators&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Father Christmas, travelling Elf, portable library, dispatch desk, tidy stenographer&lt;/td&gt;
&lt;td&gt;Tool chest, route map, sleigh rules, checked inventory&lt;/td&gt;
&lt;td&gt;Pack the case → bring the right books → shorten the chatter → dispatch the right sleigh → inspect before departure&lt;/td&gt;
&lt;td&gt;A reliable travelling workshop that still behaves like the North Pole&lt;/td&gt;
&lt;td&gt;Every workshop beyond the snow line&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  A Final Word from Father Christmas
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;The true sign of a good Workshop is not that it works only in its own building. It is that its principles survive the journey. Intent taught us to coordinate, retrieve wisely, verify carefully, and keep the plan honest. This external stack shows those same values travelling well: the right agent, the right context, less wasted chatter, and an honest gateway for the road ahead. If you can carry that discipline with you, then you are not merely using clever tools. You are building like the North Pole.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;This concludes the &lt;em&gt;[*Santa Augmentcode Intent&lt;/em&gt;](&lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;https://dev.to/wvanheemstra/series/37310&lt;/a&gt;)&lt;/em&gt; series. All nine episodes are available on &lt;em&gt;[*dev.to&lt;/em&gt;](&lt;a href="https://dev.to)*"&gt;https://dev.to)*&lt;/a&gt; under the &lt;em&gt;[*the-software-s-journey&lt;/em&gt;](&lt;a href="https://dev.to/the-software-s-journey)*"&gt;https://dev.to/the-software-s-journey)*&lt;/a&gt; organisation.*&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Thank you for reading. May your specs be living, your context relevant, and your token bills modest. Ho ho ho! 🎅&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>claudecode</category>
      <category>litellm</category>
      <category>mcp</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.8</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Fri, 24 Apr 2026 07:25:42 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep8-4a3c</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep8-4a3c</guid>
      <description>&lt;h1&gt;
  
  
  The Gifts Are Under the Tree — From Spec to Merged PR 🎄
&lt;/h1&gt;

&lt;p&gt;Accompanying source code repository: &lt;code&gt;Santa Augmentcode Intent&lt;/code&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Every year, on the morning of December 25th, I allow myself one quiet moment before the sleigh is unpacked and the Thank-You Letters start arriving. I sit in the empty Workshop, still warm from the night’s work, and look at the bare shelves where the gifts used to be. They are gone because they were delivered. Every one of them. On time, as specified, to the right address. That moment — that quiet confirmation that everything worked — is what we have been building towards in this entire series. Today, we deliver.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Complete Picture
&lt;/h2&gt;

&lt;p&gt;Over the past seven episodes, we have assembled all the pieces of the Intent workshop:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Episode 1&lt;/strong&gt;: The Workshop and what Intent is.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 2&lt;/strong&gt;: The Living Spec — the source of truth.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 3&lt;/strong&gt;: Santa the Coordinator and the Specialist Elves.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 4&lt;/strong&gt;: Isolated workspaces and resumable sessions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 5&lt;/strong&gt;: Spec-Driven Development and finishing on time.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 6&lt;/strong&gt;: The Context Engine — the Workshop Library.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Episode 7&lt;/strong&gt;: Multi-agent orchestration in waves.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now we put them all together and walk through a complete Intent session, from the moment Head Elf Pepper opens the application to the moment the pull request is merged.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Scenario
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Goal&lt;/strong&gt;: Add a real-time gift delivery progress dashboard to the North Pole’s internal web application. The dashboard should show live sleigh position, remaining delivery count, and an estimated completion time. It must work on tablets and update every 30 seconds.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Constraints&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use the existing Reindeer GPS API (v2)&lt;/li&gt;
&lt;li&gt;No changes to the Delivery Manifest microservice&lt;/li&gt;
&lt;li&gt;Safari / iPad compatible&lt;/li&gt;
&lt;li&gt;Must pass existing end-to-end test suite&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Step 1: Open Intent and Set the Goal
&lt;/h2&gt;

&lt;p&gt;Pepper opens Intent on her MacBook. She types into the Coordinator:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;We need a real-time gift delivery dashboard. Show sleigh position
on a map, remaining delivery count, and estimated completion time.
Updates every 30 seconds. Must work on iPad Safari.
Use Reindeer GPS API v2. No changes to Delivery Manifest Service.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The Coordinator reads this prompt alongside the Context Engine’s analysis of the codebase. It knows the existing frontend stack (React, TypeScript), the API patterns used elsewhere in the project, and the existing test suite structure.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2: The Coordinator Drafts the Living Spec
&lt;/h2&gt;

&lt;p&gt;Within seconds, the Coordinator produces:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Gift Delivery Dashboard — Living Spec&lt;/span&gt;

&lt;span class="gu"&gt;### Goal&lt;/span&gt;
Real-time dashboard showing sleigh position, delivery count,
and ETA. Updates every 30 seconds. iPad Safari compatible.

&lt;span class="gu"&gt;### Success Criteria&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Map renders in &amp;lt; 1s on iPad Safari
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Position updates within 30s of GPS data change
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Delivery count matches Manifest API response
&lt;span class="p"&gt;-&lt;/span&gt; [ ] ETA calculated from current position + remaining stops
&lt;span class="p"&gt;-&lt;/span&gt; [ ] All existing e2e tests pass
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Lighthouse accessibility score ≥ 90

&lt;span class="gu"&gt;### Constraints&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Reindeer GPS API v2 (existing auth token pattern)
&lt;span class="p"&gt;-&lt;/span&gt; Delivery Manifest Service: read-only, no new endpoints
&lt;span class="p"&gt;-&lt;/span&gt; Safari / iPad: no Chrome-only APIs

&lt;span class="gu"&gt;### Architecture&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; New React component: &lt;span class="sb"&gt;`&amp;lt;DeliveryDashboard /&amp;gt;`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; GPS polling service (30s interval, exponential backoff on fail)
&lt;span class="p"&gt;-&lt;/span&gt; Map: Leaflet.js (already in dependencies — see package.json)
&lt;span class="p"&gt;-&lt;/span&gt; Offline fallback: show last known position with staleness indicator

&lt;span class="gu"&gt;### Tasks&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; [ ] GPS Polling Service — GPS Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Map Component — Map Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Delivery Count &amp;amp; ETA Widget — Data Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Safari/iPad CSS fixes — Responsive Elf
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Integration tests — Test Elf (starts after GPS + Map done)
&lt;span class="p"&gt;-&lt;/span&gt; [ ] Accessibility audit — A11y Elf (background)

&lt;span class="gu"&gt;### Decisions&lt;/span&gt;
(none yet)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Pepper reads the spec. She adds one clarification: &lt;em&gt;“ETA should display in local Workshop time, not UTC.”&lt;/em&gt; The Coordinator updates the spec and records the decision.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Review time: 4 minutes. No code written yet. One important decision already captured.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3: Intent Creates Isolated Workspaces
&lt;/h2&gt;

&lt;p&gt;The Coordinator identifies the dependency graph:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GPS Elf and Map Elf can start in parallel immediately.&lt;/li&gt;
&lt;li&gt;Data Elf can start immediately (it only reads from the Manifest API).&lt;/li&gt;
&lt;li&gt;Responsive Elf can start once Map Elf has a working component.&lt;/li&gt;
&lt;li&gt;Test Elf starts after GPS Elf and Map Elf complete.&lt;/li&gt;
&lt;li&gt;A11y Elf runs as a background agent throughout.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Intent creates five Git worktrees:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;feat/dashboard-gps-service        ← GPS Elf
feat/dashboard-map-component      ← Map Elf
feat/dashboard-data-widgets       ← Data Elf
feat/dashboard-responsive         ← Responsive Elf (waiting)
feat/dashboard-tests              ← Test Elf (waiting)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Wave 1 agents — GPS Elf, Map Elf, Data Elf — start simultaneously. The A11y Elf begins in the background.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 4: Wave 1 Runs
&lt;/h2&gt;

&lt;p&gt;Pepper watches the Intent window. Three agent conversations are active. Code appears in the Changes panel. The spec’s task list updates as work progresses.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GPS Elf&lt;/strong&gt; implements the polling service, using the existing auth token pattern it found via the Context Engine:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// gps-polling.service.ts&lt;/span&gt;
&lt;span class="k"&gt;export&lt;/span&gt; &lt;span class="kd"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;GpsPollingService&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;private&lt;/span&gt; &lt;span class="nx"&gt;interval&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;30&lt;/span&gt;&lt;span class="nx"&gt;_000&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="k"&gt;private&lt;/span&gt; &lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

  &lt;span class="k"&gt;async&lt;/span&gt; &lt;span class="nf"&gt;startPolling&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;onUpdate&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;pos&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;SleighPosition&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="k"&gt;void&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;poll&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="k"&gt;try&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;pos&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;reindeerGpsApi&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;getCurrentPosition&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
        &lt;span class="nf"&gt;onUpdate&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;pos&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
        &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
      &lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;catch&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;Math&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;min&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;8&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
      &lt;span class="p"&gt;}&lt;/span&gt;
      &lt;span class="nf"&gt;setTimeout&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;poll&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;interval&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="p"&gt;};&lt;/span&gt;
    &lt;span class="nf"&gt;poll&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The spec updates: ✅ GPS Polling Service — GPS Elf — done.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Map Elf&lt;/strong&gt; creates the &lt;code&gt;&amp;lt;DeliveryMap /&amp;gt;&lt;/code&gt; component using Leaflet.js, which it found already installed in &lt;code&gt;package.json&lt;/code&gt; via the Context Engine. It does not install a duplicate library.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Data Elf&lt;/strong&gt; builds the delivery count and ETA widget, correctly calling the Manifest API’s read-only endpoint and displaying ETA in Workshop local time (it read the spec decision).&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 5: Handoffs and Wave 2
&lt;/h2&gt;

&lt;p&gt;Both GPS Elf and Map Elf report completion. The spec records the interfaces they produced:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;### Decisions&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; GPS service exposes: &lt;span class="sb"&gt;`startPolling(cb: (SleighPosition) =&amp;gt; void)`&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Map component props: &lt;span class="sb"&gt;`{ position: SleighPosition; zoom?: number }`&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The Coordinator briefs Responsive Elf with the updated spec and the actual component structure. No guesswork. Test Elf receives both the GPS service interface and the Map component props, plus the existing e2e test patterns from the Context Engine.&lt;/p&gt;

&lt;p&gt;Wave 2 begins. Responsive Elf adds Safari/iPad CSS. Test Elf writes integration tests.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 6: The Verifier Checks Everything
&lt;/h2&gt;

&lt;p&gt;Wave 2 complete. The Coordinator spawns the Verifier Elf with the full spec and all five implementations.&lt;/p&gt;

&lt;p&gt;Verifier’s report:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;✅ Map renders in &amp;lt; 1s on iPad Safari — confirmed (Lighthouse: 0.7s)
✅ Position updates within 30s — confirmed
✅ Delivery count matches Manifest API — confirmed
✅ ETA in Workshop local time — confirmed
✅ Existing e2e tests pass — confirmed
✅ Lighthouse accessibility score ≥ 90 — confirmed (score: 94)
⚠️  Minor: GPS service does not log polling errors to existing
    structured logger (see logger.ts — used throughout codebase)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The warning is real and useful. The Context Engine told the Verifier about &lt;code&gt;logger.ts&lt;/code&gt;. A generic agent would have missed it.&lt;/p&gt;

&lt;p&gt;The Coordinator sends the GPS Elf back for a five-minute fix. It adds one line:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="k"&gt;catch &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;err&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nx"&gt;logger&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;warn&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;GPS polling failed&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="na"&gt;error&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;err&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="na"&gt;backoff&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="k"&gt;this&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;backoff&lt;/span&gt; &lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Re-verification: all green.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 7: The Pull Request
&lt;/h2&gt;

&lt;p&gt;The Coordinator integrates all five worktrees into a single branch &lt;code&gt;feat/delivery-dashboard&lt;/code&gt; and opens a pull request. The PR description is generated from the Living Spec:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Gift Delivery Dashboard&lt;/span&gt;

Implements real-time dashboard (sleigh position, delivery count, ETA).

&lt;span class="gu"&gt;### Changes&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; New: &lt;span class="sb"&gt;`GpsPollingService`&lt;/span&gt; with 30s polling + exponential backoff
&lt;span class="p"&gt;-&lt;/span&gt; New: &lt;span class="sb"&gt;`&amp;lt;DeliveryMap /&amp;gt;`&lt;/span&gt; using existing Leaflet.js dependency
&lt;span class="p"&gt;-&lt;/span&gt; New: &lt;span class="sb"&gt;`&amp;lt;DeliveryStats /&amp;gt;`&lt;/span&gt; widget with ETA in Workshop local time
&lt;span class="p"&gt;-&lt;/span&gt; New: iPad/Safari responsive CSS
&lt;span class="p"&gt;-&lt;/span&gt; New: Integration test suite (12 tests, all passing)

&lt;span class="gu"&gt;### Verified Against Spec&lt;/span&gt;
All 6 success criteria confirmed by Verifier Agent.
Existing e2e suite: all passing.

&lt;span class="gu"&gt;### Decisions Recorded&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; ETA displayed in Workshop local time (not UTC) — per Pepper, Dec 3
&lt;span class="p"&gt;-&lt;/span&gt; Used existing Leaflet.js (not installed new mapping library)
&lt;span class="p"&gt;-&lt;/span&gt; GPS errors logged via existing structured logger (logger.ts)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Pepper reviews the spec (4 minutes). She reviews the diff (10 minutes, because the spec told her exactly what to look for). She approves.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Total elapsed time: 47 minutes. Zero rework. Christmas safe.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built Together
&lt;/h2&gt;

&lt;p&gt;Over this series, Father Christmas and Head Elf Pepper have explained every layer of Intent:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Concept&lt;/th&gt;
&lt;th&gt;What It Does&lt;/th&gt;
&lt;th&gt;Workshop Equivalent&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Living Spec&lt;/td&gt;
&lt;td&gt;Source of truth, auto-updated&lt;/td&gt;
&lt;td&gt;Master Gift List&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Coordinator Agent&lt;/td&gt;
&lt;td&gt;Plans, delegates, manages handoffs&lt;/td&gt;
&lt;td&gt;Father Christmas&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Specialist Agents&lt;/td&gt;
&lt;td&gt;Execute focused tasks in parallel&lt;/td&gt;
&lt;td&gt;Craft Elves&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Isolated Workspaces&lt;/td&gt;
&lt;td&gt;No collisions between parallel agents&lt;/td&gt;
&lt;td&gt;Private workbenches&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Spec-Driven Development&lt;/td&gt;
&lt;td&gt;Plan first, code follows&lt;/td&gt;
&lt;td&gt;Write the List before carving begins&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Context Engine&lt;/td&gt;
&lt;td&gt;Deep codebase knowledge for every agent&lt;/td&gt;
&lt;td&gt;The Workshop Library&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-Agent Orchestration&lt;/td&gt;
&lt;td&gt;Waves, handoffs, background agents&lt;/td&gt;
&lt;td&gt;Workshop floor choreography&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Resumable Sessions&lt;/td&gt;
&lt;td&gt;State preserved across restarts&lt;/td&gt;
&lt;td&gt;Workshop never forgets&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  SIPOC: The Complete Intent Workflow
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Developer, Coordinator, Specialists, Context Engine, AI models&lt;/td&gt;
&lt;td&gt;Goal statement, codebase, constraints, model selection&lt;/td&gt;
&lt;td&gt;Spec → Review → Wave 1 agents → Handoffs → Wave 2 → Verifier → PR&lt;/td&gt;
&lt;td&gt;Verified code, living spec, decision log, merged PR&lt;/td&gt;
&lt;td&gt;Engineering team, product owner, CI/CD, end users&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Pepper, Father Christmas, all Elves, the Library&lt;/td&gt;
&lt;td&gt;Gift order, Workshop constraints, quality standards&lt;/td&gt;
&lt;td&gt;Write List → Agree → Parallel building → Handoffs → QC → Sleigh&lt;/td&gt;
&lt;td&gt;All gifts delivered correctly, on time, to every child&lt;/td&gt;
&lt;td&gt;Children of the world&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;p&gt;Intent is available in &lt;strong&gt;public beta for macOS&lt;/strong&gt;. &lt;a href="https://www.augmentcode.com/product/intent" rel="noopener noreferrer"&gt;Download it here&lt;/a&gt;. It uses your existing Augment credits. You can also bring Claude Code, Codex, or OpenCode if you already have subscriptions.&lt;/p&gt;

&lt;p&gt;Augment’s documentation is at &lt;a href="https://docs.augmentcode.com" rel="noopener noreferrer"&gt;docs.augmentcode.com&lt;/a&gt;. Their manifesto — &lt;em&gt;The End of Linear Work&lt;/em&gt; — is worth reading before your first session.&lt;/p&gt;

&lt;h2&gt;
  
  
  One More Sleigh Stop
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;We have reached the point where the gifts are wrapped, the sleigh is loaded, and the Workshop itself is humming beautifully. But Head Elf Pepper asked me one more excellent question over a final cup of cocoa: *“Santa, what if I want some of this magic outside Intent itself? What if I want Claude Code, the Augment Context Engine, RTK, and LiteLLM working together on a machine of my own?”*Quite right, Pepper. One more stop, then. One more lesson before the reindeer sleep.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In the next episode, Father Christmas steps just beyond the Workshop walls to show how Intent’s principles carry into an external, token-aware coding stack: &lt;strong&gt;Claude Code + Augment Context Engine MCP + RTK + LiteLLM on a Mac Mini M4 Pro&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Part of the &lt;em&gt;[*Santa Augmentcode Intent&lt;/em&gt;](&lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;https://dev.to/wvanheemstra/series/37310&lt;/a&gt;)&lt;/em&gt; series. Published on &lt;em&gt;[*dev.to&lt;/em&gt;](&lt;a href="https://dev.to)*"&gt;https://dev.to)*&lt;/a&gt; under the &lt;em&gt;[*the-software-s-journey&lt;/em&gt;](&lt;a href="https://dev.to/the-software-s-journey)*"&gt;https://dev.to/the-software-s-journey)*&lt;/a&gt; organisation.*&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>intent</category>
      <category>devworkflow</category>
      <category>aiagents</category>
    </item>
    <item>
      <title>Santa Augmentcode Intent Ep.9</title>
      <dc:creator>Willem van Heemstra</dc:creator>
      <pubDate>Sun, 19 Apr 2026 19:38:45 +0000</pubDate>
      <link>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep9-2mb2</link>
      <guid>https://dev.to/the-software-s-journey/santa-augmentcode-intent-ep9-2mb2</guid>
      <description>&lt;h1&gt;
  
  
  Beyond the Workshop — Intent Meets an External Agent Stack 🎅
&lt;/h1&gt;

&lt;p&gt;Accompanying solution repository: &lt;a href="https://github.com/vanHeemstraSystems/augment-claude-litellm-rtk" rel="noopener noreferrer"&gt;&lt;code&gt;augment-claude-litellm-rtk&lt;/code&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Not every job can be done at the main workbench. Sometimes Father Christmas must leave the Workshop entirely — to inspect a toy factory in Helsinki, advise a biscuit plant in Brussels, or help a Mac Mini in a quiet study learn some manners. On such occasions, I cannot carry the whole North Pole on my back. But I can carry its &lt;em&gt;discipline&lt;/em&gt;. And that, dear reader, is what this final episode is about.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  When the Workshop Must Travel
&lt;/h2&gt;

&lt;p&gt;Throughout this series, we have talked about Augment Intent as though it were the whole Workshop in one warm, glowing window. And in many ways, it is.&lt;/p&gt;

&lt;p&gt;But Head Elf Pepper, being both brilliant and troublesome in equal measure, asked the obvious next question:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;“Santa, what if I want some of these advantages when I am working with an external agent stack? What if I want semantic retrieval, slimmer shell output, and model routing without abandoning good engineering discipline?”&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;An excellent question. The answer is not to copy Intent feature-for-feature in a panic. The answer is to assemble a &lt;strong&gt;practical travelling toolkit&lt;/strong&gt; that preserves the same principles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;use the &lt;strong&gt;right context&lt;/strong&gt;, not just more context,&lt;/li&gt;
&lt;li&gt;keep noisy output from flooding the model window,&lt;/li&gt;
&lt;li&gt;maintain clear verification steps,&lt;/li&gt;
&lt;li&gt;and route models sensibly rather than treating every task as if it requires a royal audience with the most expensive intelligence in the kingdom.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is precisely what the solution in &lt;a href="https://github.com/vanHeemstraSystems/augment-claude-litellm-rtk" rel="noopener noreferrer"&gt;&lt;code&gt;augment-claude-litellm-rtk&lt;/code&gt;&lt;/a&gt; offers.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Travelling Kit: Four Tools in One Case
&lt;/h2&gt;

&lt;p&gt;The repository documents a concrete setup for a &lt;strong&gt;token-aware coding stack on macOS Apple Silicon&lt;/strong&gt;, especially a &lt;strong&gt;Mac Mini M4 Pro&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Its four main pieces are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code&lt;/strong&gt; as the external coding agent&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Augment Context Engine MCP&lt;/strong&gt; for semantic codebase retrieval&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;RTK&lt;/strong&gt; for reducing verbose shell output before it reaches the model context&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;LiteLLM&lt;/strong&gt; as a local AI gateway for routing, budgets, testing, and future expansion&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In Workshop terms:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Travelling Kit&lt;/th&gt;
&lt;th&gt;Workshop Equivalent&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Claude Code&lt;/td&gt;
&lt;td&gt;The senior travelling Elf who can actually do the work&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Augment Context Engine MCP&lt;/td&gt;
&lt;td&gt;The portable Workshop Library&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;RTK&lt;/td&gt;
&lt;td&gt;The Elf who edits rambling reports down to what matters&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;LiteLLM&lt;/td&gt;
&lt;td&gt;The dispatch office that decides which sleigh goes where&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The magic here is not the individual tools alone. It is the fact that each one solves a different form of waste.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Context Quality Beats Context Quantity
&lt;/h2&gt;

&lt;p&gt;One of the deepest lessons from Intent is that &lt;strong&gt;retrieval quality matters more than brute-force stuffing&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;If you hand an agent an entire warehouse of scrolls, you have not made it wise. You have merely made it late.&lt;/p&gt;

&lt;p&gt;The Augment Context Engine MCP matters because it gives an external agent stack something much closer to the Workshop Library from Episode 6: a way to retrieve the &lt;em&gt;relevant&lt;/em&gt; architectural memory at the right moment. Instead of pasting huge files and hoping for the best, the agent can ask for the meaningful part of the codebase.&lt;/p&gt;

&lt;p&gt;That is not a luxury. It is cost control, latency control, and correctness control, all disguised as tidiness.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Hidden Token Tax: Shell Output
&lt;/h2&gt;

&lt;p&gt;Now let Father Christmas tell you about a villain rarely invited into respectable technical architecture diagrams: the verbose shell command.&lt;/p&gt;

&lt;p&gt;The shell is useful, of course. But many tools speak like overexcited uncles after mulled wine. They print logs, warnings, duplicate context, and endless lines of output that an agent then dutifully drags into the model context window like muddy boots across a clean floor.&lt;/p&gt;

&lt;p&gt;This is where &lt;strong&gt;RTK&lt;/strong&gt; enters the scene.&lt;/p&gt;

&lt;p&gt;RTK helps reduce shell output before it hits the model context. In other words, it trims the transcript to what is materially useful. That is splendidly important. Every token wasted on irrelevant command noise is a token &lt;em&gt;not&lt;/em&gt; spent on reasoning.&lt;/p&gt;

&lt;p&gt;Or, to put it in festive terms: if the reindeer are hauling boilerplate logs, they are not hauling presents.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Gateway Question: Why LiteLLM Belongs in the Story
&lt;/h2&gt;

&lt;p&gt;The LiteLLM part of this setup deserves a careful, honest explanation.&lt;/p&gt;

&lt;p&gt;The repository is admirably clear about this: the fully documented and officially supported core path is &lt;strong&gt;Claude Code + Augment Context Engine MCP + RTK&lt;/strong&gt;. LiteLLM is included because it is &lt;strong&gt;useful and production-worthy&lt;/strong&gt;, but not every environment clearly guarantees a direct Claude Code → LiteLLM base-URL workflow.&lt;/p&gt;

&lt;p&gt;That honesty matters.&lt;/p&gt;

&lt;p&gt;In the Workshop, we do not claim a sleigh can land on a roof it has never tested. We say what is proven, what is practical, and what is ready for future expansion.&lt;/p&gt;

&lt;p&gt;LiteLLM still brings real value here because it gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a &lt;strong&gt;local AI gateway&lt;/strong&gt;,&lt;/li&gt;
&lt;li&gt;a place for &lt;strong&gt;routing and budget control&lt;/strong&gt;,&lt;/li&gt;
&lt;li&gt;support for &lt;strong&gt;OpenAI-compatible tools and scripts&lt;/strong&gt;,&lt;/li&gt;
&lt;li&gt;and a staging ground for future direct integration paths.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is not smoke and mirrors. It is infrastructure with proper manners.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Finished Setup Looks Like
&lt;/h2&gt;

&lt;p&gt;After following the repository, the machine ends up with a rather handsome set of capabilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Homebrew-installed prerequisites&lt;/li&gt;
&lt;li&gt;Python 3.12 for LiteLLM&lt;/li&gt;
&lt;li&gt;Node.js for &lt;code&gt;auggie&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Auggie CLI installed and ready&lt;/li&gt;
&lt;li&gt;Claude Code installed and authenticated&lt;/li&gt;
&lt;li&gt;Augment MCP registered inside Claude Code&lt;/li&gt;
&lt;li&gt;
&lt;code&gt;rtk&lt;/code&gt; installed and initialized for Claude Code shell usage&lt;/li&gt;
&lt;li&gt;PostgreSQL 17 running locally for the LiteLLM UI backend&lt;/li&gt;
&lt;li&gt;LiteLLM Proxy on &lt;code&gt;http://127.0.0.1:4000&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;LiteLLM admin UI at &lt;code&gt;http://127.0.0.1:4000/ui&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;verification scripts and example prompts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is not merely “a bunch of tools installed.” It is a &lt;strong&gt;composed operator’s station&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Architecture, as Father Christmas Would Draw It
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Developer
   │
   ▼
Claude Code
   ├── Augment Context Engine MCP  → retrieves relevant code context
   ├── RTK                         → compresses noisy shell output
   └── LiteLLM Proxy               → routes requests, tracks budgets, enables expansion
                                      │
                                      ▼
                                  Model providers / compatible tools
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You will notice something familiar here.&lt;/p&gt;

&lt;p&gt;Intent taught us that coordination beats improvisation. This stack applies the same lesson in a looser environment. The coordination is not provided by one integrated application window now; it is provided by a carefully assembled toolchain whose pieces each have a distinct job.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Recommended Order Matters
&lt;/h2&gt;

&lt;p&gt;The repository even has the decency to tell you the correct order in which to approach the setup:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;architecture&lt;/li&gt;
&lt;li&gt;prerequisites&lt;/li&gt;
&lt;li&gt;install Claude Code&lt;/li&gt;
&lt;li&gt;install Auggie and the MCP connection&lt;/li&gt;
&lt;li&gt;install RTK&lt;/li&gt;
&lt;li&gt;install LiteLLM&lt;/li&gt;
&lt;li&gt;verification&lt;/li&gt;
&lt;li&gt;daily usage&lt;/li&gt;
&lt;li&gt;troubleshooting&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is not administrative fussiness. It is Workshop thinking.&lt;/p&gt;

&lt;p&gt;Good systems are built in the right order because later steps depend on earlier truths. Episode 7 taught us about orchestration waves. The same logic applies here, only now the “agents” are installations, services, scripts, and runtime expectations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Fast Path for the Impatient Elf
&lt;/h2&gt;

&lt;p&gt;For those who cannot resist pulling the ribbon before reading the card, the repository also gives a direct setup path:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;cd&lt;/span&gt; /path/to/your/workspace
&lt;span class="nb"&gt;chmod&lt;/span&gt; +x scripts/&lt;span class="k"&gt;*&lt;/span&gt;.sh
./scripts/install_prereqs.sh
./scripts/install_auggie.sh
./scripts/install_rtk.sh
./scripts/setup_litellm.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then you manually complete the sign-ins, register the MCP server, restart Claude Code, and run the verification script.&lt;/p&gt;

&lt;p&gt;Even the “fast path” still respects the discipline of verification. That is how you know serious engineers packed this travelling case.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Is a Perfect Episode 9
&lt;/h2&gt;

&lt;p&gt;If Episode 8 showed the ideal, integrated flow of work inside Intent, Episode 9 answers the natural follow-up:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What do the same principles look like when the Workshop goes mobile?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The answer is reassuringly consistent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;preserve semantic retrieval,&lt;/li&gt;
&lt;li&gt;reduce irrelevant context,&lt;/li&gt;
&lt;li&gt;separate proven paths from aspirational ones,&lt;/li&gt;
&lt;li&gt;verify the stack end-to-end,&lt;/li&gt;
&lt;li&gt;and make room for future routing sophistication without lying about what is already supported.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That is excellent engineering. Also, I am pleased to report, excellent Christmas engineering.&lt;/p&gt;

&lt;h2&gt;
  
  
  SIPOC: The Travelling Stack
&lt;/h2&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;S — Suppliers&lt;/th&gt;
&lt;th&gt;I — Inputs&lt;/th&gt;
&lt;th&gt;P — Process&lt;/th&gt;
&lt;th&gt;O — Outputs&lt;/th&gt;
&lt;th&gt;C — Customers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Who/What&lt;/td&gt;
&lt;td&gt;Developer, Claude Code, Augment MCP, RTK, LiteLLM, local services&lt;/td&gt;
&lt;td&gt;Repository, shell commands, MCP registration, local config, verification scripts&lt;/td&gt;
&lt;td&gt;Install prerequisites → connect MCP → trim shell output → route through gateway → verify stack&lt;/td&gt;
&lt;td&gt;Working token-aware coding environment, lower context waste, future-ready routing setup&lt;/td&gt;
&lt;td&gt;Solo developers, engineering teams, cost-conscious operators&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Workshop&lt;/td&gt;
&lt;td&gt;Father Christmas, travelling Elf, portable library, dispatch desk, tidy stenographer&lt;/td&gt;
&lt;td&gt;Tool chest, route map, sleigh rules, checked inventory&lt;/td&gt;
&lt;td&gt;Pack the case → bring the right books → shorten the chatter → dispatch the right sleigh → inspect before departure&lt;/td&gt;
&lt;td&gt;A reliable travelling workshop that still behaves like the North Pole&lt;/td&gt;
&lt;td&gt;Every workshop beyond the snow line&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  A Final Word from Father Christmas
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;The true sign of a good Workshop is not that it works only in its own building. It is that its principles survive the journey. Intent taught us to coordinate, retrieve wisely, verify carefully, and keep the plan honest. This external stack shows those same values travelling well: the right agent, the right context, less wasted chatter, and an honest gateway for the road ahead. If you can carry that discipline with you, then you are not merely using clever tools. You are building like the North Pole.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;em&gt;This concludes the &lt;a href="https://dev.to/wvanheemstra/series/37310"&gt;Santa Augmentcode Intent&lt;/a&gt; series. All nine episodes are available on &lt;a href="https://dev.to"&gt;dev.to&lt;/a&gt; under the &lt;a href="https://dev.to/the-software-s-journey"&gt;the-software-s-journey&lt;/a&gt; organisation.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Thank you for reading. May your specs be living, your context relevant, and your token bills modest. Ho ho ho! 🎅&lt;/em&gt;&lt;/p&gt;

</description>
      <category>augmentcode</category>
      <category>claudecode</category>
      <category>litellm</category>
      <category>mcp</category>
    </item>
  </channel>
</rss>
