Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub bjornjee/agent-dashboard --plugin agent-dashboardHow this skill is triggered — by the user, by Claude, or both
Slash command
/agent-dashboard:prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a pull request for the current branch.
Creates GitHub pull requests from the current branch, analyzes diffs, applies PR templates, and prompts for effort and testing details.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
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.