From totto2727
Unified git workflow covering Conventional Commits with GPG signing, staging/unstaging/stash rules, safe file deletion via git stash, multi-branch PR splitting, and command execution discipline. Triggers on: commit, add, stash, push, pull, checkout, merge, rebase, reset, rm, diff, log, branch, switch, or any other git operation.
npx claudepluginhub totto2727-org/monorepo --plugin totto2727This skill uses the workspace's default tool permissions.
This is a unified git workflow skill that combines commit rules, operations rules, file deletion rules, and branch-split workflows into a single reference. It MUST ALWAYS be applied when performing any git operations.
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.
This is a unified git workflow skill that combines commit rules, operations rules, file deletion rules, and branch-split workflows into a single reference. It MUST ALWAYS be applied when performing any git operations.
When performing git operations, determine which reference applies:
Follow references/commit-rules.md:
git status, git diff, git diff --stagedgit log --oneline -10type(scope): descriptionFollow references/operations-rules.md:
git unstage (no options) to reset staging areagit undo (no options) to undo the last commitgit stash push (not shorthand git stash) to save changesgit stash apply (not git stash pop) to restoregit -C <path>Follow references/file-deletion-rules.md:
rm or unlink directlygit stash push then git rmgit add then git stash pushFollow references/branch-split-workflow.md and use assets/plan-template.md:
These rules apply to ALL git operations without exception. Details are in the reference files above.
--no-gpg-sign; on error, halt and report (see commit-rules.md)git reset is prohibited — use git unstage or git undo instead (see operations-rules.md)&& chaining; pipes and $(...) within a single command are allowed (see operations-rules.md)| File | Description |
|---|---|
| references/commit-rules.md | Commit creation workflow, granularity rules, Conventional Commits format |
| references/operations-rules.md | Rules for unstage, undo, stash push/apply, and git -C prohibition |
| references/file-deletion-rules.md | File deletion via git stash, prohibited commands, deletion process |
| references/branch-split-workflow.md | Multi-branch PR splitting workflow with phases |
| assets/plan-template.md | Template for branch-split plans |