git-workflow

Guide Git workflows with branch naming, conventional commits, and pre-commit hooks.

Updated Jan 29, 2026
One-click install
npx skills add https://github.com/LimaTechnologies/admin-telegram-bot --skill git-workflow-limatechnologies
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: git-workflow
Source: https://github.com/LimaTechnologies/admin-telegram-bot/tree/main/.claude/skills/git-workflow
Command: npx skills add https://github.com/LimaTechnologies/admin-telegram-bot --skill git-workflow-limatechnologies

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides clear guidance on Git workflows, branch strategies, and commit hygiene to prevent confusion and merge chaos.

Core Features & Use Cases

  • Branch Naming Conventions and Workflow Patterns: feature/, fix/, refactor/ types
  • Conventional Commits and Hooks: standardize messages and enforce quality checks
  • Direct Merge to Main: guidance on merging without pull requests while maintaining safety

Quick Start

Provide a step-by-step guide for implementing a direct-merge-to-main Git workflow with feature and fix branches, using conventional commits and pre-commit hooks.

Frequently Asked Questions about git-workflow

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

FAQPage Schema
What is a direct merge to main Git workflow?

A direct merge to main Git workflow allows developers to merge feature and fix branches directly into the main branch without pull requests, maintaining safety by enforcing branch naming conventions, conventional commits, and pre-commit hooks.

How do I enforce conventional commits and pre-commit hooks across feature branches?

You can enforce conventional commits and pre-commit hooks by standardizing commit message formats and configuring local quality checks, ensuring consistent commit hygiene across feature, fix, and release branches before merging.

What branch naming conventions should I use for feature, fix, and release branches?

Branch naming conventions should use specific prefixes like feature/, fix/, and refactor/ to categorize branch types, organizing branch lifecycles and clarifying the purpose of each branch before merging to main.

Can I use a direct merge workflow without pull requests safely?

Yes, you can safely use a direct merge workflow without pull requests by implementing strict pre-commit hooks and conventional commit formats, enforcing quality checks and maintaining merge safety locally.

What are the best local merge strategies for managing feature and fix branches?

The best local merge strategies for feature and fix branches combine conventional commits with pre-commit hooks to standardize messages and enforce quality checks, preventing merge chaos and maintaining branch hygiene.