understand-scrap-issues
Fetch the most recent maintainer-scrap issues (up to 3) and understand their content
npx skills add dyoshikawa/rulesync --skill understand-scrap-issues --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
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 captur
- Step 1: Fetch the Latest Scrap Issues
- Step 2: Gather Each Issue's Content
- Step 3: Understand and Summarize
gh issue list --label maintainer-scrap --state open --limit 3 --json number,title,url,createdAt gh issue view <issue_number> gh issue view <issue_number> --comments
What does the understand-scrap-issues skill do?
Fetch the most recent maintainer-scrap issues (up to 3) and understand their content
How do I install it?
Run `npx skills add dyoshikawa/rulesync --skill understand-scrap-issues --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From dyoshikawa/rulesync, a repository with 1,285 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.