From minimalism-workflow
Create a git commit with auto-generated message from staged changes. Use when the user wants to commit, create a commit, or says "commit".
How this skill is triggered — by the user, by Claude, or both
Slash command
/minimalism-workflow:commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a commit with auto-generated message from staged changes.
Create a commit with auto-generated message from staged changes.
Arguments: $ARGUMENTS (optional commit message override)
Check for staged changes:
git diff --cached --stat to see staged files summarygit addGather information about staged changes:
git diff --cached to see the actual diffgit status to see overall statusGenerate commit message:
$ARGUMENTS is provided, use it as the commit messageCreate the commit using:
git commit -m "$(cat <<'EOF'
<short summary>
<optional 2-3 sentence explanation>
Co-authored-by: <agenting tool name> <noreply@<vendor domain>>
Assisted-By: <agenting tool name>(<model name>)
EOF
)"
Co-authored-by trailer is a git standard recognized by GitHub. Use the agent's name and vendor no-reply email (e.g., Co-authored-by: Claude Code <[email protected]>).Assisted-By trailer credits the AI agent and model. Use the actual tool name and model you are running as (e.g., Assisted-By: Claude Code(claude-opus-4-6)).git log -1 --oneline/commit - Auto-generate commit message from staged changes/commit "Fix typo in README" - Use provided messageGuides 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 kodingwarrior/minimalism-workflow --plugin minimalism-workflow