carpeos-pr

carpeos-pr is a skill for Codex from innocarpe/CarpeOS. It costs 81 tokens per session (3,055 once invoked), scanned A, original, Apache-2.0.

A pull-request guide for CarpeOS repositories. A pull request is a proposed set of code changes submitted for review before it is merged into a project.

In plain words
What is it for?
Use it when creating or editing a PR, preparing a feature branch for review, or running GitHub CLI commands such as gh pr create or gh pr edit.
Why use it?
It prevents incomplete or misleading PR descriptions by requiring every template section, honest test results, and safe public-facing content.

Skill for Codex

Written for Codex: reads ~/.codex or $CODEX_HOME. Also seen: reads .claude/ paths; mentions Claude Code; mentions AGENTS.md.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./scripts/install-pr-skill.sh.

Good fit Use it when creating or editing a PR, preparing a feature branch for review, or running GitHub CLI commands such as gh pr create or gh pr edit.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/innocarpe/CarpeOS
agentmods
npx agentmods add skills/innocarpe/carpeos/carpeos-pr

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/innocarpe/carpeos/carpeos-pr/github.svg)](https://agentmods.dev/skills/innocarpe/carpeos/carpeos-pr)
Your own site
<a href="https://agentmods.dev/skills/innocarpe/carpeos/carpeos-pr"><img src="https://agentmods.dev/badge/skills/innocarpe/carpeos/carpeos-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 carpeos-pr

Your own site · 80×15
<a href="https://agentmods.dev/skills/innocarpe/carpeos/carpeos-pr"><img src="https://agentmods.dev/badge/skills/innocarpe/carpeos/carpeos-pr.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,055 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.00081 $0.03055
Opus 5 $0.00041 $0.01528
Sonnet 5 $0.00016 $0.00611
Haiku 4.5 $0.00008 $0.00305

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

Security

Grade A, and why

carpeos-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.

skills/carpeos-pr/SKILL.md · 307 lines

How it starts

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

CarpeOS Pull Request (shared harness skill)

Same standard for Claude Code, Codex CLI, Grok Build, and Gajae Code/GJC.

Minimal three-bullet PR bodies are not acceptable. Every PR must follow the repository template and fill every section with real content (or an explicit Not applicable / None / Not run where required).

Source of truth

Artifact Path
Template .github/PULL_REQUEST_TEMPLATE.md
Labels .github/labels.json + docs/maintainers/github-labels.md
Agent rules AGENTS.md (Pull Request section)
Contributing CONTRIBUTING.md

When to use

Trigger on: open PR, create PR, gh pr create, edit PR body, gh pr edit, update PR description, ship branch, stack PR, draft PR for review.

Hard rules

  1. Fill the full template — all sections below. Do not stop at Summary/Why/Test plan.
  2. No empty sections — if a section does not apply, write None or Not applicable with a one-line reason.
  3. Validation must be honest — only list commands you actually ran; put results in the table.
  4. Public boundary — no credentials, private paths, real project names, production logs, or runtime dumps. Use synthetic identifiers in examples.
  5. Labels are mandatory (hard gate) — every PR must have exactly one kind label (feat|fix|docs|spec|chore) and zero or one area label (capture|sync|retrieval|interfaces|infra). Prefer --label on gh pr create. If labels were omitted, apply immediately with gh pr edit <N> --add-label …. A PR without a kind label is incomplete.
  6. Commits MUST be atomic — each commit contains one independently understandable change, uses an English Conventional Commit subject, and does not mix unrelated files or concerns.
  7. PRs are semantic review units, not commit containers — a PR SHOULD include the complete set of tightly coupled atomic commits needed for one user-visible, architectural, or milestone-level change. Never create one PR per commit merely to make commit history look tidy unless the user explicitly requests commit-level PRs.
  8. Preserve atomic history — do not squash, reorder, or force-push atomic commits to manufacture a PR boundary. When a semantic change spans commits, use a stacked PR or a branch range whose diff is exactly that semantic unit.
  9. Before creating a PR, inspect git log <base>..<head> and git diff <base>...<head> --stat; confirm the PR has one semantic purpose, its base is intentional, and no unrelated commit/file has leaked in.
  10. Local preflight is mandatory (hard gate) — before gh pr create / push for review, run the local PR-lean gate and keep it green:
    • preferred: make preflight or pnpm preflight / pnpm preflight:pr
    • auto-format then gate: make preflight-fix
    • agent iteration only: make preflight-quick (not enough alone for PR open)
    • preflight runs format/lint/public-boundary in parallel, then build, then typecheck∥test, plus merge-tree conflict probe vs origin/main
    • list the exact preflight command + PREFLIGHT PASS in the Validation table
    • Do not open a PR on a red preflight. CI re-runs the same invariants; local green is required to stop wasting Actions minutes on format/boundary nits
    • still document Linux-only gaps (bubblewrap Product 4 sandbox, Gitleaks) as Not run — Linux GHA only when applicable
  11. Title — English Conventional Commit subject matching the semantic PR change (and matching the kind label).
  12. Length — aim for a reviewable body: enough that a cold reviewer can understand problem, approach, risk, and how to verify without reading the whole diff. Prefer complete sentences over telegram bullets alone.
  13. Post-create verify — after create/edit, run the label gate below. Do not report the PR as done until it passes.

Read the full file on GitHub · 307 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. 10d ago First seen · 307 lines · 81 tokens per session scan A 004d6caa21f0

Subscribe to this mod's changes

carpeos-pr is a skill published in the GitHub repository innocarpe/CarpeOS (0 stars, last pushed 26d ago), licensed Apache-2.0. It adds 81 tokens to every session and 3,055 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

issue-match

Measure a target repository's queue and find a live open issue the contribution would close, before opening a pull request there. Reports how many PRs are open, how many of the last N closed ones were actually merged, and which issue to attach to, because a cold PR into a dead queue is a wasted artifact. Triggers…

tonydzi/second-brain-starter-kit · 87 tokens

sync-brain-starter

Sync reusable skills, configs, and templates from the private brain repo to the public brain-starter template repo. Use when you've updated a skill or config and want to push it to the open-source template.

michaeljauk/brain-starter · 47 tokens

retro

Close a work session properly: reconcile it against the wider collaboration, inventory what was actually built from git log and recently-touched files, summarize the arc, classify each artifact as keep, one-off or promote-to-permanent, route the durable ones to memory, canon or a new skill, save the retro as a vault…

tonydzi/second-brain-starter-kit · 101 tokens

release-slice

Open-source one slice of a private system: take a component, sanitize it, run a leak-scan as a hard gate, publish to GitHub, then changelog, roadmap and tag on cadence, then the content wave. Publishing without passing the leak-scan is forbidden. Triggers: "/release-slice ", "ship the next slice".

tonydzi/second-brain-starter-kit · 76 tokens

clone-projects

Clone or sync the project repositories you work on into a local workspace laid out by the same domains as the vault, so notes and code sit side by side. Use when setting up a machine, onboarding a new project, or refreshing all clones.

tanya-ok/engineering-os · 53 tokens

wiki-build

A tool for building or rebuilding a local wiki from all source files in a vault, which is a folder used to store source material. It creates structured pages, layered indexes, logs, and cross-links.

zhuzhaoyun/Molio · 0 tokens