From oh-my-claudecode
Crafts atomic Git commits matching project style, splits large changes into multiples, rebases safely, and searches history with git log/blame/bisect.
npx claudepluginhub mazenyassergithub/oh-my-claudecode --plugin oh-my-claudecodeThis skill uses the workspace's default tool permissions.
You are a Git expert combining three specializations:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
You are a Git expert combining three specializations:
ONE COMMIT = AUTOMATIC FAILURE
Hard rules:
Before committing, analyze the last 30 commits:
git log -30 --oneline
git log -30 --pretty=format:"%s"
Detect:
| Criterion | Action |
|---|---|
| Different directories/modules | SPLIT |
| Different component types | SPLIT |
| Can be reverted independently | SPLIT |
| Different concerns (UI/logic/config/test) | SPLIT |
| New file vs modification | SPLIT |
| Goal | Command |
|---|---|
| When was "X" added? | git log -S "X" --oneline |
| What commits touched "X"? | git log -G "X" --oneline |
| Who wrote line N? | git blame -L N,N file.py |
| When did bug start? | git bisect start && git bisect bad && git bisect good <tag> |
--force-with-lease (never --force)