AO Cyber Systems · Claude Code Plugin · v2.5.0
DevFlow is a meta-prompting, context engineering and spec-driven development system for Claude Code. It breaks work into objectives, plans each one in a fresh context, executes in parallel waves with atomic commits, and verifies the result against the goal — not against a checklist of finished tasks.
Context rot is the quality degradation that happens as Claude fills its context window. DevFlow is built so no agent ever has to work in a dirty one.
The problem
A single Claude Code session that plans, builds and verifies a feature accumulates every file it read, every command it ran and every dead end it explored. By the time it writes the code that matters, the signal it needs is buried. Quality drops, the model repeats itself, and work silently degrades.
DevFlow's answer is structural rather than advisory. Planning artifacts live on disk in
.planning/ instead of in the conversation. Each job is dispatched to a
subagent with a fresh window and only the context that job needs. State survives
/clear, context resets and machine reboots, because it was never in the
context window to begin with.
The loop
Each step writes files the next step reads. You can stop after any of them.
Why it holds up
Hooks block raw git commit, deny ambient edits outside a skill, and refuse a release tag with no changelog entry. Every gate has a documented escape hatch.
The planner marks job dependencies. Independent jobs run concurrently in separate context windows; dependent ones wait.
A (kind, work) table derives TDD posture, planning depth, model tier and verification rigor. A spike is not tested like a payments API.
Atomic commits with objective scope and task IDs, so a bad objective is a clean git revert rather than an archaeology project.
Decisions, blockers and position live in .planning/STATE.md. Resume a week later with /devflow:status resume.
Quality, balanced and budget profiles map each of the 13 agents to a model tier. Switch with one command.
Get started
DevFlow ships as a Claude Code plugin. It works on macOS, Windows and Linux, and
installs from the /plugin command or the Claude Desktop plugin UI.