Commit and push
CLI for web research and agent skill workflows.
npx -y skills add winetree94/devtools --skill commit-and-pushAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Commit
SKILL.md
1.8 KB, as published. Nobody here has run it
Analyze current changes and create well-organized commits.
Instructions
-
Review recent commit history
- Check the last 10 git commits to understand the project's commit message style and conventions
- Follow the same format, tone, and structure for consistency
-
Analyze current changes
- Run
git statusandgit diffto understand all staged and unstaged changes - Group related changes by their purpose (e.g., feature work, bug fixes, documentation, refactoring)
- Run
-
Split commits by purpose
- Do NOT create a single commit for unrelated changes
- Create separate commits for each logical unit of work
- Each commit should be atomic and represent a single purpose
-
Commit message format
- Use a conventional commit prefix:
feat:- new featuresfix:- bug fixesdocs:- documentation changeschore:- maintenance tasks, dependency updatesrefactor:- code refactoring without behavior changestyle:- formatting, whitespace changestest:- adding or updating testsi18n:- internationalization changes
- Write concise, descriptive messages focusing on "why" rather than "what"
- Keep the subject line under 72 characters
- Use a conventional commit prefix:
-
Push to remote
- After all commits are created, push to the remote repository
-
Use English
- All commit messages MUST be written in English
- Use clear, professional technical English
- Follow standard English grammar and sentence structure
- Use imperative mood (e.g., "Add feature" not "Added feature")
- Examples:
feat: add user profile pagefix: resolve timeout error during logindocs: add installation guide to READMErefactor: extract authentication logic into separate module