SYSTEM_LOG ENTRY
SYSTEM_LOG ENTRY
I wasn't procrastinating, I swear.
Instead of finishing my actual projects this weekend, I got engrossed in rebuilding my tooling.
I just released Flow. It's a Claude Code plugin that streamlines the development lifecycle. It stands on the shoulders of giants, fully integrating with both RepoPrompt and optionally Steve Yegge's Beads.

I realized I was losing around 40k tokens of my context window on startup. It was polluted by loaded MCPs, plugins, and massive command definitions I rarely touched.
I also got tired of the manual friction involved in sending plans and implementations out for architectural review. I do not believe in complex agent workflows. I want a disciplined, deterministic loop:
Plan → Review → Implement → Review.
I rewrote the workflow using a Command Stub → Skill pattern. I have not seen this used elsewhere yet, but it works incredibly well.
This gives you the best of both worlds:
/flow:plan)The real power is in the coordination. The plugin orchestrates 6 specialized subagents that run in parallel phases.
The agent intelligently chooses the right tool for the job:
rp-cli is detected, it uses the RepoPrompt builder to map architecture and function signatures. Slow, deep, and context-aware.I married the workflow with RepoPrompt to create an adversarial review loop. If the plugin detects rp-cli, it automatically delegates reviews to a separate model (e.g., GPT-5.2 High).
It's not a single pass. It's a fix-until-pass loop. This applies to both core workflows:
The Planning Workflow (/flow:plan)
The agent scouts, researches, drafts a plan, and submits it to RepoPrompt. It implements fixes and re-submits until the reviewer is satisfied.
The Implementation Workflow (/flow:work)
The agent executes the plan and writes tests. It grabs the git diff, builds context, and submits it for a correctness/security check. It fixes the code and re-submits.
If it sees a .beads folder, it automatically adapts. It creates Epics and Tasks instead of Markdown files, tracking dependencies natively.

This is not just "chatting with code." It's an enforced, disciplined engineering process that happens to be executed by agents.
Links:
Give it a try or help me improve it—I've received great feedback so far.