From Verify
Use when you need to check whether claims are actually true before relying on them — verifying an AI answer, a plan's assumptions, a PR description, or docs against the real codebase, and reporting per-claim verdicts with evidence.
How this skill is triggered — by the user, by Claude, or both
Slash command
/verify:verify-before-trustThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
AI answers, handoff notes, plans, PR descriptions, and docs often mix true
AI answers, handoff notes, plans, PR descriptions, and docs often mix true observations with stale context, inferred behavior, or missing caveats. Treat claims as hypotheses until they are checked against the actual repository.
Use this skill when you want to verify claims yourself in the main context. Use
the verifier subagent instead when the claim set is large, when verification
would clutter the main context, or when you want to avoid the
author-grading-own-work bias.
Glob and Grep, then use Read to inspect the
primary files directly.references/verdicts.md: confirmed, dubious, refuted, or unable-to-check.file:line evidence for every confirmed or refuted verdict.Delegate to the verifier subagent when:
Keep verification read-only even in the main context unless the caller separately asks you to run tests or make changes.
GitHub Copilot CLI installs this plugin directly:
copilot plugin marketplace add mbeacom/context-kit
copilot plugin install verify@context-kit
APM installs the same plugin, and its manifest also pulls retrieval-core:
apm marketplace add mbeacom/context-kit
apm install verify@context-kit
Claude Code installs it via /plugin:
/plugin marketplace add mbeacom/context-kit
/plugin install verify@context-kit
npx claudepluginhub mbeacom/context-kit --plugin verifyGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.