From context-engine
Git workflow conventions - branching, commits, PRs, rebasing. Auto-loaded when working with git operations, merge conflicts, or PR-related files.
npx claudepluginhub littlelingo/context-engine --plugin context-engineThis skill uses the workspace's default tool permissions.
- `feat/[name]` for features, `fix/[name]` for bugs, `refactor/[scope]` for restructuring
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.
Share bugs, ideas, or general feedback.
feat/[name] for features, fix/[name] for bugs, refactor/[scope] for restructuringmain/masterfeat:, fix:, refactor:, docs:, test:, chore:gh pr create (GitHub) or glab mr create (GitLab).context/features/[NNN]-[name]/PRP.mdgit rebase -i main to squash WIP commits before PR# Start feature
git checkout -b feat/[name] main
# Sync with main
git fetch origin && git rebase origin/main
# Interactive squash before PR
git rebase -i main
# Create PR
gh pr create --title "feat: [description]" --body "[PR body]"
# Clean up after merge
git checkout main && git pull && git branch -d feat/[name]