yds-gh-issue-resolver

yds-gh-issue-resolver is a skill for Claude Code, Codex from ymd38/dev-skills. It costs 143 tokens per session (2,978 once invoked), scanned A, original, MIT.

A workflow for implementing a GitHub Issue after an agreed response plan has been posted on it. It creates a branch, applies the plan, runs tests, and opens a pull request for review.

In plain words
What is it for?
Use it to resolve planned GitHub Issues, verify the resulting fix with tests, and submit the work as a pull request.
Why use it?
It keeps implementation tied to an approved plan and provides checks before the change is proposed for merging.

Skill for Claude CodeCodex

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

Good fit Use it to resolve planned GitHub Issues, verify the resulting fix with tests, and submit the work as a pull request.

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

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 yds-gh-issue-resolver

README.md
[![agentmods](https://agentmods.dev/badge/skills/ymd38/dev-skills/yds-gh-issue-resolver.svg)](https://agentmods.dev/skills/ymd38/dev-skills/yds-gh-issue-resolver)
Your own site
<a href="https://agentmods.dev/skills/ymd38/dev-skills/yds-gh-issue-resolver"><img src="https://agentmods.dev/badge/skills/ymd38/dev-skills/yds-gh-issue-resolver.svg" alt="Measured on agentmods" height="20"></a>
Per session 143 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,978 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.00143 $0.02978
Opus 5 $0.00072 $0.01489
Sonnet 5 $0.00029 $0.00596
Haiku 4.5 $0.00014 $0.00298

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

Security

Grade A, and why

yds-gh-issue-resolver 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 7d 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.

skills/yds-gh-issue-resolver/SKILL.md · 294 lines

How it starts

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

GitHub Issue Resolver

Overview

Implement and verify a fix for a GitHub Issue, starting from the agreed response plan that yds-gh-issue-planner has already posted as a comment on the issue. This skill creates a feature branch, uses a git worktree as a temporary implementation sandbox, runs tests, opens a Pull Request, and verifies the fix against the original issue.

Prerequisites

  • The target issue must have an agreed plan comment previously posted by yds-gh-issue-planner, identified by the HTML marker <!-- gh-issue-planner:agreed-plan --> near the end of the comment body.
  • If no such comment exists, stop and direct the user to run yds-gh-issue-planner first. Do not improvise an unagreed plan in this skill.

Workflow

Step 1: Fetch the Issue and Agreed Plan

Run the following command (replace <id> with the issue number):

gh issue view <id> --json number,title,body,labels,state,url,comments

From the comments array:

  1. Locate the most recent comment whose body contains the marker <!-- gh-issue-planner:agreed-plan -->.
  2. Treat that comment as the agreed plan and extract the 対応方針 / 影響範囲 / 実装方法 sections.
  3. If no such comment exists, abort with a message asking the user to run yds-gh-issue-planner first.

Step 2: Branch and Worktree Setup

# 1. Create a branch from the default branch (without switching the main working tree)
git branch <branch-name>
# Examples: fix/42-add-timeout-to-fetch  feat/15-user-export-api

# 2. Create an isolated worktree from that branch
git worktree add ../<branch-name> <branch-name>

Branch naming convention:

  • Bug fixes: fix/<id>-<short-description>
  • Features: feat/<id>-<short-description>
  • Refactors: refactor/<id>-<short-description>

All implementation work (Steps 3–4) is performed inside the worktree directory ../<branch-name>. The main working tree stays on its current branch throughout.

Step 3: Implementation

Apply the changes defined in the agreed plan inside the worktree directory. Follow these rules:

  • Make minimal, focused changes — do not scope-creep beyond the agreed plan
  • Run existing tests after each logical change to catch regressions early
  • Add or update tests to cover the changed behavior
  • If the agreed plan turns out to be infeasible or incomplete, stop and return to yds-gh-issue-planner rather than silently expanding the scope here

Read the full file on GitHub · 294 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. 7d ago First seen · 294 lines · 143 tokens per session scan A 68b2bc61c6f8

Subscribe to this mod's changes

yds-gh-issue-resolver is a skill published in the GitHub repository ymd38/dev-skills (4 stars, last pushed 10d ago), licensed MIT. It adds 143 tokens to every session and 2,978 once invoked, about $0.0007 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.