create-pr

A guide for opening a draft pull request on GitHub, a service for hosting code and reviewing proposed changes.

In plain words
What is it for?
Use it to inspect local changes, push the current branch when needed, and create a draft pull request with a conventional title and body.
Why use it?
It provides a consistent title format and review-ready structure while checking the branch and repository conditions needed to create the request.

Skill for Claude CodeCodex

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 skills/lexmount/browseruse-agent-bench/create-pr
Any agent
npx skills add lexmount/browseruse-agent-bench --skill create-pr
Clone the repo
git clone --depth 1 https://github.com/lexmount/browseruse-agent-bench

Made for: Claude Code, Codex.

Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 564 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.00026 $0.00564
Opus 5 $0.00013 $0.00282
Sonnet 5 $0.00005 $0.00113
Haiku 4.5 $0.00003 $0.00056

Measured 2d ago against content hash a266059d395a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 2d 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.

browseruse_bench/skills/create-pr/SKILL.md · 125 lines

What it actually says

Create Pull Request

Create a draft GitHub pull request for this repository using gh.

Prerequisites

  1. gh is installed and authenticated.
  2. Your branch is pushed to origin.
  3. You are in the repository root.

PR Title Format

Use conventional commit style:

<type>(<scope>): <summary>

Types

  • feat: New feature
  • fix: Bug fix
  • perf: Performance improvement
  • refactor: Refactor without behavior change
  • docs: Documentation only
  • test: Tests only
  • build: Build/dependency changes
  • ci: CI workflow/config changes
  • chore: Maintenance tasks

Scope Suggestions

  • core
  • cli
  • agents
  • benchmarks
  • docs
  • skills

Summary Rules

  • Imperative present tense (for example: Add, Fix, Refactor)
  • Start with capital letter
  • No trailing period
  • Keep it specific and concise

Workflow

  1. Inspect local changes:
git status
git diff --stat
git log origin/main..HEAD --oneline
  1. Decide title components:
  • Type
  • Scope
  • Summary
  1. Push branch if needed:
git push -u origin HEAD
  1. Create draft PR:
gh pr create \
  --draft \
  --base main \
  --title "<type>(<scope>): <summary>" \
  --body "$(cat <<'PRBODY'
## Summary

- What changed
- Why it changed

## Testing

- [ ] `uv run ruff check .`
- [ ] `uv run pytest`

## Related

- Optional: `closes #<issue-number>`
PRBODY
)"

Body Guidelines

  • Summary: explain behavior change and key files touched.
  • Testing: list commands actually run.
  • Related: reference GitHub issues when available.

Examples

fix(cli): Propagate skills command exit code
docs(benchmarks): Correct LexBench split filenames
refactor(agents): Guard duplicate agent registration names

Validation Checklist

  • Title follows <type>(<scope>): <summary>.
  • Summary accurately reflects the patch.
  • Testing section contains real commands/results.
  • Related issue links are included when relevant.
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. 2d ago First seen · 125 lines · 26 tokens per session scan A a266059d395a

Subscribe to this mod's changes

create-pr is a skill published in the GitHub repository lexmount/browseruse-agent-bench (19 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 26 tokens to every session and 564 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.

Related

Other skills, from other repositories

agent-browser

Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extract data, and test web pages. Use whenever a browser would be useful, not just when the user explicitly asks.

suyoumo/ClawProBench · 51 tokens

dingtalk_channel_connect

Use a headed browser to automatically complete DingTalk channel integration for QwenPaw. Applicable when the user mentions DingTalk, developer console, Client ID, Client Secret, bot, Stream mode, binding or configuring a channel. Supports pausing when a login page is detected and resuming after the user logs in.

agentscope-ai/QwenPaw · 69 tokens

browser_cdp

当用户明确希望连接到已运行的 Chrome 浏览器、扫描本地 CDP 端口、显式指定 cdpport,或让多个 agent / 工具共享同一个浏览器时,使用本 skill。browser 默认不开放调试端口;仅当用户明确希望其他本地工具附加时才显式传入 cdpport。.

agentscope-ai/QwenPaw · 85 tokens

browser_visible

当用户需要控制 browser 的浏览器启动方式时,使用本 skill。browser 默认由 Playwright 直接管理、不开放调试端口(需让其他本地工具附加时显式传 cdpport);headed 控制是否显示窗口,privatemode 保留用于兼容、不再改变默认行为,browserargs 传入额外的 Chromium 启动参数,executablepath 指定自定义浏览器可执行文件路径。.

agentscope-ai/QwenPaw · 108 tokens

browser_visible

Use this skill when the user needs to control the browser launch mode for browser. By default browser is managed by Playwright and opens no debugging port (pass an explicit cdpport to let another local tool attach); headed controls whether the window is visible, and privatemode is kept for backward compatibility and…

agentscope-ai/QwenPaw · 75 tokens

browser

Drive a live browser with async Python against QwenPaw's builtin Browser SDK. The full reference is below; re-load this browser skill after context compaction.

agentscope-ai/QwenPaw · 35 tokens