con un clic
rounds-resolve
Mark a rounds error signature as resolved after a fix has been deployed
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Mark a rounds error signature as resolved after a fix has been deployed
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Assess telemetry data — identifies distinct transaction types from an explore query and launches sub-agents to analyze each for instrumentation quality, code efficiency, usage correctness, and skill improvement opportunities
Print available rounds skills, project directory layout, and a brief overview of what rounds does
Exploratory querying of telemetry data — search logs by keyword/metadata, search spans by metadata, and build full transaction trees from trace IDs using the rounds adapter interfaces
Get full details for a single rounds error signature including diagnosis, recent events, and related signatures
Investigate a distributed trace by ID — fetches the full trace, reads source files, and explains the end-to-end code flow
List error signatures in the rounds database, optionally filtered by status
| name | rounds-resolve |
| description | Mark a rounds error signature as resolved after a fix has been deployed |
| user_invocable | true |
| args | ["signature_id","fix_description?"] |
Mark an error signature as resolved after a fix has been applied. Rounds will stop monitoring and diagnosing this signature until the error reappears.
/rounds-resolve SIGNATURE_ID [FIX_DESCRIPTION]
FIX_DESCRIPTION is optional free text describing what fix was applied.
Parse $ARGUMENTS: the first token is the signature ID; everything after it
(if any) is the fix description.
With a fix description:
cd /workspace/rounds && python -m rounds.main cli-run resolve '{"signature_id": "SIG_ID", "fix_applied": "FIX_DESCRIPTION"}'
Without a fix description:
cd /workspace/rounds && python -m rounds.main cli-run resolve '{"signature_id": "SIG_ID"}'
On success ("status": "success"):
Confirm: "Resolved signature SIGNATURE_ID" and include the fix description if
one was given.
On error ("status": "error"):
Show the message field.
/rounds-resolve 3f2a1b4c-8d9e-4f5a-b6c7-d8e9f0a1b2c3
/rounds-resolve 3f2a1b4c-8d9e-4f5a-b6c7-d8e9f0a1b2c3 deployed null-check fix in PR #412