no-mistakes
is a local gate that validates your code changes through a pipeline
(intent, rebase, review, test, document, lint, push, PR, CI) before they reach
upstream. You drive it through the
command family, which prints
machine-readable
TOON to stdout and progress to stderr.
When the user invokes
, report the outcome at the end. If the user
asks for something specific, translate that request into the matching
flags yourself - for example, "skip the lint step" becomes
. Run
no-mistakes axi run --help
to see the available flags.
Two ways to invoke
works in two modes, depending on whether the user hands you a
task along with the command:
- Validate-only - bare (optionally with flag-style requests
like "skip the lint step"). The user's code changes are already committed;
validate them and report the outcome.
- Task-first - , e.g.
/no-mistakes add a --json flag to the status command
. First carry out the
task yourself, then validate the result through the pipeline:
- Check scope. Inspect before you change or commit anything.
Preserve unrelated pre-existing uncommitted changes, and when you commit,
commit only the changes that belong to the user's task.
- Do the work. Make the changes the task describes, then commit them on
a feature branch. If the user is on the repository's default branch,
create a feature branch first - the gate validates committed history on a
non-default branch, so the work must land there before you run.
- Then validate, passing the user's task as your . The task
text is exactly what the user set out to accomplish, in their own words, so
it is the intent - pass it through, enriched with the decisions and
tradeoffs you made while doing the work (see
Intent is required).
Everything below - preconditions, intent, the validate-and-decide loop - applies
the same way once the work is committed on a feature branch.
Before you start
- The work you want validated must be committed on a branch. The gate
validates committed history, not your uncommitted working tree.
- You must be on a feature branch, not the repository's default branch.
- The repository must already be initialized with .
If any of these is not met,
returns an
with the exact command
to fix it - read it and act on it (commit your work, or create a branch). If the
repository is not initialized, run
first; if the
command itself is missing or misbehaving,
reports what is
wrong. Before starting, a quick
(home view) shows whether a
run is already active - resume or
it rather than starting a second
run on top of it.
Intent is required
When you start a run you must pass
:
what the user set out to
accomplish - the goal or request behind this work, in their terms. This is not
a description of the diff or the files you changed; it is the objective the
change is meant to achieve. You know it from the conversation, so pass it
directly - no-mistakes uses it verbatim instead of inferring it from local agent
transcripts (slower and flakier).
Err on the side of completeness, not brevity. The review step uses
to tell a deliberate decision apart from a mistake, so a thin one-line summary
makes it flag things the user already chose. Capture the nuance: the user's
goal, the specific decisions and tradeoffs they made along the way, any
constraints or approaches they ruled in or out, and anything they explicitly
asked for that might otherwise look surprising in the diff. A few sentences to a
short paragraph is normal - write down what you learned from the conversation
that a reviewer reading only the diff would not know.
Validate and decide
Run the pipeline and decide on its findings as they come up:
-
Start the run. It blocks until the first decision point or the end:
sh
no-mistakes axi run --intent "<what the user set out to accomplish>"
and every
block synchronously - the review, test,
and CI steps can each take
several minutes, so a single call may not
return for a while. That is normal; allow a long timeout and do not cancel
or re-issue the command because it seems slow. To check progress without
disturbing the run, use
from a separate call.
-
If the output contains a
object, the pipeline is waiting on you.
Read its
table. Each finding has an
,
,
,
, and an
that tells you how the
pipeline classified it:
- - mechanical and low-risk; you can authorize the fix on
your own judgment by responding with .
- - informational only; nothing to do.
- - the finding challenges the user's deliberate intent or
touches product behavior. This is a call only the user can make - see
Escalate findings below.
Choose one response:
sh
# accept the step as-is and continue
no-mistakes axi respond --action approve
# have the pipeline fix specific findings, then continue
no-mistakes axi respond --action fix --findings <id1,id2> --instructions "<optional guidance>"
# skip this step
no-mistakes axi respond --action skip
While a run is active, never fix findings by editing the code yourself -
the pipeline owns both the findings and the fixes. Your job at a gate is to
decide and respond;
has the pipeline apply the fix and
re-review the result.
Each
blocks until the next
,
decision point, or final outcome.
Two extra flags are available on
when you need them:
- (with ) folds a finding you
spotted yourself - one the pipeline did not surface - into the fix round,
as a JSON finding object. Use it for a problem you noticed that is not in
the gate's own table.
- responds to a specific step instead of the one currently
awaiting approval. You rarely need this; omit it to answer the active gate.
-
Repeat step 2 until the output has an
instead of a
. The
outcomes are:
- - the change is validated and CI is green, but the PR is
not merged yet. You are done driving the pipeline. Do not wait for the
merge: tell the user the PR is ready and ask them to review and merge it
(the PR link is in the line). no-mistakes keeps monitoring the PR
in the background, so a human can watch it in the TUI.
- - the changes cleared the gate and the PR was merged or closed.
- or - they did not; read the output and address it.
Fix whatever the output points at (a failing test, a lint error, a finding
you skipped), commit the fix on the same feature branch, then drive the
pipeline again -
no-mistakes axi run --intent "..."
starts a fresh run,
or re-runs the pipeline for the current branch. Do not
leave the user at a outcome without either retrying or explaining
what blocks it.
The CI step deliberately watches the PR until it is merged or closed, so
returns
the moment checks are green rather than
blocking on the human merge. Never poll or re-run waiting for the merge yourself.
On a successful outcome (
or
), close the loop with the
user: summarize what happened during the pipeline in a concise, easily readable
format - what was validated and what was found. If the output includes a
table, the pipeline fixed findings your original change missed:
acknowledge those misses and explicitly list each fix so the user can easily
review them.
Escalate findings
A gate whose findings are all
or
is safe to drive on your
own judgment: respond with
or
as
appropriate. But a finding marked
is a decision that belongs to the user, not you - the pipeline
flagged it because it challenges their deliberate intent or changes product
behavior. Do not approve, fix, or skip it on your own. Instead, stop and bring
it to the user before you respond:
- Relay each finding to them as the pipeline wrote it - its
, , and full verbatim. Do not paraphrase,
summarize away the detail, or pre-judge the answer.
- Ask how they want to proceed, then translate their decision into the matching
call: (pass their guidance through
), , or .
The one exception is
(below): it is the user's standing consent to
drive every gate unattended, so under
you resolve
findings automatically instead of stopping to ask.
If you have clear consent to drive the run automatically, pass
to
or
. It treats every actionable finding -
and
alike - as consent to fix it, selects every current finding for one
fix round, accepts the resulting fix review, and approves gates with only
findings. Only use it when the user has asked you to drive the whole
run without checking back.
Inspecting state
sh
no-mistakes axi # home view: active run, recent runs, next steps
no-mistakes axi status # full detail of the active (or most recent) run
no-mistakes axi logs --step <name> --full # full log output of one step
no-mistakes axi abort # cancel the active run
Reading the output
- Output is TOON: pairs, tables, and hints.
- The list at the bottom of most responses tells you the next commands to run.
- Errors are printed as on stdout with a list; act on the suggestion.
- Exit codes: success, no-op, or normal decision gates, failed or cancelled final outcomes, bad usage.
A
waiting on you looks roughly like this - a
line naming the
step, a
table with one row per finding, and a
list of next commands:
gate: review
findings[2]{id,severity,file,description,action}:
r1,medium,internal/pipeline/executor.go,Error from os.Remove is ignored,auto-fix
r2,high,cmd/no-mistakes/main.go,New --force flag bypasses the confirm prompt,ask-user
help[2]:
no-mistakes axi respond --action fix --findings r1
no-mistakes axi respond --action approve
Read the
column per row: decide
(auto-fix) on your own
judgment -
respond --action fix --findings r1
hands it to the pipeline to
fix - but stop and escalate
(ask-user) to the user before responding. A
final state
instead shows
outcome: <checks-passed|passed|failed|cancelled>
with no
table. Field names and exact columns can vary by step and version,
so read the actual
header rather than assuming this layout.