|
| 1 | +{ |
| 2 | + "workflows": [ |
| 3 | + { |
| 4 | + "id": "engineering-ci", |
| 5 | + "name": "Engineering CI", |
| 6 | + "description": "Install, lint, test, and build with pnpm defaults.", |
| 7 | + "commandTemplates": [ |
| 8 | + "pnpm install --frozen-lockfile", |
| 9 | + "pnpm lint", |
| 10 | + "pnpm test", |
| 11 | + "pnpm build" |
| 12 | + ] |
| 13 | + }, |
| 14 | + { |
| 15 | + "id": "founder-landing-launch", |
| 16 | + "name": "Founder Landing Launch", |
| 17 | + "description": "Validate and build landing page plus dashboard for deployment.", |
| 18 | + "commandTemplates": [ |
| 19 | + "cd opencto/opencto-landing && npm ci", |
| 20 | + "cd opencto/opencto-landing && npm run build", |
| 21 | + "cd opencto/opencto-dashboard && npm ci", |
| 22 | + "cd opencto/opencto-dashboard && npm run lint", |
| 23 | + "cd opencto/opencto-dashboard && npm run build" |
| 24 | + ] |
| 25 | + }, |
| 26 | + { |
| 27 | + "id": "founder-content-seo", |
| 28 | + "name": "Founder Content SEO", |
| 29 | + "description": "Generate SEO assets and validate output artifacts.", |
| 30 | + "commandTemplates": [ |
| 31 | + "npm run content:plan -- --topic \"{{topic}}\"", |
| 32 | + "npm run content:draft -- --topic \"{{topic}}\" --persona \"{{persona}}\"", |
| 33 | + "npm run content:publish -- --topic \"{{topic}}\"" |
| 34 | + ] |
| 35 | + }, |
| 36 | + { |
| 37 | + "id": "founder-sales-outreach", |
| 38 | + "name": "Founder Sales Outreach", |
| 39 | + "description": "Generate lead list and outbound sequence assets.", |
| 40 | + "commandTemplates": [ |
| 41 | + "npm run sales:leads -- --segment \"{{segment}}\"", |
| 42 | + "npm run sales:sequence -- --segment \"{{segment}}\" --offer \"{{offer}}\"", |
| 43 | + "npm run sales:send -- --segment \"{{segment}}\"" |
| 44 | + ] |
| 45 | + }, |
| 46 | + { |
| 47 | + "id": "founder-demo-pack", |
| 48 | + "name": "Founder Demo Pack", |
| 49 | + "description": "Assemble product + GTM demo artifacts for judges or customers.", |
| 50 | + "commandTemplates": [ |
| 51 | + "npm run demo:product", |
| 52 | + "npm run demo:marketing", |
| 53 | + "npm run demo:ops", |
| 54 | + "npm run demo:bundle" |
| 55 | + ] |
| 56 | + }, |
| 57 | + { |
| 58 | + "id": "sdk-release-check", |
| 59 | + "name": "SDK Release Check", |
| 60 | + "description": "Quality gates for sdk and cli packages before publish.", |
| 61 | + "commandTemplates": [ |
| 62 | + "cd opencto/opencto-sdk-js && npm ci", |
| 63 | + "cd opencto/opencto-sdk-js && npm run lint", |
| 64 | + "cd opencto/opencto-sdk-js && npm run test", |
| 65 | + "cd opencto/opencto-sdk-js && npm run build", |
| 66 | + "cd opencto/opencto-cli && npm ci", |
| 67 | + "cd opencto/opencto-cli && npm run lint", |
| 68 | + "cd opencto/opencto-cli && npm run test", |
| 69 | + "cd opencto/opencto-cli && npm run build" |
| 70 | + ] |
| 71 | + } |
| 72 | + ] |
| 73 | +} |
0 commit comments