<?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>Forem: Jaywalker</title>
    <description>The latest articles on Forem by Jaywalker (@jaywalkernotawhitewalker).</description>
    <link>https://forem.com/jaywalkernotawhitewalker</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%2F3880462%2F20a3143e-442a-4da8-949b-806841a67eaa.png</url>
      <title>Forem: Jaywalker</title>
      <link>https://forem.com/jaywalkernotawhitewalker</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/jaywalkernotawhitewalker"/>
    <language>en</language>
    <item>
      <title>Flutter Release Pipeline: A Multi-Agent Skill for Claude Code, Codex &amp; beyond — one command to test, version bump, build &amp; ship</title>
      <dc:creator>Jaywalker</dc:creator>
      <pubDate>Wed, 15 Apr 2026 12:15:24 +0000</pubDate>
      <link>https://forem.com/jaywalkernotawhitewalker/i-built-a-flutter-release-pipeline-skill-for-claude-code-one-command-to-test-version-bump-build-11fg</link>
      <guid>https://forem.com/jaywalkernotawhitewalker/i-built-a-flutter-release-pipeline-skill-for-claude-code-one-command-to-test-version-bump-build-11fg</guid>
      <description>&lt;h2&gt;
  
  
  The problem with Flutter releases
&lt;/h2&gt;

&lt;p&gt;Every Flutter release used to cost me 20–30 minutes of repetitive, error-prone steps:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Manually editing &lt;code&gt;pubspec.yaml&lt;/code&gt; to bump the version&lt;/li&gt;
&lt;li&gt;Running tests and hoping I didn't forget&lt;/li&gt;
&lt;li&gt;Copying git logs into a release notes file&lt;/li&gt;
&lt;li&gt;Building the AAB, then the APK&lt;/li&gt;
&lt;li&gt;Writing a commit message, tagging, pushing&lt;/li&gt;
&lt;li&gt;Realizing I forgot to update the CSV log&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After doing this for the tenth time, I decided to automate the whole thing as a &lt;strong&gt;multi-agent skill&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is a multi-agent skill?
&lt;/h2&gt;

&lt;p&gt;This skill is a plain markdown instruction file — no SDKs, no plugins, no vendor lock-in.&lt;/p&gt;

&lt;p&gt;It works with &lt;strong&gt;any AI coding agent that can read a markdown skill/instruction file&lt;/strong&gt;, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code&lt;/strong&gt; (Anthropic) — place in &lt;code&gt;~/.claude/skills/&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI Codex&lt;/strong&gt; — place in your Codex instructions directory&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Antigravity&lt;/strong&gt; — add as a custom instruction/rule&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Any future agent&lt;/strong&gt; — the format is open and portable&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You install it once, and from then on you just say:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Run the Flutter release pipeline"&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;...and your agent handles everything.&lt;/p&gt;




&lt;h2&gt;
  
  
  What the skill does
&lt;/h2&gt;

&lt;p&gt;In a single command, the Flutter Release Pipeline skill:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 0 — Project verification&lt;/strong&gt;&lt;br&gt;
Checks that &lt;code&gt;pubspec.yaml&lt;/code&gt; exists, &lt;code&gt;DOCs/&lt;/code&gt; and &lt;code&gt;DOCs/releases/&lt;/code&gt; directories are in place, and loads saved preferences (build type, branch) from &lt;code&gt;flutter_release_config.json&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1 — Run tests (GATE)&lt;/strong&gt;&lt;br&gt;
Runs &lt;code&gt;flutter test --machine&lt;/code&gt;, parses JSON output, counts passed/failed/skipped, logs results to &lt;code&gt;DOCs/test_log.csv&lt;/code&gt;. If any test fails — the pipeline stops. No exceptions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2 — Version bump&lt;/strong&gt;&lt;br&gt;
Reads the current &lt;code&gt;version: X.Y.Z+BUILD&lt;/code&gt; from &lt;code&gt;pubspec.yaml&lt;/code&gt;, increments patch and build number, writes it back.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3 — Git log extraction&lt;/strong&gt;&lt;br&gt;
Extracts commits since the last tag, categorizes them into Features, Bug Fixes, Improvements, and Other.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4 — Release notes&lt;/strong&gt;&lt;br&gt;
Generates a markdown file at &lt;code&gt;DOCs/releases/release_notes_vX.Y.Z.md&lt;/code&gt; and presents it to you for review before proceeding.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 5 — CSV logging&lt;/strong&gt;&lt;br&gt;
Appends the release record to &lt;code&gt;DOCs/releases/releases.csv&lt;/code&gt; — append-only, never overwrites.&lt;/p&gt;

&lt;p&gt;**Step 6 — iOS prep (optional)&lt;br&gt;
Runs &lt;code&gt;flutter clean&lt;/code&gt; + &lt;code&gt;flutter pub get&lt;/code&gt; to prepare for Xcode archive.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 7 — **Android build&lt;/strong&gt;&lt;br&gt;
Builds AAB or APK (or both) based on your saved preference.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 8 — Git operations&lt;/strong&gt;&lt;br&gt;
Stages, commits, tags, and pushes everything to your branch.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 9 — Summary&lt;/strong&gt;&lt;br&gt;
Prints a clean summary box with version, branch, test count, build type, and tag.&lt;/p&gt;


&lt;h2&gt;
  
  
  Safety rules baked in
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;No deletions&lt;/strong&gt; — ever&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Append-only CSVs&lt;/strong&gt; — release history is never overwritten&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Case-sensitive paths&lt;/strong&gt; — &lt;code&gt;DOCs/&lt;/code&gt; is always respected&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Test gate&lt;/strong&gt; — the pipeline cannot proceed past a test failure&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OS detection&lt;/strong&gt; — uses correct commands on macOS, Linux, and Windows&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  How to install
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Claude Code:&lt;/strong&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="nb"&gt;cp &lt;/span&gt;flutter-release-pipeline/CLAUDE.md ~/.claude/skills/flutter-release-pipeline.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;OpenAI Codex:&lt;/strong&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="nb"&gt;cp &lt;/span&gt;flutter-release-pipeline/CLAUDE.md ~/codex/instructions/flutter-release-pipeline.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Antigravity:&lt;/strong&gt;&lt;br&gt;
Add the contents of &lt;code&gt;CLAUDE.md&lt;/code&gt; as a custom instruction or &lt;code&gt;.cursorrules&lt;/code&gt; file in your project root.&lt;/p&gt;

&lt;p&gt;Then just say to your agent:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Run the Flutter release pipeline"&lt;/p&gt;
&lt;/blockquote&gt;


&lt;h2&gt;
  
  
  Works on macOS, Linux, and Windows
&lt;/h2&gt;

&lt;p&gt;The skill detects your OS and uses the correct commands for each platform — including PowerShell-compatible output piping on Windows.&lt;/p&gt;


&lt;h2&gt;
  
  
  Also submitted to the official Anthropic skills repo
&lt;/h2&gt;

&lt;p&gt;PR #931 is open on &lt;code&gt;anthropics/skills&lt;/code&gt; (117k stars). Once merged, Claude Code users can install it directly via:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;/plugin &lt;span class="nb"&gt;install &lt;/span&gt;flutter-release-pipeline@anthropic-agent-skills
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  GitHub
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/Jaywalker-not-a-whitewalker/flutter-release-pipeline" rel="noopener noreferrer"&gt;https://github.com/Jaywalker-not-a-whitewalker/flutter-release-pipeline&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Stars, issues, and PRs welcome. What other agents do you use for Flutter development?&lt;/p&gt;

</description>
      <category>flutter</category>
      <category>devops</category>
      <category>opensource</category>
      <category>multiagent</category>
    </item>
  </channel>
</rss>
