commit

Stage, validate, and commit changes with Conventional Commits formatting.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/The-Entourage-AI-Development/trade-certify --skill commit-the-entourage-ai-development
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: commit
Source: https://github.com/The-Entourage-AI-Development/trade-certify/tree/main/.claude/skills/commit
Command: npx skills add https://github.com/The-Entourage-AI-Development/trade-certify --skill commit-the-entourage-ai-development

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Stage, validate, and commit changes using Conventional Commits. This ensures a clean, standardized git history and automated gatekeeping for code changes.

Core Features & Use Cases

  • Pre-commit safety checks: Block commits with secrets, large binaries, or suspicious diffs.
  • Conventional-Commits enforcement: Validate and format commit messages according to project conventions.
  • Automation integration: Integrates with lint, typecheck, and test hooks to ensure quality before committing.
  • Use Case: When finishing a feature or bug fix, invoke this to produce a standards-compliant commit message and run necessary validations.

Quick Start

Provide a conventional commit message for the current changes using the project's conventions.

Frequently Asked Questions about commit

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

FAQPage Schema
How do I enforce conventional commits in my git workflow automatically?

You can enforce conventional commits by running pre-commit safety checks that validate message formatting, block secrets or large binaries, and integrate lint and typecheck hooks to ensure clean git history.

What is the best way to automate pre-commit validation for typecheck and lint before committing?

Automate pre-commit validation by configuring hooks to execute lint, typecheck, and test commands, which block the commit process if any quality gate fails or suspicious diffs are detected.

Can I block commits containing secrets or large binaries using conventional commit hooks?

Yes, pre-commit safety checks can block commits containing secrets, large binaries, or suspicious diffs, preventing sensitive or oversized files from entering your git history.

How do I generate a conventional commit message for a feature or bug fix?

Generate a conventional commit message by specifying the appropriate scope and subject for your logical unit of change, which the system then formats according to project conventions.

Does this commit workflow support staging changes alongside lint and test integration?

Yes, the workflow coordinates staging, validation, and committing changes, directly integrating with lint, typecheck, and test hooks to ensure all quality checks pass before finalizing.