<?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: Richard Shade</title>
    <description>The latest articles on DEV Community by Richard Shade (@rshade).</description>
    <link>https://dev.to/rshade</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%2F977293%2Fb027b676-a6c8-4783-a135-714995cd4eb4.jpeg</url>
      <title>DEV Community: Richard Shade</title>
      <link>https://dev.to/rshade</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rshade"/>
    <language>en</language>
    <item>
      <title>introducing gh-aw-fleet</title>
      <dc:creator>Richard Shade</dc:creator>
      <pubDate>Mon, 15 Jun 2026 01:22:31 +0000</pubDate>
      <link>https://dev.to/rshade/introducing-gh-aw-fleet-57f4</link>
      <guid>https://dev.to/rshade/introducing-gh-aw-fleet-57f4</guid>
      <description>&lt;p&gt;I started using &lt;a href="https://github.com/github/gh-aw" rel="noopener noreferrer"&gt;GitHub Agentic Workflows&lt;/a&gt; a couple months ago: small Claude/Copilot agents that run inside your CI for code review, daily doc updates, malicious-code scans, and PR fixes. You author them in markdown, they compile to GitHub Actions, and an AI agent does the work on each run.&lt;/p&gt;

&lt;p&gt;Got the first few repos working and hit the question: how am I actually tracking what's deployed on each of these? What version? What profile? What's drifted?&lt;/p&gt;

&lt;p&gt;So I built a tool.&lt;/p&gt;

&lt;h2&gt;
  
  
  what it is
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;gh-aw-fleet&lt;/code&gt; is a declarative fleet manager for GitHub Agentic Workflows. One &lt;code&gt;fleet.json&lt;/code&gt; declares your repos and which "profiles" of workflows they get; the CLI reconciles (&lt;code&gt;deploy&lt;/code&gt;, &lt;code&gt;sync&lt;/code&gt;, &lt;code&gt;upgrade&lt;/code&gt;, &lt;code&gt;add&lt;/code&gt;), all dry-run by default. It's a thin orchestrator around &lt;code&gt;gh aw&lt;/code&gt;, &lt;code&gt;gh&lt;/code&gt;, and &lt;code&gt;git&lt;/code&gt;, not a fork.&lt;/p&gt;

&lt;p&gt;It never rewrites workflow markdown. It answers one question (&lt;em&gt;who gets what workflow, when, and from which profile&lt;/em&gt;) and dispatches the actual file work to &lt;code&gt;gh aw&lt;/code&gt;. Every operation that touches a repo opens a PR there. Nothing force-pushes or commits to &lt;code&gt;main&lt;/code&gt;.&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;# check drift across the whole fleet, no clones, read-only&lt;/span&gt;
gh-aw-fleet status

&lt;span class="c"&gt;# bring a repo in line with its declared profile (PR, after a dry-run)&lt;/span&gt;
gh-aw-fleet &lt;span class="nb"&gt;sync &lt;/span&gt;acme/widgets &lt;span class="nt"&gt;--apply&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The dry-run gate is the part I lean on most. &lt;code&gt;deploy&lt;/code&gt;, &lt;code&gt;sync&lt;/code&gt;, and &lt;code&gt;upgrade&lt;/code&gt; print exactly what they'd do and change nothing until you add &lt;code&gt;--apply&lt;/code&gt;. When you're touching a dozen repos at once, "show me first" is the difference between a tool you trust and one you babysit.&lt;/p&gt;

&lt;h2&gt;
  
  
  the part I didn't see coming
&lt;/h2&gt;

&lt;p&gt;Usage-based Copilot billing lands 2026-06-01. Every deployed workflow burns credits at metered rates, and the per-repo tools (&lt;code&gt;gh aw&lt;/code&gt;, the Actions UI) can't see across the fleet to tell you where the credits went.&lt;/p&gt;

&lt;p&gt;The same &lt;code&gt;fleet.json&lt;/code&gt; that declares which repos get which workflows turns out to be the natural place to attribute that consumption: by repo, by profile, or by cost center. A &lt;code&gt;consumption&lt;/code&gt; rollup is in flight. I went in solving a drift-tracking problem and walked out with a FinOps one.&lt;/p&gt;

&lt;h2&gt;
  
  
  what's shipped since launch
&lt;/h2&gt;

&lt;p&gt;v0.1.0 shipped April 21 with the core reconcile loop. It's at v0.2.0 now, and the gap is mostly about trusting the tool against more repos:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;status&lt;/code&gt; / drift detection&lt;/strong&gt;: see what's out of line across the fleet without cloning anything, and gate a CI job on it.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;JSON output + structured logging&lt;/strong&gt;: &lt;code&gt;-o json&lt;/code&gt; on the read commands, &lt;code&gt;zerolog&lt;/code&gt; underneath, so you can pipe results into &lt;code&gt;jq&lt;/code&gt; or an aggregator.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;resumable deploys&lt;/strong&gt;: pick a half-finished deploy back up at the commit or push gate instead of starting over.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;a Layer-1 security scanner&lt;/strong&gt;: secrets and structural rules checked before anything ships.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;observability-plus&lt;/code&gt; profile + an HTTP 402 billing diagnostic&lt;/strong&gt;: early groundwork for the billing story above.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HuJSON config&lt;/strong&gt;: comments and trailing commas in &lt;code&gt;fleet.json&lt;/code&gt;, so you can document &lt;em&gt;why&lt;/em&gt; a pin is set right next to the pin.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  where it's at
&lt;/h2&gt;

&lt;p&gt;v0.2.0, still pre-1.0: the CLI flags and the &lt;code&gt;fleet.json&lt;/code&gt; schema may move before 1.0. But I'm already using it to manage my own repos, and it's working great.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/rshade/gh-aw-fleet" rel="noopener noreferrer"&gt;Repo + docs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/rshade/gh-aw-fleet/releases/latest" rel="noopener noreferrer"&gt;Latest release&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>projects</category>
      <category>agents</category>
      <category>ai</category>
      <category>finops</category>
    </item>
    <item>
      <title>hello, world</title>
      <dc:creator>Richard Shade</dc:creator>
      <pubDate>Sun, 14 Jun 2026 23:54:44 +0000</pubDate>
      <link>https://dev.to/rshade/hello-world-507n</link>
      <guid>https://dev.to/rshade/hello-world-507n</guid>
      <description>&lt;p&gt;A blog is a long-running argument with yourself about what you actually believe. I've been meaning to start one for years.&lt;/p&gt;

&lt;p&gt;This is mine. It will be about FinOps and Pulumi (my day job), AI tooling and agent design, infrastructure war stories that deserve to exist outside Slack threads, and occasionally brisket and ham radio, because a blog without a person behind it is just SEO.&lt;/p&gt;

&lt;p&gt;Up next: a story about a third-grade peanut butter sandwich assignment, and why it explains most of what I think people get wrong about prompt engineering in their first six months.&lt;/p&gt;

&lt;p&gt;More soon. 73.&lt;/p&gt;

</description>
      <category>meta</category>
    </item>
  </channel>
</rss>
