sillyspec 3.9.0 → 3.9.1

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 (212) hide show
  1. package/.claude/skills/sillyspec-archive/SKILL.md +17 -0
  2. package/.claude/skills/sillyspec-auto/SKILL.md +78 -0
  3. package/.claude/skills/sillyspec-brainstorm/SKILL.md +17 -0
  4. package/{templates/commit.md → .claude/skills/sillyspec-commit/SKILL.md} +32 -47
  5. package/.claude/skills/sillyspec-continue/SKILL.md +45 -0
  6. package/.claude/skills/sillyspec-doctor/SKILL.md +27 -0
  7. package/.claude/skills/sillyspec-execute/SKILL.md +17 -0
  8. package/.claude/skills/sillyspec-explore/SKILL.md +96 -0
  9. package/.claude/skills/sillyspec-export/SKILL.md +53 -0
  10. package/.claude/skills/sillyspec-init/SKILL.md +170 -0
  11. package/.claude/skills/sillyspec-plan/SKILL.md +52 -0
  12. package/.claude/skills/sillyspec-propose/SKILL.md +17 -0
  13. package/.claude/skills/sillyspec-quick/SKILL.md +17 -0
  14. package/.claude/skills/sillyspec-resume/SKILL.md +111 -0
  15. package/.claude/skills/sillyspec-scan/SKILL.md +17 -0
  16. package/.claude/skills/sillyspec-state/SKILL.md +54 -0
  17. package/.claude/skills/sillyspec-status/SKILL.md +17 -0
  18. package/.claude/skills/sillyspec-verify/SKILL.md +17 -0
  19. package/.claude/skills/sillyspec-workspace/SKILL.md +149 -0
  20. package/.sillyspec/changes/archive/2026-04-08-derive-state/design.md +97 -0
  21. package/.sillyspec/changes/archive/2026-04-08-derive-state/plan.md +51 -0
  22. package/.sillyspec/changes/archive/2026-04-08-derive-state/proposal.md +29 -0
  23. package/.sillyspec/changes/archive/2026-04-08-derive-state/requirements.md +34 -0
  24. package/.sillyspec/changes/archive/2026-04-08-derive-state/tasks.md +13 -0
  25. package/.sillyspec/changes/archive/2026-04-08-derive-state/verify-result.md +43 -0
  26. package/.sillyspec/changes/auto-mode/design.md +50 -0
  27. package/.sillyspec/changes/auto-mode/proposal.md +19 -0
  28. package/.sillyspec/changes/auto-mode/requirements.md +21 -0
  29. package/.sillyspec/changes/auto-mode/tasks.md +7 -0
  30. package/.sillyspec/changes/brainstorm-archive/2026-04-05-unified-docs-design.md +199 -0
  31. package/.sillyspec/changes/dashboard/design.md.braindraft +206 -0
  32. package/.sillyspec/changes/run-command-design/design.md +1230 -0
  33. package/.sillyspec/changes/unified-docs-design/design.md +199 -0
  34. package/.sillyspec/docs/sillyspec/scan/.gitkeep +0 -0
  35. package/.sillyspec/knowledge/INDEX.md +8 -0
  36. package/.sillyspec/knowledge/uncategorized.md +3 -0
  37. package/.sillyspec/projects/sillyspec.yaml +3 -0
  38. package/README.md +12 -5
  39. package/package.json +7 -9
  40. package/packages/dashboard/dist/assets/index-CntACGUN.css +1 -0
  41. package/packages/dashboard/dist/assets/index-RsLVPAy7.js +7446 -0
  42. package/packages/dashboard/dist/index.html +3 -2
  43. package/packages/dashboard/package-lock.json +226 -6
  44. package/packages/dashboard/package.json +8 -5
  45. package/packages/dashboard/public/logo.jpg +0 -0
  46. package/packages/dashboard/server/executor.js +1 -1
  47. package/packages/dashboard/server/index.js +336 -113
  48. package/packages/dashboard/server/parser.js +333 -29
  49. package/packages/dashboard/server/watcher.js +203 -131
  50. package/packages/dashboard/src/App.vue +187 -11
  51. package/packages/dashboard/src/components/ActionBar.vue +26 -42
  52. package/packages/dashboard/src/components/CommandPalette.vue +40 -65
  53. package/packages/dashboard/src/components/DetailPanel.vue +68 -53
  54. package/packages/dashboard/src/components/DocPreview.vue +160 -0
  55. package/packages/dashboard/src/components/DocTree.vue +58 -0
  56. package/packages/dashboard/src/components/LogStream.vue +13 -33
  57. package/packages/dashboard/src/components/PipelineStage.vue +8 -8
  58. package/packages/dashboard/src/components/PipelineView.vue +80 -45
  59. package/packages/dashboard/src/components/ProjectList.vue +103 -45
  60. package/packages/dashboard/src/components/ProjectOverview.vue +178 -0
  61. package/packages/dashboard/src/components/StageBadge.vue +13 -13
  62. package/packages/dashboard/src/components/StepCard.vue +15 -15
  63. package/packages/dashboard/src/components/detail/DocsDetail.vue +48 -0
  64. package/packages/dashboard/src/components/detail/GitDetail.vue +61 -0
  65. package/packages/dashboard/src/components/detail/TechDetail.vue +43 -0
  66. package/packages/dashboard/src/composables/useDashboard.js +20 -6
  67. package/packages/dashboard/src/composables/useKeyboard.js +6 -4
  68. package/packages/dashboard/src/main.js +4 -1
  69. package/packages/dashboard/src/style.css +17 -17
  70. package/src/index.js +134 -22
  71. package/src/init.js +83 -228
  72. package/src/migrate.js +117 -0
  73. package/src/progress.js +459 -0
  74. package/src/run.js +624 -0
  75. package/src/setup.js +2 -72
  76. package/src/stages/archive.js +54 -0
  77. package/src/stages/brainstorm.js +239 -0
  78. package/src/stages/doctor.js +303 -0
  79. package/src/stages/execute.js +262 -0
  80. package/src/stages/index.js +26 -0
  81. package/src/stages/plan.js +282 -0
  82. package/src/stages/propose.js +115 -0
  83. package/src/stages/quick.js +64 -0
  84. package/src/stages/scan.js +141 -0
  85. package/src/stages/status.js +65 -0
  86. package/src/stages/verify.js +135 -0
  87. package/dist/steps/brainstorm/01-load-context.md +0 -30
  88. package/dist/steps/brainstorm/02-reuse-check.md +0 -6
  89. package/dist/steps/brainstorm/03-prototype-analysis.md +0 -11
  90. package/dist/steps/brainstorm/04-module-split.md +0 -23
  91. package/dist/steps/brainstorm/05-dialog-explore.md +0 -8
  92. package/dist/steps/brainstorm/06-propose-approaches.md +0 -3
  93. package/dist/steps/brainstorm/07-present-design.md +0 -3
  94. package/dist/steps/brainstorm/08-write-design.md +0 -21
  95. package/dist/steps/brainstorm/09-self-review.md +0 -15
  96. package/dist/steps/brainstorm/10-user-confirm.md +0 -3
  97. package/dist/steps/brainstorm/11-output-spec.md +0 -7
  98. package/dist/steps/brainstorm/manifest.yaml +0 -26
  99. package/dist/steps/execute/01-load-context.md +0 -41
  100. package/dist/steps/execute/02-scan-conventions.md +0 -47
  101. package/dist/steps/execute/03-skill-mcp.md +0 -19
  102. package/dist/steps/execute/04-assign-task.md +0 -22
  103. package/dist/steps/execute/04b-prompt-template.md +0 -54
  104. package/dist/steps/execute/05-write-test.md +0 -7
  105. package/dist/steps/execute/06-write-code.md +0 -8
  106. package/dist/steps/execute/07-run-test.md +0 -26
  107. package/dist/steps/execute/08-fix-issues.md +0 -28
  108. package/dist/steps/execute/09-next-task.md +0 -33
  109. package/dist/steps/execute/manifest.yaml +0 -28
  110. package/dist/steps/plan/01-load-context.md +0 -22
  111. package/dist/steps/plan/02-anchor-confirm.md +0 -1
  112. package/dist/steps/plan/03-expand-tasks.md +0 -33
  113. package/dist/steps/plan/04-mark-order.md +0 -15
  114. package/dist/steps/plan/05-e2e-planning.md +0 -17
  115. package/dist/steps/plan/06-self-check.md +0 -16
  116. package/dist/steps/plan/07-save.md +0 -1
  117. package/dist/steps/plan/manifest.yaml +0 -18
  118. package/dist/steps/scan/01-env-detect.md +0 -51
  119. package/dist/steps/scan/02-tech-stack.md +0 -16
  120. package/dist/steps/scan/03-conventions.md +0 -16
  121. package/dist/steps/scan/04-structure.md +0 -19
  122. package/dist/steps/scan/05-quality.md +0 -18
  123. package/dist/steps/scan/06-complete.md +0 -49
  124. package/dist/steps/scan/manifest.yaml +0 -16
  125. package/dist/steps/verify/01-load-specs.md +0 -28
  126. package/dist/steps/verify/02-check-tasks.md +0 -1
  127. package/dist/steps/verify/03-check-design.md +0 -6
  128. package/dist/steps/verify/04-run-tests.md +0 -7
  129. package/dist/steps/verify/05-e2e-tests.md +0 -27
  130. package/dist/steps/verify/05b-e2e-fix.md +0 -33
  131. package/dist/steps/verify/06-code-quality.md +0 -25
  132. package/dist/steps/verify/07-lint-check.md +0 -27
  133. package/dist/steps/verify/08-output-report.md +0 -14
  134. package/dist/steps/verify/manifest.yaml +0 -22
  135. package/docs/.vitepress/config.mts +0 -45
  136. package/docs/.vitepress/dist/404.html +0 -25
  137. package/docs/.vitepress/dist/assets/app.YytxICdd.js +0 -1
  138. package/docs/.vitepress/dist/assets/chunks/framework.Czhw_PXq.js +0 -19
  139. package/docs/.vitepress/dist/assets/chunks/theme.DusTRZQk.js +0 -1
  140. package/docs/.vitepress/dist/assets/index.md.C3VCvtQA.js +0 -1
  141. package/docs/.vitepress/dist/assets/index.md.C3VCvtQA.lean.js +0 -1
  142. package/docs/.vitepress/dist/assets/inter-italic-cyrillic-ext.r48I6akx.woff2 +0 -0
  143. package/docs/.vitepress/dist/assets/inter-italic-cyrillic.By2_1cv3.woff2 +0 -0
  144. package/docs/.vitepress/dist/assets/inter-italic-greek-ext.1u6EdAuj.woff2 +0 -0
  145. package/docs/.vitepress/dist/assets/inter-italic-greek.DJ8dCoTZ.woff2 +0 -0
  146. package/docs/.vitepress/dist/assets/inter-italic-latin-ext.CN1xVJS-.woff2 +0 -0
  147. package/docs/.vitepress/dist/assets/inter-italic-latin.C2AdPX0b.woff2 +0 -0
  148. package/docs/.vitepress/dist/assets/inter-italic-vietnamese.BSbpV94h.woff2 +0 -0
  149. package/docs/.vitepress/dist/assets/inter-roman-cyrillic-ext.BBPuwvHQ.woff2 +0 -0
  150. package/docs/.vitepress/dist/assets/inter-roman-cyrillic.C5lxZ8CY.woff2 +0 -0
  151. package/docs/.vitepress/dist/assets/inter-roman-greek-ext.CqjqNYQ-.woff2 +0 -0
  152. package/docs/.vitepress/dist/assets/inter-roman-greek.BBVDIX6e.woff2 +0 -0
  153. package/docs/.vitepress/dist/assets/inter-roman-latin-ext.4ZJIpNVo.woff2 +0 -0
  154. package/docs/.vitepress/dist/assets/inter-roman-latin.Di8DUHzh.woff2 +0 -0
  155. package/docs/.vitepress/dist/assets/inter-roman-vietnamese.BjW4sHH5.woff2 +0 -0
  156. package/docs/.vitepress/dist/assets/sillyspec_commands.md.CXFFsj08.js +0 -15
  157. package/docs/.vitepress/dist/assets/sillyspec_commands.md.CXFFsj08.lean.js +0 -1
  158. package/docs/.vitepress/dist/assets/sillyspec_dashboard.md.BuPXHqjX.js +0 -4
  159. package/docs/.vitepress/dist/assets/sillyspec_dashboard.md.BuPXHqjX.lean.js +0 -1
  160. package/docs/.vitepress/dist/assets/sillyspec_file-io.md.Cz3x7llx.js +0 -1
  161. package/docs/.vitepress/dist/assets/sillyspec_file-io.md.Cz3x7llx.lean.js +0 -1
  162. package/docs/.vitepress/dist/assets/sillyspec_getting-started.md.ClcvV8k3.js +0 -4
  163. package/docs/.vitepress/dist/assets/sillyspec_getting-started.md.ClcvV8k3.lean.js +0 -1
  164. package/docs/.vitepress/dist/assets/sillyspec_install.md.CKuR2tiT.js +0 -5
  165. package/docs/.vitepress/dist/assets/sillyspec_install.md.CKuR2tiT.lean.js +0 -1
  166. package/docs/.vitepress/dist/assets/sillyspec_lifecycle.md.DY293cR1.js +0 -28
  167. package/docs/.vitepress/dist/assets/sillyspec_lifecycle.md.DY293cR1.lean.js +0 -1
  168. package/docs/.vitepress/dist/assets/sillyspec_structure.md.sVYS4zPs.js +0 -30
  169. package/docs/.vitepress/dist/assets/sillyspec_structure.md.sVYS4zPs.lean.js +0 -1
  170. package/docs/.vitepress/dist/assets/style.DFTx90Kk.css +0 -1
  171. package/docs/.vitepress/dist/hashmap.json +0 -1
  172. package/docs/.vitepress/dist/index.html +0 -28
  173. package/docs/.vitepress/dist/sillyspec/commands.html +0 -42
  174. package/docs/.vitepress/dist/sillyspec/dashboard.html +0 -31
  175. package/docs/.vitepress/dist/sillyspec/file-io.html +0 -28
  176. package/docs/.vitepress/dist/sillyspec/getting-started.html +0 -31
  177. package/docs/.vitepress/dist/sillyspec/install.html +0 -32
  178. package/docs/.vitepress/dist/sillyspec/lifecycle.html +0 -55
  179. package/docs/.vitepress/dist/sillyspec/structure.html +0 -57
  180. package/docs/.vitepress/dist/vp-icons.css +0 -1
  181. package/docs/index.md +0 -34
  182. package/docs/sillyspec/commands.md +0 -218
  183. package/docs/sillyspec/dashboard.md +0 -51
  184. package/docs/sillyspec/file-io.md +0 -34
  185. package/docs/sillyspec/getting-started.md +0 -61
  186. package/docs/sillyspec/install.md +0 -51
  187. package/docs/sillyspec/lifecycle.md +0 -146
  188. package/docs/sillyspec/structure.md +0 -62
  189. package/packages/dashboard/dist/assets/index-Bh-GPjKY.css +0 -1
  190. package/packages/dashboard/dist/assets/index-CrCn5Gg6.js +0 -17
  191. package/src/step.js +0 -543
  192. package/templates/archive.md +0 -120
  193. package/templates/brainstorm.md +0 -170
  194. package/templates/continue.md +0 -32
  195. package/templates/execute.md +0 -304
  196. package/templates/explore.md +0 -59
  197. package/templates/export.md +0 -21
  198. package/templates/init.md +0 -61
  199. package/templates/plan.md +0 -146
  200. package/templates/quick.md +0 -135
  201. package/templates/scan-quick.md +0 -49
  202. package/templates/scan.md +0 -156
  203. package/templates/skills/playwright-e2e/SKILL.md +0 -340
  204. package/templates/status.md +0 -75
  205. package/templates/verify.md +0 -236
  206. package/templates/workspace-sync.md +0 -99
  207. package/templates/workspace.md +0 -70
  208. /package/.sillyspec/{specs → changes/brainstorm-archive}/2026-04-05-dashboard-design.md +0 -0
  209. /package/{docs/.vitepress/dist/logo.jpg → logo.jpg} +0 -0
  210. /package/{docs/.vitepress → packages/dashboard}/dist/favicon.jpg +0 -0
  211. /package/{docs/public → packages/dashboard/dist}/logo.jpg +0 -0
  212. /package/{docs → packages/dashboard}/public/favicon.jpg +0 -0
@@ -7,10 +7,11 @@
7
7
  <link rel="preconnect" href="https://fonts.googleapis.com">
8
8
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
9
  <link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
10
- <script type="module" crossorigin src="/assets/index-CrCn5Gg6.js"></script>
11
- <link rel="stylesheet" crossorigin href="/assets/index-Bh-GPjKY.css">
10
+ <script type="module" crossorigin src="/assets/index-RsLVPAy7.js"></script>
11
+ <link rel="stylesheet" crossorigin href="/assets/index-CntACGUN.css">
12
12
  </head>
13
13
  <body style="background-color: #0A0A0B; margin: 0;">
14
14
  <div id="app"></div>
15
+
15
16
  </body>
16
17
  </html>
@@ -8,7 +8,10 @@
8
8
  "name": "@sillyspec/dashboard",
9
9
  "version": "1.0.0",
10
10
  "dependencies": {
11
+ "@vicons/ionicons5": "^0.13.0",
11
12
  "chokidar": "^4.0",
13
+ "marked": "^17.0.6",
14
+ "naive-ui": "^2.44.1",
12
15
  "open": "^10.1",
13
16
  "vue": "^3.5",
14
17
  "ws": "^8.18"
@@ -66,6 +69,30 @@
66
69
  "node": ">=6.9.0"
67
70
  }
68
71
  },
72
+ "node_modules/@css-render/plugin-bem": {
73
+ "version": "0.15.14",
74
+ "resolved": "https://registry.npmmirror.com/@css-render/plugin-bem/-/plugin-bem-0.15.14.tgz",
75
+ "integrity": "sha512-QK513CJ7yEQxm/P3EwsI+d+ha8kSOcjGvD6SevM41neEMxdULE+18iuQK6tEChAWMOQNQPLG/Rw3Khb69r5neg==",
76
+ "license": "MIT",
77
+ "peerDependencies": {
78
+ "css-render": "~0.15.14"
79
+ }
80
+ },
81
+ "node_modules/@css-render/vue3-ssr": {
82
+ "version": "0.15.14",
83
+ "resolved": "https://registry.npmmirror.com/@css-render/vue3-ssr/-/vue3-ssr-0.15.14.tgz",
84
+ "integrity": "sha512-//8027GSbxE9n3QlD73xFY6z4ZbHbvrOVB7AO6hsmrEzGbg+h2A09HboUyDgu+xsmj7JnvJD39Irt+2D0+iV8g==",
85
+ "license": "MIT",
86
+ "peerDependencies": {
87
+ "vue": "^3.0.11"
88
+ }
89
+ },
90
+ "node_modules/@emotion/hash": {
91
+ "version": "0.8.0",
92
+ "resolved": "https://registry.npmmirror.com/@emotion/hash/-/hash-0.8.0.tgz",
93
+ "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==",
94
+ "license": "MIT"
95
+ },
69
96
  "node_modules/@esbuild/aix-ppc64": {
70
97
  "version": "0.25.12",
71
98
  "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
@@ -557,6 +584,12 @@
557
584
  "@jridgewell/sourcemap-codec": "^1.4.14"
558
585
  }
559
586
  },
587
+ "node_modules/@juggle/resize-observer": {
588
+ "version": "3.4.0",
589
+ "resolved": "https://registry.npmmirror.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz",
590
+ "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==",
591
+ "license": "Apache-2.0"
592
+ },
560
593
  "node_modules/@rollup/rollup-android-arm-eabi": {
561
594
  "version": "4.60.1",
562
595
  "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.1.tgz",
@@ -1186,6 +1219,27 @@
1186
1219
  "dev": true,
1187
1220
  "license": "MIT"
1188
1221
  },
1222
+ "node_modules/@types/lodash": {
1223
+ "version": "4.17.24",
1224
+ "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.17.24.tgz",
1225
+ "integrity": "sha512-gIW7lQLZbue7lRSWEFql49QJJWThrTFFeIMJdp3eH4tKoxm1OvEPg02rm4wCCSHS0cL3/Fizimb35b7k8atwsQ==",
1226
+ "license": "MIT"
1227
+ },
1228
+ "node_modules/@types/lodash-es": {
1229
+ "version": "4.17.12",
1230
+ "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.12.tgz",
1231
+ "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==",
1232
+ "license": "MIT",
1233
+ "dependencies": {
1234
+ "@types/lodash": "*"
1235
+ }
1236
+ },
1237
+ "node_modules/@vicons/ionicons5": {
1238
+ "version": "0.13.0",
1239
+ "resolved": "https://registry.npmmirror.com/@vicons/ionicons5/-/ionicons5-0.13.0.tgz",
1240
+ "integrity": "sha512-zvZKBPjEXKN7AXNo2Na2uy+nvuv6SP4KAMQxpKL2vfHMj0fSvuw7JZcOPCjQC3e7ayssKnaoFVAhbYcW6v41qQ==",
1241
+ "license": "MIT"
1242
+ },
1189
1243
  "node_modules/@vitejs/plugin-vue": {
1190
1244
  "version": "5.2.4",
1191
1245
  "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz",
@@ -1300,6 +1354,12 @@
1300
1354
  "integrity": "sha512-ksNyrmRQzWJJ8n3cRDuSF7zNNontuJg1YHnmWRJd2AMu8Ij2bqwiiri2lH5rHtYPZjj4STkNcgcmiQqlOjiYGg==",
1301
1355
  "license": "MIT"
1302
1356
  },
1357
+ "node_modules/async-validator": {
1358
+ "version": "4.2.5",
1359
+ "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz",
1360
+ "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==",
1361
+ "license": "MIT"
1362
+ },
1303
1363
  "node_modules/bundle-name": {
1304
1364
  "version": "4.1.0",
1305
1365
  "resolved": "https://registry.npmmirror.com/bundle-name/-/bundle-name-4.1.0.tgz",
@@ -1330,12 +1390,47 @@
1330
1390
  "url": "https://paulmillr.com/funding/"
1331
1391
  }
1332
1392
  },
1393
+ "node_modules/css-render": {
1394
+ "version": "0.15.14",
1395
+ "resolved": "https://registry.npmmirror.com/css-render/-/css-render-0.15.14.tgz",
1396
+ "integrity": "sha512-9nF4PdUle+5ta4W5SyZdLCCmFd37uVimSjg1evcTqKJCyvCEEj12WKzOSBNak6r4im4J4iYXKH1OWpUV5LBYFg==",
1397
+ "license": "MIT",
1398
+ "dependencies": {
1399
+ "@emotion/hash": "~0.8.0",
1400
+ "csstype": "~3.0.5"
1401
+ }
1402
+ },
1403
+ "node_modules/css-render/node_modules/csstype": {
1404
+ "version": "3.0.11",
1405
+ "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.0.11.tgz",
1406
+ "integrity": "sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==",
1407
+ "license": "MIT"
1408
+ },
1333
1409
  "node_modules/csstype": {
1334
1410
  "version": "3.2.3",
1335
1411
  "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz",
1336
1412
  "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1337
1413
  "license": "MIT"
1338
1414
  },
1415
+ "node_modules/date-fns": {
1416
+ "version": "4.1.0",
1417
+ "resolved": "https://registry.npmmirror.com/date-fns/-/date-fns-4.1.0.tgz",
1418
+ "integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==",
1419
+ "license": "MIT",
1420
+ "funding": {
1421
+ "type": "github",
1422
+ "url": "https://github.com/sponsors/kossnocorp"
1423
+ }
1424
+ },
1425
+ "node_modules/date-fns-tz": {
1426
+ "version": "3.2.0",
1427
+ "resolved": "https://registry.npmmirror.com/date-fns-tz/-/date-fns-tz-3.2.0.tgz",
1428
+ "integrity": "sha512-sg8HqoTEulcbbbVXeg84u5UnlsQa8GS5QXMqjjYIhS4abEVVKIUwe0/l/UhrZdKaL/W5eWZNlbTeEIiOXTcsBQ==",
1429
+ "license": "MIT",
1430
+ "peerDependencies": {
1431
+ "date-fns": "^3.0.0 || ^4.0.0"
1432
+ }
1433
+ },
1339
1434
  "node_modules/default-browser": {
1340
1435
  "version": "5.5.0",
1341
1436
  "resolved": "https://registry.npmmirror.com/default-browser/-/default-browser-5.5.0.tgz",
@@ -1460,6 +1555,12 @@
1460
1555
  "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
1461
1556
  "license": "MIT"
1462
1557
  },
1558
+ "node_modules/evtd": {
1559
+ "version": "0.2.4",
1560
+ "resolved": "https://registry.npmmirror.com/evtd/-/evtd-0.2.4.tgz",
1561
+ "integrity": "sha512-qaeGN5bx63s/AXgQo8gj6fBkxge+OoLddLniox5qtLAEY5HSnuSlISXVPxnSae1dWblvTh4/HoMIB+mbMsvZzw==",
1562
+ "license": "MIT"
1563
+ },
1463
1564
  "node_modules/fdir": {
1464
1565
  "version": "6.5.0",
1465
1566
  "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz",
@@ -1500,6 +1601,15 @@
1500
1601
  "dev": true,
1501
1602
  "license": "ISC"
1502
1603
  },
1604
+ "node_modules/highlight.js": {
1605
+ "version": "11.11.1",
1606
+ "resolved": "https://registry.npmmirror.com/highlight.js/-/highlight.js-11.11.1.tgz",
1607
+ "integrity": "sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==",
1608
+ "license": "BSD-3-Clause",
1609
+ "engines": {
1610
+ "node": ">=12.0.0"
1611
+ }
1612
+ },
1503
1613
  "node_modules/is-docker": {
1504
1614
  "version": "3.0.0",
1505
1615
  "resolved": "https://registry.npmmirror.com/is-docker/-/is-docker-3.0.0.tgz",
@@ -1819,6 +1929,18 @@
1819
1929
  "url": "https://opencollective.com/parcel"
1820
1930
  }
1821
1931
  },
1932
+ "node_modules/lodash": {
1933
+ "version": "4.18.1",
1934
+ "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.18.1.tgz",
1935
+ "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
1936
+ "license": "MIT"
1937
+ },
1938
+ "node_modules/lodash-es": {
1939
+ "version": "4.18.1",
1940
+ "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.18.1.tgz",
1941
+ "integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
1942
+ "license": "MIT"
1943
+ },
1822
1944
  "node_modules/magic-string": {
1823
1945
  "version": "0.30.21",
1824
1946
  "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz",
@@ -1828,6 +1950,50 @@
1828
1950
  "@jridgewell/sourcemap-codec": "^1.5.5"
1829
1951
  }
1830
1952
  },
1953
+ "node_modules/marked": {
1954
+ "version": "17.0.6",
1955
+ "resolved": "https://registry.npmmirror.com/marked/-/marked-17.0.6.tgz",
1956
+ "integrity": "sha512-gB0gkNafnonOw0obSTEGZTT86IuhILt2Wfx0mWH/1Au83kybTayroZ/V6nS25mN7u8ASy+5fMhgB3XPNrOZdmA==",
1957
+ "license": "MIT",
1958
+ "bin": {
1959
+ "marked": "bin/marked.js"
1960
+ },
1961
+ "engines": {
1962
+ "node": ">= 20"
1963
+ }
1964
+ },
1965
+ "node_modules/naive-ui": {
1966
+ "version": "2.44.1",
1967
+ "resolved": "https://registry.npmmirror.com/naive-ui/-/naive-ui-2.44.1.tgz",
1968
+ "integrity": "sha512-reo8Esw0p58liZwbUutC7meW24Xbn3EwNv91zReWKm2W4JPu+zfgJRn/F7aO0BFmvN+h2brA2M5lRvYqLq4kuA==",
1969
+ "license": "MIT",
1970
+ "dependencies": {
1971
+ "@css-render/plugin-bem": "^0.15.14",
1972
+ "@css-render/vue3-ssr": "^0.15.14",
1973
+ "@types/lodash": "^4.17.20",
1974
+ "@types/lodash-es": "^4.17.12",
1975
+ "async-validator": "^4.2.5",
1976
+ "css-render": "^0.15.14",
1977
+ "csstype": "^3.1.3",
1978
+ "date-fns": "^4.1.0",
1979
+ "date-fns-tz": "^3.2.0",
1980
+ "evtd": "^0.2.4",
1981
+ "highlight.js": "^11.8.0",
1982
+ "lodash": "^4.17.21",
1983
+ "lodash-es": "^4.17.21",
1984
+ "seemly": "^0.3.10",
1985
+ "treemate": "^0.3.11",
1986
+ "vdirs": "^0.1.8",
1987
+ "vooks": "^0.2.12",
1988
+ "vueuc": "^0.4.65"
1989
+ },
1990
+ "engines": {
1991
+ "node": ">=20"
1992
+ },
1993
+ "peerDependencies": {
1994
+ "vue": "^3.0.0"
1995
+ }
1996
+ },
1831
1997
  "node_modules/nanoid": {
1832
1998
  "version": "3.3.11",
1833
1999
  "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz",
@@ -1884,9 +2050,9 @@
1884
2050
  }
1885
2051
  },
1886
2052
  "node_modules/postcss": {
1887
- "version": "8.5.8",
1888
- "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.8.tgz",
1889
- "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
2053
+ "version": "8.5.14",
2054
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz",
2055
+ "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==",
1890
2056
  "funding": [
1891
2057
  {
1892
2058
  "type": "opencollective",
@@ -1981,6 +2147,12 @@
1981
2147
  "url": "https://github.com/sponsors/sindresorhus"
1982
2148
  }
1983
2149
  },
2150
+ "node_modules/seemly": {
2151
+ "version": "0.3.10",
2152
+ "resolved": "https://registry.npmmirror.com/seemly/-/seemly-0.3.10.tgz",
2153
+ "integrity": "sha512-2+SMxtG1PcsL0uyhkumlOU6Qo9TAQ/WyH7tthnPIOQB05/12jz9naq6GZ6iZ6ApVsO3rr2gsnTf3++OV63kE1Q==",
2154
+ "license": "MIT"
2155
+ },
1984
2156
  "node_modules/source-map-js": {
1985
2157
  "version": "1.2.1",
1986
2158
  "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz",
@@ -2028,10 +2200,28 @@
2028
2200
  "url": "https://github.com/sponsors/SuperchupuDev"
2029
2201
  }
2030
2202
  },
2203
+ "node_modules/treemate": {
2204
+ "version": "0.3.11",
2205
+ "resolved": "https://registry.npmmirror.com/treemate/-/treemate-0.3.11.tgz",
2206
+ "integrity": "sha512-M8RGFoKtZ8dF+iwJfAJTOH/SM4KluKOKRJpjCMhI8bG3qB74zrFoArKZ62ll0Fr3mqkMJiQOmWYkdYgDeITYQg==",
2207
+ "license": "MIT"
2208
+ },
2209
+ "node_modules/vdirs": {
2210
+ "version": "0.1.8",
2211
+ "resolved": "https://registry.npmmirror.com/vdirs/-/vdirs-0.1.8.tgz",
2212
+ "integrity": "sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==",
2213
+ "license": "MIT",
2214
+ "dependencies": {
2215
+ "evtd": "^0.2.2"
2216
+ },
2217
+ "peerDependencies": {
2218
+ "vue": "^3.0.11"
2219
+ }
2220
+ },
2031
2221
  "node_modules/vite": {
2032
- "version": "6.4.1",
2033
- "resolved": "https://registry.npmmirror.com/vite/-/vite-6.4.1.tgz",
2034
- "integrity": "sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==",
2222
+ "version": "6.4.2",
2223
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.4.2.tgz",
2224
+ "integrity": "sha512-2N/55r4JDJ4gdrCvGgINMy+HH3iRpNIz8K6SFwVsA+JbQScLiC+clmAxBgwiSPgcG9U15QmvqCGWzMbqda5zGQ==",
2035
2225
  "dev": true,
2036
2226
  "license": "MIT",
2037
2227
  "dependencies": {
@@ -2103,6 +2293,18 @@
2103
2293
  }
2104
2294
  }
2105
2295
  },
2296
+ "node_modules/vooks": {
2297
+ "version": "0.2.12",
2298
+ "resolved": "https://registry.npmmirror.com/vooks/-/vooks-0.2.12.tgz",
2299
+ "integrity": "sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==",
2300
+ "license": "MIT",
2301
+ "dependencies": {
2302
+ "evtd": "^0.2.2"
2303
+ },
2304
+ "peerDependencies": {
2305
+ "vue": "^3.0.0"
2306
+ }
2307
+ },
2106
2308
  "node_modules/vue": {
2107
2309
  "version": "3.5.32",
2108
2310
  "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.32.tgz",
@@ -2124,6 +2326,24 @@
2124
2326
  }
2125
2327
  }
2126
2328
  },
2329
+ "node_modules/vueuc": {
2330
+ "version": "0.4.65",
2331
+ "resolved": "https://registry.npmmirror.com/vueuc/-/vueuc-0.4.65.tgz",
2332
+ "integrity": "sha512-lXuMl+8gsBmruudfxnMF9HW4be8rFziylXFu1VHVNbLVhRTXXV4njvpRuJapD/8q+oFEMSfQMH16E/85VoWRyQ==",
2333
+ "license": "MIT",
2334
+ "dependencies": {
2335
+ "@css-render/vue3-ssr": "^0.15.10",
2336
+ "@juggle/resize-observer": "^3.3.1",
2337
+ "css-render": "^0.15.10",
2338
+ "evtd": "^0.2.4",
2339
+ "seemly": "^0.3.6",
2340
+ "vdirs": "^0.1.4",
2341
+ "vooks": "^0.2.4"
2342
+ },
2343
+ "peerDependencies": {
2344
+ "vue": "^3.0.11"
2345
+ }
2346
+ },
2127
2347
  "node_modules/ws": {
2128
2348
  "version": "8.20.0",
2129
2349
  "resolved": "https://registry.npmmirror.com/ws/-/ws-8.20.0.tgz",
@@ -8,15 +8,18 @@
8
8
  "preview": "vite preview"
9
9
  },
10
10
  "dependencies": {
11
- "vue": "^3.5",
12
- "ws": "^8.18",
11
+ "@vicons/ionicons5": "^0.13.0",
13
12
  "chokidar": "^4.0",
14
- "open": "^10.1"
13
+ "marked": "^17.0.6",
14
+ "naive-ui": "^2.44.1",
15
+ "open": "^10.1",
16
+ "vue": "^3.5",
17
+ "ws": "^8.18"
15
18
  },
16
19
  "devDependencies": {
20
+ "@tailwindcss/vite": "^4.0",
17
21
  "@vitejs/plugin-vue": "^5.2",
18
- "vite": "^6.0",
19
22
  "tailwindcss": "^4.0",
20
- "@tailwindcss/vite": "^4.0"
23
+ "vite": "^6.0"
21
24
  }
22
25
  }
@@ -9,7 +9,7 @@ import { spawn } from 'child_process'
9
9
  * @returns {function} Kill function to terminate the process
10
10
  */
11
11
  export function executeCommand(projectPath, command, onOutput, onComplete) {
12
- const args = command.split(' ')
12
+ const args = String(command || '').trim().split(/\s+/).filter(Boolean)
13
13
  const proc = spawn('npx', ['sillyspec', ...args], {
14
14
  cwd: projectPath,
15
15
  env: { ...process.env }