cloudflare-deployment
Deep knowledge about deploying applications to Cloudflare (Pages, Workers, Wrangler).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deep knowledge about deploying applications to Cloudflare (Pages, Workers, Wrangler).
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Deterministic AI development workflow orchestrator. Manages task boards (.jonggrang/jonggrang-tasks.json), runs 16-phase pipelines (BUGFIX/SMALL/MEDIUM/LARGE), installs lifecycle hooks for Claude Code and OpenCode, and coordinates five specialist roles (Lead/Developer/Reviewer/TestLead/Tester). Use when planning features, executing multi-step development workflows, or orchestrating AI coding agents. Run via npx jonggrang.
16-phase feature orchestration workflow. Runs in the main thread as Kernel Mode. Coordinates the Lead→Developer→Reviewer→TestLead→Tester assembly line.
Protocol for agents to write structured outputs that survive session resets and are findable by the orchestrator.
GitHub workflow automation with the gh CLI — pull requests, issues, releases, the REST/GraphQL API, and safe message escaping. Auth via GH_TOKEN (set in global settings, attached to the sandbox env).
GitLab workflow automation with the glab CLI — merge requests, issues, CI, releases, and safe message escaping. Auth via GITLAB_TOKEN (set in global settings, attached to the sandbox env).
Prevents premature exit and infinite loops. Three mechanisms: Completion Promises, Scratchpads, Loop Detection.
| name | cloudflare-deployment |
| description | Deep knowledge about deploying applications to Cloudflare (Pages, Workers, Wrangler). |
| type | transform |
| tier | library |
| domain | deploy |
| trigger | when deploying to Cloudflare |
Deploying {{project_name}} ({{project_type}}) to Cloudflare (Pages or Workers). You will follow a strict 6-phase Deployment Lifecycle Contract.
Execute the following phases in order:
CLOUDFLARE_API_TOKEN environment variable is set to a valid Cloudflare API Token.npx wrangler login. However, for automated agents, ensure the token is provided.npx wrangler whoami.npm run build or yarn build) to generate the output directory (e.g., dist/ or out/).npm run build if your project requires transpilation (e.g., TypeScript). Wrangler may handle this automatically if configured.wrangler.toml (for Workers) or wrangler.json (for modern Workers). Ensure the name field matches the intended project name.npx wrangler pages deploy <output-directory> --project-name <PROJECT_NAME>.npx wrangler deploy.https://<PROJECT_NAME>.pages.dev or https://<WORKER_NAME>.<SUBDOMAIN>.workers.dev).curl -sSf <URL> to ensure the application returns a 200 OK status code. If it fails, use npx wrangler tail to inspect logs.npx wrangler rollback <VERSION_ID>. You can find versions using npx wrangler deployments list.wrangler whoami) succeeds.