issue-work

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

GitHub issue-work guide for taking an existing task from a repository and carrying it through implementation. It checks related issues, pull requests, branches, milestones, and recent code changes before work begins.

In plain words
What is it for?
Use it to implement, fix, take over, or close a GitHub issue in the checked-out repository.
Why use it?
It prevents duplicate work and helps determine whether an unfinished pull request can be continued. It also checks that the task fits the repository's current milestone and context.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to implement, fix, take over, or close a GitHub issue in the checked-out repository.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/alunduil/alunduil-chezmoi/issue-work
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-work
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-work

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/alunduil/alunduil-chezmoi/issue-work"><img src="https://agentmods.dev/badge/skills/alunduil/alunduil-chezmoi/issue-work.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,049 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.00042 $0.01049
Opus 5 $0.00021 $0.00524
Sonnet 5 $0.00008 $0.00210
Haiku 4.5 $0.00004 $0.00105

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

Security

Grade A, and why

issue-work 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-work/SKILL.md · 81 lines

How it starts

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

Issue work

Inspect

mcp__github__issue_read (method: get) returns closed_by_pull_requests: the PRs declaring Closes #N, fork PRs included, each resolved to OPEN/CLOSED/MERGED. An open one is a takeover candidate. references holds at most five, so a total_count above that means the list is partial. The same call carries the body, milestone, and labels.

Comments need a second call, method: get_comments.

Unlinked work takes mcp__github__search_pull_requests, one call per field — joining them with OR drops a clause and reports no match:

  • repo:<owner>/<repo> <N> in:body
  • repo:<owner>/<repo> <keywords> in:title,body

Ask for fields: [number, title, state, pull_request]. state reads closed on a merged PR, so pull_request.merged_at is what separates merged (scope already covered) from abandoned.

Two lookups have no MCP equivalent:

gh issue develop <N> --list   # develop-flow branches

# Milestone gate: the issue's milestone vs the current (lowest-version open) one
gh api repos/:owner/:repo/milestones --jq '.[].title' | sort -V | head -1

For recent commits in the area:

  • Path-scoped: git log --oneline -- <path> over files the issue names.
  • Otherwise: git log --oneline --since=<issue createdAt> over the likely subsystem.

Reproduce (bug-typed issues)

Attempt repro on the default branch before writing the fix:

  • A confirmed repro becomes the failing test the fix has to flip.
  • A failed repro is itself a staleness signal — issue may be obsolete.
  • If repro is hard because the harness for this code path doesn't exist, surface it. Tiny harness lifts can land inline; anything bigger files separately and waits for direction.

Staleness signals

Any one fires a go/no-go before writing code:

  • A commit since the issue was filed already implements or supersedes the change.
  • A linked PR is already merged — the issue should close, not be re-implemented.
  • An unlinked merged PR covers the same scope (keyword/path search). Filers don't always cross-reference; check before duplicating work.
  • The issue assumes tooling/files that have since been replaced or removed.
  • The motivating dependency resolved differently (e.g. "waiting on upstream X" — X shipped via a different mechanism).
  • A maintainer comment narrows or vetoes the original scope and the body wasn't updated.
  • The issue is parked on a later milestone (not the current, lowest-version open one). Deferred work — don't pull it forward. No milestone or the current milestone is fine to work.
  • Repro fails on the default branch.
  • The issue lacks enough detail to start without guessing.

Read the full file on GitHub · 81 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 · 81 lines · 42 tokens per session scan A 587a5526e80c

Subscribe to this mod's changes

issue-work is a skill published in the GitHub repository alunduil/alunduil-chezmoi (2 stars, last pushed today), licensed 0BSD. It adds 42 tokens to every session and 1,049 once invoked, about $0.0002 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.