.agents/skills/release/SKILL.md
Coordinate a full Paperclip release across engineering verification, npm, GitHub, smoke testing, and announcement follow-up. Use when leadership asks to ship a release, not merely to discuss versioning.
npx skillsauth add paperclipai/paperclip releaseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Run the full Paperclip maintainer release workflow, not just an npm publish.
This skill coordinates:
release-changelogmasterscripts/docker-onboard-smoke.shUse this skill when leadership asks for:
Before proceeding, verify all of the following:
.agents/skills/release-changelog/SKILL.md exists and is usable.pnpm-lock.yaml refresh is already merged on master.If any precondition fails, stop and report the blocker.
Collect these inputs up front:
source_ref for stablePaperclip now uses a commit-driven release model:
master publishes a canary automaticallyYYYY.MDD.P-canary.NYYYY.MDD.PMDD, where M is the UTC month and DD is the zero-padded UTC dayreleases/vYYYY.MDD.P.md, git tag vYYYY.MDD.P, and a GitHub ReleaseCritical consequences:
For canary validation:
masterFor stable promotion:
./scripts/release.sh stable --date YYYY-MM-DD --print-versionUseful commands:
git tag --list 'v*' --sort=-version:refname | head -1
git log --oneline --no-merges
npm view paperclipai@canary version
Stable changelog files live at:
releases/vYYYY.MDD.P.mdInvoke release-changelog and generate or update the stable notes only.
Rules:
Run the standard gate:
pnpm -r typecheck
pnpm test:run
pnpm build
If the GitHub release workflow will run the publish, it can rerun this gate. Still report local status if you checked it.
For PRs that touch release logic, the repo also runs a canary release dry-run in CI. That is a release-specific guard, not a substitute for the standard gate.
The normal canary path is automatic from master via:
.github/workflows/release.ymlConfirm:
canary/vYYYY.MDD.P-canary.N existsUseful checks:
npm view paperclipai@canary version
git tag --list 'canary/v*' --sort=-version:refname | head -5
Run:
PAPERCLIPAI_VERSION=canary ./scripts/docker-onboard-smoke.sh
Useful isolated variant:
HOST_PORT=3232 DATA_DIR=./data/release-smoke-canary PAPERCLIPAI_VERSION=canary ./scripts/docker-onboard-smoke.sh
Confirm:
If smoke testing fails:
masterThe normal stable path is manual workflow_dispatch on:
.github/workflows/release.ymlInputs:
source_refstable_datedry_runBefore live stable:
./scripts/release.sh stable --date YYYY-MM-DD --print-versionreleases/vYYYY.MDD.P.md exists on the source refThe stable workflow:
YYYY.MDD.P under dist-tag latestvYYYY.MDD.Preleases/vYYYY.MDD.P.mdLocal emergency/manual commands:
./scripts/release.sh stable --dry-run
./scripts/release.sh stable
git push public-gh refs/tags/vYYYY.MDD.P
./scripts/create-github-release.sh YYYY.MDD.P
Create or verify follow-up work for:
These should reference the stable release, not the canary.
If the canary is bad:
If stable npm publish succeeds but tag push or GitHub release creation fails:
If latest is bad after stable publish:
./scripts/rollback-latest.sh <last-good-version>
Then fix forward with a new stable release.
When the skill completes, provide:
tools
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.
tools
Run a single Terminal-Bench problem through Paperclip in a bounded, human-in-the-loop improvement cycle until the smoke passes, the board rejects the next fix, the iteration budget is exhausted, or a real blocker is named. Each iteration runs a bounded smoke against an isolated Paperclip App worktree, captures artifacts, diagnoses the exact stop point with `/diagnose-why-work-stopped`, requests board confirmation before any product fix, then reruns against the same worktree. Use whenever an issue asks to "run Terminal-Bench in a loop", "drive Terminal-Bench until it passes", "loop fix-git through Paperclip", or otherwise points at a Terminal-Bench task and asks for bounded iteration with diagnosis.
tools
Create new agents in Paperclip with governance-aware hiring. Use when you need to inspect adapter configuration options, compare existing agent configs, draft a new agent prompt/config, and submit a hire request.
development
How to handle "why did this work stop / why is this looping?" assignments. Forensics first on the named tree, surface the exact stop-point, frame the fix as a general product rule that respects three invariants (productive work continues, only real blockers stop work, no infinite loops), and deliver a plan — no code changes — gated by board/CTO approval before child issues are created. Use whenever the issue title or body asks for forensics on a stalled, looping, or "went too deep" tree.