DebugBundle
Reference

CLI reference

The CLI reference is grounded in the shipped command surface, with the complete command index published under the generated reference subtree.

Representative commands

debugbundle setup --non-interactive
debugbundle incidents --json
debugbundle doctor --check-relay

Incident hygiene

Treat active incidents as actionable work. Active means open or regressed. Once a fix is verified, or once a smoke, dogfood, or verification incident has served its purpose, resolve it so the needs-attention queue stays meaningful.

Smoke-test cleanup recipe

Review active incidents and resolve the intentionally generated ones:

debugbundle incidents --status active --json
debugbundle resolve <incident-id> [incident-id ...]
debugbundle incidents --status active --json

If you want a title-based batch cleanup and already have jq available:

debugbundle incidents --status active --json \
  | jq -r '.incidents[] | select(.title | test("smoke test|dogfood|verification|synthetic"; "i")) | .incident_id' \
  | xargs debugbundle resolve

Open the generated CLI command reference.

On this page