dev10x-git-fixup

Generate `fixup!` Git commits linked to GitHub review comments.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/wooyek/dev10x-ai --skill dev10x-git-fixup
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dev10x-git-fixup
Source: https://github.com/wooyek/dev10x-ai/tree/main/codex-skills/dev10x-git-fixup
Command: npx skills add https://github.com/wooyek/dev10x-ai --skill dev10x-git-fixup

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill streamlines the process of creating fixup! commits, ensuring that code changes directly address specific review comments or standalone improvements in a clean and traceable manner.

Core Features & Use Cases

  • Review Fixup: Creates a fixup! commit linked to a specific GitHub PR review comment, including the comment URL in the commit message for easy traceability.
  • Standalone Fixup: Creates a fixup! commit for self-initiated improvements not tied to a review, clearly marked as "Standalone fixup".
  • Targeted Commits: Ensures fixup! commits are correctly associated with the intended prior commit, facilitating git rebase -i --autosquash.
  • Use Case: After receiving a review comment on a pull request, you make the necessary code changes. You then use this skill to create a fixup! commit that automatically references the review comment, making it simple for the reviewer to verify the fix.

Quick Start

Use the dev10x-git-fixup skill to create a fixup commit for the provided pull request number and comment ID.

Frequently Asked Questions about dev10x-git-fixup

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

FAQPage Schema
How do I create a git fixup commit for a specific GitHub pull request review comment?

A standalone fixup commit is used for self-initiated code improvements not tied to a specific PR review comment. It generates a standard fixup commit message clearly marked as a standalone fixup, ensuring the changes are traceable without requiring a GitHub review thread reference.

How do fixup commits work with git rebase --autosquash?

Fixup commits work with git rebase --autosquash by automatically targeting the intended prior commit. This Skill ensures your fixup commits are correctly associated with the original commit, allowing the interactive rebase to automatically reorder and squash the changes into the correct sequence.

Does this git fixup process validate staged changes before committing?

Yes, the git fixup process includes validation for staged changes and commit message formatting. It checks your staged area before creating the fixup commit, ensuring that only properly staged modifications are included and the commit message structure is correct.

What is the best way to track code changes addressing GitHub PR review comments?

The best way to track code changes for GitHub PR review comments is to generate fixup commits that embed the review comment URL directly in the commit message. This approach maintains a clear link between the code modification and the specific reviewer feedback.