ワンクリックで
verify-contract
Record clear evidence that a task works, including commands, results, and remaining risks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Record clear evidence that a task works, including commands, results, and remaining risks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Choose the smallest workflow that still buys back enough attention and safety for the task.
Compress project context into HANDOFF.md with workflow state, active modes, next gate, verification, current hypothesis, and resume packet for the next agent session.
Implement exactly one planned slice after scope is frozen.
Detect context drift, rehydration loops, hypothesis sprawl, scope creep, active-mode loss, and durable-state gaps. Recommend the smallest corrective action.
Create a compact SPEC.md that prevents premature agreement by defining intent, non-goals, likely failure modes, and verification evidence.
Explicitly limit blast radius before any implementation or file changes.
| name | verify-contract |
| description | Record clear evidence that a task works, including commands, results, and remaining risks. |
Prove the task actually works and leave durable evidence.
After implementation, tests, bug fixes, data runs, or smoke checks.
scripts/verify_gate.py is available,
run it before marking verification complete.
If repeated iterations were used, check for a loop contract, budget, ledger,
revert rule, and stop condition before calling the work done.Status: PASS | FAIL | REVIEW_REQUIRED
Contract probes:
Diff guards:
Credential boundary check:
.env or local secret files were not modified unless they were explicitly in scope.REVIEW_REQUIRED if credential exposure is uncertain.This is a lightweight workflow check, not a secret scanner or a replacement for permissions, secret scanning, or runtime controls.
Review required because:
Good VERIFY.md entry:
2026-06-09 - Implement user export
Environment: Python 3.11, clean venv
Command: ./run_export_test.sh
Exit code: 0
Relevant output: export summary matched fixture
Interpretation: passed
Acceptance criterion covered: user export happy path
Remaining uncertainty: large dataset edge case
Command: python -m pytest tests/export_test.py
Exit code: 0
Relevant output: 12 passed
Interpretation: passed
Acceptance criterion covered: test coverage for export behavior
Remaining uncertainty: none known
Changed: src/export.py, tests/export_test.py
Not tested: large dataset edge case
Remaining risks: large dataset edge case (monitor in prod)
Next: Add scheduling wrapper