docs(website): list hunk-commit-log in the extension directory - #842
Merged
Merged
Conversation
Contributor
|
PR author is not in the allowed authors list. |
|
@sadick254 is attempting to deploy a commit to the Modem Team on Vercel. A member of the Team first needs to authorize it. |
benvinegar
enabled auto-merge (squash)
August 24, 2026 17:36
Member
|
@sadick254 Cool! I do recommend putting some visuals in your repo btw, to help people see what they're getting. The hunk repo has a video making skill file for generating one; ask your agent to find it. |
1 task
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.
Problem
hunk-commit-logreviews a branch one commit at a time: it puts the commitseries in a pane beside the diff, the commit message above it, and binds keys to
step between commits without leaving the window. It is tagged
hunk-extensionand installable today, but the directory does not list it, so the only way to
find it is the GitHub topic.
Approach
One entry appended to
EXTENSION_CATALOGinwebsite/src/data/extensions.ts,in the file's existing alphabetical-by-repository order. Every field is taken
from the extension's own manifest rather than restated:
nameandversionfrom
package.json,apiVersionfrom itshunkblock,repoexactly ashunk extension installaccepts it.categoriesnames the surfaces it registers, using the authoring guide's ownwords: two docked panes (the commit list, the commit message), four commands
(
next,previous,toggle,expand), and a changeset transform that rewritesthe review title to name the reviewed commit and its position in the series.
Non-goals: no change to the page, the schema, or the build-time topic fetch.
Verification
bun test scripts/check-extension-catalog.test.ts— 9 pass, 0 failbun run format:check— clean across 967 filesbunx oxlint website/src/data/extensions.ts --deny-warnings— 0 warnings, 0 errorschange to
hunkdiffbehaviour.The extension itself is verified against Hunk 0.19.0 on macOS: 67 unit tests,
and its panes, mouse row selection, and stepping keys exercised in a live
review.