gentle-ai-branch-pr

Manage Git branching and pull request creation for the Gentleman-Programming/gentle-ai repository.

5.5k|653|Updated Feb 27, 2026
One-click install
npx skills add https://github.com/Gentleman-Programming/gentle-ai --skill gentle-ai-branch-pr
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gentle-ai-branch-pr
Source: https://github.com/Gentleman-Programming/gentle-ai/tree/main/skills/branch-pr
Command: npx skills add https://github.com/Gentleman-Programming/gentle-ai --skill gentle-ai-branch-pr

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill enforces a strict, issue-driven workflow for creating branches and pull requests within the Gentleman-Programming/gentle-ai repository, ensuring code quality and maintainability.

Core Features & Use Cases

  • Issue-First Enforcement: Guarantees all PRs are linked to approved issues.
  • Standardized Branching: Enforces a clear naming convention for feature and fix branches.
  • Conventional Commits: Promotes consistent and understandable commit history.
  • Automated Checks: Integrates with CI to ensure PRs meet all quality gates.
  • Use Case: When starting a new bug fix, you can use this skill to create a branch named fix/issue-123-description, make your changes, commit them using Conventional Commits, and then open a PR that automatically links to issue #123 and passes all required checks.

Quick Start

Use the gentle-ai-branch-pr skill to create a new feature branch named 'feat/add-user-profile'.

Frequently Asked Questions about gentle-ai-branch-pr

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

FAQPage Schema
How do I automate Git branch naming and pull request creation for issue-driven development?

Automating Git branch naming and pull request creation requires enforcing an issue-first workflow, standardizing branch types like feature or fix, and linking PRs directly to approved issues. This ensures code maintainability and consistent commit history.

What is the best way to enforce Conventional Commits in a GitHub CI/CD workflow?

Enforcing Conventional Commits in a CI/CD workflow involves standardizing commit messages with specific prefixes like feat, fix, or chore, and integrating automated checks. This promotes a consistent and understandable project history across all contributions.

How do I link a pull request to a GitHub issue automatically?

Linking a pull request to a GitHub issue automatically requires an issue-first development approach where branches are named using the issue number. The PR body is then generated to explicitly reference the corresponding approved issue.

What branch types are supported for standardized Git branching workflows?

Standardized Git branching workflows support multiple branch types including feature, fix, chore, docs, style, refactor, perf, test, build, ci, and revert. Each type enforces a clear naming convention for organized development.

Does this workflow require an approved issue before creating a new feature branch?

Yes, the workflow requires an approved issue before creating a new feature branch. Issue-first enforcement guarantees that all pull requests are linked to a valid issue, ensuring code quality and maintainability.

Why do my pull requests fail automated checks in a strict CI pipeline?

Pull requests fail automated checks when they do not meet quality gates enforced by CI integration. Adhering to standardized branch naming, Conventional Commits, and linking to approved issues ensures PRs pass these required automated checks.