@oriro/orirocli 0.1.8 → 0.1.9

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 (350) hide show
  1. package/ATTRIBUTION.md +8 -0
  2. package/LICENSE +21 -0
  3. package/package.json +1 -1
  4. package/skills/21stdev/SKILL.md +64 -0
  5. package/skills/graphify/SKILL.md +619 -0
  6. package/skills/graphify/__init__.py +28 -0
  7. package/skills/graphify/__main__.py +4582 -0
  8. package/skills/graphify/affected.py +154 -0
  9. package/skills/graphify/always_on/agents-md.md +12 -0
  10. package/skills/graphify/always_on/antigravity-rules.md +14 -0
  11. package/skills/graphify/always_on/claude-md.md +9 -0
  12. package/skills/graphify/always_on/gemini-md.md +9 -0
  13. package/skills/graphify/always_on/kiro-steering.md +5 -0
  14. package/skills/graphify/always_on/vscode-instructions.md +17 -0
  15. package/skills/graphify/analyze.py +724 -0
  16. package/skills/graphify/benchmark.py +155 -0
  17. package/skills/graphify/build.py +487 -0
  18. package/skills/graphify/cache.py +417 -0
  19. package/skills/graphify/callflow_html.py +2020 -0
  20. package/skills/graphify/cluster.py +272 -0
  21. package/skills/graphify/command-kilo.md +15 -0
  22. package/skills/graphify/dedup.py +429 -0
  23. package/skills/graphify/detect.py +1379 -0
  24. package/skills/graphify/diagnostics.py +390 -0
  25. package/skills/graphify/export.py +1408 -0
  26. package/skills/graphify/extract.py +11570 -0
  27. package/skills/graphify/global_graph.py +159 -0
  28. package/skills/graphify/google_workspace.py +223 -0
  29. package/skills/graphify/hooks.py +457 -0
  30. package/skills/graphify/ingest.py +331 -0
  31. package/skills/graphify/llm.py +1896 -0
  32. package/skills/graphify/manifest.py +4 -0
  33. package/skills/graphify/mcp_ingest.py +392 -0
  34. package/skills/graphify/multigraph_compat.py +212 -0
  35. package/skills/graphify/pg_introspect.py +142 -0
  36. package/skills/graphify/prs.py +748 -0
  37. package/skills/graphify/querylog.py +70 -0
  38. package/skills/graphify/report.py +218 -0
  39. package/skills/graphify/scip_ingest.py +363 -0
  40. package/skills/graphify/security.py +336 -0
  41. package/skills/graphify/semantic_cleanup.py +319 -0
  42. package/skills/graphify/serve.py +1309 -0
  43. package/skills/graphify/skill-aider.md +1246 -0
  44. package/skills/graphify/skill-amp.md +613 -0
  45. package/skills/graphify/skill-claw.md +616 -0
  46. package/skills/graphify/skill-codex.md +613 -0
  47. package/skills/graphify/skill-copilot.md +616 -0
  48. package/skills/graphify/skill-devin.md +1372 -0
  49. package/skills/graphify/skill-droid.md +613 -0
  50. package/skills/graphify/skill-kilo.md +625 -0
  51. package/skills/graphify/skill-kiro.md +615 -0
  52. package/skills/graphify/skill-opencode.md +608 -0
  53. package/skills/graphify/skill-pi.md +615 -0
  54. package/skills/graphify/skill-trae.md +614 -0
  55. package/skills/graphify/skill-vscode.md +612 -0
  56. package/skills/graphify/skill-windows.md +651 -0
  57. package/skills/graphify/skills/amp/references/add-watch.md +56 -0
  58. package/skills/graphify/skills/amp/references/exports.md +71 -0
  59. package/skills/graphify/skills/amp/references/extraction-spec.md +68 -0
  60. package/skills/graphify/skills/amp/references/github-and-merge.md +46 -0
  61. package/skills/graphify/skills/amp/references/hooks.md +33 -0
  62. package/skills/graphify/skills/amp/references/query.md +249 -0
  63. package/skills/graphify/skills/amp/references/transcribe.md +48 -0
  64. package/skills/graphify/skills/amp/references/update.md +179 -0
  65. package/skills/graphify/skills/claude/references/add-watch.md +56 -0
  66. package/skills/graphify/skills/claude/references/exports.md +71 -0
  67. package/skills/graphify/skills/claude/references/extraction-spec.md +68 -0
  68. package/skills/graphify/skills/claude/references/github-and-merge.md +46 -0
  69. package/skills/graphify/skills/claude/references/hooks.md +33 -0
  70. package/skills/graphify/skills/claude/references/query.md +103 -0
  71. package/skills/graphify/skills/claude/references/transcribe.md +48 -0
  72. package/skills/graphify/skills/claude/references/update.md +179 -0
  73. package/skills/graphify/skills/claw/references/add-watch.md +56 -0
  74. package/skills/graphify/skills/claw/references/exports.md +71 -0
  75. package/skills/graphify/skills/claw/references/extraction-spec.md +29 -0
  76. package/skills/graphify/skills/claw/references/github-and-merge.md +46 -0
  77. package/skills/graphify/skills/claw/references/hooks.md +33 -0
  78. package/skills/graphify/skills/claw/references/query.md +249 -0
  79. package/skills/graphify/skills/claw/references/transcribe.md +48 -0
  80. package/skills/graphify/skills/claw/references/update.md +179 -0
  81. package/skills/graphify/skills/codex/references/add-watch.md +56 -0
  82. package/skills/graphify/skills/codex/references/exports.md +71 -0
  83. package/skills/graphify/skills/codex/references/extraction-spec.md +29 -0
  84. package/skills/graphify/skills/codex/references/github-and-merge.md +46 -0
  85. package/skills/graphify/skills/codex/references/hooks.md +33 -0
  86. package/skills/graphify/skills/codex/references/query.md +249 -0
  87. package/skills/graphify/skills/codex/references/transcribe.md +48 -0
  88. package/skills/graphify/skills/codex/references/update.md +179 -0
  89. package/skills/graphify/skills/copilot/references/add-watch.md +56 -0
  90. package/skills/graphify/skills/copilot/references/exports.md +71 -0
  91. package/skills/graphify/skills/copilot/references/extraction-spec.md +68 -0
  92. package/skills/graphify/skills/copilot/references/github-and-merge.md +46 -0
  93. package/skills/graphify/skills/copilot/references/hooks.md +33 -0
  94. package/skills/graphify/skills/copilot/references/query.md +249 -0
  95. package/skills/graphify/skills/copilot/references/transcribe.md +48 -0
  96. package/skills/graphify/skills/copilot/references/update.md +179 -0
  97. package/skills/graphify/skills/droid/references/add-watch.md +56 -0
  98. package/skills/graphify/skills/droid/references/exports.md +71 -0
  99. package/skills/graphify/skills/droid/references/extraction-spec.md +68 -0
  100. package/skills/graphify/skills/droid/references/github-and-merge.md +46 -0
  101. package/skills/graphify/skills/droid/references/hooks.md +33 -0
  102. package/skills/graphify/skills/droid/references/query.md +249 -0
  103. package/skills/graphify/skills/droid/references/transcribe.md +48 -0
  104. package/skills/graphify/skills/droid/references/update.md +179 -0
  105. package/skills/graphify/skills/kilo/references/add-watch.md +56 -0
  106. package/skills/graphify/skills/kilo/references/exports.md +71 -0
  107. package/skills/graphify/skills/kilo/references/extraction-spec.md +68 -0
  108. package/skills/graphify/skills/kilo/references/github-and-merge.md +46 -0
  109. package/skills/graphify/skills/kilo/references/hooks.md +33 -0
  110. package/skills/graphify/skills/kilo/references/query.md +249 -0
  111. package/skills/graphify/skills/kilo/references/transcribe.md +48 -0
  112. package/skills/graphify/skills/kilo/references/update.md +179 -0
  113. package/skills/graphify/skills/kiro/references/add-watch.md +56 -0
  114. package/skills/graphify/skills/kiro/references/exports.md +71 -0
  115. package/skills/graphify/skills/kiro/references/extraction-spec.md +29 -0
  116. package/skills/graphify/skills/kiro/references/github-and-merge.md +46 -0
  117. package/skills/graphify/skills/kiro/references/hooks.md +33 -0
  118. package/skills/graphify/skills/kiro/references/query.md +249 -0
  119. package/skills/graphify/skills/kiro/references/transcribe.md +48 -0
  120. package/skills/graphify/skills/kiro/references/update.md +179 -0
  121. package/skills/graphify/skills/opencode/references/add-watch.md +56 -0
  122. package/skills/graphify/skills/opencode/references/exports.md +71 -0
  123. package/skills/graphify/skills/opencode/references/extraction-spec.md +68 -0
  124. package/skills/graphify/skills/opencode/references/github-and-merge.md +46 -0
  125. package/skills/graphify/skills/opencode/references/hooks.md +33 -0
  126. package/skills/graphify/skills/opencode/references/query.md +249 -0
  127. package/skills/graphify/skills/opencode/references/transcribe.md +48 -0
  128. package/skills/graphify/skills/opencode/references/update.md +179 -0
  129. package/skills/graphify/skills/pi/references/add-watch.md +56 -0
  130. package/skills/graphify/skills/pi/references/exports.md +71 -0
  131. package/skills/graphify/skills/pi/references/extraction-spec.md +29 -0
  132. package/skills/graphify/skills/pi/references/github-and-merge.md +46 -0
  133. package/skills/graphify/skills/pi/references/hooks.md +33 -0
  134. package/skills/graphify/skills/pi/references/query.md +249 -0
  135. package/skills/graphify/skills/pi/references/transcribe.md +48 -0
  136. package/skills/graphify/skills/pi/references/update.md +179 -0
  137. package/skills/graphify/skills/trae/references/add-watch.md +56 -0
  138. package/skills/graphify/skills/trae/references/exports.md +71 -0
  139. package/skills/graphify/skills/trae/references/extraction-spec.md +68 -0
  140. package/skills/graphify/skills/trae/references/github-and-merge.md +46 -0
  141. package/skills/graphify/skills/trae/references/hooks.md +35 -0
  142. package/skills/graphify/skills/trae/references/query.md +249 -0
  143. package/skills/graphify/skills/trae/references/transcribe.md +48 -0
  144. package/skills/graphify/skills/trae/references/update.md +179 -0
  145. package/skills/graphify/skills/vscode/references/add-watch.md +56 -0
  146. package/skills/graphify/skills/vscode/references/exports.md +71 -0
  147. package/skills/graphify/skills/vscode/references/extraction-spec.md +68 -0
  148. package/skills/graphify/skills/vscode/references/github-and-merge.md +46 -0
  149. package/skills/graphify/skills/vscode/references/hooks.md +33 -0
  150. package/skills/graphify/skills/vscode/references/query.md +249 -0
  151. package/skills/graphify/skills/vscode/references/transcribe.md +48 -0
  152. package/skills/graphify/skills/vscode/references/update.md +179 -0
  153. package/skills/graphify/skills/windows/references/add-watch.md +56 -0
  154. package/skills/graphify/skills/windows/references/exports.md +71 -0
  155. package/skills/graphify/skills/windows/references/extraction-spec.md +68 -0
  156. package/skills/graphify/skills/windows/references/github-and-merge.md +46 -0
  157. package/skills/graphify/skills/windows/references/hooks.md +33 -0
  158. package/skills/graphify/skills/windows/references/query.md +249 -0
  159. package/skills/graphify/skills/windows/references/transcribe.md +48 -0
  160. package/skills/graphify/skills/windows/references/update.md +179 -0
  161. package/skills/graphify/symbol_resolution.py +538 -0
  162. package/skills/graphify/transcribe.py +184 -0
  163. package/skills/graphify/tree_html.py +582 -0
  164. package/skills/graphify/validate.py +72 -0
  165. package/skills/graphify/watch.py +898 -0
  166. package/skills/graphify/wiki.py +282 -0
  167. package/skills/impeccable/SKILL.md +186 -0
  168. package/skills/impeccable/agents/impeccable_asset_producer.toml +92 -0
  169. package/skills/impeccable/agents/impeccable_manual_edit_applier.toml +95 -0
  170. package/skills/impeccable/agents/openai.yaml +4 -0
  171. package/skills/impeccable/reference/adapt.md +311 -0
  172. package/skills/impeccable/reference/animate.md +201 -0
  173. package/skills/impeccable/reference/audit.md +133 -0
  174. package/skills/impeccable/reference/bolder.md +113 -0
  175. package/skills/impeccable/reference/brand.md +108 -0
  176. package/skills/impeccable/reference/clarify.md +288 -0
  177. package/skills/impeccable/reference/codex.md +105 -0
  178. package/skills/impeccable/reference/colorize.md +257 -0
  179. package/skills/impeccable/reference/craft.md +123 -0
  180. package/skills/impeccable/reference/critique.md +790 -0
  181. package/skills/impeccable/reference/delight.md +302 -0
  182. package/skills/impeccable/reference/distill.md +111 -0
  183. package/skills/impeccable/reference/document.md +429 -0
  184. package/skills/impeccable/reference/extract.md +69 -0
  185. package/skills/impeccable/reference/harden.md +347 -0
  186. package/skills/impeccable/reference/init.md +172 -0
  187. package/skills/impeccable/reference/interaction-design.md +189 -0
  188. package/skills/impeccable/reference/layout.md +161 -0
  189. package/skills/impeccable/reference/live.md +720 -0
  190. package/skills/impeccable/reference/onboard.md +234 -0
  191. package/skills/impeccable/reference/optimize.md +258 -0
  192. package/skills/impeccable/reference/overdrive.md +130 -0
  193. package/skills/impeccable/reference/polish.md +241 -0
  194. package/skills/impeccable/reference/product.md +60 -0
  195. package/skills/impeccable/reference/quieter.md +99 -0
  196. package/skills/impeccable/reference/shape.md +165 -0
  197. package/skills/impeccable/reference/typeset.md +279 -0
  198. package/skills/impeccable/scripts/cleanup-deprecated.mjs +284 -0
  199. package/skills/impeccable/scripts/command-metadata.json +94 -0
  200. package/skills/impeccable/scripts/context-signals.mjs +225 -0
  201. package/skills/impeccable/scripts/context.mjs +266 -0
  202. package/skills/impeccable/scripts/critique-storage.mjs +242 -0
  203. package/skills/impeccable/scripts/design-parser.mjs +835 -0
  204. package/skills/impeccable/scripts/detect-csp.mjs +198 -0
  205. package/skills/impeccable/scripts/detect.mjs +21 -0
  206. package/skills/impeccable/scripts/detector/browser/injected/index.mjs +1733 -0
  207. package/skills/impeccable/scripts/detector/cli/main.mjs +244 -0
  208. package/skills/impeccable/scripts/detector/detect-antipatterns-browser.js +4618 -0
  209. package/skills/impeccable/scripts/detector/detect-antipatterns.mjs +43 -0
  210. package/skills/impeccable/scripts/detector/engines/browser/detect-url.mjs +252 -0
  211. package/skills/impeccable/scripts/detector/engines/regex/detect-text.mjs +535 -0
  212. package/skills/impeccable/scripts/detector/engines/static-html/css-cascade.mjs +986 -0
  213. package/skills/impeccable/scripts/detector/engines/static-html/detect-html.mjs +208 -0
  214. package/skills/impeccable/scripts/detector/engines/visual/screenshot-contrast.mjs +189 -0
  215. package/skills/impeccable/scripts/detector/findings.mjs +12 -0
  216. package/skills/impeccable/scripts/detector/node/file-system.mjs +198 -0
  217. package/skills/impeccable/scripts/detector/profile/profiler.mjs +166 -0
  218. package/skills/impeccable/scripts/detector/registry/antipatterns.mjs +419 -0
  219. package/skills/impeccable/scripts/detector/rules/checks.mjs +2384 -0
  220. package/skills/impeccable/scripts/detector/shared/color.mjs +124 -0
  221. package/skills/impeccable/scripts/detector/shared/constants.mjs +101 -0
  222. package/skills/impeccable/scripts/detector/shared/page.mjs +7 -0
  223. package/skills/impeccable/scripts/impeccable-paths.mjs +126 -0
  224. package/skills/impeccable/scripts/is-generated.mjs +69 -0
  225. package/skills/impeccable/scripts/live-accept.mjs +812 -0
  226. package/skills/impeccable/scripts/live-browser-session.js +123 -0
  227. package/skills/impeccable/scripts/live-browser.js +10295 -0
  228. package/skills/impeccable/scripts/live-commit-manual-edits.mjs +1241 -0
  229. package/skills/impeccable/scripts/live-complete.mjs +75 -0
  230. package/skills/impeccable/scripts/live-completion.mjs +19 -0
  231. package/skills/impeccable/scripts/live-copy-edit-agent.mjs +683 -0
  232. package/skills/impeccable/scripts/live-discard-manual-edits.mjs +51 -0
  233. package/skills/impeccable/scripts/live-event-validation.mjs +137 -0
  234. package/skills/impeccable/scripts/live-inject.mjs +557 -0
  235. package/skills/impeccable/scripts/live-insert-ui.mjs +458 -0
  236. package/skills/impeccable/scripts/live-insert.mjs +272 -0
  237. package/skills/impeccable/scripts/live-manual-edit-evidence.mjs +363 -0
  238. package/skills/impeccable/scripts/live-manual-edits-buffer.mjs +152 -0
  239. package/skills/impeccable/scripts/live-poll.mjs +379 -0
  240. package/skills/impeccable/scripts/live-resume.mjs +94 -0
  241. package/skills/impeccable/scripts/live-server.mjs +2326 -0
  242. package/skills/impeccable/scripts/live-session-store.mjs +289 -0
  243. package/skills/impeccable/scripts/live-status.mjs +61 -0
  244. package/skills/impeccable/scripts/live-svelte-component.mjs +826 -0
  245. package/skills/impeccable/scripts/live-sveltekit-adapter.mjs +274 -0
  246. package/skills/impeccable/scripts/live-ui-core.mjs +179 -0
  247. package/skills/impeccable/scripts/live-vocabulary.mjs +36 -0
  248. package/skills/impeccable/scripts/live-wrap.mjs +894 -0
  249. package/skills/impeccable/scripts/live.mjs +246 -0
  250. package/skills/impeccable/scripts/modern-screenshot.umd.js +14 -0
  251. package/skills/impeccable/scripts/palette.mjs +633 -0
  252. package/skills/impeccable/scripts/pin.mjs +214 -0
  253. package/skills/uipm-ui-styling/LICENSE.txt +202 -0
  254. package/skills/uipm-ui-styling/SKILL.md +328 -0
  255. package/skills/uipm-ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
  256. package/skills/uipm-ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  257. package/skills/uipm-ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  258. package/skills/uipm-ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
  259. package/skills/uipm-ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  260. package/skills/uipm-ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
  261. package/skills/uipm-ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
  262. package/skills/uipm-ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  263. package/skills/uipm-ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
  264. package/skills/uipm-ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  265. package/skills/uipm-ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  266. package/skills/uipm-ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  267. package/skills/uipm-ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
  268. package/skills/uipm-ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  269. package/skills/uipm-ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
  270. package/skills/uipm-ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
  271. package/skills/uipm-ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
  272. package/skills/uipm-ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
  273. package/skills/uipm-ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
  274. package/skills/uipm-ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
  275. package/skills/uipm-ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
  276. package/skills/uipm-ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
  277. package/skills/uipm-ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
  278. package/skills/uipm-ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  279. package/skills/uipm-ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
  280. package/skills/uipm-ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  281. package/skills/uipm-ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  282. package/skills/uipm-ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  283. package/skills/uipm-ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  284. package/skills/uipm-ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  285. package/skills/uipm-ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  286. package/skills/uipm-ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  287. package/skills/uipm-ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  288. package/skills/uipm-ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
  289. package/skills/uipm-ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  290. package/skills/uipm-ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  291. package/skills/uipm-ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  292. package/skills/uipm-ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
  293. package/skills/uipm-ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
  294. package/skills/uipm-ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  295. package/skills/uipm-ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
  296. package/skills/uipm-ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  297. package/skills/uipm-ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
  298. package/skills/uipm-ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
  299. package/skills/uipm-ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
  300. package/skills/uipm-ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
  301. package/skills/uipm-ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  302. package/skills/uipm-ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
  303. package/skills/uipm-ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  304. package/skills/uipm-ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
  305. package/skills/uipm-ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
  306. package/skills/uipm-ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
  307. package/skills/uipm-ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
  308. package/skills/uipm-ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
  309. package/skills/uipm-ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
  310. package/skills/uipm-ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
  311. package/skills/uipm-ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  312. package/skills/uipm-ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
  313. package/skills/uipm-ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
  314. package/skills/uipm-ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
  315. package/skills/uipm-ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  316. package/skills/uipm-ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
  317. package/skills/uipm-ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
  318. package/skills/uipm-ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  319. package/skills/uipm-ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  320. package/skills/uipm-ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
  321. package/skills/uipm-ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  322. package/skills/uipm-ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
  323. package/skills/uipm-ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  324. package/skills/uipm-ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  325. package/skills/uipm-ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
  326. package/skills/uipm-ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
  327. package/skills/uipm-ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
  328. package/skills/uipm-ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
  329. package/skills/uipm-ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
  330. package/skills/uipm-ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  331. package/skills/uipm-ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
  332. package/skills/uipm-ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
  333. package/skills/uipm-ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
  334. package/skills/uipm-ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
  335. package/skills/uipm-ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  336. package/skills/uipm-ui-styling/references/canvas-design-system.md +320 -0
  337. package/skills/uipm-ui-styling/references/shadcn-accessibility.md +471 -0
  338. package/skills/uipm-ui-styling/references/shadcn-components.md +424 -0
  339. package/skills/uipm-ui-styling/references/shadcn-theming.md +373 -0
  340. package/skills/uipm-ui-styling/references/tailwind-customization.md +483 -0
  341. package/skills/uipm-ui-styling/references/tailwind-responsive.md +382 -0
  342. package/skills/uipm-ui-styling/references/tailwind-utilities.md +455 -0
  343. package/skills/uipm-ui-styling/scripts/.coverage +0 -0
  344. package/skills/uipm-ui-styling/scripts/requirements.txt +17 -0
  345. package/skills/uipm-ui-styling/scripts/shadcn_add.py +292 -0
  346. package/skills/uipm-ui-styling/scripts/tailwind_config_gen.py +456 -0
  347. package/skills/uipm-ui-styling/scripts/tests/coverage-ui.json +1 -0
  348. package/skills/uipm-ui-styling/scripts/tests/requirements.txt +3 -0
  349. package/skills/uipm-ui-styling/scripts/tests/test_shadcn_add.py +266 -0
  350. package/skills/uipm-ui-styling/scripts/tests/test_tailwind_config_gen.py +336 -0
@@ -0,0 +1,274 @@
1
+ /**
2
+ * SvelteKit live-mode adapter.
3
+ *
4
+ * SvelteKit must not be patched through src/app.html. That file is a document
5
+ * template, not framework-owned component chrome. The adapter keeps SvelteKit
6
+ * work limited to mounting a dev-only shadow host from +layout.svelte; the
7
+ * actual live UI remains the shared plain-DOM browser chrome.
8
+ */
9
+
10
+ import fs from 'node:fs';
11
+ import path from 'node:path';
12
+
13
+ export const SVELTE_LIVE_ROOT_COMPONENT = 'src/lib/impeccable/ImpeccableLiveRoot.svelte';
14
+ export const SVELTE_LAYOUT_MARKER_OPEN = '<!-- impeccable-live-svelte-start -->';
15
+ export const SVELTE_LAYOUT_MARKER_CLOSE = '<!-- impeccable-live-svelte-end -->';
16
+ export const SVELTE_ROOT_IMPORT = "import ImpeccableLiveRoot from '$lib/impeccable/ImpeccableLiveRoot.svelte';";
17
+
18
+ export function detectSvelteKitProject(cwd = process.cwd(), config = null) {
19
+ const appHtml = findSvelteKitAppHtml(cwd, config);
20
+ if (!appHtml) return null;
21
+ const hasTemplateMarkers = fileIncludes(path.join(cwd, appHtml), '%sveltekit.body%')
22
+ && fileIncludes(path.join(cwd, appHtml), '%sveltekit.head%');
23
+ if (!hasTemplateMarkers) return null;
24
+
25
+ const hasSvelteConfig = fs.existsSync(path.join(cwd, 'svelte.config.js'))
26
+ || fs.existsSync(path.join(cwd, 'svelte.config.mjs'))
27
+ || fs.existsSync(path.join(cwd, 'svelte.config.cjs'))
28
+ || fs.existsSync(path.join(cwd, 'svelte.config.ts'));
29
+ const hasKitPackage = packageHasSvelteKit(cwd);
30
+ if (!hasSvelteConfig && !hasKitPackage) return null;
31
+
32
+ return {
33
+ appHtml,
34
+ layoutFile: findSvelteKitLayout(cwd),
35
+ rootComponent: SVELTE_LIVE_ROOT_COMPONENT,
36
+ };
37
+ }
38
+
39
+ export function applySvelteKitLiveAdapter({ cwd = process.cwd(), port, config = null } = {}) {
40
+ if (!Number.isFinite(Number(port))) {
41
+ throw new Error('SvelteKit live adapter requires a numeric port');
42
+ }
43
+ const detected = detectSvelteKitProject(cwd, config);
44
+ if (!detected) return null;
45
+
46
+ ensureSvelteLiveRootComponent(cwd, Number(port));
47
+
48
+ const layoutRel = detected.layoutFile;
49
+ const layoutAbs = path.join(cwd, layoutRel);
50
+ fs.mkdirSync(path.dirname(layoutAbs), { recursive: true });
51
+ const layoutExisted = fs.existsSync(layoutAbs);
52
+ const before = layoutExisted ? fs.readFileSync(layoutAbs, 'utf-8') : defaultSvelteLayout();
53
+ const after = patchSvelteLayout(before);
54
+ fs.writeFileSync(layoutAbs, after, 'utf-8');
55
+
56
+ return {
57
+ file: layoutRel,
58
+ adapter: 'sveltekit',
59
+ inserted: after !== before || !layoutExisted,
60
+ appHtmlUntouched: true,
61
+ rootComponent: SVELTE_LIVE_ROOT_COMPONENT,
62
+ };
63
+ }
64
+
65
+ export function removeSvelteKitLiveAdapter({ cwd = process.cwd(), config = null } = {}) {
66
+ const detected = detectSvelteKitProject(cwd, config);
67
+ if (!detected) return null;
68
+
69
+ const layoutAbs = path.join(cwd, detected.layoutFile);
70
+ let removed = false;
71
+ if (fs.existsSync(layoutAbs)) {
72
+ const before = fs.readFileSync(layoutAbs, 'utf-8');
73
+ const after = unpatchSvelteLayout(before);
74
+ if (after !== before) {
75
+ fs.writeFileSync(layoutAbs, after, 'utf-8');
76
+ removed = true;
77
+ }
78
+ }
79
+
80
+ const rootAbs = path.join(cwd, SVELTE_LIVE_ROOT_COMPONENT);
81
+ if (fs.existsSync(rootAbs)) {
82
+ fs.rmSync(rootAbs, { force: true });
83
+ removed = true;
84
+ }
85
+
86
+ pruneEmptyDir(path.dirname(rootAbs), path.join(cwd, 'src'));
87
+
88
+ return {
89
+ file: detected.layoutFile,
90
+ adapter: 'sveltekit',
91
+ removed,
92
+ appHtmlUntouched: true,
93
+ rootComponent: SVELTE_LIVE_ROOT_COMPONENT,
94
+ };
95
+ }
96
+
97
+ export function patchSvelteLayout(content) {
98
+ let out = String(content || '');
99
+ if (!out.includes(SVELTE_ROOT_IMPORT)) {
100
+ const scriptMatch = out.match(/<script(?:\s[^>]*)?>/i);
101
+ if (scriptMatch) {
102
+ const insertAt = scriptMatch.index + scriptMatch[0].length;
103
+ out = out.slice(0, insertAt) + '\n ' + SVELTE_ROOT_IMPORT + out.slice(insertAt);
104
+ } else {
105
+ out = `<script>\n ${SVELTE_ROOT_IMPORT}\n</script>\n\n` + out;
106
+ }
107
+ }
108
+
109
+ if (!out.includes(SVELTE_LAYOUT_MARKER_OPEN)) {
110
+ const block = `${SVELTE_LAYOUT_MARKER_OPEN}\n<ImpeccableLiveRoot />\n${SVELTE_LAYOUT_MARKER_CLOSE}\n`;
111
+ const renderMatch = out.match(/\{@render\s+children(?:\?\.)?\(\)\s*\}/);
112
+ const slotMatch = out.match(/<slot\s*\/?>/);
113
+ const match = renderMatch || slotMatch;
114
+ if (match) {
115
+ out = out.slice(0, match.index) + block + out.slice(match.index);
116
+ } else {
117
+ out = out.replace(/\s*$/, '\n\n' + block);
118
+ }
119
+ }
120
+
121
+ return out;
122
+ }
123
+
124
+ export function unpatchSvelteLayout(content) {
125
+ let out = String(content || '');
126
+ const blockRe = new RegExp(
127
+ '([ \\t]*)' + escapeRegExp(SVELTE_LAYOUT_MARKER_OPEN)
128
+ + '\\n<ImpeccableLiveRoot\\s*/>\\n'
129
+ + escapeRegExp(SVELTE_LAYOUT_MARKER_CLOSE)
130
+ + '\\n?',
131
+ 'g',
132
+ );
133
+ out = out.replace(blockRe, '$1');
134
+ out = out.replace(new RegExp('^\\s*' + escapeRegExp(SVELTE_ROOT_IMPORT) + '\\s*\\n?', 'gm'), '');
135
+ out = out.replace(/<script>\s*<\/script>\s*\n?/g, '');
136
+ return out.replace(/\n{3,}/g, '\n\n');
137
+ }
138
+
139
+ export function ensureSvelteLiveRootComponent(cwd, port) {
140
+ const file = path.join(cwd, SVELTE_LIVE_ROOT_COMPONENT);
141
+ fs.mkdirSync(path.dirname(file), { recursive: true });
142
+ fs.writeFileSync(file, buildSvelteLiveRootComponent(port), 'utf-8');
143
+ return file;
144
+ }
145
+
146
+ export function buildSvelteLiveRootComponent(port) {
147
+ return `<script>
148
+ import { onMount } from 'svelte';
149
+
150
+ const LIVE_URL = 'http://localhost:${Number(port)}/live.js';
151
+ const HOST_ID = 'impeccable-live-root';
152
+
153
+ onMount(() => {
154
+ let host = document.querySelector('impeccable-live-root#' + HOST_ID) || document.getElementById(HOST_ID);
155
+ if (!host) {
156
+ host = document.createElement('impeccable-live-root');
157
+ host.id = HOST_ID;
158
+ document.body.appendChild(host);
159
+ }
160
+
161
+ host.dataset.impeccableLiveAdapter = 'sveltekit';
162
+ host.style.setProperty('all', 'initial', 'important');
163
+ host.style.setProperty('display', 'block', 'important');
164
+ host.style.setProperty('position', 'fixed', 'important');
165
+ host.style.setProperty('top', '0', 'important');
166
+ host.style.setProperty('left', '0', 'important');
167
+ host.style.setProperty('width', '0', 'important');
168
+ host.style.setProperty('height', '0', 'important');
169
+ host.style.setProperty('overflow', 'visible', 'important');
170
+ host.style.setProperty('z-index', '2147483000', 'important');
171
+ host.style.setProperty('pointer-events', 'none', 'important');
172
+
173
+ const root = host.shadowRoot || host.attachShadow({ mode: 'open' });
174
+ if (!root.querySelector('style[data-impeccable-live-reset]')) {
175
+ const reset = document.createElement('style');
176
+ reset.dataset.impeccableLiveReset = 'true';
177
+ reset.textContent = ':host, :host *, * { box-sizing: border-box; }';
178
+ root.appendChild(reset);
179
+ }
180
+
181
+ window.__IMPECCABLE_LIVE_ADAPTER__ = 'sveltekit';
182
+ window.__IMPECCABLE_LIVE_UI_ROOT__ = root;
183
+ window.__IMPECCABLE_LIVE_CHROME_MOUNT__ = {
184
+ adapter: 'sveltekit',
185
+ version: 1,
186
+ host,
187
+ root,
188
+ };
189
+
190
+ const script = document.createElement('script');
191
+ script.src = LIVE_URL;
192
+ script.async = true;
193
+ script.dataset.impeccableLiveScript = 'true';
194
+ document.head.appendChild(script);
195
+
196
+ return () => {
197
+ script.remove();
198
+ if (window.__IMPECCABLE_LIVE_UI_ROOT__ === root) delete window.__IMPECCABLE_LIVE_UI_ROOT__;
199
+ if (window.__IMPECCABLE_LIVE_CHROME_MOUNT__?.root === root) delete window.__IMPECCABLE_LIVE_CHROME_MOUNT__;
200
+ if (window.__IMPECCABLE_LIVE_ADAPTER__ === 'sveltekit') delete window.__IMPECCABLE_LIVE_ADAPTER__;
201
+ };
202
+ });
203
+ </script>
204
+ `;
205
+ }
206
+
207
+ function findSvelteKitAppHtml(cwd, config) {
208
+ const files = Array.isArray(config?.files) ? config.files : ['src/app.html'];
209
+ for (const rel of files) {
210
+ if (rel.includes('*')) continue;
211
+ const normalized = rel.split(path.sep).join('/');
212
+ if (!normalized.endsWith('app.html')) continue;
213
+ const abs = path.join(cwd, normalized);
214
+ if (fs.existsSync(abs)) return normalized;
215
+ }
216
+ const fallback = 'src/app.html';
217
+ return fs.existsSync(path.join(cwd, fallback)) ? fallback : null;
218
+ }
219
+
220
+ function findSvelteKitLayout(cwd) {
221
+ const candidates = [
222
+ 'src/routes/+layout.svelte',
223
+ 'src/routes/(app)/+layout.svelte',
224
+ ];
225
+ for (const rel of candidates) {
226
+ if (fs.existsSync(path.join(cwd, rel))) return rel;
227
+ }
228
+ return 'src/routes/+layout.svelte';
229
+ }
230
+
231
+ function defaultSvelteLayout() {
232
+ return `<script>\n let { children } = $props();\n</script>\n\n{@render children?.()}\n`;
233
+ }
234
+
235
+ function packageHasSvelteKit(cwd) {
236
+ const file = path.join(cwd, 'package.json');
237
+ if (!fs.existsSync(file)) return false;
238
+ try {
239
+ const pkg = JSON.parse(fs.readFileSync(file, 'utf-8'));
240
+ const deps = {
241
+ ...(pkg.dependencies || {}),
242
+ ...(pkg.devDependencies || {}),
243
+ ...(pkg.peerDependencies || {}),
244
+ };
245
+ return Boolean(deps['@sveltejs/kit'] || deps['@sveltejs/vite-plugin-svelte'] || deps.svelte);
246
+ } catch {
247
+ return false;
248
+ }
249
+ }
250
+
251
+ function fileIncludes(file, text) {
252
+ try {
253
+ return fs.readFileSync(file, 'utf-8').includes(text);
254
+ } catch {
255
+ return false;
256
+ }
257
+ }
258
+
259
+ function pruneEmptyDir(dir, stopDir) {
260
+ let current = dir;
261
+ while (current.startsWith(stopDir) && current !== stopDir) {
262
+ try {
263
+ if (fs.readdirSync(current).length > 0) return;
264
+ fs.rmdirSync(current);
265
+ current = path.dirname(current);
266
+ } catch {
267
+ return;
268
+ }
269
+ }
270
+ }
271
+
272
+ function escapeRegExp(value) {
273
+ return String(value).replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
274
+ }
@@ -0,0 +1,179 @@
1
+ /**
2
+ * Framework-neutral Impeccable live chrome contract.
3
+ *
4
+ * The production browser bundle is intentionally plain DOM so Svelte, React,
5
+ * Vue, and static adapters can all mount the same chrome. This module is the
6
+ * testable contract/inventory for that bundle; live-browser.js mirrors these
7
+ * values at runtime because it is served as a standalone script.
8
+ */
9
+
10
+ export const LIVE_CHROME_MOUNT_CONTRACT = Object.freeze([
11
+ 'root',
12
+ 'transport',
13
+ 'state',
14
+ 'actions',
15
+ ]);
16
+
17
+ export const LIVE_UI_SURFACES = Object.freeze([
18
+ {
19
+ key: 'global-bottom-bar',
20
+ ids: [
21
+ 'impeccable-live-global-bar',
22
+ 'impeccable-live-global-bar-brand',
23
+ 'impeccable-live-pick-toggle',
24
+ 'impeccable-live-insert-toggle',
25
+ 'impeccable-live-detect-toggle',
26
+ 'impeccable-live-detect-badge',
27
+ 'impeccable-live-design-toggle',
28
+ 'impeccable-live-page-chat',
29
+ 'impeccable-live-page-chat-input',
30
+ 'impeccable-live-page-chat-voice',
31
+ ],
32
+ states: ['rest', 'hover', 'focus-visible', 'pressed', 'active', 'tooltip'],
33
+ },
34
+ {
35
+ key: 'pending-copy-edit-dock',
36
+ ids: ['impeccable-live-pending-dock'],
37
+ states: ['closed', 'open', 'hover', 'pressed', 'loading', 'rollback', 'keep-fixing'],
38
+ },
39
+ {
40
+ key: 'element-selection-chrome',
41
+ ids: [
42
+ 'impeccable-live-highlight',
43
+ 'impeccable-live-tooltip',
44
+ 'impeccable-live-bar',
45
+ 'impeccable-live-configure-input-wrap',
46
+ 'impeccable-live-input',
47
+ 'impeccable-live-configure-voice',
48
+ ],
49
+ states: ['rest', 'hover', 'focus-visible', 'pressed', 'disabled'],
50
+ },
51
+ {
52
+ key: 'action-picker',
53
+ ids: ['impeccable-live-picker'],
54
+ states: ['closed', 'open', 'option-hover', 'option-focus'],
55
+ },
56
+ {
57
+ key: 'edit-chrome',
58
+ ids: ['impeccable-live-edit-badge'],
59
+ states: ['enabled', 'disabled', 'editing', 'cancel', 'save', 'edited-content'],
60
+ },
61
+ {
62
+ key: 'generating-row',
63
+ ids: ['impeccable-live-bar', 'impeccable-live-shader'],
64
+ states: ['action-label', 'animated-dots', 'generating', 'done'],
65
+ },
66
+ {
67
+ key: 'variant-cycling-row',
68
+ ids: ['impeccable-live-bar', 'impeccable-live-params-panel'],
69
+ states: ['variant-1', 'variant-2', 'variant-3', 'left-disabled', 'right-disabled', 'dot-click', 'accept', 'discard'],
70
+ },
71
+ {
72
+ key: 'variant-params-panel',
73
+ ids: ['impeccable-live-params-panel'],
74
+ states: ['closed', 'open-above', 'open-below', 'range', 'steps', 'toggle'],
75
+ },
76
+ {
77
+ key: 'saving-confirmed-rows',
78
+ ids: ['impeccable-live-bar'],
79
+ states: ['saving', 'applying-variant', 'confirmed'],
80
+ },
81
+ {
82
+ key: 'insert-mode-chrome',
83
+ ids: [
84
+ 'impeccable-live-insert-line',
85
+ 'impeccable-live-insert-placeholder',
86
+ 'impeccable-live-placeholder-resize',
87
+ 'impeccable-live-insert-input',
88
+ 'impeccable-live-insert-voice',
89
+ 'impeccable-live-insert-create',
90
+ 'impeccable-live-insert-create-tooltip',
91
+ ],
92
+ states: ['toggle-active', 'line', 'placeholder', 'resize', 'enabled', 'disabled', 'tooltip'],
93
+ },
94
+ {
95
+ key: 'annotation-chrome',
96
+ ids: [
97
+ 'impeccable-live-annot',
98
+ 'impeccable-live-annot-svg',
99
+ 'impeccable-live-annot-pins',
100
+ 'impeccable-live-annot-clear',
101
+ ],
102
+ states: ['overlay', 'drawing', 'pin', 'pin-edit', 'clear'],
103
+ },
104
+ {
105
+ key: 'design-system-panel',
106
+ ids: ['impeccable-live-design-host'],
107
+ states: ['closed', 'open', 'tabs', 'token-tiles', 'copy'],
108
+ },
109
+ {
110
+ key: 'toasts-and-errors',
111
+ ids: ['impeccable-live-toast'],
112
+ states: ['normal', 'error', 'no-variants-mounted'],
113
+ },
114
+ {
115
+ key: 'css-isolation-boundary',
116
+ ids: ['impeccable-live-root'],
117
+ states: ['shadow-root', 'style-tags', 'hostile-css'],
118
+ },
119
+ ]);
120
+
121
+ export const LIVE_UI_COMPONENT_IDS = Object.freeze([
122
+ ...new Set(LIVE_UI_SURFACES.flatMap((surface) => surface.ids)),
123
+ ]);
124
+
125
+ export function resolveLiveUiRoot(env = globalThis) {
126
+ const doc = env?.document;
127
+ const explicit = env?.__IMPECCABLE_LIVE_UI_ROOT__
128
+ || env?.window?.__IMPECCABLE_LIVE_UI_ROOT__;
129
+ if (explicit && typeof explicit.appendChild === 'function') return explicit;
130
+ return doc?.body || null;
131
+ }
132
+
133
+ export function getLiveUiElementById(id, env = globalThis) {
134
+ const doc = env?.document;
135
+ const root = resolveLiveUiRoot(env);
136
+ if (!id) return null;
137
+ if (root?.getElementById) {
138
+ const found = root.getElementById(id);
139
+ if (found) return found;
140
+ }
141
+ if (root?.querySelector) {
142
+ const found = root.querySelector('#' + escapeCssIdent(id));
143
+ if (found) return found;
144
+ }
145
+ return doc?.getElementById?.(id) || null;
146
+ }
147
+
148
+ export function appendToLiveUiRoot(el, env = globalThis) {
149
+ const root = resolveLiveUiRoot(env);
150
+ if (!root) throw new Error('Impeccable live UI root is not available');
151
+ root.appendChild(el);
152
+ return el;
153
+ }
154
+
155
+ export function appendStyleToLiveUiRoot(styleEl, env = globalThis) {
156
+ const doc = env?.document;
157
+ const root = resolveLiveUiRoot(env);
158
+ if (root && root !== doc?.body) {
159
+ root.appendChild(styleEl);
160
+ } else {
161
+ (doc?.head || doc?.body || root).appendChild(styleEl);
162
+ }
163
+ return styleEl;
164
+ }
165
+
166
+ export function activeElementDeep(doc = globalThis.document) {
167
+ let active = doc?.activeElement || null;
168
+ while (active?.shadowRoot?.activeElement) {
169
+ active = active.shadowRoot.activeElement;
170
+ }
171
+ return active;
172
+ }
173
+
174
+ function escapeCssIdent(value) {
175
+ if (typeof CSS !== 'undefined' && typeof CSS.escape === 'function') {
176
+ return CSS.escape(String(value));
177
+ }
178
+ return String(value).replace(/([ !"#$%&'()*+,./:;<=>?@[\\\]^`{|}~])/g, '\\$1');
179
+ }
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Canonical design-command vocabulary for Live Mode: each command's value, human
3
+ * label, and SVG icon. Icons stack above the chip label; strokes use currentColor
4
+ * so the icon recolors when its chip is selected.
5
+ *
6
+ * Single source of truth, consumed by:
7
+ * - skill/scripts/live-event-validation.mjs — re-exports VISUAL_ACTIONS.
8
+ * - skill/scripts/live-browser.js — the real picker. It is served raw and
9
+ * injected as an IIFE, so it cannot import this at runtime; live-server.mjs
10
+ * serializes LIVE_COMMANDS into window.__IMPECCABLE_VOCAB__ alongside the
11
+ * token/port, and live-browser.js builds its ICONS + ACTIONS from that.
12
+ * - site/components/LiveDemoPalette.astro — the marketing demo palette (imported
13
+ * at build time).
14
+ *
15
+ * Add, rename, or reorder a verb here and all three follow.
16
+ */
17
+
18
+ const ICON_ATTRS = 'width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" style="display:block"';
19
+
20
+ export const LIVE_COMMANDS = [
21
+ { value: 'impeccable', label: 'Freeform', icon: `<svg ${ICON_ATTRS}><path d="M4 20l4-1L18 9l-3-3L5 16z"/><path d="M14 7l3 3"/></svg>` },
22
+ { value: 'bolder', label: 'Bolder', icon: `<svg ${ICON_ATTRS}><rect x="6" y="12" width="4" height="7" rx="0.5"/><rect x="14" y="5" width="4" height="14" rx="0.5"/></svg>` },
23
+ { value: 'quieter', label: 'Quieter', icon: `<svg ${ICON_ATTRS}><rect x="6" y="5" width="4" height="14" rx="0.5"/><rect x="14" y="12" width="4" height="7" rx="0.5"/></svg>` },
24
+ { value: 'distill', label: 'Distill', icon: `<svg ${ICON_ATTRS}><path d="M4 5h16l-6 8v7l-4-2v-5z"/></svg>` },
25
+ { value: 'polish', label: 'Polish', icon: `<svg ${ICON_ATTRS}><path d="M15 3l1 3 3 1-3 1-1 3-1-3-3-1 3-1z"/><path d="M7 13l0.6 1.8 1.8 0.6-1.8 0.6-0.6 1.8-0.6-1.8-1.8-0.6 1.8-0.6z"/></svg>` },
26
+ { value: 'typeset', label: 'Typeset', icon: `<svg ${ICON_ATTRS}><path d="M5 6h14" stroke-width="2.6"/><path d="M5 12h9" stroke-width="1.9"/><path d="M5 18h5" stroke-width="1.3"/></svg>` },
27
+ { value: 'colorize', label: 'Colorize', icon: `<svg ${ICON_ATTRS}><circle cx="9" cy="10" r="5"/><circle cx="15" cy="10" r="5"/><circle cx="12" cy="15" r="5"/></svg>` },
28
+ { value: 'layout', label: 'Layout', icon: `<svg ${ICON_ATTRS}><rect x="3" y="4" width="8" height="16" rx="0.5"/><rect x="13" y="4" width="8" height="7" rx="0.5"/><rect x="13" y="13" width="8" height="7" rx="0.5"/></svg>` },
29
+ { value: 'adapt', label: 'Adapt', icon: `<svg ${ICON_ATTRS}><rect x="2.5" y="5" width="12" height="11" rx="1"/><line x1="2.5" y1="19" x2="14.5" y2="19"/><rect x="16.5" y="8" width="5" height="11" rx="1"/></svg>` },
30
+ { value: 'animate', label: 'Animate', icon: `<svg ${ICON_ATTRS}><path d="M3 18c4-4 6-10 10-10"/><path d="M13 8c3 0 5 5 8 10"/><circle cx="13" cy="8" r="1.6" fill="currentColor" stroke="none"/></svg>` },
31
+ { value: 'delight', label: 'Delight', icon: `<svg ${ICON_ATTRS}><path d="M12 3l2 6 6 2-6 2-2 6-2-6-6-2 6-2z"/></svg>` },
32
+ { value: 'overdrive', label: 'Overdrive', icon: `<svg ${ICON_ATTRS}><path d="M13 3L5 13h5l-1 8 9-12h-6z"/></svg>` },
33
+ ];
34
+
35
+ // Action values accepted by the live event protocol, in palette order.
36
+ export const VISUAL_ACTIONS = LIVE_COMMANDS.map((c) => c.value);