maiconfz--review-fix-ship--findings-fixer

Triages review findings, applies minimal fixes, validates, and pushes the feature branch.

3|1|Updated May 2, 2026
One-click install
npx skills add https://github.com/agents-repo/registry --skill maiconfz-review-fix-ship-findings-fixer-agents-repo
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: maiconfz--review-fix-ship--findings-fixer
Source: https://github.com/agents-repo/registry/tree/main/.cursor/skills/maiconfz/review-fix-ship/maiconfz--review-fix-ship--findings-fixer
Command: npx skills add https://github.com/agents-repo/registry --skill maiconfz-review-fix-ship-findings-fixer-agents-repo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After a code review produces a merged findings table, someone still has to decide which findings matter, fix them, run project checks, and ship the branch. This Skill automates that entire post-review pass so findings turn into a validated commit without manual triage. ## Core Features & Use Cases - Findings triage: Classifies each merged finding as needs_fix, wont_fix, by_design, or duplicate before touching any files. - Minimal scoped fixes: Applies small diffs only for needs_fix items, matching surrounding conventions and respecting change-propagation rules for shared contracts. - Validation and shipping: Discovers project checks (contributor docs, git hooks, npm scripts, Makefiles), runs them, then commits and pushes the feature branch unless dry-run is true. - Use Case: A review flow returns a findings table for your pull request; invoke this Skill to fix the actionable items, run lint and tests, and push the updated feature branch with one commit. ## Quick Start Triage the findings table from the review flow, fix what needs fixing, run the project checks, and push my feature branch.

Frequently Asked Questions about maiconfz--review-fix-ship--findings-fixer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically fix code review findings and push the branch?▼

Pass the merged findings table to this Skill with dry-run omitted or false. It triages each finding, applies minimal fixes for needs_fix items, runs project checks, then commits and pushes the current feature branch with one commit.

How to run a dry-run of review fixes without committing?▼

Set the dry-run input to true. The Skill still triages findings, applies fixes, and runs validation, but skips the commit and push steps so you can review the changes first.

Can this Skill push to main or master?▼

No. It stops if the current branch is the default branch (main, master, or origin HEAD) and asks you to switch to a feature branch. It also never force-pushes, skips hooks, merges pull requests, or marks them ready.

What validation checks run before the commit?▼

Checks are discovered in order: contributor docs and agent guidelines, git hooks like .husky/pre-commit, package.json scripts such as lint, test, and typecheck, then Makefiles or CI workflows. The Skill will not commit while checks fail.

What happens when the findings table is empty?▼

If the findings table is empty or contains only no-findings status lines, the Skill emits a one-line status, skips edits, and skips the commit entirely.