agentsclimarketplace

Commit

Skill TheWatcher01/skills/.claude/skills/commit

Agent Skills collection — Reusable capabilities for AI coding agents. Install: npx skills add TheWatcher01/skills

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

  • 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

  1. Analyze: Review git status

    • Nothing staged but unstaged changes exist: git add .
    • Nothing to commit: inform user and exit
  2. 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
  3. Commit: git commit -m "message"

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

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.