claim_record
Record claims with proof commands so you're alerted when they stop being true. Use for durable statements in PRs, comments, docs, or reports.
Instructions
Record a claim together with the command that PROVES it, so a later session is told when it stops being true. Use this for any factual statement you write somewhere durable — a PR description, a code comment, a doc, a status report. The proof must be a cheap read-only shell command whose output can be compared.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| claim | Yes | The assertion, as you would write it to a human | |
| expect | No | Expected stdout, stripped. Omit to mean 'must exit 0' | |
| watches | No | Paths whose change should trigger a re-check | |
| asserted_in | No | Where the claim was made, e.g. 'PR #48 body, line 26' | |
| verified_by | Yes | Shell command that proves it, e.g. "grep -c 'X' path" |