ccboard: Skill for Claude Code

.claude/skills/issue-triage/SKILL.md

issue-triage is a skill for Claude Code from FlorianBruniaux/ccboard. It costs 0 tokens per session (3,148 once invoked), scanned A, original, MIT.

A workflow for reviewing and sorting GitHub issues, which are tracked reports or tasks in a software repository. It gathers repository and issue details, analyzes them, and can prepare comments after approval.

In plain words
What is it for?
Auditing open issues, selecting individual issues or groups, performing deeper analysis when requested, and posting approved comments in English.
Why use it?
It turns a large or aging list of open issues into a prioritized action view and checks that the repository and GitHub access are ready first.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool.

This is FlorianBruniaux/ccboard's own configuration. It tells Claude Code how to work on ccboard itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ccboard configures →

Part of the ccboard plugin — 14 skills, 2 commands, 10 agents, 4 hooks, 2 MCP servers shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to FlorianBruniaux/ccboard. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/FlorianBruniaux/ccboard/main/.claude/skills/issue-triage/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/FlorianBruniaux/ccboard

Made for: Claude Code.

Or install ccboard, the plugin that ships this one along with the rest of its 14 skills, 2 commands, 10 agents, 4 hooks, 2 MCP servers.

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/florianbruniaux/ccboard/issue-triage/github.svg)](https://agentmods.dev/skills/florianbruniaux/ccboard/issue-triage)
Your own site
<a href="https://agentmods.dev/skills/florianbruniaux/ccboard/issue-triage"><img src="https://agentmods.dev/badge/skills/florianbruniaux/ccboard/issue-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 issue-triage

Your own site · 80×15
<a href="https://agentmods.dev/skills/florianbruniaux/ccboard/issue-triage"><img src="https://agentmods.dev/badge/skills/florianbruniaux/ccboard/issue-triage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,148 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00000 $0.03148
Opus 5 $0.00000 $0.01574
Sonnet 5 $0.00000 $0.00630
Haiku 4.5 $0.00000 $0.00315

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

Security

Grade A, and why

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

- Utiliser `gh` CLI (pas `curl` GitHub API) sauf pour la liste des collaborateurs
.claude/skills/issue-triage/SKILL.md · 352 lines

How it starts

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

Issue Triage

Quand utiliser

Skill Usage Output
/issue-triage Trier, analyser, commenter les issues Tableaux d'action + deep analysis + commentaires postés

Declencheurs :

  • Manuellement : /issue-triage ou /issue-triage all ou /issue-triage 42 57
  • Proactivement : quand >10 issues ouvertes sans triage, ou issue stale >30j detectee

Langue

  • Verifier l'argument passe au skill
  • Si en ou english -> tableaux et resume en anglais
  • Si fr, french, ou pas d'argument -> francais (defaut)
  • Note : les commentaires GitHub (Phase 3) restent TOUJOURS en anglais (audience internationale)

Workflow en 3 phases : audit automatique -> deep analysis opt-in -> commentaires avec validation obligatoire.

Preconditions

git rev-parse --is-inside-work-tree
gh auth status

Si l'un echoue, stop et expliquer ce qui manque.


Phase 1 -- Audit (toujours executee)

Data Gathering (commandes en parallele)

# Identite du repo
gh repo view --json nameWithOwner -q .nameWithOwner

# Issues ouvertes avec metadonnees completes
gh issue list --state open --limit 100 \
  --json number,title,author,createdAt,updatedAt,labels,assignees,body,comments

# PRs ouvertes (pour cross-reference)
gh pr list --state open --limit 50 --json number,title,body

# Issues fermees recemment (pour detection doublons)
gh issue list --state closed --limit 20 \
  --json number,title,labels,closedAt

# Collaborateurs (pour proteger les issues des mainteneurs)
gh api "repos/{owner}/{repo}/collaborators" --jq '.[].login'

Fallback collaborateurs : si gh api .../collaborators echoue (403/404) :

gh pr list --state merged --limit 10 --json author --jq '.[].author.login' | sort -u

Si toujours ambigu, demander a l'utilisateur via AskUserQuestion.

Note : author est un objet {login: "..."} -- toujours extraire .author.login.

Analyse -- 6 dimensions

1. Categorisation (labels existants > inference titre/body) :

  • Bug : mots-cles crash, error, fail, broken, regression, wrong, unexpected, panic, 404, 404
  • Feature : add, implement, support, new, feat:
  • Enhancement : improve, optimize, better, enhance, refactor
  • Question/Support : how, why, help, unclear, docs, documentation
  • Duplicate Candidate : voir dimension 3 ci-dessous

Read the full file on GitHub · 352 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. 9d ago First seen · 352 lines · 0 tokens per session scan A 9eeede9b41a4

Subscribe to this mod's changes

issue-triage is a skill published in the GitHub repository FlorianBruniaux/ccboard (97 stars, last pushed 7d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,148 tokens. 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-08-30.