triage

triage is a command for Claude Code from robzilla1738/roberts-skills. It costs 20 tokens per session (297 once invoked), scanned A, original, MIT.

A command for assessing suspected bugs or collections of findings by evidence, impact, severity, and confidence. It can create a minimal reproduction, which is the smallest example that demonstrates the problem.

In plain words
What is it for?
It is for ranking findings, reproducing important bugs, filtering false positives, and producing standard reports without changing product code.
Why use it?
It separates confirmed problems from guesses and gives serious findings a reproducible basis for action.

Command for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT} variable.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the bughunt-suite plugin — 3 skills, 4 commands shipped together

Good fit It is for ranking findings, reproducing important bugs, filtering false positives, and producing standard reports without changing product code.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add robzilla1738/roberts-skills
Claude Code
/plugin install bughunt-suite

Made for: Claude Code.

Or install bughunt-suite, the plugin that ships this one along with the rest of its 3 skills, 4 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for triage

README.md
[![agentmods](https://agentmods.dev/badge/commands/robzilla1738/roberts-skills/triage.svg)](https://agentmods.dev/commands/robzilla1738/roberts-skills/triage)
Your own site
<a href="https://agentmods.dev/commands/robzilla1738/roberts-skills/triage"><img src="https://agentmods.dev/badge/commands/robzilla1738/roberts-skills/triage.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 297 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00020 $0.00297
Opus 5 $0.00010 $0.00148
Sonnet 5 $0.00004 $0.00059
Haiku 4.5 $0.00002 $0.00030

Measured 7d ago against content hash 99822e4d7a76, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

triage scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/bughunt-suite/commands/triage.md · 16 lines

What it actually says

Triage: $ARGUMENTS

Load and follow the triage skill at ${CLAUDE_PLUGIN_ROOT}/skills/triage/SKILL.md:

  • Demand evidence (location, trace, trigger, impact) — anything without it is a question, not a finding.
  • Assign severity (Critical/High/Medium/Low) × confidence (Confirmed/Probable/Speculative), scoring non-security findings against the impact rubric (dx/ux/performance/data-integrity/supply-chain), not just a security frame.
  • For Critical/High items, build a minimal reproduction or failing test (cheapest first).
  • Aggressively filter false positives; quarantine speculative items.
  • Emit the standard finding schema / report layout. If you have findings as JSON (or a .bughunt/findings.json), pipe them through python3 ${CLAUDE_PLUGIN_ROOT}/skills/bughunt/scripts/bughunt.py merge then render to get the deduped, baseline-diffed markdown/HTML/SARIF report — see tooling.md.

Report-only — assess and prove, don't fix. If $ARGUMENTS is empty, ask for the bug or findings to triage.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 16 lines · 20 tokens per session scan A 99822e4d7a76

Subscribe to this mod's changes

triage is a command published in the GitHub repository robzilla1738/roberts-skills (5 stars, last pushed 3mo ago), licensed MIT. It adds 20 tokens to every session and 297 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other commands, from other repositories

fix-issues

Diagnose, reproduce, then fix reproducible open GitHub issues in parallel: one clean worktree/issue; symlink build artifacts to avoid rebuilds.

can1357/oh-my-pi · 0 tokens

maintainer-review-error-handling

Review the PR for error-handling correctness — surfaced errors, no silent swallows, consistent error patterns (Pi-tuned).

coleam00/Archon · 25 tokens

investigate

Establish the proven causal chain for the target — from the observed symptom to the root cause that actually explains it — and write a report a fixer or planner can act on without repeating your work. You change nothing and fix nothing: the repository must be exactly as you found it when you finish. No one watches the…

coleam00/Archon · 0 tokens

review-errors

Find one defect: a real failure crosses the changed code and becomes indistinguishable from success to the caller, operator, or user who must react. Not every error needs logging; recovery is correct when the contract permits it and the right owner can still observe the outcome. Read-only: never modify files, commit…

coleam00/Archon · 0 tokens

error-flow

Design an error flow end to end — prevention, detection, messaging, and recovery paths.

Owl-Listener/designer-skills · 18 tokens

ux-fix

Opt-in fix loop. Reads the latest report from .ux/, validates working tree, and applies findings as atomic commits via the right sub-agents. Triggers on "fix the findings", "apply the fixes", or "run the fix loop". Use when applying findings from a previous audit / copy / a11y / motion / polish report, the user says…

Laith0003/ux-skill · 129 tokens