commit
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
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
-
Analyze: Review git status
- Nothing staged but unstaged changes exist:
git add . - Nothing to commit: inform user and exit
- Nothing staged but unstaged changes exist:
-
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
- Format:
-
Commit:
git commit -m "message" -
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
More from melvynx/aiblueprint
claude-memory
Create and optimize CLAUDE.md memory files or .claude/rules/ modular rules for Claude Code projects. Comprehensive guidance on file hierarchy, content structure, path-scoped rules, best practices, and anti-patterns. Use when working with CLAUDE.md files, .claude/rules directories, setting up new projects, or improving Claude Code's context awareness.
124cli
A brief description of what this skill does
79ultrathink
Deep thinking mode - approach problems like a craftsman, obsess over details, and create elegant solutions
23apex
Systematic implementation using APEX methodology (Analyze-Plan-Execute-Validate) with parallel agents and self-validation. Use when implementing features, fixing bugs, or making code changes that benefit from structured workflow.
18prompt-creator
Expert prompt engineering for creating effective prompts for Claude, GPT, and other LLMs. Use when writing system prompts, user prompts, few-shot examples, or optimizing existing prompts for better performance.
15oneshot
Ultra-fast feature implementation using Explore → Code → Test workflow. Use when implementing focused features, single tasks, or when speed over completeness is priority.
14