@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,91 +0,0 @@
1
- // Render an HTML document into an A4 PORTRAIT image-only PDF.
2
- // Mirrors the property-brochure pipeline (skills/property-brochure/references/build.md).
3
- // Each <section class="page"> is screenshot as ONE PNG; bound to A4 via img2pdf;
4
- // linearized via qpdf. The HTML CSS sizes each .page to exactly A4 (210mm × 297mm).
5
- //
6
- // node render-pdf.mjs <input.html> <output.pdf> [scale]
7
-
8
- import { chromium } from 'playwright';
9
- import { execFileSync } from 'node:child_process';
10
- import { mkdirSync, readdirSync, rmSync, statSync } from 'node:fs';
11
- import { dirname, join, resolve, basename } from 'node:path';
12
- import { fileURLToPath } from 'node:url';
13
-
14
- const __dirname = dirname(fileURLToPath(import.meta.url));
15
-
16
- const inputArg = process.argv[2];
17
- const outputArg = process.argv[3];
18
- const SCALE = parseFloat(process.argv[4] || '3.125'); // 3.125× → 300 dpi
19
- if (!inputArg || !outputArg) {
20
- console.error('Usage: node render-pdf.mjs <input.html> <output.pdf> [scale]');
21
- process.exit(2);
22
- }
23
-
24
- const INPUT = resolve(inputArg);
25
- const OUTPUT = resolve(outputArg);
26
- const TMP = join(__dirname, `.tmp-${basename(INPUT, '.html')}`);
27
-
28
- rmSync(TMP, { recursive: true, force: true });
29
- mkdirSync(TMP, { recursive: true });
30
-
31
- const browser = await chromium.launch();
32
- const context = await browser.newContext({
33
- viewport: { width: 794, height: 1123 }, // A4 portrait at 96 dpi
34
- deviceScaleFactor: SCALE,
35
- });
36
- const page = await context.newPage();
37
- await page.emulateMedia({ media: 'print' }); // trigger @media print rules
38
- await page.goto(`file://${INPUT}`, { waitUntil: 'networkidle' });
39
-
40
- // Hide screen-only chrome but DO NOT inject layout CSS — the HTML's @media print
41
- // rules are responsible for sizing each .page to A4. Per the brochure pipeline.
42
- await page.addStyleTag({ content: `
43
- .pdf-btn { display: none !important; }
44
- html, body { background: #fff !important; margin: 0 !important; }
45
- ` });
46
-
47
- await page.evaluate(() => Promise.all(
48
- Array.from(document.images, img => img.complete ? null : new Promise(r => { img.onload = img.onerror = r; }))
49
- ));
50
-
51
- const sections = await page.$$('section.page');
52
- if (!sections.length) {
53
- console.error('No <section class="page"> found in', INPUT);
54
- process.exit(3);
55
- }
56
- console.log(`Rendering ${sections.length} A4 page(s) from ${basename(INPUT)} at ${SCALE}× ...`);
57
-
58
- // Per build.md: "Verify every page fits A4: measure scrollHeight for all .page elements"
59
- // A4 portrait at 96 dpi is 1123 CSS px. Anything past that is content overflow that will
60
- // be clipped by `overflow: hidden` and lost from the rendered PDF.
61
- const A4_H = 1123;
62
- let overflowed = false;
63
- for (let i = 0; i < sections.length; i++) {
64
- const box = await sections[i].boundingBox();
65
- const scrollH = await sections[i].evaluate(el => el.scrollHeight);
66
- const ok = scrollH <= A4_H + 2; // 2px slack
67
- if (!ok) overflowed = true;
68
- console.log(` page ${i + 1}: scrollHeight ${scrollH}px${ok ? '' : ` ⚠ EXCEEDS A4 (${A4_H}px) — content will be clipped`}`);
69
- }
70
- if (overflowed) {
71
- console.error('\nOne or more <section class="page"> elements overflow A4 height. Split their content into separate <section class="page"> blocks. Aborting render.');
72
- await browser.close();
73
- process.exit(4);
74
- }
75
-
76
- for (let i = 0; i < sections.length; i++) {
77
- const file = join(TMP, `page-${String(i + 1).padStart(2, '0')}.png`);
78
- await sections[i].scrollIntoViewIfNeeded();
79
- await sections[i].screenshot({ path: file, type: 'png' });
80
- const bytes = statSync(file).size;
81
- console.log(` page ${i + 1}: ${(bytes / 1024).toFixed(0)} KB`);
82
- }
83
-
84
- await browser.close();
85
-
86
- const pngs = readdirSync(TMP).filter(f => f.startsWith('page-') && f.endsWith('.png')).sort().map(f => join(TMP, f));
87
- const preLinear = join(TMP, 'pre-linearize.pdf');
88
- execFileSync('img2pdf', ['--pagesize', '210mmx297mm', '--output', preLinear, ...pngs], { stdio: 'inherit' });
89
- execFileSync('qpdf', ['--linearize', '--object-streams=disable', preLinear, OUTPUT], { stdio: 'inherit' });
90
-
91
- console.log(`\nWrote ${OUTPUT}`);