git-commit

Generate standardized conventional commit messages for the AX-WMS monorepo.

Updated Jul 1, 2026
One-click install
npx skills add https://github.com/Jsplix/ACODIAN-ORIGIN --skill git-commit-jsplix
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: git-commit
Source: https://github.com/Jsplix/ACODIAN-ORIGIN/tree/main/.codex/skills/git-commit
Command: npx skills add https://github.com/Jsplix/ACODIAN-ORIGIN --skill git-commit-jsplix

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Inconsistent, unstructured commit messages make it difficult to track changes, conduct code reviews, debug issues, and write release notes for the AX-WMS monorepo project. This Skill eliminates that problem by enforcing the project's specific short conventional commit format, ensuring every commit is clear, consistent, and immediately understandable.

Core Features & Use Cases

  • Custom Conventional Commit Enforcement: Supports the project's extended commit types (design, comment, hotfix) alongside standard types, with monorepo-specific scope recommendations for web, api, ai, infra, docs, and agent modules.
  • Single & Multi-Commit Workflows: Generates individual commit messages for simple changes, and plans ordered, logically grouped multi-commit pipelines for changes spanning multiple scopes.
  • Strict Safety Guardrails: Enforces explicit user approval before executing any Git commit operations, preventing accidental modifications to shared project history. Use case: When a developer finishes a bug fix in the API module and a separate documentation update, the skill splits the changes into two logically grouped, properly formatted commits (fix(api): ... and docs(api): ...) and only executes them after explicit user approval.

Quick Start

Use the git-commit skill to generate a properly formatted conventional commit message for your recent changes to the API authentication module.

Frequently Asked Questions about git-commit

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

FAQPage Schema
How do I generate conventional commit messages for a monorepo with multiple scopes?

To generate conventional commit messages for a monorepo, this skill applies a short conventional commit format with monorepo-specific scope recommendations like web, api, ai, infra, docs, and agent. It splits cross-scope changes into logically grouped multi-commit pipelines, ensuring clear and consistent project history.

What is the best way to format custom commit types like hotfix and design in conventional commits?

Formatting custom commit types like hotfix and design in conventional commits is handled by enforcing the project's specific short format with extended commit types. This ensures every commit message is clear, consistent, and immediately understandable for code review and release note generation.

How do I plan a multi-commit pipeline for changes spanning different modules?

To plan a multi-commit pipeline for cross-scope changes, the skill generates ordered and logically grouped commits. For example, it separates a bug fix and a documentation update into distinct commits like fix(api) and docs(api), executing them only after explicit user approval.

Can conventional commit tools prevent accidental modifications to shared git history?

Yes, preventing accidental modifications to shared git history is achieved through strict safety guardrails. The skill enforces explicit user approval before executing any Git commit operations, ensuring no unintended changes are pushed to the shared project history.

Why do inconsistent unstructured commit messages hinder code review and debugging?

Inconsistent unstructured commit messages hinder code review and debugging by making it difficult to track changes and write release notes. This skill solves the problem by enforcing a standardized conventional commit format for the entire monorepo project.