Commit
Agent Skills collection — Reusable capabilities for AI coding agents. Install: npx skills add TheWatcher01/skills
npx -y skills add TheWatcher01/skills --skill commitAssembled 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
Quick commit and push with minimal, clean messages
SKILL.md
1.2 KB, 292 tokens by cl100k_base, as published. Nobody here has run it
Commit
Quick commit with conventional message format, then push.
Context
- Git state: !
git status - Staged changes: !
git diff --cached --stat - Unstaged changes: !
git diff --stat - Recent commits: !
git log --oneline -5 - Current branch: !
git branch --show-current
Workflow
-
Analyze: Review git status
- Nothing staged but unstaged changes exist:
git add . - Nothing to commit: inform user and exit
- Nothing staged but unstaged changes exist:
-
Generate commit message:
- Format:
type(scope): brief description - Types:
feat,fix,update,docs,chore,refactor,test,perf,revert - Under 72 chars, imperative mood, lowercase after colon
- Example:
update(statusline): refresh spend data
- Format:
-
Commit:
git commit -m "message" -
Push:
git push
Rules
- SPEED OVER PERFECTION: Generate one good message and commit
- NO INTERACTION: Never ask questions - analyze and commit
- AUTO-STAGE: If nothing staged, stage everything
- AUTO-PUSH: Always push after committing
- IMPERATIVE MOOD: "add", "update", "fix" not past tense
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.