ワンクリックで
rounds-list
List error signatures in the rounds database, optionally filtered by status
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
List error signatures in the rounds database, optionally filtered by status
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
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
Mute a rounds error signature to suppress further notifications
| name | rounds-list |
| description | List error signatures in the rounds database, optionally filtered by status |
| user_invocable | true |
| args | ["status?"] |
List all error signatures tracked by rounds, with optional status filter.
/rounds-list [STATUS]
STATUS (optional): new, investigating, diagnosed, resolved, or muted.
Omit to list all signatures.
Without a status filter:
cd /workspace/rounds && python -m rounds.main cli-run list
With a status filter, substituting $ARGUMENTS for the status value:
cd /workspace/rounds && python -m rounds.main cli-run list '{"status": "$ARGUMENTS"}'
If $ARGUMENTS is empty, run without the JSON argument.
The command outputs a JSON object. Parse it and present the results as a table:
On success ("status": "success"):
Render signatures as a Markdown table with columns:
| ID (first 8 chars) | Service | Error Type | Status | Occurrences | Last Seen |
If the list is empty, say "No signatures found" (with the filter if one was used).
On error ("status": "error"):
Show the message field.
/rounds-list
/rounds-list new
/rounds-list diagnosed