agentsclimarketplace

Commit

Skill ProstDev/skills/plugins/dev/skills/commit

Agent skills for Claude Code and 80+ other AI coding agents — content authoring, dev workflow, and general session helpers. Install via /plugin or npx skills add.

Install
npx -y skills add ProstDev/skills --skill commit

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 12 days oldThe repository was created 12 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 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 whatever is currently staged — commit only, no push. Use when the user says "commit", "commit this", "commit the staged changes". Does not stage anything and does not push. For committing AND pushing, use commit-and-push instead.

SKILL.md

1.2 KB, as published. Nobody here has run it

Commit

Commit the currently staged changes. Commit only — do not push. Do not git add, do not stage untracked or unstaged files.

Steps

  1. git diff --cached --stat — confirm something is staged. If nothing is staged, stop and tell the user there's nothing to commit (don't stage anything for them).
  2. Write a short commit message from the staged diff: a type: summary line, where type is a conventional-commit prefix inferred from the change (feat, fix, docs, refactor, test, chore, style, perf, build, ci) and the summary is imperative.
  3. git commit with that message (staged changes only — no -a, no path args).
  4. Report the commit hash and message.

Don't

  • Don't push.
  • Don't stage anything (git add, git commit -a, git commit <path>).
  • Don't amend, rebase, or force-push.
  • Don't touch other branches or open a PR.

Keep looking

Skills are one crate of 328,083. 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.