commit

Stage local changes and create conventional commit messages with prefixes.

3|1|Updated Jan 14, 2026
One-click install
npx skills add https://github.com/heyAyushh/stacc --skill commit-heyayushh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: commit
Source: https://github.com/heyAyushh/stacc/tree/main/configs/commands/skills/commit
Command: npx skills add https://github.com/heyAyushh/stacc --skill commit-heyayushh

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill commits local changes on the current branch using the conventional commit message format.

Core Features & Use Cases

  • Staging: Stage all changes with a single command.
  • Conventional Commit: Create standardized messages with prefixes like feat, fix, docs, and chore.
  • Workflow Ready: Prepares commits for review or pushing to remote branches in team workflows.

Quick Start

Review changes with git status, stage with git add -A, and commit with git commit -m "<prefix>: <summary>"

Frequently Asked Questions about commit

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

FAQPage Schema
How do I format git commit messages using the conventional commit standard?

To format conventional commit messages, you stage local changes and apply a standardized prefix like feat, fix, or docs followed by a summary. This ensures your git history adheres to standardized team formatting.

What conventional commit prefixes can I use for my version control workflow?

Supported conventional commit prefixes for your version control workflow include feat, fix, refactor, perf, docs, build, chore, and style, allowing you to categorize staged changes accurately.

Can I stage all local changes and commit them without pushing to a remote branch?

Yes, you can stage all local changes with a single command and commit them without pushing to a remote branch. This workflow prepares your local commits for review before any remote synchronization.

Do I need Git tooling installed to create conventional commits on my current branch?

Yes, Git tooling is required to create conventional commits on your current branch. The process relies on standard Git commands to stage changes and generate the formatted commit messages locally.

What is the best way to automate standard commit message prefixes for team workflows?

The best way to automate standard commit prefixes for team workflows is using a tool that applies conventional formats like feat or fix automatically. This enforces consistent version control messages across the team.