From beagle-core
Commits all local git changes following Conventional Commits format with type, scope, and body, then pushes to remote. Analyzes diffs and logs for accurate messages.
npx claudepluginhub existential-birds/beagle --plugin beagle-coreThis skill uses the workspace's default tool permissions.
Commit all local changes following Conventional Commits format and push to remote.
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 local changes following Conventional Commits format and push to remote.
Run these commands in parallel to understand the changes:
# See all untracked and modified files
git status
# See staged and unstaged changes
git diff
git diff --cached
# See recent commit messages for style reference
git log --oneline -10
Review the changes and determine:
Type: What kind of change is this?
feat - New feature or capabilityfix - Bug fixdocs - Documentation onlyrefactor - Code restructure without behavior changetest - Adding or updating testschore - Maintenance, dependency updatesperf - Performance improvementci - CI/CD changesScope: Which component is affected?
git log for patterns)Breaking: Does this break backward compatibility? If yes, add ! after scope.
Format:
type(scope): description
[optional body explaining why, not what]
[optional footer with issue references]
Rules:
Closes #123 or Fixes #456# Stage all changes (or selectively stage)
git add -A
# Commit with message (use HEREDOC for multi-line)
git commit -m "$(cat <<'EOF'
type(scope): description
Optional body explaining the motivation.
Closes #123
Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
# Push to remote
git push
# Simple feature
git commit -m "feat(api): add pagination support to list endpoints"
# Bug fix with body
git commit -m "$(cat <<'EOF'
fix(auth): handle token expiration during long requests
The previous implementation did not account for tokens expiring
during the processing of long-running requests.
Fixes #42
Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
# Breaking change
git commit -m "$(cat <<'EOF'
feat!(api): change response format for user endpoints
BREAKING CHANGE: The `status` field is now an object with `state` and
`message` properties instead of a plain string.
Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
EOF
)"
After pushing, run git status to confirm the working tree is clean and the branch is up to date with remote.