<?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: Karloos</title>
    <description>The latest articles on DEV Community by Karloos (@karloos).</description>
    <link>https://dev.to/karloos</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4139014%2Fec23a00c-5fe3-4411-a9fb-1e08233e2cac.png</url>
      <title>DEV Community: Karloos</title>
      <link>https://dev.to/karloos</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/karloos"/>
    <language>en</language>
    <item>
      <title>No one else to hand the busywork to, so I built my own crew for it</title>
      <dc:creator>Karloos</dc:creator>
      <pubDate>Wed, 23 Sep 2026 08:33:56 +0000</pubDate>
      <link>https://dev.to/karloos/no-one-else-to-hand-the-busywork-to-so-i-built-my-own-crew-for-it-1ff3</link>
      <guid>https://dev.to/karloos/no-one-else-to-hand-the-busywork-to-so-i-built-my-own-crew-for-it-1ff3</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbbu3f2vn11sgyxcmkska.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbbu3f2vn11sgyxcmkska.gif" alt="orc-intro" width="800" height="267"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The fifth time in a week I typed a branch name like &lt;code&gt;fix-2&lt;/code&gt; and immediately regretted it, I stopped and counted: naming the branch, writing the commit, drafting the PR body, remembering what a review still owed me — the same chores, every single change, with nobody else on the project to catch any of it for me.&lt;/p&gt;

&lt;h3&gt;
  
  
  Where it started
&lt;/h3&gt;

&lt;p&gt;Nine days ago I stopped tolerating it. I took the policy docs I already had — branch naming, commit format, PR templates — and turned them into something an agent could actually run:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;ship&lt;/code&gt;&lt;/strong&gt; reads the real diff and opens a policy-compliant PR.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;roast&lt;/code&gt;&lt;/strong&gt; reviews it against the repo's own rules, the way a strict human reviewer would.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;land&lt;/code&gt;&lt;/strong&gt; checks mergeability and CI, merges, and cleans up after itself.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  It didn't stop at three
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;warplan&lt;/code&gt;&lt;/strong&gt; drafts a plan grounded in the repo's own precedent before I write anything.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;quest&lt;/code&gt;&lt;/strong&gt; triages the issue first.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;reckoning&lt;/code&gt;&lt;/strong&gt; logs why a review finding got declined instead of fixed, so it doesn't quietly vanish into scrollback.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;plunder&lt;/code&gt;&lt;/strong&gt; reports real time-to-land and fix-vs-decline rates across every merged PR.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;muster&lt;/code&gt;&lt;/strong&gt; flags stuck checks and merge conflicts across every repo I own, not just one.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;&lt;code&gt;herald&lt;/code&gt;&lt;/strong&gt; drafts release notes from what actually merged — no invented numbers, no guessed scope, every line cited from a real diff, commit, or PR.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  It's also failed, honestly
&lt;/h3&gt;

&lt;p&gt;A branch rename through GitHub's API once silently closed a PR instead of retargeting it, mid-session. It said so plainly, opened a fresh PR carrying the same commits, and moved on — no minimizing it, no quietly patching over it. That's closer to what I actually wanted than a tool that never admits a mistake.&lt;/p&gt;

&lt;h3&gt;
  
  
  The one rule that never moved
&lt;/h3&gt;

&lt;p&gt;Nothing touches git or GitHub without me saying so, in that turn, every time. Default, not a suggestion — a repo owner can opt specific routine steps into a scoped &lt;code&gt;Autonomous Mode&lt;/code&gt; if they want less friction, but merge, force-push, and delete stay gated no matter what.&lt;/p&gt;




&lt;p&gt;206 commits in, and every README change behind this very story went through that same &lt;code&gt;ship&lt;/code&gt; → &lt;code&gt;roast&lt;/code&gt; → &lt;code&gt;land&lt;/code&gt; cycle before it landed. Same workflow, running identically in Claude Code, Codex, and Grok Build.&lt;/p&gt;

&lt;p&gt;If you're the solo dev with no one else to hand the busywork to, it's here: &lt;strong&gt;&lt;a href="https://github.com/karloows/orchraft" rel="noopener noreferrer"&gt;https://github.com/karloows/orchraft&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>agentskills</category>
      <category>agents</category>
      <category>devtool</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
