agentsclimarketplace

Commit

Skill eeshansrivastava89/skills/skills/engineering/commit

Agent skills for context management and guardrails — works with any coding agent harness.

Install
npx -y skills add eeshansrivastava89/skills --skill 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

  • 2 stars2 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

Create a git commit with conventional message format

SKILL.md

1.2 KB, as published. Nobody here has run it

Commit Workflow

Create a focused git commit with a conventional message.

Steps

  1. Run git status to see all changes
  2. Run git diff --staged to see staged changes
  3. Run git diff to see unstaged changes
  4. Analyze changes and draft commit message:
    • Summarize what changed (not how)
    • Use imperative mood ("Add feature" not "Added feature")
    • Keep first line under 50 characters
    • Add body if needed for context
  5. Show proposed commit message and ask for approval
  6. If approved:
    • Stage relevant files (git add)
    • Create commit with the message
    • Show result

Commit Message Format

<type>: <short description>

<optional body explaining why, not what>

Types

  • feat: New feature
  • fix: Bug fix
  • refactor: Code change that neither fixes nor adds
  • docs: Documentation only
  • test: Adding or fixing tests
  • chore: Maintenance, dependencies, config

Rules

  • Never commit without explicit user approval
  • Never use --force or destructive operations
  • Don't commit secrets, credentials, or .env files
  • Keep commits focused (one logical change)

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.