Install in Claude Code
Copygit clone --depth 1 https://github.com/dyoshikawa/rulesync /tmp/understand-scrap-issues && cp -r /tmp/understand-scrap-issues/.rulesync/skills/understand-scrap-issues ~/.claude/skills/understand-scrap-issuesThen start a new Claude Code session; the skill loads automatically.
Definition
SKILL.md
Fetch the newest scrap issues (GitHub issues labeled `maintainer-scrap`) and understand what each one is about, so you can catch up on recently jotted-down notes before acting on them. ## 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: ```bash 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: ```bash 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. Use the language of the current conversation (follow the user's language).
More from this repository
create-issueSkill
>-
create-scrap-issueSkill
>-
draft-releaseSkill
Draft a new release of the project.
git-worktree-runnerSkill
>-
playwright-cliSkill
Automate browser interactions, test web pages and work with Playwright tests.
release-dry-runSkill
Dry run for release: summarize changes since last release and suggest version bump.
rulesync-feature-researchSkill
>-
security-scan-diffSkill
Scan for malicious code in git diff between a tag/commit and HEAD