compass_check
Evaluates high-stakes actions against governance heuristics and returns PAUSE, WITNESS, or PROCEED with rationale. Use before irreversible actions like git pushes or deploys.
Instructions
Runtime self-check before taking a high-stakes action. Evaluates the proposed action against governance heuristics and returns PAUSE, WITNESS, or PROCEED with rationale and suggested verifications. Call this before: git pushes, deletes, publishes, deploys, or any action that is hard to reverse. PAUSE = stop and verify; WITNESS = human judgment required; PROCEED = no signals detected.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Free-text description of the action about to be taken, e.g. 'git push to main', 'delete chronicle entries', 'publish methodology note'. | |
| context | No | Optional extra framing or relevant background. | |
| stakes | No | Perceived stakes level. 'critical' defaults to PAUSE unless the action matches an explicit low-risk pattern. | medium |
| with_simulation | No | When true, runs the Monte Carlo simulator (revived from v1.0.0 on 2026-04-26) and appends a `simulation` field with reversibility + 90% CI for REORGANIZE / ROLLBACK / DEFER / INCREMENTAL scenarios. Adds evidence to the PAUSE/WITNESS verdict instead of hand-waving 'is this reversible?'. Off by default because it imports NetworkX. |