β¨ feat(revu): add implement skill for applying review comments#1
Merged
Conversation
Add the `implement` skill to the revu plugin. It reads review data from .revu.json or revu-review.md, presents them as a checklist, gets explicit confirmation, then applies each comment exactly as written. This is the execution-focused counterpart to the `discuss` skill.
kud
marked this pull request as ready for review
June 23, 2026 11:39
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.
Description
Adds the
implementskill to therevuplugin β the execution-phase counterpart to the existingdiscussskill. This completes the revu review loop:discussβ talks a review through interactivelyimplementβ reads the export, presents a checklist, confirms, then applies every comment exactly as writtenThe skill reads from
.revu.json(preferred, structured) orrevu-review.md(fallback annotated diff), groups comments by file into a numbered TODO checklist, gates behind an explicit yes/no confirmation, applies changes file-by-file without scope creep, then offers to delete the export and optionally run lint/tests.It is self-contained and has no dependency on private agents β portable to any Claude Code setup that has the revu plugin.
This skill was previously living in the personal
myrepo ask-notes-implement, co-located with unrelated tooling. Moving it here puts it next to the review tooling it belongs to and makes it available to anyone using the plugin.Screencast
No visual changes.
How to Validate
feat/revu-implement-skilland install the revu plugin..revu.jsonwith acommentsarray (file, startLine, endLine, text fields).implementskill β verify it displays the numbered checklist grouped by file and does not touch any code yet.revu-review.mdto confirm the fallback path works.Developer Checklist