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.
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
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.