ワンクリックで
release
// 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.
// 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.
[HINT] SKILL.mdと関連ファイルを含む完全なスキルディレクトリをダウンロード
| name | release |
| description | 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. |
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: