From dev
Create or update a pull request for the current branch with a summary of all changes.
npx claudepluginhub derogab/agent-kit --plugin gitThis skill uses the workspace's default tool permissions.
- Current branch: !`git branch --show-current`
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
git branch --show-currentif git rev-parse --verify main >/dev/null 2>&1; then echo main; else echo master; fiif git rev-parse --verify main >/dev/null 2>&1; then git log --oneline main..HEAD; else git log --oneline master..HEAD; figh pr view --json number,title,url 2>/dev/null || echo "NO_PR"Create or update a pull request for the current branch.
git add or git commit. Only manage the PR.git diff <base>...HEAD to get the full diff of all changes on this branch.git log <base>..HEAD --format="%h %s" to get all commit messages.NO_PR → create a new PR.Follow Conventional Commits format: <type>: <description>.
Types: feat, fix, docs, refactor, test, chore, build, perf, ci. Append ! for breaking changes.
When updating, keep the existing title unless it is generic (e.g. "Update"), outdated, or does not follow Conventional Commits.
## Summary
<1-2 sentence high-level description of what this PR does and why>
## Changes
<bulleted list of all meaningful changes, grouped logically>
## Test plan
<bulleted checklist of how to verify these changes>
Create flow:
git push -u origin <branch>.gh pr create --title "<title>" --body "<body>".Update flow:
gh pr edit --title "<title>" --body "<body>".gh pr create or gh pr edit.