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. Artifacts by pipeline stage:submission.json— the original task submissioncontract.md— the immutable task contract (Markdown)evidence.json— gathered evidence bundle from the exploration stagedialectic.json— thesis/antithesis/synthesis from the dialectical plannerexecution.json— domain executor resultsverification.json— independent verification outputevaluation.json— slop scores and gate decisionsummary.md— human-readable run summarybenchmark_report.json— benchmark-specific metrics (only present for benchmark runs)
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.jsonagainstevaluation.jsonto understand whether the verifier and evaluator agree. - Read
dialectic.jsonto see how the planner resolved competing concerns (thesis vs antithesis).
Arguments
If the user passes a run ID after /autodialectics:inspect, inspect that run and summarize the results.