This page is generated from
docs/cli-reference.md— edit it there.
CLI reference
Every arch command, flag, format and exit code — generated from the same capability manifest that arch manifest --json serves, so this page cannot fall behind the CLI.
The CLI is ArchLang's primary agent interface. Every command takes --json (structured result on stdout, human messages on stderr), and every command that reads source accepts a file path or - for stdin.
npx @chanmeng666/archlang help # zero-install
arch manifest --json # this page, as dataExit codes
| Code | Meaning |
|---|---|
0 | ok |
1 | internal / IO error |
2 | user-source error (deterministic — fix it, don't blindly retry) |
3 | bad usage |
Output formats
-f <format> on compile, batch, md and preview.
| Format | Dependency |
|---|---|
svg | zero-dep (built in) |
dxf | zero-dep (built in) |
txt | zero-dep (built in) |
pdf | needs optional pdfkit |
png | needs optional @resvg/resvg-js |
Global flags
| Flag | Does |
|---|---|
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Commands
arch compile
render a plan to SVG/DXF/TXT/PDF/PNG
Input: <file.arch|-> (Plan JSON with --from-json) · Output: file (or stdout with -o -)
| Flag | Does |
|---|---|
--out, -o <file|-> | output file, or '-' for stdout (default: the input path with the format's extension) |
--format, -f <svg|dxf|txt|pdf|png> | output format (default svg) |
--width, -w <px> | page width hint in pixels |
--scale, -s <n> | raster scale for the PNG backend (ignored by the non-raster formats) |
--cols <n> | text renderer (-f txt / preview --ascii) grid width in characters (default 80) |
--charset <unicode|ascii> | text renderer glyph set (default unicode) |
--overlay <circulation> | draw an opt-in diagnostic overlay (circulation walks + bottleneck markers); default output is unchanged |
--error-svg | on a broken plan, still emit a self-describing error-card image listing the diagnostics (exit code stays 2) |
--accessible | emit <title>/<desc>/role/aria accessibility metadata (the describe() caption) into the SVG; default output is unchanged |
--from-json | read the input as Plan JSON (RPLAN shape) instead of .arch, convert it, then compile |
--install | auto-install the optional dep for the chosen format if missing (PNG/PDF) |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# render SVG next to the input; structured result on stdout
$ arch compile plan.arch --json
# compile source from stdin straight to SVG on stdout
$ arch compile - -o - < plan.arch
# rasterize to PNG, fetching the optional renderer if it is missing
$ arch compile plan.arch -f png --install --jsonarch batch
render many .arch files in one call, concurrently
Input: <a.arch> <b.arch> … · Output: one file per input; --json gives a results[] array
| Flag | Does |
|---|---|
--out, -o <dir> | output DIRECTORY for every rendered file (default: alongside each input) |
--format, -f <svg|dxf|txt|pdf|png> | output format (default svg) |
--jobs, -j <n> | max concurrent renders (default: CPU count) |
--width, -w <px> | page width hint in pixels |
--scale, -s <n> | raster scale for the PNG backend (ignored by the non-raster formats) |
--cols <n> | text renderer (-f txt / preview --ascii) grid width in characters (default 80) |
--charset <unicode|ascii> | text renderer glyph set (default unicode) |
--overlay <circulation> | draw an opt-in diagnostic overlay (circulation walks + bottleneck markers); default output is unchanged |
--error-svg | on a broken plan, still emit a self-describing error-card image listing the diagnostics (exit code stays 2) |
--accessible | emit <title>/<desc>/role/aria accessibility metadata (the describe() caption) into the SVG; default output is unchanged |
--install | auto-install the optional dep for the chosen format if missing (PNG/PDF) |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# render design variants concurrently; one result row per input
$ arch batch a.arch b.arch c.arch -o out/ --json
# export a whole directory to DXF, 4 renders at a time
$ arch batch plans/*.arch -f dxf -j 4 --jsonarch md (alias: markdown)
render every ```arch block in a Markdown file and rewrite to image links
Input: <doc.md> · Output: out.md + one image per block
| Flag | Does |
|---|---|
--out, -o <out.md|-> | rewritten Markdown file, or '-' for stdout (default: <name>.out.md) |
--format, -f <svg|png> | image format for the blocks (default svg) |
--width, -w <px> | page width hint in pixels |
--scale, -s <n> | raster scale for the PNG backend (ignored by the non-raster formats) |
--overlay <circulation> | draw an opt-in diagnostic overlay (circulation walks + bottleneck markers); default output is unchanged |
--error-svg | on a broken plan, still emit a self-describing error-card image listing the diagnostics (exit code stays 2) |
--accessible | emit <title>/<desc>/role/aria accessibility metadata (the describe() caption) into the SVG; default output is unchanged |
--install | auto-install the optional dep for the chosen format if missing (PNG/PDF) |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# render the fenced arch blocks to SVGs and rewrite them to image links
$ arch md README.md -o README.out.md --json
# PNG images; a broken block still yields an error card
$ arch md doc.md -f png --error-svg --jsonarch preview
render a PNG you can look at (zero-install where the optional binary is present)
Input: <file.arch|-> · Output: PNG file (or ASCII text on stdout with --ascii)
| Flag | Does |
|---|---|
--out, -o <out.png|-> | output PNG file, or '-' for stdout (default: <name>.png) |
--scale, -s <n> | raster scale (default 1; without -w/-s the page auto-targets ~1600px wide for legibility) |
--width, -w <px> | page width hint in pixels |
--ascii | print a zero-dependency ASCII text plan to stdout instead of a PNG |
--cols <n> | text renderer (-f txt / preview --ascii) grid width in characters (default 80) |
--charset <unicode|ascii> | text renderer glyph set (default unicode) |
--overlay <circulation> | draw an opt-in diagnostic overlay (circulation walks + bottleneck markers); default output is unchanged |
--error-svg | on a broken plan, still emit a self-describing error-card image listing the diagnostics (exit code stays 2) |
--install | auto-install @resvg/resvg-js if missing, then render |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# a zero-dependency text plan an agent can read on stdout
$ arch preview plan.arch --ascii --json
# raster the plan so a vision model can look at it
$ arch preview plan.arch -o plan.png --jsonarch watch
recompile on save (interactive)
Input: <file.arch> · Output: file, rewritten on each save
| Flag | Does |
|---|---|
--out, -o <file|-> | output file, or '-' for stdout (default: the input path with the format's extension) |
--format, -f <svg|dxf|txt|pdf|png> | output format (default svg) |
--width, -w <px> | page width hint in pixels |
--scale, -s <n> | raster scale for the PNG backend (ignored by the non-raster formats) |
--cols <n> | text renderer (-f txt / preview --ascii) grid width in characters (default 80) |
--charset <unicode|ascii> | text renderer glyph set (default unicode) |
--overlay <circulation> | draw an opt-in diagnostic overlay (circulation walks + bottleneck markers); default output is unchanged |
--error-svg | on a broken plan, still emit a self-describing error-card image listing the diagnostics (exit code stays 2) |
--accessible | emit <title>/<desc>/role/aria accessibility metadata (the describe() caption) into the SVG; default output is unchanged |
--from-json | read the input as Plan JSON (RPLAN shape) instead of .arch, convert it, then compile |
--install | auto-install the optional dep for the chosen format if missing (PNG/PDF) |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# recompile on every save (interactive; agents should use compile)
$ arch watch plan.arch -o plan.svgarch validate
parse + resolve + lint, no render (is it valid & sound?)
Input: <file.arch|-> · Output: diagnostics (plus a graph{} report with --graph and an intent{ ok, satisfied, total, subscores, violations } block with --intent)
| Flag | Does |
|---|---|
--strict, --fail-on-warning | advisory warnings fail too (exit 2) |
--graph <graph.json> | also check the plan's interior-door adjacency against an intended graph (bare dict or {input_graph:{…}}); mismatch → exit 2 |
--intent <intent.json> | gate the plan against a brief's intent JSON; a failing gating assertion (room count/existence/area/windows) → exit 2. Adjacency/reachability score but never gate. Composes with --graph. |
--feedback | with --intent, append a deterministic per-violation correction prompt (advisory data, never applied) |
--code <CODE[,CODE…]> | show only diagnostics with these codes — a DISPLAY filter: the exit code and ok still come from the unfiltered set |
--severity <error|warning> | show only diagnostics of this severity — a DISPLAY filter, like --code (never changes the exit code) |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# the ship gate: errors and advisory warnings both fail
$ arch validate plan.arch --strict --json
# gate on a brief's intent contract and get per-violation correction prompts
$ arch validate plan.arch --intent brief.json --feedback --json
# check interior-door adjacency against an intended room graph
$ arch validate plan.arch --graph rooms.json --json
# read only the blocking errors; `ok` and the exit code still weigh every diagnostic
$ arch validate plan.arch --severity error --jsonarch describe
semantic facts: rooms, areas, adjacency, what doors connect
Input: <file.arch|-> · Output: facts (JSON or a summary), narrowed by --room/--select
| Flag | Does |
|---|---|
--room <id[,id…]> | keep only these rooms; doors/windows/openings/furniture narrow to the ones touching them (plan-level facts — bbox, totals, caption — stay whole-plan) |
--select <key[,key…]> | emit only these top-level keys of the --json object (rooms, doors, totals, access, circulation, freedom, …); the ok/plan/units/diagnostics envelope is always kept |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# rooms, areas, adjacency, door connections, caption, freedom — confirm the plan means what you intended
$ arch describe plan.arch --json
# describe source piped on stdin, no temp file
$ arch describe - --json < plan.arch
# just the rooms and the totals — keep a big plan's facts inside a bounded context
$ arch describe plan.arch --select rooms,totals --json
# only those two rooms and the doors/windows/furniture that touch them
$ arch describe plan.arch --room kitchen,bath --jsonarch score
continuous intent satisfaction (satisfied/total) as data — the refine-loop reward. Measures, never gates (validate --intent is the gate).
Input: <file.arch|-> · Output: { ok, satisfied, total, score, subscores, violations } (exit 0 on a successful measurement, even when assertions fail)
| Flag | Does |
|---|---|
--brief <intent.json> | the intent JSON to measure satisfaction against (required) |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# continuous intent satisfaction as the refine-loop reward; always exits 0 on a measurement
$ arch score plan.arch --brief brief.json --jsonarch lint
architectural soundness warnings
Input: <file.arch|-> · Output: W_* warnings (narrowed by --code/--severity; filtered/total_diagnostics mark a filtered result)
| Flag | Does |
|---|---|
--profile <residential-basic|accessibility-advisory> | advisory ruleset |
--strict, --fail-on-warning | warnings fail (exit 2) |
--code <CODE[,CODE…]> | show only diagnostics with these codes — a DISPLAY filter: the exit code and ok still come from the unfiltered set |
--severity <error|warning> | show only diagnostics of this severity — a DISPLAY filter, like --code (never changes the exit code) |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# architectural soundness warnings as data, each with a fix
$ arch lint plan.arch --json
# gate on the accessibility ruleset (any warning exits 2)
$ arch lint plan.arch --profile accessibility-advisory --strict
# read only the reachability warnings; the exit code still reflects every diagnostic
$ arch lint plan.arch --code W_ROOM_UNREACHABLE,W_NO_ENTRANCE --jsonarch ast
parse only (no resolve/render) and print the span-bearing AST as JSON
Input: <file.arch|-> · Output: AST JSON (scripting nodes unexpanded)
| Flag | Does |
|---|---|
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# span-bearing parse tree with no resolve or render — locate a statement by byte offset
$ arch ast plan.arch --jsonarch complete
completion items in scope at a source byte offset (the LSP completion() core)
Input: <file.arch|-> · Output: { items: [...] } completion items
| Flag | Does |
|---|---|
--at <byteOffset> | source byte offset to list completions at (required) |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# what may legally be written at byte offset 120
$ arch complete plan.arch --at 120 --json
# completions for source on stdin
$ arch complete - --at 0 --json < plan.archarch fmt
canonical formatting
Input: <file.arch|-> · Output: formatted source (or in place with --write)
| Flag | Does |
|---|---|
--write | format the file in place |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# canonical source plus a `changed` flag, nothing written
$ arch fmt plan.arch --json
# rewrite the file in canonical form
$ arch fmt plan.arch --writearch repair
explicit source-to-source corrector (furniture out of walls) + change log
Input: <file.arch|-> · Output: corrected source + change log on stderr
| Flag | Does |
|---|---|
--out, -o <file|-> | output file for the corrected source, or '-' for stdout (default: stdout) |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# the geometric corrector: `source` + a `changes[]` log of every furniture move
$ arch repair plan.arch --json
# write the corrected source to a new file
$ arch repair plan.arch -o repaired.archarch fix
apply the machine-applicable fix suggestions on a plan's diagnostics (bounded fixpoint)
Input: <file.arch|-> · Output: fixed source (to the input file or -o) + a unified diff and change log on stderr
| Flag | Does |
|---|---|
--out, -o <file|-> | output file for the fixed source, or '-' for stdout (default: rewrite the input file in place) |
--unsafe | also apply maybe-incorrect fixes (default: machine-applicable only) |
--dry-run | compute the result but do not write it (the diff preview still prints) |
--backup | before rewriting a file in place, save the original bytes to <file>.bak |
--force | keep a pass even if it raises the error count |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# preview the exact unified diff `fix` would write, changing nothing on disk
$ arch fix plan.arch --dry-run
# the same preview as data: which fixes would be applied, plus the `diff` they produce
$ arch fix plan.arch --dry-run --json
# apply the machine-applicable fixes in place, keeping the original as plan.arch.bak
$ arch fix plan.arch --backup --json
# also apply the maybe-incorrect fixes, leaving the input untouched
$ arch fix plan.arch -o fixed.arch --unsafe --jsonarch suggest
advisory topology suggestions as data (door/window statements that resolve reachability/window faults)
Input: <file.arch|-> · Output: suggestions (JSON or a summary)
| Flag | Does |
|---|---|
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# ready-to-paste door/window statements for unreachable rooms, no entrance, or a windowless bedroom
$ arch suggest plan.arch --jsonarch manifest (alias: capabilities)
this document: the whole CLI API as structured data
Input: none · Output: the manifest (JSON or a summary)
| Flag | Does |
|---|---|
--json | structured result on stdout, messages on stderr |
Examples
# discover every command, flag, format, and error code in one call
$ arch manifest --jsonarch spec
print the one-prompt language spec (spec.llm.md)
Input: none · Output: the spec
| Flag | Does |
|---|---|
--json | structured result on stdout, messages on stderr |
Examples
# the whole language on one page — read this before authoring
$ arch specarch context
print the full bundled agent context (spec + workflow + CLI + errors)
Input: none · Output: the full agent context (llms-full.txt), or one --section of it
| Flag | Does |
|---|---|
--section <spec|workflow|cli|errors> | print only one section of the bundle instead of all ~50KB of it (spec = the language, workflow = the agent loop, cli = every command, errors = the diagnostic catalog) |
--json | structured result on stdout, messages on stderr |
Examples
# the cold-start bundle: spec + workflow + CLI reference + every diagnostic
$ arch context
# just the diagnostic catalog — read one section instead of paying for the whole ~50KB bundle
$ arch context --section errorsarch new (alias: init)
scaffold a starter .arch
Input: none · Output: starter source
| Flag | Does |
|---|---|
--out, -o <file|-> | output file — refuses to overwrite an existing one without --force (default: stdout) |
--force | overwrite an existing file |
--json | structured result on stdout, messages on stderr |
--quiet, -q | suppress human messages on stderr |
Examples
# get the starter plan as a `template` string, writing nothing
$ arch new --json
# scaffold a starter file to edit
$ arch new -o plan.archarch explain
look up an error code (cause / fix / example)
Input: <CODE> · Output: catalog entry
| Flag | Does |
|---|---|
--json | structured result on stdout, messages on stderr |
Examples
# the catalog entry for a diagnostic code: cause, fix, example
$ arch explain E_ROOM_SIZE --json