npx claudepluginhub bjornjee/agent-dashboard --plugin agent-dashboardThis skill uses the workspace's default tool permissions.
Create a pull request for the current branch.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Create a pull request for the current branch.
Optional arguments: $ARGUMENTS
Follow these phases in order.
git checkout maingit pull origin mainRun all of these in parallel:
git status — check for uncommitted changes (warn if any)BASE=$(git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's|refs/remotes/origin/||' || echo main)git log --oneline $(git merge-base HEAD "$BASE")..HEAD — all commits on this branchgit diff "$BASE"...HEAD — full diff from base branchgit branch --show-current — current branch namegit rev-parse --abbrev-ref @{upstream} 2>/dev/nullAnalyze all commits, not just the latest. Identify:
Gate: You understand the full scope of changes across all commits.
Generate a PR using this structure:
<type>: <description>.Present the draft to the user for review. Wait for approval or edits before proceeding.
Gate: User has approved or edited the PR content.
git push -u origin $(git branch --show-current)git pushgh pr create --title "<title>" --body "$(cat <<'EOF'
## Summary
<bullet points>
## Test plan
<checklist>
🤖 Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"
Gate: PR is created and URL is displayed.