CLAUDE.md ยท diff
git:20260817.0185ca1 to git:20260824.2e8661a
1 added, 0 removed. Audit A to A.
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with this repository.
## Archflow Framework
This repository uses [Archflow](https://github.com/AZidan/archflow), a phase-based development
framework with a release-driven outer loop (schema v2.0).
**The framework flow is defined in a single agent-neutral base file:**
๐ **`.archflow/instructions.md`** โ read it first. It is the source of truth for how Archflow works:
core agents per phase, the release model (releases as the outer loop, backlog stubs, the per-story
readiness pipeline, quick/full modes), the command surface, the universal context files, and the
critical rules. Other coding-agent instruction files (this `CLAUDE.md`, a Cursor `.cursorrules`, a
Windsurf rules file, etc.) all point at `.archflow/instructions.md` rather than duplicating it โ one
source, no drift.
Then load the current phase: read `.archflow/current-phase.yaml` โ `phase_file`, and follow
`.archflow/phases/phase-{current}-{name}.md`.
## Commands
- `/archflow:status` โ status + available commands
- `/archflow:init` / `/archflow:onboard` โ set up a new / existing project
- `/archflow:migrate` โ upgrade a v1.0 project to schema v2.0
- `/archflow:mode [quick|full]` โ show/switch ceremony mode
- `/archflow:release [new|start|ship]` โ manage releases
- `/archflow:groom [story-id]` โ detail a backlog stub into a `ready` story
- `/archflow:feature` โ add a story to the backlog or active release
+ - `/archflow:autopilot` โ run queued release stories unattended on one branch (interview, then silent)
- `/archflow:setup-mcp [tool]` โ connect an external tool via MCP
All commands are namespaced (`/archflow:<name>`) and live in `plugin/commands/*.md`. There is no
argument-style `/archflow <sub>` โ never document or suggest that form.
## Repository-specific rules
- Commit ONLY the changes you made โ never `git add .` / all files.
- This repo mirrors framework files across two trees: `plugin/skills/archflow/` (the shipped
source) and `.archflow/` (this repo's own dogfood copy) โ keep any edited framework file
identical in both. (`plugin/.archflow/`, the root `skills/` tree, and `skills/archflow.zip` are
retired โ the plugin is the only distribution.)