From superpowers
Create a smart conventional commit. Analyzes staged/unstaged changes, writes a meaningful commit message following conventional commits format, and commits. Pass an optional hint to guide the message.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers:commitThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are creating a git commit for the current changes.
You are creating a git commit for the current changes.
User hint (if any): $ARGUMENTS
Steps:
git status and git diff --staged (and git diff if nothing is staged) to understand what changedgit add -A — but warn the user first if there are files that look like secrets (.env, credentials, keys)type(scope): short descriptiongit log --oneline -5 to match the repo's commit styleDo not add "Co-Authored-By" or any attribution trailers unless the user asks. Do not ask for confirmation — just commit.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub kennythelema/prototype_agent --plugin superpowers