Source profileQuality 81/100Review permissions

dyoshikawa/rulesync/.rulesync/skills/resolve-scrap-issues/SKILL.md

resolve-scrap-issues

Fetch recent maintainer-scrap issues, validate each with web research, then either close the ones that need no action or open a single consolidated pull request that resolves the ones that do

Source repository stars
1,263
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

List the most recent open issues that carry the maintainer-scrap label. gh issue list returns issues in creation order (newest first), so limiting to 3 yields the 3 newest:

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/dyoshikawa/rulesync --skill ".rulesync/skills/resolve-scrap-issues"
    Safe inspection promptEditorial

    Inspect the Agent Skill "resolve-scrap-issues" from https://github.com/dyoshikawa/rulesync/blob/310b711fbe8cffc14debb276ade8a384c2b89083/.rulesync/skills/resolve-scrap-issues/SKILL.md at commit 310b711fbe8cffc14debb276ade8a384c2b89083. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Step 1: Fetch the Latest Scrap Issues

      List the most recent open issues that carry the maintainer-scrap label. gh issue list returns issues in creation order (newest first), so limiting to 3 yields the 3 newest:

      List the most recent open issues that carry the maintainer-scrap label. gh issue list returns issues in creation order (newest first), so limiting to 3 yields the 3 newest:If the result is empty, report that there are no open scrap issues and stop.
    2. 02

      Step 2: Gather Each Issue's Content

      For each scrap issue returned, read both the body and the discussion. Run these in parallel across the issues where practical:

      For each scrap issue returned, read both the body and the discussion. Run these in parallel across the issues where practical:If an issue references related pull requests, commits, or files that are needed to understand it, gather that context as well.
    3. 03

      Step 3: Understand and Summarize

      For each scrap issue, explain the following based on its content:

      Topic: A one-line summary of what the scrap note is about.Background: The context, motivation, or problem the note captures and why it matters.Details / Findings: The specific observations, problems, or content recorded in the note.
    4. 04

      Step 4: Validate Each Issue

      Decide, per issue, whether it still describes a real, actionable problem. Combine three angles:

      Web research (WebSearch / WebFetch): Verify any claim that depends on external facts — a tool's current file format, config schema, default location, scope support, deprecation, or recent behavior change. Prefer primary…Codebase inspection: Check whether the issue is already resolved, partially handled, or contradicted by the current code. Prefer targeted symbol and search tools over reading whole files. Apply the project rules in CLAU…Issue discussion: Honor any maintainer decision already recorded in the comments (e.g., "won't do", "superseded by N").
    5. 05

      Step 5: Close the Issues That Need No Action

      For every issue classified as No action needed, post an explanatory comment and close it. The comment must state the reason and cite the evidence (inline links to primary sources, file paths, or related issue/PR numbers) so the decision is auditable. Write the comment in English.

      For every issue classified as No action needed, post an explanatory comment and close it. The comment must state the reason and cite the evidence (inline links to primary sources, file paths, or related issue/PR numbers…Do not close an issue without leaving this reasoning comment.

    Permission review

    Static risk signals and limitations

    Runs scripts

    medium · line 83

    The documentation asks the agent to run terminal commands or scripts.

    pnpm cicheck

    Runs scripts

    medium · line 93

    The documentation asks the agent to run terminal commands or scripts.

    git add .

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score81/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars1,263SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    dyoshikawa/rulesync
    Skill path
    .rulesync/skills/resolve-scrap-issues/SKILL.md
    Commit
    310b711fbe8cffc14debb276ade8a384c2b89083
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    Fetch the newest scrap issues (GitHub issues labeled maintainer-scrap), understand each one, validate whether it is still a real and actionable problem using web research and codebase inspection, and then drive each issue to closure: close the issues that need no action, and resolve the actionable ones — bundling them into a single pull request when there is more than one.

    This skill extends understand-scrap-issues: Steps 1–3 are the same intake flow, and Steps 4 onward add validation and resolution.

    Step 1: Fetch the Latest Scrap Issues

    List the most recent open issues that carry the maintainer-scrap label. gh issue list returns issues in creation order (newest first), so limiting to 3 yields the 3 newest:

    gh issue list --label maintainer-scrap --state open --limit 3 --json number,title,url,createdAt
    

    If the result is empty, report that there are no open scrap issues and stop.

    Step 2: Gather Each Issue's Content

    For each scrap issue returned, read both the body and the discussion. Run these in parallel across the issues where practical:

    gh issue view <issue_number>
    gh issue view <issue_number> --comments
    

    If an issue references related pull requests, commits, or files that are needed to understand it, gather that context as well.

    Step 3: Understand and Summarize

    For each scrap issue, explain the following based on its content:

    1. Topic: A one-line summary of what the scrap note is about.
    2. Background: The context, motivation, or problem the note captures and why it matters.
    3. Details / Findings: The specific observations, problems, or content recorded in the note.
    4. Proposed Solution / Next Steps: Any solution or actionable next step mentioned. If none is recorded, state explicitly that it is still undecided.

    Keep each summary concise and focused. Present the issues in the order returned (newest first), with the issue number, title, and URL as a heading for each.

    Step 4: Validate Each Issue

    Decide, per issue, whether it still describes a real, actionable problem. Combine three angles:

    • Web research (WebSearch / WebFetch): Verify any claim that depends on external facts — a tool's current file format, config schema, default location, scope support, deprecation, or recent behavior change. Prefer primary sources (official docs, release notes, source code) over blog posts, and cross-check non-trivial claims against at least one primary source. Capture exact URLs and version numbers; they will be cited. Run independent searches in parallel.
    • Codebase inspection: Check whether the issue is already resolved, partially handled, or contradicted by the current code. Prefer targeted symbol and search tools over reading whole files. Apply the project rules in CLAUDE.md, .claude/rules/**, and docs/** (for example, the feature-change and frontmatter conventions).
    • Issue discussion: Honor any maintainer decision already recorded in the comments (e.g., "won't do", "superseded by #N").

    Classify each issue into exactly one bucket:

    • No action needed — invalid, obsolete, already fixed, out of scope, a duplicate, or explicitly declined. Record the concrete reason and the evidence (URLs / file references / linked issue) behind it.
    • Action needed — a real problem confirmed to still exist, with a concrete, defensible fix in mind.

    If validation is genuinely inconclusive (the legitimacy cannot be settled by research or code), do not force a decision: leave the issue open, report it as needing a maintainer call, and exclude it from both Step 5 and Step 6.

    Step 5: Close the Issues That Need No Action

    For every issue classified as No action needed, post an explanatory comment and close it. The comment must state the reason and cite the evidence (inline links to primary sources, file paths, or related issue/PR numbers) so the decision is auditable. Write the comment in English.

    gh issue close <issue_number> --comment "<reason with evidence>"
    

    Do not close an issue without leaving this reasoning comment.

    Step 6: Resolve the Issues That Need Action

    If no issue is Action needed, skip to Step 7.

    6a. Plan the change

    For all actionable issues, decide the concrete edits, grounded in the Step 4 findings. Follow .claude/rules/feature-change-guidelines.md where applicable (e.g., rules-processor.ts conventions, frontmatter precedence, gitignore.ts, scope support, README/docs sync, and preserving the Tool × Feature happy-path tests).

    6b. Branch

    Create one branch for the whole batch. If the current branch is main or master, create a descriptive branch (e.g., resolve-scrap-issues-<short-topic>); otherwise reuse the current working branch.

    6c. Implement

    Make the edits for every actionable issue. When several issues touch the same area, resolve them together coherently rather than with conflicting patches.

    6d. Verify

    Run the project checks and fix anything they surface before committing:

    pnpm cicheck
    

    If the change affects generated config files (commands, rules, gitignore, etc.), regenerate them as the relevant docs/rules instruct (for example, pnpm dev gitignore) and keep README.md and docs/** in sync with the implemented behavior.

    6e. Commit, push, and open ONE consolidated PR

    Stage and commit with a clear message, then push:

    git add .
    git commit -m "<message>"
    git push -u origin <branch-name>
    

    Open a single pull request that resolves all actionable issues in the batch. The body must include a Closes #<n> line for every issue it fixes so they auto-close on merge:

    gh pr create --title "<title>" --body "<description>"
    

    The PR description should include:

    • A summary of the changes, grouped by the issue each part resolves.
    • Closes #<issue_number> lines for every actionable issue (one consolidated PR even when there are multiple issues).
    • The validation evidence (key research links) that justified the change.
    • A test plan / the result of pnpm cicheck.

    If a PR already exists for the branch, update it instead of creating a duplicate (use gh api repos/<owner>/<repo>/pulls/<pr-number> -X PATCH to avoid GraphQL deprecation warnings).

    Step 7: Report Result

    Summarize, per issue:

    • Closed (no action): issue number, title, and the reason it was closed.
    • Resolved (PR): issue number, title, and the single PR URL that closes it.
    • Left open (inconclusive): issue number, title, and what a maintainer still needs to decide.

    All issue comments, PR title, and PR body must be written in English regardless of the conversation language. Write the final report to the user in the language of the current conversation.

    Alternatives

    Compare before choosing

    Computed 8610,762

    Jeffallan/claude-skills

    code-reviewer

    Analyzes code diffs and files to identify bugs, security vulnerabilities (SQL injection, XSS, insecure deserialization), code smells, N+1 queries, naming issues, and architectural concerns, then produces a structured review report with prioritized, actionable feedback. Use when reviewing pull requests, conducting code quality audits, identifying refactoring opportunities, or checking for security issues. Invoke for PR reviews, code quality checks, refactoring suggestions, review code, code quali

    Computed 85234,327

    affaan-m/ECC

    dmux-workflows

    Multi-agent orchestration using dmux (tmux pane manager for AI agents). Patterns for parallel agent workflows across Claude Code, Codex, OpenCode, and other harnesses. Use when running multiple agent sessions in parallel or coordinating multi-agent development workflows.

    Computed 84933

    dpearson2699/swift-ios-skills

    swiftui-performance

    Profile, diagnose, and remediate SwiftUI runtime performance using code review, Instruments, and repeatable measurements. Use when a SwiftUI screen renders slowly, scrolling or animations hitch, view bodies update excessively, list identity churns, layout work spikes, or broad Observation dependencies raise CPU cost. Covers evidence-based triage, SwiftUI Instruments lanes, lazy-container guardrails, state lifetime, and before/after verification.

    Computed 83234,327

    affaan-m/ECC

    dmux-workflows

    Multi-agent orchestration using dmux (tmux pane manager for AI agents). Patterns for parallel agent workflows across Claude Code, Codex, OpenCode, and other harnesses. Use when running multiple agent sessions in parallel or coordinating multi-agent development workflows.