Skip to main content
Back to registry

commit-work

softaworks/agent-toolkit

Installs572
Install command
npx skills add https://github.com/softaworks/agent-toolkit --skill commit-work
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Make commits that are easy to review and safe to ship: Provide: - only intended changes are included - commits are logically scoped (split when needed) - commit messages describe what changed and why - Single commit or multiple commits? (If unsure: default to multiple small commits when there are unrelated changes.) - Commit style: Conventional Commits are required. - Any rules: max subject length, required scopes. - Inspect the working tree before staging - git status - git diff (unstaged) - If many changes: git diff --stat - Decide commit boundaries (split if needed) - Split by: feature vs refactor, backend vs frontend, formatting vs logic, tests vs prod code, dependency bumps vs behavior changes. - If changes are mixed in one file, plan to use patch staging. - Stage only what belongs in the next commit - Prefer patch staging for mixed changes: git add -p - To unstage a hunk/file: git restore --staged -p or git restore --staged - Review what will actually be committed - git diff --cached - Sanity checks: - no secrets or tokens - no accidental debug logging - no unrelated formatting churn - Describe the staged change in 1-2 sentences (before writing the message) - "What changed?" + "Why?" - If you cannot describe it cleanly, the commit is probably too big or mixed; go back to step 2. - Write the commit message - Use Conventional Commits (required): - type(scope): short...

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does commit-work do?

commit-work is listed in SkillJury, but the source summary is still sparse.

Is commit-work good?

commit-work does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does commit-work work with?

commit-work currently lists compatibility with codex, gemini-cli, opencode, cursor, cline, claude-code.

What are alternatives to commit-work?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install commit-work?

npx skills add https://github.com/softaworks/agent-toolkit --skill commit-work

Related skills

More from softaworks/agent-toolkit

Related skills

Alternatives in Software Engineering