@rubytech/create-sitedesk-code 0.1.386 → 0.1.388

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (306) hide show
  1. package/dist/__tests__/cron-heartbeat-registration.test.js +5 -0
  2. package/dist/cron-registration.js +1 -0
  3. package/dist/index.js +4 -0
  4. package/package.json +1 -1
  5. package/payload/platform/config/brand.json +3 -3
  6. package/payload/platform/neo4j/schema.cypher +36 -1
  7. package/payload/platform/plugins/.claude-plugin/marketplace.json +5 -5
  8. package/payload/platform/plugins/admin/skills/platform-architecture/SKILL.md +61 -1
  9. package/payload/platform/plugins/docs/references/graph.md +11 -0
  10. package/payload/platform/plugins/docs/references/plugins-guide.md +1 -0
  11. package/payload/platform/plugins/docs/references/sweep-guide.md +43 -0
  12. package/payload/platform/plugins/memory/references/schema-estate-agent.md +34 -0
  13. package/payload/platform/plugins/scheduling/PLUGIN.md +17 -1
  14. package/payload/platform/plugins/scheduling/mcp/dist/index.js +12 -0
  15. package/payload/platform/plugins/scheduling/mcp/dist/index.js.map +1 -1
  16. package/payload/platform/plugins/scheduling/mcp/dist/lib/__tests__/agent-dispatch.test.d.ts +2 -0
  17. package/payload/platform/plugins/scheduling/mcp/dist/lib/__tests__/agent-dispatch.test.d.ts.map +1 -0
  18. package/payload/platform/plugins/scheduling/mcp/dist/lib/__tests__/agent-dispatch.test.js +101 -0
  19. package/payload/platform/plugins/scheduling/mcp/dist/lib/__tests__/agent-dispatch.test.js.map +1 -0
  20. package/payload/platform/plugins/scheduling/mcp/dist/lib/agent-dispatch.d.ts +54 -0
  21. package/payload/platform/plugins/scheduling/mcp/dist/lib/agent-dispatch.d.ts.map +1 -0
  22. package/payload/platform/plugins/scheduling/mcp/dist/lib/agent-dispatch.js +117 -0
  23. package/payload/platform/plugins/scheduling/mcp/dist/lib/agent-dispatch.js.map +1 -0
  24. package/payload/platform/plugins/scheduling/mcp/dist/lib/schedule-classify.d.ts +7 -0
  25. package/payload/platform/plugins/scheduling/mcp/dist/lib/schedule-classify.d.ts.map +1 -1
  26. package/payload/platform/plugins/scheduling/mcp/dist/lib/schedule-classify.js +6 -3
  27. package/payload/platform/plugins/scheduling/mcp/dist/lib/schedule-classify.js.map +1 -1
  28. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/agent-turn-dispatch.test.d.ts +2 -0
  29. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/agent-turn-dispatch.test.d.ts.map +1 -0
  30. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/agent-turn-dispatch.test.js +88 -0
  31. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/agent-turn-dispatch.test.js.map +1 -0
  32. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/standing-audit.test.d.ts +2 -0
  33. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/standing-audit.test.d.ts.map +1 -0
  34. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/standing-audit.test.js +77 -0
  35. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/standing-audit.test.js.map +1 -0
  36. package/payload/platform/plugins/scheduling/mcp/dist/scripts/agent-turn-dispatch.d.ts +59 -0
  37. package/payload/platform/plugins/scheduling/mcp/dist/scripts/agent-turn-dispatch.d.ts.map +1 -0
  38. package/payload/platform/plugins/scheduling/mcp/dist/scripts/agent-turn-dispatch.js +131 -0
  39. package/payload/platform/plugins/scheduling/mcp/dist/scripts/agent-turn-dispatch.js.map +1 -0
  40. package/payload/platform/plugins/scheduling/mcp/dist/scripts/check-due-events.js +62 -15
  41. package/payload/platform/plugins/scheduling/mcp/dist/scripts/check-due-events.js.map +1 -1
  42. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-event-agent.test.d.ts +2 -0
  43. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-event-agent.test.d.ts.map +1 -0
  44. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-event-agent.test.js +110 -0
  45. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-event-agent.test.js.map +1 -0
  46. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-get-agent.test.d.ts +2 -0
  47. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-get-agent.test.d.ts.map +1 -0
  48. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-get-agent.test.js +35 -0
  49. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-get-agent.test.js.map +1 -0
  50. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-update-agent.test.d.ts +2 -0
  51. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-update-agent.test.d.ts.map +1 -0
  52. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-update-agent.test.js +81 -0
  53. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-update-agent.test.js.map +1 -0
  54. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.d.ts +7 -0
  55. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.d.ts.map +1 -1
  56. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.js +21 -4
  57. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.js.map +1 -1
  58. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-get.d.ts +4 -0
  59. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-get.d.ts.map +1 -1
  60. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-get.js +6 -0
  61. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-get.js.map +1 -1
  62. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-update.d.ts +2 -1
  63. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-update.d.ts.map +1 -1
  64. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-update.js +32 -1
  65. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-update.js.map +1 -1
  66. package/payload/platform/plugins/sweep/.claude-plugin/plugin.json +8 -0
  67. package/payload/platform/plugins/sweep/PLUGIN.md +15 -0
  68. package/payload/platform/plugins/sweep/skills/sweep-workflow/SKILL.md +113 -0
  69. package/payload/platform/plugins/whatsapp/PLUGIN.md +1 -1
  70. package/payload/platform/plugins/whatsapp/mcp/dist/index.js +19 -4
  71. package/payload/platform/plugins/whatsapp/mcp/dist/index.js.map +1 -1
  72. package/payload/platform/plugins/whatsapp/references/channels-whatsapp.md +9 -4
  73. package/payload/platform/plugins/whatsapp/skills/manage-whatsapp-config/SKILL.md +12 -0
  74. package/payload/platform/scripts/seed-neo4j.sh +38 -0
  75. package/payload/platform/services/whatsapp-channel/dist/notification.d.ts +5 -0
  76. package/payload/platform/services/whatsapp-channel/dist/notification.d.ts.map +1 -1
  77. package/payload/platform/services/whatsapp-channel/dist/notification.js.map +1 -1
  78. package/payload/platform/services/whatsapp-channel/dist/server.js +1 -1
  79. package/payload/platform/services/whatsapp-channel/dist/server.js.map +1 -1
  80. package/payload/premium-plugins/.claude-plugin/marketplace.json +0 -15
  81. package/payload/server/public/assets/{AdminLoginScreens-oxqHKL3C.js → AdminLoginScreens-BejIjbmU.js} +1 -1
  82. package/payload/server/public/assets/{AdminShell-DBD6ruS1.js → AdminShell-D2-uBSB5.js} +1 -1
  83. package/payload/server/public/assets/{Checkbox-yr8-ftrE.js → Checkbox-1F1tzqca.js} +1 -1
  84. package/payload/server/public/assets/Transcript-DkGa4CQH.js +2 -0
  85. package/payload/server/public/assets/{admin-CQfZnuFy.js → admin-DqQARkjy.js} +1 -1
  86. package/payload/server/public/assets/{browser-DbdPeDK1.js → browser-nDtEK6RC.js} +1 -1
  87. package/payload/server/public/assets/{calendar-CFdOhe7Q.js → calendar-CO4Bwmho.js} +1 -1
  88. package/payload/server/public/assets/chat-DeIge_bC.js +1 -0
  89. package/payload/server/public/assets/chevron-left-DhVdq0aN.js +1 -0
  90. package/payload/server/public/assets/data-B1GIdzHk.js +1 -0
  91. package/payload/server/public/assets/{graph-Bluocsf_.js → graph-DFyicKd7.js} +1 -1
  92. package/payload/server/public/assets/{graph-labels-BcLJmY-v.js → graph-labels-D3BQdcpD.js} +1 -1
  93. package/payload/server/public/assets/{operator-DjK3MBSS.js → operator-BxrjWdT9.js} +1 -1
  94. package/payload/server/public/assets/{page-DQNYTb2d.js → page-ByDLq_o1.js} +1 -1
  95. package/payload/server/public/assets/{page-zJQTRXB2.js → page-D-Ep4bXd.js} +1 -1
  96. package/payload/server/public/assets/{public-CHCniosp.js → public-DbdqfdYq.js} +1 -1
  97. package/payload/server/public/assets/{rotate-ccw-JDfwjfIL.js → rotate-ccw-BkX8HODe.js} +1 -1
  98. package/payload/server/public/assets/{useSubAccountSwitcher-CfI3J2IX.css → useSubAccountSwitcher-DS0iqSkP.css} +1 -1
  99. package/payload/server/public/browser.html +4 -4
  100. package/payload/server/public/calendar.html +5 -5
  101. package/payload/server/public/chat.html +8 -8
  102. package/payload/server/public/data.html +7 -7
  103. package/payload/server/public/graph.html +8 -8
  104. package/payload/server/public/index.html +10 -10
  105. package/payload/server/public/operator.html +10 -10
  106. package/payload/server/public/public.html +8 -8
  107. package/payload/server/server.js +713 -331
  108. package/payload/platform/plugins/sales/.claude-plugin/plugin.json +0 -8
  109. package/payload/platform/plugins/sales/PLUGIN.md +0 -106
  110. package/payload/platform/plugins/sales/references/close-tracking.md +0 -69
  111. package/payload/platform/plugins/sales/references/comparisons.md +0 -99
  112. package/payload/platform/plugins/sales/references/competitive-positioning.md +0 -51
  113. package/payload/platform/plugins/sales/references/faq.md +0 -73
  114. package/payload/platform/plugins/sales/references/objection-handling.md +0 -157
  115. package/payload/platform/plugins/sales/references/pricing.md +0 -101
  116. package/payload/premium-plugins/teaching/.claude-plugin/plugin.json +0 -8
  117. package/payload/premium-plugins/teaching/PLUGIN.md +0 -58
  118. package/payload/premium-plugins/teaching/skills/interactive-tutor/SKILL.md +0 -59
  119. package/payload/premium-plugins/teaching/skills/interactive-tutor/references/assessment.md +0 -70
  120. package/payload/premium-plugins/teaching/skills/interactive-tutor/references/classroom-conduct.md +0 -43
  121. package/payload/premium-plugins/teaching/skills/interactive-tutor/references/teaching-modes.md +0 -83
  122. package/payload/premium-plugins/teaching/skills/lesson-planner/SKILL.md +0 -48
  123. package/payload/premium-plugins/teaching/skills/lesson-planner/references/context-gathering.md +0 -41
  124. package/payload/premium-plugins/teaching/skills/lesson-planner/references/plan-structure.md +0 -94
  125. package/payload/premium-plugins/teaching/skills/study-pack-builder/SKILL.md +0 -52
  126. package/payload/premium-plugins/teaching/skills/study-pack-builder/references/disaggregation.md +0 -49
  127. package/payload/premium-plugins/teaching/skills/study-pack-builder/references/materials.md +0 -116
  128. package/payload/premium-plugins/venture-studio/.claude-plugin/plugin.json +0 -8
  129. package/payload/premium-plugins/venture-studio/PLUGIN.md +0 -128
  130. package/payload/premium-plugins/venture-studio/bin/scaffold.sh +0 -116
  131. package/payload/premium-plugins/venture-studio/skills/brand-pack/SKILL.md +0 -256
  132. package/payload/premium-plugins/venture-studio/skills/brand-pack/references/color-psychology.md +0 -118
  133. package/payload/premium-plugins/venture-studio/skills/investor-data-room/SKILL.md +0 -436
  134. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/business-plan-template.md +0 -64
  135. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/competitive-battlecard.md +0 -37
  136. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/competitor-analysis.md +0 -32
  137. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/compliance-research-checklist.md +0 -53
  138. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/data-room-structure.md +0 -88
  139. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/deck-blueprint-template.md +0 -39
  140. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/design-tokens-application.md +0 -79
  141. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/html-pdf-pipeline.md +0 -236
  142. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/internal-workings-scrub.md +0 -33
  143. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/monetization-strategy.md +0 -35
  144. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/pricing-strategy.md +0 -37
  145. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/strategy-frameworks.md +0 -46
  146. package/payload/premium-plugins/venture-studio/skills/investor-data-room/references/termsheet-template.md +0 -88
  147. package/payload/premium-plugins/venture-studio/skills/investor-data-room/templates/prospectus/index.html +0 -1565
  148. package/payload/premium-plugins/venture-studio/skills/investor-data-room/templates/prospectus/render-pdf.mjs +0 -91
  149. package/payload/premium-plugins/venture-studio/skills/investor-data-room/templates/prospectus/term_sheet.html +0 -715
  150. package/payload/premium-plugins/venture-studio/skills/legal-essentials/SKILL.md +0 -65
  151. package/payload/premium-plugins/venture-studio/skills/office-hours/SKILL.md +0 -587
  152. package/payload/premium-plugins/venture-studio/skills/prototype-host/SKILL.md +0 -179
  153. package/payload/premium-plugins/venture-studio/skills/prototype-host/references/cloudflared-ingress-edit.md +0 -81
  154. package/payload/premium-plugins/venture-studio/skills/prototype-host/references/scaffold-frameworks.md +0 -60
  155. package/payload/premium-plugins/venture-studio/skills/prototype-host/references/systemd-user-service.md +0 -104
  156. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/SKILL.md +0 -342
  157. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/aarrr-metrics.md +0 -275
  158. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/assumption-testing.md +0 -93
  159. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/boolean-search.md +0 -308
  160. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/build-measure-learn.md +0 -262
  161. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/business-model-canvas.md +0 -171
  162. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/commitment-signals.md +0 -246
  163. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/design-thinking.md +0 -183
  164. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/earlyvangelist.md +0 -190
  165. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/first-principles.md +0 -58
  166. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/fishbone.md +0 -114
  167. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/five-whys.md +0 -43
  168. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/ice-scoring.md +0 -237
  169. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/innovation-accounting.md +0 -290
  170. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/jtbd.md +0 -105
  171. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/landing-page.md +0 -361
  172. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/market-sizing.md +0 -58
  173. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/market-type.md +0 -167
  174. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/mom-test.md +0 -193
  175. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/mvp-types.md +0 -200
  176. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/og-images.md +0 -239
  177. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/pareto.md +0 -103
  178. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/persona-development.md +0 -291
  179. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/pivot-types.md +0 -225
  180. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/positioning-statement.md +0 -179
  181. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/prd.md +0 -363
  182. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/pre-mortem.md +0 -74
  183. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/problem-validation.md +0 -253
  184. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/product-market-fit.md +0 -256
  185. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/research-synthesis.md +0 -276
  186. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/strategy-red-team.md +0 -41
  187. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/three-engines-of-growth.md +0 -248
  188. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/validation-tests.md +0 -89
  189. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/value-proposition-canvas.md +0 -121
  190. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/win-loss-analysis.md +0 -242
  191. package/payload/premium-plugins/venture-studio/skills/zero-to-prototype/references/workflow-mapping.md +0 -271
  192. package/payload/premium-plugins/writer-craft/.claude-plugin/plugin.json +0 -21
  193. package/payload/premium-plugins/writer-craft/PLUGIN.md +0 -134
  194. package/payload/premium-plugins/writer-craft/agents/writer-craft--manuscript-reviewer.md +0 -108
  195. package/payload/premium-plugins/writer-craft/lib/mcp-lifeline/dist/index.d.ts +0 -8
  196. package/payload/premium-plugins/writer-craft/lib/mcp-lifeline/dist/index.d.ts.map +0 -1
  197. package/payload/premium-plugins/writer-craft/lib/mcp-lifeline/dist/index.js +0 -71
  198. package/payload/premium-plugins/writer-craft/lib/mcp-lifeline/dist/index.js.map +0 -1
  199. package/payload/premium-plugins/writer-craft/lib/mcp-lifeline/package.json +0 -7
  200. package/payload/premium-plugins/writer-craft/lib/mcp-spawn-tee/index.js +0 -193
  201. package/payload/premium-plugins/writer-craft/lib/mcp-spawn-tee/package.json +0 -3
  202. package/payload/premium-plugins/writer-craft/lib/mcp-stderr-tee/dist/index.d.ts +0 -51
  203. package/payload/premium-plugins/writer-craft/lib/mcp-stderr-tee/dist/index.d.ts.map +0 -1
  204. package/payload/premium-plugins/writer-craft/lib/mcp-stderr-tee/dist/index.js +0 -196
  205. package/payload/premium-plugins/writer-craft/lib/mcp-stderr-tee/dist/index.js.map +0 -1
  206. package/payload/premium-plugins/writer-craft/lib/mcp-stderr-tee/package.json +0 -7
  207. package/payload/premium-plugins/writer-craft/mcp/dist/cli/ingest-session-text.d.ts +0 -3
  208. package/payload/premium-plugins/writer-craft/mcp/dist/cli/ingest-session-text.d.ts.map +0 -1
  209. package/payload/premium-plugins/writer-craft/mcp/dist/cli/ingest-session-text.js +0 -58
  210. package/payload/premium-plugins/writer-craft/mcp/dist/cli/ingest-session-text.js.map +0 -1
  211. package/payload/premium-plugins/writer-craft/mcp/dist/index.d.ts +0 -3
  212. package/payload/premium-plugins/writer-craft/mcp/dist/index.d.ts.map +0 -1
  213. package/payload/premium-plugins/writer-craft/mcp/dist/index.js +0 -403
  214. package/payload/premium-plugins/writer-craft/mcp/dist/index.js.map +0 -1
  215. package/payload/premium-plugins/writer-craft/mcp/dist/lib/neo4j.d.ts +0 -14
  216. package/payload/premium-plugins/writer-craft/mcp/dist/lib/neo4j.d.ts.map +0 -1
  217. package/payload/premium-plugins/writer-craft/mcp/dist/lib/neo4j.js +0 -47
  218. package/payload/premium-plugins/writer-craft/mcp/dist/lib/neo4j.js.map +0 -1
  219. package/payload/premium-plugins/writer-craft/mcp/dist/lib/voice-corpus.d.ts +0 -117
  220. package/payload/premium-plugins/writer-craft/mcp/dist/lib/voice-corpus.d.ts.map +0 -1
  221. package/payload/premium-plugins/writer-craft/mcp/dist/lib/voice-corpus.js +0 -138
  222. package/payload/premium-plugins/writer-craft/mcp/dist/lib/voice-corpus.js.map +0 -1
  223. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-distil-profile.d.ts +0 -90
  224. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-distil-profile.d.ts.map +0 -1
  225. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-distil-profile.js +0 -609
  226. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-distil-profile.js.map +0 -1
  227. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-ingest-session-text.d.ts +0 -19
  228. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-ingest-session-text.d.ts.map +0 -1
  229. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-ingest-session-text.js +0 -124
  230. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-ingest-session-text.js.map +0 -1
  231. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-record-feedback.d.ts +0 -38
  232. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-record-feedback.d.ts.map +0 -1
  233. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-record-feedback.js +0 -93
  234. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-record-feedback.js.map +0 -1
  235. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-retrieve-conditioning.d.ts +0 -61
  236. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-retrieve-conditioning.d.ts.map +0 -1
  237. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-retrieve-conditioning.js +0 -171
  238. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-retrieve-conditioning.js.map +0 -1
  239. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-tag-content.d.ts +0 -35
  240. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-tag-content.d.ts.map +0 -1
  241. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-tag-content.js +0 -127
  242. package/payload/premium-plugins/writer-craft/mcp/dist/tools/voice-tag-content.js.map +0 -1
  243. package/payload/premium-plugins/writer-craft/mcp/package-lock.json +0 -1327
  244. package/payload/premium-plugins/writer-craft/mcp/package.json +0 -19
  245. package/payload/premium-plugins/writer-craft/mcp/scripts/smoke.mjs +0 -420
  246. package/payload/premium-plugins/writer-craft/mcp/src/index.ts +0 -457
  247. package/payload/premium-plugins/writer-craft/mcp/src/lib/neo4j.ts +0 -56
  248. package/payload/premium-plugins/writer-craft/mcp/src/lib/voice-corpus.ts +0 -154
  249. package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-distil-profile.ts +0 -833
  250. package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-ingest-session-text.ts +0 -153
  251. package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-record-feedback.ts +0 -148
  252. package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-retrieve-conditioning.ts +0 -270
  253. package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-tag-content.ts +0 -181
  254. package/payload/premium-plugins/writer-craft/mcp/tsconfig.json +0 -8
  255. package/payload/premium-plugins/writer-craft/skills/citation-style/SKILL.md +0 -94
  256. package/payload/premium-plugins/writer-craft/skills/citation-style/references/book-and-chapter-models.md +0 -77
  257. package/payload/premium-plugins/writer-craft/skills/citation-style/references/citation-rules.md +0 -103
  258. package/payload/premium-plugins/writer-craft/skills/citation-style/references/journal-article-models.md +0 -74
  259. package/payload/premium-plugins/writer-craft/skills/citation-style/references/other-source-models.md +0 -146
  260. package/payload/premium-plugins/writer-craft/skills/citation-style/references/reference-list-rules.md +0 -70
  261. package/payload/premium-plugins/writer-craft/skills/editorial-practice/SKILL.md +0 -108
  262. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/copyediting.md +0 -73
  263. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/developmental-editing.md +0 -85
  264. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/genre-specific-editing.md +0 -78
  265. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/line-editing.md +0 -55
  266. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/self-editing.md +0 -89
  267. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/SKILL.md +0 -114
  268. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/audience-analysis.md +0 -73
  269. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/crafting-persuasive-story.md +0 -76
  270. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/persuasion-case-studies.md +0 -67
  271. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/transformation-framework.md +0 -86
  272. package/payload/premium-plugins/writer-craft/skills/point-of-view/SKILL.md +0 -97
  273. package/payload/premium-plugins/writer-craft/skills/point-of-view/references/indirect-narration.md +0 -72
  274. package/payload/premium-plugins/writer-craft/skills/point-of-view/references/pov-types-and-voice.md +0 -91
  275. package/payload/premium-plugins/writer-craft/skills/point-of-view/references/protagonist-filter.md +0 -71
  276. package/payload/premium-plugins/writer-craft/skills/point-of-view/references/tense-and-person.md +0 -85
  277. package/payload/premium-plugins/writer-craft/skills/prose-craft/SKILL.md +0 -100
  278. package/payload/premium-plugins/writer-craft/skills/prose-craft/references/punctuation-and-grammar.md +0 -72
  279. package/payload/premium-plugins/writer-craft/skills/prose-craft/references/repetition.md +0 -71
  280. package/payload/premium-plugins/writer-craft/skills/prose-craft/references/sound-and-rhythm.md +0 -64
  281. package/payload/premium-plugins/writer-craft/skills/prose-craft/references/word-economy.md +0 -93
  282. package/payload/premium-plugins/writer-craft/skills/reader-engagement/SKILL.md +0 -100
  283. package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/cause-effect-setup-payoff.md +0 -79
  284. package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/conflict-escalation.md +0 -81
  285. package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/hooking-readers.md +0 -67
  286. package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/neurochemistry-of-engagement.md +0 -94
  287. package/payload/premium-plugins/writer-craft/skills/review-manuscript/SKILL.md +0 -111
  288. package/payload/premium-plugins/writer-craft/skills/review-manuscript/references/review-manuscript-checklist.md +0 -119
  289. package/payload/premium-plugins/writer-craft/skills/review-prose/SKILL.md +0 -99
  290. package/payload/premium-plugins/writer-craft/skills/review-prose/references/prose-review-checklist.md +0 -112
  291. package/payload/premium-plugins/writer-craft/skills/review-scene/SKILL.md +0 -99
  292. package/payload/premium-plugins/writer-craft/skills/review-scene/references/scene-analysis-framework.md +0 -95
  293. package/payload/premium-plugins/writer-craft/skills/story-architecture/SKILL.md +0 -106
  294. package/payload/premium-plugins/writer-craft/skills/story-architecture/references/blueprinting-and-scene-cards.md +0 -118
  295. package/payload/premium-plugins/writer-craft/skills/story-architecture/references/inner-issue-and-protagonist-goal.md +0 -66
  296. package/payload/premium-plugins/writer-craft/skills/story-architecture/references/misbelief-desire-worldview.md +0 -87
  297. package/payload/premium-plugins/writer-craft/skills/story-architecture/references/origin-scenes-and-escalation.md +0 -82
  298. package/payload/premium-plugins/writer-craft/skills/story-blueprint/SKILL.md +0 -133
  299. package/payload/premium-plugins/writer-craft/skills/story-blueprint/references/blueprinting-exercises.md +0 -118
  300. package/payload/premium-plugins/writer-craft/skills/story-blueprint/references/blueprinting-process.md +0 -128
  301. package/payload/premium-plugins/writer-craft/skills/voice-mirror/SKILL.md +0 -241
  302. package/payload/server/public/assets/Transcript-FX_w6no6.js +0 -2
  303. package/payload/server/public/assets/chat-BunxcNDk.js +0 -1
  304. package/payload/server/public/assets/chevron-left-Cngmu0Py.js +0 -1
  305. package/payload/server/public/assets/data-IqZlMSwG.js +0 -1
  306. /package/payload/server/public/assets/{useSubAccountSwitcher-BpQ3oKiJ.js → useSubAccountSwitcher-DMbRhLPv.js} +0 -0
@@ -1,49 +0,0 @@
1
- # Disaggregation — Building the Topic Structure
2
-
3
- ## How to Derive Topic Structure
4
-
5
- Search memory for subject content, curriculum structures, and material for the requested subject and assessment framework. Build the topic hierarchy from what memory returns.
6
-
7
- ### Three-Level Hierarchy
8
-
9
- 1. **Main topics** — the broadest divisions (e.g., "Algebra", "Ecology and the Environment", "The Cold War")
10
- 2. **Subtopic groups** — clusters within each main topic (e.g., "Equations and Inequalities", "Food Webs and Energy Transfer")
11
- 3. **Individual topics** — the specific items a student needs to know (e.g., "Simultaneous equations", "Trophic levels")
12
-
13
- Not every subject has three clean levels. Use what the knowledge base provides — two levels is fine for shorter subjects, four for very detailed ones.
14
-
15
- ### What to Extract Per Topic
16
-
17
- For each individual topic, identify from the knowledge base:
18
- - What the student is expected to know, understand, or be able to do
19
- - Key terminology
20
- - Any required practicals, case studies, or named examples
21
- - Assessment objectives or command words associated with the topic
22
-
23
- If memory doesn't have sufficient detail for a topic, say so — don't fill gaps from general knowledge.
24
-
25
- ### Presenting for Confirmation
26
-
27
- Present the hierarchy to the parent as a numbered outline:
28
-
29
- ```
30
- 1. Main Topic A
31
- 1.1 Subtopic Group
32
- - Individual topic
33
- - Individual topic
34
- 1.2 Subtopic Group
35
- - Individual topic
36
- 2. Main Topic B
37
- ...
38
- ```
39
-
40
- Ask the parent:
41
- - Does this structure match their expectations?
42
- - Are there topics they want to skip or prioritise?
43
- - Is the granularity right — too broad, too detailed?
44
-
45
- Only proceed to material generation after confirmation.
46
-
47
- ### When the Knowledge Base Doesn't Have the Structure
48
-
49
- If memory doesn't contain a content structure for the requested subject, tell the parent what's available and ask if they'd like to provide the structure themselves or work with what the knowledge base has.
@@ -1,116 +0,0 @@
1
- # Revision Materials — Per-Topic Generation
2
-
3
- For each confirmed topic, produce these outputs. All content must come from the knowledge base (memory search), not from training data.
4
-
5
- ## 1. Summary
6
-
7
- A concise explanation of everything the student needs to know for this topic. Written for the student to read independently.
8
-
9
- **Behaviour:**
10
- - Search memory for the topic content and extract the key facts, definitions, and relationships
11
- - Use precise, assessment-appropriate language — not dumbed-down paraphrases
12
- - Organise logically: definitions first, then processes/relationships, then applications
13
- - Include specific details the knowledge base provides (dates, names, values, formulae, named examples)
14
- - Keep it dense — this is revision, not first-encounter teaching
15
- - Adapt the language complexity to the student's age, but do not sacrifice precision for simplicity
16
-
17
- ## 2. Flashcards
18
-
19
- Question-and-answer pairs for active recall practice.
20
-
21
- **Behaviour:**
22
- - Write questions that mirror assessment phrasing — use command words relevant to the subject (define, explain, describe, compare, evaluate, calculate)
23
- - One concept per card
24
- - Answers should be concise and specific — what an assessor would accept
25
- - Cover every key term, definition, and process in the topic
26
- - Include application questions, not just recall — "Why does X happen?" not just "What is X?"
27
- - Aim for 8-15 cards per individual topic depending on content density
28
-
29
- **Format:**
30
- Present as a numbered list of Q/A pairs:
31
- ```
32
- 1. Q: [Question]
33
- A: [Answer]
34
- ```
35
-
36
- ## 3. Assessment Questions
37
-
38
- Assessment-style questions at varying difficulty.
39
-
40
- **Behaviour:**
41
- - 3-5 questions per topic
42
- - Mix question types: short answer, explanation, application
43
- - Grade by difficulty: label each as Foundation, Intermediate, or Higher
44
- - Write plausible distractors for multiple-choice questions — drawn from within the same topic, not obviously absurd
45
- - Include the expected answer or mark scheme points for each question
46
- - Where the subject uses specific command words, use them
47
-
48
- ## 4. Key Terms
49
-
50
- A glossary of essential vocabulary for the topic.
51
-
52
- **Behaviour:**
53
- - Every technical term the student would encounter in this topic
54
- - Definitions that match the precision expected at the student's level
55
- - Include the term as used in context where helpful
56
- - Order alphabetically within each topic
57
-
58
- ## 5. Visual Overview
59
-
60
- Generate an image summarising the topic's key concepts and relationships.
61
-
62
- **Behaviour:**
63
- - Use `image_generate` to create a visual overview — an infographic-style image showing the main concepts, their relationships, and key facts
64
- - The image should work as a one-page visual reference the student can glance at during revision
65
- - Describe the image content precisely in the generation prompt: topic name, key concepts to include, relationships to show, any diagrams or flows that would help
66
- - For science topics: include diagrams (cell structures, food webs, circuit diagrams)
67
- - For maths topics: include worked examples and formula summaries
68
- - For humanities topics: include timelines, cause-and-effect flows, key figure summaries
69
-
70
- ## 6. Video Summary (Future)
71
-
72
- When HeyGen video generation is available, generate a short video explanation of each topic.
73
-
74
- **Behaviour:**
75
- - Write a script suitable for a 2-3 minute video summary of the topic
76
- - The script should be structured as spoken narration — clear, direct, assessment-focused
77
- - Save the script to memory alongside the other materials so it can be used for video generation when the capability is available
78
- - Mark this output as "script ready — video generation pending"
79
-
80
- ## Saving to Memory
81
-
82
- Save each topic's materials to memory as a single file at:
83
- ```
84
- memory/public/study-packs/{subject}/{topic-slug}.md
85
- ```
86
-
87
- Use a consistent structure within each file:
88
- ```
89
- # {Topic Name}
90
-
91
- ## Summary
92
- ...
93
-
94
- ## Flashcards
95
- ...
96
-
97
- ## Assessment Questions
98
- ...
99
-
100
- ## Key Terms
101
- ...
102
-
103
- ## Visual Overview
104
- [Generated image reference]
105
-
106
- ## Video Script
107
- [Script text — pending video generation]
108
- ```
109
-
110
- ## Quality Check
111
-
112
- Before saving, verify:
113
- - Every flashcard and assessment answer traces back to knowledge base content
114
- - No content has been introduced from general knowledge or training data
115
- - Key terms match the terminology used in the knowledge base
116
- - The difficulty spread is appropriate for the student's age and level
@@ -1,8 +0,0 @@
1
- {
2
- "name": "venture-studio",
3
- "description": "Founding-a-business agent. Drives an operator from raw idea to fundraise-ready deliverables: validated wedge, branded identity, prototyped product, structured data room, business plan, prospectus + term sheet, deck. Every artefact slots into a tracked Project + Task graph so nothing gets forgotten.",
4
- "version": "0.1.0",
5
- "author": {
6
- "name": "Rubytech LLC"
7
- }
8
- }
@@ -1,128 +0,0 @@
1
- ---
2
- name: venture-studio
3
- description: "Founding-a-business agent. Drives an operator from raw idea to fundraise-ready deliverables: validated wedge, branded identity, prototyped product, structured data room, business plan, prospectus + term sheet, deck. Every artefact slots into a tracked Project + Task graph so nothing gets forgotten."
4
- requires:
5
- - projects
6
- - work
7
- - cloudflare
8
- - deep-research
9
- metadata: {"platform":{"always":false,"embed":["admin"],"pluginKey":"venture-studio","optional":true,"recommended":true}}
10
- ---
11
-
12
- # Venture Studio
13
-
14
- You are the founding-a-business agent. The operator has a business they want to start; your job is to take them from idea to a fundraise-ready pack — without losing track of any artefact along the way.
15
-
16
- ## Operating principle: data-room first
17
-
18
- Every business this agent founds produces the same set of artefacts: a discovery design doc, a brand pack, a validated wedge with a landing page and PRD, a structured data room, a business plan, a prospectus, a term sheet, a deck. The operator does not have to remember any of this. The agent's job is to ensure every artefact has a tracked Task before any artefact is produced.
19
-
20
- Outcome (binding):
21
-
22
- - **Every artefact has a tracked Task** in a `Project` named for this business, before that artefact's skill is invoked.
23
- - **Section order is preserved.** Artefacts are produced in the data-room's section order (`01-narrative` → `02-corporate-legal` → ... → `10-supporting`), with the `html/<artefact>/` rendered outputs landing as the section's content matures.
24
- - **Nothing is forgotten.** The Project's Task list IS the operator's view of what is done, what is in flight, what is outstanding.
25
-
26
- Constraint (binding): **No downstream venture-studio skill (`brand-pack`, `zero-to-prototype`, `investor-data-room` Stages 3+, etc.) is invoked before the data-room scaffold + Project + per-artefact Tasks exist on disk and in the graph.** If the operator asks you to skip straight to a deliverable ("just write me a business plan"), restate the scaffold-first principle and offer to scaffold the data room first, then jump straight to that artefact's task. The principle is the outcome contract; the scaffold proves it.
27
-
28
- ### Deterministic pre-flight gate
29
-
30
- Before invoking any downstream skill, both checks below must pass. Both are deterministic — exit-code on `ls`, structured output on `project-list`. Neither check depends on LLM judgement.
31
-
32
- 1. **Directory check:** `[ -d "${PROJECT_ROOT}/.docs/data-room/01-narrative" ]` returns exit 0.
33
- 2. **Graph check:** the `project-list` tool returns a Project whose `name` matches the business's working name.
34
-
35
- If either check fails, run the scaffolding script (see below) before the skill fires. If the script fails, surface the literal stderr error to the operator — do not narrate around it (memory: [[feedback_no_stdout_parsing_for_control_flow]]).
36
-
37
- ### Scaffolding script
38
-
39
- `bin/scaffold.sh` is the deterministic enforcement layer. It creates the Project + nine artefact Tasks (via the work plugin's `project-create-cli` bridge) and materialises the ten-section directory tree plus the `prototype/` top-level for hosted surfaces. Graph write first, directories second; idempotent re-run if any partial state lands.
40
-
41
- ```bash
42
- ACCOUNT_ID="${ACCOUNT_ID}" \
43
- premium-plugins/venture-studio/bin/scaffold.sh \
44
- "${PROJECT_ROOT}" \
45
- "${BUSINESS_NAME}"
46
- ```
47
-
48
- The script is the binding check, not the prose principle above. The prose explains why; the script is what makes it true.
49
-
50
- ## First-conversation routing
51
-
52
- When the operator first invokes this agent, confirm the intent ("Are we founding a new business, or working on an existing one?") and run the scaffolding script — it does steps 1–3 below in a single atomic invocation:
53
-
54
- ```bash
55
- ACCOUNT_ID="${ACCOUNT_ID}" \
56
- premium-plugins/venture-studio/bin/scaffold.sh \
57
- "${PROJECT_ROOT}" \
58
- "${BUSINESS_NAME}"
59
- ```
60
-
61
- The script's three effects:
62
-
63
- 1. **Scaffolds the data room.** Materialises the ten-section directory tree under `<project-root>/.docs/data-room/`. Every artefact has a slot to land in before any artefact is produced.
64
- 2. **Creates the `Project` node.** Tier `full` (data-room work is multi-phase). Project name is the business's working name; description references the data-room root path.
65
- 3. **Enumerates the nine artefact Tasks** in section order — one transaction, atomic with the Project. The work-item list the script pre-seeds:
66
- - **Stage 1 — Office-hours design doc** → produces `01-narrative/office-hours-design.md` (skill: `office-hours`)
67
- - **Stage 2 — Wedge validation + landing page + PRD** → produces `01-narrative/{PMF, LANDING, PRD}.md` (skill: `zero-to-prototype`)
68
- - **Brand pack** → produces brand guidelines + summary + color palette + typography system + tone-of-voice (voice/messaging/copy) + logo guidelines into `06-product-ip/brand/` (skill: `brand-pack`)
69
- - **Prototype host** → public URL for the landing page and/or wedge prototype via cloudflared ingress + systemd-managed dev server (skill: `prototype-host`)
70
- - **Stage 3 — Business plan** → produces `01-narrative/business-plan.md` (skill: `investor-data-room` Stage 3)
71
- - **Stage 3b — Term sheet** → produces `html/prospectus/term_sheet.html` (skill: `investor-data-room` Stage 3b)
72
- - **Stage 4 — Deck blueprint** → produces `01-narrative/deck-blueprint.md` (skill: `investor-data-room` Stage 4)
73
- - **Stage 4b — Prospectus** → produces `html/prospectus/index.html` (skill: `investor-data-room` Stage 4b)
74
- - **Stage 5 — Rendered PDFs** → produces `html/{business-plan,prospectus,deck}/*.pdf` (skill: `investor-data-room` Stage 5)
75
-
76
- After these three steps land, the operator sees the project + task list before any skill produces output. Subsequent turns execute the tasks one at a time, calling the relevant venture-studio skill to produce that section's artefact.
77
-
78
- ## Skill routing
79
-
80
- The following intent phrases route to specific skills. These calls are gated by the scaffold-first principle: refuse to fire any of them until the data-room scaffold + Project + Tasks exist.
81
-
82
- | Operator says | Skill |
83
- |---|---|
84
- | "I want to think this through" / "office hours" / "is this worth building" | `office-hours` |
85
- | "let's brand this" / "tokens for the brand" / "logo and palette" | `brand-pack` |
86
- | "validate this idea" / "let's find PMF" / "draft the landing page" / "write the PRD" | `zero-to-prototype` |
87
- | "host the landing" / "host the prototype" / "deploy this" / "give me a public URL" | `prototype-host` |
88
- | "build me a data room" / "scaffold the data room" | `investor-data-room` (Stage 2) |
89
- | "draft the business plan" | `investor-data-room` (Stage 3) |
90
- | "draft the term sheet" | `investor-data-room` (Stage 3b) |
91
- | "draft the deck blueprint" / "build the deck" | `investor-data-room` (Stage 4) |
92
- | "draft the prospectus" / "investment prospectus" | `investor-data-room` (Stage 4b) |
93
- | "render the PDFs" / "print-ready deliverables" | `investor-data-room` (Stage 5) |
94
- | "size the market" / "TAM SAM SOM" / "how big is this market" | `zero-to-prototype` (`skills/zero-to-prototype/references/market-sizing.md`) |
95
- | "red-team the plan" / "what could kill this" / "rank our assumptions" | `zero-to-prototype` (`skills/zero-to-prototype/references/strategy-red-team.md`) |
96
- | "how should we price this" / "pricing strategy" | `investor-data-room` (`skills/investor-data-room/references/pricing-strategy.md`) |
97
- | "what's the revenue model" / "monetization strategy" | `investor-data-room` (`skills/investor-data-room/references/monetization-strategy.md`) |
98
- | "competitor teardown" / "competitive analysis" | `investor-data-room` (`skills/investor-data-room/references/competitor-analysis.md`) |
99
- | "build a battlecard" / "how do we sell against X" | `investor-data-room` (`skills/investor-data-room/references/competitive-battlecard.md`) |
100
- | "SWOT" / "PESTLE" / "Porter's five forces" / "Ansoff" | `investor-data-room` (`skills/investor-data-room/references/strategy-frameworks.md`) |
101
- | "draft an NDA" / "confidentiality agreement" / "draft a privacy policy" / "GDPR policy" | `legal-essentials` |
102
-
103
- When the operator's intent matches a row but the scaffold does not yet exist, run the first-conversation routing sequence above before the skill fires.
104
-
105
- ## Project & Task hygiene during execution
106
-
107
- - Before starting any artefact's task, mark its Task `in_progress` via the `work` plugin (or the `projects` plugin's helpers). When the artefact is on disk and verified, mark it `completed`.
108
- - If a section reveals a new artefact the operator wants (e.g. a competitor-claims-rebuttal in `08-market/`), `work-create` a new Task under the same Project, then proceed.
109
- - The Project's health signal (green/amber/red) is computed from Task state. Use `project-get` at the start of each turn to surface what's outstanding.
110
-
111
- ## Research routing
112
-
113
- Every structured-research task — market sizing (TAM/SAM/SOM + CAGR), compliance research (DMCC / ICO ADM / EU AI Act), competitor scans, comparable rounds and exit comparables, named-acquirer enumeration — routes through the `research-assistant` specialist with the five `deep-research` skills (`deep-research`, `book-mirror`, `strategic-reading`, `academic-verify`, `data-research`). Dispatch the specialist; do not call `WebSearch` or `WebFetch` directly from a venture-studio skill. The specialist returns structured findings with citations the data-room artefacts can quote verbatim.
114
-
115
- ## Tone
116
-
117
- Founder-facing. Direct, evidence-based, no flattery. You are the chief of staff for a one-person founding team — your job is to keep every artefact tracked and every deadline visible, while the operator focuses on the parts only they can do (customer conversations, founder signal, vision).
118
-
119
- ## References
120
-
121
- The six skills shipped under this plugin carry their own SKILL.md detail:
122
-
123
- - `skills/office-hours/SKILL.md` — YC office-hours forcing questions in startup + builder modes; outputs the design-doc substrate every later artefact derives from.
124
- - `skills/brand-pack/SKILL.md` — brand identity (palette, typography, tone, logo) tokenised for the data-room artefacts to consume.
125
- - `skills/zero-to-prototype/SKILL.md` — frameworks for customer discovery, validation, positioning, PMF measurement, landing page, PRD, plus market sizing (TAM/SAM/SOM) and the pre-fundraise strategy red-team.
126
- - `skills/prototype-host/SKILL.md` — scaffolds the landing page or wedge prototype, allocates a port, edits the brand's cloudflared ingress, runs the dev server under a systemd-user unit, and verifies the public URL returns HTTP 200.
127
- - `skills/investor-data-room/SKILL.md` — full seed-raise pack: data room scaffold, business plan, term sheet, deck blueprint, prospectus, A4 print pipeline; carries the pricing, monetization, competitor, battlecard, and strategy-framework method references.
128
- - `skills/legal-essentials/SKILL.md` — drafts an NDA (mutual/one-way) and a UK-GDPR/PECR privacy policy into `02-corporate-legal/`; drafts for solicitor review, never invented company particulars.
@@ -1,116 +0,0 @@
1
- #!/usr/bin/env bash
2
- # Venture-studio data-room scaffold — deterministic enforcement of the
3
- # scaffold-first principle (Task 286 + feedback_doctrine_paragraph_is_not_a_gate).
4
- #
5
- # Creates exactly one Project (with nine pre-seeded artefact Tasks) in
6
- # the graph, then materialises the ten-section data-room directory tree
7
- # on disk. The venture-studio agent's downstream skills are gated on
8
- # both signals existing — see venture-studio/PLUGIN.md.
9
- #
10
- # Order of operations: graph write first, directories second. The CLI's
11
- # duplicate-name guard makes the script safely re-runnable after any
12
- # partial failure: a second run finds the existing Project, returns its
13
- # id, and retries the mkdir step.
14
- #
15
- # Usage:
16
- # ACCOUNT_ID=<uuid> scaffold.sh <project-root> <business-name>
17
- #
18
- # Exit codes:
19
- # 0 scaffold complete (or already existed)
20
- # 2 bad arguments / missing ACCOUNT_ID
21
- # 1 graph write failed, directory mkdir failed, or CLI binary missing
22
-
23
- set -euo pipefail
24
-
25
- SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
26
- # Deployed layout per packages/create-maxy-code/scripts/bundle.js:
27
- # <install>/premium-plugins/venture-studio/bin/scaffold.sh
28
- # <install>/platform/plugins/work/mcp/dist/cli/project-create-cli.js
29
- CLI_BIN="${SCRIPT_DIR}/../../../platform/plugins/work/mcp/dist/cli/project-create-cli.js"
30
-
31
- if [[ $# -ne 2 ]]; then
32
- echo "scaffold.sh: usage: ACCOUNT_ID=<uuid> $0 <project-root> <business-name>" >&2
33
- exit 2
34
- fi
35
-
36
- PROJECT_ROOT="$1"
37
- BUSINESS_NAME="$2"
38
-
39
- if [[ -z "${ACCOUNT_ID:-}" ]]; then
40
- echo "scaffold.sh: ACCOUNT_ID env var required" >&2
41
- exit 2
42
- fi
43
-
44
- if [[ ! -d "$PROJECT_ROOT" ]]; then
45
- echo "scaffold.sh: project root does not exist: $PROJECT_ROOT" >&2
46
- exit 2
47
- fi
48
-
49
- if [[ ! -f "$CLI_BIN" ]]; then
50
- echo "scaffold.sh: project-create CLI not built or missing at: $CLI_BIN" >&2
51
- exit 1
52
- fi
53
-
54
- DATA_ROOM="${PROJECT_ROOT}/.docs/data-room"
55
-
56
- # Nine pre-seeded artefact tasks — order and names match
57
- # premium-plugins/venture-studio/PLUGIN.md § First-conversation routing.
58
- # Section order is preserved so the agent can walk them sequentially.
59
- # Prototype-host is slotted between Stage 2 (wedge + landing copy) and
60
- # Stage 3 (business plan): brand-pack and wedge are hard prerequisites
61
- # (the skill consumes 06-product-ip/brand/ tokens and 01-narrative/LANDING.md);
62
- # hosting before business plan keeps the founder's wedge-validation loop
63
- # (live URL) ahead of investor-pack work.
64
- PAYLOAD=$(cat <<JSON
65
- {
66
- "accountId": "${ACCOUNT_ID}",
67
- "name": "${BUSINESS_NAME}",
68
- "description": "Venture-studio data room for ${BUSINESS_NAME}. Root: ${DATA_ROOM}",
69
- "tier": "full",
70
- "workItems": [
71
- {"name": "Stage 1 — Office-hours design doc", "description": "Produces 01-narrative/office-hours-design.md via the office-hours skill."},
72
- {"name": "Stage 2 — Wedge validation + landing page + PRD", "description": "Produces 01-narrative/{PMF,LANDING,PRD}.md via the zero-to-prototype skill."},
73
- {"name": "Brand pack", "description": "Produces brand guidelines + summary + color palette + typography system + tone-of-voice (voice/messaging/copy) + logo guidelines into 06-product-ip/brand/ via the brand-pack skill."},
74
- {"name": "Prototype host", "description": "Public URL for the landing page and/or wedge prototype via cloudflared ingress + systemd-managed dev server (skill: prototype-host)."},
75
- {"name": "Stage 3 — Business plan", "description": "Produces 01-narrative/business-plan.md via investor-data-room Stage 3."},
76
- {"name": "Stage 3b — Term sheet", "description": "Produces html/prospectus/term_sheet.html via investor-data-room Stage 3b."},
77
- {"name": "Stage 4 — Deck blueprint", "description": "Produces 01-narrative/deck-blueprint.md via investor-data-room Stage 4."},
78
- {"name": "Stage 4b — Prospectus", "description": "Produces html/prospectus/index.html via investor-data-room Stage 4b."},
79
- {"name": "Stage 5 — Rendered PDFs", "description": "Produces html/{business-plan,prospectus,deck}/*.pdf via investor-data-room Stage 5."}
80
- ]
81
- }
82
- JSON
83
- )
84
-
85
- # Graph write first. CLI returns {projectId, existing:bool} on stdout;
86
- # on any failure it exits non-zero with a literal stderr message that
87
- # propagates here verbatim — no prose-parsing for control flow
88
- # (memory: feedback_no_stdout_parsing_for_control_flow).
89
- RESULT=$(node "$CLI_BIN" "$PAYLOAD")
90
- echo "scaffold.sh: project-create CLI returned: $RESULT"
91
-
92
- # Directories second. The agent's pre-flight gate keys on the existence
93
- # of 01-narrative/ (it AND-checks with project-list); creating it last
94
- # means partial state (graph-only) is naturally invisible to the gate
95
- # until mkdir succeeds.
96
- for section in \
97
- 01-narrative \
98
- 02-corporate-legal \
99
- 03-cap-table \
100
- 04-financials \
101
- 05-team \
102
- 06-product-ip \
103
- 07-customers \
104
- 08-market \
105
- 09-traction-metrics \
106
- 10-supporting; do
107
- mkdir -p "${DATA_ROOM}/${section}"
108
- done
109
-
110
- # Hosted-prototype source roots live alongside the numbered sections under
111
- # data-room/. The prototype-host skill populates this with one subdir per
112
- # surface (landing/, prototype/, etc.); creating the parent here so the
113
- # directory exists before the first invocation.
114
- mkdir -p "${DATA_ROOM}/prototype"
115
-
116
- echo "scaffold.sh: data-room scaffolded at ${DATA_ROOM}"