Skip to content

Commands

maat commands are split between two workflows:

WorkflowCommandsPurpose
Finding workflowcheck, baseline, resolve, verify, visualizeRun rules, record findings, decide what to suppress, resolve, verify, or inspect.
Axiomsaxiom declare, axiom supersede, axiom revokeRecord and maintain manual architecture claims that are not automated findings.

Finding decisions

A finding is a current rule result. A fingerprint is its stable identity across runs. The ledger stores decisions about fingerprints.

DecisionMeaningCheck behavior
observedmaat saw the finding and saved it.Visible unless baselined, covered by an active axiom, or revoked.
baselinedTemporarily accepted as existing debt.Hidden until expiry unless --show-baselined is used.
resolvedThis exact fingerprint was intentionally fixed.If the same fingerprint appears again later, maat treats it as a regression.
unverifiedA probabilistic finding recorded by check --ledger, awaiting human review.Shown with a [Verify] badge; never fails strict mode.
revokedA human dismissed an unverified finding as a false positive (verify --revoke).Hidden from output even if the finding still appears in the current run.

There is no verified decision state: maat verify promotes an unverified fingerprint by appending a new observed event, after which the finding loses requiresVerification and is treated as deterministic.

The most important nuance: resolved applies to one finding fingerprint, not to the whole rule. If abc123 is resolved for a domain-to-infra import, only abc123 is protected as a regression. Another finding from the same rule gets its own fingerprint and starts as a new finding.