Using Archflow Studio
Run the whole Archflow workflow in a browser: onboard a project, groom a backlog, cut a release, and watch the agents work, without living in the terminal.
Studio is a local workspace over the same .archflow/ files the CLI uses. The roadmap becomes a
board, the release becomes a pipeline, and the agents work in front of you instead of behind a
scroll of text.
It is the terminal-free path. After the plugin is installed, one command opens it and everything else, including onboarding an existing codebase, happens in the browser.
Beta. Features are still landing. It is already what ships Studio itself, so it is not fragile, but it is not finished either. Tell us what’s missing.
Start it
cd your-project
claude
/archflow:studio
That prints a URL, http://localhost:3456 by default, and offers to open it.
The server is detached on purpose: it outlives the session that started it, so you can close the terminal and leave Studio open beside your work. That also means it keeps running until you stop it.
/archflow:studio status # is it running, and for which project?
/archflow:studio stop # shut it down
/archflow:studio port 3457 # use a different port
All three are safe to run twice. Running stop on something already stopped is a no-op, not an
error.
The first run
Studio reads the folder you started it in. What it shows depends on what it finds.
A project with no .archflow/. Studio offers to onboard it. One button runs
/archflow:onboard for you: up to nine agents audit the code, import context from Jira, Notion,
Linear, GitHub or Slack if you have those connected, reverse-engineer your design system and API
contracts, and put you in the right phase. You approve the artifacts; nothing is written until you
do.
A project from Archflow v1.0. Studio detects the old sprint schema and offers a one-button
migration to v2.0. It backs up .archflow/ to .archflow/backup-v1/ first, splits sprints into
releases, moves unstarted stories to the backlog, archives completed sprints into history.yaml,
and demotes epics to labels. The run happens in the chat panel; Studio confirms success by
re-reading the project rather than by parsing the output.
A blank directory. Ask the assistant for /archflow:init to start at Phase 1.
What’s in the window
A rail on the left, a work area in the middle, a chat panel on the right.
| Rail | What it holds |
|---|---|
| Strategy | project-context.md: goals, tech stack, architecture decisions |
| Backlog | Unscheduled scope: stubs and groomed ready stories |
| Releases | The pipeline, plus shipped releases on a timeline |
| Design | Wireframes and hi-fi screens from design-artifacts/ |
| Contract | docs/api-contract.md, the single source of truth for both sides |
| History | What shipped, when, and what it touched (appears after your first ship) |
Destinations appear as the project earns them. History shows up only once something has shipped.
In quick mode the rail collapses, because most of it has nothing to hold yet.
The release workspace has two views. Board is a kanban of the active release: stories move through Ready, In progress, Review and Done, and each card opens to its acceptance criteria and subtasks. Release is the same release as a document, with its gates and its ship ritual.
The chat panel
This is where the agents run. It streams the same work the CLI would do, with tool calls, sub-agent activity, and todo lists rendered as cards rather than as text.
When an agent needs a decision, it asks in the panel and you answer inline: the question renders as a card with real options, not as a wall of prose you have to reply to in sentences.
Companion mode. Open Studio from a running Claude Code session and its chat starts with that
conversation’s history, on a branch (claude --resume <id> --fork-session). You don’t re-explain
the project to a second assistant. Nothing you type in Studio lands back in your terminal, and
Studio says so itself.
If the session context is missing or more than 12 hours old, Studio falls back to full mode: its
own claude process, unrelated to your terminal. That is a stated degrade, not a failure, and the
startup log says which mode it picked and why.
Two sessions that each want their own Studio need STUDIO_SESSION_CONTEXT set to a different path
each, since the handoff file is one per machine and the most recently started session owns it.
Privacy
Studio binds to 127.0.0.1 and enforces an origin allowlist that covers the WebSocket upgrade, so
a hostile page in another tab cannot reach it. There is no cloud service, no telemetry and no
account. Your code and your Claude credentials never leave the machine, and exposing it beyond
loopback is not supported.
When something is wrong
A detached server has nowhere to print, so its output goes to a log:
cat ~/.archflow/studio/logs/studio-3456.log
The [mode] line near the top says which chat mode it resolved and, if it degraded, why.
Port already in use. Studio never kills a process it does not recognise. If something else owns
the port it tells you what, and suggests /archflow:studio port 3457.
A Studio from an earlier session. It gets adopted rather than replaced, which is the idempotent
case working. Its chat is still wired to whichever session owned the context file when it started;
/api/chat/session says which.
The board is read-only. The project is still on the v1.0 schema. Take the migration the banner offers.
Related
- Onboarding an existing codebase: what
/archflow:onboarddoes to your repo - Starting a new project: the phases in order
- Taking a prototype to production