Cloudflare worker cd
Skill MasashiFukuzawa/agent-toolbox/plugins/toolbox/skills/cloudflare-worker-cd
Reusable engineering skills for Claude Code and Codex
npx -y skills add MasashiFukuzawa/agent-toolbox --skill cloudflare-worker-cdAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 26 days oldThe repository was created 26 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Cloudflare Workers の deploy、smoke test、失敗時 rollback を設計・レビューする。本番 CD とリリース障害に使う。複数サービスのデータ整合性には cloudflare-data-pipeline を使う。
SKILL.md
1.5 KB, as published. Nobody here has run it
Cloudflare Workers CD
ガードレール
- deploy 前に rollback 先の version identifier を取得し、検証する。
- deploy 成功だけでリリース成功としない。外部から副作用のない smoke test を行う。
- smoke 失敗時は捕捉済み version へ戻し、rollback 自体も検証する。
- token、account identifier、production URL をログや成果物へ埋め込まない。
wranglerの command と出力形式は version 依存なので、実装時に公式 docs と--helpを確認する。
Pipeline contract
- preflight: 対象 environment、権限、migration、互換性を確認する。
- capture: 現在の正常 version を機械可読形式で保存する。
- deploy: command、version、結果を記録する。
- smoke: health だけでなく代表的な read path を timeout と retry 上限付きで確認する。
- rollback: smoke failure なら保存済み version へ戻す。
- report: deploy と rollback の双方を含む最終状態を通知し、失敗を成功扱いしない。
rollback 不能な migration や外部副作用がある場合は自動 deploy を止め、互換期間を持つ expand/contract 設計を先に行う。