Conversation
Add pr-nitpick-reviewer workflow adapted from github/gh-aw, providing fine-grained on-demand code review via /nit slash command. Catches issues linters miss: inconsistent naming, unclear variables, magic numbers, misleading comments, excessive nesting, and more. Complements the existing Grumpy Reviewer with a lighter, advisory review style. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
pelikhan
approved these changes
Mar 3, 2026
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.
Phase 1: Consistency Check
No consistency issues found this run:
./workflows/files have matching./docs/pages ✅Phase 2: New Workflow Proposal
PR Nitpick Reviewer
Source:
github/gh-aw/.github/workflows/pr-nitpick-reviewer.mdWhy it's valuable: Every repository benefits from a fine-grained code style reviewer that catches the subtle issues automated linters overlook — inconsistent naming conventions, magic numbers, unclear variable names, misleading comments, unnecessarily deep nesting, and similar code quality concerns. The PR Nitpick Reviewer is triggered on-demand by the
/nitslash command and posts up to 10 inline review comments with clear explanations, submitted as a non-blockingCOMMENTreview. It also uses cache memory to maintain consistent standards across reviews of the same repository, learning the project's conventions over time.Generalization plan:
create-discussionsafe output — the original uses discussions for a "daily summary report", butgithubnext/agenticshas discussions disabled; the summary is instead included in thesubmit-pull-request-reviewbodyshared/reporting.mdimport (available in this repo)cache-memoryfor cross-review consistencyProposed name:
pr-nitpick-reviewerRelationship to existing workflows: Complements the existing Grumpy Reviewer. Grumpy focuses on deep opinionated analysis of real problems (security, performance, bad patterns). The Nitpick Reviewer zooms in on the subtle polish — the small improvements that accumulate into a high-quality codebase.
Files Changed
workflows/pr-nitpick-reviewer.md— New workflow filedocs/pr-nitpick-reviewer.md— New docs pageREADME.md— Added entry to Code Review Workflows section