git-commit
1
总安装量
1
周安装量
#42421
全站排名
安装命令
npx skills add https://github.com/codyswanngt/lisa --skill git-commit
Agent 安装分布
amp
1
opencode
1
kimi-cli
1
codex
1
gemini-cli
1
Skill 文档
Git Commit Workflow
Create conventional commits for current changes. Optional hint: $ARGUMENTS
Workflow
See what has changed
!git status !git diff –stat
Apply these requirements
- Branch Check: If on
dev,staging, ormain, create a feature branch named after the changes - Commit Strategy: Group related changes into logical conventional commits (feat, fix, chore, docs, etc.)
- Commit ALL Files: Every file must be assigned to a commit group – no file gets left out or unstaged
- Commit Creation: Stage and commit each group with clear messages
- Verification: Run
git statusto confirm working directory is clean – must show “nothing to commit”
Use conventional commit format
feat:for new featuresfix:for bug fixesdocs:for documentationchore:for maintenancestyle:for formattingrefactor:for code restructuringtest:for test additions
Never
- use
--no-verifyflag - attempt to bypass tests or quality checks
- skip tests or quality checks
- stash changes – ALL changes must be committed
- skip or exclude any files from the commit – even if they’re unrelated
- leave uncommitted changes in the working directory
- ask the user which files to commit – commit everything
Execute
Execute the workflow now.