Autodialectics Inspect
Use this skill to examine completed or in-progress pipeline runs and their artifacts.
Prerequisites
autodialectics-mcp must be on PATH (pip install autodialectics).
MCP Tools
inspect_run(run_id)— retrieve the run manifest: status, decision, scores, timing, and artifact paths.read_artifact(run_id, artifact_name)— read a specific artifact by filename. Common artifacts:contract.json— the immutable task contractsubmission.json— the original task submissionexecution_output.json— domain executor resultsverification_result.json— independent verification outputevaluation.json— slop scores and gate decisionpre_mortem.json— failure predictions (if pre-mortem routing was enabled)
CLI Fallback
autodialectics inspect <run_id>
Guidance
- Start with
inspect_runto get the overview, then drill into specific artifacts withread_artifact. - When summarizing a run, always include: run ID, domain, policy ID, decision, overall score, slop composite.
- If the run status is
runningorstarting, it may still be in progress — wait and re-inspect. - Compare
verification_resultagainstevaluationto understand whether the verifier and evaluator agree.
Arguments
If the user passes a run ID after /autodialectics:inspect, inspect that run and summarize the results.