一键导入
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 职业分类
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.
| 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 |