git-flow-manager

Finalize Git feature branches by cleaning commits and preparing pull requests.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/wendeus0/AI-dotfiles --skill git-flow-manager
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: git-flow-manager
Source: https://github.com/wendeus0/AI-dotfiles/tree/main/core/skills/git-flow-manager
Command: npx skills add https://github.com/wendeus0/AI-dotfiles --skill git-flow-manager

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Gerencia o fluxo de Git da feature, garantindo uma revisão final, organização de commits e abertura ou preparação de pull requests de forma auditável.

Core Features & Use Cases

  • Organização de commits: limpa o histórico da feature antes do merge.
  • Preparação de PRs: orienta a abertura ou atualização de pull requests com checks de qualidade.
  • Execução segura: opera apenas na branch atual, evita alterações em main e registra as ações para auditoria.

Quick Start

Limpe o histórico da feature, empurre a branch correta e abra ou prepare a pull request.

Frequently Asked Questions about git-flow-manager

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

FAQPage Schema
How do I clean up my Git commit history before opening a pull request?▼

To clean up your Git commit history before a pull request, you organize and finalize commits on your feature branch. This process ensures a clean history and prepares the branch for a ready PR across forks and remotes.

What is a safe Git workflow for finalizing a feature branch?▼

A safe Git workflow for finalizing a feature branch operates exclusively on the current branch, blocks any alterations on main, and validates quality gates like WORKFLOW_OK and SCOPE_OK before proposing a merge.

How do I push my feature branch and prepare a pull request across remotes?▼

You can push your feature branch and prepare a pull request across remotes by applying an end-to-end Git flow finalization. This pushes the correct branch and opens or updates the PR with quality checks for software development teams.

Can I execute Git commit organization directly on the main branch?▼

No, you cannot execute Git commit organization directly on the main branch. The finalization process enforces on-branch operations on your current feature branch and strictly blocks work on main to ensure safe execution.

What are the limitations of automated Git flow finalization for code review?▼

The limitations of automated Git flow finalization for code review include enforcing strict branch operations and requiring validation gates like WORKFLOW_OK and SCOPE_OK. You should not use it if your workflow bypasses these quality checks or operates directly on main.