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.
npx skills add johnqtcg/awesome-skills --skill create-prgit clone --depth 1 https://github.com/johnqtcg/awesome-skillsWrote 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.
[](https://agentmods.dev/skills/johnqtcg/awesome-skills/create-pr)<a href="https://agentmods.dev/skills/johnqtcg/awesome-skills/create-pr"><img src="https://agentmods.dev/badge/skills/johnqtcg/awesome-skills/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.
<a href="https://agentmods.dev/skills/johnqtcg/awesome-skills/create-pr"><img src="https://agentmods.dev/badge/skills/johnqtcg/awesome-skills/create-pr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00059 | $0.03963 |
| Opus 5 | $0.00030 | $0.01982 |
| Sonnet 5 | $0.00012 | $0.00793 |
| Haiku 4.5 | $0.00006 | $0.00396 |
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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 300 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create PR
Create a high-quality PR to main that is easy to review, safe to merge, and explicit about risk.
Canonical Implementation
The bundled scripts/create_pr.py is the preferred execution path for Gates A–H: when Python 3 is available, run the gates through it (references/bundled-script-guide.md) instead of hand-executing the prose commands below. The prose workflow serves two roles — the specification the script must implement, and the fallback for environments without Python. If the two ever disagree, the prose specification wins and the script is the side to fix. Shared constants (size thresholds, confidence levels, gate statuses, secret-scan semantics) are consistency-tested in scripts/tests/test_skill_contract.py — update both sides together.
The script distinguishes blocks_publish from blocks_ready. Repository identity/auth failures, publishing from main, unsafe branch state, incomplete diff/security evidence, high-confidence secret findings, and invalid PR titles are hard publication blockers: stop before git push. Quality, documentation, narrative, or compatibility gaps may still publish a draft, but never a ready PR.
Quick Reference
| Step | Gate | What it checks | Blocker? |
|---|---|---|---|
| 1 | — | Scope the change | — |
| 2 | A | GitHub auth, remote, base branch, branch protection | Yes |
| 3 | B | Not on main, branch naming, no conflicts, synced with origin/main |
Yes |
| 4 | C | High-risk areas, change size (≤400 / 401-800 / >800 lines) | Warn |
| 5 | D | Tests, lint, build | Yes |
| 6 | E | Secret scan, gosec, govulncheck | Yes (high-confidence) |
| 7 | F | Docs/changelog, backward compatibility, breaking changes | Yes |
| 8 | G | Conventional Commits (commits + PR title), scope confirmation, self-review | Yes |
| 9 | — | Compose PR title/body | — |
| 10 | — | If no hard blocker: git push -u + gh pr create |
— |
| 11 | H | Assert base/head, title/body render, open state, draft/ready state | Yes |
What ships with it
21 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.
- references/bundled-script-guide.md 2.8 KB
- references/create-pr-checklists.md 3.1 KB
- references/create-pr-config.example.yaml 1.0 KB
- references/merge-strategy-guide.md 2.4 KB
- references/pr-body-template.md 1.2 KB
- scripts/create_pr.py 70 KB runs code
- scripts/run_regression.sh 695 B runs code
- scripts/tests/COVERAGE.md 2.8 KB
- scripts/tests/golden/001_ready_small_change.json 685 B
- scripts/tests/golden/002_branch_protection_suppressed.json 822 B
- scripts/tests/golden/003_behind_main_blocker.json 720 B
- scripts/tests/golden/004_high_risk_auth_change.json 686 B
- scripts/tests/golden/005_oversized_pr_warning.json 668 B
- scripts/tests/golden/006_quality_gap_keeps_draft.json 728 B
- scripts/tests/golden/007_existing_pr_update.json 786 B
- scripts/tests/golden/008_squash_merge_title_priority.json 651 B
- scripts/tests/golden/009_secret_leak_blocker.json 663 B
- scripts/tests/test_create_pr.py 26 KB runs code
- scripts/tests/test_golden_scenarios.py 6.3 KB runs code
- scripts/tests/test_integration_repo.py 12 KB runs code
- scripts/tests/test_skill_contract.py 22 KB runs code
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.
- 10d ago First seen · 300 lines · 59 tokens per session scan A cf07b9ce99a5
create-pr is a skill published in the GitHub repository johnqtcg/awesome-skills (30 stars, last pushed today), licensed MIT. It adds 59 tokens to every session and 3,963 once invoked, about $0.0003 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.
Other skills, from other repositories
security-pipeline
Use when security verification is needed - pre-commit security checks, vulnerability scanning, STRIDE threat analysis. Integrates with /handoff-verify --security and /commit-push-pr. CWE Top 25 based.
security-compliance
Guides security professionals in implementing defense-in-depth security architectures, achieving compliance with industry frameworks (SOC2, ISO27001, GDPR, HIPAA), conducting threat modeling and risk assessments, managing security operations and incident response, and embedding security throughout the SDLC.
cache-components
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). PROACTIVE ACTIVATION: Use this skill automatically when working in Next.js projects that have cacheComponents: true in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best…
manage-skills
A maintenance workflow for checking whether project verification skills still cover the code and rules that changed during a session.
stride-analysis-patterns
Apply STRIDE methodology to systematically identify threats. Use when analyzing system security, conducting threat modeling sessions, or creating security documentation.
blind-spot-pass
Use before starting work in a domain you don't know well, to surface the "unknown unknowns" — the things you don't even know to ask about — and learn just enough to prompt and decide well. Implements the "blind spot pass" pattern from Anthropic's Fable "finding your unknowns" field guide. Triggers when you say "I'm…