| name | verify |
| description | Route verify using exact migration registry [{"unit":"verify/default","routing":{"negative_boundaries":["Do not run verify; only execute deterministic repository verification.","Only assess test coverage, acceptance criteria, flakiness, and verification gaps.","Only review the current code changes for correctness and defects."],"positive_triggers":["Apply the canonical verify workflow and report its evidence.","Help me run the verify workflow for this repository.","I need the canonical verify procedure with its safety boundaries."]}},{"unit":"verify/fast","routing":{"negative_boundaries":["Do not run verify fast mode; only execute deterministic repository verification.","Only assess test coverage, acceptance criteria, flakiness, and verification gaps.","Only review the current code changes for correctness and defects."],"positive_triggers":["Apply the canonical verify fast mode workflow and report its evidence.","Help me run the verify fast mode workflow for this repository.","I need the canonical verify fast mode procedure with its safety boundaries."]}},{"unit":"verify/precommit","routing":{"negative_boundaries":["Do not run verify precommit mode; only execute deterministic repository verification.","Only assess test coverage, acceptance criteria, flakiness, and verification gaps.","Only review the current code changes for correctness and defects."],"positive_triggers":["Apply the canonical verify precommit mode workflow and report its evidence.","Help me run the verify precommit mode workflow for this repository.","I need the canonical verify precommit mode procedure with its safety boundaries."]}}]. |
Verify Repository Evidence
Modes
- Default is the only gating mode. After the current primary review passes, the allowlisted bundled verifier records deterministic evidence for the exact fingerprint.
- Fast is non-gating. After separate explicit approval for the lint-fix mutation, it runs the available
lint:fix → test sequence with continue-all behavior, ecosystem fallback, changed-file reporting, and no runtime gate write.
- Precommit is non-gating. After separate explicit approval for the lint-fix mutation, it runs the available
lint:fix → build → test sequence with continue-all behavior, ecosystem fallback, changed-file reporting, and no staging, unstaging, committing, or runtime gate write.
Bounded runtime
mcp__sd0x_claude_review__run_skill_script '{"entrypoint":"verify/verify.js","cwd":"<repository-root>","args":[]}'
mcp__sd0x_claude_review__run_skill_script '{"entrypoint":"verify/verify.js","cwd":"<repository-root>","args":["--mode","fast","--allow-fixes"]}'
mcp__sd0x_claude_review__run_skill_script '{"entrypoint":"verify/verify.js","cwd":"<repository-root>","args":["--mode","precommit","--allow-fixes"]}'
Without --allow-fixes, a detected lint-fix step fails closed before any command
runs. Both non-default modes run every available step even after a failure, report
each literal argv and exit code plus git diff --name-only, and never read or
write the sd0x review/verification gate state. The bundled
verify entrypoint delegates ecosystem detection, closed
command ordering, and result normalization to the shared deterministic runtime.
A failed check or fingerprint change returns the workflow to review. Never substitute a verbal claim for the default deterministic result.
{
"positive_triggers": [
"Apply the canonical verify workflow and report its evidence.",
"Help me run the verify workflow for this repository.",
"I need the canonical verify procedure with its safety boundaries."
],
"negative_boundaries": [
"Do not run verify; only execute deterministic repository verification.",
"Only assess test coverage, acceptance criteria, flakiness, and verification gaps.",
"Only review the current code changes for correctness and defects."
]
}
{
"positive_triggers": [
"Apply the canonical verify fast mode workflow and report its evidence.",
"Help me run the verify fast mode workflow for this repository.",
"I need the canonical verify fast mode procedure with its safety boundaries."
],
"negative_boundaries": [
"Do not run verify fast mode; only execute deterministic repository verification.",
"Only assess test coverage, acceptance criteria, flakiness, and verification gaps.",
"Only review the current code changes for correctness and defects."
]
}
{
"positive_triggers": [
"Apply the canonical verify precommit mode workflow and report its evidence.",
"Help me run the verify precommit mode workflow for this repository.",
"I need the canonical verify precommit mode procedure with its safety boundaries."
],
"negative_boundaries": [
"Do not run verify precommit mode; only execute deterministic repository verification.",
"Only assess test coverage, acceptance criteria, flakiness, and verification gaps.",
"Only review the current code changes for correctness and defects."
]
}