smithery.ai

commit-changes

Create conventional, one-line commits from current git changes, splitting work into the smallest sensible atomic commits.

First seen Mar 21, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Declared

Skill metadata

Parsed from SKILL.md frontmatter.

Compatibilityopencode
Declared agents opencode
More metadata
workflow
git

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 985 B
  • docs SUMMARY.md 134 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

What I do

Inspect repo state, split changes into the smallest atomic groups by intent, and commit each group with a one-line Conventional Commit message.

Rules

  • Conventional Commits: feat:, fix:, docs:, refactor:, test:, chore: — scope optional
  • One logical change per commit; never mix unrelated changes
  • Split independent fixes, features, docs, tests, refactors — combine only when tightly coupled
  • One-line messages ONLY (no body)
  • Do NOT add yourself as co-author
  • Skip secrets/sensitive files (e.g., .env)

Workflow

  1. Run git status, git diff, recent git log
  2. Identify smallest safe atomic groups
  3. Stage each group and commit
  4. Repeat until all relevant changes are committed
  5. Show git status and summarize commits