ワンクリックで
debug-resolve
Use when debugging a bug or incident and you need a strict end-to-end investigation loop from reproduction to verified fix.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when debugging a bug or incident and you need a strict end-to-end investigation loop from reproduction to verified fix.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Walk the B1-B15 AI-to-AI blind-spot catalog systematically. Use during the audit pipeline AFTER hard-stops and Tambon hunt and BEFORE the 13 domain audits. Output: PRESENT / NOT PRESENT for each B-class with evidence. Findings flow into the appropriate domains.
Standardize remediation decisions, baseline-policy entries, and legal-review banners for accepted, deferred, or policy-blocked audit findings.
Audit the security domain - auth, authz, secrets, transport, sensitive data exposure, dependency CVEs. Run as part of /audit Phase E.
Audit the architecture and code quality domain - module boundaries, abstraction layers, code organization, naming, documentation. Run as part of /audit Phase E.
Audit the database and data layer - schema design, query patterns, migrations, indexing, RLS, soft-delete, transactions. Run as part of /audit Phase E.
Audit the infra and DevOps domain - CI/CD, deployment, IaC, secrets management, environments, logging, observability. Run as part of /audit Phase E.
| name | debug-resolve |
| description | Use when debugging a bug or incident and you need a strict end-to-end investigation loop from reproduction to verified fix. |
Systematic debugging skill that enforces resolution. Use when debugging a bug or investigating an issue.
git log --oneline -10, git diff HEAD~3docker exec cat /app/file.js)# Run the failing test - it should now pass
npm test / pytest / cargo test
# Build check
npm run build / npx tsc --noEmit
# If deployed: verify with curl
curl -s <endpoint> | head -c 200
If verification fails, go back to Step 3. Do NOT mark as resolved.
BUG: <description>
ROOT CAUSE: <what was actually wrong>
FIX: <what was changed and why>
FILES: <list of modified files>
VERIFICATION:
- Test: PASS/FAIL
- Build: PASS/FAIL
- Manual check: PASS/FAIL
STATUS: RESOLVED / BLOCKED (reason)