issue-create

issue-create is a skill for Claude Code, Codex from alunduil/alunduil-chezmoi. It costs 67 tokens per session (904 once invoked), scanned A, original, 0BSD.

GitHub issue-creation guide for filing a new task or problem in a repository. It searches existing issues first, checks the repository's templates and conventions, and prepares the title, description, labels, and milestone.

In plain words
What is it for?
Use it to report bugs, request features, create tracking tasks, or open an issue that matches the repository's established style.
Why use it?
It reduces duplicate reports and keeps new issues consistent with the project's existing workflow. It can also update or reopen a related issue when filing a new one would be misleading.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions CLAUDE.md.

Good fit Use it to report bugs, request features, create tracking tasks, or open an issue that matches the repository's established style.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alunduil/alunduil-chezmoi/issue-create
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 alunduil/alunduil-chezmoi --skill issue-create
Clone the repo
git clone --depth 1 https://github.com/alunduil/alunduil-chezmoi

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-create

README.md
[![agentmods](https://agentmods.dev/badge/skills/alunduil/alunduil-chezmoi/issue-create/github.svg)](https://agentmods.dev/skills/alunduil/alunduil-chezmoi/issue-create)
Your own site
<a href="https://agentmods.dev/skills/alunduil/alunduil-chezmoi/issue-create"><img src="https://agentmods.dev/badge/skills/alunduil/alunduil-chezmoi/issue-create/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-create

Your own site · 80×15
<a href="https://agentmods.dev/skills/alunduil/alunduil-chezmoi/issue-create"><img src="https://agentmods.dev/badge/skills/alunduil/alunduil-chezmoi/issue-create.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 904 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.00067 $0.00904
Opus 5 $0.00034 $0.00452
Sonnet 5 $0.00013 $0.00181
Haiku 4.5 $0.00007 $0.00090

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

Security

Grade A, and why

issue-create 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 11d 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.

dot_claude/skills/issue-create/SKILL.md · 94 lines

How it starts

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

Issue create

Don't file first. Search and inspect before composing.

Dedup pre-flight

Open and closed — omitting --state searches both:

gh search issues "<keywords>" --repo <owner>/<repo> --limit 20

Read near-matches with gh api repos/:owner/:repo/issues/<N>. Decide:

  • Same outcome already open — update the existing one (mcp__github__issue_write with method: update for the body, mcp__github__add_issue_comment for new context). Don't file a new one.
  • Same outcome closed for stale reasons — reopen it (mcp__github__issue_write, method: update, state: open) with a comment citing what changed. Don't file a new one.
  • Adjacent (same area, different angle) — file new, cite the existing in Additional context; consider an issue-links edge.
  • Partially covers — narrow the new issue to the uncovered slice; cross-reference both ways.
  • Nothing close — file new.

If torn, surface the call rather than silently pick.

Detect repo conventions

ls .github/ISSUE_TEMPLATE/ 2>/dev/null

# REST reads — see ~/.claude/CLAUDE.md "GitHub API budget".
gh api 'repos/:owner/:repo/labels?per_page=100' --jq '.[].name'
gh api repos/:owner/:repo/milestones \
  --jq '.[] | "\(.number)\t\(.title)"'   # open only — can't assign a closed one
gh api 'repos/:owner/:repo/issues?per_page=5&state=all' \
  --jq '.[].title'                       # skim recent house style

Template present → read it and fill its fields into the body. Templates encode the project's required fields; don't bypass with a freeform body.

Standard structure (no template)

  • Title — statement true when done. Active voice, outcome. "Profile writes persist across API restarts in Firestore", not "Fix profile persistence".
  • Summary — 1-2 sentences. What this delivers.
  • Motivation — what problem, dependency, or opportunity drives it. Cite the trigger (PR review, incident, related issue).
  • Scope — concrete changes, specific enough to start without guessing. Bullets, not prose.
  • Acceptance criteria — measurable conditions, - [ ] task-list.
  • Additional context — links, screenshots, related issues, only when they help. Skip the section if empty.

Read the full file on GitHub · 94 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. 11d ago First seen · 94 lines · 67 tokens per session scan A aa76f878af42

Subscribe to this mod's changes

issue-create is a skill published in the GitHub repository alunduil/alunduil-chezmoi (2 stars, last pushed today), licensed 0BSD. It adds 67 tokens to every session and 904 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-08-31.