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.
npx agentmods add commands/can1357/oh-my-pi/triagegit clone --depth 1 https://github.com/can1357/oh-my-piWhat 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 | $0.00000 | $0.01318 |
| Opus 5 | $0.00000 | $0.00659 |
| Sonnet 5 | $0.00000 | $0.00264 |
| Haiku 4.5 | $0.00000 | $0.00132 |
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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Triage Command
Classify/label newly opened GitHub issues missing labels.
Arguments
$ARGUMENTS: optional --days <n>; default 7. Triage only open issues created within this window.
Steps
1. Fetch
Parse $ARGUMENTS for --days (default 7).
# Build cutoff date (UTC) for "new" issues
CUTOFF_DATE="$(python - <<'PY'
from datetime import datetime, timedelta, timezone
print((datetime.now(timezone.utc) - timedelta(days=7)).strftime('%Y-%m-%d'))
PY
)"
# Fetch only newly created open issues (default 7-day window)
gh issue list --state open --search "created:>=${CUTOFF_DATE}" --json number,title,body,labels,comments,createdAt --limit 50
2. Candidates
Skip issues older than cutoff or labeled triaged. Of the rest, skip only if all applicable requirements hold:
- Exactly one primary:
bug|enhancement|question|proposal|documentation|invalid|duplicate. bug→ exactly oneprio:*.- Applicable functional scope → at least one:
agent|tool|tui|cli|prompting|sdk|auth|setup|ux|providers. - Provider-specific → matching
provider:*; platform-specific → matchingplatform:*.
3. Classification
For every candidate, read title, body, and all comments; comments may contain critical context. Labels below; primary exactly one, priority exactly one only for bug, functional all applicable. Provider/platform labels require explicit issue evidence.
Primary
bug: broken existing behavior—crash, error, regression, "doesn't work".enhancement: feature request/improvement to existing behavior.question: how-to, clarification, usage question.proposal: design/process proposal needing maintainer decision.documentation: missing, incorrect, outdated docs.invalid: spam, off-topic, not actionable.duplicate: clear duplicate; reference original in a comment.
Bug priority
prio:p0: critical blocker, data loss/security breakage, unusable workflow.prio:p1: high impact, common workflow broken, fix soon.prio:p2: medium impact, workaround exists, not blocking most users.prio:p3: low impact, edge case/minor issue.
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.
- yesterday First seen · 112 lines · 0 tokens per session scan A d460f7b290ad
triage is a command published in the GitHub repository can1357/oh-my-pi (28,439 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,318 tokens. 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-30.
Other commands, from other repositories
maintainer-standup
Synthesize the maintainer's morning standup brief from gathered git/PR/issue/state data.
create-command
Meta command creator - generates slash commands following established patterns.
execute
Execute an Archon implementation plan file.
handoff
Write a session handoff document for the next agent or session.
plan-feature
Create a comprehensive implementation plan for an Archon feature.
system-review
Analyze implementation against plan for process improvements.