.claude/skills/rounds-list/SKILL.md
List error signatures in the rounds database, optionally filtered by status
npx skillsauth add tinkermonkey/rounds rounds-listInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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
testing
Run pytest with coverage and display results
devops
Mark a rounds error signature as resolved after a fix has been deployed
data-ai
Re-run LLM diagnosis for an existing rounds error signature
development
--- name: rounds-patterns description: Show common coding patterns: frozen dataclasses, async ports, immutable collections user_invocable: true args: generated: true generation_timestamp: 2026-02-13T22:09:52.359861Z generation_version: "2.0" source_project: rounds source_codebase_hash: a44338f108beaf54 --- # Rounds Coding Patterns Quick-reference skill for **rounds** project coding patterns and conventions. ## Usage ```bash /rounds-patterns ``` ## Purpose Displays the core coding patterns