commit

Installation
SKILL.md

Commit Skill

This skill guides the process of committing code changes to the repository, ensuring consistency, quality, and adherence to project standards.

Workflow

1. Verify Staged Changes

Before committing, always verify exactly what is staged.

  • Use git status and git diff --staged (or get_changed_files) to review the changes.
  • Ensure only relevant changes are staged.

2. Quality Assurance

Adhere to the project mandates (e.g. AGENTS.md):

  • No Compilation Warnings: Run build checks (e.g. cargo check, npm run lint) to ensure the code compiles without warnings.
  • Tests Pass: Ensure all relevant tests pass.

3. Crafting the Commit Message

Follow these standards for all commit messages:

Related skills
Installs
2
GitHub Stars
4
First Seen
Apr 7, 2026