CommitCycle CLI Shipped

The gate, the grant and the close, from your terminal

One command carries a task from a sentence to a branch with access attached, and one carries it back out with a record. Everything in between is ordinary work, done by whichever agent you like.

Install

npm i -g commitcycle

The package is commitcycle and the command is cycle. That split is deliberate: on every Unix machine cc is already the system C compiler, so a globalcc would break node-gyp and every Makefile that never overrode$(CC). A governance tool that shadows a compiler is one people uninstall.

The daily loop

cycle start "the thing" \
  --goal "…" --non-goals "…" --criteria "…" \
  --topics backend,frontend        # intake → scope → branch → gate → grant → context
# ... work ...
cycle submit                       # In Progress → In Review, zones closed
cycle verify --close --evidence <url>   # the manifest, the checks, the audit record

The four fields are not decoration on that first line: the gate refuses a task without them and leaves it in Todo, so a start written without them stops before it opens anything.

cycle start is the only door into In Progress. There is no command that opens a zone on its own, which is the point: the moment a second door exists it becomes the one everybody uses in a hurry.

What it can do

CommandWhat it does
initSet the repository up — propose zones from the code, write the map and the agent context
startIntake, scope, branch, gate, grant and context, in one call
statusWhat task is active, and exactly what is open to it right now
syncPush the zone map and events, pull the grant for this branch
request-accessAsk a zone's owner to open it — with a reason and an alternative
approve · denyAnswer someone else's request without leaving the terminal
submit · pauseHand the work in, or put it down without giving it up
verify --closeCheck the branch against what the task declared, then write the record
seed · challengeDraft playbooks from the codebase, then argue with them
doctorWhy is CommitCycle behaving like this?

Around thirty in total. The full list, flag by flag, is inthe CLI reference.

Where it stops

The command reference is in the docs, and the model it acts on is the zone map.