What problem does it solve?
When AI agents receive cross-thread handoffs containing claims about ownership, authorization, or object state, they risk acting on unverified assertions. This Skill enforces a three-question verification reflex (claim, resolver, verdict) before any irreversible action like merging PRs, taking over work, or registering tracking.
Core Features & Use Cases
- Claim Grounding Three-Question Protocol: Extracts every verifiable claim from a handoff message, resolves each against an independent second source, and produces a verified/mismatch/insufficient verdict.
- Source Tier Enforcement: Classifies resolver evidence as T0 (hard ground truth like operator messageIds or git signatures), T1 (platform truth like PR review state), or T2 (cat-writable narrative), requiring at least one T0/T1 source for high-risk actions.
- Action Policy Matrix: Maps actionFamily (merge, takeover, wait, register_tracking, owner_reassignment) against verdicts to decide proceed, block, push back, or fail-closed outcomes.
- Use Case: Before merging a PR based on a teammate's message saying "operator approved", the Skill checks the actual message author identity and PR review state, blocking the merge if only secondhand narrative evidence exists.
Quick Start
Before I merge this PR based on the handoff message claiming operator approval, run the claim grounding three-question check and tell me whether to proceed or push back.