Verify MDT's shipped Claude, Cursor, and Codex setups against the local workflow contract. Use when auditing tool support, checking whether setup files still exist, validating workflow coverage, or producing a per-tool readiness report without relying on GitHub Actions or live model calls.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Verify MDT's shipped Claude, Cursor, and Codex setups against the local workflow contract. Use when auditing tool support, checking whether setup files still exist, validating workflow coverage, or producing a per-tool readiness report without relying on GitHub Actions or live model calls.
MDT Dev Verify
When to Use
Use this skill when auditing MDT's local tool adapters, validating documented workflow coverage, or producing a per-tool readiness report without relying on CI or live model calls.
Source Of Truth
In MDT repo mode, read these first:
docs/tools/capability-matrix.md
docs/tools/workflow-matrix.md
scripts/lib/tool-workflow-contract.js
Treat the docs pack as the human-readable source of truth and the JS contract as the machine-readable enforcement surface.
treat ~/.codex/ plus ~/.codex/mdt/ as the install surface
do not fail just because the full repo docs pack is absent
Required Workflow
MDT repo mode
Run mdt verify tool-setups.
If the relevant CLIs are installed locally, run mdt dev smoke tool-setups.
For deeper tool coverage, run mdt dev smoke workflows --tool <tool>.
For any tool whose scripted smoke passes, require the tool-specific runtime checklist under docs/testing/manual-verification/ before calling the setup fully verified.
Summarize results by workflow, by tool, and by remaining manual-runtime checks.
If something fails, identify the missing file, stale doc claim, or broken local probe before proposing broader changes.
Installed global tool mode
Run node ~/.codex/mdt/scripts/mdt.js dev smoke tool-setups.
Run node ~/.codex/mdt/scripts/mdt.js dev smoke workflows --tool codex.
Point to docs/testing/manual-verification/codex.md for the required real Codex session check.
Summarize readiness from the installed global surfaces and clearly separate scripted smoke from pending manual-runtime checks.
Rules
Do not rely on GitHub Actions or CI for this workflow.
Do not require authentication, network access, or a live model session to count a local smoke check as useful.
If a tool is not installed locally, mark its smoke status as SKIP.
If the docs and the contract disagree, fix the disagreement before expanding scope.
Do not treat script-only smoke output as proof that the in-tool runtime surfaces are healthy when a manual verification page exists for that tool.