From zsl
Create a git branch with a name that matches the auto-PR workflow prefix convention
npx claudepluginhub zunosmartlabs/zsl-superpowersThis skill uses the workspace's default tool permissions.
Create a new git branch with a name that follows the project's required prefix convention so the auto-PR workflow picks it up.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Create a new git branch with a name that follows the project's required prefix convention so the auto-PR workflow picks it up.
Branches MUST start with one of these prefixes followed by /:
feature/ — new functionalityfix/ — bug fixchore/ — maintenance, tooling, non-functional changesrefactor/ — internal restructuring without behavior changeenv/ — environment-specific work (e.g. env/seb-test)Branch names without one of these prefixes will NOT trigger the auto-PR workflow (.github/workflows/auto-pr.yml).
Parse the user's prompt (the argument after /git-branch):
fix/logout-button), use it verbatim.feature/fix/chore/refactor/env/https://github.com/<org>/<repo>/issues/<N>#<N> or issue <N> / issue #<N> / gh-<N>
For the URL form, fetch the issue title with gh issue view <N> --repo <org>/<repo> --json title -q .title and use it (slugified) as the description if the user didn't also provide their own wording. For shorthand without a repo, assume the current working directory's repo.Build a slug from the description:
<prefix>/<N>-<slug> (e.g. feature/22-broker-s3-persistence). The issue number goes immediately after the prefix's /, before the descriptive slug.Present the proposed branch name to the user and ask for confirmation:
<name>? (y/n)"On confirmation, run:
git checkout -b <branch-name>