feat(commands): add research-tool-updates and understand-scrap-issues commands - #1680
Merged
Conversation
… commands Add a research-tool-updates command that researches each rulesync target tool's recent upstream releases via per-tool subagents, detects capabilities rulesync has not yet followed, and files one GitHub issue per tool for the gaps. Add an understand-scrap-issues command that fetches the most recent maintainer-scrap issues and summarizes their content. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
… to research-tool-updates Make the duplicate check before issue creation mandatory (search open and closed issues by both display name and --targets id, and read candidates before deciding). When a matching issue already exists, supplement it with a comment carrying only the newly found releases/gaps instead of filing a duplicate. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Owner
Author
|
@dyoshikawa Thank you! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add two new project commands (source files under
.rulesync/commands/, generated into the configured tool outputs):research-tool-updates— Researches each rulesync target tool's recent upstream releases (official release notes / GitHub releases preferred) via onegeneral-purposesubagent per tool, compares them against rulesync's current implementation, and files one GitHub issue per tool for any upstream capability rulesync has not yet followed.Supported Tools and Featuresmatrix inREADME.mdeach run as the authoritative tool/feature list (no hardcoding).$ARGUMENTSto scope the investigation to a single tool (display name or--targetsid); empty means all tools.rulesync-feature-researchskill /references/<tool>.md, ground claims insrc/**and--dry-runoutput, and report only material capability gaps.--targetsid, and reads candidates before deciding. When a matching issue already exists, it supplements that issue with a comment carrying only the newly found releases/gaps instead of filing a duplicate; if there is nothing new to add, it is skipped.targets: [claudecode]because the workflow depends on subagent orchestration (mirrors the existingagent-teamcommand).understand-scrap-issues— Fetches the most recentmaintainer-scrapissues (up to 3) and summarizes each (topic / background / details / next steps).targets: ["*"].Test plan
pnpm cicheckpasses (5613 tests, lint/format/typecheck, cspell, secretlint, skill-docs sync).pnpm run dev generateproduces the corresponding generated outputs (gitignored) and the new commands appear as available slash commands.🤖 Generated with Claude Code