Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
git clone --depth 1 https://github.com/openshift-eng/ai-helpersWrote 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.
[](https://agentmods.dev/commands/openshift-eng/ai-helpers/triage)<a href="https://agentmods.dev/commands/openshift-eng/ai-helpers/triage"><img src="https://agentmods.dev/badge/commands/openshift-eng/ai-helpers/triage.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00021 | $0.02746 |
| Opus 5 | $0.00010 | $0.01373 |
| Sonnet 5 | $0.00004 | $0.00549 |
| Haiku 4.5 | $0.00002 | $0.00275 |
Grade A, and why
triage scanned grade A with 1 finding 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s -u "$JIRA_USER:$JIRA_API_TOKEN" \ How it starts
The opening of the file, as written. The whole thing — 225 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Name
node-bug:triage
Synopsis
/node-bug:triage [--sub-team core|devices|kueue] [--sprint "OCP Node Core Sprint 42"] [--unassigned-only]
Description
Queries all open bugs in OCPBUGS for Node team components using the "Node Bugs" saved filter, classifies them into triage buckets (Release Blockers, Customer Escalations, Potential Blockers, Component Regressions, Untriaged), routes each bug to the correct sub-team, and suggests assignments based on current workload.
Designed for both interactive triage sessions and headless execution via claude --print.
Implementation
Phase 0: Setup and Argument Parsing
-
Parse Arguments
--sub-team core|devices|kueue: Filter results to one sub-team's components. Optional. Read sub-team component lists from the sub-teams table in shared/components.md rather than hardcoding names.core: all Node components not listed under another sub-teamdevices: components listed under DRA/Devices in the sub-teams tablekueue: components listed under Kueue in the sub-teams table
--sprint <name>: Filter to bugs in a specific sprint (e.g., "OCP Node Core Sprint 42"). Optional.--unassigned-only: Show only untriaged or unassigned bugs. Optional.
-
Validate Jira Credentials
Use the authentication chain from the jira reference:
JIRA_API_TOKEN="${JIRA_API_TOKEN:-$(security find-generic-password -s "JIRA_API_TOKEN" -w 2>/dev/null || secret-tool lookup service redhat key JIRA_API_TOKEN 2>/dev/null)}" JIRA_USER="${JIRA_EMAIL:-$(security find-generic-password -s "JIRA_API_TOKEN" -g 2>&1 | grep acct | sed 's/.*="//;s/"//')}" : "${JIRA_USER:=$(git config user.email)}" [[ "$JIRA_USER" != *@* ]] && JIRA_USER="${JIRA_USER}@redhat.com"Exit with error if
JIRA_API_TOKENis empty after the chain. -
Create work directory:
mkdir -p .work/node-bug/triage-$(date +%Y-%m-%d)
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.
- 2d ago First seen · 225 lines · 21 tokens per session scan A 7d93b0ef1175
triage is a command published in the GitHub repository openshift-eng/ai-helpers (116 stars, last pushed 2d ago), licensed Apache-2.0. It adds 21 tokens to every session and 2,746 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other commands, from other repositories
bug-report
Draft a bug report issue for lean4-skills.
speckit.companion.doctor
Report on a spec's run health — unfinished steps, unjournaled tasks, step bleed, drift you can judge, a step that closed having verified nothing, a step that closed without the file it promised, and why completion did not land (read-only, retroactive, never halts).
harvest-errors
Analyze the latest test262 run results, cross-reference with existing issues, and create new issues for unaddressed error patterns.
postmortem
Deliver a structured post-mortem after incidents, mistakes, or stuck sessions. Use when the user requests a structured post-mortem after incidents, mistakes, or stuck sessions.
diagnostic
Command "diagnostic" from datacore-one/datacore, covering diagnostic, command context, when to reference dip-0002, quick reference and agents this command invokes.
bug-report
Converts a raw bug report from production into a structured, severity-classified item and routes it to the right next step.