From pipecat-dev
Creates and submits GitHub PR from current branch: checks git status, commits changes if needed, pushes, generates changelog and description via gh CLI.
npx claudepluginhub pipecat-ai/pipecat --plugin pipecat-devThis skill uses the workspace's default tool permissions.
Submit the current changes as a GitHub pull request.
Automates Git workflow: creates new branch if on main, commits changes with short imperative message, pushes to origin, and opens GitHub PR via gh CLI. Use after code changes.
Creates new git branch if on main, commits and pushes changes, adapts PR template to git diffs, and opens GitHub pull request with conventional commit title.
Creates or updates pull requests with conventional commits using GitHub CLI or Graphite. Analyzes diffs, generates titles and descriptions, supports issue linking and Graphite stacks.
Share bugs, ideas, or general feedback.
Submit the current changes as a GitHub pull request.
Check the current state of the repository:
git status to see staged, unstaged, and untracked changesgit diff to see current changesgit log --oneline -10 to see recent commitsIf there are uncommitted changes relevant to the PR:
alice/, fix/, feat/)Push the branch and create the PR:
-u flag to set upstream trackinggh pr createAfter the PR is created:
/changelog <pr_number> to generate changelog files, then commit and push them/pr-description <pr_number> to update the PR descriptionReturn the PR URL to the user.