From hive
Commit, push, and open a PR in one step. Use when user says "push it", wants to commit + push + PR, or is done coding and ready for review.
npx claudepluginhub skywalking-dev/hiveThis skill is limited to using the following tools:
Commit all changes, push, and open a PR — one command.
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.
Commit all changes, push, and open a PR — one command.
Context: Run git status, git diff HEAD, git branch --show-current, and git log --oneline -5 to understand what changed
Stage changes: Add relevant files (avoid secrets, .env, large binaries)
Branch: If on main, create a feature branch first
CHANGELOG: If CHANGELOG.md exists, add entry under [Unreleased] (Common Changelog + SemVer)
Commit: Write a concise commit message based on the diff
Push: Push to origin with -u flag
PR: Create PR via gh pr create
<type>: <what changed>
Co-Authored-By: Claude <noreply@anthropic.com>
Types: feat, fix, refactor, docs, chore, test
gh pr create --title "<short title>" --body "$(cat <<'EOF'
## Summary
- <bullet points>
## Test plan
- [ ] <how to verify>
EOF
)"
.env, credentials, or secretsmainmain