agentsclimarketplace

Git commit

Skill to4iki/skills/engineering/git-commit

Analyze changes, stage files, and commit with Conventional Commits. Use when the user asks to commit or run git commit.From its SKILL.md

Install
npx -y skills add to4iki/skills --skill git-commit

Assembled 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.

SKILL.md

0.9 KB, 214 tokens by cl100k_base, as published. Nobody here has run it

Git Commit

Run only when the user asks to commit.

Procedure

  1. Run in parallel: git status / git diff / git diff --staged
  2. Stage individually with git add <files> (never git add .). Skip secrets (.env, credentials, tokens, etc.)
  3. If unrelated changes are mixed, propose separate commits
  4. Commit with Conventional Commits in English (Japanese only if the user explicitly asks). Focus the message on why:
git commit -m "$(cat <<'EOF'
<type>(<scope>): <subject>

<why if useful>
EOF
)"

Place EOF at the start of the line (no indentation). Include issue/task numbers in the body when available.

  1. Verify with git status

Gotchas

  • If there is nothing to commit, stop and tell the user
  • If a hook (e.g. pre-commit) fails, stop and ask the user to fix it

What ships with it: 1 file

1.2 KB alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.