pr-review-fix
Skills that fetch the unresolved comments from your PR and fix them with critical sense
Open source Repository Open in the app JSON README (API)
About
Skills that fetch the unresolved comments from your PR and fix them with critical sense
Details
- Kind
- Plugins
- Topic
- No topic detected
- Publisher
- vincentboillotdevalliere
- Origin
- marketplace
- Category
- ferramentas
- Last push
- 2026-04-13T06:27:24Z
- Repository state
- ativo
- Added
- 2026-08-30 01:48:58
- Updated
- 2026-08-30 01:48:58
- Origin id
vincentboillotdevalliere/sofware-engineer-skills/pr-review-fix
README
# Software Engineer Skills I'm Vincent, a software engineer. This repo is where I keep the Claude skills that actually make a difference in my day-to-day work — not experiments or one-offs, but the ones I reach for regularly. ## Skills ### [`pr-review-fix`](./pr-review-fix/SKILL.md) Fetches all unresolved review comments from the current branch's GitHub PR and applies the fixes directly to local files. Handles inline comments, suggested changes, and general review feedback — then summarizes what was changed. ### [`test-gap-finder`](./test-gap-finder/SKILL.md) Analyzes a git diff (or specific files) and finds untested code paths — error throws, null inputs, branching logic, async failures. Prints a gap report grouped by file, then writes real runnable test stubs (not just TODO scaffolding) in the right test file using whatever framework the project uses. ### [`dead-code-hunter`](./dead-code-hunter/SKILL.md) Scans the codebase for code that is defined but never used: exported functions nobody imports, private helpers never called, module-level constants never referenced, and entire files nothing depends on. Produces a concise scannable report grouped by category with file:line references, and warns about false positive risks (dynamic access, external consumers, framework decorators).