pr-splitter

pr-splitter is a skill for Codex from kabudu/engineering-agent-skills. It costs 75 tokens per session (1,505 once invoked), scanned A, original, MIT.

A workflow for dividing an oversized pull request—a proposed set of code changes—into smaller reviewable pull requests.

In plain words
What is it for?
Use it to analyse, plan, or execute a split of a large feature branch or pull request into a coherent review series.
Why use it?
It finds dependency-aware boundaries so each part can be reviewed independently while the combined result keeps the original behaviour.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to analyse, plan, or execute a split of a large feature branch or pull request into a coherent review series.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kabudu/engineering-agent-skills/pr-splitter
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.

Any agent
npx skills add kabudu/engineering-agent-skills --skill pr-splitter
Clone the repo
git clone --depth 1 https://github.com/kabudu/engineering-agent-skills

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pr-splitter

README.md
[![agentmods](https://agentmods.dev/badge/skills/kabudu/engineering-agent-skills/pr-splitter.svg)](https://agentmods.dev/skills/kabudu/engineering-agent-skills/pr-splitter)
Your own site
<a href="https://agentmods.dev/skills/kabudu/engineering-agent-skills/pr-splitter"><img src="https://agentmods.dev/badge/skills/kabudu/engineering-agent-skills/pr-splitter.svg" alt="Measured on agentmods" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,505 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00075 $0.01505
Opus 5 $0.00037 $0.00753
Sonnet 5 $0.00015 $0.00301
Haiku 4.5 $0.00007 $0.00151

Measured 8d ago against content hash c96c122f55e5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

pr-splitter 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 8d ago.

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.

skills/pr-splitter/SKILL.md · 100 lines

How it starts

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

PR Splitter

Purpose

Turn one oversized PR into a coherent review series whose combined result is equivalent to the original changeset. Choose boundaries from product behaviour, architecture, data dependencies, and validation needs—not file counts or arbitrary line limits.

Authorization Boundary

Treat analysis and execution as separate modes.

  • A request to analyse, assess, plan, or propose a split is read-only. Do not create or push branches, open PRs, post comments, change the original PR, or rewrite commits.
  • Create branches or PRs only when the user explicitly asks to perform the split. Confirm the repository, original PR or head branch, base branch, fork/canonical remotes, and whether the original PR should remain open as an umbrella.
  • Never merge or close the original or child PRs unless separately authorized.
  • Recheck authorization immediately before pushing branches, creating PRs, or editing the original PR description/comments.

Establish the Changeset

  1. Read repository instructions and inspect the clean/dirty state before changing anything.
  2. Fetch the relevant remotes and resolve the exact base, PR head, merge base, and current remote commit IDs. Detect a head update before any later mutation.
  3. Inspect PR title/body, reviews, linked issues, CI, commit history, diff statistics, changed paths, and repository ownership boundaries when available.
  4. Define the canonical changeset as the base-to-head diff. Do not assume the commit sequence already represents good review boundaries.
  5. Inventory behaviour, schema/migrations, generated output, configuration, tests, documentation, operational scripts, and every changelog or release-note entry. Map each entry to the behaviour it describes and identify cross-repository or unpublished-package dependencies.

Design the Split

Read references/decomposition-playbook.md when choosing boundaries or executing a split.

Build a dependency graph before proposing branches. Prefer slices that each have one clear purpose, a bounded blast radius, meaningful validation, and a reviewer who can understand the change without reconstructing later PRs.

Read the full file on GitHub · 100 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 100 lines · 75 tokens per session scan A c96c122f55e5

Subscribe to this mod's changes

pr-splitter is a skill published in the GitHub repository kabudu/engineering-agent-skills (2 stars, last pushed today), licensed MIT. It adds 75 tokens to every session and 1,505 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

resolve-pr-comments

Evaluate, fix, answer, and reply to GitHub pull request review comments and conversation comments. Handles both change requests (fix or skip) and reviewer questions (explain using reasoning recalled from past Claude Code transcripts). Use when the user asks to "resolve PR comments", "fix review comments", "address PR…

tobihagemann/turbo · 95 tokens

fetch-pr-comments

Fetch and summarize review feedback and conversation from a GitHub PR (unresolved review threads, review bodies, and PR conversation comments) without making changes. Use when the user asks to "fetch PR comments", "show PR comments", "check PR for unresolved comments", "list review comments", "what comments are on the…

tobihagemann/turbo · 83 tokens

reply-to-pr-conversation

Draft, confirm, and post a single conversational reply to GitHub PR conversation comments (issue comments). The reply addresses all tracked items in one natural-prose message. Use when the user asks to "reply to PR conversation", "post PR conversation replies", or "draft PR conversation messages".

tobihagemann/turbo · 64 tokens

reply-to-pr-threads

Draft, confirm, and post replies to GitHub PR review threads. Handles per-category reply formatting, re-fetches thread resolution state so auto-resolved threads are skipped, and posts via GraphQL. Use when the user asks to "reply to PR threads", "post PR thread replies", or "draft PR reply messages".

tobihagemann/turbo · 71 tokens

review-pr

Review a pull request by fetching PR comments, running a comprehensive code review, evaluating findings, and dispatching to implementation. Use when the user asks to "review PR", "review pull request", "review this PR", "check PR before merging", or "full PR review".

tobihagemann/turbo · 59 tokens

pr-review

Intent-aware map-reduce PR review with CI/CD support, confidence gating, and intelligent comment deduplication.

rp1-run/rp1 · 25 tokens