smithery.ai

anviloop-diag-summarize

Summarize Anviloop diagnostics artifacts (meta/run_summary/watchdog/invariants/log tails) into a concise report. Use after downloading buildbox_diag artifacts or when triaging nightly failures.

First seen Apr 10, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,569 B
  • docs SUMMARY.md 224 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Anviloop Diag Summarize

Quick Start

pwsh -NoProfile -File C:\Dev\unity_clean\headlessrebuildtool\Polish\Ops\diag_summarize.ps1 -ResultDir C:\polish\queue\reports\_diag_downloads\21428962925\buildbox_diag_space4x_21428962925\results\result_... -OutPath C:\polish\queue\reports\diag_space4x_21428962925.md

What it does

  • Reads meta.json, out/run_summary.json, out/watchdog.json, out/invariants.json if present.
  • Extracts primary failure signature + key fields.
  • Emits a compact summary markdown.

Fallback (if script missing)

  1. Find the extracted diag folder.
  2. Inspect key JSONs:
Get-Content -Path <diag>\meta.json -TotalCount 200
Get-Content -Path <diag>\out\run_summary.json -TotalCount 200
Get-Content -Path <diag>\out\watchdog.json -TotalCount 200
Get-Content -Path <diag>\out\invariants.json -TotalCount 200
  1. Grab log tails if present:
Get-Content -Path <diag>\logs\player.log -Tail 200
Get-Content -Path <diag>\logs\stdout.log -Tail 200
Get-Content -Path <diag>\logs\stderr.log -Tail 200

Inputs

  • -DiagRoot should point at a result folder containing meta.json + out/ (e.g., .../buildboxdiag /results/result_).
  • -OutFile (markdown path for summary)

Resources

scripts/

  • diagsummarizewrapper.ps1