@su-record/vibe 2.7.2 → 2.7.5

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 (1567) hide show
  1. package/.env.example +37 -37
  2. package/CLAUDE.md +222 -222
  3. package/LICENSE +21 -21
  4. package/README.md +580 -580
  5. package/agents/architect-low.md +41 -41
  6. package/agents/architect-medium.md +59 -59
  7. package/agents/architect.md +80 -80
  8. package/agents/build-error-resolver.md +115 -115
  9. package/agents/compounder.md +261 -261
  10. package/agents/diagrammer.md +178 -178
  11. package/agents/docs/api-documenter.md +99 -99
  12. package/agents/docs/changelog-writer.md +93 -93
  13. package/agents/e2e-tester.md +266 -266
  14. package/agents/explorer-low.md +42 -42
  15. package/agents/explorer-medium.md +59 -59
  16. package/agents/explorer.md +48 -48
  17. package/agents/implementer-low.md +43 -43
  18. package/agents/implementer-medium.md +52 -52
  19. package/agents/implementer.md +54 -54
  20. package/agents/junior-mentor.md +141 -141
  21. package/agents/planning/requirements-analyst.md +84 -84
  22. package/agents/planning/ux-advisor.md +83 -83
  23. package/agents/qa/acceptance-tester.md +86 -86
  24. package/agents/qa/edge-case-finder.md +93 -93
  25. package/agents/refactor-cleaner.md +143 -143
  26. package/agents/research/best-practices-agent.md +199 -199
  27. package/agents/research/codebase-patterns-agent.md +157 -157
  28. package/agents/research/framework-docs-agent.md +188 -188
  29. package/agents/research/security-advisory-agent.md +213 -213
  30. package/agents/review/architecture-reviewer.md +107 -107
  31. package/agents/review/complexity-reviewer.md +116 -116
  32. package/agents/review/data-integrity-reviewer.md +88 -88
  33. package/agents/review/git-history-reviewer.md +103 -103
  34. package/agents/review/performance-reviewer.md +86 -86
  35. package/agents/review/python-reviewer.md +150 -150
  36. package/agents/review/rails-reviewer.md +139 -139
  37. package/agents/review/react-reviewer.md +144 -144
  38. package/agents/review/security-reviewer.md +80 -80
  39. package/agents/review/simplicity-reviewer.md +140 -140
  40. package/agents/review/test-coverage-reviewer.md +116 -116
  41. package/agents/review/typescript-reviewer.md +127 -127
  42. package/agents/searcher.md +54 -54
  43. package/agents/simplifier.md +120 -120
  44. package/agents/tester.md +49 -49
  45. package/agents/ui/ui-a11y-auditor.md +93 -93
  46. package/agents/ui/ui-antipattern-detector.md +94 -94
  47. package/agents/ui/ui-dataviz-advisor.md +69 -69
  48. package/agents/ui/ui-design-system-gen.md +57 -57
  49. package/agents/ui/ui-industry-analyzer.md +49 -49
  50. package/agents/ui/ui-layout-architect.md +65 -65
  51. package/agents/ui/ui-stack-implementer.md +68 -68
  52. package/agents/ui/ux-compliance-reviewer.md +81 -81
  53. package/agents/ui-previewer.md +260 -260
  54. package/commands/vibe.run.md +1 -1
  55. package/commands/vibe.spec.md +8 -8
  56. package/commands/vibe.spec.review.md +558 -558
  57. package/commands/vibe.utils.md +413 -413
  58. package/commands/vibe.voice.md +79 -79
  59. package/dist/agent/AgentLoop.d.ts +97 -0
  60. package/dist/agent/AgentLoop.d.ts.map +1 -0
  61. package/dist/agent/AgentLoop.js +546 -0
  62. package/dist/agent/AgentLoop.js.map +1 -0
  63. package/dist/agent/ConversationState.d.ts +29 -0
  64. package/dist/agent/ConversationState.d.ts.map +1 -0
  65. package/dist/agent/ConversationState.js +107 -0
  66. package/dist/agent/ConversationState.js.map +1 -0
  67. package/dist/agent/ConversationStore.d.ts +31 -0
  68. package/dist/agent/ConversationStore.d.ts.map +1 -0
  69. package/dist/agent/ConversationStore.integration.test.d.ts +2 -0
  70. package/dist/agent/ConversationStore.integration.test.d.ts.map +1 -0
  71. package/dist/agent/ConversationStore.integration.test.js +162 -0
  72. package/dist/agent/ConversationStore.integration.test.js.map +1 -0
  73. package/dist/agent/ConversationStore.js +126 -0
  74. package/dist/agent/ConversationStore.js.map +1 -0
  75. package/dist/agent/ConversationStore.test.d.ts +2 -0
  76. package/dist/agent/ConversationStore.test.d.ts.map +1 -0
  77. package/dist/agent/ConversationStore.test.js +93 -0
  78. package/dist/agent/ConversationStore.test.js.map +1 -0
  79. package/dist/agent/HeadModelSelector.d.ts +36 -0
  80. package/dist/agent/HeadModelSelector.d.ts.map +1 -0
  81. package/dist/agent/HeadModelSelector.js +124 -0
  82. package/dist/agent/HeadModelSelector.js.map +1 -0
  83. package/dist/agent/RateLimiter.d.ts +44 -0
  84. package/dist/agent/RateLimiter.d.ts.map +1 -0
  85. package/dist/agent/RateLimiter.js +71 -0
  86. package/dist/agent/RateLimiter.js.map +1 -0
  87. package/dist/agent/SystemPrompt.d.ts +35 -0
  88. package/dist/agent/SystemPrompt.d.ts.map +1 -0
  89. package/dist/agent/SystemPrompt.js +151 -0
  90. package/dist/agent/SystemPrompt.js.map +1 -0
  91. package/dist/agent/ToolExecutor.d.ts +33 -0
  92. package/dist/agent/ToolExecutor.d.ts.map +1 -0
  93. package/dist/agent/ToolExecutor.js +123 -0
  94. package/dist/agent/ToolExecutor.js.map +1 -0
  95. package/dist/agent/ToolRegistry.d.ts +37 -0
  96. package/dist/agent/ToolRegistry.d.ts.map +1 -0
  97. package/dist/agent/ToolRegistry.js +125 -0
  98. package/dist/agent/ToolRegistry.js.map +1 -0
  99. package/dist/agent/__tests__/AgentLoop.test.d.ts +6 -0
  100. package/dist/agent/__tests__/AgentLoop.test.d.ts.map +1 -0
  101. package/dist/agent/__tests__/AgentLoop.test.js +208 -0
  102. package/dist/agent/__tests__/AgentLoop.test.js.map +1 -0
  103. package/dist/agent/__tests__/ConversationState.test.d.ts +6 -0
  104. package/dist/agent/__tests__/ConversationState.test.d.ts.map +1 -0
  105. package/dist/agent/__tests__/ConversationState.test.js +102 -0
  106. package/dist/agent/__tests__/ConversationState.test.js.map +1 -0
  107. package/dist/agent/__tests__/HeadModelSelector.test.d.ts +6 -0
  108. package/dist/agent/__tests__/HeadModelSelector.test.d.ts.map +1 -0
  109. package/dist/agent/__tests__/HeadModelSelector.test.js +132 -0
  110. package/dist/agent/__tests__/HeadModelSelector.test.js.map +1 -0
  111. package/dist/agent/__tests__/JobManager.test.d.ts +6 -0
  112. package/dist/agent/__tests__/JobManager.test.d.ts.map +1 -0
  113. package/dist/agent/__tests__/JobManager.test.js +197 -0
  114. package/dist/agent/__tests__/JobManager.test.js.map +1 -0
  115. package/dist/agent/__tests__/MediaPreprocessor.test.d.ts +6 -0
  116. package/dist/agent/__tests__/MediaPreprocessor.test.d.ts.map +1 -0
  117. package/dist/agent/__tests__/MediaPreprocessor.test.js +163 -0
  118. package/dist/agent/__tests__/MediaPreprocessor.test.js.map +1 -0
  119. package/dist/agent/__tests__/ToolExecutor.test.d.ts +6 -0
  120. package/dist/agent/__tests__/ToolExecutor.test.d.ts.map +1 -0
  121. package/dist/agent/__tests__/ToolExecutor.test.js +140 -0
  122. package/dist/agent/__tests__/ToolExecutor.test.js.map +1 -0
  123. package/dist/agent/__tests__/ToolRegistry.test.d.ts +6 -0
  124. package/dist/agent/__tests__/ToolRegistry.test.d.ts.map +1 -0
  125. package/dist/agent/__tests__/ToolRegistry.test.js +172 -0
  126. package/dist/agent/__tests__/ToolRegistry.test.js.map +1 -0
  127. package/dist/agent/__tests__/tools.test.d.ts +6 -0
  128. package/dist/agent/__tests__/tools.test.d.ts.map +1 -0
  129. package/dist/agent/__tests__/tools.test.js +177 -0
  130. package/dist/agent/__tests__/tools.test.js.map +1 -0
  131. package/dist/agent/index.d.ts +19 -0
  132. package/dist/agent/index.d.ts.map +1 -0
  133. package/dist/agent/index.js +18 -0
  134. package/dist/agent/index.js.map +1 -0
  135. package/dist/agent/jobs/JobManager.d.ts +46 -0
  136. package/dist/agent/jobs/JobManager.d.ts.map +1 -0
  137. package/dist/agent/jobs/JobManager.js +213 -0
  138. package/dist/agent/jobs/JobManager.js.map +1 -0
  139. package/dist/agent/jobs/ProgressReporter.d.ts +32 -0
  140. package/dist/agent/jobs/ProgressReporter.d.ts.map +1 -0
  141. package/dist/agent/jobs/ProgressReporter.js +82 -0
  142. package/dist/agent/jobs/ProgressReporter.js.map +1 -0
  143. package/dist/agent/jobs/types.d.ts +32 -0
  144. package/dist/agent/jobs/types.d.ts.map +1 -0
  145. package/dist/agent/jobs/types.js +6 -0
  146. package/dist/agent/jobs/types.js.map +1 -0
  147. package/dist/agent/policy-integration.test.d.ts +6 -0
  148. package/dist/agent/policy-integration.test.d.ts.map +1 -0
  149. package/dist/agent/policy-integration.test.js +148 -0
  150. package/dist/agent/policy-integration.test.js.map +1 -0
  151. package/dist/agent/preprocessors/MediaPreprocessor.d.ts +63 -0
  152. package/dist/agent/preprocessors/MediaPreprocessor.d.ts.map +1 -0
  153. package/dist/agent/preprocessors/MediaPreprocessor.js +320 -0
  154. package/dist/agent/preprocessors/MediaPreprocessor.js.map +1 -0
  155. package/dist/agent/providers/claude-head.d.ts +17 -0
  156. package/dist/agent/providers/claude-head.d.ts.map +1 -0
  157. package/dist/agent/providers/claude-head.js +124 -0
  158. package/dist/agent/providers/claude-head.js.map +1 -0
  159. package/dist/agent/providers/gpt-head.d.ts +30 -0
  160. package/dist/agent/providers/gpt-head.d.ts.map +1 -0
  161. package/dist/agent/providers/gpt-head.js +359 -0
  162. package/dist/agent/providers/gpt-head.js.map +1 -0
  163. package/dist/agent/tools/claude-code.d.ts +11 -0
  164. package/dist/agent/tools/claude-code.d.ts.map +1 -0
  165. package/dist/agent/tools/claude-code.js +148 -0
  166. package/dist/agent/tools/claude-code.js.map +1 -0
  167. package/dist/agent/tools/dm-pair.d.ts +23 -0
  168. package/dist/agent/tools/dm-pair.d.ts.map +1 -0
  169. package/dist/agent/tools/dm-pair.js +70 -0
  170. package/dist/agent/tools/dm-pair.js.map +1 -0
  171. package/dist/agent/tools/dm-pair.test.d.ts +6 -0
  172. package/dist/agent/tools/dm-pair.test.d.ts.map +1 -0
  173. package/dist/agent/tools/dm-pair.test.js +106 -0
  174. package/dist/agent/tools/dm-pair.test.js.map +1 -0
  175. package/dist/agent/tools/gemini-stt.d.ts +9 -0
  176. package/dist/agent/tools/gemini-stt.d.ts.map +1 -0
  177. package/dist/agent/tools/gemini-stt.js +33 -0
  178. package/dist/agent/tools/gemini-stt.js.map +1 -0
  179. package/dist/agent/tools/google-search.d.ts +9 -0
  180. package/dist/agent/tools/google-search.d.ts.map +1 -0
  181. package/dist/agent/tools/google-search.js +38 -0
  182. package/dist/agent/tools/google-search.js.map +1 -0
  183. package/dist/agent/tools/index.d.ts +22 -0
  184. package/dist/agent/tools/index.d.ts.map +1 -0
  185. package/dist/agent/tools/index.js +37 -0
  186. package/dist/agent/tools/index.js.map +1 -0
  187. package/dist/agent/tools/kimi-analyze.d.ts +9 -0
  188. package/dist/agent/tools/kimi-analyze.d.ts.map +1 -0
  189. package/dist/agent/tools/kimi-analyze.js +49 -0
  190. package/dist/agent/tools/kimi-analyze.js.map +1 -0
  191. package/dist/agent/tools/manage-memory.d.ts +10 -0
  192. package/dist/agent/tools/manage-memory.d.ts.map +1 -0
  193. package/dist/agent/tools/manage-memory.js +70 -0
  194. package/dist/agent/tools/manage-memory.js.map +1 -0
  195. package/dist/agent/tools/send-imessage.d.ts +19 -0
  196. package/dist/agent/tools/send-imessage.d.ts.map +1 -0
  197. package/dist/agent/tools/send-imessage.js +67 -0
  198. package/dist/agent/tools/send-imessage.js.map +1 -0
  199. package/dist/agent/tools/send-slack.d.ts +21 -0
  200. package/dist/agent/tools/send-slack.d.ts.map +1 -0
  201. package/dist/agent/tools/send-slack.js +63 -0
  202. package/dist/agent/tools/send-slack.js.map +1 -0
  203. package/dist/agent/tools/send-telegram.d.ts +20 -0
  204. package/dist/agent/tools/send-telegram.d.ts.map +1 -0
  205. package/dist/agent/tools/send-telegram.js +58 -0
  206. package/dist/agent/tools/send-telegram.js.map +1 -0
  207. package/dist/agent/tools/vision-analyze.d.ts +11 -0
  208. package/dist/agent/tools/vision-analyze.d.ts.map +1 -0
  209. package/dist/agent/tools/vision-analyze.js +103 -0
  210. package/dist/agent/tools/vision-analyze.js.map +1 -0
  211. package/dist/agent/tools/vision-capture.d.ts +13 -0
  212. package/dist/agent/tools/vision-capture.d.ts.map +1 -0
  213. package/dist/agent/tools/vision-capture.js +87 -0
  214. package/dist/agent/tools/vision-capture.js.map +1 -0
  215. package/dist/agent/tools/web-browse.d.ts +20 -0
  216. package/dist/agent/tools/web-browse.d.ts.map +1 -0
  217. package/dist/agent/tools/web-browse.js +196 -0
  218. package/dist/agent/tools/web-browse.js.map +1 -0
  219. package/dist/agent/types.d.ts +151 -0
  220. package/dist/agent/types.d.ts.map +1 -0
  221. package/dist/agent/types.js +6 -0
  222. package/dist/agent/types.js.map +1 -0
  223. package/dist/bridge/telegram-assistant-bridge.d.ts +10 -0
  224. package/dist/bridge/telegram-assistant-bridge.d.ts.map +1 -0
  225. package/dist/bridge/telegram-assistant-bridge.js +274 -0
  226. package/dist/bridge/telegram-assistant-bridge.js.map +1 -0
  227. package/dist/bridge/telegram-bridge.d.ts +10 -0
  228. package/dist/bridge/telegram-bridge.d.ts.map +1 -0
  229. package/dist/bridge/telegram-bridge.js +154 -0
  230. package/dist/bridge/telegram-bridge.js.map +1 -0
  231. package/dist/cli/collaborator.js +52 -52
  232. package/dist/cli/commands/autostart.d.ts +19 -0
  233. package/dist/cli/commands/autostart.d.ts.map +1 -0
  234. package/dist/cli/commands/autostart.js +213 -0
  235. package/dist/cli/commands/autostart.js.map +1 -0
  236. package/dist/cli/commands/browser.d.ts +12 -0
  237. package/dist/cli/commands/browser.d.ts.map +1 -0
  238. package/dist/cli/commands/browser.js +50 -0
  239. package/dist/cli/commands/browser.js.map +1 -0
  240. package/dist/cli/commands/daemon.d.ts +16 -0
  241. package/dist/cli/commands/daemon.d.ts.map +1 -0
  242. package/dist/cli/commands/daemon.js +277 -0
  243. package/dist/cli/commands/daemon.js.map +1 -0
  244. package/dist/cli/commands/device.d.ts +9 -0
  245. package/dist/cli/commands/device.d.ts.map +1 -0
  246. package/dist/cli/commands/device.js +56 -0
  247. package/dist/cli/commands/device.js.map +1 -0
  248. package/dist/cli/commands/evolution.js +12 -12
  249. package/dist/cli/commands/google.d.ts +12 -0
  250. package/dist/cli/commands/google.d.ts.map +1 -0
  251. package/dist/cli/commands/google.js +83 -0
  252. package/dist/cli/commands/google.js.map +1 -0
  253. package/dist/cli/commands/imessage.d.ts +11 -0
  254. package/dist/cli/commands/imessage.d.ts.map +1 -0
  255. package/dist/cli/commands/imessage.js +85 -0
  256. package/dist/cli/commands/imessage.js.map +1 -0
  257. package/dist/cli/commands/info.js +54 -54
  258. package/dist/cli/commands/init.js +6 -6
  259. package/dist/cli/commands/interface.d.ts +15 -0
  260. package/dist/cli/commands/interface.d.ts.map +1 -0
  261. package/dist/cli/commands/interface.js +167 -0
  262. package/dist/cli/commands/interface.js.map +1 -0
  263. package/dist/cli/commands/job.d.ts +14 -0
  264. package/dist/cli/commands/job.d.ts.map +1 -0
  265. package/dist/cli/commands/job.js +170 -0
  266. package/dist/cli/commands/job.js.map +1 -0
  267. package/dist/cli/commands/pc.d.ts +12 -0
  268. package/dist/cli/commands/pc.d.ts.map +1 -0
  269. package/dist/cli/commands/pc.js +75 -0
  270. package/dist/cli/commands/pc.js.map +1 -0
  271. package/dist/cli/commands/policy.d.ts +10 -0
  272. package/dist/cli/commands/policy.d.ts.map +1 -0
  273. package/dist/cli/commands/policy.js +75 -0
  274. package/dist/cli/commands/policy.js.map +1 -0
  275. package/dist/cli/commands/remove.js +14 -14
  276. package/dist/cli/commands/sandbox.d.ts +10 -0
  277. package/dist/cli/commands/sandbox.d.ts.map +1 -0
  278. package/dist/cli/commands/sandbox.js +53 -0
  279. package/dist/cli/commands/sandbox.js.map +1 -0
  280. package/dist/cli/commands/sentinel.js +27 -27
  281. package/dist/cli/commands/setup.d.ts.map +1 -1
  282. package/dist/cli/commands/setup.js +1 -25
  283. package/dist/cli/commands/setup.js.map +1 -1
  284. package/dist/cli/commands/slack.js +10 -10
  285. package/dist/cli/commands/sync.d.ts +9 -0
  286. package/dist/cli/commands/sync.d.ts.map +1 -0
  287. package/dist/cli/commands/sync.js +167 -0
  288. package/dist/cli/commands/sync.js.map +1 -0
  289. package/dist/cli/commands/telegram.js +12 -12
  290. package/dist/cli/commands/vision.d.ts +12 -0
  291. package/dist/cli/commands/vision.d.ts.map +1 -0
  292. package/dist/cli/commands/vision.js +74 -0
  293. package/dist/cli/commands/vision.js.map +1 -0
  294. package/dist/cli/commands/voice.d.ts +12 -0
  295. package/dist/cli/commands/voice.d.ts.map +1 -0
  296. package/dist/cli/commands/voice.js +67 -0
  297. package/dist/cli/commands/voice.js.map +1 -0
  298. package/dist/cli/commands/webhook.d.ts +9 -0
  299. package/dist/cli/commands/webhook.d.ts.map +1 -0
  300. package/dist/cli/commands/webhook.js +85 -0
  301. package/dist/cli/commands/webhook.js.map +1 -0
  302. package/dist/cli/detect.js +32 -32
  303. package/dist/cli/hud.d.ts +46 -0
  304. package/dist/cli/hud.d.ts.map +1 -0
  305. package/dist/cli/hud.js +392 -0
  306. package/dist/cli/hud.js.map +1 -0
  307. package/dist/cli/index.d.ts.map +1 -1
  308. package/dist/cli/index.js +48 -53
  309. package/dist/cli/index.js.map +1 -1
  310. package/dist/cli/llm/az-commands.d.ts +12 -0
  311. package/dist/cli/llm/az-commands.d.ts.map +1 -0
  312. package/dist/cli/llm/az-commands.js +99 -0
  313. package/dist/cli/llm/az-commands.js.map +1 -0
  314. package/dist/cli/llm/claude-commands.js +16 -16
  315. package/dist/cli/llm/config.js +18 -18
  316. package/dist/cli/llm/gemini-commands.js +47 -47
  317. package/dist/cli/llm/gpt-commands.d.ts +6 -13
  318. package/dist/cli/llm/gpt-commands.d.ts.map +1 -1
  319. package/dist/cli/llm/gpt-commands.js +47 -117
  320. package/dist/cli/llm/gpt-commands.js.map +1 -1
  321. package/dist/cli/llm/help.js +21 -21
  322. package/dist/cli/llm/kimi-commands.d.ts +12 -0
  323. package/dist/cli/llm/kimi-commands.d.ts.map +1 -0
  324. package/dist/cli/llm/kimi-commands.js +100 -0
  325. package/dist/cli/llm/kimi-commands.js.map +1 -0
  326. package/dist/cli/llm/nvidia-commands.d.ts +16 -0
  327. package/dist/cli/llm/nvidia-commands.d.ts.map +1 -0
  328. package/dist/cli/llm/nvidia-commands.js +105 -0
  329. package/dist/cli/llm/nvidia-commands.js.map +1 -0
  330. package/dist/cli/llm/priority-commands.d.ts +18 -0
  331. package/dist/cli/llm/priority-commands.d.ts.map +1 -0
  332. package/dist/cli/llm/priority-commands.js +69 -0
  333. package/dist/cli/llm/priority-commands.js.map +1 -0
  334. package/dist/cli/postinstall/cursor-agents.js +32 -32
  335. package/dist/cli/postinstall/cursor-rules.js +83 -83
  336. package/dist/cli/postinstall/cursor-skills.js +743 -743
  337. package/dist/cli/postinstall/npmrc.d.ts +9 -0
  338. package/dist/cli/postinstall/npmrc.d.ts.map +1 -0
  339. package/dist/cli/postinstall/npmrc.js +80 -0
  340. package/dist/cli/postinstall/npmrc.js.map +1 -0
  341. package/dist/cli/types.d.ts +1 -0
  342. package/dist/cli/types.d.ts.map +1 -1
  343. package/dist/daemon/DaemonIPC.d.ts +40 -0
  344. package/dist/daemon/DaemonIPC.d.ts.map +1 -0
  345. package/dist/daemon/DaemonIPC.js +327 -0
  346. package/dist/daemon/DaemonIPC.js.map +1 -0
  347. package/dist/daemon/InterfaceManager.d.ts +62 -0
  348. package/dist/daemon/InterfaceManager.d.ts.map +1 -0
  349. package/dist/daemon/InterfaceManager.js +785 -0
  350. package/dist/daemon/InterfaceManager.js.map +1 -0
  351. package/dist/daemon/SessionPool.d.ts +80 -0
  352. package/dist/daemon/SessionPool.d.ts.map +1 -0
  353. package/dist/daemon/SessionPool.js +414 -0
  354. package/dist/daemon/SessionPool.js.map +1 -0
  355. package/dist/daemon/VibeDaemon.d.ts +69 -0
  356. package/dist/daemon/VibeDaemon.d.ts.map +1 -0
  357. package/dist/daemon/VibeDaemon.js +400 -0
  358. package/dist/daemon/VibeDaemon.js.map +1 -0
  359. package/dist/daemon/daemon.test.d.ts +6 -0
  360. package/dist/daemon/daemon.test.d.ts.map +1 -0
  361. package/dist/daemon/daemon.test.js +348 -0
  362. package/dist/daemon/daemon.test.js.map +1 -0
  363. package/dist/daemon/index.d.ts +10 -0
  364. package/dist/daemon/index.d.ts.map +1 -0
  365. package/dist/daemon/index.js +9 -0
  366. package/dist/daemon/index.js.map +1 -0
  367. package/dist/daemon/pipeline.test.d.ts +6 -0
  368. package/dist/daemon/pipeline.test.d.ts.map +1 -0
  369. package/dist/daemon/pipeline.test.js +258 -0
  370. package/dist/daemon/pipeline.test.js.map +1 -0
  371. package/dist/daemon/preflight.d.ts +23 -0
  372. package/dist/daemon/preflight.d.ts.map +1 -0
  373. package/dist/daemon/preflight.js +204 -0
  374. package/dist/daemon/preflight.js.map +1 -0
  375. package/dist/daemon/preflight.test.d.ts +6 -0
  376. package/dist/daemon/preflight.test.d.ts.map +1 -0
  377. package/dist/daemon/preflight.test.js +88 -0
  378. package/dist/daemon/preflight.test.js.map +1 -0
  379. package/dist/daemon/types.d.ts +117 -0
  380. package/dist/daemon/types.d.ts.map +1 -0
  381. package/dist/daemon/types.js +15 -0
  382. package/dist/daemon/types.js.map +1 -0
  383. package/dist/infra/lib/DeepInit.js +24 -24
  384. package/dist/infra/lib/IterationTracker.js +11 -11
  385. package/dist/infra/lib/PythonParser.js +108 -108
  386. package/dist/infra/lib/ReviewRace.js +96 -96
  387. package/dist/infra/lib/SkillFrontmatter.js +28 -28
  388. package/dist/infra/lib/SkillQualityGate.js +9 -9
  389. package/dist/infra/lib/SkillRepository.js +159 -159
  390. package/dist/infra/lib/UltraQA.js +99 -99
  391. package/dist/infra/lib/autonomy/AuditStore.js +41 -41
  392. package/dist/infra/lib/autonomy/ConfirmationStore.js +30 -30
  393. package/dist/infra/lib/autonomy/EventOutbox.js +38 -38
  394. package/dist/infra/lib/autonomy/PolicyEngine.js +18 -18
  395. package/dist/infra/lib/autonomy/SecuritySentinel.js +1 -1
  396. package/dist/infra/lib/autonomy/SuggestionStore.js +33 -33
  397. package/dist/infra/lib/az/auth.d.ts +15 -0
  398. package/dist/infra/lib/az/auth.d.ts.map +1 -0
  399. package/dist/infra/lib/az/auth.js +67 -0
  400. package/dist/infra/lib/az/auth.js.map +1 -0
  401. package/dist/infra/lib/az/chat.d.ts +26 -0
  402. package/dist/infra/lib/az/chat.d.ts.map +1 -0
  403. package/dist/infra/lib/az/chat.js +116 -0
  404. package/dist/infra/lib/az/chat.js.map +1 -0
  405. package/dist/infra/lib/az/embedding.d.ts +13 -0
  406. package/dist/infra/lib/az/embedding.d.ts.map +1 -0
  407. package/dist/infra/lib/az/embedding.js +60 -0
  408. package/dist/infra/lib/az/embedding.js.map +1 -0
  409. package/dist/infra/lib/az/index.d.ts +9 -0
  410. package/dist/infra/lib/az/index.d.ts.map +1 -0
  411. package/dist/infra/lib/az/index.js +9 -0
  412. package/dist/infra/lib/az/index.js.map +1 -0
  413. package/dist/infra/lib/az/orchestration.d.ts +11 -0
  414. package/dist/infra/lib/az/orchestration.d.ts.map +1 -0
  415. package/dist/infra/lib/az/orchestration.js +24 -0
  416. package/dist/infra/lib/az/orchestration.js.map +1 -0
  417. package/dist/infra/lib/az/types.d.ts +35 -0
  418. package/dist/infra/lib/az/types.d.ts.map +1 -0
  419. package/dist/infra/lib/az/types.js +5 -0
  420. package/dist/infra/lib/az/types.js.map +1 -0
  421. package/dist/infra/lib/az-api.d.ts +5 -0
  422. package/dist/infra/lib/az-api.d.ts.map +1 -0
  423. package/dist/infra/lib/az-api.js +5 -0
  424. package/dist/infra/lib/az-api.js.map +1 -0
  425. package/dist/infra/lib/az-constants.d.ts +44 -0
  426. package/dist/infra/lib/az-constants.d.ts.map +1 -0
  427. package/dist/infra/lib/az-constants.js +58 -0
  428. package/dist/infra/lib/az-constants.js.map +1 -0
  429. package/dist/infra/lib/az-storage.d.ts +12 -0
  430. package/dist/infra/lib/az-storage.d.ts.map +1 -0
  431. package/dist/infra/lib/az-storage.js +59 -0
  432. package/dist/infra/lib/az-storage.js.map +1 -0
  433. package/dist/infra/lib/claude-storage.d.ts +12 -0
  434. package/dist/infra/lib/claude-storage.d.ts.map +1 -0
  435. package/dist/infra/lib/claude-storage.js +59 -0
  436. package/dist/infra/lib/claude-storage.js.map +1 -0
  437. package/dist/infra/lib/embedding/VectorStore.js +22 -22
  438. package/dist/infra/lib/evolution/AgentAnalyzer.js +10 -10
  439. package/dist/infra/lib/evolution/GenerationRegistry.js +36 -36
  440. package/dist/infra/lib/evolution/InsightStore.js +90 -90
  441. package/dist/infra/lib/evolution/RollbackManager.js +5 -5
  442. package/dist/infra/lib/evolution/SkillGapDetector.js +10 -10
  443. package/dist/infra/lib/evolution/UsageTracker.js +28 -28
  444. package/dist/infra/lib/gemini/constants.js +14 -14
  445. package/dist/infra/lib/gemini/orchestration.js +5 -5
  446. package/dist/infra/lib/gemini-api.d.ts +13 -0
  447. package/dist/infra/lib/gemini-api.d.ts.map +1 -0
  448. package/dist/infra/lib/gemini-api.js +13 -0
  449. package/dist/infra/lib/gemini-api.js.map +1 -0
  450. package/dist/infra/lib/gemini-constants.d.ts +19 -0
  451. package/dist/infra/lib/gemini-constants.d.ts.map +1 -0
  452. package/dist/infra/lib/gemini-constants.js +34 -0
  453. package/dist/infra/lib/gemini-constants.js.map +1 -0
  454. package/dist/infra/lib/gemini-oauth.d.ts +60 -0
  455. package/dist/infra/lib/gemini-oauth.d.ts.map +1 -0
  456. package/dist/infra/lib/gemini-oauth.js +386 -0
  457. package/dist/infra/lib/gemini-oauth.js.map +1 -0
  458. package/dist/infra/lib/gemini-storage.d.ts +64 -0
  459. package/dist/infra/lib/gemini-storage.d.ts.map +1 -0
  460. package/dist/infra/lib/gemini-storage.js +177 -0
  461. package/dist/infra/lib/gemini-storage.js.map +1 -0
  462. package/dist/infra/lib/gpt/auth.d.ts +18 -2
  463. package/dist/infra/lib/gpt/auth.d.ts.map +1 -1
  464. package/dist/infra/lib/gpt/auth.js +91 -7
  465. package/dist/infra/lib/gpt/auth.js.map +1 -1
  466. package/dist/infra/lib/gpt/chat.d.ts.map +1 -1
  467. package/dist/infra/lib/gpt/chat.js +1 -0
  468. package/dist/infra/lib/gpt/chat.js.map +1 -1
  469. package/dist/infra/lib/gpt/oauth.js +44 -44
  470. package/dist/infra/lib/gpt/orchestration.js +4 -4
  471. package/dist/infra/lib/gpt/types.d.ts +1 -1
  472. package/dist/infra/lib/gpt/types.d.ts.map +1 -1
  473. package/dist/infra/lib/gpt-api.d.ts +13 -0
  474. package/dist/infra/lib/gpt-api.d.ts.map +1 -0
  475. package/dist/infra/lib/gpt-api.js +13 -0
  476. package/dist/infra/lib/gpt-api.js.map +1 -0
  477. package/dist/infra/lib/gpt-constants.d.ts +12 -0
  478. package/dist/infra/lib/gpt-constants.d.ts.map +1 -0
  479. package/dist/infra/lib/gpt-constants.js +18 -0
  480. package/dist/infra/lib/gpt-constants.js.map +1 -0
  481. package/dist/infra/lib/gpt-oauth.d.ts +66 -0
  482. package/dist/infra/lib/gpt-oauth.d.ts.map +1 -0
  483. package/dist/infra/lib/gpt-oauth.js +389 -0
  484. package/dist/infra/lib/gpt-oauth.js.map +1 -0
  485. package/dist/infra/lib/gpt-storage.d.ts +64 -0
  486. package/dist/infra/lib/gpt-storage.d.ts.map +1 -0
  487. package/dist/infra/lib/gpt-storage.js +180 -0
  488. package/dist/infra/lib/gpt-storage.js.map +1 -0
  489. package/dist/infra/lib/kimi/auth.d.ts +10 -0
  490. package/dist/infra/lib/kimi/auth.d.ts.map +1 -0
  491. package/dist/infra/lib/kimi/auth.js +45 -0
  492. package/dist/infra/lib/kimi/auth.js.map +1 -0
  493. package/dist/infra/lib/kimi/chat.d.ts +26 -0
  494. package/dist/infra/lib/kimi/chat.d.ts.map +1 -0
  495. package/dist/infra/lib/kimi/chat.js +115 -0
  496. package/dist/infra/lib/kimi/chat.js.map +1 -0
  497. package/dist/infra/lib/kimi/index.d.ts +8 -0
  498. package/dist/infra/lib/kimi/index.d.ts.map +1 -0
  499. package/dist/infra/lib/kimi/index.js +8 -0
  500. package/dist/infra/lib/kimi/index.js.map +1 -0
  501. package/dist/infra/lib/kimi/orchestration.d.ts +10 -0
  502. package/dist/infra/lib/kimi/orchestration.d.ts.map +1 -0
  503. package/dist/infra/lib/kimi/orchestration.js +22 -0
  504. package/dist/infra/lib/kimi/orchestration.js.map +1 -0
  505. package/dist/infra/lib/kimi/types.d.ts +30 -0
  506. package/dist/infra/lib/kimi/types.d.ts.map +1 -0
  507. package/dist/infra/lib/kimi/types.js +5 -0
  508. package/dist/infra/lib/kimi/types.js.map +1 -0
  509. package/dist/infra/lib/kimi-api.d.ts +5 -0
  510. package/dist/infra/lib/kimi-api.d.ts.map +1 -0
  511. package/dist/infra/lib/kimi-api.js +5 -0
  512. package/dist/infra/lib/kimi-api.js.map +1 -0
  513. package/dist/infra/lib/kimi-constants.d.ts +27 -0
  514. package/dist/infra/lib/kimi-constants.d.ts.map +1 -0
  515. package/dist/infra/lib/kimi-constants.js +31 -0
  516. package/dist/infra/lib/kimi-constants.js.map +1 -0
  517. package/dist/infra/lib/kimi-storage.d.ts +12 -0
  518. package/dist/infra/lib/kimi-storage.d.ts.map +1 -0
  519. package/dist/infra/lib/kimi-storage.js +59 -0
  520. package/dist/infra/lib/kimi-storage.js.map +1 -0
  521. package/dist/infra/lib/memory/KnowledgeGraph.js +4 -4
  522. package/dist/infra/lib/memory/MemorySearch.js +57 -57
  523. package/dist/infra/lib/memory/MemoryStorage.js +181 -181
  524. package/dist/infra/lib/memory/ObservationStore.js +28 -28
  525. package/dist/infra/lib/memory/ReflectionStore.js +30 -30
  526. package/dist/infra/lib/memory/SessionRAGRetriever.js +7 -7
  527. package/dist/infra/lib/memory/SessionRAGStore.js +225 -225
  528. package/dist/infra/lib/memory/SessionSummarizer.js +9 -9
  529. package/dist/infra/lib/priority-config.d.ts +39 -0
  530. package/dist/infra/lib/priority-config.d.ts.map +1 -0
  531. package/dist/infra/lib/priority-config.js +137 -0
  532. package/dist/infra/lib/priority-config.js.map +1 -0
  533. package/dist/infra/lib/sync/constants.d.ts +21 -0
  534. package/dist/infra/lib/sync/constants.d.ts.map +1 -0
  535. package/dist/infra/lib/sync/constants.js +78 -0
  536. package/dist/infra/lib/sync/constants.js.map +1 -0
  537. package/dist/infra/lib/sync/crypto.d.ts +23 -0
  538. package/dist/infra/lib/sync/crypto.d.ts.map +1 -0
  539. package/dist/infra/lib/sync/crypto.js +55 -0
  540. package/dist/infra/lib/sync/crypto.js.map +1 -0
  541. package/dist/infra/lib/sync/drive.d.ts +22 -0
  542. package/dist/infra/lib/sync/drive.d.ts.map +1 -0
  543. package/dist/infra/lib/sync/drive.js +99 -0
  544. package/dist/infra/lib/sync/drive.js.map +1 -0
  545. package/dist/infra/lib/sync/index.d.ts +9 -0
  546. package/dist/infra/lib/sync/index.d.ts.map +1 -0
  547. package/dist/infra/lib/sync/index.js +9 -0
  548. package/dist/infra/lib/sync/index.js.map +1 -0
  549. package/dist/infra/lib/sync/oauth.d.ts +12 -0
  550. package/dist/infra/lib/sync/oauth.d.ts.map +1 -0
  551. package/dist/infra/lib/sync/oauth.js +157 -0
  552. package/dist/infra/lib/sync/oauth.js.map +1 -0
  553. package/dist/infra/lib/sync/storage.d.ts +21 -0
  554. package/dist/infra/lib/sync/storage.d.ts.map +1 -0
  555. package/dist/infra/lib/sync/storage.js +32 -0
  556. package/dist/infra/lib/sync/storage.js.map +1 -0
  557. package/dist/infra/orchestrator/AgentManager.js +12 -12
  558. package/dist/infra/orchestrator/AgentRegistry.js +65 -65
  559. package/dist/infra/orchestrator/MultiLlmResearch.js +8 -8
  560. package/dist/infra/orchestrator/SwarmOrchestrator.test.js +16 -16
  561. package/dist/infra/orchestrator/parallelResearch.js +24 -24
  562. package/dist/infra/policy/Evidence.d.ts +30 -0
  563. package/dist/infra/policy/Evidence.d.ts.map +1 -0
  564. package/dist/infra/policy/Evidence.js +134 -0
  565. package/dist/infra/policy/Evidence.js.map +1 -0
  566. package/dist/infra/policy/PolicyEngine.d.ts +34 -0
  567. package/dist/infra/policy/PolicyEngine.d.ts.map +1 -0
  568. package/dist/infra/policy/PolicyEngine.js +219 -0
  569. package/dist/infra/policy/PolicyEngine.js.map +1 -0
  570. package/dist/infra/policy/PolicyStore.d.ts +36 -0
  571. package/dist/infra/policy/PolicyStore.d.ts.map +1 -0
  572. package/dist/infra/policy/PolicyStore.js +160 -0
  573. package/dist/infra/policy/PolicyStore.js.map +1 -0
  574. package/dist/infra/policy/RiskCalculator.d.ts +20 -0
  575. package/dist/infra/policy/RiskCalculator.d.ts.map +1 -0
  576. package/dist/infra/policy/RiskCalculator.js +64 -0
  577. package/dist/infra/policy/RiskCalculator.js.map +1 -0
  578. package/dist/infra/policy/default-policies.d.ts +13 -0
  579. package/dist/infra/policy/default-policies.d.ts.map +1 -0
  580. package/dist/infra/policy/default-policies.js +99 -0
  581. package/dist/infra/policy/default-policies.js.map +1 -0
  582. package/dist/infra/policy/index.d.ts +11 -0
  583. package/dist/infra/policy/index.d.ts.map +1 -0
  584. package/dist/infra/policy/index.js +10 -0
  585. package/dist/infra/policy/index.js.map +1 -0
  586. package/dist/infra/policy/policy.test.d.ts +5 -0
  587. package/dist/infra/policy/policy.test.d.ts.map +1 -0
  588. package/dist/infra/policy/policy.test.js +628 -0
  589. package/dist/infra/policy/policy.test.js.map +1 -0
  590. package/dist/infra/policy/types.d.ts +71 -0
  591. package/dist/infra/policy/types.d.ts.map +1 -0
  592. package/dist/infra/policy/types.js +18 -0
  593. package/dist/infra/policy/types.js.map +1 -0
  594. package/dist/interface/BaseInterface.d.ts +37 -0
  595. package/dist/interface/BaseInterface.d.ts.map +1 -0
  596. package/dist/interface/BaseInterface.js +105 -0
  597. package/dist/interface/BaseInterface.js.map +1 -0
  598. package/dist/interface/ClaudeCodeBridge.d.ts +38 -0
  599. package/dist/interface/ClaudeCodeBridge.d.ts.map +1 -0
  600. package/dist/interface/ClaudeCodeBridge.js +216 -0
  601. package/dist/interface/ClaudeCodeBridge.js.map +1 -0
  602. package/dist/interface/imessage/IMessageBot.d.ts +33 -0
  603. package/dist/interface/imessage/IMessageBot.d.ts.map +1 -0
  604. package/dist/interface/imessage/IMessageBot.js +222 -0
  605. package/dist/interface/imessage/IMessageBot.js.map +1 -0
  606. package/dist/interface/imessage/IMessageFormatter.d.ts +15 -0
  607. package/dist/interface/imessage/IMessageFormatter.d.ts.map +1 -0
  608. package/dist/interface/imessage/IMessageFormatter.js +81 -0
  609. package/dist/interface/imessage/IMessageFormatter.js.map +1 -0
  610. package/dist/interface/imessage/IMessageRpcClient.d.ts +39 -0
  611. package/dist/interface/imessage/IMessageRpcClient.d.ts.map +1 -0
  612. package/dist/interface/imessage/IMessageRpcClient.js +174 -0
  613. package/dist/interface/imessage/IMessageRpcClient.js.map +1 -0
  614. package/dist/interface/imessage/IMessageSender.d.ts +19 -0
  615. package/dist/interface/imessage/IMessageSender.d.ts.map +1 -0
  616. package/dist/interface/imessage/IMessageSender.js +136 -0
  617. package/dist/interface/imessage/IMessageSender.js.map +1 -0
  618. package/dist/interface/imessage/__tests__/IMessageBot.test.d.ts +5 -0
  619. package/dist/interface/imessage/__tests__/IMessageBot.test.d.ts.map +1 -0
  620. package/dist/interface/imessage/__tests__/IMessageBot.test.js +60 -0
  621. package/dist/interface/imessage/__tests__/IMessageBot.test.js.map +1 -0
  622. package/dist/interface/imessage/__tests__/IMessageFormatter.test.d.ts +5 -0
  623. package/dist/interface/imessage/__tests__/IMessageFormatter.test.d.ts.map +1 -0
  624. package/dist/interface/imessage/__tests__/IMessageFormatter.test.js +110 -0
  625. package/dist/interface/imessage/__tests__/IMessageFormatter.test.js.map +1 -0
  626. package/dist/interface/imessage/__tests__/IMessageSender.test.d.ts +5 -0
  627. package/dist/interface/imessage/__tests__/IMessageSender.test.d.ts.map +1 -0
  628. package/dist/interface/imessage/__tests__/IMessageSender.test.js +67 -0
  629. package/dist/interface/imessage/__tests__/IMessageSender.test.js.map +1 -0
  630. package/dist/interface/imessage/index.d.ts +8 -0
  631. package/dist/interface/imessage/index.d.ts.map +1 -0
  632. package/dist/interface/imessage/index.js +8 -0
  633. package/dist/interface/imessage/index.js.map +1 -0
  634. package/dist/interface/index.d.ts +26 -0
  635. package/dist/interface/index.d.ts.map +1 -0
  636. package/dist/interface/index.js +26 -0
  637. package/dist/interface/index.js.map +1 -0
  638. package/dist/interface/interface.test.d.ts +5 -0
  639. package/dist/interface/interface.test.d.ts.map +1 -0
  640. package/dist/interface/interface.test.js +442 -0
  641. package/dist/interface/interface.test.js.map +1 -0
  642. package/dist/interface/slack/SlackBot.d.ts +83 -0
  643. package/dist/interface/slack/SlackBot.d.ts.map +1 -0
  644. package/dist/interface/slack/SlackBot.js +563 -0
  645. package/dist/interface/slack/SlackBot.js.map +1 -0
  646. package/dist/interface/slack/SlackFormatter.d.ts +19 -0
  647. package/dist/interface/slack/SlackFormatter.d.ts.map +1 -0
  648. package/dist/interface/slack/SlackFormatter.js +76 -0
  649. package/dist/interface/slack/SlackFormatter.js.map +1 -0
  650. package/dist/interface/slack/__tests__/SlackBot.test.d.ts +5 -0
  651. package/dist/interface/slack/__tests__/SlackBot.test.d.ts.map +1 -0
  652. package/dist/interface/slack/__tests__/SlackBot.test.js +37 -0
  653. package/dist/interface/slack/__tests__/SlackBot.test.js.map +1 -0
  654. package/dist/interface/slack/__tests__/SlackFormatter.test.d.ts +5 -0
  655. package/dist/interface/slack/__tests__/SlackFormatter.test.d.ts.map +1 -0
  656. package/dist/interface/slack/__tests__/SlackFormatter.test.js +93 -0
  657. package/dist/interface/slack/__tests__/SlackFormatter.test.js.map +1 -0
  658. package/dist/interface/slack/index.d.ts +7 -0
  659. package/dist/interface/slack/index.d.ts.map +1 -0
  660. package/dist/interface/slack/index.js +7 -0
  661. package/dist/interface/slack/index.js.map +1 -0
  662. package/dist/interface/telegram/TelegramBot.d.ts +60 -0
  663. package/dist/interface/telegram/TelegramBot.d.ts.map +1 -0
  664. package/dist/interface/telegram/TelegramBot.js +400 -0
  665. package/dist/interface/telegram/TelegramBot.js.map +1 -0
  666. package/dist/interface/telegram/TelegramFormatter.d.ts +19 -0
  667. package/dist/interface/telegram/TelegramFormatter.d.ts.map +1 -0
  668. package/dist/interface/telegram/TelegramFormatter.js +66 -0
  669. package/dist/interface/telegram/TelegramFormatter.js.map +1 -0
  670. package/dist/interface/types.d.ts +167 -0
  671. package/dist/interface/types.d.ts.map +1 -0
  672. package/dist/interface/types.js +6 -0
  673. package/dist/interface/types.js.map +1 -0
  674. package/dist/interface/utils/MessageCombiner.d.ts +14 -0
  675. package/dist/interface/utils/MessageCombiner.d.ts.map +1 -0
  676. package/dist/interface/utils/MessageCombiner.js +48 -0
  677. package/dist/interface/utils/MessageCombiner.js.map +1 -0
  678. package/dist/interface/vision/AdaptiveFrameSampler.d.ts +44 -0
  679. package/dist/interface/vision/AdaptiveFrameSampler.d.ts.map +1 -0
  680. package/dist/interface/vision/AdaptiveFrameSampler.js +109 -0
  681. package/dist/interface/vision/AdaptiveFrameSampler.js.map +1 -0
  682. package/dist/interface/vision/AdaptiveFrameSampler.test.d.ts +7 -0
  683. package/dist/interface/vision/AdaptiveFrameSampler.test.d.ts.map +1 -0
  684. package/dist/interface/vision/AdaptiveFrameSampler.test.js +113 -0
  685. package/dist/interface/vision/AdaptiveFrameSampler.test.js.map +1 -0
  686. package/dist/interface/vision/GeminiLive.d.ts +37 -0
  687. package/dist/interface/vision/GeminiLive.d.ts.map +1 -0
  688. package/dist/interface/vision/GeminiLive.js +272 -0
  689. package/dist/interface/vision/GeminiLive.js.map +1 -0
  690. package/dist/interface/vision/GeminiLive.test.d.ts +6 -0
  691. package/dist/interface/vision/GeminiLive.test.d.ts.map +1 -0
  692. package/dist/interface/vision/GeminiLive.test.js +40 -0
  693. package/dist/interface/vision/GeminiLive.test.js.map +1 -0
  694. package/dist/interface/vision/GeminiLiveStream.d.ts +55 -0
  695. package/dist/interface/vision/GeminiLiveStream.d.ts.map +1 -0
  696. package/dist/interface/vision/GeminiLiveStream.js +213 -0
  697. package/dist/interface/vision/GeminiLiveStream.js.map +1 -0
  698. package/dist/interface/vision/GeminiVision.d.ts +25 -0
  699. package/dist/interface/vision/GeminiVision.d.ts.map +1 -0
  700. package/dist/interface/vision/GeminiVision.js +202 -0
  701. package/dist/interface/vision/GeminiVision.js.map +1 -0
  702. package/dist/interface/vision/ScreenCapture.d.ts +77 -0
  703. package/dist/interface/vision/ScreenCapture.d.ts.map +1 -0
  704. package/dist/interface/vision/ScreenCapture.js +314 -0
  705. package/dist/interface/vision/ScreenCapture.js.map +1 -0
  706. package/dist/interface/vision/ScreenCaptureEngine.d.ts +55 -0
  707. package/dist/interface/vision/ScreenCaptureEngine.d.ts.map +1 -0
  708. package/dist/interface/vision/ScreenCaptureEngine.js +223 -0
  709. package/dist/interface/vision/ScreenCaptureEngine.js.map +1 -0
  710. package/dist/interface/vision/ScreenCaptureEngine.test.d.ts +8 -0
  711. package/dist/interface/vision/ScreenCaptureEngine.test.d.ts.map +1 -0
  712. package/dist/interface/vision/ScreenCaptureEngine.test.js +175 -0
  713. package/dist/interface/vision/ScreenCaptureEngine.test.js.map +1 -0
  714. package/dist/interface/vision/VisionInterface.d.ts +26 -0
  715. package/dist/interface/vision/VisionInterface.d.ts.map +1 -0
  716. package/dist/interface/vision/VisionInterface.js +105 -0
  717. package/dist/interface/vision/VisionInterface.js.map +1 -0
  718. package/dist/interface/vision/VisionSession.d.ts +66 -0
  719. package/dist/interface/vision/VisionSession.d.ts.map +1 -0
  720. package/dist/interface/vision/VisionSession.js +274 -0
  721. package/dist/interface/vision/VisionSession.js.map +1 -0
  722. package/dist/interface/vision/VisionSession.test.d.ts +7 -0
  723. package/dist/interface/vision/VisionSession.test.d.ts.map +1 -0
  724. package/dist/interface/vision/VisionSession.test.js +218 -0
  725. package/dist/interface/vision/VisionSession.test.js.map +1 -0
  726. package/dist/interface/vision/__tests__/GeminiVision.test.d.ts +5 -0
  727. package/dist/interface/vision/__tests__/GeminiVision.test.d.ts.map +1 -0
  728. package/dist/interface/vision/__tests__/GeminiVision.test.js +92 -0
  729. package/dist/interface/vision/__tests__/GeminiVision.test.js.map +1 -0
  730. package/dist/interface/vision/__tests__/ScreenCapture.test.d.ts +5 -0
  731. package/dist/interface/vision/__tests__/ScreenCapture.test.d.ts.map +1 -0
  732. package/dist/interface/vision/__tests__/ScreenCapture.test.js +24 -0
  733. package/dist/interface/vision/__tests__/ScreenCapture.test.js.map +1 -0
  734. package/dist/interface/vision/__tests__/VisionInterface.test.d.ts +5 -0
  735. package/dist/interface/vision/__tests__/VisionInterface.test.d.ts.map +1 -0
  736. package/dist/interface/vision/__tests__/VisionInterface.test.js +59 -0
  737. package/dist/interface/vision/__tests__/VisionInterface.test.js.map +1 -0
  738. package/dist/interface/vision/index.d.ts +20 -0
  739. package/dist/interface/vision/index.d.ts.map +1 -0
  740. package/dist/interface/vision/index.js +16 -0
  741. package/dist/interface/vision/index.js.map +1 -0
  742. package/dist/interface/vision/types.d.ts +79 -0
  743. package/dist/interface/vision/types.d.ts.map +1 -0
  744. package/dist/interface/vision/types.js +22 -0
  745. package/dist/interface/vision/types.js.map +1 -0
  746. package/dist/interface/voice/STTProvider.d.ts +48 -0
  747. package/dist/interface/voice/STTProvider.d.ts.map +1 -0
  748. package/dist/interface/voice/STTProvider.js +254 -0
  749. package/dist/interface/voice/STTProvider.js.map +1 -0
  750. package/dist/interface/voice/STTProvider.test.d.ts +8 -0
  751. package/dist/interface/voice/STTProvider.test.d.ts.map +1 -0
  752. package/dist/interface/voice/STTProvider.test.js +144 -0
  753. package/dist/interface/voice/STTProvider.test.js.map +1 -0
  754. package/dist/interface/voice/TTSProvider.d.ts +44 -0
  755. package/dist/interface/voice/TTSProvider.d.ts.map +1 -0
  756. package/dist/interface/voice/TTSProvider.js +252 -0
  757. package/dist/interface/voice/TTSProvider.js.map +1 -0
  758. package/dist/interface/voice/TTSProvider.test.d.ts +8 -0
  759. package/dist/interface/voice/TTSProvider.test.d.ts.map +1 -0
  760. package/dist/interface/voice/TTSProvider.test.js +143 -0
  761. package/dist/interface/voice/TTSProvider.test.js.map +1 -0
  762. package/dist/interface/voice/VADProcessor.d.ts +34 -0
  763. package/dist/interface/voice/VADProcessor.d.ts.map +1 -0
  764. package/dist/interface/voice/VADProcessor.js +116 -0
  765. package/dist/interface/voice/VADProcessor.js.map +1 -0
  766. package/dist/interface/voice/VADProcessor.test.d.ts +8 -0
  767. package/dist/interface/voice/VADProcessor.test.d.ts.map +1 -0
  768. package/dist/interface/voice/VADProcessor.test.js +159 -0
  769. package/dist/interface/voice/VADProcessor.test.js.map +1 -0
  770. package/dist/interface/voice/VoiceSession.d.ts +77 -0
  771. package/dist/interface/voice/VoiceSession.d.ts.map +1 -0
  772. package/dist/interface/voice/VoiceSession.js +249 -0
  773. package/dist/interface/voice/VoiceSession.js.map +1 -0
  774. package/dist/interface/voice/VoiceSession.test.d.ts +8 -0
  775. package/dist/interface/voice/VoiceSession.test.d.ts.map +1 -0
  776. package/dist/interface/voice/VoiceSession.test.js +260 -0
  777. package/dist/interface/voice/VoiceSession.test.js.map +1 -0
  778. package/dist/interface/voice/VoiceWebSocket.d.ts +52 -0
  779. package/dist/interface/voice/VoiceWebSocket.d.ts.map +1 -0
  780. package/dist/interface/voice/VoiceWebSocket.js +165 -0
  781. package/dist/interface/voice/VoiceWebSocket.js.map +1 -0
  782. package/dist/interface/voice/types.d.ts +144 -0
  783. package/dist/interface/voice/types.d.ts.map +1 -0
  784. package/dist/interface/voice/types.js +23 -0
  785. package/dist/interface/voice/types.js.map +1 -0
  786. package/dist/interface/voice/types.test.d.ts +8 -0
  787. package/dist/interface/voice/types.test.d.ts.map +1 -0
  788. package/dist/interface/voice/types.test.js +90 -0
  789. package/dist/interface/voice/types.test.js.map +1 -0
  790. package/dist/interface/web/WebServer.d.ts +80 -0
  791. package/dist/interface/web/WebServer.d.ts.map +1 -0
  792. package/dist/interface/web/WebServer.js +999 -0
  793. package/dist/interface/web/WebServer.js.map +1 -0
  794. package/dist/interface/web/__tests__/WebServer.test.d.ts +5 -0
  795. package/dist/interface/web/__tests__/WebServer.test.d.ts.map +1 -0
  796. package/dist/interface/web/__tests__/WebServer.test.js +345 -0
  797. package/dist/interface/web/__tests__/WebServer.test.js.map +1 -0
  798. package/dist/interface/web/types.d.ts +109 -0
  799. package/dist/interface/web/types.d.ts.map +1 -0
  800. package/dist/interface/web/types.js +67 -0
  801. package/dist/interface/web/types.js.map +1 -0
  802. package/dist/interface/webhook/WebhookHandler.d.ts +45 -0
  803. package/dist/interface/webhook/WebhookHandler.d.ts.map +1 -0
  804. package/dist/interface/webhook/WebhookHandler.js +273 -0
  805. package/dist/interface/webhook/WebhookHandler.js.map +1 -0
  806. package/dist/job/ActionPlanGenerator.d.ts +21 -0
  807. package/dist/job/ActionPlanGenerator.d.ts.map +1 -0
  808. package/dist/job/ActionPlanGenerator.js +153 -0
  809. package/dist/job/ActionPlanGenerator.js.map +1 -0
  810. package/dist/job/AgentJobManager.d.ts +46 -0
  811. package/dist/job/AgentJobManager.d.ts.map +1 -0
  812. package/dist/job/AgentJobManager.js +213 -0
  813. package/dist/job/AgentJobManager.js.map +1 -0
  814. package/dist/job/AgentJobManager.test.d.ts +6 -0
  815. package/dist/job/AgentJobManager.test.d.ts.map +1 -0
  816. package/dist/job/AgentJobManager.test.js +197 -0
  817. package/dist/job/AgentJobManager.test.js.map +1 -0
  818. package/dist/job/IntentParser.d.ts +21 -0
  819. package/dist/job/IntentParser.d.ts.map +1 -0
  820. package/dist/job/IntentParser.js +142 -0
  821. package/dist/job/IntentParser.js.map +1 -0
  822. package/dist/job/JobManager.d.ts +54 -0
  823. package/dist/job/JobManager.d.ts.map +1 -0
  824. package/dist/job/JobManager.js +220 -0
  825. package/dist/job/JobManager.js.map +1 -0
  826. package/dist/job/JobQueue.d.ts +41 -0
  827. package/dist/job/JobQueue.d.ts.map +1 -0
  828. package/dist/job/JobQueue.js +153 -0
  829. package/dist/job/JobQueue.js.map +1 -0
  830. package/dist/job/JobStore.d.ts +36 -0
  831. package/dist/job/JobStore.d.ts.map +1 -0
  832. package/dist/job/JobStore.js +260 -0
  833. package/dist/job/JobStore.js.map +1 -0
  834. package/dist/job/ProgressReporter.d.ts +32 -0
  835. package/dist/job/ProgressReporter.d.ts.map +1 -0
  836. package/dist/job/ProgressReporter.js +82 -0
  837. package/dist/job/ProgressReporter.js.map +1 -0
  838. package/dist/job/agent-job-types.d.ts +32 -0
  839. package/dist/job/agent-job-types.d.ts.map +1 -0
  840. package/dist/job/agent-job-types.js +6 -0
  841. package/dist/job/agent-job-types.js.map +1 -0
  842. package/dist/job/index.d.ts +15 -0
  843. package/dist/job/index.d.ts.map +1 -0
  844. package/dist/job/index.js +15 -0
  845. package/dist/job/index.js.map +1 -0
  846. package/dist/job/job.test.d.ts +5 -0
  847. package/dist/job/job.test.d.ts.map +1 -0
  848. package/dist/job/job.test.js +303 -0
  849. package/dist/job/job.test.js.map +1 -0
  850. package/dist/job/types.d.ts +82 -0
  851. package/dist/job/types.d.ts.map +1 -0
  852. package/dist/job/types.js +40 -0
  853. package/dist/job/types.js.map +1 -0
  854. package/dist/orchestrator/AgentAnnouncer.d.ts +64 -0
  855. package/dist/orchestrator/AgentAnnouncer.d.ts.map +1 -0
  856. package/dist/orchestrator/AgentAnnouncer.js +127 -0
  857. package/dist/orchestrator/AgentAnnouncer.js.map +1 -0
  858. package/dist/orchestrator/AgentAnnouncer.test.d.ts +5 -0
  859. package/dist/orchestrator/AgentAnnouncer.test.d.ts.map +1 -0
  860. package/dist/orchestrator/AgentAnnouncer.test.js +119 -0
  861. package/dist/orchestrator/AgentAnnouncer.test.js.map +1 -0
  862. package/dist/orchestrator/AgentExecutor.d.ts +23 -0
  863. package/dist/orchestrator/AgentExecutor.d.ts.map +1 -0
  864. package/dist/orchestrator/AgentExecutor.js +231 -0
  865. package/dist/orchestrator/AgentExecutor.js.map +1 -0
  866. package/dist/orchestrator/AgentManager.d.ts +73 -0
  867. package/dist/orchestrator/AgentManager.d.ts.map +1 -0
  868. package/dist/orchestrator/AgentManager.js +184 -0
  869. package/dist/orchestrator/AgentManager.js.map +1 -0
  870. package/dist/orchestrator/AgentRegistry.d.ts +76 -0
  871. package/dist/orchestrator/AgentRegistry.d.ts.map +1 -0
  872. package/dist/orchestrator/AgentRegistry.js +217 -0
  873. package/dist/orchestrator/AgentRegistry.js.map +1 -0
  874. package/dist/orchestrator/AgentRegistry.test.d.ts +5 -0
  875. package/dist/orchestrator/AgentRegistry.test.d.ts.map +1 -0
  876. package/dist/orchestrator/AgentRegistry.test.js +122 -0
  877. package/dist/orchestrator/AgentRegistry.test.js.map +1 -0
  878. package/dist/orchestrator/BackgroundManager.d.ts +114 -0
  879. package/dist/orchestrator/BackgroundManager.d.ts.map +1 -0
  880. package/dist/orchestrator/BackgroundManager.js +517 -0
  881. package/dist/orchestrator/BackgroundManager.js.map +1 -0
  882. package/dist/orchestrator/BackgroundManager.test.d.ts +6 -0
  883. package/dist/orchestrator/BackgroundManager.test.d.ts.map +1 -0
  884. package/dist/orchestrator/BackgroundManager.test.js +162 -0
  885. package/dist/orchestrator/BackgroundManager.test.js.map +1 -0
  886. package/dist/orchestrator/CheckpointManager.d.ts +54 -0
  887. package/dist/orchestrator/CheckpointManager.d.ts.map +1 -0
  888. package/dist/orchestrator/CheckpointManager.js +121 -0
  889. package/dist/orchestrator/CheckpointManager.js.map +1 -0
  890. package/dist/orchestrator/LLMCluster.d.ts +91 -0
  891. package/dist/orchestrator/LLMCluster.d.ts.map +1 -0
  892. package/dist/orchestrator/LLMCluster.js +124 -0
  893. package/dist/orchestrator/LLMCluster.js.map +1 -0
  894. package/dist/orchestrator/MultiLlmResearch.d.ts +27 -0
  895. package/dist/orchestrator/MultiLlmResearch.d.ts.map +1 -0
  896. package/dist/orchestrator/MultiLlmResearch.js +145 -0
  897. package/dist/orchestrator/MultiLlmResearch.js.map +1 -0
  898. package/dist/orchestrator/PhasePipeline.d.ts +123 -0
  899. package/dist/orchestrator/PhasePipeline.d.ts.map +1 -0
  900. package/dist/orchestrator/PhasePipeline.js +382 -0
  901. package/dist/orchestrator/PhasePipeline.js.map +1 -0
  902. package/dist/orchestrator/PhaseResultStore.d.ts +39 -0
  903. package/dist/orchestrator/PhaseResultStore.d.ts.map +1 -0
  904. package/dist/orchestrator/PhaseResultStore.js +151 -0
  905. package/dist/orchestrator/PhaseResultStore.js.map +1 -0
  906. package/dist/orchestrator/SessionStore.d.ts +41 -0
  907. package/dist/orchestrator/SessionStore.d.ts.map +1 -0
  908. package/dist/orchestrator/SessionStore.js +117 -0
  909. package/dist/orchestrator/SessionStore.js.map +1 -0
  910. package/dist/orchestrator/SmartRouter.d.ts +77 -0
  911. package/dist/orchestrator/SmartRouter.d.ts.map +1 -0
  912. package/dist/orchestrator/SmartRouter.js +305 -0
  913. package/dist/orchestrator/SmartRouter.js.map +1 -0
  914. package/dist/orchestrator/SwarmOrchestrator.d.ts +144 -0
  915. package/dist/orchestrator/SwarmOrchestrator.d.ts.map +1 -0
  916. package/dist/orchestrator/SwarmOrchestrator.js +361 -0
  917. package/dist/orchestrator/SwarmOrchestrator.js.map +1 -0
  918. package/dist/orchestrator/SwarmOrchestrator.test.d.ts +5 -0
  919. package/dist/orchestrator/SwarmOrchestrator.test.d.ts.map +1 -0
  920. package/dist/orchestrator/SwarmOrchestrator.test.js +95 -0
  921. package/dist/orchestrator/SwarmOrchestrator.test.js.map +1 -0
  922. package/dist/orchestrator/agentDiscovery.d.ts +18 -0
  923. package/dist/orchestrator/agentDiscovery.d.ts.map +1 -0
  924. package/dist/orchestrator/agentDiscovery.js +175 -0
  925. package/dist/orchestrator/agentDiscovery.js.map +1 -0
  926. package/dist/orchestrator/backgroundAgent.d.ts +15 -0
  927. package/dist/orchestrator/backgroundAgent.d.ts.map +1 -0
  928. package/dist/orchestrator/backgroundAgent.js +16 -0
  929. package/dist/orchestrator/backgroundAgent.js.map +1 -0
  930. package/dist/orchestrator/index.d.ts +213 -0
  931. package/dist/orchestrator/index.d.ts.map +1 -0
  932. package/dist/orchestrator/index.js +391 -0
  933. package/dist/orchestrator/index.js.map +1 -0
  934. package/dist/orchestrator/orchestrator.d.ts +63 -0
  935. package/dist/orchestrator/orchestrator.d.ts.map +1 -0
  936. package/dist/orchestrator/orchestrator.js +217 -0
  937. package/dist/orchestrator/orchestrator.js.map +1 -0
  938. package/dist/orchestrator/parallelResearch.d.ts +30 -0
  939. package/dist/orchestrator/parallelResearch.d.ts.map +1 -0
  940. package/dist/orchestrator/parallelResearch.js +247 -0
  941. package/dist/orchestrator/parallelResearch.js.map +1 -0
  942. package/dist/orchestrator/types.d.ts +185 -0
  943. package/dist/orchestrator/types.d.ts.map +1 -0
  944. package/dist/orchestrator/types.js +21 -0
  945. package/dist/orchestrator/types.js.map +1 -0
  946. package/dist/pc/CommandDispatcher.d.ts +31 -0
  947. package/dist/pc/CommandDispatcher.d.ts.map +1 -0
  948. package/dist/pc/CommandDispatcher.js +132 -0
  949. package/dist/pc/CommandDispatcher.js.map +1 -0
  950. package/dist/pc/CommandDispatcher.test.d.ts +2 -0
  951. package/dist/pc/CommandDispatcher.test.d.ts.map +1 -0
  952. package/dist/pc/CommandDispatcher.test.js +360 -0
  953. package/dist/pc/CommandDispatcher.test.js.map +1 -0
  954. package/dist/pc/ModuleRegistry.d.ts +40 -0
  955. package/dist/pc/ModuleRegistry.d.ts.map +1 -0
  956. package/dist/pc/ModuleRegistry.js +163 -0
  957. package/dist/pc/ModuleRegistry.js.map +1 -0
  958. package/dist/pc/ResultFormatter.d.ts +27 -0
  959. package/dist/pc/ResultFormatter.d.ts.map +1 -0
  960. package/dist/pc/ResultFormatter.js +128 -0
  961. package/dist/pc/ResultFormatter.js.map +1 -0
  962. package/dist/pc/ResultFormatter.test.d.ts +2 -0
  963. package/dist/pc/ResultFormatter.test.d.ts.map +1 -0
  964. package/dist/pc/ResultFormatter.test.js +115 -0
  965. package/dist/pc/ResultFormatter.test.js.map +1 -0
  966. package/dist/pc/SecurityGate.d.ts +53 -0
  967. package/dist/pc/SecurityGate.d.ts.map +1 -0
  968. package/dist/pc/SecurityGate.js +142 -0
  969. package/dist/pc/SecurityGate.js.map +1 -0
  970. package/dist/pc/SecurityGate.test.d.ts +2 -0
  971. package/dist/pc/SecurityGate.test.d.ts.map +1 -0
  972. package/dist/pc/SecurityGate.test.js +160 -0
  973. package/dist/pc/SecurityGate.test.js.map +1 -0
  974. package/dist/pc/SessionContext.d.ts +31 -0
  975. package/dist/pc/SessionContext.d.ts.map +1 -0
  976. package/dist/pc/SessionContext.js +108 -0
  977. package/dist/pc/SessionContext.js.map +1 -0
  978. package/dist/pc/browser/BrowserActions.d.ts +22 -0
  979. package/dist/pc/browser/BrowserActions.d.ts.map +1 -0
  980. package/dist/pc/browser/BrowserActions.js +223 -0
  981. package/dist/pc/browser/BrowserActions.js.map +1 -0
  982. package/dist/pc/browser/BrowserActions.test.d.ts +7 -0
  983. package/dist/pc/browser/BrowserActions.test.d.ts.map +1 -0
  984. package/dist/pc/browser/BrowserActions.test.js +150 -0
  985. package/dist/pc/browser/BrowserActions.test.js.map +1 -0
  986. package/dist/pc/browser/BrowserService.d.ts +66 -0
  987. package/dist/pc/browser/BrowserService.d.ts.map +1 -0
  988. package/dist/pc/browser/BrowserService.js +319 -0
  989. package/dist/pc/browser/BrowserService.js.map +1 -0
  990. package/dist/pc/browser/BrowserService.test.d.ts +7 -0
  991. package/dist/pc/browser/BrowserService.test.d.ts.map +1 -0
  992. package/dist/pc/browser/BrowserService.test.js +160 -0
  993. package/dist/pc/browser/BrowserService.test.js.map +1 -0
  994. package/dist/pc/browser/RefLocator.d.ts +39 -0
  995. package/dist/pc/browser/RefLocator.d.ts.map +1 -0
  996. package/dist/pc/browser/RefLocator.js +88 -0
  997. package/dist/pc/browser/RefLocator.js.map +1 -0
  998. package/dist/pc/browser/RoleSnapshotManager.d.ts +22 -0
  999. package/dist/pc/browser/RoleSnapshotManager.d.ts.map +1 -0
  1000. package/dist/pc/browser/RoleSnapshotManager.js +143 -0
  1001. package/dist/pc/browser/RoleSnapshotManager.js.map +1 -0
  1002. package/dist/pc/browser/RoleSnapshotManager.test.d.ts +7 -0
  1003. package/dist/pc/browser/RoleSnapshotManager.test.d.ts.map +1 -0
  1004. package/dist/pc/browser/RoleSnapshotManager.test.js +152 -0
  1005. package/dist/pc/browser/RoleSnapshotManager.test.js.map +1 -0
  1006. package/dist/pc/browser/Security.test.d.ts +7 -0
  1007. package/dist/pc/browser/Security.test.d.ts.map +1 -0
  1008. package/dist/pc/browser/Security.test.js +171 -0
  1009. package/dist/pc/browser/Security.test.js.map +1 -0
  1010. package/dist/pc/browser/types.d.ts +142 -0
  1011. package/dist/pc/browser/types.d.ts.map +1 -0
  1012. package/dist/pc/browser/types.js +60 -0
  1013. package/dist/pc/browser/types.js.map +1 -0
  1014. package/dist/pc/google/OAuthFlow.d.ts +58 -0
  1015. package/dist/pc/google/OAuthFlow.d.ts.map +1 -0
  1016. package/dist/pc/google/OAuthFlow.js +322 -0
  1017. package/dist/pc/google/OAuthFlow.js.map +1 -0
  1018. package/dist/pc/google/OAuthFlow.test.d.ts +7 -0
  1019. package/dist/pc/google/OAuthFlow.test.d.ts.map +1 -0
  1020. package/dist/pc/google/OAuthFlow.test.js +178 -0
  1021. package/dist/pc/google/OAuthFlow.test.js.map +1 -0
  1022. package/dist/pc/google/ScopeManager.d.ts +28 -0
  1023. package/dist/pc/google/ScopeManager.d.ts.map +1 -0
  1024. package/dist/pc/google/ScopeManager.js +75 -0
  1025. package/dist/pc/google/ScopeManager.js.map +1 -0
  1026. package/dist/pc/google/TokenStore.d.ts +49 -0
  1027. package/dist/pc/google/TokenStore.d.ts.map +1 -0
  1028. package/dist/pc/google/TokenStore.js +324 -0
  1029. package/dist/pc/google/TokenStore.js.map +1 -0
  1030. package/dist/pc/google/TokenStore.test.d.ts +7 -0
  1031. package/dist/pc/google/TokenStore.test.d.ts.map +1 -0
  1032. package/dist/pc/google/TokenStore.test.js +134 -0
  1033. package/dist/pc/google/TokenStore.test.js.map +1 -0
  1034. package/dist/pc/google/services/CalendarService.d.ts +45 -0
  1035. package/dist/pc/google/services/CalendarService.d.ts.map +1 -0
  1036. package/dist/pc/google/services/CalendarService.js +148 -0
  1037. package/dist/pc/google/services/CalendarService.js.map +1 -0
  1038. package/dist/pc/google/services/DriveService.d.ts +33 -0
  1039. package/dist/pc/google/services/DriveService.d.ts.map +1 -0
  1040. package/dist/pc/google/services/DriveService.js +199 -0
  1041. package/dist/pc/google/services/DriveService.js.map +1 -0
  1042. package/dist/pc/google/services/GmailService.d.ts +50 -0
  1043. package/dist/pc/google/services/GmailService.d.ts.map +1 -0
  1044. package/dist/pc/google/services/GmailService.js +177 -0
  1045. package/dist/pc/google/services/GmailService.js.map +1 -0
  1046. package/dist/pc/google/services/Services.test.d.ts +8 -0
  1047. package/dist/pc/google/services/Services.test.d.ts.map +1 -0
  1048. package/dist/pc/google/services/Services.test.js +148 -0
  1049. package/dist/pc/google/services/Services.test.js.map +1 -0
  1050. package/dist/pc/google/services/SheetsService.d.ts +27 -0
  1051. package/dist/pc/google/services/SheetsService.d.ts.map +1 -0
  1052. package/dist/pc/google/services/SheetsService.js +107 -0
  1053. package/dist/pc/google/services/SheetsService.js.map +1 -0
  1054. package/dist/pc/google/types.d.ts +97 -0
  1055. package/dist/pc/google/types.d.ts.map +1 -0
  1056. package/dist/pc/google/types.js +39 -0
  1057. package/dist/pc/google/types.js.map +1 -0
  1058. package/dist/pc/google/types.test.d.ts +8 -0
  1059. package/dist/pc/google/types.test.d.ts.map +1 -0
  1060. package/dist/pc/google/types.test.js +131 -0
  1061. package/dist/pc/google/types.test.js.map +1 -0
  1062. package/dist/pc/sandbox/ContainerConfig.d.ts +24 -0
  1063. package/dist/pc/sandbox/ContainerConfig.d.ts.map +1 -0
  1064. package/dist/pc/sandbox/ContainerConfig.js +103 -0
  1065. package/dist/pc/sandbox/ContainerConfig.js.map +1 -0
  1066. package/dist/pc/sandbox/ContainerManager.d.ts +31 -0
  1067. package/dist/pc/sandbox/ContainerManager.d.ts.map +1 -0
  1068. package/dist/pc/sandbox/ContainerManager.js +245 -0
  1069. package/dist/pc/sandbox/ContainerManager.js.map +1 -0
  1070. package/dist/pc/sandbox/ContainerManager.test.d.ts +2 -0
  1071. package/dist/pc/sandbox/ContainerManager.test.d.ts.map +1 -0
  1072. package/dist/pc/sandbox/ContainerManager.test.js +249 -0
  1073. package/dist/pc/sandbox/ContainerManager.test.js.map +1 -0
  1074. package/dist/pc/sandbox/ExecAllowlist.d.ts +35 -0
  1075. package/dist/pc/sandbox/ExecAllowlist.d.ts.map +1 -0
  1076. package/dist/pc/sandbox/ExecAllowlist.js +148 -0
  1077. package/dist/pc/sandbox/ExecAllowlist.js.map +1 -0
  1078. package/dist/pc/sandbox/ExecAllowlist.test.d.ts +2 -0
  1079. package/dist/pc/sandbox/ExecAllowlist.test.d.ts.map +1 -0
  1080. package/dist/pc/sandbox/ExecAllowlist.test.js +210 -0
  1081. package/dist/pc/sandbox/ExecAllowlist.test.js.map +1 -0
  1082. package/dist/pc/sandbox/SandboxBrowser.d.ts +29 -0
  1083. package/dist/pc/sandbox/SandboxBrowser.d.ts.map +1 -0
  1084. package/dist/pc/sandbox/SandboxBrowser.js +72 -0
  1085. package/dist/pc/sandbox/SandboxBrowser.js.map +1 -0
  1086. package/dist/pc/sandbox/ToolPolicy.d.ts +24 -0
  1087. package/dist/pc/sandbox/ToolPolicy.d.ts.map +1 -0
  1088. package/dist/pc/sandbox/ToolPolicy.js +127 -0
  1089. package/dist/pc/sandbox/ToolPolicy.js.map +1 -0
  1090. package/dist/pc/sandbox/ToolPolicy.test.d.ts +2 -0
  1091. package/dist/pc/sandbox/ToolPolicy.test.d.ts.map +1 -0
  1092. package/dist/pc/sandbox/ToolPolicy.test.js +189 -0
  1093. package/dist/pc/sandbox/ToolPolicy.test.js.map +1 -0
  1094. package/dist/pc/sandbox/types.d.ts +109 -0
  1095. package/dist/pc/sandbox/types.d.ts.map +1 -0
  1096. package/dist/pc/sandbox/types.js +26 -0
  1097. package/dist/pc/sandbox/types.js.map +1 -0
  1098. package/dist/pc/types.d.ts +84 -0
  1099. package/dist/pc/types.d.ts.map +1 -0
  1100. package/dist/pc/types.js +7 -0
  1101. package/dist/pc/types.js.map +1 -0
  1102. package/dist/policy/Evidence.d.ts +30 -0
  1103. package/dist/policy/Evidence.d.ts.map +1 -0
  1104. package/dist/policy/Evidence.js +134 -0
  1105. package/dist/policy/Evidence.js.map +1 -0
  1106. package/dist/policy/PolicyEngine.d.ts +34 -0
  1107. package/dist/policy/PolicyEngine.d.ts.map +1 -0
  1108. package/dist/policy/PolicyEngine.js +219 -0
  1109. package/dist/policy/PolicyEngine.js.map +1 -0
  1110. package/dist/policy/PolicyStore.d.ts +36 -0
  1111. package/dist/policy/PolicyStore.d.ts.map +1 -0
  1112. package/dist/policy/PolicyStore.js +160 -0
  1113. package/dist/policy/PolicyStore.js.map +1 -0
  1114. package/dist/policy/RiskCalculator.d.ts +20 -0
  1115. package/dist/policy/RiskCalculator.d.ts.map +1 -0
  1116. package/dist/policy/RiskCalculator.js +64 -0
  1117. package/dist/policy/RiskCalculator.js.map +1 -0
  1118. package/dist/policy/default-policies.d.ts +13 -0
  1119. package/dist/policy/default-policies.d.ts.map +1 -0
  1120. package/dist/policy/default-policies.js +99 -0
  1121. package/dist/policy/default-policies.js.map +1 -0
  1122. package/dist/policy/index.d.ts +11 -0
  1123. package/dist/policy/index.d.ts.map +1 -0
  1124. package/dist/policy/index.js +10 -0
  1125. package/dist/policy/index.js.map +1 -0
  1126. package/dist/policy/policy.test.d.ts +5 -0
  1127. package/dist/policy/policy.test.d.ts.map +1 -0
  1128. package/dist/policy/policy.test.js +628 -0
  1129. package/dist/policy/policy.test.js.map +1 -0
  1130. package/dist/policy/types.d.ts +71 -0
  1131. package/dist/policy/types.d.ts.map +1 -0
  1132. package/dist/policy/types.js +18 -0
  1133. package/dist/policy/types.js.map +1 -0
  1134. package/dist/router/ModelARouter.d.ts +79 -0
  1135. package/dist/router/ModelARouter.d.ts.map +1 -0
  1136. package/dist/router/ModelARouter.js +325 -0
  1137. package/dist/router/ModelARouter.js.map +1 -0
  1138. package/dist/router/ModelARouter.test.d.ts +6 -0
  1139. package/dist/router/ModelARouter.test.d.ts.map +1 -0
  1140. package/dist/router/ModelARouter.test.js +100 -0
  1141. package/dist/router/ModelARouter.test.js.map +1 -0
  1142. package/dist/router/MultiChannelRouter.d.ts +54 -0
  1143. package/dist/router/MultiChannelRouter.d.ts.map +1 -0
  1144. package/dist/router/MultiChannelRouter.js +138 -0
  1145. package/dist/router/MultiChannelRouter.js.map +1 -0
  1146. package/dist/router/RouteRegistry.d.ts +23 -0
  1147. package/dist/router/RouteRegistry.d.ts.map +1 -0
  1148. package/dist/router/RouteRegistry.js +42 -0
  1149. package/dist/router/RouteRegistry.js.map +1 -0
  1150. package/dist/router/browser/BrowserAgent.d.ts +30 -0
  1151. package/dist/router/browser/BrowserAgent.d.ts.map +1 -0
  1152. package/dist/router/browser/BrowserAgent.js +232 -0
  1153. package/dist/router/browser/BrowserAgent.js.map +1 -0
  1154. package/dist/router/browser/BrowserManager.d.ts +36 -0
  1155. package/dist/router/browser/BrowserManager.d.ts.map +1 -0
  1156. package/dist/router/browser/BrowserManager.js +106 -0
  1157. package/dist/router/browser/BrowserManager.js.map +1 -0
  1158. package/dist/router/browser/BrowserPool.d.ts +37 -0
  1159. package/dist/router/browser/BrowserPool.d.ts.map +1 -0
  1160. package/dist/router/browser/BrowserPool.js +114 -0
  1161. package/dist/router/browser/BrowserPool.js.map +1 -0
  1162. package/dist/router/handlers/GitOpsHandler.d.ts +24 -0
  1163. package/dist/router/handlers/GitOpsHandler.d.ts.map +1 -0
  1164. package/dist/router/handlers/GitOpsHandler.js +66 -0
  1165. package/dist/router/handlers/GitOpsHandler.js.map +1 -0
  1166. package/dist/router/index.d.ts +22 -0
  1167. package/dist/router/index.d.ts.map +1 -0
  1168. package/dist/router/index.js +29 -0
  1169. package/dist/router/index.js.map +1 -0
  1170. package/dist/router/index.test.d.ts +2 -0
  1171. package/dist/router/index.test.d.ts.map +1 -0
  1172. package/dist/router/index.test.js +78 -0
  1173. package/dist/router/index.test.js.map +1 -0
  1174. package/dist/router/notifications/NotificationManager.d.ts +37 -0
  1175. package/dist/router/notifications/NotificationManager.d.ts.map +1 -0
  1176. package/dist/router/notifications/NotificationManager.js +118 -0
  1177. package/dist/router/notifications/NotificationManager.js.map +1 -0
  1178. package/dist/router/planner/TaskExecutor.d.ts +48 -0
  1179. package/dist/router/planner/TaskExecutor.d.ts.map +1 -0
  1180. package/dist/router/planner/TaskExecutor.js +160 -0
  1181. package/dist/router/planner/TaskExecutor.js.map +1 -0
  1182. package/dist/router/planner/TaskExecutor.test.d.ts +6 -0
  1183. package/dist/router/planner/TaskExecutor.test.d.ts.map +1 -0
  1184. package/dist/router/planner/TaskExecutor.test.js +121 -0
  1185. package/dist/router/planner/TaskExecutor.test.js.map +1 -0
  1186. package/dist/router/planner/TaskPlanner.d.ts +37 -0
  1187. package/dist/router/planner/TaskPlanner.d.ts.map +1 -0
  1188. package/dist/router/planner/TaskPlanner.js +176 -0
  1189. package/dist/router/planner/TaskPlanner.js.map +1 -0
  1190. package/dist/router/planner/TaskPlanner.test.d.ts +6 -0
  1191. package/dist/router/planner/TaskPlanner.test.d.ts.map +1 -0
  1192. package/dist/router/planner/TaskPlanner.test.js +119 -0
  1193. package/dist/router/planner/TaskPlanner.test.js.map +1 -0
  1194. package/dist/router/qa/TelegramQABridge.d.ts +37 -0
  1195. package/dist/router/qa/TelegramQABridge.d.ts.map +1 -0
  1196. package/dist/router/qa/TelegramQABridge.js +147 -0
  1197. package/dist/router/qa/TelegramQABridge.js.map +1 -0
  1198. package/dist/router/qa/TelegramQABridge.test.d.ts +6 -0
  1199. package/dist/router/qa/TelegramQABridge.test.d.ts.map +1 -0
  1200. package/dist/router/qa/TelegramQABridge.test.js +143 -0
  1201. package/dist/router/qa/TelegramQABridge.test.js.map +1 -0
  1202. package/dist/router/resolvers/RepoResolver.d.ts +29 -0
  1203. package/dist/router/resolvers/RepoResolver.d.ts.map +1 -0
  1204. package/dist/router/resolvers/RepoResolver.js +105 -0
  1205. package/dist/router/resolvers/RepoResolver.js.map +1 -0
  1206. package/dist/router/resolvers/RepoResolver.test.d.ts +6 -0
  1207. package/dist/router/resolvers/RepoResolver.test.d.ts.map +1 -0
  1208. package/dist/router/resolvers/RepoResolver.test.js +92 -0
  1209. package/dist/router/resolvers/RepoResolver.test.js.map +1 -0
  1210. package/dist/router/routes/BaseRoute.d.ts +22 -0
  1211. package/dist/router/routes/BaseRoute.d.ts.map +1 -0
  1212. package/dist/router/routes/BaseRoute.js +55 -0
  1213. package/dist/router/routes/BaseRoute.js.map +1 -0
  1214. package/dist/router/routes/BrowseRoute.d.ts +21 -0
  1215. package/dist/router/routes/BrowseRoute.d.ts.map +1 -0
  1216. package/dist/router/routes/BrowseRoute.js +121 -0
  1217. package/dist/router/routes/BrowseRoute.js.map +1 -0
  1218. package/dist/router/routes/CompositeRoute.d.ts +28 -0
  1219. package/dist/router/routes/CompositeRoute.d.ts.map +1 -0
  1220. package/dist/router/routes/CompositeRoute.js +125 -0
  1221. package/dist/router/routes/CompositeRoute.js.map +1 -0
  1222. package/dist/router/routes/CompositeRoute.test.d.ts +6 -0
  1223. package/dist/router/routes/CompositeRoute.test.d.ts.map +1 -0
  1224. package/dist/router/routes/CompositeRoute.test.js +82 -0
  1225. package/dist/router/routes/CompositeRoute.test.js.map +1 -0
  1226. package/dist/router/routes/DevRoute.d.ts +26 -0
  1227. package/dist/router/routes/DevRoute.d.ts.map +1 -0
  1228. package/dist/router/routes/DevRoute.js +118 -0
  1229. package/dist/router/routes/DevRoute.js.map +1 -0
  1230. package/dist/router/routes/GoogleRoute.d.ts +46 -0
  1231. package/dist/router/routes/GoogleRoute.d.ts.map +1 -0
  1232. package/dist/router/routes/GoogleRoute.js +293 -0
  1233. package/dist/router/routes/GoogleRoute.js.map +1 -0
  1234. package/dist/router/routes/GoogleRoute.test.d.ts +6 -0
  1235. package/dist/router/routes/GoogleRoute.test.d.ts.map +1 -0
  1236. package/dist/router/routes/GoogleRoute.test.js +171 -0
  1237. package/dist/router/routes/GoogleRoute.test.js.map +1 -0
  1238. package/dist/router/routes/MonitorRoute.d.ts +25 -0
  1239. package/dist/router/routes/MonitorRoute.d.ts.map +1 -0
  1240. package/dist/router/routes/MonitorRoute.js +112 -0
  1241. package/dist/router/routes/MonitorRoute.js.map +1 -0
  1242. package/dist/router/routes/MonitorRoute.test.d.ts +6 -0
  1243. package/dist/router/routes/MonitorRoute.test.d.ts.map +1 -0
  1244. package/dist/router/routes/MonitorRoute.test.js +97 -0
  1245. package/dist/router/routes/MonitorRoute.test.js.map +1 -0
  1246. package/dist/router/routes/ResearchRoute.d.ts +25 -0
  1247. package/dist/router/routes/ResearchRoute.d.ts.map +1 -0
  1248. package/dist/router/routes/ResearchRoute.js +113 -0
  1249. package/dist/router/routes/ResearchRoute.js.map +1 -0
  1250. package/dist/router/routes/ResearchRoute.test.d.ts +6 -0
  1251. package/dist/router/routes/ResearchRoute.test.d.ts.map +1 -0
  1252. package/dist/router/routes/ResearchRoute.test.js +104 -0
  1253. package/dist/router/routes/ResearchRoute.test.js.map +1 -0
  1254. package/dist/router/routes/UtilityRoute.d.ts +32 -0
  1255. package/dist/router/routes/UtilityRoute.d.ts.map +1 -0
  1256. package/dist/router/routes/UtilityRoute.js +144 -0
  1257. package/dist/router/routes/UtilityRoute.js.map +1 -0
  1258. package/dist/router/routes/UtilityRoute.test.d.ts +6 -0
  1259. package/dist/router/routes/UtilityRoute.test.d.ts.map +1 -0
  1260. package/dist/router/routes/UtilityRoute.test.js +134 -0
  1261. package/dist/router/routes/UtilityRoute.test.js.map +1 -0
  1262. package/dist/router/services/BookmarkService.d.ts +34 -0
  1263. package/dist/router/services/BookmarkService.d.ts.map +1 -0
  1264. package/dist/router/services/BookmarkService.js +86 -0
  1265. package/dist/router/services/BookmarkService.js.map +1 -0
  1266. package/dist/router/services/BookmarkService.test.d.ts +6 -0
  1267. package/dist/router/services/BookmarkService.test.d.ts.map +1 -0
  1268. package/dist/router/services/BookmarkService.test.js +82 -0
  1269. package/dist/router/services/BookmarkService.test.js.map +1 -0
  1270. package/dist/router/services/CalendarService.d.ts +30 -0
  1271. package/dist/router/services/CalendarService.d.ts.map +1 -0
  1272. package/dist/router/services/CalendarService.js +168 -0
  1273. package/dist/router/services/CalendarService.js.map +1 -0
  1274. package/dist/router/services/CalendarService.test.d.ts +6 -0
  1275. package/dist/router/services/CalendarService.test.d.ts.map +1 -0
  1276. package/dist/router/services/CalendarService.test.js +107 -0
  1277. package/dist/router/services/CalendarService.test.js.map +1 -0
  1278. package/dist/router/services/ContentSummarizer.d.ts +32 -0
  1279. package/dist/router/services/ContentSummarizer.d.ts.map +1 -0
  1280. package/dist/router/services/ContentSummarizer.js +108 -0
  1281. package/dist/router/services/ContentSummarizer.js.map +1 -0
  1282. package/dist/router/services/ContentSummarizer.test.d.ts +6 -0
  1283. package/dist/router/services/ContentSummarizer.test.d.ts.map +1 -0
  1284. package/dist/router/services/ContentSummarizer.test.js +82 -0
  1285. package/dist/router/services/ContentSummarizer.test.js.map +1 -0
  1286. package/dist/router/services/DailyReportGenerator.d.ts +34 -0
  1287. package/dist/router/services/DailyReportGenerator.d.ts.map +1 -0
  1288. package/dist/router/services/DailyReportGenerator.js +110 -0
  1289. package/dist/router/services/DailyReportGenerator.js.map +1 -0
  1290. package/dist/router/services/DocumentGenerator.d.ts +20 -0
  1291. package/dist/router/services/DocumentGenerator.d.ts.map +1 -0
  1292. package/dist/router/services/DocumentGenerator.js +34 -0
  1293. package/dist/router/services/DocumentGenerator.js.map +1 -0
  1294. package/dist/router/services/DriveService.d.ts +29 -0
  1295. package/dist/router/services/DriveService.d.ts.map +1 -0
  1296. package/dist/router/services/DriveService.js +176 -0
  1297. package/dist/router/services/DriveService.js.map +1 -0
  1298. package/dist/router/services/DriveService.test.d.ts +6 -0
  1299. package/dist/router/services/DriveService.test.d.ts.map +1 -0
  1300. package/dist/router/services/DriveService.test.js +83 -0
  1301. package/dist/router/services/DriveService.test.js.map +1 -0
  1302. package/dist/router/services/FileAnalyzer.d.ts +26 -0
  1303. package/dist/router/services/FileAnalyzer.d.ts.map +1 -0
  1304. package/dist/router/services/FileAnalyzer.js +82 -0
  1305. package/dist/router/services/FileAnalyzer.js.map +1 -0
  1306. package/dist/router/services/GitHubMonitor.d.ts +38 -0
  1307. package/dist/router/services/GitHubMonitor.d.ts.map +1 -0
  1308. package/dist/router/services/GitHubMonitor.js +82 -0
  1309. package/dist/router/services/GitHubMonitor.js.map +1 -0
  1310. package/dist/router/services/GitHubMonitor.test.d.ts +6 -0
  1311. package/dist/router/services/GitHubMonitor.test.d.ts.map +1 -0
  1312. package/dist/router/services/GitHubMonitor.test.js +103 -0
  1313. package/dist/router/services/GitHubMonitor.test.js.map +1 -0
  1314. package/dist/router/services/GmailService.d.ts +28 -0
  1315. package/dist/router/services/GmailService.d.ts.map +1 -0
  1316. package/dist/router/services/GmailService.js +169 -0
  1317. package/dist/router/services/GmailService.js.map +1 -0
  1318. package/dist/router/services/GmailService.test.d.ts +6 -0
  1319. package/dist/router/services/GmailService.test.d.ts.map +1 -0
  1320. package/dist/router/services/GmailService.test.js +113 -0
  1321. package/dist/router/services/GmailService.test.js.map +1 -0
  1322. package/dist/router/services/GoogleAuthManager.d.ts +31 -0
  1323. package/dist/router/services/GoogleAuthManager.d.ts.map +1 -0
  1324. package/dist/router/services/GoogleAuthManager.js +219 -0
  1325. package/dist/router/services/GoogleAuthManager.js.map +1 -0
  1326. package/dist/router/services/GoogleAuthManager.test.d.ts +6 -0
  1327. package/dist/router/services/GoogleAuthManager.test.d.ts.map +1 -0
  1328. package/dist/router/services/GoogleAuthManager.test.js +153 -0
  1329. package/dist/router/services/GoogleAuthManager.test.js.map +1 -0
  1330. package/dist/router/services/ImageGenerator.d.ts +20 -0
  1331. package/dist/router/services/ImageGenerator.d.ts.map +1 -0
  1332. package/dist/router/services/ImageGenerator.js +41 -0
  1333. package/dist/router/services/ImageGenerator.js.map +1 -0
  1334. package/dist/router/services/NoteService.d.ts +36 -0
  1335. package/dist/router/services/NoteService.d.ts.map +1 -0
  1336. package/dist/router/services/NoteService.js +125 -0
  1337. package/dist/router/services/NoteService.js.map +1 -0
  1338. package/dist/router/services/NoteService.test.d.ts +6 -0
  1339. package/dist/router/services/NoteService.test.d.ts.map +1 -0
  1340. package/dist/router/services/NoteService.test.js +90 -0
  1341. package/dist/router/services/NoteService.test.js.map +1 -0
  1342. package/dist/router/services/ProgressReporter.d.ts +32 -0
  1343. package/dist/router/services/ProgressReporter.d.ts.map +1 -0
  1344. package/dist/router/services/ProgressReporter.js +81 -0
  1345. package/dist/router/services/ProgressReporter.js.map +1 -0
  1346. package/dist/router/services/SchedulerEngine.d.ts +55 -0
  1347. package/dist/router/services/SchedulerEngine.d.ts.map +1 -0
  1348. package/dist/router/services/SchedulerEngine.js +215 -0
  1349. package/dist/router/services/SchedulerEngine.js.map +1 -0
  1350. package/dist/router/services/SchedulerEngine.test.d.ts +6 -0
  1351. package/dist/router/services/SchedulerEngine.test.d.ts.map +1 -0
  1352. package/dist/router/services/SchedulerEngine.test.js +102 -0
  1353. package/dist/router/services/SchedulerEngine.test.js.map +1 -0
  1354. package/dist/router/services/ScreenshotService.d.ts +22 -0
  1355. package/dist/router/services/ScreenshotService.d.ts.map +1 -0
  1356. package/dist/router/services/ScreenshotService.js +39 -0
  1357. package/dist/router/services/ScreenshotService.js.map +1 -0
  1358. package/dist/router/services/SheetsService.d.ts +27 -0
  1359. package/dist/router/services/SheetsService.d.ts.map +1 -0
  1360. package/dist/router/services/SheetsService.js +91 -0
  1361. package/dist/router/services/SheetsService.js.map +1 -0
  1362. package/dist/router/services/SheetsService.test.d.ts +6 -0
  1363. package/dist/router/services/SheetsService.test.d.ts.map +1 -0
  1364. package/dist/router/services/SheetsService.test.js +86 -0
  1365. package/dist/router/services/SheetsService.test.js.map +1 -0
  1366. package/dist/router/services/TranslationService.d.ts +21 -0
  1367. package/dist/router/services/TranslationService.d.ts.map +1 -0
  1368. package/dist/router/services/TranslationService.js +76 -0
  1369. package/dist/router/services/TranslationService.js.map +1 -0
  1370. package/dist/router/services/TranslationService.test.d.ts +6 -0
  1371. package/dist/router/services/TranslationService.test.d.ts.map +1 -0
  1372. package/dist/router/services/TranslationService.test.js +61 -0
  1373. package/dist/router/services/TranslationService.test.js.map +1 -0
  1374. package/dist/router/services/WebSearchService.d.ts +24 -0
  1375. package/dist/router/services/WebSearchService.d.ts.map +1 -0
  1376. package/dist/router/services/WebSearchService.js +78 -0
  1377. package/dist/router/services/WebSearchService.js.map +1 -0
  1378. package/dist/router/services/WebSearchService.test.d.ts +6 -0
  1379. package/dist/router/services/WebSearchService.test.d.ts.map +1 -0
  1380. package/dist/router/services/WebSearchService.test.js +75 -0
  1381. package/dist/router/services/WebSearchService.test.js.map +1 -0
  1382. package/dist/router/services/YouTubeService.d.ts +30 -0
  1383. package/dist/router/services/YouTubeService.d.ts.map +1 -0
  1384. package/dist/router/services/YouTubeService.js +145 -0
  1385. package/dist/router/services/YouTubeService.js.map +1 -0
  1386. package/dist/router/services/YouTubeService.test.d.ts +6 -0
  1387. package/dist/router/services/YouTubeService.test.d.ts.map +1 -0
  1388. package/dist/router/services/YouTubeService.test.js +128 -0
  1389. package/dist/router/services/YouTubeService.test.js.map +1 -0
  1390. package/dist/router/services/google-types.d.ts +222 -0
  1391. package/dist/router/services/google-types.d.ts.map +1 -0
  1392. package/dist/router/services/google-types.js +6 -0
  1393. package/dist/router/services/google-types.js.map +1 -0
  1394. package/dist/router/sessions/DevSessionManager.d.ts +39 -0
  1395. package/dist/router/sessions/DevSessionManager.d.ts.map +1 -0
  1396. package/dist/router/sessions/DevSessionManager.js +151 -0
  1397. package/dist/router/sessions/DevSessionManager.js.map +1 -0
  1398. package/dist/router/types.d.ts +117 -0
  1399. package/dist/router/types.d.ts.map +1 -0
  1400. package/dist/router/types.js +25 -0
  1401. package/dist/router/types.js.map +1 -0
  1402. package/dist/sync/ConflictResolver.d.ts +29 -0
  1403. package/dist/sync/ConflictResolver.d.ts.map +1 -0
  1404. package/dist/sync/ConflictResolver.js +106 -0
  1405. package/dist/sync/ConflictResolver.js.map +1 -0
  1406. package/dist/sync/DataSerializer.d.ts +33 -0
  1407. package/dist/sync/DataSerializer.d.ts.map +1 -0
  1408. package/dist/sync/DataSerializer.js +207 -0
  1409. package/dist/sync/DataSerializer.js.map +1 -0
  1410. package/dist/sync/DeviceManager.d.ts +31 -0
  1411. package/dist/sync/DeviceManager.d.ts.map +1 -0
  1412. package/dist/sync/DeviceManager.js +141 -0
  1413. package/dist/sync/DeviceManager.js.map +1 -0
  1414. package/dist/sync/SyncEngine.d.ts +56 -0
  1415. package/dist/sync/SyncEngine.d.ts.map +1 -0
  1416. package/dist/sync/SyncEngine.js +172 -0
  1417. package/dist/sync/SyncEngine.js.map +1 -0
  1418. package/dist/sync/SyncStore.d.ts +46 -0
  1419. package/dist/sync/SyncStore.d.ts.map +1 -0
  1420. package/dist/sync/SyncStore.js +219 -0
  1421. package/dist/sync/SyncStore.js.map +1 -0
  1422. package/dist/sync/index.d.ts +12 -0
  1423. package/dist/sync/index.d.ts.map +1 -0
  1424. package/dist/sync/index.js +11 -0
  1425. package/dist/sync/index.js.map +1 -0
  1426. package/dist/sync/sync.test.d.ts +5 -0
  1427. package/dist/sync/sync.test.d.ts.map +1 -0
  1428. package/dist/sync/sync.test.js +416 -0
  1429. package/dist/sync/sync.test.js.map +1 -0
  1430. package/dist/sync/types.d.ts +80 -0
  1431. package/dist/sync/types.d.ts.map +1 -0
  1432. package/dist/sync/types.js +12 -0
  1433. package/dist/sync/types.js.map +1 -0
  1434. package/dist/tools/browser/index.d.ts +47 -0
  1435. package/dist/tools/browser/index.d.ts.map +1 -0
  1436. package/dist/tools/browser/index.js +413 -0
  1437. package/dist/tools/browser/index.js.map +1 -0
  1438. package/dist/tools/convention/analyzeComplexity.test.js +115 -115
  1439. package/dist/tools/convention/validateCodeQuality.test.js +104 -104
  1440. package/dist/tools/google/index.d.ts +84 -0
  1441. package/dist/tools/google/index.d.ts.map +1 -0
  1442. package/dist/tools/google/index.js +508 -0
  1443. package/dist/tools/google/index.js.map +1 -0
  1444. package/dist/tools/integration/index.d.ts +24 -0
  1445. package/dist/tools/integration/index.d.ts.map +1 -0
  1446. package/dist/tools/integration/index.js +223 -0
  1447. package/dist/tools/integration/index.js.map +1 -0
  1448. package/dist/tools/memory/createMemoryTimeline.js +10 -10
  1449. package/dist/tools/memory/getMemoryGraph.js +12 -12
  1450. package/dist/tools/memory/getSessionContext.js +9 -9
  1451. package/dist/tools/memory/linkMemories.js +14 -14
  1452. package/dist/tools/memory/listMemories.js +4 -4
  1453. package/dist/tools/memory/recallMemory.js +4 -4
  1454. package/dist/tools/memory/saveMemory.js +4 -4
  1455. package/dist/tools/memory/searchMemoriesAdvanced.js +23 -23
  1456. package/dist/tools/sandbox/index.d.ts +25 -0
  1457. package/dist/tools/sandbox/index.d.ts.map +1 -0
  1458. package/dist/tools/sandbox/index.js +255 -0
  1459. package/dist/tools/sandbox/index.js.map +1 -0
  1460. package/dist/tools/semantic/analyzeDependencyGraph.js +12 -12
  1461. package/dist/tools/semantic/astGrep.d.ts +2 -0
  1462. package/dist/tools/semantic/astGrep.d.ts.map +1 -1
  1463. package/dist/tools/semantic/astGrep.js +61 -35
  1464. package/dist/tools/semantic/astGrep.js.map +1 -1
  1465. package/dist/tools/semantic/astGrep.test.js +15 -7
  1466. package/dist/tools/semantic/astGrep.test.js.map +1 -1
  1467. package/dist/tools/spec/prdParser.test.js +171 -171
  1468. package/dist/tools/spec/specGenerator.js +169 -169
  1469. package/dist/tools/spec/traceabilityMatrix.js +64 -64
  1470. package/dist/tools/spec/traceabilityMatrix.test.js +28 -28
  1471. package/dist/tools/vision/index.d.ts +45 -0
  1472. package/dist/tools/vision/index.d.ts.map +1 -0
  1473. package/dist/tools/vision/index.js +328 -0
  1474. package/dist/tools/vision/index.js.map +1 -0
  1475. package/dist/tools/voice/index.d.ts +24 -0
  1476. package/dist/tools/voice/index.d.ts.map +1 -0
  1477. package/dist/tools/voice/index.js +204 -0
  1478. package/dist/tools/voice/index.js.map +1 -0
  1479. package/dist/types/tool.d.ts +64 -0
  1480. package/dist/types/tool.d.ts.map +1 -0
  1481. package/dist/types/tool.js +3 -0
  1482. package/dist/types/tool.js.map +1 -0
  1483. package/hooks/hooks.json +137 -137
  1484. package/hooks/scripts/code-check.js +70 -70
  1485. package/hooks/scripts/context-save.js +200 -200
  1486. package/hooks/scripts/hud-status.js +291 -291
  1487. package/hooks/scripts/keyword-detector.js +214 -214
  1488. package/hooks/scripts/llm-orchestrate.js +646 -511
  1489. package/hooks/scripts/post-edit.js +32 -32
  1490. package/hooks/scripts/pre-tool-guard.js +125 -125
  1491. package/hooks/scripts/prompt-dispatcher.js +185 -185
  1492. package/hooks/scripts/sentinel-guard.js +104 -104
  1493. package/hooks/scripts/session-start.js +106 -106
  1494. package/hooks/scripts/stop-notify.js +209 -209
  1495. package/hooks/scripts/utils.js +100 -100
  1496. package/languages/csharp-unity.md +515 -515
  1497. package/languages/gdscript-godot.md +470 -470
  1498. package/languages/ruby-rails.md +489 -489
  1499. package/languages/typescript-angular.md +433 -433
  1500. package/languages/typescript-astro.md +416 -416
  1501. package/languages/typescript-electron.md +406 -406
  1502. package/languages/typescript-nestjs.md +524 -524
  1503. package/languages/typescript-svelte.md +407 -407
  1504. package/languages/typescript-tauri.md +365 -365
  1505. package/package.json +121 -119
  1506. package/skills/brand-assets/SKILL.md +138 -138
  1507. package/skills/commerce-patterns/SKILL.md +361 -361
  1508. package/skills/commit-push-pr/SKILL.md +118 -118
  1509. package/skills/context7-usage/SKILL.md +105 -105
  1510. package/skills/e2e-commerce/SKILL.md +304 -304
  1511. package/skills/frontend-design/SKILL.md +92 -92
  1512. package/skills/git-worktree/SKILL.md +184 -184
  1513. package/skills/handoff/SKILL.md +101 -101
  1514. package/skills/priority-todos/SKILL.md +242 -242
  1515. package/skills/seo-checklist/SKILL.md +244 -244
  1516. package/skills/techdebt/SKILL.md +122 -122
  1517. package/skills/tool-fallback/SKILL.md +193 -193
  1518. package/skills/typescript-advanced-types/SKILL.md +720 -720
  1519. package/skills/ui-ux-pro-max/SKILL.md +386 -386
  1520. package/skills/vercel-react-best-practices/SKILL.md +304 -304
  1521. package/vibe/config.json +29 -29
  1522. package/vibe/constitution.md +227 -227
  1523. package/vibe/rules/principles/communication-guide.md +98 -98
  1524. package/vibe/rules/principles/development-philosophy.md +52 -52
  1525. package/vibe/rules/principles/quick-start.md +102 -102
  1526. package/vibe/rules/quality/bdd-contract-testing.md +393 -393
  1527. package/vibe/rules/quality/checklist.md +276 -276
  1528. package/vibe/rules/quality/performance.md +236 -236
  1529. package/vibe/rules/quality/testing-strategy.md +440 -440
  1530. package/vibe/rules/standards/anti-patterns.md +541 -541
  1531. package/vibe/rules/standards/code-structure.md +291 -291
  1532. package/vibe/rules/standards/complexity-metrics.md +313 -313
  1533. package/vibe/rules/standards/git-workflow.md +237 -237
  1534. package/vibe/rules/standards/naming-conventions.md +198 -198
  1535. package/vibe/rules/standards/security.md +305 -305
  1536. package/vibe/rules/writing/document-style.md +74 -74
  1537. package/vibe/setup.sh +31 -31
  1538. package/vibe/templates/constitution-template.md +252 -252
  1539. package/vibe/templates/contract-backend-template.md +526 -526
  1540. package/vibe/templates/contract-frontend-template.md +599 -599
  1541. package/vibe/templates/feature-template.md +96 -96
  1542. package/vibe/templates/spec-template.md +221 -221
  1543. package/vibe/ui-ux-data/charts.csv +26 -26
  1544. package/vibe/ui-ux-data/colors.csv +97 -97
  1545. package/vibe/ui-ux-data/icons.csv +101 -101
  1546. package/vibe/ui-ux-data/landing.csv +31 -31
  1547. package/vibe/ui-ux-data/products.csv +96 -96
  1548. package/vibe/ui-ux-data/react-performance.csv +45 -45
  1549. package/vibe/ui-ux-data/stacks/astro.csv +54 -54
  1550. package/vibe/ui-ux-data/stacks/flutter.csv +53 -53
  1551. package/vibe/ui-ux-data/stacks/html-tailwind.csv +56 -56
  1552. package/vibe/ui-ux-data/stacks/jetpack-compose.csv +53 -53
  1553. package/vibe/ui-ux-data/stacks/nextjs.csv +53 -53
  1554. package/vibe/ui-ux-data/stacks/nuxt-ui.csv +51 -51
  1555. package/vibe/ui-ux-data/stacks/nuxtjs.csv +59 -59
  1556. package/vibe/ui-ux-data/stacks/react-native.csv +52 -52
  1557. package/vibe/ui-ux-data/stacks/react.csv +54 -54
  1558. package/vibe/ui-ux-data/stacks/shadcn.csv +61 -61
  1559. package/vibe/ui-ux-data/stacks/svelte.csv +54 -54
  1560. package/vibe/ui-ux-data/stacks/swiftui.csv +51 -51
  1561. package/vibe/ui-ux-data/stacks/vue.csv +50 -50
  1562. package/vibe/ui-ux-data/styles.csv +68 -68
  1563. package/vibe/ui-ux-data/typography.csv +57 -57
  1564. package/vibe/ui-ux-data/ui-reasoning.csv +101 -101
  1565. package/vibe/ui-ux-data/ux-guidelines.csv +99 -99
  1566. package/vibe/ui-ux-data/version.json +31 -31
  1567. package/vibe/ui-ux-data/web-interface.csv +31 -31
@@ -1,101 +1,101 @@
1
- No,UI_Category,Recommended_Pattern,Style_Priority,Color_Mood,Typography_Mood,Key_Effects,Decision_Rules,Anti_Patterns,Severity
2
- 1,SaaS (General),Hero + Features + CTA,Glassmorphism + Flat Design,Trust blue + Accent contrast,Professional + Hierarchy,Subtle hover (200-250ms) + Smooth transitions,"{""if_ux_focused"": ""prioritize-minimalism"", ""if_data_heavy"": ""add-glassmorphism""}",Excessive animation + Dark mode by default,HIGH
3
- 2,Micro SaaS,Minimal & Direct + Demo,Flat Design + Vibrant & Block,Vibrant primary + White space,Bold + Clean typography,Large CTA hover (300ms) + Scroll reveal,"{""if_quick_onboarding"": ""reduce-steps"", ""if_demo_available"": ""feature-interactive-demo""}",Complex onboarding flow + Cluttered layout,HIGH
4
- 3,E-commerce,Feature-Rich Showcase,Vibrant & Block-based,Brand primary + Success green,Engaging + Clear hierarchy,Card hover lift (200ms) + Scale effect,"{""if_luxury"": ""switch-to-liquid-glass"", ""if_conversion_focused"": ""add-urgency-colors""}",Flat design without depth + Text-heavy pages,HIGH
5
- 4,E-commerce Luxury,Feature-Rich Showcase,Liquid Glass + Glassmorphism,Premium colors + Minimal accent,Elegant + Refined typography,Chromatic aberration + Fluid animations (400-600ms),"{""if_checkout"": ""emphasize-trust"", ""if_hero_needed"": ""use-3d-hyperrealism""}",Vibrant & Block-based + Playful colors,HIGH
6
- 5,Healthcare App,Social Proof-Focused,Neumorphism + Accessible & Ethical,Calm blue + Health green,Readable + Large type (16px+),Soft box-shadow + Smooth press (150ms),"{""must_have"": ""wcag-aaa-compliance"", ""if_medication"": ""red-alert-colors""}",Bright neon colors + Motion-heavy animations + AI purple/pink gradients,HIGH
7
- 6,Fintech/Crypto,Conversion-Optimized,Glassmorphism + Dark Mode (OLED),Dark tech colors + Vibrant accents,Modern + Confident typography,Real-time chart animations + Alert pulse/glow,"{""must_have"": ""security-badges"", ""if_real_time"": ""add-streaming-data""}",Light backgrounds + No security indicators,HIGH
8
- 7,Education,Feature-Rich Showcase,Claymorphism + Micro-interactions,Playful colors + Clear hierarchy,Friendly + Engaging typography,Soft press (200ms) + Fluffy elements,"{""if_gamification"": ""add-progress-animation"", ""if_children"": ""increase-playfulness""}",Dark modes + Complex jargon,MEDIUM
9
- 8,Portfolio/Personal,Storytelling-Driven,Motion-Driven + Minimalism,Brand primary + Artistic,Expressive + Variable typography,Parallax (3-5 layers) + Scroll-triggered reveals,"{""if_creative_field"": ""add-brutalism"", ""if_minimal_portfolio"": ""reduce-motion""}",Corporate templates + Generic layouts,MEDIUM
10
- 9,Government/Public,Minimal & Direct,Accessible & Ethical + Minimalism,Professional blue + High contrast,Clear + Large typography,Clear focus rings (3-4px) + Skip links,"{""must_have"": ""wcag-aaa"", ""must_have"": ""keyboard-navigation""}",Ornate design + Low contrast + Motion effects + AI purple/pink gradients,HIGH
11
- 10,Fintech (Banking),Trust & Authority,Minimalism + Accessible & Ethical,Navy + Trust Blue + Gold,Professional + Trustworthy,Smooth state transitions + Number animations,"{""must_have"": ""security-first"", ""if_dashboard"": ""use-dark-mode""}",Playful design + Unclear fees + AI purple/pink gradients,HIGH
12
- 11,Social Media App,Feature-Rich Showcase,Vibrant & Block-based + Motion-Driven,Vibrant + Engagement colors,Modern + Bold typography,Large scroll animations + Icon animations,"{""if_engagement_metric"": ""add-motion"", ""if_content_focused"": ""minimize-chrome""}",Heavy skeuomorphism + Accessibility ignored,MEDIUM
13
- 12,Startup Landing,Hero-Centric + Trust,Motion-Driven + Vibrant & Block,Bold primaries + Accent contrast,Modern + Energetic typography,Scroll-triggered animations + Parallax,"{""if_pre_launch"": ""use-waitlist-pattern"", ""if_video_ready"": ""add-hero-video""}",Static design + No video + Poor mobile,HIGH
14
- 13,Gaming,Feature-Rich Showcase,3D & Hyperrealism + Retro-Futurism,Vibrant + Neon + Immersive,Bold + Impactful typography,WebGL 3D rendering + Glitch effects,"{""if_competitive"": ""add-real-time-stats"", ""if_casual"": ""increase-playfulness""}",Minimalist design + Static assets,HIGH
15
- 14,Creative Agency,Storytelling-Driven,Brutalism + Motion-Driven,Bold primaries + Artistic freedom,Bold + Expressive typography,CRT scanlines + Neon glow + Glitch effects,"{""must_have"": ""case-studies"", ""if_boutique"": ""increase-artistic-freedom""}",Corporate minimalism + Hidden portfolio,HIGH
16
- 15,Wellness/Mental Health,Social Proof-Focused,Neumorphism + Accessible & Ethical,Calm Pastels + Trust colors,Calming + Readable typography,Soft press + Breathing animations,"{""must_have"": ""privacy-first"", ""if_meditation"": ""add-breathing-animation""}",Bright neon + Motion overload,HIGH
17
- 16,Restaurant/Food,Hero-Centric + Conversion,Vibrant & Block-based + Motion-Driven,Warm colors (Orange Red Brown),Appetizing + Clear typography,Food image reveal + Menu hover effects,"{""must_have"": ""high_quality_images"", ""if_delivery"": ""emphasize-speed""}",Low-quality imagery + Outdated hours,HIGH
18
- 17,Real Estate,Hero-Centric + Feature-Rich,Glassmorphism + Minimalism,Trust Blue + Gold + White,Professional + Confident,3D property tour zoom + Map hover,"{""if_luxury"": ""add-3d-models"", ""must_have"": ""map-integration""}",Poor photos + No virtual tours,HIGH
19
- 18,Travel/Tourism,Storytelling-Driven + Hero,Aurora UI + Motion-Driven,Vibrant destination + Sky Blue,Inspirational + Engaging,Destination parallax + Itinerary animations,"{""if_experience_focused"": ""use-storytelling"", ""must_have"": ""mobile-booking""}",Generic photos + Complex booking,HIGH
20
- 19,SaaS Dashboard,Data-Dense Dashboard,Data-Dense + Heat Map,Cool to Hot gradients + Neutral grey,Clear + Readable typography,Hover tooltips + Chart zoom + Real-time pulse,"{""must_have"": ""real-time-updates"", ""if_large_dataset"": ""prioritize-performance""}",Ornate design + Slow rendering,HIGH
21
- 20,B2B SaaS Enterprise,Feature-Rich Showcase,Trust & Authority + Minimal,Professional blue + Neutral grey,Formal + Clear typography,Subtle section transitions + Feature reveals,"{""must_have"": ""case-studies"", ""must_have"": ""roi-messaging""}",Playful design + Hidden features + AI purple/pink gradients,HIGH
22
- 21,Music/Entertainment,Feature-Rich Showcase,Dark Mode (OLED) + Vibrant & Block-based,Dark (#121212) + Vibrant accents + Album art colors,Modern + Bold typography,Waveform visualization + Playlist animations,"{""must_have"": ""audio-player-ux"", ""if_discovery_focused"": ""add-playlist-recommendations""}",Cluttered layout + Poor audio player UX,HIGH
23
- 22,Video Streaming/OTT,Hero-Centric + Feature-Rich,Dark Mode (OLED) + Motion-Driven,Dark bg + Poster colors + Brand accent,Bold + Engaging typography,Video player animations + Content carousel (parallax),"{""must_have"": ""continue-watching"", ""if_personalized"": ""add-recommendations""}",Static layout + Slow video player,HIGH
24
- 23,Job Board/Recruitment,Conversion-Optimized + Feature-Rich,Flat Design + Minimalism,Professional Blue + Success Green + Neutral,Clear + Professional typography,Search/filter animations + Application flow,"{""must_have"": ""advanced-search"", ""if_salary_focused"": ""highlight-compensation""}",Outdated forms + Hidden filters,HIGH
25
- 24,Marketplace (P2P),Feature-Rich Showcase + Social Proof,Vibrant & Block-based + Flat Design,Trust colors + Category colors + Success green,Modern + Engaging typography,Review star animations + Listing hover effects,"{""must_have"": ""seller-profiles"", ""must_have"": ""secure-payment""}",Low trust signals + Confusing layout,HIGH
26
- 25,Logistics/Delivery,Feature-Rich Showcase + Real-Time,Minimalism + Flat Design,Blue (#2563EB) + Orange (tracking) + Green,Clear + Functional typography,Real-time tracking animation + Status pulse,"{""must_have"": ""tracking-map"", ""must_have"": ""delivery-updates""}",Static tracking + No map integration + AI purple/pink gradients,HIGH
27
- 26,Agriculture/Farm Tech,Feature-Rich Showcase,Organic Biophilic + Flat Design,Earth Green (#4A7C23) + Brown + Sky Blue,Clear + Informative typography,Data visualization + Weather animations,"{""must_have"": ""sensor-dashboard"", ""if_crop_focused"": ""add-health-indicators""}",Generic design + Ignored accessibility + AI purple/pink gradients,MEDIUM
28
- 27,Construction/Architecture,Hero-Centric + Feature-Rich,Minimalism + 3D & Hyperrealism,Grey (#4A4A4A) + Orange (safety) + Blueprint Blue,Professional + Bold typography,3D model viewer + Timeline animations,"{""must_have"": ""project-portfolio"", ""if_team_collaboration"": ""add-real-time-updates""}",2D-only layouts + Poor image quality + AI purple/pink gradients,HIGH
29
- 28,Automotive/Car Dealership,Hero-Centric + Feature-Rich,Motion-Driven + 3D & Hyperrealism,Brand colors + Metallic + Dark/Light,Bold + Confident typography,360 product view + Configurator animations,"{""must_have"": ""vehicle-comparison"", ""must_have"": ""financing-calculator""}",Static product pages + Poor UX,HIGH
30
- 29,Photography Studio,Storytelling-Driven + Hero-Centric,Motion-Driven + Minimalism,Black + White + Minimal accent,Elegant + Minimal typography,Full-bleed gallery + Before/after reveal,"{""must_have"": ""portfolio-showcase"", ""if_booking"": ""add-calendar-system""}",Heavy text + Poor image showcase,HIGH
31
- 30,Coworking Space,Hero-Centric + Feature-Rich,Vibrant & Block-based + Glassmorphism,Energetic colors + Wood tones + Brand,Modern + Engaging typography,Space tour video + Amenity reveal animations,"{""must_have"": ""virtual-tour"", ""must_have"": ""booking-system""}",Outdated photos + Confusing layout,MEDIUM
32
- 31,Cleaning Service,Conversion-Optimized + Trust,Soft UI Evolution + Flat Design,Fresh Blue (#00B4D8) + Clean White + Green,Friendly + Clear typography,Before/after gallery + Service package reveal,"{""must_have"": ""price-transparency"", ""must_have"": ""trust-badges""}",Poor before/after imagery + Hidden pricing,HIGH
33
- 32,Home Services,Conversion-Optimized + Trust,Flat Design + Trust & Authority,Trust Blue + Safety Orange + Grey,Professional + Clear typography,Emergency contact highlight + Service menu animations,"{""must_have"": ""emergency-contact"", ""must_have"": ""certifications-display""}",Hidden contact info + No certifications,HIGH
34
- 33,Childcare/Daycare,Social Proof-Focused + Trust,Claymorphism + Vibrant & Block-based,Playful pastels + Safe colors + Warm,Friendly + Playful typography,Parent portal animations + Activity gallery reveal,"{""must_have"": ""parent-communication"", ""must_have"": ""safety-certifications""}",Generic design + Hidden safety info,HIGH
35
- 34,Senior Care/Elderly,Trust & Authority + Accessible,Accessible & Ethical + Soft UI Evolution,Calm Blue + Warm neutrals + Large text,Large + Clear typography (18px+),Large touch targets + Clear navigation,"{""must_have"": ""wcag-aaa"", ""must_have"": ""family-portal""}",Small text + Complex navigation + AI purple/pink gradients,HIGH
36
- 35,Medical Clinic,Trust & Authority + Conversion,Accessible & Ethical + Minimalism,Medical Blue (#0077B6) + Trust White,Professional + Readable typography,Online booking flow + Doctor profile reveals,"{""must_have"": ""appointment-booking"", ""must_have"": ""insurance-info""}",Outdated interface + Confusing booking + AI purple/pink gradients,HIGH
37
- 36,Pharmacy/Drug Store,Conversion-Optimized + Trust,Flat Design + Accessible & Ethical,Pharmacy Green + Trust Blue + Clean White,Clear + Functional typography,Prescription upload flow + Refill reminders,"{""must_have"": ""prescription-management"", ""must_have"": ""drug-interaction-warnings""}",Confusing layout + Privacy concerns + AI purple/pink gradients,HIGH
38
- 37,Dental Practice,Social Proof-Focused + Conversion,Soft UI Evolution + Minimalism,Fresh Blue + White + Smile Yellow,Friendly + Professional typography,Before/after gallery + Patient testimonial carousel,"{""must_have"": ""before-after-gallery"", ""must_have"": ""appointment-system""}",Poor imagery + No testimonials,HIGH
39
- 38,Veterinary Clinic,Social Proof-Focused + Trust,Claymorphism + Accessible & Ethical,Caring Blue + Pet colors + Warm,Friendly + Welcoming typography,Pet profile management + Service animations,"{""must_have"": ""pet-portal"", ""must_have"": ""emergency-contact""}",Generic design + Hidden services,MEDIUM
40
- 39,News/Media Platform,Hero-Centric + Feature-Rich,Minimalism + Flat Design,Brand colors + High contrast,Clear + Readable typography,Breaking news badge + Article reveal animations,"{""must_have"": ""mobile-first-reading"", ""must_have"": ""category-navigation""}",Cluttered layout + Slow loading,HIGH
41
- 40,Legal Services,Trust & Authority + Minimal,Trust & Authority + Minimalism,Navy Blue (#1E3A5F) + Gold + White,Professional + Authoritative typography,Practice area reveal + Attorney profile animations,"{""must_have"": ""case-results"", ""must_have"": ""credential-display""}",Outdated design + Hidden credentials + AI purple/pink gradients,HIGH
42
- 41,Beauty/Spa/Wellness Service,Hero-Centric + Social Proof,Soft UI Evolution + Neumorphism,Soft pastels (Pink Sage Cream) + Gold accents,Elegant + Calming typography,Soft shadows + Smooth transitions (200-300ms) + Gentle hover,"{""must_have"": ""booking-system"", ""must_have"": ""before-after-gallery"", ""if_luxury"": ""add-gold-accents""}",Bright neon colors + Harsh animations + Dark mode,HIGH
43
- 42,Service Landing Page,Hero-Centric + Trust & Authority,Minimalism + Social Proof-Focused,Brand primary + Trust colors,Professional + Clear typography,Testimonial carousel + CTA hover (200ms),"{""must_have"": ""social-proof"", ""must_have"": ""clear-cta""}",Complex navigation + Hidden contact info,HIGH
44
- 43,B2B Service,Feature-Rich Showcase + Trust,Trust & Authority + Minimalism,Professional blue + Neutral grey,Formal + Clear typography,Section transitions + Feature reveals,"{""must_have"": ""case-studies"", ""must_have"": ""roi-messaging""}",Playful design + Hidden credentials + AI purple/pink gradients,HIGH
45
- 44,Financial Dashboard,Data-Dense Dashboard,Dark Mode (OLED) + Data-Dense,Dark bg + Red/Green alerts + Trust blue,Clear + Readable typography,Real-time number animations + Alert pulse,"{""must_have"": ""real-time-updates"", ""must_have"": ""high-contrast""}",Light mode default + Slow rendering,HIGH
46
- 45,Analytics Dashboard,Data-Dense + Drill-Down,Data-Dense + Heat Map,Cool→Hot gradients + Neutral grey,Clear + Functional typography,Hover tooltips + Chart zoom + Filter animations,"{""must_have"": ""data-export"", ""if_large_dataset"": ""virtualize-lists""}",Ornate design + No filtering,HIGH
47
- 46,Productivity Tool,Interactive Demo + Feature-Rich,Flat Design + Micro-interactions,Clear hierarchy + Functional colors,Clean + Efficient typography,Quick actions (150ms) + Task animations,"{""must_have"": ""keyboard-shortcuts"", ""if_collaboration"": ""add-real-time-cursors""}",Complex onboarding + Slow performance,HIGH
48
- 47,Design System/Component Library,Feature-Rich + Documentation,Minimalism + Accessible & Ethical,Clear hierarchy + Code-like structure,Monospace + Clear typography,Code copy animations + Component previews,"{""must_have"": ""search"", ""must_have"": ""code-examples""}",Poor documentation + No live preview,HIGH
49
- 48,AI/Chatbot Platform,Interactive Demo + Minimal,AI-Native UI + Minimalism,Neutral + AI Purple (#6366F1),Modern + Clear typography,Streaming text + Typing indicators + Fade-in,"{""must_have"": ""conversational-ui"", ""must_have"": ""context-awareness""}",Heavy chrome + Slow response feedback,HIGH
50
- 49,NFT/Web3 Platform,Feature-Rich Showcase,Cyberpunk UI + Glassmorphism,Dark + Neon + Gold (#FFD700),Bold + Modern typography,Wallet connect animations + Transaction feedback,"{""must_have"": ""wallet-integration"", ""must_have"": ""gas-fees-display""}",Light mode default + No transaction status,HIGH
51
- 50,Creator Economy Platform,Social Proof + Feature-Rich,Vibrant & Block-based + Bento Box Grid,Vibrant + Brand colors,Modern + Bold typography,Engagement counter animations + Profile reveals,"{""must_have"": ""creator-profiles"", ""must_have"": ""monetization-display""}",Generic layout + Hidden earnings,MEDIUM
52
- 51,Sustainability/ESG Platform,Trust & Authority + Data,Organic Biophilic + Minimalism,Green (#228B22) + Earth tones,Clear + Informative typography,Progress indicators + Impact animations,"{""must_have"": ""data-transparency"", ""must_have"": ""certification-badges""}",Greenwashing visuals + No data,HIGH
53
- 52,Remote Work/Collaboration,Feature-Rich + Real-Time,Soft UI Evolution + Minimalism,Calm Blue + Neutral grey,Clean + Readable typography,Real-time presence indicators + Notification badges,"{""must_have"": ""status-indicators"", ""must_have"": ""video-integration""}",Cluttered interface + No presence,HIGH
54
- 53,Pet Tech App,Storytelling + Feature-Rich,Claymorphism + Vibrant & Block-based,Playful + Warm colors,Friendly + Playful typography,Pet profile animations + Health tracking charts,"{""must_have"": ""pet-profiles"", ""if_health"": ""add-vet-integration""}",Generic design + No personality,MEDIUM
55
- 54,Smart Home/IoT Dashboard,Real-Time Monitoring,Glassmorphism + Dark Mode (OLED),Dark + Status indicator colors,Clear + Functional typography,Device status pulse + Quick action animations,"{""must_have"": ""real-time-controls"", ""must_have"": ""energy-monitoring""}",Slow updates + No automation,HIGH
56
- 55,EV/Charging Ecosystem,Hero-Centric + Feature-Rich,Minimalism + Aurora UI,Electric Blue (#009CD1) + Green,Modern + Clear typography,Range estimation animations + Map interactions,"{""must_have"": ""charging-map"", ""must_have"": ""range-calculator""}",Poor map UX + Hidden costs,HIGH
57
- 56,Subscription Box Service,Feature-Rich + Conversion,Vibrant & Block-based + Motion-Driven,Brand + Excitement colors,Engaging + Clear typography,Unboxing reveal animations + Product carousel,"{""must_have"": ""personalization-quiz"", ""must_have"": ""subscription-management""}",Confusing pricing + No unboxing preview,HIGH
58
- 57,Podcast Platform,Storytelling + Feature-Rich,Dark Mode (OLED) + Minimalism,Dark + Audio waveform accents,Modern + Clear typography,Waveform visualizations + Episode transitions,"{""must_have"": ""audio-player-ux"", ""must_have"": ""episode-discovery""}",Poor audio player + Cluttered layout,HIGH
59
- 58,Dating App,Social Proof + Feature-Rich,Vibrant & Block-based + Motion-Driven,Warm + Romantic (Pink/Red gradients),Modern + Friendly typography,Profile card swipe + Match animations,"{""must_have"": ""profile-cards"", ""must_have"": ""safety-features""}",Generic profiles + No safety,HIGH
60
- 59,Micro-Credentials/Badges,Trust & Authority + Feature,Minimalism + Flat Design,Trust Blue + Gold (#FFD700),Professional + Clear typography,Badge reveal animations + Progress tracking,"{""must_have"": ""credential-verification"", ""must_have"": ""progress-display""}",No verification + Hidden progress,MEDIUM
61
- 60,Knowledge Base/Documentation,FAQ + Minimal,Minimalism + Accessible & Ethical,Clean hierarchy + Minimal color,Clear + Readable typography,Search highlight + Smooth scrolling,"{""must_have"": ""search-first"", ""must_have"": ""version-switching""}",Poor navigation + No search,HIGH
62
- 61,Hyperlocal Services,Conversion + Feature-Rich,Minimalism + Vibrant & Block-based,Location markers + Trust colors,Clear + Functional typography,Map hover + Provider card reveals,"{""must_have"": ""map-integration"", ""must_have"": ""booking-system""}",No map + Hidden reviews,HIGH
63
- 62,Luxury/Premium Brand,Storytelling + Feature-Rich,Liquid Glass + Glassmorphism,Black + Gold (#FFD700) + White,Elegant + Refined typography,Slow parallax + Premium reveals (400-600ms),"{""must_have"": ""high-quality-imagery"", ""must_have"": ""storytelling""}",Cheap visuals + Fast animations,HIGH
64
- 63,Fitness/Gym App,Feature-Rich + Data,Vibrant & Block-based + Dark Mode (OLED),Energetic (Orange #FF6B35) + Dark bg,Bold + Motivational typography,Progress ring animations + Achievement unlocks,"{""must_have"": ""progress-tracking"", ""must_have"": ""workout-plans""}",Static design + No gamification,HIGH
65
- 64,Hotel/Hospitality,Hero-Centric + Social Proof,Liquid Glass + Minimalism,Warm neutrals + Gold (#D4AF37),Elegant + Welcoming typography,Room gallery + Amenity reveals,"{""must_have"": ""room-booking"", ""must_have"": ""virtual-tour""}",Poor photos + Complex booking,HIGH
66
- 65,Wedding/Event Planning,Storytelling + Social Proof,Soft UI Evolution + Aurora UI,Soft Pink (#FFD6E0) + Gold + Cream,Elegant + Romantic typography,Gallery reveals + Timeline animations,"{""must_have"": ""portfolio-gallery"", ""must_have"": ""planning-tools""}",Generic templates + No portfolio,HIGH
67
- 66,Insurance Platform,Conversion + Trust,Trust & Authority + Flat Design,Trust Blue (#0066CC) + Green + Neutral,Clear + Professional typography,Quote calculator animations + Policy comparison,"{""must_have"": ""quote-calculator"", ""must_have"": ""policy-comparison""}",Confusing pricing + No trust signals + AI purple/pink gradients,HIGH
68
- 67,Banking/Traditional Finance,Trust & Authority + Feature,Minimalism + Accessible & Ethical,Navy (#0A1628) + Trust Blue + Gold,Professional + Trustworthy typography,Smooth number animations + Security indicators,"{""must_have"": ""security-first"", ""must_have"": ""accessibility""}",Playful design + Poor security UX + AI purple/pink gradients,HIGH
69
- 68,Online Course/E-learning,Feature-Rich + Social Proof,Claymorphism + Vibrant & Block-based,Vibrant learning colors + Progress green,Friendly + Engaging typography,Progress bar animations + Certificate reveals,"{""must_have"": ""progress-tracking"", ""must_have"": ""video-player""}",Boring design + No gamification,HIGH
70
- 69,Non-profit/Charity,Storytelling + Trust,Accessible & Ethical + Organic Biophilic,Cause-related colors + Trust + Warm,Heartfelt + Readable typography,Impact counter animations + Story reveals,"{""must_have"": ""impact-stories"", ""must_have"": ""donation-transparency""}",No impact data + Hidden financials,HIGH
71
- 70,Florist/Plant Shop,Hero-Centric + Conversion,Organic Biophilic + Vibrant & Block-based,Natural Green + Floral pinks/purples,Elegant + Natural typography,Product reveal + Seasonal transitions,"{""must_have"": ""delivery-scheduling"", ""must_have"": ""care-guides""}",Poor imagery + No seasonal content,MEDIUM
72
- 71,Bakery/Cafe,Hero-Centric + Conversion,Vibrant & Block-based + Soft UI Evolution,Warm Brown + Cream + Appetizing accents,Warm + Inviting typography,Menu hover + Order animations,"{""must_have"": ""menu-display"", ""must_have"": ""online-ordering""}",Poor food photos + Hidden hours,HIGH
73
- 72,Coffee Shop,Hero-Centric + Minimal,Minimalism + Organic Biophilic,Coffee Brown (#6F4E37) + Cream + Warm,Cozy + Clean typography,Menu transitions + Loyalty animations,"{""must_have"": ""menu"", ""if_loyalty"": ""add-rewards-system""}",Generic design + No atmosphere,MEDIUM
74
- 73,Brewery/Winery,Storytelling + Hero-Centric,Motion-Driven + Storytelling-Driven,Deep amber/burgundy + Gold + Craft,Artisanal + Heritage typography,Tasting note reveals + Heritage timeline,"{""must_have"": ""product-showcase"", ""must_have"": ""story-heritage""}",Generic product pages + No story,HIGH
75
- 74,Airline,Conversion + Feature-Rich,Minimalism + Glassmorphism,Sky Blue + Brand colors + Trust,Clear + Professional typography,Flight search animations + Boarding pass reveals,"{""must_have"": ""flight-search"", ""must_have"": ""mobile-first""}",Complex booking + Poor mobile,HIGH
76
- 75,Magazine/Blog,Storytelling + Hero-Centric,Swiss Modernism 2.0 + Motion-Driven,Editorial colors + Brand + Clean white,Editorial + Elegant typography,Article transitions + Category reveals,"{""must_have"": ""article-showcase"", ""must_have"": ""newsletter-signup""}",Poor typography + Slow loading,HIGH
77
- 76,Freelancer Platform,Feature-Rich + Conversion,Flat Design + Minimalism,Professional Blue + Success Green,Clear + Professional typography,Skill match animations + Review reveals,"{""must_have"": ""portfolio-display"", ""must_have"": ""skill-matching""}",Poor profiles + No reviews,HIGH
78
- 77,Consulting Firm,Trust & Authority + Minimal,Trust & Authority + Minimalism,Navy + Gold + Professional grey,Authoritative + Clear typography,Case study reveals + Team profiles,"{""must_have"": ""case-studies"", ""must_have"": ""thought-leadership""}",Generic content + No credentials + AI purple/pink gradients,HIGH
79
- 78,Marketing Agency,Storytelling + Feature-Rich,Brutalism + Motion-Driven,Bold brand colors + Creative freedom,Bold + Expressive typography,Portfolio reveals + Results animations,"{""must_have"": ""portfolio"", ""must_have"": ""results-metrics""}",Boring design + Hidden work,HIGH
80
- 79,Event Management,Hero-Centric + Feature-Rich,Vibrant & Block-based + Motion-Driven,Event theme colors + Excitement accents,Bold + Engaging typography,Countdown timer + Registration flow,"{""must_have"": ""registration"", ""must_have"": ""agenda-display""}",Confusing registration + No countdown,HIGH
81
- 80,Conference/Webinar Platform,Feature-Rich + Conversion,Glassmorphism + Minimalism,Professional Blue + Video accent,Professional + Clear typography,Live stream integration + Agenda transitions,"{""must_have"": ""registration"", ""must_have"": ""speaker-profiles""}",Poor video UX + No networking,HIGH
82
- 81,Membership/Community,Social Proof + Conversion,Vibrant & Block-based + Soft UI Evolution,Community brand colors + Engagement,Friendly + Engaging typography,Member counter + Benefit reveals,"{""must_have"": ""member-benefits"", ""must_have"": ""pricing-tiers""}",Hidden benefits + No community proof,HIGH
83
- 82,Newsletter Platform,Minimal + Conversion,Minimalism + Flat Design,Brand primary + Clean white + CTA,Clean + Readable typography,Subscribe form + Archive reveals,"{""must_have"": ""subscribe-form"", ""must_have"": ""sample-content""}",Complex signup + No preview,MEDIUM
84
- 83,Digital Products/Downloads,Feature-Rich + Conversion,Vibrant & Block-based + Motion-Driven,Product colors + Brand + Success green,Modern + Clear typography,Product preview + Instant delivery animations,"{""must_have"": ""product-preview"", ""must_have"": ""instant-delivery""}",No preview + Slow delivery,HIGH
85
- 84,Church/Religious Organization,Hero-Centric + Social Proof,Accessible & Ethical + Soft UI Evolution,Warm Gold + Deep Purple/Blue + White,Welcoming + Clear typography,Service time highlights + Event calendar,"{""must_have"": ""service-times"", ""must_have"": ""community-events""}",Outdated design + Hidden info,MEDIUM
86
- 85,Sports Team/Club,Hero-Centric + Feature-Rich,Vibrant & Block-based + Motion-Driven,Team colors + Energetic accents,Bold + Impactful typography,Score animations + Schedule reveals,"{""must_have"": ""schedule"", ""must_have"": ""roster""}",Static content + Poor fan engagement,HIGH
87
- 86,Museum/Gallery,Storytelling + Feature-Rich,Minimalism + Motion-Driven,Art-appropriate neutrals + Exhibition accents,Elegant + Minimal typography,Virtual tour + Collection reveals,"{""must_have"": ""virtual-tour"", ""must_have"": ""exhibition-info""}",Cluttered layout + No online access,HIGH
88
- 87,Theater/Cinema,Hero-Centric + Conversion,Dark Mode (OLED) + Motion-Driven,Dark + Spotlight accents + Gold,Dramatic + Bold typography,Seat selection + Trailer reveals,"{""must_have"": ""showtimes"", ""must_have"": ""seat-selection""}",Poor booking UX + No trailers,HIGH
89
- 88,Language Learning App,Feature-Rich + Social Proof,Claymorphism + Vibrant & Block-based,Playful colors + Progress indicators,Friendly + Clear typography,Progress animations + Achievement unlocks,"{""must_have"": ""progress-tracking"", ""must_have"": ""gamification""}",Boring design + No motivation,HIGH
90
- 89,Coding Bootcamp,Feature-Rich + Social Proof,Dark Mode (OLED) + Minimalism,Code editor colors + Brand + Success,Technical + Clear typography,Terminal animations + Career outcome reveals,"{""must_have"": ""curriculum"", ""must_have"": ""career-outcomes""}",Light mode only + Hidden results,HIGH
91
- 90,Cybersecurity Platform,Trust & Authority + Real-Time,Cyberpunk UI + Dark Mode (OLED),Matrix Green (#00FF00) + Deep Black,Technical + Clear typography,Threat visualization + Alert animations,"{""must_have"": ""real-time-monitoring"", ""must_have"": ""threat-display""}",Light mode + Poor data viz,HIGH
92
- 91,Developer Tool/IDE,Minimal + Documentation,Dark Mode (OLED) + Minimalism,Dark syntax theme + Blue focus,Monospace + Functional typography,Syntax highlighting + Command palette,"{""must_have"": ""keyboard-shortcuts"", ""must_have"": ""documentation""}",Light mode default + Slow performance,HIGH
93
- 92,Biotech/Life Sciences,Storytelling + Data,Glassmorphism + Clean Science,Sterile White + DNA Blue + Life Green,Scientific + Clear typography,Data visualization + Research reveals,"{""must_have"": ""data-accuracy"", ""must_have"": ""clean-aesthetic""}",Cluttered data + Poor credibility,HIGH
94
- 93,Space Tech/Aerospace,Immersive + Feature-Rich,Holographic/HUD + Dark Mode,Deep Space Black + Star White + Metallic,Futuristic + Precise typography,Telemetry animations + 3D renders,"{""must_have"": ""high-tech-feel"", ""must_have"": ""precision-data""}",Generic design + No immersion,HIGH
95
- 94,Architecture/Interior,Portfolio + Hero-Centric,Exaggerated Minimalism + High Imagery,Monochrome + Gold Accent + High Imagery,Architectural + Elegant typography,Project gallery + Blueprint reveals,"{""must_have"": ""high-res-images"", ""must_have"": ""project-portfolio""}",Poor imagery + Cluttered layout,HIGH
96
- 95,Quantum Computing,Immersive + Interactive,Holographic/HUD + Dark Mode,Quantum Blue (#00FFFF) + Deep Black,Futuristic + Scientific typography,Probability visualizations + Qubit state animations,"{""must_have"": ""complexity-visualization"", ""must_have"": ""scientific-credibility""}",Generic tech design + No viz,HIGH
97
- 96,Biohacking/Longevity App,Data-Dense + Storytelling,Biomimetic/Organic 2.0 + Minimalism,Cellular Pink/Red + DNA Blue + White,Scientific + Clear typography,Biological data viz + Progress animations,"{""must_have"": ""data-privacy"", ""must_have"": ""scientific-credibility""}",Generic health app + No privacy,HIGH
98
- 97,Autonomous Drone Fleet,Real-Time + Feature-Rich,HUD/Sci-Fi FUI + Real-Time,Tactical Green + Alert Red + Map Dark,Technical + Functional typography,Telemetry animations + 3D spatial awareness,"{""must_have"": ""real-time-telemetry"", ""must_have"": ""safety-alerts""}",Slow updates + Poor spatial viz,HIGH
99
- 98,Generative Art Platform,Showcase + Feature-Rich,Minimalism + Gen Z Chaos,Neutral (#F5F5F5) + User Content,Minimal + Content-focused typography,Gallery masonry + Minting animations,"{""must_have"": ""fast-loading"", ""must_have"": ""creator-attribution""}",Heavy chrome + Slow loading,HIGH
100
- 99,Spatial Computing OS,Immersive + Interactive,Spatial UI (VisionOS) + Glassmorphism,Frosted Glass + System Colors + Depth,Spatial + Readable typography,Depth hierarchy + Gaze interactions,"{""must_have"": ""depth-hierarchy"", ""must_have"": ""environment-awareness""}",2D design + No spatial depth,HIGH
101
- 100,Sustainable Energy/Climate,Data + Trust,Organic Biophilic + E-Ink/Paper,Earth Green + Sky Blue + Solar Yellow,Clear + Informative typography,Impact viz + Progress animations,"{""must_have"": ""data-transparency"", ""must_have"": ""impact-visualization""}",Greenwashing + No real data,HIGH
1
+ No,UI_Category,Recommended_Pattern,Style_Priority,Color_Mood,Typography_Mood,Key_Effects,Decision_Rules,Anti_Patterns,Severity
2
+ 1,SaaS (General),Hero + Features + CTA,Glassmorphism + Flat Design,Trust blue + Accent contrast,Professional + Hierarchy,Subtle hover (200-250ms) + Smooth transitions,"{""if_ux_focused"": ""prioritize-minimalism"", ""if_data_heavy"": ""add-glassmorphism""}",Excessive animation + Dark mode by default,HIGH
3
+ 2,Micro SaaS,Minimal & Direct + Demo,Flat Design + Vibrant & Block,Vibrant primary + White space,Bold + Clean typography,Large CTA hover (300ms) + Scroll reveal,"{""if_quick_onboarding"": ""reduce-steps"", ""if_demo_available"": ""feature-interactive-demo""}",Complex onboarding flow + Cluttered layout,HIGH
4
+ 3,E-commerce,Feature-Rich Showcase,Vibrant & Block-based,Brand primary + Success green,Engaging + Clear hierarchy,Card hover lift (200ms) + Scale effect,"{""if_luxury"": ""switch-to-liquid-glass"", ""if_conversion_focused"": ""add-urgency-colors""}",Flat design without depth + Text-heavy pages,HIGH
5
+ 4,E-commerce Luxury,Feature-Rich Showcase,Liquid Glass + Glassmorphism,Premium colors + Minimal accent,Elegant + Refined typography,Chromatic aberration + Fluid animations (400-600ms),"{""if_checkout"": ""emphasize-trust"", ""if_hero_needed"": ""use-3d-hyperrealism""}",Vibrant & Block-based + Playful colors,HIGH
6
+ 5,Healthcare App,Social Proof-Focused,Neumorphism + Accessible & Ethical,Calm blue + Health green,Readable + Large type (16px+),Soft box-shadow + Smooth press (150ms),"{""must_have"": ""wcag-aaa-compliance"", ""if_medication"": ""red-alert-colors""}",Bright neon colors + Motion-heavy animations + AI purple/pink gradients,HIGH
7
+ 6,Fintech/Crypto,Conversion-Optimized,Glassmorphism + Dark Mode (OLED),Dark tech colors + Vibrant accents,Modern + Confident typography,Real-time chart animations + Alert pulse/glow,"{""must_have"": ""security-badges"", ""if_real_time"": ""add-streaming-data""}",Light backgrounds + No security indicators,HIGH
8
+ 7,Education,Feature-Rich Showcase,Claymorphism + Micro-interactions,Playful colors + Clear hierarchy,Friendly + Engaging typography,Soft press (200ms) + Fluffy elements,"{""if_gamification"": ""add-progress-animation"", ""if_children"": ""increase-playfulness""}",Dark modes + Complex jargon,MEDIUM
9
+ 8,Portfolio/Personal,Storytelling-Driven,Motion-Driven + Minimalism,Brand primary + Artistic,Expressive + Variable typography,Parallax (3-5 layers) + Scroll-triggered reveals,"{""if_creative_field"": ""add-brutalism"", ""if_minimal_portfolio"": ""reduce-motion""}",Corporate templates + Generic layouts,MEDIUM
10
+ 9,Government/Public,Minimal & Direct,Accessible & Ethical + Minimalism,Professional blue + High contrast,Clear + Large typography,Clear focus rings (3-4px) + Skip links,"{""must_have"": ""wcag-aaa"", ""must_have"": ""keyboard-navigation""}",Ornate design + Low contrast + Motion effects + AI purple/pink gradients,HIGH
11
+ 10,Fintech (Banking),Trust & Authority,Minimalism + Accessible & Ethical,Navy + Trust Blue + Gold,Professional + Trustworthy,Smooth state transitions + Number animations,"{""must_have"": ""security-first"", ""if_dashboard"": ""use-dark-mode""}",Playful design + Unclear fees + AI purple/pink gradients,HIGH
12
+ 11,Social Media App,Feature-Rich Showcase,Vibrant & Block-based + Motion-Driven,Vibrant + Engagement colors,Modern + Bold typography,Large scroll animations + Icon animations,"{""if_engagement_metric"": ""add-motion"", ""if_content_focused"": ""minimize-chrome""}",Heavy skeuomorphism + Accessibility ignored,MEDIUM
13
+ 12,Startup Landing,Hero-Centric + Trust,Motion-Driven + Vibrant & Block,Bold primaries + Accent contrast,Modern + Energetic typography,Scroll-triggered animations + Parallax,"{""if_pre_launch"": ""use-waitlist-pattern"", ""if_video_ready"": ""add-hero-video""}",Static design + No video + Poor mobile,HIGH
14
+ 13,Gaming,Feature-Rich Showcase,3D & Hyperrealism + Retro-Futurism,Vibrant + Neon + Immersive,Bold + Impactful typography,WebGL 3D rendering + Glitch effects,"{""if_competitive"": ""add-real-time-stats"", ""if_casual"": ""increase-playfulness""}",Minimalist design + Static assets,HIGH
15
+ 14,Creative Agency,Storytelling-Driven,Brutalism + Motion-Driven,Bold primaries + Artistic freedom,Bold + Expressive typography,CRT scanlines + Neon glow + Glitch effects,"{""must_have"": ""case-studies"", ""if_boutique"": ""increase-artistic-freedom""}",Corporate minimalism + Hidden portfolio,HIGH
16
+ 15,Wellness/Mental Health,Social Proof-Focused,Neumorphism + Accessible & Ethical,Calm Pastels + Trust colors,Calming + Readable typography,Soft press + Breathing animations,"{""must_have"": ""privacy-first"", ""if_meditation"": ""add-breathing-animation""}",Bright neon + Motion overload,HIGH
17
+ 16,Restaurant/Food,Hero-Centric + Conversion,Vibrant & Block-based + Motion-Driven,Warm colors (Orange Red Brown),Appetizing + Clear typography,Food image reveal + Menu hover effects,"{""must_have"": ""high_quality_images"", ""if_delivery"": ""emphasize-speed""}",Low-quality imagery + Outdated hours,HIGH
18
+ 17,Real Estate,Hero-Centric + Feature-Rich,Glassmorphism + Minimalism,Trust Blue + Gold + White,Professional + Confident,3D property tour zoom + Map hover,"{""if_luxury"": ""add-3d-models"", ""must_have"": ""map-integration""}",Poor photos + No virtual tours,HIGH
19
+ 18,Travel/Tourism,Storytelling-Driven + Hero,Aurora UI + Motion-Driven,Vibrant destination + Sky Blue,Inspirational + Engaging,Destination parallax + Itinerary animations,"{""if_experience_focused"": ""use-storytelling"", ""must_have"": ""mobile-booking""}",Generic photos + Complex booking,HIGH
20
+ 19,SaaS Dashboard,Data-Dense Dashboard,Data-Dense + Heat Map,Cool to Hot gradients + Neutral grey,Clear + Readable typography,Hover tooltips + Chart zoom + Real-time pulse,"{""must_have"": ""real-time-updates"", ""if_large_dataset"": ""prioritize-performance""}",Ornate design + Slow rendering,HIGH
21
+ 20,B2B SaaS Enterprise,Feature-Rich Showcase,Trust & Authority + Minimal,Professional blue + Neutral grey,Formal + Clear typography,Subtle section transitions + Feature reveals,"{""must_have"": ""case-studies"", ""must_have"": ""roi-messaging""}",Playful design + Hidden features + AI purple/pink gradients,HIGH
22
+ 21,Music/Entertainment,Feature-Rich Showcase,Dark Mode (OLED) + Vibrant & Block-based,Dark (#121212) + Vibrant accents + Album art colors,Modern + Bold typography,Waveform visualization + Playlist animations,"{""must_have"": ""audio-player-ux"", ""if_discovery_focused"": ""add-playlist-recommendations""}",Cluttered layout + Poor audio player UX,HIGH
23
+ 22,Video Streaming/OTT,Hero-Centric + Feature-Rich,Dark Mode (OLED) + Motion-Driven,Dark bg + Poster colors + Brand accent,Bold + Engaging typography,Video player animations + Content carousel (parallax),"{""must_have"": ""continue-watching"", ""if_personalized"": ""add-recommendations""}",Static layout + Slow video player,HIGH
24
+ 23,Job Board/Recruitment,Conversion-Optimized + Feature-Rich,Flat Design + Minimalism,Professional Blue + Success Green + Neutral,Clear + Professional typography,Search/filter animations + Application flow,"{""must_have"": ""advanced-search"", ""if_salary_focused"": ""highlight-compensation""}",Outdated forms + Hidden filters,HIGH
25
+ 24,Marketplace (P2P),Feature-Rich Showcase + Social Proof,Vibrant & Block-based + Flat Design,Trust colors + Category colors + Success green,Modern + Engaging typography,Review star animations + Listing hover effects,"{""must_have"": ""seller-profiles"", ""must_have"": ""secure-payment""}",Low trust signals + Confusing layout,HIGH
26
+ 25,Logistics/Delivery,Feature-Rich Showcase + Real-Time,Minimalism + Flat Design,Blue (#2563EB) + Orange (tracking) + Green,Clear + Functional typography,Real-time tracking animation + Status pulse,"{""must_have"": ""tracking-map"", ""must_have"": ""delivery-updates""}",Static tracking + No map integration + AI purple/pink gradients,HIGH
27
+ 26,Agriculture/Farm Tech,Feature-Rich Showcase,Organic Biophilic + Flat Design,Earth Green (#4A7C23) + Brown + Sky Blue,Clear + Informative typography,Data visualization + Weather animations,"{""must_have"": ""sensor-dashboard"", ""if_crop_focused"": ""add-health-indicators""}",Generic design + Ignored accessibility + AI purple/pink gradients,MEDIUM
28
+ 27,Construction/Architecture,Hero-Centric + Feature-Rich,Minimalism + 3D & Hyperrealism,Grey (#4A4A4A) + Orange (safety) + Blueprint Blue,Professional + Bold typography,3D model viewer + Timeline animations,"{""must_have"": ""project-portfolio"", ""if_team_collaboration"": ""add-real-time-updates""}",2D-only layouts + Poor image quality + AI purple/pink gradients,HIGH
29
+ 28,Automotive/Car Dealership,Hero-Centric + Feature-Rich,Motion-Driven + 3D & Hyperrealism,Brand colors + Metallic + Dark/Light,Bold + Confident typography,360 product view + Configurator animations,"{""must_have"": ""vehicle-comparison"", ""must_have"": ""financing-calculator""}",Static product pages + Poor UX,HIGH
30
+ 29,Photography Studio,Storytelling-Driven + Hero-Centric,Motion-Driven + Minimalism,Black + White + Minimal accent,Elegant + Minimal typography,Full-bleed gallery + Before/after reveal,"{""must_have"": ""portfolio-showcase"", ""if_booking"": ""add-calendar-system""}",Heavy text + Poor image showcase,HIGH
31
+ 30,Coworking Space,Hero-Centric + Feature-Rich,Vibrant & Block-based + Glassmorphism,Energetic colors + Wood tones + Brand,Modern + Engaging typography,Space tour video + Amenity reveal animations,"{""must_have"": ""virtual-tour"", ""must_have"": ""booking-system""}",Outdated photos + Confusing layout,MEDIUM
32
+ 31,Cleaning Service,Conversion-Optimized + Trust,Soft UI Evolution + Flat Design,Fresh Blue (#00B4D8) + Clean White + Green,Friendly + Clear typography,Before/after gallery + Service package reveal,"{""must_have"": ""price-transparency"", ""must_have"": ""trust-badges""}",Poor before/after imagery + Hidden pricing,HIGH
33
+ 32,Home Services,Conversion-Optimized + Trust,Flat Design + Trust & Authority,Trust Blue + Safety Orange + Grey,Professional + Clear typography,Emergency contact highlight + Service menu animations,"{""must_have"": ""emergency-contact"", ""must_have"": ""certifications-display""}",Hidden contact info + No certifications,HIGH
34
+ 33,Childcare/Daycare,Social Proof-Focused + Trust,Claymorphism + Vibrant & Block-based,Playful pastels + Safe colors + Warm,Friendly + Playful typography,Parent portal animations + Activity gallery reveal,"{""must_have"": ""parent-communication"", ""must_have"": ""safety-certifications""}",Generic design + Hidden safety info,HIGH
35
+ 34,Senior Care/Elderly,Trust & Authority + Accessible,Accessible & Ethical + Soft UI Evolution,Calm Blue + Warm neutrals + Large text,Large + Clear typography (18px+),Large touch targets + Clear navigation,"{""must_have"": ""wcag-aaa"", ""must_have"": ""family-portal""}",Small text + Complex navigation + AI purple/pink gradients,HIGH
36
+ 35,Medical Clinic,Trust & Authority + Conversion,Accessible & Ethical + Minimalism,Medical Blue (#0077B6) + Trust White,Professional + Readable typography,Online booking flow + Doctor profile reveals,"{""must_have"": ""appointment-booking"", ""must_have"": ""insurance-info""}",Outdated interface + Confusing booking + AI purple/pink gradients,HIGH
37
+ 36,Pharmacy/Drug Store,Conversion-Optimized + Trust,Flat Design + Accessible & Ethical,Pharmacy Green + Trust Blue + Clean White,Clear + Functional typography,Prescription upload flow + Refill reminders,"{""must_have"": ""prescription-management"", ""must_have"": ""drug-interaction-warnings""}",Confusing layout + Privacy concerns + AI purple/pink gradients,HIGH
38
+ 37,Dental Practice,Social Proof-Focused + Conversion,Soft UI Evolution + Minimalism,Fresh Blue + White + Smile Yellow,Friendly + Professional typography,Before/after gallery + Patient testimonial carousel,"{""must_have"": ""before-after-gallery"", ""must_have"": ""appointment-system""}",Poor imagery + No testimonials,HIGH
39
+ 38,Veterinary Clinic,Social Proof-Focused + Trust,Claymorphism + Accessible & Ethical,Caring Blue + Pet colors + Warm,Friendly + Welcoming typography,Pet profile management + Service animations,"{""must_have"": ""pet-portal"", ""must_have"": ""emergency-contact""}",Generic design + Hidden services,MEDIUM
40
+ 39,News/Media Platform,Hero-Centric + Feature-Rich,Minimalism + Flat Design,Brand colors + High contrast,Clear + Readable typography,Breaking news badge + Article reveal animations,"{""must_have"": ""mobile-first-reading"", ""must_have"": ""category-navigation""}",Cluttered layout + Slow loading,HIGH
41
+ 40,Legal Services,Trust & Authority + Minimal,Trust & Authority + Minimalism,Navy Blue (#1E3A5F) + Gold + White,Professional + Authoritative typography,Practice area reveal + Attorney profile animations,"{""must_have"": ""case-results"", ""must_have"": ""credential-display""}",Outdated design + Hidden credentials + AI purple/pink gradients,HIGH
42
+ 41,Beauty/Spa/Wellness Service,Hero-Centric + Social Proof,Soft UI Evolution + Neumorphism,Soft pastels (Pink Sage Cream) + Gold accents,Elegant + Calming typography,Soft shadows + Smooth transitions (200-300ms) + Gentle hover,"{""must_have"": ""booking-system"", ""must_have"": ""before-after-gallery"", ""if_luxury"": ""add-gold-accents""}",Bright neon colors + Harsh animations + Dark mode,HIGH
43
+ 42,Service Landing Page,Hero-Centric + Trust & Authority,Minimalism + Social Proof-Focused,Brand primary + Trust colors,Professional + Clear typography,Testimonial carousel + CTA hover (200ms),"{""must_have"": ""social-proof"", ""must_have"": ""clear-cta""}",Complex navigation + Hidden contact info,HIGH
44
+ 43,B2B Service,Feature-Rich Showcase + Trust,Trust & Authority + Minimalism,Professional blue + Neutral grey,Formal + Clear typography,Section transitions + Feature reveals,"{""must_have"": ""case-studies"", ""must_have"": ""roi-messaging""}",Playful design + Hidden credentials + AI purple/pink gradients,HIGH
45
+ 44,Financial Dashboard,Data-Dense Dashboard,Dark Mode (OLED) + Data-Dense,Dark bg + Red/Green alerts + Trust blue,Clear + Readable typography,Real-time number animations + Alert pulse,"{""must_have"": ""real-time-updates"", ""must_have"": ""high-contrast""}",Light mode default + Slow rendering,HIGH
46
+ 45,Analytics Dashboard,Data-Dense + Drill-Down,Data-Dense + Heat Map,Cool→Hot gradients + Neutral grey,Clear + Functional typography,Hover tooltips + Chart zoom + Filter animations,"{""must_have"": ""data-export"", ""if_large_dataset"": ""virtualize-lists""}",Ornate design + No filtering,HIGH
47
+ 46,Productivity Tool,Interactive Demo + Feature-Rich,Flat Design + Micro-interactions,Clear hierarchy + Functional colors,Clean + Efficient typography,Quick actions (150ms) + Task animations,"{""must_have"": ""keyboard-shortcuts"", ""if_collaboration"": ""add-real-time-cursors""}",Complex onboarding + Slow performance,HIGH
48
+ 47,Design System/Component Library,Feature-Rich + Documentation,Minimalism + Accessible & Ethical,Clear hierarchy + Code-like structure,Monospace + Clear typography,Code copy animations + Component previews,"{""must_have"": ""search"", ""must_have"": ""code-examples""}",Poor documentation + No live preview,HIGH
49
+ 48,AI/Chatbot Platform,Interactive Demo + Minimal,AI-Native UI + Minimalism,Neutral + AI Purple (#6366F1),Modern + Clear typography,Streaming text + Typing indicators + Fade-in,"{""must_have"": ""conversational-ui"", ""must_have"": ""context-awareness""}",Heavy chrome + Slow response feedback,HIGH
50
+ 49,NFT/Web3 Platform,Feature-Rich Showcase,Cyberpunk UI + Glassmorphism,Dark + Neon + Gold (#FFD700),Bold + Modern typography,Wallet connect animations + Transaction feedback,"{""must_have"": ""wallet-integration"", ""must_have"": ""gas-fees-display""}",Light mode default + No transaction status,HIGH
51
+ 50,Creator Economy Platform,Social Proof + Feature-Rich,Vibrant & Block-based + Bento Box Grid,Vibrant + Brand colors,Modern + Bold typography,Engagement counter animations + Profile reveals,"{""must_have"": ""creator-profiles"", ""must_have"": ""monetization-display""}",Generic layout + Hidden earnings,MEDIUM
52
+ 51,Sustainability/ESG Platform,Trust & Authority + Data,Organic Biophilic + Minimalism,Green (#228B22) + Earth tones,Clear + Informative typography,Progress indicators + Impact animations,"{""must_have"": ""data-transparency"", ""must_have"": ""certification-badges""}",Greenwashing visuals + No data,HIGH
53
+ 52,Remote Work/Collaboration,Feature-Rich + Real-Time,Soft UI Evolution + Minimalism,Calm Blue + Neutral grey,Clean + Readable typography,Real-time presence indicators + Notification badges,"{""must_have"": ""status-indicators"", ""must_have"": ""video-integration""}",Cluttered interface + No presence,HIGH
54
+ 53,Pet Tech App,Storytelling + Feature-Rich,Claymorphism + Vibrant & Block-based,Playful + Warm colors,Friendly + Playful typography,Pet profile animations + Health tracking charts,"{""must_have"": ""pet-profiles"", ""if_health"": ""add-vet-integration""}",Generic design + No personality,MEDIUM
55
+ 54,Smart Home/IoT Dashboard,Real-Time Monitoring,Glassmorphism + Dark Mode (OLED),Dark + Status indicator colors,Clear + Functional typography,Device status pulse + Quick action animations,"{""must_have"": ""real-time-controls"", ""must_have"": ""energy-monitoring""}",Slow updates + No automation,HIGH
56
+ 55,EV/Charging Ecosystem,Hero-Centric + Feature-Rich,Minimalism + Aurora UI,Electric Blue (#009CD1) + Green,Modern + Clear typography,Range estimation animations + Map interactions,"{""must_have"": ""charging-map"", ""must_have"": ""range-calculator""}",Poor map UX + Hidden costs,HIGH
57
+ 56,Subscription Box Service,Feature-Rich + Conversion,Vibrant & Block-based + Motion-Driven,Brand + Excitement colors,Engaging + Clear typography,Unboxing reveal animations + Product carousel,"{""must_have"": ""personalization-quiz"", ""must_have"": ""subscription-management""}",Confusing pricing + No unboxing preview,HIGH
58
+ 57,Podcast Platform,Storytelling + Feature-Rich,Dark Mode (OLED) + Minimalism,Dark + Audio waveform accents,Modern + Clear typography,Waveform visualizations + Episode transitions,"{""must_have"": ""audio-player-ux"", ""must_have"": ""episode-discovery""}",Poor audio player + Cluttered layout,HIGH
59
+ 58,Dating App,Social Proof + Feature-Rich,Vibrant & Block-based + Motion-Driven,Warm + Romantic (Pink/Red gradients),Modern + Friendly typography,Profile card swipe + Match animations,"{""must_have"": ""profile-cards"", ""must_have"": ""safety-features""}",Generic profiles + No safety,HIGH
60
+ 59,Micro-Credentials/Badges,Trust & Authority + Feature,Minimalism + Flat Design,Trust Blue + Gold (#FFD700),Professional + Clear typography,Badge reveal animations + Progress tracking,"{""must_have"": ""credential-verification"", ""must_have"": ""progress-display""}",No verification + Hidden progress,MEDIUM
61
+ 60,Knowledge Base/Documentation,FAQ + Minimal,Minimalism + Accessible & Ethical,Clean hierarchy + Minimal color,Clear + Readable typography,Search highlight + Smooth scrolling,"{""must_have"": ""search-first"", ""must_have"": ""version-switching""}",Poor navigation + No search,HIGH
62
+ 61,Hyperlocal Services,Conversion + Feature-Rich,Minimalism + Vibrant & Block-based,Location markers + Trust colors,Clear + Functional typography,Map hover + Provider card reveals,"{""must_have"": ""map-integration"", ""must_have"": ""booking-system""}",No map + Hidden reviews,HIGH
63
+ 62,Luxury/Premium Brand,Storytelling + Feature-Rich,Liquid Glass + Glassmorphism,Black + Gold (#FFD700) + White,Elegant + Refined typography,Slow parallax + Premium reveals (400-600ms),"{""must_have"": ""high-quality-imagery"", ""must_have"": ""storytelling""}",Cheap visuals + Fast animations,HIGH
64
+ 63,Fitness/Gym App,Feature-Rich + Data,Vibrant & Block-based + Dark Mode (OLED),Energetic (Orange #FF6B35) + Dark bg,Bold + Motivational typography,Progress ring animations + Achievement unlocks,"{""must_have"": ""progress-tracking"", ""must_have"": ""workout-plans""}",Static design + No gamification,HIGH
65
+ 64,Hotel/Hospitality,Hero-Centric + Social Proof,Liquid Glass + Minimalism,Warm neutrals + Gold (#D4AF37),Elegant + Welcoming typography,Room gallery + Amenity reveals,"{""must_have"": ""room-booking"", ""must_have"": ""virtual-tour""}",Poor photos + Complex booking,HIGH
66
+ 65,Wedding/Event Planning,Storytelling + Social Proof,Soft UI Evolution + Aurora UI,Soft Pink (#FFD6E0) + Gold + Cream,Elegant + Romantic typography,Gallery reveals + Timeline animations,"{""must_have"": ""portfolio-gallery"", ""must_have"": ""planning-tools""}",Generic templates + No portfolio,HIGH
67
+ 66,Insurance Platform,Conversion + Trust,Trust & Authority + Flat Design,Trust Blue (#0066CC) + Green + Neutral,Clear + Professional typography,Quote calculator animations + Policy comparison,"{""must_have"": ""quote-calculator"", ""must_have"": ""policy-comparison""}",Confusing pricing + No trust signals + AI purple/pink gradients,HIGH
68
+ 67,Banking/Traditional Finance,Trust & Authority + Feature,Minimalism + Accessible & Ethical,Navy (#0A1628) + Trust Blue + Gold,Professional + Trustworthy typography,Smooth number animations + Security indicators,"{""must_have"": ""security-first"", ""must_have"": ""accessibility""}",Playful design + Poor security UX + AI purple/pink gradients,HIGH
69
+ 68,Online Course/E-learning,Feature-Rich + Social Proof,Claymorphism + Vibrant & Block-based,Vibrant learning colors + Progress green,Friendly + Engaging typography,Progress bar animations + Certificate reveals,"{""must_have"": ""progress-tracking"", ""must_have"": ""video-player""}",Boring design + No gamification,HIGH
70
+ 69,Non-profit/Charity,Storytelling + Trust,Accessible & Ethical + Organic Biophilic,Cause-related colors + Trust + Warm,Heartfelt + Readable typography,Impact counter animations + Story reveals,"{""must_have"": ""impact-stories"", ""must_have"": ""donation-transparency""}",No impact data + Hidden financials,HIGH
71
+ 70,Florist/Plant Shop,Hero-Centric + Conversion,Organic Biophilic + Vibrant & Block-based,Natural Green + Floral pinks/purples,Elegant + Natural typography,Product reveal + Seasonal transitions,"{""must_have"": ""delivery-scheduling"", ""must_have"": ""care-guides""}",Poor imagery + No seasonal content,MEDIUM
72
+ 71,Bakery/Cafe,Hero-Centric + Conversion,Vibrant & Block-based + Soft UI Evolution,Warm Brown + Cream + Appetizing accents,Warm + Inviting typography,Menu hover + Order animations,"{""must_have"": ""menu-display"", ""must_have"": ""online-ordering""}",Poor food photos + Hidden hours,HIGH
73
+ 72,Coffee Shop,Hero-Centric + Minimal,Minimalism + Organic Biophilic,Coffee Brown (#6F4E37) + Cream + Warm,Cozy + Clean typography,Menu transitions + Loyalty animations,"{""must_have"": ""menu"", ""if_loyalty"": ""add-rewards-system""}",Generic design + No atmosphere,MEDIUM
74
+ 73,Brewery/Winery,Storytelling + Hero-Centric,Motion-Driven + Storytelling-Driven,Deep amber/burgundy + Gold + Craft,Artisanal + Heritage typography,Tasting note reveals + Heritage timeline,"{""must_have"": ""product-showcase"", ""must_have"": ""story-heritage""}",Generic product pages + No story,HIGH
75
+ 74,Airline,Conversion + Feature-Rich,Minimalism + Glassmorphism,Sky Blue + Brand colors + Trust,Clear + Professional typography,Flight search animations + Boarding pass reveals,"{""must_have"": ""flight-search"", ""must_have"": ""mobile-first""}",Complex booking + Poor mobile,HIGH
76
+ 75,Magazine/Blog,Storytelling + Hero-Centric,Swiss Modernism 2.0 + Motion-Driven,Editorial colors + Brand + Clean white,Editorial + Elegant typography,Article transitions + Category reveals,"{""must_have"": ""article-showcase"", ""must_have"": ""newsletter-signup""}",Poor typography + Slow loading,HIGH
77
+ 76,Freelancer Platform,Feature-Rich + Conversion,Flat Design + Minimalism,Professional Blue + Success Green,Clear + Professional typography,Skill match animations + Review reveals,"{""must_have"": ""portfolio-display"", ""must_have"": ""skill-matching""}",Poor profiles + No reviews,HIGH
78
+ 77,Consulting Firm,Trust & Authority + Minimal,Trust & Authority + Minimalism,Navy + Gold + Professional grey,Authoritative + Clear typography,Case study reveals + Team profiles,"{""must_have"": ""case-studies"", ""must_have"": ""thought-leadership""}",Generic content + No credentials + AI purple/pink gradients,HIGH
79
+ 78,Marketing Agency,Storytelling + Feature-Rich,Brutalism + Motion-Driven,Bold brand colors + Creative freedom,Bold + Expressive typography,Portfolio reveals + Results animations,"{""must_have"": ""portfolio"", ""must_have"": ""results-metrics""}",Boring design + Hidden work,HIGH
80
+ 79,Event Management,Hero-Centric + Feature-Rich,Vibrant & Block-based + Motion-Driven,Event theme colors + Excitement accents,Bold + Engaging typography,Countdown timer + Registration flow,"{""must_have"": ""registration"", ""must_have"": ""agenda-display""}",Confusing registration + No countdown,HIGH
81
+ 80,Conference/Webinar Platform,Feature-Rich + Conversion,Glassmorphism + Minimalism,Professional Blue + Video accent,Professional + Clear typography,Live stream integration + Agenda transitions,"{""must_have"": ""registration"", ""must_have"": ""speaker-profiles""}",Poor video UX + No networking,HIGH
82
+ 81,Membership/Community,Social Proof + Conversion,Vibrant & Block-based + Soft UI Evolution,Community brand colors + Engagement,Friendly + Engaging typography,Member counter + Benefit reveals,"{""must_have"": ""member-benefits"", ""must_have"": ""pricing-tiers""}",Hidden benefits + No community proof,HIGH
83
+ 82,Newsletter Platform,Minimal + Conversion,Minimalism + Flat Design,Brand primary + Clean white + CTA,Clean + Readable typography,Subscribe form + Archive reveals,"{""must_have"": ""subscribe-form"", ""must_have"": ""sample-content""}",Complex signup + No preview,MEDIUM
84
+ 83,Digital Products/Downloads,Feature-Rich + Conversion,Vibrant & Block-based + Motion-Driven,Product colors + Brand + Success green,Modern + Clear typography,Product preview + Instant delivery animations,"{""must_have"": ""product-preview"", ""must_have"": ""instant-delivery""}",No preview + Slow delivery,HIGH
85
+ 84,Church/Religious Organization,Hero-Centric + Social Proof,Accessible & Ethical + Soft UI Evolution,Warm Gold + Deep Purple/Blue + White,Welcoming + Clear typography,Service time highlights + Event calendar,"{""must_have"": ""service-times"", ""must_have"": ""community-events""}",Outdated design + Hidden info,MEDIUM
86
+ 85,Sports Team/Club,Hero-Centric + Feature-Rich,Vibrant & Block-based + Motion-Driven,Team colors + Energetic accents,Bold + Impactful typography,Score animations + Schedule reveals,"{""must_have"": ""schedule"", ""must_have"": ""roster""}",Static content + Poor fan engagement,HIGH
87
+ 86,Museum/Gallery,Storytelling + Feature-Rich,Minimalism + Motion-Driven,Art-appropriate neutrals + Exhibition accents,Elegant + Minimal typography,Virtual tour + Collection reveals,"{""must_have"": ""virtual-tour"", ""must_have"": ""exhibition-info""}",Cluttered layout + No online access,HIGH
88
+ 87,Theater/Cinema,Hero-Centric + Conversion,Dark Mode (OLED) + Motion-Driven,Dark + Spotlight accents + Gold,Dramatic + Bold typography,Seat selection + Trailer reveals,"{""must_have"": ""showtimes"", ""must_have"": ""seat-selection""}",Poor booking UX + No trailers,HIGH
89
+ 88,Language Learning App,Feature-Rich + Social Proof,Claymorphism + Vibrant & Block-based,Playful colors + Progress indicators,Friendly + Clear typography,Progress animations + Achievement unlocks,"{""must_have"": ""progress-tracking"", ""must_have"": ""gamification""}",Boring design + No motivation,HIGH
90
+ 89,Coding Bootcamp,Feature-Rich + Social Proof,Dark Mode (OLED) + Minimalism,Code editor colors + Brand + Success,Technical + Clear typography,Terminal animations + Career outcome reveals,"{""must_have"": ""curriculum"", ""must_have"": ""career-outcomes""}",Light mode only + Hidden results,HIGH
91
+ 90,Cybersecurity Platform,Trust & Authority + Real-Time,Cyberpunk UI + Dark Mode (OLED),Matrix Green (#00FF00) + Deep Black,Technical + Clear typography,Threat visualization + Alert animations,"{""must_have"": ""real-time-monitoring"", ""must_have"": ""threat-display""}",Light mode + Poor data viz,HIGH
92
+ 91,Developer Tool/IDE,Minimal + Documentation,Dark Mode (OLED) + Minimalism,Dark syntax theme + Blue focus,Monospace + Functional typography,Syntax highlighting + Command palette,"{""must_have"": ""keyboard-shortcuts"", ""must_have"": ""documentation""}",Light mode default + Slow performance,HIGH
93
+ 92,Biotech/Life Sciences,Storytelling + Data,Glassmorphism + Clean Science,Sterile White + DNA Blue + Life Green,Scientific + Clear typography,Data visualization + Research reveals,"{""must_have"": ""data-accuracy"", ""must_have"": ""clean-aesthetic""}",Cluttered data + Poor credibility,HIGH
94
+ 93,Space Tech/Aerospace,Immersive + Feature-Rich,Holographic/HUD + Dark Mode,Deep Space Black + Star White + Metallic,Futuristic + Precise typography,Telemetry animations + 3D renders,"{""must_have"": ""high-tech-feel"", ""must_have"": ""precision-data""}",Generic design + No immersion,HIGH
95
+ 94,Architecture/Interior,Portfolio + Hero-Centric,Exaggerated Minimalism + High Imagery,Monochrome + Gold Accent + High Imagery,Architectural + Elegant typography,Project gallery + Blueprint reveals,"{""must_have"": ""high-res-images"", ""must_have"": ""project-portfolio""}",Poor imagery + Cluttered layout,HIGH
96
+ 95,Quantum Computing,Immersive + Interactive,Holographic/HUD + Dark Mode,Quantum Blue (#00FFFF) + Deep Black,Futuristic + Scientific typography,Probability visualizations + Qubit state animations,"{""must_have"": ""complexity-visualization"", ""must_have"": ""scientific-credibility""}",Generic tech design + No viz,HIGH
97
+ 96,Biohacking/Longevity App,Data-Dense + Storytelling,Biomimetic/Organic 2.0 + Minimalism,Cellular Pink/Red + DNA Blue + White,Scientific + Clear typography,Biological data viz + Progress animations,"{""must_have"": ""data-privacy"", ""must_have"": ""scientific-credibility""}",Generic health app + No privacy,HIGH
98
+ 97,Autonomous Drone Fleet,Real-Time + Feature-Rich,HUD/Sci-Fi FUI + Real-Time,Tactical Green + Alert Red + Map Dark,Technical + Functional typography,Telemetry animations + 3D spatial awareness,"{""must_have"": ""real-time-telemetry"", ""must_have"": ""safety-alerts""}",Slow updates + Poor spatial viz,HIGH
99
+ 98,Generative Art Platform,Showcase + Feature-Rich,Minimalism + Gen Z Chaos,Neutral (#F5F5F5) + User Content,Minimal + Content-focused typography,Gallery masonry + Minting animations,"{""must_have"": ""fast-loading"", ""must_have"": ""creator-attribution""}",Heavy chrome + Slow loading,HIGH
100
+ 99,Spatial Computing OS,Immersive + Interactive,Spatial UI (VisionOS) + Glassmorphism,Frosted Glass + System Colors + Depth,Spatial + Readable typography,Depth hierarchy + Gaze interactions,"{""must_have"": ""depth-hierarchy"", ""must_have"": ""environment-awareness""}",2D design + No spatial depth,HIGH
101
+ 100,Sustainable Energy/Climate,Data + Trust,Organic Biophilic + E-Ink/Paper,Earth Green + Sky Blue + Solar Yellow,Clear + Informative typography,Impact viz + Progress animations,"{""must_have"": ""data-transparency"", ""must_have"": ""impact-visualization""}",Greenwashing + No real data,HIGH
@@ -1,100 +1,100 @@
1
- No,Category,Issue,Platform,Description,Do,Don't,Code Example Good,Code Example Bad,Severity
2
- 1,Navigation,Smooth Scroll,Web,Anchor links should scroll smoothly to target section,Use scroll-behavior: smooth on html element,Jump directly without transition,html { scroll-behavior: smooth; },<a href='#section'> without CSS,High
3
- 2,Navigation,Sticky Navigation,Web,Fixed nav should not obscure content,Add padding-top to body equal to nav height,Let nav overlap first section content,pt-20 (if nav is h-20),No padding compensation,Medium
4
- 3,Navigation,Active State,All,Current page/section should be visually indicated,Highlight active nav item with color/underline,No visual feedback on current location,text-primary border-b-2,All links same style,Medium
5
- 4,Navigation,Back Button,Mobile,Users expect back to work predictably,Preserve navigation history properly,Break browser/app back button behavior,history.pushState(),location.replace(),High
6
- 5,Navigation,Deep Linking,All,URLs should reflect current state for sharing,Update URL on state/view changes,Static URLs for dynamic content,Use query params or hash,Single URL for all states,Medium
7
- 6,Navigation,Breadcrumbs,Web,Show user location in site hierarchy,Use for sites with 3+ levels of depth,Use for flat single-level sites,Home > Category > Product,Only on deep nested pages,Low
8
- 7,Animation,Excessive Motion,All,Too many animations cause distraction and motion sickness,Animate 1-2 key elements per view maximum,Animate everything that moves,Single hero animation,animate-bounce on 5+ elements,High
9
- 8,Animation,Duration Timing,All,Animations should feel responsive not sluggish,Use 150-300ms for micro-interactions,Use animations longer than 500ms for UI,transition-all duration-200,duration-1000,Medium
10
- 9,Animation,Reduced Motion,All,Respect user's motion preferences,Check prefers-reduced-motion media query,Ignore accessibility motion settings,@media (prefers-reduced-motion: reduce),No motion query check,High
11
- 10,Animation,Loading States,All,Show feedback during async operations,Use skeleton screens or spinners,Leave UI frozen with no feedback,animate-pulse skeleton,Blank screen while loading,High
12
- 11,Animation,Hover vs Tap,All,Hover effects don't work on touch devices,Use click/tap for primary interactions,Rely only on hover for important actions,onClick handler,onMouseEnter only,High
13
- 12,Animation,Continuous Animation,All,Infinite animations are distracting,Use for loading indicators only,Use for decorative elements,animate-spin on loader,animate-bounce on icons,Medium
14
- 13,Animation,Transform Performance,Web,Some CSS properties trigger expensive repaints,Use transform and opacity for animations,Animate width/height/top/left properties,transform: translateY(),top: 10px animation,Medium
15
- 14,Animation,Easing Functions,All,Linear motion feels robotic,Use ease-out for entering ease-in for exiting,Use linear for UI transitions,ease-out,linear,Low
16
- 15,Layout,Z-Index Management,Web,Stacking context conflicts cause hidden elements,Define z-index scale system (10 20 30 50),Use arbitrary large z-index values,z-10 z-20 z-50,z-[9999],High
17
- 16,Layout,Overflow Hidden,Web,Hidden overflow can clip important content,Test all content fits within containers,Blindly apply overflow-hidden,overflow-auto with scroll,overflow-hidden truncating content,Medium
18
- 17,Layout,Fixed Positioning,Web,Fixed elements can overlap or be inaccessible,Account for safe areas and other fixed elements,Stack multiple fixed elements carelessly,Fixed nav + fixed bottom with gap,Multiple overlapping fixed elements,Medium
19
- 18,Layout,Stacking Context,Web,New stacking contexts reset z-index,Understand what creates new stacking context,Expect z-index to work across contexts,Parent with z-index isolates children,z-index: 9999 not working,Medium
20
- 19,Layout,Content Jumping,Web,Layout shift when content loads is jarring,Reserve space for async content,Let images/content push layout around,aspect-ratio or fixed height,No dimensions on images,High
21
- 20,Layout,Viewport Units,Web,100vh can be problematic on mobile browsers,Use dvh or account for mobile browser chrome,Use 100vh for full-screen mobile layouts,min-h-dvh or min-h-screen,h-screen on mobile,Medium
22
- 21,Layout,Container Width,Web,Content too wide is hard to read,Limit max-width for text content (65-75ch),Let text span full viewport width,max-w-prose or max-w-3xl,Full width paragraphs,Medium
23
- 22,Touch,Touch Target Size,Mobile,Small buttons are hard to tap accurately,Minimum 44x44px touch targets,Tiny clickable areas,min-h-[44px] min-w-[44px],w-6 h-6 buttons,High
24
- 23,Touch,Touch Spacing,Mobile,Adjacent touch targets need adequate spacing,Minimum 8px gap between touch targets,Tightly packed clickable elements,gap-2 between buttons,gap-0 or gap-1,Medium
25
- 24,Touch,Gesture Conflicts,Mobile,Custom gestures can conflict with system,Avoid horizontal swipe on main content,Override system gestures,Vertical scroll primary,Horizontal swipe carousel only,Medium
26
- 25,Touch,Tap Delay,Mobile,300ms tap delay feels laggy,Use touch-action CSS or fastclick,Default mobile tap handling,touch-action: manipulation,No touch optimization,Medium
27
- 26,Touch,Pull to Refresh,Mobile,Accidental refresh is frustrating,Disable where not needed,Enable by default everywhere,overscroll-behavior: contain,Default overscroll,Low
28
- 27,Touch,Haptic Feedback,Mobile,Tactile feedback improves interaction feel,Use for confirmations and important actions,Overuse vibration feedback,navigator.vibrate(10),Vibrate on every tap,Low
29
- 28,Interaction,Focus States,All,Keyboard users need visible focus indicators,Use visible focus rings on interactive elements,Remove focus outline without replacement,focus:ring-2 focus:ring-blue-500,outline-none without alternative,High
30
- 29,Interaction,Hover States,Web,Visual feedback on interactive elements,Change cursor and add subtle visual change,No hover feedback on clickable elements,hover:bg-gray-100 cursor-pointer,No hover style,Medium
31
- 30,Interaction,Active States,All,Show immediate feedback on press/click,Add pressed/active state visual change,No feedback during interaction,active:scale-95,No active state,Medium
32
- 31,Interaction,Disabled States,All,Clearly indicate non-interactive elements,Reduce opacity and change cursor,Confuse disabled with normal state,opacity-50 cursor-not-allowed,Same style as enabled,Medium
33
- 32,Interaction,Loading Buttons,All,Prevent double submission during async actions,Disable button and show loading state,Allow multiple clicks during processing,disabled={loading} spinner,Button clickable while loading,High
34
- 33,Interaction,Error Feedback,All,Users need to know when something fails,Show clear error messages near problem,Silent failures with no feedback,Red border + error message,No indication of error,High
35
- 34,Interaction,Success Feedback,All,Confirm successful actions to users,Show success message or visual change,No confirmation of completed action,Toast notification or checkmark,Action completes silently,Medium
36
- 35,Interaction,Confirmation Dialogs,All,Prevent accidental destructive actions,Confirm before delete/irreversible actions,Delete without confirmation,Are you sure modal,Direct delete on click,High
37
- 36,Accessibility,Color Contrast,All,Text must be readable against background,Minimum 4.5:1 ratio for normal text,Low contrast text,#333 on white (7:1),#999 on white (2.8:1),High
38
- 37,Accessibility,Color Only,All,Don't convey information by color alone,Use icons/text in addition to color,Red/green only for error/success,Red text + error icon,Red border only for error,High
39
- 38,Accessibility,Alt Text,All,Images need text alternatives,Descriptive alt text for meaningful images,Empty or missing alt attributes,alt='Dog playing in park',alt='' for content images,High
40
- 39,Accessibility,Heading Hierarchy,Web,Screen readers use headings for navigation,Use sequential heading levels h1-h6,Skip heading levels or misuse for styling,h1 then h2 then h3,h1 then h4,Medium
41
- 40,Accessibility,ARIA Labels,All,Interactive elements need accessible names,Add aria-label for icon-only buttons,Icon buttons without labels,aria-label='Close menu',<button><Icon/></button>,High
42
- 41,Accessibility,Keyboard Navigation,Web,All functionality accessible via keyboard,Tab order matches visual order,Keyboard traps or illogical tab order,tabIndex for custom order,Unreachable elements,High
43
- 42,Accessibility,Screen Reader,All,Content should make sense when read aloud,Use semantic HTML and ARIA properly,Div soup with no semantics,<nav> <main> <article>,<div> for everything,Medium
44
- 43,Accessibility,Form Labels,All,Inputs must have associated labels,Use label with for attribute or wrap input,Placeholder-only inputs,<label for='email'>,placeholder='Email' only,High
45
- 44,Accessibility,Error Messages,All,Error messages must be announced,Use aria-live or role=alert for errors,Visual-only error indication,role='alert',Red border only,High
46
- 45,Accessibility,Skip Links,Web,Allow keyboard users to skip navigation,Provide skip to main content link,No skip link on nav-heavy pages,Skip to main content link,100 tabs to reach content,Medium
47
- 46,Performance,Image Optimization,All,Large images slow page load,Use appropriate size and format (WebP),Unoptimized full-size images,srcset with multiple sizes,4000px image for 400px display,High
48
- 47,Performance,Lazy Loading,All,Load content as needed,Lazy load below-fold images and content,Load everything upfront,loading='lazy',All images eager load,Medium
49
- 48,Performance,Code Splitting,Web,Large bundles slow initial load,Split code by route/feature,Single large bundle,dynamic import(),All code in main bundle,Medium
50
- 49,Performance,Caching,Web,Repeat visits should be fast,Set appropriate cache headers,No caching strategy,Cache-Control headers,Every request hits server,Medium
51
- 50,Performance,Font Loading,Web,Web fonts can block rendering,Use font-display swap or optional,Invisible text during font load,font-display: swap,FOIT (Flash of Invisible Text),Medium
52
- 51,Performance,Third Party Scripts,Web,External scripts can block rendering,Load non-critical scripts async/defer,Synchronous third-party scripts,async or defer attribute,<script src='...'> in head,Medium
53
- 52,Performance,Bundle Size,Web,Large JavaScript slows interaction,Monitor and minimize bundle size,Ignore bundle size growth,Bundle analyzer,No size monitoring,Medium
54
- 53,Performance,Render Blocking,Web,CSS/JS can block first paint,Inline critical CSS defer non-critical,Large blocking CSS files,Critical CSS inline,All CSS in head,Medium
55
- 54,Forms,Input Labels,All,Every input needs a visible label,Always show label above or beside input,Placeholder as only label,<label>Email</label><input>,placeholder='Email' only,High
56
- 55,Forms,Error Placement,All,Errors should appear near the problem,Show error below related input,Single error message at top of form,Error under each field,All errors at form top,Medium
57
- 56,Forms,Inline Validation,All,Validate as user types or on blur,Validate on blur for most fields,Validate only on submit,onBlur validation,Submit-only validation,Medium
58
- 57,Forms,Input Types,All,Use appropriate input types,Use email tel number url etc,Text input for everything,type='email',type='text' for email,Medium
59
- 58,Forms,Autofill Support,Web,Help browsers autofill correctly,Use autocomplete attribute properly,Block or ignore autofill,autocomplete='email',autocomplete='off' everywhere,Medium
60
- 59,Forms,Required Indicators,All,Mark required fields clearly,Use asterisk or (required) text,No indication of required fields,* required indicator,Guess which are required,Medium
61
- 60,Forms,Password Visibility,All,Let users see password while typing,Toggle to show/hide password,No visibility toggle,Show/hide password button,Password always hidden,Medium
62
- 61,Forms,Submit Feedback,All,Confirm form submission status,Show loading then success/error state,No feedback after submit,Loading -> Success message,Button click with no response,High
63
- 62,Forms,Input Affordance,All,Inputs should look interactive,Use distinct input styling,Inputs that look like plain text,Border/background on inputs,Borderless inputs,Medium
64
- 63,Forms,Mobile Keyboards,Mobile,Show appropriate keyboard for input type,Use inputmode attribute,Default keyboard for all inputs,inputmode='numeric',Text keyboard for numbers,Medium
65
- 64,Responsive,Mobile First,Web,Design for mobile then enhance for larger,Start with mobile styles then add breakpoints,Desktop-first causing mobile issues,Default mobile + md: lg: xl:,Desktop default + max-width queries,Medium
66
- 65,Responsive,Breakpoint Testing,Web,Test at all common screen sizes,Test at 320 375 414 768 1024 1440,Only test on your device,Multiple device testing,Single device development,Medium
67
- 66,Responsive,Touch Friendly,Web,Mobile layouts need touch-sized targets,Increase touch targets on mobile,Same tiny buttons on mobile,Larger buttons on mobile,Desktop-sized targets on mobile,High
68
- 67,Responsive,Readable Font Size,All,Text must be readable on all devices,Minimum 16px body text on mobile,Tiny text on mobile,text-base or larger,text-xs for body text,High
69
- 68,Responsive,Viewport Meta,Web,Set viewport for mobile devices,Use width=device-width initial-scale=1,Missing or incorrect viewport,<meta name='viewport'...>,No viewport meta tag,High
70
- 69,Responsive,Horizontal Scroll,Web,Avoid horizontal scrolling,Ensure content fits viewport width,Content wider than viewport,max-w-full overflow-x-hidden,Horizontal scrollbar on mobile,High
71
- 70,Responsive,Image Scaling,Web,Images should scale with container,Use max-width: 100% on images,Fixed width images overflow,max-w-full h-auto,width='800' fixed,Medium
72
- 71,Responsive,Table Handling,Web,Tables can overflow on mobile,Use horizontal scroll or card layout,Wide tables breaking layout,overflow-x-auto wrapper,Table overflows viewport,Medium
73
- 72,Typography,Line Height,All,Adequate line height improves readability,Use 1.5-1.75 for body text,Cramped or excessive line height,leading-relaxed (1.625),leading-none (1),Medium
74
- 73,Typography,Line Length,Web,Long lines are hard to read,Limit to 65-75 characters per line,Full-width text on large screens,max-w-prose,Full viewport width text,Medium
75
- 74,Typography,Font Size Scale,All,Consistent type hierarchy aids scanning,Use consistent modular scale,Random font sizes,Type scale (12 14 16 18 24 32),Arbitrary sizes,Medium
76
- 75,Typography,Font Loading,Web,Fonts should load without layout shift,Reserve space with fallback font,Layout shift when fonts load,font-display: swap + similar fallback,No fallback font,Medium
77
- 76,Typography,Contrast Readability,All,Body text needs good contrast,Use darker text on light backgrounds,Gray text on gray background,text-gray-900 on white,text-gray-400 on gray-100,High
78
- 77,Typography,Heading Clarity,All,Headings should stand out from body,Clear size/weight difference,Headings similar to body text,Bold + larger size,Same size as body,Medium
79
- 78,Feedback,Loading Indicators,All,Show system status during waits,Show spinner/skeleton for operations > 300ms,No feedback during loading,Skeleton or spinner,Frozen UI,High
80
- 79,Feedback,Empty States,All,Guide users when no content exists,Show helpful message and action,Blank empty screens,No items yet. Create one!,Empty white space,Medium
81
- 80,Feedback,Error Recovery,All,Help users recover from errors,Provide clear next steps,Error without recovery path,Try again button + help link,Error message only,Medium
82
- 81,Feedback,Progress Indicators,All,Show progress for multi-step processes,Step indicators or progress bar,No indication of progress,Step 2 of 4 indicator,No step information,Medium
83
- 82,Feedback,Toast Notifications,All,Transient messages for non-critical info,Auto-dismiss after 3-5 seconds,Toasts that never disappear,Auto-dismiss toast,Persistent toast,Medium
84
- 83,Feedback,Confirmation Messages,All,Confirm successful actions,Brief success message,Silent success,Saved successfully toast,No confirmation,Medium
85
- 84,Content,Truncation,All,Handle long content gracefully,Truncate with ellipsis and expand option,Overflow or broken layout,line-clamp-2 with expand,Overflow or cut off,Medium
86
- 85,Content,Date Formatting,All,Use locale-appropriate date formats,Use relative or locale-aware dates,Ambiguous date formats,2 hours ago or locale format,01/02/03,Low
87
- 86,Content,Number Formatting,All,Format large numbers for readability,Use thousand separators or abbreviations,Long unformatted numbers,"1.2K or 1,234",1234567,Low
88
- 87,Content,Placeholder Content,All,Show realistic placeholders during dev,Use realistic sample data,Lorem ipsum everywhere,Real sample content,Lorem ipsum,Low
89
- 88,Onboarding,User Freedom,All,Users should be able to skip tutorials,Provide Skip and Back buttons,Force linear unskippable tour,Skip Tutorial button,Locked overlay until finished,Medium
90
- 89,Search,Autocomplete,Web,Help users find results faster,Show predictions as user types,Require full type and enter,Debounced fetch + dropdown,No suggestions,Medium
91
- 90,Search,No Results,Web,Dead ends frustrate users,Show 'No results' with suggestions,Blank screen or '0 results',Try searching for X instead,No results found.,Medium
92
- 91,Data Entry,Bulk Actions,Web,Editing one by one is tedious,Allow multi-select and bulk edit,Single row actions only,Checkbox column + Action bar,Repeated actions per row,Low
93
- 92,AI Interaction,Disclaimer,All,Users need to know they talk to AI,Clearly label AI generated content,Present AI as human,AI Assistant label,Fake human name without label,High
94
- 93,AI Interaction,Streaming,All,Waiting for full text is slow,Stream text response token by token,Show loading spinner for 10s+,Typewriter effect,Spinner until 100% complete,Medium
95
- 94,Spatial UI,Gaze Hover,VisionOS,Elements should respond to eye tracking before pinch,Scale/highlight element on look,Static element until pinch,hoverEffect(),onTap only,High
96
- 95,Spatial UI,Depth Layering,VisionOS,UI needs Z-depth to separate content from environment,Use glass material and z-offset,Flat opaque panels blocking view,.glassBackgroundEffect(),bg-white,Medium
97
- 96,Sustainability,Auto-Play Video,Web,Video consumes massive data and energy,Click-to-play or pause when off-screen,Auto-play high-res video loops,playsInline muted preload='none',autoplay loop,Medium
98
- 97,Sustainability,Asset Weight,Web,Heavy 3D/Image assets increase carbon footprint,Compress and lazy load 3D models,Load 50MB textures,Draco compression,Raw .obj files,Medium
99
- 98,AI Interaction,Feedback Loop,All,AI needs user feedback to improve,Thumps up/down or 'Regenerate',Static output only,Feedback component,Read-only text,Low
1
+ No,Category,Issue,Platform,Description,Do,Don't,Code Example Good,Code Example Bad,Severity
2
+ 1,Navigation,Smooth Scroll,Web,Anchor links should scroll smoothly to target section,Use scroll-behavior: smooth on html element,Jump directly without transition,html { scroll-behavior: smooth; },<a href='#section'> without CSS,High
3
+ 2,Navigation,Sticky Navigation,Web,Fixed nav should not obscure content,Add padding-top to body equal to nav height,Let nav overlap first section content,pt-20 (if nav is h-20),No padding compensation,Medium
4
+ 3,Navigation,Active State,All,Current page/section should be visually indicated,Highlight active nav item with color/underline,No visual feedback on current location,text-primary border-b-2,All links same style,Medium
5
+ 4,Navigation,Back Button,Mobile,Users expect back to work predictably,Preserve navigation history properly,Break browser/app back button behavior,history.pushState(),location.replace(),High
6
+ 5,Navigation,Deep Linking,All,URLs should reflect current state for sharing,Update URL on state/view changes,Static URLs for dynamic content,Use query params or hash,Single URL for all states,Medium
7
+ 6,Navigation,Breadcrumbs,Web,Show user location in site hierarchy,Use for sites with 3+ levels of depth,Use for flat single-level sites,Home > Category > Product,Only on deep nested pages,Low
8
+ 7,Animation,Excessive Motion,All,Too many animations cause distraction and motion sickness,Animate 1-2 key elements per view maximum,Animate everything that moves,Single hero animation,animate-bounce on 5+ elements,High
9
+ 8,Animation,Duration Timing,All,Animations should feel responsive not sluggish,Use 150-300ms for micro-interactions,Use animations longer than 500ms for UI,transition-all duration-200,duration-1000,Medium
10
+ 9,Animation,Reduced Motion,All,Respect user's motion preferences,Check prefers-reduced-motion media query,Ignore accessibility motion settings,@media (prefers-reduced-motion: reduce),No motion query check,High
11
+ 10,Animation,Loading States,All,Show feedback during async operations,Use skeleton screens or spinners,Leave UI frozen with no feedback,animate-pulse skeleton,Blank screen while loading,High
12
+ 11,Animation,Hover vs Tap,All,Hover effects don't work on touch devices,Use click/tap for primary interactions,Rely only on hover for important actions,onClick handler,onMouseEnter only,High
13
+ 12,Animation,Continuous Animation,All,Infinite animations are distracting,Use for loading indicators only,Use for decorative elements,animate-spin on loader,animate-bounce on icons,Medium
14
+ 13,Animation,Transform Performance,Web,Some CSS properties trigger expensive repaints,Use transform and opacity for animations,Animate width/height/top/left properties,transform: translateY(),top: 10px animation,Medium
15
+ 14,Animation,Easing Functions,All,Linear motion feels robotic,Use ease-out for entering ease-in for exiting,Use linear for UI transitions,ease-out,linear,Low
16
+ 15,Layout,Z-Index Management,Web,Stacking context conflicts cause hidden elements,Define z-index scale system (10 20 30 50),Use arbitrary large z-index values,z-10 z-20 z-50,z-[9999],High
17
+ 16,Layout,Overflow Hidden,Web,Hidden overflow can clip important content,Test all content fits within containers,Blindly apply overflow-hidden,overflow-auto with scroll,overflow-hidden truncating content,Medium
18
+ 17,Layout,Fixed Positioning,Web,Fixed elements can overlap or be inaccessible,Account for safe areas and other fixed elements,Stack multiple fixed elements carelessly,Fixed nav + fixed bottom with gap,Multiple overlapping fixed elements,Medium
19
+ 18,Layout,Stacking Context,Web,New stacking contexts reset z-index,Understand what creates new stacking context,Expect z-index to work across contexts,Parent with z-index isolates children,z-index: 9999 not working,Medium
20
+ 19,Layout,Content Jumping,Web,Layout shift when content loads is jarring,Reserve space for async content,Let images/content push layout around,aspect-ratio or fixed height,No dimensions on images,High
21
+ 20,Layout,Viewport Units,Web,100vh can be problematic on mobile browsers,Use dvh or account for mobile browser chrome,Use 100vh for full-screen mobile layouts,min-h-dvh or min-h-screen,h-screen on mobile,Medium
22
+ 21,Layout,Container Width,Web,Content too wide is hard to read,Limit max-width for text content (65-75ch),Let text span full viewport width,max-w-prose or max-w-3xl,Full width paragraphs,Medium
23
+ 22,Touch,Touch Target Size,Mobile,Small buttons are hard to tap accurately,Minimum 44x44px touch targets,Tiny clickable areas,min-h-[44px] min-w-[44px],w-6 h-6 buttons,High
24
+ 23,Touch,Touch Spacing,Mobile,Adjacent touch targets need adequate spacing,Minimum 8px gap between touch targets,Tightly packed clickable elements,gap-2 between buttons,gap-0 or gap-1,Medium
25
+ 24,Touch,Gesture Conflicts,Mobile,Custom gestures can conflict with system,Avoid horizontal swipe on main content,Override system gestures,Vertical scroll primary,Horizontal swipe carousel only,Medium
26
+ 25,Touch,Tap Delay,Mobile,300ms tap delay feels laggy,Use touch-action CSS or fastclick,Default mobile tap handling,touch-action: manipulation,No touch optimization,Medium
27
+ 26,Touch,Pull to Refresh,Mobile,Accidental refresh is frustrating,Disable where not needed,Enable by default everywhere,overscroll-behavior: contain,Default overscroll,Low
28
+ 27,Touch,Haptic Feedback,Mobile,Tactile feedback improves interaction feel,Use for confirmations and important actions,Overuse vibration feedback,navigator.vibrate(10),Vibrate on every tap,Low
29
+ 28,Interaction,Focus States,All,Keyboard users need visible focus indicators,Use visible focus rings on interactive elements,Remove focus outline without replacement,focus:ring-2 focus:ring-blue-500,outline-none without alternative,High
30
+ 29,Interaction,Hover States,Web,Visual feedback on interactive elements,Change cursor and add subtle visual change,No hover feedback on clickable elements,hover:bg-gray-100 cursor-pointer,No hover style,Medium
31
+ 30,Interaction,Active States,All,Show immediate feedback on press/click,Add pressed/active state visual change,No feedback during interaction,active:scale-95,No active state,Medium
32
+ 31,Interaction,Disabled States,All,Clearly indicate non-interactive elements,Reduce opacity and change cursor,Confuse disabled with normal state,opacity-50 cursor-not-allowed,Same style as enabled,Medium
33
+ 32,Interaction,Loading Buttons,All,Prevent double submission during async actions,Disable button and show loading state,Allow multiple clicks during processing,disabled={loading} spinner,Button clickable while loading,High
34
+ 33,Interaction,Error Feedback,All,Users need to know when something fails,Show clear error messages near problem,Silent failures with no feedback,Red border + error message,No indication of error,High
35
+ 34,Interaction,Success Feedback,All,Confirm successful actions to users,Show success message or visual change,No confirmation of completed action,Toast notification or checkmark,Action completes silently,Medium
36
+ 35,Interaction,Confirmation Dialogs,All,Prevent accidental destructive actions,Confirm before delete/irreversible actions,Delete without confirmation,Are you sure modal,Direct delete on click,High
37
+ 36,Accessibility,Color Contrast,All,Text must be readable against background,Minimum 4.5:1 ratio for normal text,Low contrast text,#333 on white (7:1),#999 on white (2.8:1),High
38
+ 37,Accessibility,Color Only,All,Don't convey information by color alone,Use icons/text in addition to color,Red/green only for error/success,Red text + error icon,Red border only for error,High
39
+ 38,Accessibility,Alt Text,All,Images need text alternatives,Descriptive alt text for meaningful images,Empty or missing alt attributes,alt='Dog playing in park',alt='' for content images,High
40
+ 39,Accessibility,Heading Hierarchy,Web,Screen readers use headings for navigation,Use sequential heading levels h1-h6,Skip heading levels or misuse for styling,h1 then h2 then h3,h1 then h4,Medium
41
+ 40,Accessibility,ARIA Labels,All,Interactive elements need accessible names,Add aria-label for icon-only buttons,Icon buttons without labels,aria-label='Close menu',<button><Icon/></button>,High
42
+ 41,Accessibility,Keyboard Navigation,Web,All functionality accessible via keyboard,Tab order matches visual order,Keyboard traps or illogical tab order,tabIndex for custom order,Unreachable elements,High
43
+ 42,Accessibility,Screen Reader,All,Content should make sense when read aloud,Use semantic HTML and ARIA properly,Div soup with no semantics,<nav> <main> <article>,<div> for everything,Medium
44
+ 43,Accessibility,Form Labels,All,Inputs must have associated labels,Use label with for attribute or wrap input,Placeholder-only inputs,<label for='email'>,placeholder='Email' only,High
45
+ 44,Accessibility,Error Messages,All,Error messages must be announced,Use aria-live or role=alert for errors,Visual-only error indication,role='alert',Red border only,High
46
+ 45,Accessibility,Skip Links,Web,Allow keyboard users to skip navigation,Provide skip to main content link,No skip link on nav-heavy pages,Skip to main content link,100 tabs to reach content,Medium
47
+ 46,Performance,Image Optimization,All,Large images slow page load,Use appropriate size and format (WebP),Unoptimized full-size images,srcset with multiple sizes,4000px image for 400px display,High
48
+ 47,Performance,Lazy Loading,All,Load content as needed,Lazy load below-fold images and content,Load everything upfront,loading='lazy',All images eager load,Medium
49
+ 48,Performance,Code Splitting,Web,Large bundles slow initial load,Split code by route/feature,Single large bundle,dynamic import(),All code in main bundle,Medium
50
+ 49,Performance,Caching,Web,Repeat visits should be fast,Set appropriate cache headers,No caching strategy,Cache-Control headers,Every request hits server,Medium
51
+ 50,Performance,Font Loading,Web,Web fonts can block rendering,Use font-display swap or optional,Invisible text during font load,font-display: swap,FOIT (Flash of Invisible Text),Medium
52
+ 51,Performance,Third Party Scripts,Web,External scripts can block rendering,Load non-critical scripts async/defer,Synchronous third-party scripts,async or defer attribute,<script src='...'> in head,Medium
53
+ 52,Performance,Bundle Size,Web,Large JavaScript slows interaction,Monitor and minimize bundle size,Ignore bundle size growth,Bundle analyzer,No size monitoring,Medium
54
+ 53,Performance,Render Blocking,Web,CSS/JS can block first paint,Inline critical CSS defer non-critical,Large blocking CSS files,Critical CSS inline,All CSS in head,Medium
55
+ 54,Forms,Input Labels,All,Every input needs a visible label,Always show label above or beside input,Placeholder as only label,<label>Email</label><input>,placeholder='Email' only,High
56
+ 55,Forms,Error Placement,All,Errors should appear near the problem,Show error below related input,Single error message at top of form,Error under each field,All errors at form top,Medium
57
+ 56,Forms,Inline Validation,All,Validate as user types or on blur,Validate on blur for most fields,Validate only on submit,onBlur validation,Submit-only validation,Medium
58
+ 57,Forms,Input Types,All,Use appropriate input types,Use email tel number url etc,Text input for everything,type='email',type='text' for email,Medium
59
+ 58,Forms,Autofill Support,Web,Help browsers autofill correctly,Use autocomplete attribute properly,Block or ignore autofill,autocomplete='email',autocomplete='off' everywhere,Medium
60
+ 59,Forms,Required Indicators,All,Mark required fields clearly,Use asterisk or (required) text,No indication of required fields,* required indicator,Guess which are required,Medium
61
+ 60,Forms,Password Visibility,All,Let users see password while typing,Toggle to show/hide password,No visibility toggle,Show/hide password button,Password always hidden,Medium
62
+ 61,Forms,Submit Feedback,All,Confirm form submission status,Show loading then success/error state,No feedback after submit,Loading -> Success message,Button click with no response,High
63
+ 62,Forms,Input Affordance,All,Inputs should look interactive,Use distinct input styling,Inputs that look like plain text,Border/background on inputs,Borderless inputs,Medium
64
+ 63,Forms,Mobile Keyboards,Mobile,Show appropriate keyboard for input type,Use inputmode attribute,Default keyboard for all inputs,inputmode='numeric',Text keyboard for numbers,Medium
65
+ 64,Responsive,Mobile First,Web,Design for mobile then enhance for larger,Start with mobile styles then add breakpoints,Desktop-first causing mobile issues,Default mobile + md: lg: xl:,Desktop default + max-width queries,Medium
66
+ 65,Responsive,Breakpoint Testing,Web,Test at all common screen sizes,Test at 320 375 414 768 1024 1440,Only test on your device,Multiple device testing,Single device development,Medium
67
+ 66,Responsive,Touch Friendly,Web,Mobile layouts need touch-sized targets,Increase touch targets on mobile,Same tiny buttons on mobile,Larger buttons on mobile,Desktop-sized targets on mobile,High
68
+ 67,Responsive,Readable Font Size,All,Text must be readable on all devices,Minimum 16px body text on mobile,Tiny text on mobile,text-base or larger,text-xs for body text,High
69
+ 68,Responsive,Viewport Meta,Web,Set viewport for mobile devices,Use width=device-width initial-scale=1,Missing or incorrect viewport,<meta name='viewport'...>,No viewport meta tag,High
70
+ 69,Responsive,Horizontal Scroll,Web,Avoid horizontal scrolling,Ensure content fits viewport width,Content wider than viewport,max-w-full overflow-x-hidden,Horizontal scrollbar on mobile,High
71
+ 70,Responsive,Image Scaling,Web,Images should scale with container,Use max-width: 100% on images,Fixed width images overflow,max-w-full h-auto,width='800' fixed,Medium
72
+ 71,Responsive,Table Handling,Web,Tables can overflow on mobile,Use horizontal scroll or card layout,Wide tables breaking layout,overflow-x-auto wrapper,Table overflows viewport,Medium
73
+ 72,Typography,Line Height,All,Adequate line height improves readability,Use 1.5-1.75 for body text,Cramped or excessive line height,leading-relaxed (1.625),leading-none (1),Medium
74
+ 73,Typography,Line Length,Web,Long lines are hard to read,Limit to 65-75 characters per line,Full-width text on large screens,max-w-prose,Full viewport width text,Medium
75
+ 74,Typography,Font Size Scale,All,Consistent type hierarchy aids scanning,Use consistent modular scale,Random font sizes,Type scale (12 14 16 18 24 32),Arbitrary sizes,Medium
76
+ 75,Typography,Font Loading,Web,Fonts should load without layout shift,Reserve space with fallback font,Layout shift when fonts load,font-display: swap + similar fallback,No fallback font,Medium
77
+ 76,Typography,Contrast Readability,All,Body text needs good contrast,Use darker text on light backgrounds,Gray text on gray background,text-gray-900 on white,text-gray-400 on gray-100,High
78
+ 77,Typography,Heading Clarity,All,Headings should stand out from body,Clear size/weight difference,Headings similar to body text,Bold + larger size,Same size as body,Medium
79
+ 78,Feedback,Loading Indicators,All,Show system status during waits,Show spinner/skeleton for operations > 300ms,No feedback during loading,Skeleton or spinner,Frozen UI,High
80
+ 79,Feedback,Empty States,All,Guide users when no content exists,Show helpful message and action,Blank empty screens,No items yet. Create one!,Empty white space,Medium
81
+ 80,Feedback,Error Recovery,All,Help users recover from errors,Provide clear next steps,Error without recovery path,Try again button + help link,Error message only,Medium
82
+ 81,Feedback,Progress Indicators,All,Show progress for multi-step processes,Step indicators or progress bar,No indication of progress,Step 2 of 4 indicator,No step information,Medium
83
+ 82,Feedback,Toast Notifications,All,Transient messages for non-critical info,Auto-dismiss after 3-5 seconds,Toasts that never disappear,Auto-dismiss toast,Persistent toast,Medium
84
+ 83,Feedback,Confirmation Messages,All,Confirm successful actions,Brief success message,Silent success,Saved successfully toast,No confirmation,Medium
85
+ 84,Content,Truncation,All,Handle long content gracefully,Truncate with ellipsis and expand option,Overflow or broken layout,line-clamp-2 with expand,Overflow or cut off,Medium
86
+ 85,Content,Date Formatting,All,Use locale-appropriate date formats,Use relative or locale-aware dates,Ambiguous date formats,2 hours ago or locale format,01/02/03,Low
87
+ 86,Content,Number Formatting,All,Format large numbers for readability,Use thousand separators or abbreviations,Long unformatted numbers,"1.2K or 1,234",1234567,Low
88
+ 87,Content,Placeholder Content,All,Show realistic placeholders during dev,Use realistic sample data,Lorem ipsum everywhere,Real sample content,Lorem ipsum,Low
89
+ 88,Onboarding,User Freedom,All,Users should be able to skip tutorials,Provide Skip and Back buttons,Force linear unskippable tour,Skip Tutorial button,Locked overlay until finished,Medium
90
+ 89,Search,Autocomplete,Web,Help users find results faster,Show predictions as user types,Require full type and enter,Debounced fetch + dropdown,No suggestions,Medium
91
+ 90,Search,No Results,Web,Dead ends frustrate users,Show 'No results' with suggestions,Blank screen or '0 results',Try searching for X instead,No results found.,Medium
92
+ 91,Data Entry,Bulk Actions,Web,Editing one by one is tedious,Allow multi-select and bulk edit,Single row actions only,Checkbox column + Action bar,Repeated actions per row,Low
93
+ 92,AI Interaction,Disclaimer,All,Users need to know they talk to AI,Clearly label AI generated content,Present AI as human,AI Assistant label,Fake human name without label,High
94
+ 93,AI Interaction,Streaming,All,Waiting for full text is slow,Stream text response token by token,Show loading spinner for 10s+,Typewriter effect,Spinner until 100% complete,Medium
95
+ 94,Spatial UI,Gaze Hover,VisionOS,Elements should respond to eye tracking before pinch,Scale/highlight element on look,Static element until pinch,hoverEffect(),onTap only,High
96
+ 95,Spatial UI,Depth Layering,VisionOS,UI needs Z-depth to separate content from environment,Use glass material and z-offset,Flat opaque panels blocking view,.glassBackgroundEffect(),bg-white,Medium
97
+ 96,Sustainability,Auto-Play Video,Web,Video consumes massive data and energy,Click-to-play or pause when off-screen,Auto-play high-res video loops,playsInline muted preload='none',autoplay loop,Medium
98
+ 97,Sustainability,Asset Weight,Web,Heavy 3D/Image assets increase carbon footprint,Compress and lazy load 3D models,Load 50MB textures,Draco compression,Raw .obj files,Medium
99
+ 98,AI Interaction,Feedback Loop,All,AI needs user feedback to improve,Thumps up/down or 'Regenerate',Static output only,Feedback component,Read-only text,Low
100
100
  99,Accessibility,Motion Sensitivity,All,Parallax/Scroll-jacking causes nausea,Respect prefers-reduced-motion,Force scroll effects,@media (prefers-reduced-motion),ScrollTrigger.create(),High