원클릭으로
deploy-checklist
Deployment checklist and commands for Node2Flow services. Auto-loads when deploying gateway, dashboard, or platform-worker.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deployment checklist and commands for Node2Flow services. Auto-loads when deploying gateway, dashboard, or platform-worker.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | deploy-checklist |
| description | Deployment checklist and commands for Node2Flow services. Auto-loads when deploying gateway, dashboard, or platform-worker. |
| disable-model-invocation | true |
# 1. Verify TypeScript compiles (ALWAYS first)
pnpm turbo build
If build fails → fix TypeScript errors before deploying.
mcp.node2flow.net)cd apps/mcp-gateway && npx wrangler deploy
app.node2flow.net)cd apps/dashboard && npx wrangler pages deploy dist --project-name=node2flow-dashboard
platform.node2flow.net)cd apps/platform-worker && npx wrangler deploy
pnpm turbo build && cd apps/mcp-gateway && npx wrangler deploy && cd ../dashboard && npx wrangler pages deploy dist --project-name=node2flow-dashboard
# Health checks
curl -s https://mcp.node2flow.net/ | head -5
curl -s -o /dev/null -w "%{http_code}" https://app.node2flow.net/
curl -s https://platform.node2flow.net/ | head -5
cd apps/mcp-gateway && npx wrangler d1 migrations apply node2flow-products-db
cd apps/platform-worker && npx wrangler d1 migrations apply node2flow-platform-db
# Set a new secret
cd apps/mcp-gateway && npx wrangler secret put SECRET_NAME
# List existing secrets
cd apps/mcp-gateway && npx wrangler secret list
Never display secret values. Only set new ones when explicitly requested.
| Issue | Fix |
|---|---|
| TypeScript error in packages | pnpm turbo build catches it — fix source in packages/ |
| Dashboard deploy fails | Ensure dist/ exists — run tsc -b && vite build first |
| Wrangler auth expired | npx wrangler login |
| D1 migration conflict | Check migrations/ folder for duplicate numbers |
Auto-loads when creating or editing a plugin Connections.tsx page. Provides the exact standardized pattern used by all 32 plugins.
Auto-loads when editing dashboard CSS, styling, or UI components. Provides the dark theme CSS variables, component patterns, and design conventions.
Auto-loads when creating a new MCP plugin. Provides complete file templates for backend (gateway) and frontend (dashboard) plugin files with all required patterns.