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 agentmods add skills/wallkop/opc-develop/deploynpx skills add wallkop/opc-develop --skill deploygit clone --depth 1 https://github.com/wallkop/opc-developWhat 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 | $0.00082 | $0.01009 |
| Opus 5 | $0.00041 | $0.00504 |
| Sonnet 5 | $0.00016 | $0.00202 |
| Haiku 4.5 | $0.00008 | $0.00101 |
Grade A, and why
deploy 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 yesterday.
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 — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.
deploy
Production release as its own flow. Where every other skill fails open, this one fails closed: no verified precondition, no deploy.
Load
${CLAUDE_PLUGIN_ROOT}/shared/core-contract.md${CLAUDE_PLUGIN_ROOT}/shared/packs/release-ops.md${CLAUDE_PLUGIN_ROOT}/shared/packs/evidence.md${CLAUDE_PLUGIN_ROOT}/shared/packs/branch-worktree.md${CLAUDE_PLUGIN_ROOT}/shared/formats/report-style.md
Stages
When the project has a release ledger, resume after the last release entry with result: ok.
- preflight (fail-closed, all mandatory):
- define the release set first: the increments whose merge commits landed on the trunk
since the last
deploy-prod: okledger entry (or release tag), or an explicit human-declared list. Record the set — increment/slug when one exists + merge commits — through the project release mechanism; everything below is checked per increment in the set; - all released code merged to the trunk (
developor per AGENTS.md) — verify the merge commits, not the claim; - after the release set is fixed and all merge commits are present, refresh evidence once on the same combined trunk. For Build, refresh every receipt, core journey, and focused regression. For Lite, rerun its focused regressions, matching risk checks, relevant real-entry checks, and the project's complete release/predeploy gate. Use offline replay before at most one release-set provider canary when that provider path changed;
- test acceptance recorded
okfor every increment. Build additionally requiresopc_increment.py check --require human-acceptedfor each refreshed receipt. Lite requires commit-bound command/exit/evidence records through the project's native release mechanism; optional artifact chains are checked only when those artifacts exist; - applicable release records are complete for every increment: every DDL item has a rollback entry, every env var is provisioned (names verified, values via human/secret manager), and every third-party item has an owner;
- rollback readiness proven: previous version identifiable and redeployable, down path for
every DDL item or explicit human ack of
[ONE-WAY]migrations; - production runbook (deploy + rollback) exists and was read. Any miss ⇒ stop and report; do not improvise production mechanics.
- define the release set first: the increments whose merge commits landed on the trunk
since the last
- env-prod: apply environment changes in manifest order — backup before every DDL touching existing data (record backup paths in the ledger), data backfills (idempotent, scoped, dry-run first when the runbook allows), config and server changes. Each destructive item gets its own human confirmation; batch approval is not a thing here.
- deploy-prod: release per the project runbook (canary/staged rollout when the runbook defines one), with explicit human confirmation to start.
- regression-prod: for Build, run the approved
@prod-safetestcase subset through the project runner. For Lite, run the project's prod-safe focused checks for the touched path and reuse a matching tagged testcase when one exists. Keep production checks read-only unless the runbook and human explicitly authorize mutation. Record real-surface labels only for what actually ran. - watch: monitor the runbook's signals (error rates, key logs, business metrics) for its stated window. Anomaly ⇒ the decision is rollback-first: propose the rollback path immediately, fix-forward only with the human's explicit choice.
- close: final ledger entries (stages, backups, evidence), residual gaps carried forward,
suggest
retro. Write the human handoff underdocs/opc/deploy/as markdown truth plus a rendered/linted HTML companion using plain language and first-use term explanations.
What ships with it
1 file 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.
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.
- yesterday First seen · 73 lines · 82 tokens per session scan A 0f4d258cda9a
deploy is a skill published in the GitHub repository wallkop/opc-develop (11 stars, last pushed 1mo ago), licensed MIT. It adds 82 tokens to every session and 1,009 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-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…