yds-report-to-issues

yds-report-to-issues is a skill for Claude Code, Codex from ymd38/dev-skills. It costs 112 tokens per session (1,541 once invoked), scanned A, original, MIT.

A helper that turns evaluation or security reports into selected GitHub Issues, which are trackable tasks in a code-hosting project. It uses the GitHub command-line tool to create the issues interactively.

In plain words
What is it for?
Use it to select improvement tasks from software-evaluation reports or security-audit reports and register them as GitHub Issues.
Why use it?
It removes the manual work of copying findings and recommendations from reports into separately tracked GitHub tasks.

Skill for Claude CodeCodex

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

Good fit Use it to select improvement tasks from software-evaluation reports or security-audit reports and register them as GitHub Issues.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ymd38/dev-skills/yds-report-to-issues
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-report-to-issues
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-report-to-issues

README.md
[![agentmods](https://agentmods.dev/badge/skills/ymd38/dev-skills/yds-report-to-issues/github.svg)](https://agentmods.dev/skills/ymd38/dev-skills/yds-report-to-issues)
Your own site
<a href="https://agentmods.dev/skills/ymd38/dev-skills/yds-report-to-issues"><img src="https://agentmods.dev/badge/skills/ymd38/dev-skills/yds-report-to-issues/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 yds-report-to-issues

Your own site · 80×15
<a href="https://agentmods.dev/skills/ymd38/dev-skills/yds-report-to-issues"><img src="https://agentmods.dev/badge/skills/ymd38/dev-skills/yds-report-to-issues.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,541 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.00112 $0.01541
Opus 5 $0.00056 $0.00771
Sonnet 5 $0.00022 $0.00308
Haiku 4.5 $0.00011 $0.00154

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

Security

Grade A, and why

yds-report-to-issues 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 9d 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-report-to-issues/SKILL.md · 207 lines

How it starts

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

Workflow

Phase 1: Locate Report

  1. If the user specifies a file path, use it directly.
  2. Otherwise, list available reports:
    • docs/evaluation/ — yds-software-evaluation reports
    • docs/security-audit/ — yds-vulnerability-scan reports
    • If multiple exist, ask the user to select one.
  3. Detect report type by content:
    • Contains ## Improvement Roadmapevaluation report
    • Contains ## Remediation Prioritysecurity-audit report

Phase 2: Extract Tasks

Evaluation report — extract rows from ## Improvement Roadmap tables (P0–P3):

Each row yields:

  • priority: P0 / P1 / P2 / P3
  • title: Problem column (first sentence or file:line prefix)
  • problem: full Problem cell
  • solution: Solution cell
  • expected_outcome: Expected Outcome cell

Security-audit report — extract from ## Remediation Priority table AND individual ## Findings sections:

Each row yields:

  • priority: P0 / P1 from Priority column
  • title: Finding column
  • action: Action column
  • body: full finding detail from the matching ### V-XX section (Vulnerable Code, Attack Path, Risk Assessment, Recommended Fix)

Phase 3: Present Tasks for Selection

Display all extracted tasks before creating any issue:

Extracted tasks from <report file>:

  1. [P0] <title> (<file:line if present>)
  2. [P1] <title>
  3. [P1] <title>
  ...

Which tasks would you like to register as GitHub Issues?
Enter numbers (e.g. 1 3 5), a range (e.g. 1-3), "all", or "none":

Wait for the user's response before proceeding.


Phase 4: Duplicate Detection

Before creating issues, check for existing issues that may overlap with the selected tasks.

4.1 Fetch existing open issues:

gh issue list --state open --json number,title,labels --limit 200

4.2 For each selected task, check for duplicates:

Compare the task title/problem against existing issue titles using keyword overlap. Flag a potential duplicate when:

  • 3+ significant keywords match between the task and an existing issue title/body
  • The same file:line location is referenced
  • The same label combination exists (e.g., both P0 + security-audit)

Read the full file on GitHub · 207 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. 9d ago First seen · 207 lines · 112 tokens per session scan A b98955fd9144

Subscribe to this mod's changes

yds-report-to-issues is a skill published in the GitHub repository ymd38/dev-skills (4 stars, last pushed yesterday), licensed MIT. It adds 112 tokens to every session and 1,541 once invoked, about $0.0006 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.