pr

A command workflow for creating a Git branch, committing changes, pushing them, opening a pull request, and addressing failed checks.

In plain words
What is it for?
Use it when you want to prepare and submit a branch for review, including choosing the commit message, pull-request details, and responses to failing checks.
Why use it?
It organizes the steps needed to turn local code changes into a reviewed pull request and asks for confirmation at important decisions.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/osmantic/ods/pr
Clone the repo
git clone --depth 1 https://github.com/Osmantic/ODS

Made for: Claude Code.

Per session 24 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,667 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00024 $0.01667
Opus 5 $0.00012 $0.00834
Sonnet 5 $0.00005 $0.00333
Haiku 4.5 $0.00002 $0.00167

Measured yesterday against content hash 2eee78950f5e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pr scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/pr.md · 245 lines

How it starts

The opening of the file, as written. The whole thing — 245 lines — stays where its author put it; the contents beside it link to each section on GitHub.

PR Workflow Skill

Create a new branch from main, stage all changes, commit, push, create a PR, and iteratively fix all failing checks until they pass.

Arguments

  • $ARGUMENTS - Branch name (required) and optional commit message
    • Format: <branch-name> [commit message in quotes]
    • Example: feat/add-auth "Add user authentication"

Philosophy: Ask Early, Ask Often

This skill should liberally use AskUserQuestion at every decision point. PRs are visible to the team — assumptions about commit messages, PR descriptions, and fix strategies should be validated. Specifically:

  • Before committing — confirm commit message and staged files
  • Before creating the PR — confirm title and description
  • When checks fail — ask how to handle before auto-fixing
  • After completion — ask about next steps

Workflow

1. Parse Arguments

Extract branch name and commit message from $ARGUMENTS:

  • First word is the branch name
  • Remaining text (if any) is the commit message
  • If no commit message provided, generate one based on staged changes

2. Verify Clean State & Create Branch

# Fetch latest from origin
git fetch origin

# Create and checkout new branch from main
git checkout -b <branch-name> origin/main

3. Stage and Commit Changes

# Check what files have changes
git status

# Stage all changes
git add -A

# If no commit message provided, analyze changes for a message
git diff --cached --stat
3a. Confirm What Gets Committed

Before staging, present the changes and ask the user to confirm:

AskUserQuestion:
  question: "These files will be staged and committed. Does this look right?"
  header: "Stage"
  multiSelect: false
  options:
    - label: "Stage all changes"
      description: "<N files changed, +X/-Y lines — summary of key changes>"
    - label: "Let me pick files"
      description: "I want to selectively stage specific files"
    - label: "Review changes first"
      description: "Show me the diff before I decide"

Read the full file on GitHub · 245 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 245 lines · 24 tokens per session scan A 2eee78950f5e

Subscribe to this mod's changes

pr is a command published in the GitHub repository Osmantic/ODS (5,145 stars, last pushed yesterday), licensed Apache-2.0. It adds 24 tokens to every session and 1,667 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.