issue-triage

issue-triage is a skill for Claude Code, Codex from d-oit/rust-2026-template. It costs 102 tokens per session (2,023 once invoked), scanned A, original, MIT.

An issue-management workflow for GitHub and GitLab, the code-hosting services where teams track bugs and tasks. It reads open issues, groups them by type and effort, and plans their implementation together.

In plain words
What is it for?
Use it to address all open issues, batch similar fixes, decide implementation order, and prepare one combined code change for review.
Why use it?
It removes the need to review and organize many open issues one by one. It also coordinates related changes into a single pull request or merge request, with CI checks.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/d-oit/rust-2026-template/issue-triage
Any agent
npx skills add d-oit/rust-2026-template --skill issue-triage
Clone the repo
git clone --depth 1 https://github.com/d-oit/rust-2026-template

Made for: Claude Code, Codex.

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 issue-triage

README.md
[![agentmods](https://agentmods.dev/badge/skills/d-oit/rust-2026-template/issue-triage.svg)](https://agentmods.dev/skills/d-oit/rust-2026-template/issue-triage)
Your own site
<a href="https://agentmods.dev/skills/d-oit/rust-2026-template/issue-triage"><img src="https://agentmods.dev/badge/skills/d-oit/rust-2026-template/issue-triage.svg" alt="Measured on agentmods" height="20"></a>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,023 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00102 $0.02023
Opus 5 $0.00051 $0.01012
Sonnet 5 $0.00020 $0.00405
Haiku 4.5 $0.00010 $0.00202

Measured 3d ago against content hash cbb454fcdb6b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

issue-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 3d 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.

.agents/skills/issue-triage/SKILL.md · 234 lines

How it starts

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

Issue Triage & Batch Implementation Skill

When to Use

  • User asks for this skill's functionality

Reads all open issues, categorizes them, plans implementation order, and coordinates batch implementation in a single PR/MR. Supports GitHub and GitLab.

Overview

Workflow that orchestrates issue discovery → categorization → implementation planning → batch execution → CI verification → PR/MR merge.

Single PR/MR policy: All issues implemented in one PR/MR unless user specifies otherwise.

Exception: When issues have clear dependency layers (e.g., models → API → frontend), stacked PRs via gh stack may be used instead. See stacked-prs skill. Only when explicitly requested and repository is on GitHub.

Platform Detection

Auto-detect from git remote:

REMOTE=$(git remote get-url origin)
if echo "$REMOTE" | grep -qi "github"; then
  PLATFORM="github"; CLI="gh"
elif echo "$REMOTE" | grep -qi "gitlab"; then
  PLATFORM="gitlab"; CLI="glab"
else
  echo "Unknown platform - set --platform github|gitlab"
fi

CLI Command Mapping

Action GitHub (gh) GitLab (glab)
List issues gh issue list --state open glab issue list --state opened
Read issue gh issue view 123 glab issue view 123
Create PR/MR gh pr create --title "..." glab mr create --title "..."
Check CI gh pr checks glab ci status
Merge gh pr merge 123 --squash glab mr merge 123 --squash
Close issue gh issue close 123 glab issue close 123

Arguments

Argument Description Default
--repo OWNER/REPO Repository auto-detect from git remote
--platform github|gitlab Force platform auto-detect
--state open|closed|all Issue filter open (GitHub) / opened (GitLab)
--limit N Max issues to process 50
--batch-size N Issues per PR/MR all
--dry-run Plan only, no implementation false
--skip-merge Create PR/MR but don't merge false

Read the full file on GitHub · 234 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 3d ago First seen · 234 lines · 102 tokens per session scan A cbb454fcdb6b

Subscribe to this mod's changes

issue-triage is a skill published in the GitHub repository d-oit/rust-2026-template (10 stars, last pushed 4d ago), licensed MIT. It adds 102 tokens to every session and 2,023 once invoked, about $0.0005 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 skills, from other repositories

2slides-ppt-generator

AI-powered presentation generation via the 2slides API — create slides from text, match a reference image style, summarize documents into decks, add AI voice narration, and export pages/audio. Use f.

ranbot-ai/awesome-skills · 45 tokens

ad-creative

Create, iterate, and scale paid ad creative for Google Ads, Meta, LinkedIn, TikTok, and similar platforms. Use when generating headlines, descriptions, primary text, or large sets of ad variations for.

ranbot-ai/awesome-skills · 46 tokens

agent-creator

Create custom AI subagents with proper plugin structure, persona generation, and companion routing skills.

ranbot-ai/awesome-skills · 22 tokens

atb-ops-to-aclnn-migration-workflow

ATB OPS→ACLNN 迁移标准化工作流主模板。整合前置学习、设计文档生成、CSV用例设计、 实际迁移、编译验证、测试验证全流程,提供明确的阶段 Gates 和用户确认机制。.

Ascend/agent-skills · 69 tokens

active-directory-attacks

Provide comprehensive techniques for attacking Microsoft Active Directory environments. Covers reconnaissance, credential harvesting, Kerberos attacks, lateral movement, privilege escalation, and doma.

ranbot-ai/awesome-skills · 33 tokens

external-gitcode-ascend-atb-ops-to-aclnn-migration-workflow

ATB OPS→ACLNN 迁移标准化工作流主模板。整合前置学习、设计文档生成、CSV用例设计、 实际迁移、编译验证、测试验证全流程,提供明确的阶段 Gates 和用户确认机制。.

ascend-ai-coding/awesome-ascend-skills · 76 tokens