create-pr

create-pr is a skill for Claude Code from ivanhoinacki/team-exp-claude-config. It costs 39 tokens per session (4,931 once invoked), scanned A, original, MIT.

A pull-request workflow for preparing a code change for review and watching its automated checks. It includes required checks for branches, uncommitted work, and a manual end-to-end testing recipe.

In plain words
What is it for?
Use it to create pull requests, prepare their technical descriptions, verify required testing notes, and monitor the CI pipeline—the automated build and test checks run by the repository.
Why use it?
It reduces missed preparation steps and helps track whether the project's automated checks pass after the pull request is opened.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; reads .claude/ paths.

Good fit Use it to create pull requests, prepare their technical descriptions, verify required testing notes, and monitor the CI pipeline—the automated build and test checks run by the repository.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ivanhoinacki/team-exp-claude-config/create-pr
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 ivanhoinacki/team-exp-claude-config --skill create-pr
Clone the repo
git clone --depth 1 https://github.com/ivanhoinacki/team-exp-claude-config

Made for: Claude Code.

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 create-pr

README.md
[![agentmods](https://agentmods.dev/badge/skills/ivanhoinacki/team-exp-claude-config/create-pr/github.svg)](https://agentmods.dev/skills/ivanhoinacki/team-exp-claude-config/create-pr)
Your own site
<a href="https://agentmods.dev/skills/ivanhoinacki/team-exp-claude-config/create-pr"><img src="https://agentmods.dev/badge/skills/ivanhoinacki/team-exp-claude-config/create-pr/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for create-pr

Your own site · 80×15
<a href="https://agentmods.dev/skills/ivanhoinacki/team-exp-claude-config/create-pr"><img src="https://agentmods.dev/badge/skills/ivanhoinacki/team-exp-claude-config/create-pr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,931 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.00039 $0.04931
Opus 5 $0.00019 $0.02465
Sonnet 5 $0.00008 $0.00986
Haiku 4.5 $0.00004 $0.00493

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

Security

Grade A, and why

create-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 9d 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/create-pr/SKILL.md · 412 lines

How it starts

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

Create Pull Request

References

File Content
references/pr-template.md PR body template, content generation guide, diagram pipeline
references/ci-monitor.md Background CI agent: polling, auto-fix logic, escalation rules
references/learnings.md Lessons from past PR sessions (review before each PR)

Working Directories

  1. Obsidian workspace (docs, plans, features): __VAULT_ROOT__
  2. Codebase (all LE services): __CODEBASE_ROOT__

Pre-checks

  1. Verify not on main or prod. If so, create a feature branch first.

  2. Check for uncommitted work, commit first if needed.

  3. Verify Manual-E2E-Recipe exists (mandatory, blocks PR creation):

    VAULT="__VAULT_ROOT__"
    TICKET=$(git branch --show-current | grep -oE 'EXP-[0-9]+|BUG007-[0-9]+' | head -1)
    RECIPE=$(find "$VAULT/Development/Features" -maxdepth 3 -name "Manual-E2E-Recipe.md" -path "*${TICKET}*" 2>/dev/null | head -1)
    [ -n "$RECIPE" ] && echo "E2E Recipe: $RECIPE" || echo "WARN: No Manual-E2E-Recipe.md found for $TICKET"
    

    If missing: run /test-scenarios first (Phase 5 creates the recipe). Do NOT proceed without it. If the feature is docs-only or config-only (no testable behavior), skip with note "N/A: config-only change".

  4. Run CI checks locally (mandatory, blocks PR creation): If /code-review already ran CI checks in this session AND all passed, skip this step (checks already validated). Otherwise, run the shared CI check script:

    ~/.claude/scripts/ci-local-check.sh .
    

    This auto-detects package.json scripts and runs lint, types, build, and tests in order.

    If ANY check fails: fix the issue, commit the fix, then retry. Do NOT proceed to PR creation with failing checks.

  5. Read the full diff: GIT_EDITOR=true git diff main...HEAD

  6. Read all changed files completely (not just the diff) to understand context.

  7. Prepend GIT_EDITOR=true to all git commands.

Read the full file on GitHub · 412 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. 9d ago First seen · 412 lines · 39 tokens per session scan A beb23bb49ceb

Subscribe to this mod's changes

create-pr is a skill published in the GitHub repository ivanhoinacki/team-exp-claude-config (2 stars, last pushed 1mo ago), licensed MIT. It adds 39 tokens to every session and 4,931 once invoked, about $0.0002 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.