feat: Code review skills + GitHub issue tracking for all findings - #102
Merged
Conversation
- Created /code-review skill: runs code review and creates labeled GitHub issues - Created /code-review-fix skill: works through open code review issues in priority order - Added GitHub labels: code-review, priority: critical/medium/low, needs-investigation - Created 24 GitHub issues (#78-#101) from all Todo code review findings - Updated docs/code-review/README.md with issue mapping and workflow guide - Added scripts/create-code-review-issues.sh for reproducibility
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
Converts all open code review findings into tracked GitHub issues and adds two VS Code skills for ongoing code review management.
What Changed
New GitHub Labels (5):
code-review— all code review findingspriority: critical— must-fix: correctness/data-loss riskpriority: medium— correctness/maintainabilitypriority: low— polish/consistencyneeds-investigation— requires deeper review before fixNew GitHub Issues (24, #78–#101):
All 22 Todo findings from
docs/code-review/plus 2 deep-review items, each labeled withcode-review, the appropriate priority, andneeds-investigationwhere applicable.New Skills (2):
/code-review— Runs a structured code review sweep and creates labeled GitHub issues for each finding. Supports scoped reviews (full codebase, single project, recent changes)./code-review-fix— Picks up opencode-reviewissues from the board and implements fixes in priority order. Supports argument-based targeting (3,critical,#82, etc.).Updated Documentation:
docs/code-review/README.md— Added GitHub issue mapping table and workflow guideHow to Use
Files Changed
.github/skills/code-review/SKILL.md— New skill.github/skills/code-review-fix/SKILL.md— New skilldocs/code-review/README.md— Updated with issue mappingscripts/create-code-review-issues.sh— Script for reproducibility