speckit.gh-triage.triage

speckit.gh-triage.triage is a command for Claude Code from arrrrny/zuraffa. It costs 75 tokens per session (3,534 once invoked), scanned A, original, MIT.

A command that fetches open GitHub issues, labels each as a bug, feature, or chore, and sends it to the matching workflow. GitHub is a service for hosting code and tracking issues.

In plain words
What is it for?
Use it to triage a repository's open issues, apply the configured labels, and save bugs, chores, and feature requests in their designated locations.
Why use it?
It prevents different kinds of work from being saved or handled in the wrong place, especially when bugs and maintenance tasks should not become feature specifications.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Good fit Use it to triage a repository's open issues, apply the configured labels, and save bugs, chores, and feature requests in their designated locations.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/arrrrny/zuraffa/speckit.gh-triage.triage
Install

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.

Clone the repo
git clone --depth 1 https://github.com/arrrrny/zuraffa

Made for: Claude Code.

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 speckit.gh-triage.triage

README.md
[![agentmods](https://agentmods.dev/badge/commands/arrrrny/zuraffa/speckit.gh-triage.triage/github.svg)](https://agentmods.dev/commands/arrrrny/zuraffa/speckit.gh-triage.triage)
Your own site
<a href="https://agentmods.dev/commands/arrrrny/zuraffa/speckit.gh-triage.triage"><img src="https://agentmods.dev/badge/commands/arrrrny/zuraffa/speckit.gh-triage.triage/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for speckit.gh-triage.triage

Your own site · 80×15
<a href="https://agentmods.dev/commands/arrrrny/zuraffa/speckit.gh-triage.triage"><img src="https://agentmods.dev/badge/commands/arrrrny/zuraffa/speckit.gh-triage.triage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,534 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.00075 $0.03534
Opus 5 $0.00037 $0.01767
Sonnet 5 $0.00015 $0.00707
Haiku 4.5 $0.00007 $0.00353

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

Security

Grade A, and why

speckit.gh-triage.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.

.specify/extensions/gh-triage/commands/speckit.gh-triage.triage.md · 215 lines

How it starts

The opening of the file, as written. The whole thing — 215 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GitHub Triage

Batch-triage the open GitHub issues for a repository. For every issue this command: (1) fetches it, (2) classifies it as bug, feature, or chore, (3) labels it with the correct triage labels read directly from config (on by default), and (4) delegates to the correct extension command to save it in the right place:

  • bugdelegate to the bug extension: __SPECKIT_COMMAND_BUG_FETCH__ saves under .specify/bugs/<slug>/, then __SPECKIT_COMMAND_BUG_ASSESS__ for triage. Do NOT call __SPECKIT_COMMAND_SPECIFY__ for bugs.
  • choredelegate to the chore extension: __SPECKIT_COMMAND_CHORE_FETCH__ saves under .specify/chores/<slug>/, then __SPECKIT_COMMAND_CHORE_ASSESS__ for scoping. Do NOT call __SPECKIT_COMMAND_SPECIFY__ for chores.
  • feature → the core __SPECKIT_COMMAND_SPECIFY__ command for new features, which saves under specs/<n>-<slug>/.

A chore is maintenance work that is neither a bug (something broken) nor a feature (new user-facing capability): refactors, dependency bumps, asset/branding swaps, config cleanups, tooling changes. Chores stay in the Spec Kit ecosystem and are constitution-aware (the chore extension consults the project constitution when scoping them).

This extension requires the bug extension (fetch, assess, issue, fix, pr, test), the chore extension (fetch, assess, issue, implement, pr), and the core speckit.specify command. The deterministic fetch / classify / label phases are handled by a bundled engine so they are fast, repeatable, and testable; the routing phase is performed by you, following the steps below.

User Input

$ARGUMENTS

Accept any of:

  • --repo <owner>/<repo> — triage a specific repo (else repo: from config, else the current git remote).
  • --limit <N> — triage at most N open issues (0 / omitted = all).
  • --issue <N> — triage a single issue number instead of the open list.
  • --dry-run / --no-label — classify and report the labels that would be applied, but do not change any issue (safe preview).
  • A bare issue number or owner/repo#n is treated as --issue <n> / --repo.

Read the full file on GitHub · 215 lines

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 Changed · +6 lines 56bc352b3ec1
  2. 11d ago First seen · 209 lines · 75 tokens per session scan A 1c2eb68a6481

Subscribe to this mod's changes

speckit.gh-triage.triage is a command published in the GitHub repository arrrrny/zuraffa (5 stars, last pushed today), licensed MIT. It adds 75 tokens to every session and 3,534 once invoked, about $0.0004 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.