fix-issue

fix-issue is a skill for Claude Code from dlupiak/claude-session-dashboard. It costs 12 tokens per session (307 once invoked), scanned A, original, MIT.

A workflow for fixing a GitHub issue from investigation through testing and pull-request creation. A GitHub issue is a tracked bug or task, and a pull request is a proposed code change for review.

In plain words
What is it for?
Use it to inspect an issue, create a fix branch, implement and test the change, run quality checks, and open a pull request.
Why use it?
It provides a repeatable path from understanding the problem to verifying the fix and preparing it for review.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

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/dlupiak/claude-session-dashboard/fix-issue
Any agent
npx skills add dlupiak/claude-session-dashboard --skill fix-issue
Clone the repo
git clone --depth 1 https://github.com/dlupiak/claude-session-dashboard

Made for: Claude Code.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/dlupiak/claude-session-dashboard/fix-issue.svg)](https://agentmods.dev/skills/dlupiak/claude-session-dashboard/fix-issue)
Your own site
<a href="https://agentmods.dev/skills/dlupiak/claude-session-dashboard/fix-issue"><img src="https://agentmods.dev/badge/skills/dlupiak/claude-session-dashboard/fix-issue.svg" alt="Measured on agentmods" height="20"></a>
Per session 12 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 307 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.1 $0.00012 $0.00307
Opus 5 $0.00006 $0.00153
Sonnet 5 $0.00002 $0.00061
Haiku 4.5 $0.00001 $0.00031

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

Security

Grade A, and why

fix-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.

.claude/skills/fix-issue/SKILL.md · 45 lines

What it actually says

Fix GitHub Issue Workflow

You are fixing GitHub issue #$ARGUMENTS.number.

Steps

1. Understand

  • Fetch issue details: gh issue view $ARGUMENTS.number
  • Read related code and understand the root cause
  • If the issue is unclear, ask the user for clarification

2. Branch

  • Create a fix branch: feature/fix-$ARGUMENTS.number
  • git checkout -b feature/fix-$ARGUMENTS.number

3. Fix

  • If the root cause is unclear, use superpowers:systematic-debugging before writing any fix
  • Implement the minimal fix
  • Add or update tests to cover the bug
  • Run typecheck + lint after changes

4. Verify

  • Use superpowers:verification-before-completion — run commands and read actual output before claiming fixed
  • Run the full quality suite:
    cd apps/web
    npm run typecheck
    npm run lint
    npm run test
    
  • All must pass

5. PR

  • Commit with message: fix: <description> (closes #$ARGUMENTS.number)
  • Push and create PR: gh pr create
  • Link the issue in the PR body
  • Report the PR URL
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 · 45 lines · 12 tokens per session scan A c02917e631eb

Subscribe to this mod's changes

fix-issue is a skill published in the GitHub repository dlupiak/claude-session-dashboard (67 stars, last pushed 2d ago), licensed MIT. It adds 12 tokens to every session and 307 once invoked, about $0.0001 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-01.

Related

Other skills, from other repositories