| name | planr-status |
| description | Report honest Planr project, map, item, or review state without implementing changes. Use when the user asks what is done, what remains, what is blocked, what is ready, or what should be picked next. |
Planr Status
Use read-only Planr commands first:
planr project show --json
planr map show --json
planr map lane --critical
planr map pressure
For one item:
planr trace item <item-id>
planr log list --item <item-id>
For active work, include runtime and approval state from trace item, map status, or:
planr approval list --open
planr pick stale --older-than-seconds 900
Goal Contract Check
When a loop or /goal run asks whether its stop condition holds, use the one-call verdict:
planr plan audit <plan-id> --json
It reads the stored contract, evaluates every clause with evidence (items settled, reviews complete, approvals clear, verification logged), and answers holds: true/false with the open items listed per clause. Report contract holds or contract open plus the exact unmet clauses straight from the audit output. Use planr search "GOAL CONTRACT" only to read the contract text itself.
Verdicts
Use one:
complete: closed with evidence and no open required child/review/approval work.
in progress: concrete work remains and the next step is available.
blocked: progress needs an external decision or prerequisite.
unclear / partially verified: evidence is incomplete or inconsistent.
Never treat checked Markdown boxes or optimistic summaries as proof. Map state and log evidence decide.