skills/branch-pr/SKILL.md
# Skill: branch-pr ## Overview Manages Git branches and Pull Requests. Creates branches from tasks, manages PR lifecycle, and synchronizes with git-work-items. ## When to Use This Skill - Creating a new branch for implementation - Creating a PR after completing tasks - Syncing branch state with task tracking - Managing PR reviews and merges ## Prerequisites - Git repository should be initialized - Tasks should be defined (from sdd-tasks) ## Step 1: Load Skill Registry First, load availab
npx skillsauth add MileniumTick/skills skills/branch-prInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manages Git branches and Pull Requests. Creates branches from tasks, manages PR lifecycle, and synchronizes with git-work-items.
First, load available skills:
mem_search(query: "skill-registry", project: "{project}")git status
git branch -a
Use team tools to check git-work-items:
team_git_work_item_list(team_id: "{team_id}")
For new implementation:
Determine branch name format:
feature/{issue-id}-{short-description}fix/{issue-id}-{short-description}hotfix/{issue-id}-{short-description}Create from appropriate base:
git checkout -b {branch-name} {base-branch}
team_git_work_item_upsert(
team_id: "{team_id}",
task_id: "{task_id}",
branch_name: "{branch-name}",
commit_batching_mode: "single"
)
git checkout {branch-name}
If branch exists remotely but not locally:
git fetch
git checkout {branch-name}
When tasks are complete and ready for review:
Prepare PR metadata:
{issue-id}: {description}Create PR:
When commits are added to the branch:
git pushAfter approval:
If PR is rejected or abandoned:
git fetch origin {base-branch}
git merge origin/{base-branch}
If conflicts exist:
team_git_work_item_upsert(
team_id: "{team_id}",
task_id: "{task_id}",
branch_name: "{branch-name}",
base_branch: "{base-branch}",
pr_target_branch: "{target}",
status: "in_progress" | "ready_for_review" | "pr_open" | "merged"
)
mem_save(
title: "branch-pr-{branch-name}",
content: "Branch and PR state",
type: "config"
)
Status: success | partial | blocked
Summary: Branch {branch-name} created/updated. PR #{pr-number} {state}.
Artifacts:
{branch-name}development
Writes, reviews, and debugs idiomatic Rust code with memory safety and zero-cost abstractions. Implements ownership patterns, manages lifetimes, designs trait hierarchies, builds async applications with tokio, and structures error handling with Result/Option. Use when building Rust applications, solving ownership or borrowing issues, designing trait-based APIs, implementing async/await concurrency, creating FFI bindings, or optimizing for performance and memory safety. Invoke for Rust, Cargo, ownership, borrowing, lifetimes, async Rust, tokio, zero-cost abstractions, memory safety, systems programming.
development
Guide for writing idiomatic Rust code based on Apollo GraphQL's best practices handbook. Use this skill when: (1) writing new Rust code or functions, (2) reviewing or refactoring existing Rust code, (3) deciding between borrowing vs cloning or ownership patterns, (4) implementing error handling with Result types, (5) optimizing Rust code for performance, (6) writing tests or documentation for Rust projects.
development
Master Rust async programming with Tokio, async traits, error handling, and concurrent patterns. Use when building async Rust applications, implementing concurrent systems, or debugging async code.
tools
When the user wants help with revenue operations, lead lifecycle management, or marketing-to-sales handoff processes. Also use when the user mentions 'RevOps,' 'revenue operations,' 'lead scoring,' 'lead routing,' 'MQL,' 'SQL,' 'pipeline stages,' 'deal desk,' 'CRM automation,' 'marketing-to-sales handoff,' 'data hygiene,' 'leads aren't getting to sales,' 'pipeline management,' 'lead qualification,' or 'when should marketing hand off to sales.' Use this for anything involving the systems and processes that connect marketing to revenue. For cold outreach emails, see cold-email. For email drip campaigns, see email-sequence. For pricing decisions, see pricing-strategy.