issue

issue is a skill for Claude Code from bengous/claude-code-plugins. It costs 60 tokens per session (860 once invoked), scanned A, original, MIT.

A guide for writing a GitHub issue as a self-contained request that another coding agent can understand. It gathers evidence from the code and ends with observable acceptance criteria.

In plain words
What is it for?
It helps create or rewrite issues, locate relevant code, check for duplicates, record constraints, and describe how completion can be verified.
Why use it?
It prevents issues from becoming vague requests that require the next person to rediscover the problem. Code locations and repository rules give the reader enough context to investigate it.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md; mentions AGENTS.md.

Part of the git-tools plugin — 6 skills, 2 commands shipped together

Good fit It helps create or rewrite issues, locate relevant code, check for duplicates, record constraints, and describe how completion can be verified.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bengous/claude-code-plugins/issue
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.

Any agent
npx skills add bengous/claude-code-plugins --skill issue
Clone the repo
git clone --depth 1 https://github.com/bengous/claude-code-plugins

Made for: Claude Code.

Or install git-tools, the plugin that ships this one along with the rest of its 6 skills, 2 commands.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/bengous/claude-code-plugins/issue.svg)](https://agentmods.dev/skills/bengous/claude-code-plugins/issue)
Your own site
<a href="https://agentmods.dev/skills/bengous/claude-code-plugins/issue"><img src="https://agentmods.dev/badge/skills/bengous/claude-code-plugins/issue.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 860 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.00060 $0.00860
Opus 5 $0.00030 $0.00430
Sonnet 5 $0.00012 $0.00172
Haiku 4.5 $0.00006 $0.00086

Measured 4d ago against content hash 074f6975ac01, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

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

git-tools/skills/issue/SKILL.md · 66 lines

How it starts

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

Issue

An issue is a prompt with context. Its reader is a different agent, in a fresh session, with no access to this conversation. The issue proves that the problem exists and where; it does not prescribe the solution. The reader plans.

Input

$ARGUMENTS

  • Starts with a number: rewrite that issue. Fetch it with gh issue view <n> --json title,body,labels,url, keep the facts that still hold, drop the rest.
  • Anything else: the request for a new issue.
  • Empty: ask one question, "What is wrong, or what do you want?", then continue.

Ask nothing else unless the request cannot be located in the code at all.

Protocol

  1. Project constraints. Read the repo's AGENTS.md or CLAUDE.md for two things only: the validation commands, and the boundaries the reader must respect. They go in Done when and Hints.

  2. Evidence. Locate the code the request touches. Read it before citing it. Each fact gets an anchor the reader can jump to: path:line plus the symbol name, or a commit hash. Run git log --oneline -10 -- <file> when history explains the current state. Search once for a duplicate: gh issue list --search "<keywords>" --state all --limit 10; link a match in Evidence and say so to the user.

  3. Body. Fill the template below. Size follows the problem: a small bug fits in fifteen lines.

  4. Confirm. Show the title and the full body. Ask one question: create (or update), or change something. Suggest labels only from gh label list.

  5. Publish. Write the body to a temporary file outside the repo, then:

    gh issue create --title "<title>" --body-file <tmp> --label "<a>,<b>"
    gh issue edit <n> --body-file <tmp>
    

    --body-file keeps the markdown intact; inline --body breaks on backticks. Report the URL.

Template

## Problem

## Evidence

## Hints

## Done when

## Out of scope

Problem. What is observed and what is wanted, one to three sentences. No cause, no solution.

Evidence. One bullet per fact, each with its anchor. Quote the exact line when it is short. Include the reproduction command when one exists. Link related issues, PRs, and commits here; there is no separate "Related" section.

Read the full file on GitHub · 66 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. 4d ago First seen · 66 lines · 60 tokens per session scan A 074f6975ac01

Subscribe to this mod's changes

issue is a skill published in the GitHub repository bengous/claude-code-plugins (4 stars, last pushed yesterday), licensed MIT. It adds 60 tokens to every session and 860 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

batch

Dispatch a night's batch of Todo tickets — one worktree and one pull request each — and leave a morning summary. Run explicitly; never inferred.

mikestankavich/claude-ship-workflow · 31 tokens

prep

Spec a ticket before it is dispatched. Brainstorms it, decides everything it can recommend an answer for, asks a present human about the little that survives, and leaves the spec, the decisions and anything still open as one ticket comment. No worktree, no branch, no pull request, and the ticket stays where it was.

mikestankavich/claude-ship-workflow · 68 tokens

work

Dispatch a tracker ticket into an isolated worktree and drive it autonomously to an open pull request, then stop for review. Pass interactive to brainstorm the ticket with a human before planning it. Use when asked to work a ticket end-to-end.

mikestankavich/claude-ship-workflow · 53 tokens

daily-working

End-to-end pipeline: pull a task from Redmine by ID, sanity-check and impact-assess it against the codebase before touching anything, implement it with the Claude CLI, verify the result in a real browser via the Claude Chrome extension (claude-in-chrome), and keep the Redmine ticket in sync throughout (in-progress…

tms-tungnguyen3/daily_working · 81 tokens

release

Verify, sweep docs, cut a version — then hand the release sequence back.

hamr0/agentic-toolkit · 17 tokens

timeline-creator

Create HTML timelines and project roadmaps with Gantt charts, milestones, phase groupings, and progress indicators. Use when users request timelines, roadmaps, Gantt charts, project schedules, or milestone visualizations.

mhattingpete/claude-skills-marketplace · 47 tokens