# Open Pr

> Commit changes to a new branch off custom and open a PR against origin/custom

- Skill: `boltmcp/open-pr` (Agent Skill)
- Install (CLI): `npx skillmds@latest add boltmcp/open-pr`
- Raw SKILL.md: https://api.skillmd.com/api/skills/boltmcp/open-pr/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: boltmcp (https://skillmd.com/u/boltmcp)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/boltmcp/open-pr

---


1. If there are no uncommitted changes, tell the user and stop.

2. Create a branch from the latest `origin/custom`:
    - `git fetch origin custom`
    - `git checkout -b <descriptive-branch-name> origin/custom`

3. Stage relevant files by name, commit with a clear message, and push:
    - `git push -u origin <branch-name>`

4. Open a PR: `gh pr create --repo boltmcp/mcp-sdk-ts --base custom --title "<title>" --body "<summary>"`

5. Return the PR URL.

