@su-record/vibe 2.7.5 → 2.7.6

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 (1603) 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.spec.review.md +558 -558
  55. package/commands/vibe.utils.md +413 -413
  56. package/commands/vibe.voice.md +79 -79
  57. package/dist/cli/collaborator.js +52 -52
  58. package/dist/cli/commands/evolution.js +12 -12
  59. package/dist/cli/commands/info.js +54 -54
  60. package/dist/cli/commands/init.d.ts +2 -2
  61. package/dist/cli/commands/init.d.ts.map +1 -1
  62. package/dist/cli/commands/init.js +40 -12
  63. package/dist/cli/commands/init.js.map +1 -1
  64. package/dist/cli/commands/remove.js +14 -14
  65. package/dist/cli/commands/sentinel.js +27 -27
  66. package/dist/cli/commands/slack.js +10 -10
  67. package/dist/cli/commands/telegram.js +12 -12
  68. package/dist/cli/commands/update.d.ts.map +1 -1
  69. package/dist/cli/commands/update.js +18 -2
  70. package/dist/cli/commands/update.js.map +1 -1
  71. package/dist/cli/detect.d.ts.map +1 -1
  72. package/dist/cli/detect.js +60 -33
  73. package/dist/cli/detect.js.map +1 -1
  74. package/dist/cli/index.js +46 -46
  75. package/dist/cli/llm/claude-commands.js +16 -16
  76. package/dist/cli/llm/config.js +18 -18
  77. package/dist/cli/llm/gemini-commands.js +47 -47
  78. package/dist/cli/llm/gpt-commands.js +19 -19
  79. package/dist/cli/llm/help.js +21 -21
  80. package/dist/cli/postinstall/constants.d.ts +10 -4
  81. package/dist/cli/postinstall/constants.d.ts.map +1 -1
  82. package/dist/cli/postinstall/constants.js +19 -6
  83. package/dist/cli/postinstall/constants.js.map +1 -1
  84. package/dist/cli/postinstall/cursor-agents.js +32 -32
  85. package/dist/cli/postinstall/cursor-rules.js +83 -83
  86. package/dist/cli/postinstall/cursor-skills.js +743 -743
  87. package/dist/cli/postinstall/index.d.ts +1 -1
  88. package/dist/cli/postinstall/index.d.ts.map +1 -1
  89. package/dist/cli/postinstall/index.js +1 -1
  90. package/dist/cli/postinstall/index.js.map +1 -1
  91. package/dist/cli/postinstall.d.ts +1 -1
  92. package/dist/cli/postinstall.d.ts.map +1 -1
  93. package/dist/cli/postinstall.js +1 -1
  94. package/dist/cli/postinstall.js.map +1 -1
  95. package/dist/cli/setup/Provisioner.d.ts +28 -0
  96. package/dist/cli/setup/Provisioner.d.ts.map +1 -0
  97. package/dist/cli/setup/Provisioner.js +201 -0
  98. package/dist/cli/setup/Provisioner.js.map +1 -0
  99. package/dist/cli/types.d.ts +1 -0
  100. package/dist/cli/types.d.ts.map +1 -1
  101. package/dist/infra/lib/DeepInit.js +24 -24
  102. package/dist/infra/lib/IterationTracker.js +11 -11
  103. package/dist/infra/lib/PythonParser.js +108 -108
  104. package/dist/infra/lib/ReviewRace.js +96 -96
  105. package/dist/infra/lib/SkillFrontmatter.js +28 -28
  106. package/dist/infra/lib/SkillQualityGate.js +9 -9
  107. package/dist/infra/lib/SkillRepository.js +159 -159
  108. package/dist/infra/lib/TaskContext.d.ts +43 -0
  109. package/dist/infra/lib/TaskContext.d.ts.map +1 -0
  110. package/dist/infra/lib/TaskContext.js +84 -0
  111. package/dist/infra/lib/TaskContext.js.map +1 -0
  112. package/dist/infra/lib/TokenBudgetTracker.d.ts +55 -0
  113. package/dist/infra/lib/TokenBudgetTracker.d.ts.map +1 -0
  114. package/dist/infra/lib/TokenBudgetTracker.js +150 -0
  115. package/dist/infra/lib/TokenBudgetTracker.js.map +1 -0
  116. package/dist/infra/lib/UltraQA.js +99 -99
  117. package/dist/infra/lib/autonomy/AuditStore.js +41 -41
  118. package/dist/infra/lib/autonomy/ConfirmationStore.js +30 -30
  119. package/dist/infra/lib/autonomy/EventOutbox.js +38 -38
  120. package/dist/infra/lib/autonomy/PolicyEngine.js +18 -18
  121. package/dist/infra/lib/autonomy/SecuritySentinel.js +1 -1
  122. package/dist/infra/lib/autonomy/SuggestionStore.js +33 -33
  123. package/dist/infra/lib/constants.d.ts +5 -0
  124. package/dist/infra/lib/constants.d.ts.map +1 -1
  125. package/dist/infra/lib/constants.js +6 -0
  126. package/dist/infra/lib/constants.js.map +1 -1
  127. package/dist/infra/lib/embedding/VectorStore.js +22 -22
  128. package/dist/infra/lib/evolution/AgentAnalyzer.js +10 -10
  129. package/dist/infra/lib/evolution/GenerationRegistry.js +36 -36
  130. package/dist/infra/lib/evolution/InsightStore.js +90 -90
  131. package/dist/infra/lib/evolution/RollbackManager.js +5 -5
  132. package/dist/infra/lib/evolution/SkillGapDetector.js +10 -10
  133. package/dist/infra/lib/evolution/UsageTracker.js +28 -28
  134. package/dist/infra/lib/gemini/constants.js +14 -14
  135. package/dist/infra/lib/gemini/orchestration.js +5 -5
  136. package/dist/infra/lib/gpt/oauth.js +44 -44
  137. package/dist/infra/lib/gpt/orchestration.js +4 -4
  138. package/dist/infra/lib/memory/KnowledgeGraph.js +4 -4
  139. package/dist/infra/lib/memory/MemorySearch.js +57 -57
  140. package/dist/infra/lib/memory/MemoryStorage.js +181 -181
  141. package/dist/infra/lib/memory/ObservationStore.js +28 -28
  142. package/dist/infra/lib/memory/ReflectionStore.js +30 -30
  143. package/dist/infra/lib/memory/SessionRAGRetriever.d.ts +1 -0
  144. package/dist/infra/lib/memory/SessionRAGRetriever.d.ts.map +1 -1
  145. package/dist/infra/lib/memory/SessionRAGRetriever.js +53 -28
  146. package/dist/infra/lib/memory/SessionRAGRetriever.js.map +1 -1
  147. package/dist/infra/lib/memory/SessionRAGStore.d.ts +5 -0
  148. package/dist/infra/lib/memory/SessionRAGStore.d.ts.map +1 -1
  149. package/dist/infra/lib/memory/SessionRAGStore.js +263 -229
  150. package/dist/infra/lib/memory/SessionRAGStore.js.map +1 -1
  151. package/dist/infra/lib/memory/SessionSummarizer.js +9 -9
  152. package/dist/infra/lib/memory/index.d.ts +4 -0
  153. package/dist/infra/lib/memory/index.d.ts.map +1 -1
  154. package/dist/infra/lib/memory/index.js +4 -0
  155. package/dist/infra/lib/memory/index.js.map +1 -1
  156. package/dist/infra/orchestrator/AgentManager.js +12 -12
  157. package/dist/infra/orchestrator/AgentManifestCache.d.ts +54 -0
  158. package/dist/infra/orchestrator/AgentManifestCache.d.ts.map +1 -0
  159. package/dist/infra/orchestrator/AgentManifestCache.js +191 -0
  160. package/dist/infra/orchestrator/AgentManifestCache.js.map +1 -0
  161. package/dist/infra/orchestrator/AgentRegistry.js +65 -65
  162. package/dist/infra/orchestrator/MultiLlmResearch.js +8 -8
  163. package/dist/infra/orchestrator/SwarmOrchestrator.test.js +16 -16
  164. package/dist/infra/orchestrator/agentDiscovery.d.ts +8 -0
  165. package/dist/infra/orchestrator/agentDiscovery.d.ts.map +1 -1
  166. package/dist/infra/orchestrator/agentDiscovery.js +2 -2
  167. package/dist/infra/orchestrator/agentDiscovery.js.map +1 -1
  168. package/dist/infra/orchestrator/index.d.ts +3 -1
  169. package/dist/infra/orchestrator/index.d.ts.map +1 -1
  170. package/dist/infra/orchestrator/index.js +3 -1
  171. package/dist/infra/orchestrator/index.js.map +1 -1
  172. package/dist/infra/orchestrator/parallelResearch.js +24 -24
  173. package/dist/tools/convention/analyzeComplexity.test.js +115 -115
  174. package/dist/tools/convention/validateCodeQuality.test.js +104 -104
  175. package/dist/tools/memory/createMemoryTimeline.js +10 -10
  176. package/dist/tools/memory/getMemoryGraph.js +12 -12
  177. package/dist/tools/memory/getSessionContext.js +9 -9
  178. package/dist/tools/memory/linkMemories.js +14 -14
  179. package/dist/tools/memory/listMemories.js +4 -4
  180. package/dist/tools/memory/recallMemory.js +4 -4
  181. package/dist/tools/memory/saveMemory.js +4 -4
  182. package/dist/tools/memory/searchMemoriesAdvanced.js +23 -23
  183. package/dist/tools/semantic/analyzeDependencyGraph.js +12 -12
  184. package/dist/tools/semantic/astGrep.test.js +6 -6
  185. package/dist/tools/spec/prdParser.test.js +171 -171
  186. package/dist/tools/spec/specGenerator.js +169 -169
  187. package/dist/tools/spec/traceabilityMatrix.js +64 -64
  188. package/dist/tools/spec/traceabilityMatrix.test.js +28 -28
  189. package/hooks/hooks.json +137 -137
  190. package/hooks/scripts/code-check.js +70 -70
  191. package/hooks/scripts/context-save.js +212 -200
  192. package/hooks/scripts/hud-status.js +291 -291
  193. package/hooks/scripts/keyword-detector.js +214 -214
  194. package/hooks/scripts/llm-orchestrate.js +646 -646
  195. package/hooks/scripts/post-edit.js +32 -32
  196. package/hooks/scripts/pre-tool-guard.js +125 -125
  197. package/hooks/scripts/prompt-dispatcher.js +185 -185
  198. package/hooks/scripts/sentinel-guard.js +104 -104
  199. package/hooks/scripts/session-start.js +106 -106
  200. package/hooks/scripts/stop-notify.js +209 -209
  201. package/hooks/scripts/utils.js +100 -100
  202. package/languages/csharp-unity.md +515 -515
  203. package/languages/gdscript-godot.md +470 -470
  204. package/languages/ruby-rails.md +489 -489
  205. package/languages/typescript-angular.md +433 -433
  206. package/languages/typescript-astro.md +416 -416
  207. package/languages/typescript-electron.md +406 -406
  208. package/languages/typescript-nestjs.md +524 -524
  209. package/languages/typescript-svelte.md +407 -407
  210. package/languages/typescript-tauri.md +365 -365
  211. package/package.json +121 -121
  212. package/skills/brand-assets/SKILL.md +138 -138
  213. package/skills/characterization-test/SKILL.md +202 -0
  214. package/skills/commerce-patterns/SKILL.md +361 -361
  215. package/skills/commit-push-pr/SKILL.md +118 -118
  216. package/skills/context7-usage/SKILL.md +105 -105
  217. package/skills/e2e-commerce/SKILL.md +304 -304
  218. package/skills/frontend-design/SKILL.md +92 -92
  219. package/skills/git-worktree/SKILL.md +184 -184
  220. package/skills/handoff/SKILL.md +101 -101
  221. package/skills/priority-todos/SKILL.md +242 -242
  222. package/skills/seo-checklist/SKILL.md +244 -244
  223. package/skills/techdebt/SKILL.md +122 -122
  224. package/skills/tool-fallback/SKILL.md +193 -193
  225. package/skills/typescript-advanced-types/SKILL.md +720 -720
  226. package/skills/ui-ux-pro-max/SKILL.md +386 -386
  227. package/skills/vercel-react-best-practices/SKILL.md +304 -304
  228. package/skills/video-production/SKILL.md +222 -0
  229. package/vibe/config.json +29 -29
  230. package/vibe/constitution.md +227 -227
  231. package/vibe/rules/principles/communication-guide.md +98 -98
  232. package/vibe/rules/principles/development-philosophy.md +52 -52
  233. package/vibe/rules/principles/quick-start.md +102 -102
  234. package/vibe/rules/quality/bdd-contract-testing.md +393 -393
  235. package/vibe/rules/quality/checklist.md +276 -276
  236. package/vibe/rules/quality/performance.md +236 -236
  237. package/vibe/rules/quality/testing-strategy.md +440 -440
  238. package/vibe/rules/standards/anti-patterns.md +541 -541
  239. package/vibe/rules/standards/code-structure.md +291 -291
  240. package/vibe/rules/standards/complexity-metrics.md +313 -313
  241. package/vibe/rules/standards/git-workflow.md +237 -237
  242. package/vibe/rules/standards/naming-conventions.md +198 -198
  243. package/vibe/rules/standards/security.md +305 -305
  244. package/vibe/rules/writing/document-style.md +74 -74
  245. package/vibe/setup.sh +31 -31
  246. package/vibe/templates/constitution-template.md +252 -252
  247. package/vibe/templates/contract-backend-template.md +526 -526
  248. package/vibe/templates/contract-frontend-template.md +599 -599
  249. package/vibe/templates/feature-template.md +96 -96
  250. package/vibe/templates/spec-template.md +221 -221
  251. package/vibe/ui-ux-data/charts.csv +26 -26
  252. package/vibe/ui-ux-data/colors.csv +97 -97
  253. package/vibe/ui-ux-data/icons.csv +101 -101
  254. package/vibe/ui-ux-data/landing.csv +31 -31
  255. package/vibe/ui-ux-data/products.csv +96 -96
  256. package/vibe/ui-ux-data/react-performance.csv +45 -45
  257. package/vibe/ui-ux-data/stacks/astro.csv +54 -54
  258. package/vibe/ui-ux-data/stacks/flutter.csv +53 -53
  259. package/vibe/ui-ux-data/stacks/html-tailwind.csv +56 -56
  260. package/vibe/ui-ux-data/stacks/jetpack-compose.csv +53 -53
  261. package/vibe/ui-ux-data/stacks/nextjs.csv +53 -53
  262. package/vibe/ui-ux-data/stacks/nuxt-ui.csv +51 -51
  263. package/vibe/ui-ux-data/stacks/nuxtjs.csv +59 -59
  264. package/vibe/ui-ux-data/stacks/react-native.csv +52 -52
  265. package/vibe/ui-ux-data/stacks/react.csv +54 -54
  266. package/vibe/ui-ux-data/stacks/shadcn.csv +61 -61
  267. package/vibe/ui-ux-data/stacks/svelte.csv +54 -54
  268. package/vibe/ui-ux-data/stacks/swiftui.csv +51 -51
  269. package/vibe/ui-ux-data/stacks/vue.csv +50 -50
  270. package/vibe/ui-ux-data/styles.csv +68 -68
  271. package/vibe/ui-ux-data/typography.csv +57 -57
  272. package/vibe/ui-ux-data/ui-reasoning.csv +101 -101
  273. package/vibe/ui-ux-data/ux-guidelines.csv +99 -99
  274. package/vibe/ui-ux-data/version.json +31 -31
  275. package/vibe/ui-ux-data/web-interface.csv +31 -31
  276. package/dist/agent/AgentLoop.d.ts +0 -97
  277. package/dist/agent/AgentLoop.d.ts.map +0 -1
  278. package/dist/agent/AgentLoop.js +0 -546
  279. package/dist/agent/AgentLoop.js.map +0 -1
  280. package/dist/agent/ConversationState.d.ts +0 -29
  281. package/dist/agent/ConversationState.d.ts.map +0 -1
  282. package/dist/agent/ConversationState.js +0 -107
  283. package/dist/agent/ConversationState.js.map +0 -1
  284. package/dist/agent/ConversationStore.d.ts +0 -31
  285. package/dist/agent/ConversationStore.d.ts.map +0 -1
  286. package/dist/agent/ConversationStore.integration.test.d.ts +0 -2
  287. package/dist/agent/ConversationStore.integration.test.d.ts.map +0 -1
  288. package/dist/agent/ConversationStore.integration.test.js +0 -162
  289. package/dist/agent/ConversationStore.integration.test.js.map +0 -1
  290. package/dist/agent/ConversationStore.js +0 -126
  291. package/dist/agent/ConversationStore.js.map +0 -1
  292. package/dist/agent/ConversationStore.test.d.ts +0 -2
  293. package/dist/agent/ConversationStore.test.d.ts.map +0 -1
  294. package/dist/agent/ConversationStore.test.js +0 -93
  295. package/dist/agent/ConversationStore.test.js.map +0 -1
  296. package/dist/agent/HeadModelSelector.d.ts +0 -36
  297. package/dist/agent/HeadModelSelector.d.ts.map +0 -1
  298. package/dist/agent/HeadModelSelector.js +0 -124
  299. package/dist/agent/HeadModelSelector.js.map +0 -1
  300. package/dist/agent/RateLimiter.d.ts +0 -44
  301. package/dist/agent/RateLimiter.d.ts.map +0 -1
  302. package/dist/agent/RateLimiter.js +0 -71
  303. package/dist/agent/RateLimiter.js.map +0 -1
  304. package/dist/agent/SystemPrompt.d.ts +0 -35
  305. package/dist/agent/SystemPrompt.d.ts.map +0 -1
  306. package/dist/agent/SystemPrompt.js +0 -151
  307. package/dist/agent/SystemPrompt.js.map +0 -1
  308. package/dist/agent/ToolExecutor.d.ts +0 -33
  309. package/dist/agent/ToolExecutor.d.ts.map +0 -1
  310. package/dist/agent/ToolExecutor.js +0 -123
  311. package/dist/agent/ToolExecutor.js.map +0 -1
  312. package/dist/agent/ToolRegistry.d.ts +0 -37
  313. package/dist/agent/ToolRegistry.d.ts.map +0 -1
  314. package/dist/agent/ToolRegistry.js +0 -125
  315. package/dist/agent/ToolRegistry.js.map +0 -1
  316. package/dist/agent/__tests__/AgentLoop.test.d.ts +0 -6
  317. package/dist/agent/__tests__/AgentLoop.test.d.ts.map +0 -1
  318. package/dist/agent/__tests__/AgentLoop.test.js +0 -208
  319. package/dist/agent/__tests__/AgentLoop.test.js.map +0 -1
  320. package/dist/agent/__tests__/ConversationState.test.d.ts +0 -6
  321. package/dist/agent/__tests__/ConversationState.test.d.ts.map +0 -1
  322. package/dist/agent/__tests__/ConversationState.test.js +0 -102
  323. package/dist/agent/__tests__/ConversationState.test.js.map +0 -1
  324. package/dist/agent/__tests__/HeadModelSelector.test.d.ts +0 -6
  325. package/dist/agent/__tests__/HeadModelSelector.test.d.ts.map +0 -1
  326. package/dist/agent/__tests__/HeadModelSelector.test.js +0 -132
  327. package/dist/agent/__tests__/HeadModelSelector.test.js.map +0 -1
  328. package/dist/agent/__tests__/JobManager.test.d.ts +0 -6
  329. package/dist/agent/__tests__/JobManager.test.d.ts.map +0 -1
  330. package/dist/agent/__tests__/JobManager.test.js +0 -197
  331. package/dist/agent/__tests__/JobManager.test.js.map +0 -1
  332. package/dist/agent/__tests__/MediaPreprocessor.test.d.ts +0 -6
  333. package/dist/agent/__tests__/MediaPreprocessor.test.d.ts.map +0 -1
  334. package/dist/agent/__tests__/MediaPreprocessor.test.js +0 -163
  335. package/dist/agent/__tests__/MediaPreprocessor.test.js.map +0 -1
  336. package/dist/agent/__tests__/ToolExecutor.test.d.ts +0 -6
  337. package/dist/agent/__tests__/ToolExecutor.test.d.ts.map +0 -1
  338. package/dist/agent/__tests__/ToolExecutor.test.js +0 -140
  339. package/dist/agent/__tests__/ToolExecutor.test.js.map +0 -1
  340. package/dist/agent/__tests__/ToolRegistry.test.d.ts +0 -6
  341. package/dist/agent/__tests__/ToolRegistry.test.d.ts.map +0 -1
  342. package/dist/agent/__tests__/ToolRegistry.test.js +0 -172
  343. package/dist/agent/__tests__/ToolRegistry.test.js.map +0 -1
  344. package/dist/agent/__tests__/tools.test.d.ts +0 -6
  345. package/dist/agent/__tests__/tools.test.d.ts.map +0 -1
  346. package/dist/agent/__tests__/tools.test.js +0 -177
  347. package/dist/agent/__tests__/tools.test.js.map +0 -1
  348. package/dist/agent/index.d.ts +0 -19
  349. package/dist/agent/index.d.ts.map +0 -1
  350. package/dist/agent/index.js +0 -18
  351. package/dist/agent/index.js.map +0 -1
  352. package/dist/agent/jobs/JobManager.d.ts +0 -46
  353. package/dist/agent/jobs/JobManager.d.ts.map +0 -1
  354. package/dist/agent/jobs/JobManager.js +0 -213
  355. package/dist/agent/jobs/JobManager.js.map +0 -1
  356. package/dist/agent/jobs/ProgressReporter.d.ts +0 -32
  357. package/dist/agent/jobs/ProgressReporter.d.ts.map +0 -1
  358. package/dist/agent/jobs/ProgressReporter.js +0 -82
  359. package/dist/agent/jobs/ProgressReporter.js.map +0 -1
  360. package/dist/agent/jobs/types.d.ts +0 -32
  361. package/dist/agent/jobs/types.d.ts.map +0 -1
  362. package/dist/agent/jobs/types.js +0 -6
  363. package/dist/agent/jobs/types.js.map +0 -1
  364. package/dist/agent/policy-integration.test.d.ts +0 -6
  365. package/dist/agent/policy-integration.test.d.ts.map +0 -1
  366. package/dist/agent/policy-integration.test.js +0 -148
  367. package/dist/agent/policy-integration.test.js.map +0 -1
  368. package/dist/agent/preprocessors/MediaPreprocessor.d.ts +0 -63
  369. package/dist/agent/preprocessors/MediaPreprocessor.d.ts.map +0 -1
  370. package/dist/agent/preprocessors/MediaPreprocessor.js +0 -320
  371. package/dist/agent/preprocessors/MediaPreprocessor.js.map +0 -1
  372. package/dist/agent/providers/claude-head.d.ts +0 -17
  373. package/dist/agent/providers/claude-head.d.ts.map +0 -1
  374. package/dist/agent/providers/claude-head.js +0 -124
  375. package/dist/agent/providers/claude-head.js.map +0 -1
  376. package/dist/agent/providers/gpt-head.d.ts +0 -30
  377. package/dist/agent/providers/gpt-head.d.ts.map +0 -1
  378. package/dist/agent/providers/gpt-head.js +0 -359
  379. package/dist/agent/providers/gpt-head.js.map +0 -1
  380. package/dist/agent/tools/claude-code.d.ts +0 -11
  381. package/dist/agent/tools/claude-code.d.ts.map +0 -1
  382. package/dist/agent/tools/claude-code.js +0 -148
  383. package/dist/agent/tools/claude-code.js.map +0 -1
  384. package/dist/agent/tools/dm-pair.d.ts +0 -23
  385. package/dist/agent/tools/dm-pair.d.ts.map +0 -1
  386. package/dist/agent/tools/dm-pair.js +0 -70
  387. package/dist/agent/tools/dm-pair.js.map +0 -1
  388. package/dist/agent/tools/dm-pair.test.d.ts +0 -6
  389. package/dist/agent/tools/dm-pair.test.d.ts.map +0 -1
  390. package/dist/agent/tools/dm-pair.test.js +0 -106
  391. package/dist/agent/tools/dm-pair.test.js.map +0 -1
  392. package/dist/agent/tools/gemini-stt.d.ts +0 -9
  393. package/dist/agent/tools/gemini-stt.d.ts.map +0 -1
  394. package/dist/agent/tools/gemini-stt.js +0 -33
  395. package/dist/agent/tools/gemini-stt.js.map +0 -1
  396. package/dist/agent/tools/google-search.d.ts +0 -9
  397. package/dist/agent/tools/google-search.d.ts.map +0 -1
  398. package/dist/agent/tools/google-search.js +0 -38
  399. package/dist/agent/tools/google-search.js.map +0 -1
  400. package/dist/agent/tools/index.d.ts +0 -22
  401. package/dist/agent/tools/index.d.ts.map +0 -1
  402. package/dist/agent/tools/index.js +0 -37
  403. package/dist/agent/tools/index.js.map +0 -1
  404. package/dist/agent/tools/kimi-analyze.d.ts +0 -9
  405. package/dist/agent/tools/kimi-analyze.d.ts.map +0 -1
  406. package/dist/agent/tools/kimi-analyze.js +0 -49
  407. package/dist/agent/tools/kimi-analyze.js.map +0 -1
  408. package/dist/agent/tools/manage-memory.d.ts +0 -10
  409. package/dist/agent/tools/manage-memory.d.ts.map +0 -1
  410. package/dist/agent/tools/manage-memory.js +0 -70
  411. package/dist/agent/tools/manage-memory.js.map +0 -1
  412. package/dist/agent/tools/send-imessage.d.ts +0 -19
  413. package/dist/agent/tools/send-imessage.d.ts.map +0 -1
  414. package/dist/agent/tools/send-imessage.js +0 -67
  415. package/dist/agent/tools/send-imessage.js.map +0 -1
  416. package/dist/agent/tools/send-slack.d.ts +0 -21
  417. package/dist/agent/tools/send-slack.d.ts.map +0 -1
  418. package/dist/agent/tools/send-slack.js +0 -63
  419. package/dist/agent/tools/send-slack.js.map +0 -1
  420. package/dist/agent/tools/send-telegram.d.ts +0 -20
  421. package/dist/agent/tools/send-telegram.d.ts.map +0 -1
  422. package/dist/agent/tools/send-telegram.js +0 -58
  423. package/dist/agent/tools/send-telegram.js.map +0 -1
  424. package/dist/agent/tools/vision-analyze.d.ts +0 -11
  425. package/dist/agent/tools/vision-analyze.d.ts.map +0 -1
  426. package/dist/agent/tools/vision-analyze.js +0 -103
  427. package/dist/agent/tools/vision-analyze.js.map +0 -1
  428. package/dist/agent/tools/vision-capture.d.ts +0 -13
  429. package/dist/agent/tools/vision-capture.d.ts.map +0 -1
  430. package/dist/agent/tools/vision-capture.js +0 -87
  431. package/dist/agent/tools/vision-capture.js.map +0 -1
  432. package/dist/agent/tools/web-browse.d.ts +0 -20
  433. package/dist/agent/tools/web-browse.d.ts.map +0 -1
  434. package/dist/agent/tools/web-browse.js +0 -196
  435. package/dist/agent/tools/web-browse.js.map +0 -1
  436. package/dist/agent/types.d.ts +0 -151
  437. package/dist/agent/types.d.ts.map +0 -1
  438. package/dist/agent/types.js +0 -6
  439. package/dist/agent/types.js.map +0 -1
  440. package/dist/bridge/telegram-assistant-bridge.d.ts +0 -10
  441. package/dist/bridge/telegram-assistant-bridge.d.ts.map +0 -1
  442. package/dist/bridge/telegram-assistant-bridge.js +0 -274
  443. package/dist/bridge/telegram-assistant-bridge.js.map +0 -1
  444. package/dist/bridge/telegram-bridge.d.ts +0 -10
  445. package/dist/bridge/telegram-bridge.d.ts.map +0 -1
  446. package/dist/bridge/telegram-bridge.js +0 -154
  447. package/dist/bridge/telegram-bridge.js.map +0 -1
  448. package/dist/cli/commands/autostart.d.ts +0 -19
  449. package/dist/cli/commands/autostart.d.ts.map +0 -1
  450. package/dist/cli/commands/autostart.js +0 -213
  451. package/dist/cli/commands/autostart.js.map +0 -1
  452. package/dist/cli/commands/browser.d.ts +0 -12
  453. package/dist/cli/commands/browser.d.ts.map +0 -1
  454. package/dist/cli/commands/browser.js +0 -50
  455. package/dist/cli/commands/browser.js.map +0 -1
  456. package/dist/cli/commands/daemon.d.ts +0 -16
  457. package/dist/cli/commands/daemon.d.ts.map +0 -1
  458. package/dist/cli/commands/daemon.js +0 -277
  459. package/dist/cli/commands/daemon.js.map +0 -1
  460. package/dist/cli/commands/device.d.ts +0 -9
  461. package/dist/cli/commands/device.d.ts.map +0 -1
  462. package/dist/cli/commands/device.js +0 -56
  463. package/dist/cli/commands/device.js.map +0 -1
  464. package/dist/cli/commands/google.d.ts +0 -12
  465. package/dist/cli/commands/google.d.ts.map +0 -1
  466. package/dist/cli/commands/google.js +0 -83
  467. package/dist/cli/commands/google.js.map +0 -1
  468. package/dist/cli/commands/imessage.d.ts +0 -11
  469. package/dist/cli/commands/imessage.d.ts.map +0 -1
  470. package/dist/cli/commands/imessage.js +0 -85
  471. package/dist/cli/commands/imessage.js.map +0 -1
  472. package/dist/cli/commands/interface.d.ts +0 -15
  473. package/dist/cli/commands/interface.d.ts.map +0 -1
  474. package/dist/cli/commands/interface.js +0 -167
  475. package/dist/cli/commands/interface.js.map +0 -1
  476. package/dist/cli/commands/job.d.ts +0 -14
  477. package/dist/cli/commands/job.d.ts.map +0 -1
  478. package/dist/cli/commands/job.js +0 -170
  479. package/dist/cli/commands/job.js.map +0 -1
  480. package/dist/cli/commands/pc.d.ts +0 -12
  481. package/dist/cli/commands/pc.d.ts.map +0 -1
  482. package/dist/cli/commands/pc.js +0 -75
  483. package/dist/cli/commands/pc.js.map +0 -1
  484. package/dist/cli/commands/policy.d.ts +0 -10
  485. package/dist/cli/commands/policy.d.ts.map +0 -1
  486. package/dist/cli/commands/policy.js +0 -75
  487. package/dist/cli/commands/policy.js.map +0 -1
  488. package/dist/cli/commands/sandbox.d.ts +0 -10
  489. package/dist/cli/commands/sandbox.d.ts.map +0 -1
  490. package/dist/cli/commands/sandbox.js +0 -53
  491. package/dist/cli/commands/sandbox.js.map +0 -1
  492. package/dist/cli/commands/sync.d.ts +0 -9
  493. package/dist/cli/commands/sync.d.ts.map +0 -1
  494. package/dist/cli/commands/sync.js +0 -167
  495. package/dist/cli/commands/sync.js.map +0 -1
  496. package/dist/cli/commands/vision.d.ts +0 -12
  497. package/dist/cli/commands/vision.d.ts.map +0 -1
  498. package/dist/cli/commands/vision.js +0 -74
  499. package/dist/cli/commands/vision.js.map +0 -1
  500. package/dist/cli/commands/voice.d.ts +0 -12
  501. package/dist/cli/commands/voice.d.ts.map +0 -1
  502. package/dist/cli/commands/voice.js +0 -67
  503. package/dist/cli/commands/voice.js.map +0 -1
  504. package/dist/cli/commands/webhook.d.ts +0 -9
  505. package/dist/cli/commands/webhook.d.ts.map +0 -1
  506. package/dist/cli/commands/webhook.js +0 -85
  507. package/dist/cli/commands/webhook.js.map +0 -1
  508. package/dist/cli/hud.d.ts +0 -46
  509. package/dist/cli/hud.d.ts.map +0 -1
  510. package/dist/cli/hud.js +0 -392
  511. package/dist/cli/hud.js.map +0 -1
  512. package/dist/cli/llm/az-commands.d.ts +0 -12
  513. package/dist/cli/llm/az-commands.d.ts.map +0 -1
  514. package/dist/cli/llm/az-commands.js +0 -99
  515. package/dist/cli/llm/az-commands.js.map +0 -1
  516. package/dist/cli/llm/kimi-commands.d.ts +0 -12
  517. package/dist/cli/llm/kimi-commands.d.ts.map +0 -1
  518. package/dist/cli/llm/kimi-commands.js +0 -100
  519. package/dist/cli/llm/kimi-commands.js.map +0 -1
  520. package/dist/cli/llm/nvidia-commands.d.ts +0 -16
  521. package/dist/cli/llm/nvidia-commands.d.ts.map +0 -1
  522. package/dist/cli/llm/nvidia-commands.js +0 -105
  523. package/dist/cli/llm/nvidia-commands.js.map +0 -1
  524. package/dist/cli/llm/priority-commands.d.ts +0 -18
  525. package/dist/cli/llm/priority-commands.d.ts.map +0 -1
  526. package/dist/cli/llm/priority-commands.js +0 -69
  527. package/dist/cli/llm/priority-commands.js.map +0 -1
  528. package/dist/cli/postinstall/npmrc.d.ts +0 -9
  529. package/dist/cli/postinstall/npmrc.d.ts.map +0 -1
  530. package/dist/cli/postinstall/npmrc.js +0 -80
  531. package/dist/cli/postinstall/npmrc.js.map +0 -1
  532. package/dist/daemon/DaemonIPC.d.ts +0 -40
  533. package/dist/daemon/DaemonIPC.d.ts.map +0 -1
  534. package/dist/daemon/DaemonIPC.js +0 -327
  535. package/dist/daemon/DaemonIPC.js.map +0 -1
  536. package/dist/daemon/InterfaceManager.d.ts +0 -62
  537. package/dist/daemon/InterfaceManager.d.ts.map +0 -1
  538. package/dist/daemon/InterfaceManager.js +0 -785
  539. package/dist/daemon/InterfaceManager.js.map +0 -1
  540. package/dist/daemon/SessionPool.d.ts +0 -80
  541. package/dist/daemon/SessionPool.d.ts.map +0 -1
  542. package/dist/daemon/SessionPool.js +0 -414
  543. package/dist/daemon/SessionPool.js.map +0 -1
  544. package/dist/daemon/VibeDaemon.d.ts +0 -69
  545. package/dist/daemon/VibeDaemon.d.ts.map +0 -1
  546. package/dist/daemon/VibeDaemon.js +0 -400
  547. package/dist/daemon/VibeDaemon.js.map +0 -1
  548. package/dist/daemon/daemon.test.d.ts +0 -6
  549. package/dist/daemon/daemon.test.d.ts.map +0 -1
  550. package/dist/daemon/daemon.test.js +0 -348
  551. package/dist/daemon/daemon.test.js.map +0 -1
  552. package/dist/daemon/index.d.ts +0 -10
  553. package/dist/daemon/index.d.ts.map +0 -1
  554. package/dist/daemon/index.js +0 -9
  555. package/dist/daemon/index.js.map +0 -1
  556. package/dist/daemon/pipeline.test.d.ts +0 -6
  557. package/dist/daemon/pipeline.test.d.ts.map +0 -1
  558. package/dist/daemon/pipeline.test.js +0 -258
  559. package/dist/daemon/pipeline.test.js.map +0 -1
  560. package/dist/daemon/preflight.d.ts +0 -23
  561. package/dist/daemon/preflight.d.ts.map +0 -1
  562. package/dist/daemon/preflight.js +0 -204
  563. package/dist/daemon/preflight.js.map +0 -1
  564. package/dist/daemon/preflight.test.d.ts +0 -6
  565. package/dist/daemon/preflight.test.d.ts.map +0 -1
  566. package/dist/daemon/preflight.test.js +0 -88
  567. package/dist/daemon/preflight.test.js.map +0 -1
  568. package/dist/daemon/types.d.ts +0 -117
  569. package/dist/daemon/types.d.ts.map +0 -1
  570. package/dist/daemon/types.js +0 -15
  571. package/dist/daemon/types.js.map +0 -1
  572. package/dist/infra/lib/az/auth.d.ts +0 -15
  573. package/dist/infra/lib/az/auth.d.ts.map +0 -1
  574. package/dist/infra/lib/az/auth.js +0 -67
  575. package/dist/infra/lib/az/auth.js.map +0 -1
  576. package/dist/infra/lib/az/chat.d.ts +0 -26
  577. package/dist/infra/lib/az/chat.d.ts.map +0 -1
  578. package/dist/infra/lib/az/chat.js +0 -116
  579. package/dist/infra/lib/az/chat.js.map +0 -1
  580. package/dist/infra/lib/az/embedding.d.ts +0 -13
  581. package/dist/infra/lib/az/embedding.d.ts.map +0 -1
  582. package/dist/infra/lib/az/embedding.js +0 -60
  583. package/dist/infra/lib/az/embedding.js.map +0 -1
  584. package/dist/infra/lib/az/index.d.ts +0 -9
  585. package/dist/infra/lib/az/index.d.ts.map +0 -1
  586. package/dist/infra/lib/az/index.js +0 -9
  587. package/dist/infra/lib/az/index.js.map +0 -1
  588. package/dist/infra/lib/az/orchestration.d.ts +0 -11
  589. package/dist/infra/lib/az/orchestration.d.ts.map +0 -1
  590. package/dist/infra/lib/az/orchestration.js +0 -24
  591. package/dist/infra/lib/az/orchestration.js.map +0 -1
  592. package/dist/infra/lib/az/types.d.ts +0 -35
  593. package/dist/infra/lib/az/types.d.ts.map +0 -1
  594. package/dist/infra/lib/az/types.js +0 -5
  595. package/dist/infra/lib/az/types.js.map +0 -1
  596. package/dist/infra/lib/az-api.d.ts +0 -5
  597. package/dist/infra/lib/az-api.d.ts.map +0 -1
  598. package/dist/infra/lib/az-api.js +0 -5
  599. package/dist/infra/lib/az-api.js.map +0 -1
  600. package/dist/infra/lib/az-constants.d.ts +0 -44
  601. package/dist/infra/lib/az-constants.d.ts.map +0 -1
  602. package/dist/infra/lib/az-constants.js +0 -58
  603. package/dist/infra/lib/az-constants.js.map +0 -1
  604. package/dist/infra/lib/az-storage.d.ts +0 -12
  605. package/dist/infra/lib/az-storage.d.ts.map +0 -1
  606. package/dist/infra/lib/az-storage.js +0 -59
  607. package/dist/infra/lib/az-storage.js.map +0 -1
  608. package/dist/infra/lib/claude-storage.d.ts +0 -12
  609. package/dist/infra/lib/claude-storage.d.ts.map +0 -1
  610. package/dist/infra/lib/claude-storage.js +0 -59
  611. package/dist/infra/lib/claude-storage.js.map +0 -1
  612. package/dist/infra/lib/gemini-api.d.ts +0 -13
  613. package/dist/infra/lib/gemini-api.d.ts.map +0 -1
  614. package/dist/infra/lib/gemini-api.js +0 -13
  615. package/dist/infra/lib/gemini-api.js.map +0 -1
  616. package/dist/infra/lib/gemini-constants.d.ts +0 -19
  617. package/dist/infra/lib/gemini-constants.d.ts.map +0 -1
  618. package/dist/infra/lib/gemini-constants.js +0 -34
  619. package/dist/infra/lib/gemini-constants.js.map +0 -1
  620. package/dist/infra/lib/gemini-oauth.d.ts +0 -60
  621. package/dist/infra/lib/gemini-oauth.d.ts.map +0 -1
  622. package/dist/infra/lib/gemini-oauth.js +0 -386
  623. package/dist/infra/lib/gemini-oauth.js.map +0 -1
  624. package/dist/infra/lib/gemini-storage.d.ts +0 -64
  625. package/dist/infra/lib/gemini-storage.d.ts.map +0 -1
  626. package/dist/infra/lib/gemini-storage.js +0 -177
  627. package/dist/infra/lib/gemini-storage.js.map +0 -1
  628. package/dist/infra/lib/gpt-api.d.ts +0 -13
  629. package/dist/infra/lib/gpt-api.d.ts.map +0 -1
  630. package/dist/infra/lib/gpt-api.js +0 -13
  631. package/dist/infra/lib/gpt-api.js.map +0 -1
  632. package/dist/infra/lib/gpt-constants.d.ts +0 -12
  633. package/dist/infra/lib/gpt-constants.d.ts.map +0 -1
  634. package/dist/infra/lib/gpt-constants.js +0 -18
  635. package/dist/infra/lib/gpt-constants.js.map +0 -1
  636. package/dist/infra/lib/gpt-oauth.d.ts +0 -66
  637. package/dist/infra/lib/gpt-oauth.d.ts.map +0 -1
  638. package/dist/infra/lib/gpt-oauth.js +0 -389
  639. package/dist/infra/lib/gpt-oauth.js.map +0 -1
  640. package/dist/infra/lib/gpt-storage.d.ts +0 -64
  641. package/dist/infra/lib/gpt-storage.d.ts.map +0 -1
  642. package/dist/infra/lib/gpt-storage.js +0 -180
  643. package/dist/infra/lib/gpt-storage.js.map +0 -1
  644. package/dist/infra/lib/kimi/auth.d.ts +0 -10
  645. package/dist/infra/lib/kimi/auth.d.ts.map +0 -1
  646. package/dist/infra/lib/kimi/auth.js +0 -45
  647. package/dist/infra/lib/kimi/auth.js.map +0 -1
  648. package/dist/infra/lib/kimi/chat.d.ts +0 -26
  649. package/dist/infra/lib/kimi/chat.d.ts.map +0 -1
  650. package/dist/infra/lib/kimi/chat.js +0 -115
  651. package/dist/infra/lib/kimi/chat.js.map +0 -1
  652. package/dist/infra/lib/kimi/index.d.ts +0 -8
  653. package/dist/infra/lib/kimi/index.d.ts.map +0 -1
  654. package/dist/infra/lib/kimi/index.js +0 -8
  655. package/dist/infra/lib/kimi/index.js.map +0 -1
  656. package/dist/infra/lib/kimi/orchestration.d.ts +0 -10
  657. package/dist/infra/lib/kimi/orchestration.d.ts.map +0 -1
  658. package/dist/infra/lib/kimi/orchestration.js +0 -22
  659. package/dist/infra/lib/kimi/orchestration.js.map +0 -1
  660. package/dist/infra/lib/kimi/types.d.ts +0 -30
  661. package/dist/infra/lib/kimi/types.d.ts.map +0 -1
  662. package/dist/infra/lib/kimi/types.js +0 -5
  663. package/dist/infra/lib/kimi/types.js.map +0 -1
  664. package/dist/infra/lib/kimi-api.d.ts +0 -5
  665. package/dist/infra/lib/kimi-api.d.ts.map +0 -1
  666. package/dist/infra/lib/kimi-api.js +0 -5
  667. package/dist/infra/lib/kimi-api.js.map +0 -1
  668. package/dist/infra/lib/kimi-constants.d.ts +0 -27
  669. package/dist/infra/lib/kimi-constants.d.ts.map +0 -1
  670. package/dist/infra/lib/kimi-constants.js +0 -31
  671. package/dist/infra/lib/kimi-constants.js.map +0 -1
  672. package/dist/infra/lib/kimi-storage.d.ts +0 -12
  673. package/dist/infra/lib/kimi-storage.d.ts.map +0 -1
  674. package/dist/infra/lib/kimi-storage.js +0 -59
  675. package/dist/infra/lib/kimi-storage.js.map +0 -1
  676. package/dist/infra/lib/priority-config.d.ts +0 -39
  677. package/dist/infra/lib/priority-config.d.ts.map +0 -1
  678. package/dist/infra/lib/priority-config.js +0 -137
  679. package/dist/infra/lib/priority-config.js.map +0 -1
  680. package/dist/infra/lib/sync/constants.d.ts +0 -21
  681. package/dist/infra/lib/sync/constants.d.ts.map +0 -1
  682. package/dist/infra/lib/sync/constants.js +0 -78
  683. package/dist/infra/lib/sync/constants.js.map +0 -1
  684. package/dist/infra/lib/sync/crypto.d.ts +0 -23
  685. package/dist/infra/lib/sync/crypto.d.ts.map +0 -1
  686. package/dist/infra/lib/sync/crypto.js +0 -55
  687. package/dist/infra/lib/sync/crypto.js.map +0 -1
  688. package/dist/infra/lib/sync/drive.d.ts +0 -22
  689. package/dist/infra/lib/sync/drive.d.ts.map +0 -1
  690. package/dist/infra/lib/sync/drive.js +0 -99
  691. package/dist/infra/lib/sync/drive.js.map +0 -1
  692. package/dist/infra/lib/sync/index.d.ts +0 -9
  693. package/dist/infra/lib/sync/index.d.ts.map +0 -1
  694. package/dist/infra/lib/sync/index.js +0 -9
  695. package/dist/infra/lib/sync/index.js.map +0 -1
  696. package/dist/infra/lib/sync/oauth.d.ts +0 -12
  697. package/dist/infra/lib/sync/oauth.d.ts.map +0 -1
  698. package/dist/infra/lib/sync/oauth.js +0 -157
  699. package/dist/infra/lib/sync/oauth.js.map +0 -1
  700. package/dist/infra/lib/sync/storage.d.ts +0 -21
  701. package/dist/infra/lib/sync/storage.d.ts.map +0 -1
  702. package/dist/infra/lib/sync/storage.js +0 -32
  703. package/dist/infra/lib/sync/storage.js.map +0 -1
  704. package/dist/infra/policy/Evidence.d.ts +0 -30
  705. package/dist/infra/policy/Evidence.d.ts.map +0 -1
  706. package/dist/infra/policy/Evidence.js +0 -134
  707. package/dist/infra/policy/Evidence.js.map +0 -1
  708. package/dist/infra/policy/PolicyEngine.d.ts +0 -34
  709. package/dist/infra/policy/PolicyEngine.d.ts.map +0 -1
  710. package/dist/infra/policy/PolicyEngine.js +0 -219
  711. package/dist/infra/policy/PolicyEngine.js.map +0 -1
  712. package/dist/infra/policy/PolicyStore.d.ts +0 -36
  713. package/dist/infra/policy/PolicyStore.d.ts.map +0 -1
  714. package/dist/infra/policy/PolicyStore.js +0 -160
  715. package/dist/infra/policy/PolicyStore.js.map +0 -1
  716. package/dist/infra/policy/RiskCalculator.d.ts +0 -20
  717. package/dist/infra/policy/RiskCalculator.d.ts.map +0 -1
  718. package/dist/infra/policy/RiskCalculator.js +0 -64
  719. package/dist/infra/policy/RiskCalculator.js.map +0 -1
  720. package/dist/infra/policy/default-policies.d.ts +0 -13
  721. package/dist/infra/policy/default-policies.d.ts.map +0 -1
  722. package/dist/infra/policy/default-policies.js +0 -99
  723. package/dist/infra/policy/default-policies.js.map +0 -1
  724. package/dist/infra/policy/index.d.ts +0 -11
  725. package/dist/infra/policy/index.d.ts.map +0 -1
  726. package/dist/infra/policy/index.js +0 -10
  727. package/dist/infra/policy/index.js.map +0 -1
  728. package/dist/infra/policy/policy.test.d.ts +0 -5
  729. package/dist/infra/policy/policy.test.d.ts.map +0 -1
  730. package/dist/infra/policy/policy.test.js +0 -628
  731. package/dist/infra/policy/policy.test.js.map +0 -1
  732. package/dist/infra/policy/types.d.ts +0 -71
  733. package/dist/infra/policy/types.d.ts.map +0 -1
  734. package/dist/infra/policy/types.js +0 -18
  735. package/dist/infra/policy/types.js.map +0 -1
  736. package/dist/interface/BaseInterface.d.ts +0 -37
  737. package/dist/interface/BaseInterface.d.ts.map +0 -1
  738. package/dist/interface/BaseInterface.js +0 -105
  739. package/dist/interface/BaseInterface.js.map +0 -1
  740. package/dist/interface/ClaudeCodeBridge.d.ts +0 -38
  741. package/dist/interface/ClaudeCodeBridge.d.ts.map +0 -1
  742. package/dist/interface/ClaudeCodeBridge.js +0 -216
  743. package/dist/interface/ClaudeCodeBridge.js.map +0 -1
  744. package/dist/interface/imessage/IMessageBot.d.ts +0 -33
  745. package/dist/interface/imessage/IMessageBot.d.ts.map +0 -1
  746. package/dist/interface/imessage/IMessageBot.js +0 -222
  747. package/dist/interface/imessage/IMessageBot.js.map +0 -1
  748. package/dist/interface/imessage/IMessageFormatter.d.ts +0 -15
  749. package/dist/interface/imessage/IMessageFormatter.d.ts.map +0 -1
  750. package/dist/interface/imessage/IMessageFormatter.js +0 -81
  751. package/dist/interface/imessage/IMessageFormatter.js.map +0 -1
  752. package/dist/interface/imessage/IMessageRpcClient.d.ts +0 -39
  753. package/dist/interface/imessage/IMessageRpcClient.d.ts.map +0 -1
  754. package/dist/interface/imessage/IMessageRpcClient.js +0 -174
  755. package/dist/interface/imessage/IMessageRpcClient.js.map +0 -1
  756. package/dist/interface/imessage/IMessageSender.d.ts +0 -19
  757. package/dist/interface/imessage/IMessageSender.d.ts.map +0 -1
  758. package/dist/interface/imessage/IMessageSender.js +0 -136
  759. package/dist/interface/imessage/IMessageSender.js.map +0 -1
  760. package/dist/interface/imessage/__tests__/IMessageBot.test.d.ts +0 -5
  761. package/dist/interface/imessage/__tests__/IMessageBot.test.d.ts.map +0 -1
  762. package/dist/interface/imessage/__tests__/IMessageBot.test.js +0 -60
  763. package/dist/interface/imessage/__tests__/IMessageBot.test.js.map +0 -1
  764. package/dist/interface/imessage/__tests__/IMessageFormatter.test.d.ts +0 -5
  765. package/dist/interface/imessage/__tests__/IMessageFormatter.test.d.ts.map +0 -1
  766. package/dist/interface/imessage/__tests__/IMessageFormatter.test.js +0 -110
  767. package/dist/interface/imessage/__tests__/IMessageFormatter.test.js.map +0 -1
  768. package/dist/interface/imessage/__tests__/IMessageSender.test.d.ts +0 -5
  769. package/dist/interface/imessage/__tests__/IMessageSender.test.d.ts.map +0 -1
  770. package/dist/interface/imessage/__tests__/IMessageSender.test.js +0 -67
  771. package/dist/interface/imessage/__tests__/IMessageSender.test.js.map +0 -1
  772. package/dist/interface/imessage/index.d.ts +0 -8
  773. package/dist/interface/imessage/index.d.ts.map +0 -1
  774. package/dist/interface/imessage/index.js +0 -8
  775. package/dist/interface/imessage/index.js.map +0 -1
  776. package/dist/interface/index.d.ts +0 -26
  777. package/dist/interface/index.d.ts.map +0 -1
  778. package/dist/interface/index.js +0 -26
  779. package/dist/interface/index.js.map +0 -1
  780. package/dist/interface/interface.test.d.ts +0 -5
  781. package/dist/interface/interface.test.d.ts.map +0 -1
  782. package/dist/interface/interface.test.js +0 -442
  783. package/dist/interface/interface.test.js.map +0 -1
  784. package/dist/interface/slack/SlackBot.d.ts +0 -83
  785. package/dist/interface/slack/SlackBot.d.ts.map +0 -1
  786. package/dist/interface/slack/SlackBot.js +0 -563
  787. package/dist/interface/slack/SlackBot.js.map +0 -1
  788. package/dist/interface/slack/SlackFormatter.d.ts +0 -19
  789. package/dist/interface/slack/SlackFormatter.d.ts.map +0 -1
  790. package/dist/interface/slack/SlackFormatter.js +0 -76
  791. package/dist/interface/slack/SlackFormatter.js.map +0 -1
  792. package/dist/interface/slack/__tests__/SlackBot.test.d.ts +0 -5
  793. package/dist/interface/slack/__tests__/SlackBot.test.d.ts.map +0 -1
  794. package/dist/interface/slack/__tests__/SlackBot.test.js +0 -37
  795. package/dist/interface/slack/__tests__/SlackBot.test.js.map +0 -1
  796. package/dist/interface/slack/__tests__/SlackFormatter.test.d.ts +0 -5
  797. package/dist/interface/slack/__tests__/SlackFormatter.test.d.ts.map +0 -1
  798. package/dist/interface/slack/__tests__/SlackFormatter.test.js +0 -93
  799. package/dist/interface/slack/__tests__/SlackFormatter.test.js.map +0 -1
  800. package/dist/interface/slack/index.d.ts +0 -7
  801. package/dist/interface/slack/index.d.ts.map +0 -1
  802. package/dist/interface/slack/index.js +0 -7
  803. package/dist/interface/slack/index.js.map +0 -1
  804. package/dist/interface/telegram/TelegramBot.d.ts +0 -60
  805. package/dist/interface/telegram/TelegramBot.d.ts.map +0 -1
  806. package/dist/interface/telegram/TelegramBot.js +0 -400
  807. package/dist/interface/telegram/TelegramBot.js.map +0 -1
  808. package/dist/interface/telegram/TelegramFormatter.d.ts +0 -19
  809. package/dist/interface/telegram/TelegramFormatter.d.ts.map +0 -1
  810. package/dist/interface/telegram/TelegramFormatter.js +0 -66
  811. package/dist/interface/telegram/TelegramFormatter.js.map +0 -1
  812. package/dist/interface/types.d.ts +0 -167
  813. package/dist/interface/types.d.ts.map +0 -1
  814. package/dist/interface/types.js +0 -6
  815. package/dist/interface/types.js.map +0 -1
  816. package/dist/interface/utils/MessageCombiner.d.ts +0 -14
  817. package/dist/interface/utils/MessageCombiner.d.ts.map +0 -1
  818. package/dist/interface/utils/MessageCombiner.js +0 -48
  819. package/dist/interface/utils/MessageCombiner.js.map +0 -1
  820. package/dist/interface/vision/AdaptiveFrameSampler.d.ts +0 -44
  821. package/dist/interface/vision/AdaptiveFrameSampler.d.ts.map +0 -1
  822. package/dist/interface/vision/AdaptiveFrameSampler.js +0 -109
  823. package/dist/interface/vision/AdaptiveFrameSampler.js.map +0 -1
  824. package/dist/interface/vision/AdaptiveFrameSampler.test.d.ts +0 -7
  825. package/dist/interface/vision/AdaptiveFrameSampler.test.d.ts.map +0 -1
  826. package/dist/interface/vision/AdaptiveFrameSampler.test.js +0 -113
  827. package/dist/interface/vision/AdaptiveFrameSampler.test.js.map +0 -1
  828. package/dist/interface/vision/GeminiLive.d.ts +0 -37
  829. package/dist/interface/vision/GeminiLive.d.ts.map +0 -1
  830. package/dist/interface/vision/GeminiLive.js +0 -272
  831. package/dist/interface/vision/GeminiLive.js.map +0 -1
  832. package/dist/interface/vision/GeminiLive.test.d.ts +0 -6
  833. package/dist/interface/vision/GeminiLive.test.d.ts.map +0 -1
  834. package/dist/interface/vision/GeminiLive.test.js +0 -40
  835. package/dist/interface/vision/GeminiLive.test.js.map +0 -1
  836. package/dist/interface/vision/GeminiLiveStream.d.ts +0 -55
  837. package/dist/interface/vision/GeminiLiveStream.d.ts.map +0 -1
  838. package/dist/interface/vision/GeminiLiveStream.js +0 -213
  839. package/dist/interface/vision/GeminiLiveStream.js.map +0 -1
  840. package/dist/interface/vision/GeminiVision.d.ts +0 -25
  841. package/dist/interface/vision/GeminiVision.d.ts.map +0 -1
  842. package/dist/interface/vision/GeminiVision.js +0 -202
  843. package/dist/interface/vision/GeminiVision.js.map +0 -1
  844. package/dist/interface/vision/ScreenCapture.d.ts +0 -77
  845. package/dist/interface/vision/ScreenCapture.d.ts.map +0 -1
  846. package/dist/interface/vision/ScreenCapture.js +0 -314
  847. package/dist/interface/vision/ScreenCapture.js.map +0 -1
  848. package/dist/interface/vision/ScreenCaptureEngine.d.ts +0 -55
  849. package/dist/interface/vision/ScreenCaptureEngine.d.ts.map +0 -1
  850. package/dist/interface/vision/ScreenCaptureEngine.js +0 -223
  851. package/dist/interface/vision/ScreenCaptureEngine.js.map +0 -1
  852. package/dist/interface/vision/ScreenCaptureEngine.test.d.ts +0 -8
  853. package/dist/interface/vision/ScreenCaptureEngine.test.d.ts.map +0 -1
  854. package/dist/interface/vision/ScreenCaptureEngine.test.js +0 -175
  855. package/dist/interface/vision/ScreenCaptureEngine.test.js.map +0 -1
  856. package/dist/interface/vision/VisionInterface.d.ts +0 -26
  857. package/dist/interface/vision/VisionInterface.d.ts.map +0 -1
  858. package/dist/interface/vision/VisionInterface.js +0 -105
  859. package/dist/interface/vision/VisionInterface.js.map +0 -1
  860. package/dist/interface/vision/VisionSession.d.ts +0 -66
  861. package/dist/interface/vision/VisionSession.d.ts.map +0 -1
  862. package/dist/interface/vision/VisionSession.js +0 -274
  863. package/dist/interface/vision/VisionSession.js.map +0 -1
  864. package/dist/interface/vision/VisionSession.test.d.ts +0 -7
  865. package/dist/interface/vision/VisionSession.test.d.ts.map +0 -1
  866. package/dist/interface/vision/VisionSession.test.js +0 -218
  867. package/dist/interface/vision/VisionSession.test.js.map +0 -1
  868. package/dist/interface/vision/__tests__/GeminiVision.test.d.ts +0 -5
  869. package/dist/interface/vision/__tests__/GeminiVision.test.d.ts.map +0 -1
  870. package/dist/interface/vision/__tests__/GeminiVision.test.js +0 -92
  871. package/dist/interface/vision/__tests__/GeminiVision.test.js.map +0 -1
  872. package/dist/interface/vision/__tests__/ScreenCapture.test.d.ts +0 -5
  873. package/dist/interface/vision/__tests__/ScreenCapture.test.d.ts.map +0 -1
  874. package/dist/interface/vision/__tests__/ScreenCapture.test.js +0 -24
  875. package/dist/interface/vision/__tests__/ScreenCapture.test.js.map +0 -1
  876. package/dist/interface/vision/__tests__/VisionInterface.test.d.ts +0 -5
  877. package/dist/interface/vision/__tests__/VisionInterface.test.d.ts.map +0 -1
  878. package/dist/interface/vision/__tests__/VisionInterface.test.js +0 -59
  879. package/dist/interface/vision/__tests__/VisionInterface.test.js.map +0 -1
  880. package/dist/interface/vision/index.d.ts +0 -20
  881. package/dist/interface/vision/index.d.ts.map +0 -1
  882. package/dist/interface/vision/index.js +0 -16
  883. package/dist/interface/vision/index.js.map +0 -1
  884. package/dist/interface/vision/types.d.ts +0 -79
  885. package/dist/interface/vision/types.d.ts.map +0 -1
  886. package/dist/interface/vision/types.js +0 -22
  887. package/dist/interface/vision/types.js.map +0 -1
  888. package/dist/interface/voice/STTProvider.d.ts +0 -48
  889. package/dist/interface/voice/STTProvider.d.ts.map +0 -1
  890. package/dist/interface/voice/STTProvider.js +0 -254
  891. package/dist/interface/voice/STTProvider.js.map +0 -1
  892. package/dist/interface/voice/STTProvider.test.d.ts +0 -8
  893. package/dist/interface/voice/STTProvider.test.d.ts.map +0 -1
  894. package/dist/interface/voice/STTProvider.test.js +0 -144
  895. package/dist/interface/voice/STTProvider.test.js.map +0 -1
  896. package/dist/interface/voice/TTSProvider.d.ts +0 -44
  897. package/dist/interface/voice/TTSProvider.d.ts.map +0 -1
  898. package/dist/interface/voice/TTSProvider.js +0 -252
  899. package/dist/interface/voice/TTSProvider.js.map +0 -1
  900. package/dist/interface/voice/TTSProvider.test.d.ts +0 -8
  901. package/dist/interface/voice/TTSProvider.test.d.ts.map +0 -1
  902. package/dist/interface/voice/TTSProvider.test.js +0 -143
  903. package/dist/interface/voice/TTSProvider.test.js.map +0 -1
  904. package/dist/interface/voice/VADProcessor.d.ts +0 -34
  905. package/dist/interface/voice/VADProcessor.d.ts.map +0 -1
  906. package/dist/interface/voice/VADProcessor.js +0 -116
  907. package/dist/interface/voice/VADProcessor.js.map +0 -1
  908. package/dist/interface/voice/VADProcessor.test.d.ts +0 -8
  909. package/dist/interface/voice/VADProcessor.test.d.ts.map +0 -1
  910. package/dist/interface/voice/VADProcessor.test.js +0 -159
  911. package/dist/interface/voice/VADProcessor.test.js.map +0 -1
  912. package/dist/interface/voice/VoiceSession.d.ts +0 -77
  913. package/dist/interface/voice/VoiceSession.d.ts.map +0 -1
  914. package/dist/interface/voice/VoiceSession.js +0 -249
  915. package/dist/interface/voice/VoiceSession.js.map +0 -1
  916. package/dist/interface/voice/VoiceSession.test.d.ts +0 -8
  917. package/dist/interface/voice/VoiceSession.test.d.ts.map +0 -1
  918. package/dist/interface/voice/VoiceSession.test.js +0 -260
  919. package/dist/interface/voice/VoiceSession.test.js.map +0 -1
  920. package/dist/interface/voice/VoiceWebSocket.d.ts +0 -52
  921. package/dist/interface/voice/VoiceWebSocket.d.ts.map +0 -1
  922. package/dist/interface/voice/VoiceWebSocket.js +0 -165
  923. package/dist/interface/voice/VoiceWebSocket.js.map +0 -1
  924. package/dist/interface/voice/types.d.ts +0 -144
  925. package/dist/interface/voice/types.d.ts.map +0 -1
  926. package/dist/interface/voice/types.js +0 -23
  927. package/dist/interface/voice/types.js.map +0 -1
  928. package/dist/interface/voice/types.test.d.ts +0 -8
  929. package/dist/interface/voice/types.test.d.ts.map +0 -1
  930. package/dist/interface/voice/types.test.js +0 -90
  931. package/dist/interface/voice/types.test.js.map +0 -1
  932. package/dist/interface/web/WebServer.d.ts +0 -80
  933. package/dist/interface/web/WebServer.d.ts.map +0 -1
  934. package/dist/interface/web/WebServer.js +0 -999
  935. package/dist/interface/web/WebServer.js.map +0 -1
  936. package/dist/interface/web/__tests__/WebServer.test.d.ts +0 -5
  937. package/dist/interface/web/__tests__/WebServer.test.d.ts.map +0 -1
  938. package/dist/interface/web/__tests__/WebServer.test.js +0 -345
  939. package/dist/interface/web/__tests__/WebServer.test.js.map +0 -1
  940. package/dist/interface/web/types.d.ts +0 -109
  941. package/dist/interface/web/types.d.ts.map +0 -1
  942. package/dist/interface/web/types.js +0 -67
  943. package/dist/interface/web/types.js.map +0 -1
  944. package/dist/interface/webhook/WebhookHandler.d.ts +0 -45
  945. package/dist/interface/webhook/WebhookHandler.d.ts.map +0 -1
  946. package/dist/interface/webhook/WebhookHandler.js +0 -273
  947. package/dist/interface/webhook/WebhookHandler.js.map +0 -1
  948. package/dist/job/ActionPlanGenerator.d.ts +0 -21
  949. package/dist/job/ActionPlanGenerator.d.ts.map +0 -1
  950. package/dist/job/ActionPlanGenerator.js +0 -153
  951. package/dist/job/ActionPlanGenerator.js.map +0 -1
  952. package/dist/job/AgentJobManager.d.ts +0 -46
  953. package/dist/job/AgentJobManager.d.ts.map +0 -1
  954. package/dist/job/AgentJobManager.js +0 -213
  955. package/dist/job/AgentJobManager.js.map +0 -1
  956. package/dist/job/AgentJobManager.test.d.ts +0 -6
  957. package/dist/job/AgentJobManager.test.d.ts.map +0 -1
  958. package/dist/job/AgentJobManager.test.js +0 -197
  959. package/dist/job/AgentJobManager.test.js.map +0 -1
  960. package/dist/job/IntentParser.d.ts +0 -21
  961. package/dist/job/IntentParser.d.ts.map +0 -1
  962. package/dist/job/IntentParser.js +0 -142
  963. package/dist/job/IntentParser.js.map +0 -1
  964. package/dist/job/JobManager.d.ts +0 -54
  965. package/dist/job/JobManager.d.ts.map +0 -1
  966. package/dist/job/JobManager.js +0 -220
  967. package/dist/job/JobManager.js.map +0 -1
  968. package/dist/job/JobQueue.d.ts +0 -41
  969. package/dist/job/JobQueue.d.ts.map +0 -1
  970. package/dist/job/JobQueue.js +0 -153
  971. package/dist/job/JobQueue.js.map +0 -1
  972. package/dist/job/JobStore.d.ts +0 -36
  973. package/dist/job/JobStore.d.ts.map +0 -1
  974. package/dist/job/JobStore.js +0 -260
  975. package/dist/job/JobStore.js.map +0 -1
  976. package/dist/job/ProgressReporter.d.ts +0 -32
  977. package/dist/job/ProgressReporter.d.ts.map +0 -1
  978. package/dist/job/ProgressReporter.js +0 -82
  979. package/dist/job/ProgressReporter.js.map +0 -1
  980. package/dist/job/agent-job-types.d.ts +0 -32
  981. package/dist/job/agent-job-types.d.ts.map +0 -1
  982. package/dist/job/agent-job-types.js +0 -6
  983. package/dist/job/agent-job-types.js.map +0 -1
  984. package/dist/job/index.d.ts +0 -15
  985. package/dist/job/index.d.ts.map +0 -1
  986. package/dist/job/index.js +0 -15
  987. package/dist/job/index.js.map +0 -1
  988. package/dist/job/job.test.d.ts +0 -5
  989. package/dist/job/job.test.d.ts.map +0 -1
  990. package/dist/job/job.test.js +0 -303
  991. package/dist/job/job.test.js.map +0 -1
  992. package/dist/job/types.d.ts +0 -82
  993. package/dist/job/types.d.ts.map +0 -1
  994. package/dist/job/types.js +0 -40
  995. package/dist/job/types.js.map +0 -1
  996. package/dist/orchestrator/AgentAnnouncer.d.ts +0 -64
  997. package/dist/orchestrator/AgentAnnouncer.d.ts.map +0 -1
  998. package/dist/orchestrator/AgentAnnouncer.js +0 -127
  999. package/dist/orchestrator/AgentAnnouncer.js.map +0 -1
  1000. package/dist/orchestrator/AgentAnnouncer.test.d.ts +0 -5
  1001. package/dist/orchestrator/AgentAnnouncer.test.d.ts.map +0 -1
  1002. package/dist/orchestrator/AgentAnnouncer.test.js +0 -119
  1003. package/dist/orchestrator/AgentAnnouncer.test.js.map +0 -1
  1004. package/dist/orchestrator/AgentExecutor.d.ts +0 -23
  1005. package/dist/orchestrator/AgentExecutor.d.ts.map +0 -1
  1006. package/dist/orchestrator/AgentExecutor.js +0 -231
  1007. package/dist/orchestrator/AgentExecutor.js.map +0 -1
  1008. package/dist/orchestrator/AgentManager.d.ts +0 -73
  1009. package/dist/orchestrator/AgentManager.d.ts.map +0 -1
  1010. package/dist/orchestrator/AgentManager.js +0 -184
  1011. package/dist/orchestrator/AgentManager.js.map +0 -1
  1012. package/dist/orchestrator/AgentRegistry.d.ts +0 -76
  1013. package/dist/orchestrator/AgentRegistry.d.ts.map +0 -1
  1014. package/dist/orchestrator/AgentRegistry.js +0 -217
  1015. package/dist/orchestrator/AgentRegistry.js.map +0 -1
  1016. package/dist/orchestrator/AgentRegistry.test.d.ts +0 -5
  1017. package/dist/orchestrator/AgentRegistry.test.d.ts.map +0 -1
  1018. package/dist/orchestrator/AgentRegistry.test.js +0 -122
  1019. package/dist/orchestrator/AgentRegistry.test.js.map +0 -1
  1020. package/dist/orchestrator/BackgroundManager.d.ts +0 -114
  1021. package/dist/orchestrator/BackgroundManager.d.ts.map +0 -1
  1022. package/dist/orchestrator/BackgroundManager.js +0 -517
  1023. package/dist/orchestrator/BackgroundManager.js.map +0 -1
  1024. package/dist/orchestrator/BackgroundManager.test.d.ts +0 -6
  1025. package/dist/orchestrator/BackgroundManager.test.d.ts.map +0 -1
  1026. package/dist/orchestrator/BackgroundManager.test.js +0 -162
  1027. package/dist/orchestrator/BackgroundManager.test.js.map +0 -1
  1028. package/dist/orchestrator/CheckpointManager.d.ts +0 -54
  1029. package/dist/orchestrator/CheckpointManager.d.ts.map +0 -1
  1030. package/dist/orchestrator/CheckpointManager.js +0 -121
  1031. package/dist/orchestrator/CheckpointManager.js.map +0 -1
  1032. package/dist/orchestrator/LLMCluster.d.ts +0 -91
  1033. package/dist/orchestrator/LLMCluster.d.ts.map +0 -1
  1034. package/dist/orchestrator/LLMCluster.js +0 -124
  1035. package/dist/orchestrator/LLMCluster.js.map +0 -1
  1036. package/dist/orchestrator/MultiLlmResearch.d.ts +0 -27
  1037. package/dist/orchestrator/MultiLlmResearch.d.ts.map +0 -1
  1038. package/dist/orchestrator/MultiLlmResearch.js +0 -145
  1039. package/dist/orchestrator/MultiLlmResearch.js.map +0 -1
  1040. package/dist/orchestrator/PhasePipeline.d.ts +0 -123
  1041. package/dist/orchestrator/PhasePipeline.d.ts.map +0 -1
  1042. package/dist/orchestrator/PhasePipeline.js +0 -382
  1043. package/dist/orchestrator/PhasePipeline.js.map +0 -1
  1044. package/dist/orchestrator/PhaseResultStore.d.ts +0 -39
  1045. package/dist/orchestrator/PhaseResultStore.d.ts.map +0 -1
  1046. package/dist/orchestrator/PhaseResultStore.js +0 -151
  1047. package/dist/orchestrator/PhaseResultStore.js.map +0 -1
  1048. package/dist/orchestrator/SessionStore.d.ts +0 -41
  1049. package/dist/orchestrator/SessionStore.d.ts.map +0 -1
  1050. package/dist/orchestrator/SessionStore.js +0 -117
  1051. package/dist/orchestrator/SessionStore.js.map +0 -1
  1052. package/dist/orchestrator/SmartRouter.d.ts +0 -77
  1053. package/dist/orchestrator/SmartRouter.d.ts.map +0 -1
  1054. package/dist/orchestrator/SmartRouter.js +0 -305
  1055. package/dist/orchestrator/SmartRouter.js.map +0 -1
  1056. package/dist/orchestrator/SwarmOrchestrator.d.ts +0 -144
  1057. package/dist/orchestrator/SwarmOrchestrator.d.ts.map +0 -1
  1058. package/dist/orchestrator/SwarmOrchestrator.js +0 -361
  1059. package/dist/orchestrator/SwarmOrchestrator.js.map +0 -1
  1060. package/dist/orchestrator/SwarmOrchestrator.test.d.ts +0 -5
  1061. package/dist/orchestrator/SwarmOrchestrator.test.d.ts.map +0 -1
  1062. package/dist/orchestrator/SwarmOrchestrator.test.js +0 -95
  1063. package/dist/orchestrator/SwarmOrchestrator.test.js.map +0 -1
  1064. package/dist/orchestrator/agentDiscovery.d.ts +0 -18
  1065. package/dist/orchestrator/agentDiscovery.d.ts.map +0 -1
  1066. package/dist/orchestrator/agentDiscovery.js +0 -175
  1067. package/dist/orchestrator/agentDiscovery.js.map +0 -1
  1068. package/dist/orchestrator/backgroundAgent.d.ts +0 -15
  1069. package/dist/orchestrator/backgroundAgent.d.ts.map +0 -1
  1070. package/dist/orchestrator/backgroundAgent.js +0 -16
  1071. package/dist/orchestrator/backgroundAgent.js.map +0 -1
  1072. package/dist/orchestrator/index.d.ts +0 -213
  1073. package/dist/orchestrator/index.d.ts.map +0 -1
  1074. package/dist/orchestrator/index.js +0 -391
  1075. package/dist/orchestrator/index.js.map +0 -1
  1076. package/dist/orchestrator/orchestrator.d.ts +0 -63
  1077. package/dist/orchestrator/orchestrator.d.ts.map +0 -1
  1078. package/dist/orchestrator/orchestrator.js +0 -217
  1079. package/dist/orchestrator/orchestrator.js.map +0 -1
  1080. package/dist/orchestrator/parallelResearch.d.ts +0 -30
  1081. package/dist/orchestrator/parallelResearch.d.ts.map +0 -1
  1082. package/dist/orchestrator/parallelResearch.js +0 -247
  1083. package/dist/orchestrator/parallelResearch.js.map +0 -1
  1084. package/dist/orchestrator/types.d.ts +0 -185
  1085. package/dist/orchestrator/types.d.ts.map +0 -1
  1086. package/dist/orchestrator/types.js +0 -21
  1087. package/dist/orchestrator/types.js.map +0 -1
  1088. package/dist/pc/CommandDispatcher.d.ts +0 -31
  1089. package/dist/pc/CommandDispatcher.d.ts.map +0 -1
  1090. package/dist/pc/CommandDispatcher.js +0 -132
  1091. package/dist/pc/CommandDispatcher.js.map +0 -1
  1092. package/dist/pc/CommandDispatcher.test.d.ts +0 -2
  1093. package/dist/pc/CommandDispatcher.test.d.ts.map +0 -1
  1094. package/dist/pc/CommandDispatcher.test.js +0 -360
  1095. package/dist/pc/CommandDispatcher.test.js.map +0 -1
  1096. package/dist/pc/ModuleRegistry.d.ts +0 -40
  1097. package/dist/pc/ModuleRegistry.d.ts.map +0 -1
  1098. package/dist/pc/ModuleRegistry.js +0 -163
  1099. package/dist/pc/ModuleRegistry.js.map +0 -1
  1100. package/dist/pc/ResultFormatter.d.ts +0 -27
  1101. package/dist/pc/ResultFormatter.d.ts.map +0 -1
  1102. package/dist/pc/ResultFormatter.js +0 -128
  1103. package/dist/pc/ResultFormatter.js.map +0 -1
  1104. package/dist/pc/ResultFormatter.test.d.ts +0 -2
  1105. package/dist/pc/ResultFormatter.test.d.ts.map +0 -1
  1106. package/dist/pc/ResultFormatter.test.js +0 -115
  1107. package/dist/pc/ResultFormatter.test.js.map +0 -1
  1108. package/dist/pc/SecurityGate.d.ts +0 -53
  1109. package/dist/pc/SecurityGate.d.ts.map +0 -1
  1110. package/dist/pc/SecurityGate.js +0 -142
  1111. package/dist/pc/SecurityGate.js.map +0 -1
  1112. package/dist/pc/SecurityGate.test.d.ts +0 -2
  1113. package/dist/pc/SecurityGate.test.d.ts.map +0 -1
  1114. package/dist/pc/SecurityGate.test.js +0 -160
  1115. package/dist/pc/SecurityGate.test.js.map +0 -1
  1116. package/dist/pc/SessionContext.d.ts +0 -31
  1117. package/dist/pc/SessionContext.d.ts.map +0 -1
  1118. package/dist/pc/SessionContext.js +0 -108
  1119. package/dist/pc/SessionContext.js.map +0 -1
  1120. package/dist/pc/browser/BrowserActions.d.ts +0 -22
  1121. package/dist/pc/browser/BrowserActions.d.ts.map +0 -1
  1122. package/dist/pc/browser/BrowserActions.js +0 -223
  1123. package/dist/pc/browser/BrowserActions.js.map +0 -1
  1124. package/dist/pc/browser/BrowserActions.test.d.ts +0 -7
  1125. package/dist/pc/browser/BrowserActions.test.d.ts.map +0 -1
  1126. package/dist/pc/browser/BrowserActions.test.js +0 -150
  1127. package/dist/pc/browser/BrowserActions.test.js.map +0 -1
  1128. package/dist/pc/browser/BrowserService.d.ts +0 -66
  1129. package/dist/pc/browser/BrowserService.d.ts.map +0 -1
  1130. package/dist/pc/browser/BrowserService.js +0 -319
  1131. package/dist/pc/browser/BrowserService.js.map +0 -1
  1132. package/dist/pc/browser/BrowserService.test.d.ts +0 -7
  1133. package/dist/pc/browser/BrowserService.test.d.ts.map +0 -1
  1134. package/dist/pc/browser/BrowserService.test.js +0 -160
  1135. package/dist/pc/browser/BrowserService.test.js.map +0 -1
  1136. package/dist/pc/browser/RefLocator.d.ts +0 -39
  1137. package/dist/pc/browser/RefLocator.d.ts.map +0 -1
  1138. package/dist/pc/browser/RefLocator.js +0 -88
  1139. package/dist/pc/browser/RefLocator.js.map +0 -1
  1140. package/dist/pc/browser/RoleSnapshotManager.d.ts +0 -22
  1141. package/dist/pc/browser/RoleSnapshotManager.d.ts.map +0 -1
  1142. package/dist/pc/browser/RoleSnapshotManager.js +0 -143
  1143. package/dist/pc/browser/RoleSnapshotManager.js.map +0 -1
  1144. package/dist/pc/browser/RoleSnapshotManager.test.d.ts +0 -7
  1145. package/dist/pc/browser/RoleSnapshotManager.test.d.ts.map +0 -1
  1146. package/dist/pc/browser/RoleSnapshotManager.test.js +0 -152
  1147. package/dist/pc/browser/RoleSnapshotManager.test.js.map +0 -1
  1148. package/dist/pc/browser/Security.test.d.ts +0 -7
  1149. package/dist/pc/browser/Security.test.d.ts.map +0 -1
  1150. package/dist/pc/browser/Security.test.js +0 -171
  1151. package/dist/pc/browser/Security.test.js.map +0 -1
  1152. package/dist/pc/browser/types.d.ts +0 -142
  1153. package/dist/pc/browser/types.d.ts.map +0 -1
  1154. package/dist/pc/browser/types.js +0 -60
  1155. package/dist/pc/browser/types.js.map +0 -1
  1156. package/dist/pc/google/OAuthFlow.d.ts +0 -58
  1157. package/dist/pc/google/OAuthFlow.d.ts.map +0 -1
  1158. package/dist/pc/google/OAuthFlow.js +0 -322
  1159. package/dist/pc/google/OAuthFlow.js.map +0 -1
  1160. package/dist/pc/google/OAuthFlow.test.d.ts +0 -7
  1161. package/dist/pc/google/OAuthFlow.test.d.ts.map +0 -1
  1162. package/dist/pc/google/OAuthFlow.test.js +0 -178
  1163. package/dist/pc/google/OAuthFlow.test.js.map +0 -1
  1164. package/dist/pc/google/ScopeManager.d.ts +0 -28
  1165. package/dist/pc/google/ScopeManager.d.ts.map +0 -1
  1166. package/dist/pc/google/ScopeManager.js +0 -75
  1167. package/dist/pc/google/ScopeManager.js.map +0 -1
  1168. package/dist/pc/google/TokenStore.d.ts +0 -49
  1169. package/dist/pc/google/TokenStore.d.ts.map +0 -1
  1170. package/dist/pc/google/TokenStore.js +0 -324
  1171. package/dist/pc/google/TokenStore.js.map +0 -1
  1172. package/dist/pc/google/TokenStore.test.d.ts +0 -7
  1173. package/dist/pc/google/TokenStore.test.d.ts.map +0 -1
  1174. package/dist/pc/google/TokenStore.test.js +0 -134
  1175. package/dist/pc/google/TokenStore.test.js.map +0 -1
  1176. package/dist/pc/google/services/CalendarService.d.ts +0 -45
  1177. package/dist/pc/google/services/CalendarService.d.ts.map +0 -1
  1178. package/dist/pc/google/services/CalendarService.js +0 -148
  1179. package/dist/pc/google/services/CalendarService.js.map +0 -1
  1180. package/dist/pc/google/services/DriveService.d.ts +0 -33
  1181. package/dist/pc/google/services/DriveService.d.ts.map +0 -1
  1182. package/dist/pc/google/services/DriveService.js +0 -199
  1183. package/dist/pc/google/services/DriveService.js.map +0 -1
  1184. package/dist/pc/google/services/GmailService.d.ts +0 -50
  1185. package/dist/pc/google/services/GmailService.d.ts.map +0 -1
  1186. package/dist/pc/google/services/GmailService.js +0 -177
  1187. package/dist/pc/google/services/GmailService.js.map +0 -1
  1188. package/dist/pc/google/services/Services.test.d.ts +0 -8
  1189. package/dist/pc/google/services/Services.test.d.ts.map +0 -1
  1190. package/dist/pc/google/services/Services.test.js +0 -148
  1191. package/dist/pc/google/services/Services.test.js.map +0 -1
  1192. package/dist/pc/google/services/SheetsService.d.ts +0 -27
  1193. package/dist/pc/google/services/SheetsService.d.ts.map +0 -1
  1194. package/dist/pc/google/services/SheetsService.js +0 -107
  1195. package/dist/pc/google/services/SheetsService.js.map +0 -1
  1196. package/dist/pc/google/types.d.ts +0 -97
  1197. package/dist/pc/google/types.d.ts.map +0 -1
  1198. package/dist/pc/google/types.js +0 -39
  1199. package/dist/pc/google/types.js.map +0 -1
  1200. package/dist/pc/google/types.test.d.ts +0 -8
  1201. package/dist/pc/google/types.test.d.ts.map +0 -1
  1202. package/dist/pc/google/types.test.js +0 -131
  1203. package/dist/pc/google/types.test.js.map +0 -1
  1204. package/dist/pc/sandbox/ContainerConfig.d.ts +0 -24
  1205. package/dist/pc/sandbox/ContainerConfig.d.ts.map +0 -1
  1206. package/dist/pc/sandbox/ContainerConfig.js +0 -103
  1207. package/dist/pc/sandbox/ContainerConfig.js.map +0 -1
  1208. package/dist/pc/sandbox/ContainerManager.d.ts +0 -31
  1209. package/dist/pc/sandbox/ContainerManager.d.ts.map +0 -1
  1210. package/dist/pc/sandbox/ContainerManager.js +0 -245
  1211. package/dist/pc/sandbox/ContainerManager.js.map +0 -1
  1212. package/dist/pc/sandbox/ContainerManager.test.d.ts +0 -2
  1213. package/dist/pc/sandbox/ContainerManager.test.d.ts.map +0 -1
  1214. package/dist/pc/sandbox/ContainerManager.test.js +0 -249
  1215. package/dist/pc/sandbox/ContainerManager.test.js.map +0 -1
  1216. package/dist/pc/sandbox/ExecAllowlist.d.ts +0 -35
  1217. package/dist/pc/sandbox/ExecAllowlist.d.ts.map +0 -1
  1218. package/dist/pc/sandbox/ExecAllowlist.js +0 -148
  1219. package/dist/pc/sandbox/ExecAllowlist.js.map +0 -1
  1220. package/dist/pc/sandbox/ExecAllowlist.test.d.ts +0 -2
  1221. package/dist/pc/sandbox/ExecAllowlist.test.d.ts.map +0 -1
  1222. package/dist/pc/sandbox/ExecAllowlist.test.js +0 -210
  1223. package/dist/pc/sandbox/ExecAllowlist.test.js.map +0 -1
  1224. package/dist/pc/sandbox/SandboxBrowser.d.ts +0 -29
  1225. package/dist/pc/sandbox/SandboxBrowser.d.ts.map +0 -1
  1226. package/dist/pc/sandbox/SandboxBrowser.js +0 -72
  1227. package/dist/pc/sandbox/SandboxBrowser.js.map +0 -1
  1228. package/dist/pc/sandbox/ToolPolicy.d.ts +0 -24
  1229. package/dist/pc/sandbox/ToolPolicy.d.ts.map +0 -1
  1230. package/dist/pc/sandbox/ToolPolicy.js +0 -127
  1231. package/dist/pc/sandbox/ToolPolicy.js.map +0 -1
  1232. package/dist/pc/sandbox/ToolPolicy.test.d.ts +0 -2
  1233. package/dist/pc/sandbox/ToolPolicy.test.d.ts.map +0 -1
  1234. package/dist/pc/sandbox/ToolPolicy.test.js +0 -189
  1235. package/dist/pc/sandbox/ToolPolicy.test.js.map +0 -1
  1236. package/dist/pc/sandbox/types.d.ts +0 -109
  1237. package/dist/pc/sandbox/types.d.ts.map +0 -1
  1238. package/dist/pc/sandbox/types.js +0 -26
  1239. package/dist/pc/sandbox/types.js.map +0 -1
  1240. package/dist/pc/types.d.ts +0 -84
  1241. package/dist/pc/types.d.ts.map +0 -1
  1242. package/dist/pc/types.js +0 -7
  1243. package/dist/pc/types.js.map +0 -1
  1244. package/dist/policy/Evidence.d.ts +0 -30
  1245. package/dist/policy/Evidence.d.ts.map +0 -1
  1246. package/dist/policy/Evidence.js +0 -134
  1247. package/dist/policy/Evidence.js.map +0 -1
  1248. package/dist/policy/PolicyEngine.d.ts +0 -34
  1249. package/dist/policy/PolicyEngine.d.ts.map +0 -1
  1250. package/dist/policy/PolicyEngine.js +0 -219
  1251. package/dist/policy/PolicyEngine.js.map +0 -1
  1252. package/dist/policy/PolicyStore.d.ts +0 -36
  1253. package/dist/policy/PolicyStore.d.ts.map +0 -1
  1254. package/dist/policy/PolicyStore.js +0 -160
  1255. package/dist/policy/PolicyStore.js.map +0 -1
  1256. package/dist/policy/RiskCalculator.d.ts +0 -20
  1257. package/dist/policy/RiskCalculator.d.ts.map +0 -1
  1258. package/dist/policy/RiskCalculator.js +0 -64
  1259. package/dist/policy/RiskCalculator.js.map +0 -1
  1260. package/dist/policy/default-policies.d.ts +0 -13
  1261. package/dist/policy/default-policies.d.ts.map +0 -1
  1262. package/dist/policy/default-policies.js +0 -99
  1263. package/dist/policy/default-policies.js.map +0 -1
  1264. package/dist/policy/index.d.ts +0 -11
  1265. package/dist/policy/index.d.ts.map +0 -1
  1266. package/dist/policy/index.js +0 -10
  1267. package/dist/policy/index.js.map +0 -1
  1268. package/dist/policy/policy.test.d.ts +0 -5
  1269. package/dist/policy/policy.test.d.ts.map +0 -1
  1270. package/dist/policy/policy.test.js +0 -628
  1271. package/dist/policy/policy.test.js.map +0 -1
  1272. package/dist/policy/types.d.ts +0 -71
  1273. package/dist/policy/types.d.ts.map +0 -1
  1274. package/dist/policy/types.js +0 -18
  1275. package/dist/policy/types.js.map +0 -1
  1276. package/dist/router/ModelARouter.d.ts +0 -79
  1277. package/dist/router/ModelARouter.d.ts.map +0 -1
  1278. package/dist/router/ModelARouter.js +0 -325
  1279. package/dist/router/ModelARouter.js.map +0 -1
  1280. package/dist/router/ModelARouter.test.d.ts +0 -6
  1281. package/dist/router/ModelARouter.test.d.ts.map +0 -1
  1282. package/dist/router/ModelARouter.test.js +0 -100
  1283. package/dist/router/ModelARouter.test.js.map +0 -1
  1284. package/dist/router/MultiChannelRouter.d.ts +0 -54
  1285. package/dist/router/MultiChannelRouter.d.ts.map +0 -1
  1286. package/dist/router/MultiChannelRouter.js +0 -138
  1287. package/dist/router/MultiChannelRouter.js.map +0 -1
  1288. package/dist/router/RouteRegistry.d.ts +0 -23
  1289. package/dist/router/RouteRegistry.d.ts.map +0 -1
  1290. package/dist/router/RouteRegistry.js +0 -42
  1291. package/dist/router/RouteRegistry.js.map +0 -1
  1292. package/dist/router/browser/BrowserAgent.d.ts +0 -30
  1293. package/dist/router/browser/BrowserAgent.d.ts.map +0 -1
  1294. package/dist/router/browser/BrowserAgent.js +0 -232
  1295. package/dist/router/browser/BrowserAgent.js.map +0 -1
  1296. package/dist/router/browser/BrowserManager.d.ts +0 -36
  1297. package/dist/router/browser/BrowserManager.d.ts.map +0 -1
  1298. package/dist/router/browser/BrowserManager.js +0 -106
  1299. package/dist/router/browser/BrowserManager.js.map +0 -1
  1300. package/dist/router/browser/BrowserPool.d.ts +0 -37
  1301. package/dist/router/browser/BrowserPool.d.ts.map +0 -1
  1302. package/dist/router/browser/BrowserPool.js +0 -114
  1303. package/dist/router/browser/BrowserPool.js.map +0 -1
  1304. package/dist/router/handlers/GitOpsHandler.d.ts +0 -24
  1305. package/dist/router/handlers/GitOpsHandler.d.ts.map +0 -1
  1306. package/dist/router/handlers/GitOpsHandler.js +0 -66
  1307. package/dist/router/handlers/GitOpsHandler.js.map +0 -1
  1308. package/dist/router/index.d.ts +0 -22
  1309. package/dist/router/index.d.ts.map +0 -1
  1310. package/dist/router/index.js +0 -29
  1311. package/dist/router/index.js.map +0 -1
  1312. package/dist/router/index.test.d.ts +0 -2
  1313. package/dist/router/index.test.d.ts.map +0 -1
  1314. package/dist/router/index.test.js +0 -78
  1315. package/dist/router/index.test.js.map +0 -1
  1316. package/dist/router/notifications/NotificationManager.d.ts +0 -37
  1317. package/dist/router/notifications/NotificationManager.d.ts.map +0 -1
  1318. package/dist/router/notifications/NotificationManager.js +0 -118
  1319. package/dist/router/notifications/NotificationManager.js.map +0 -1
  1320. package/dist/router/planner/TaskExecutor.d.ts +0 -48
  1321. package/dist/router/planner/TaskExecutor.d.ts.map +0 -1
  1322. package/dist/router/planner/TaskExecutor.js +0 -160
  1323. package/dist/router/planner/TaskExecutor.js.map +0 -1
  1324. package/dist/router/planner/TaskExecutor.test.d.ts +0 -6
  1325. package/dist/router/planner/TaskExecutor.test.d.ts.map +0 -1
  1326. package/dist/router/planner/TaskExecutor.test.js +0 -121
  1327. package/dist/router/planner/TaskExecutor.test.js.map +0 -1
  1328. package/dist/router/planner/TaskPlanner.d.ts +0 -37
  1329. package/dist/router/planner/TaskPlanner.d.ts.map +0 -1
  1330. package/dist/router/planner/TaskPlanner.js +0 -176
  1331. package/dist/router/planner/TaskPlanner.js.map +0 -1
  1332. package/dist/router/planner/TaskPlanner.test.d.ts +0 -6
  1333. package/dist/router/planner/TaskPlanner.test.d.ts.map +0 -1
  1334. package/dist/router/planner/TaskPlanner.test.js +0 -119
  1335. package/dist/router/planner/TaskPlanner.test.js.map +0 -1
  1336. package/dist/router/qa/TelegramQABridge.d.ts +0 -37
  1337. package/dist/router/qa/TelegramQABridge.d.ts.map +0 -1
  1338. package/dist/router/qa/TelegramQABridge.js +0 -147
  1339. package/dist/router/qa/TelegramQABridge.js.map +0 -1
  1340. package/dist/router/qa/TelegramQABridge.test.d.ts +0 -6
  1341. package/dist/router/qa/TelegramQABridge.test.d.ts.map +0 -1
  1342. package/dist/router/qa/TelegramQABridge.test.js +0 -143
  1343. package/dist/router/qa/TelegramQABridge.test.js.map +0 -1
  1344. package/dist/router/resolvers/RepoResolver.d.ts +0 -29
  1345. package/dist/router/resolvers/RepoResolver.d.ts.map +0 -1
  1346. package/dist/router/resolvers/RepoResolver.js +0 -105
  1347. package/dist/router/resolvers/RepoResolver.js.map +0 -1
  1348. package/dist/router/resolvers/RepoResolver.test.d.ts +0 -6
  1349. package/dist/router/resolvers/RepoResolver.test.d.ts.map +0 -1
  1350. package/dist/router/resolvers/RepoResolver.test.js +0 -92
  1351. package/dist/router/resolvers/RepoResolver.test.js.map +0 -1
  1352. package/dist/router/routes/BaseRoute.d.ts +0 -22
  1353. package/dist/router/routes/BaseRoute.d.ts.map +0 -1
  1354. package/dist/router/routes/BaseRoute.js +0 -55
  1355. package/dist/router/routes/BaseRoute.js.map +0 -1
  1356. package/dist/router/routes/BrowseRoute.d.ts +0 -21
  1357. package/dist/router/routes/BrowseRoute.d.ts.map +0 -1
  1358. package/dist/router/routes/BrowseRoute.js +0 -121
  1359. package/dist/router/routes/BrowseRoute.js.map +0 -1
  1360. package/dist/router/routes/CompositeRoute.d.ts +0 -28
  1361. package/dist/router/routes/CompositeRoute.d.ts.map +0 -1
  1362. package/dist/router/routes/CompositeRoute.js +0 -125
  1363. package/dist/router/routes/CompositeRoute.js.map +0 -1
  1364. package/dist/router/routes/CompositeRoute.test.d.ts +0 -6
  1365. package/dist/router/routes/CompositeRoute.test.d.ts.map +0 -1
  1366. package/dist/router/routes/CompositeRoute.test.js +0 -82
  1367. package/dist/router/routes/CompositeRoute.test.js.map +0 -1
  1368. package/dist/router/routes/DevRoute.d.ts +0 -26
  1369. package/dist/router/routes/DevRoute.d.ts.map +0 -1
  1370. package/dist/router/routes/DevRoute.js +0 -118
  1371. package/dist/router/routes/DevRoute.js.map +0 -1
  1372. package/dist/router/routes/GoogleRoute.d.ts +0 -46
  1373. package/dist/router/routes/GoogleRoute.d.ts.map +0 -1
  1374. package/dist/router/routes/GoogleRoute.js +0 -293
  1375. package/dist/router/routes/GoogleRoute.js.map +0 -1
  1376. package/dist/router/routes/GoogleRoute.test.d.ts +0 -6
  1377. package/dist/router/routes/GoogleRoute.test.d.ts.map +0 -1
  1378. package/dist/router/routes/GoogleRoute.test.js +0 -171
  1379. package/dist/router/routes/GoogleRoute.test.js.map +0 -1
  1380. package/dist/router/routes/MonitorRoute.d.ts +0 -25
  1381. package/dist/router/routes/MonitorRoute.d.ts.map +0 -1
  1382. package/dist/router/routes/MonitorRoute.js +0 -112
  1383. package/dist/router/routes/MonitorRoute.js.map +0 -1
  1384. package/dist/router/routes/MonitorRoute.test.d.ts +0 -6
  1385. package/dist/router/routes/MonitorRoute.test.d.ts.map +0 -1
  1386. package/dist/router/routes/MonitorRoute.test.js +0 -97
  1387. package/dist/router/routes/MonitorRoute.test.js.map +0 -1
  1388. package/dist/router/routes/ResearchRoute.d.ts +0 -25
  1389. package/dist/router/routes/ResearchRoute.d.ts.map +0 -1
  1390. package/dist/router/routes/ResearchRoute.js +0 -113
  1391. package/dist/router/routes/ResearchRoute.js.map +0 -1
  1392. package/dist/router/routes/ResearchRoute.test.d.ts +0 -6
  1393. package/dist/router/routes/ResearchRoute.test.d.ts.map +0 -1
  1394. package/dist/router/routes/ResearchRoute.test.js +0 -104
  1395. package/dist/router/routes/ResearchRoute.test.js.map +0 -1
  1396. package/dist/router/routes/UtilityRoute.d.ts +0 -32
  1397. package/dist/router/routes/UtilityRoute.d.ts.map +0 -1
  1398. package/dist/router/routes/UtilityRoute.js +0 -144
  1399. package/dist/router/routes/UtilityRoute.js.map +0 -1
  1400. package/dist/router/routes/UtilityRoute.test.d.ts +0 -6
  1401. package/dist/router/routes/UtilityRoute.test.d.ts.map +0 -1
  1402. package/dist/router/routes/UtilityRoute.test.js +0 -134
  1403. package/dist/router/routes/UtilityRoute.test.js.map +0 -1
  1404. package/dist/router/services/BookmarkService.d.ts +0 -34
  1405. package/dist/router/services/BookmarkService.d.ts.map +0 -1
  1406. package/dist/router/services/BookmarkService.js +0 -86
  1407. package/dist/router/services/BookmarkService.js.map +0 -1
  1408. package/dist/router/services/BookmarkService.test.d.ts +0 -6
  1409. package/dist/router/services/BookmarkService.test.d.ts.map +0 -1
  1410. package/dist/router/services/BookmarkService.test.js +0 -82
  1411. package/dist/router/services/BookmarkService.test.js.map +0 -1
  1412. package/dist/router/services/CalendarService.d.ts +0 -30
  1413. package/dist/router/services/CalendarService.d.ts.map +0 -1
  1414. package/dist/router/services/CalendarService.js +0 -168
  1415. package/dist/router/services/CalendarService.js.map +0 -1
  1416. package/dist/router/services/CalendarService.test.d.ts +0 -6
  1417. package/dist/router/services/CalendarService.test.d.ts.map +0 -1
  1418. package/dist/router/services/CalendarService.test.js +0 -107
  1419. package/dist/router/services/CalendarService.test.js.map +0 -1
  1420. package/dist/router/services/ContentSummarizer.d.ts +0 -32
  1421. package/dist/router/services/ContentSummarizer.d.ts.map +0 -1
  1422. package/dist/router/services/ContentSummarizer.js +0 -108
  1423. package/dist/router/services/ContentSummarizer.js.map +0 -1
  1424. package/dist/router/services/ContentSummarizer.test.d.ts +0 -6
  1425. package/dist/router/services/ContentSummarizer.test.d.ts.map +0 -1
  1426. package/dist/router/services/ContentSummarizer.test.js +0 -82
  1427. package/dist/router/services/ContentSummarizer.test.js.map +0 -1
  1428. package/dist/router/services/DailyReportGenerator.d.ts +0 -34
  1429. package/dist/router/services/DailyReportGenerator.d.ts.map +0 -1
  1430. package/dist/router/services/DailyReportGenerator.js +0 -110
  1431. package/dist/router/services/DailyReportGenerator.js.map +0 -1
  1432. package/dist/router/services/DocumentGenerator.d.ts +0 -20
  1433. package/dist/router/services/DocumentGenerator.d.ts.map +0 -1
  1434. package/dist/router/services/DocumentGenerator.js +0 -34
  1435. package/dist/router/services/DocumentGenerator.js.map +0 -1
  1436. package/dist/router/services/DriveService.d.ts +0 -29
  1437. package/dist/router/services/DriveService.d.ts.map +0 -1
  1438. package/dist/router/services/DriveService.js +0 -176
  1439. package/dist/router/services/DriveService.js.map +0 -1
  1440. package/dist/router/services/DriveService.test.d.ts +0 -6
  1441. package/dist/router/services/DriveService.test.d.ts.map +0 -1
  1442. package/dist/router/services/DriveService.test.js +0 -83
  1443. package/dist/router/services/DriveService.test.js.map +0 -1
  1444. package/dist/router/services/FileAnalyzer.d.ts +0 -26
  1445. package/dist/router/services/FileAnalyzer.d.ts.map +0 -1
  1446. package/dist/router/services/FileAnalyzer.js +0 -82
  1447. package/dist/router/services/FileAnalyzer.js.map +0 -1
  1448. package/dist/router/services/GitHubMonitor.d.ts +0 -38
  1449. package/dist/router/services/GitHubMonitor.d.ts.map +0 -1
  1450. package/dist/router/services/GitHubMonitor.js +0 -82
  1451. package/dist/router/services/GitHubMonitor.js.map +0 -1
  1452. package/dist/router/services/GitHubMonitor.test.d.ts +0 -6
  1453. package/dist/router/services/GitHubMonitor.test.d.ts.map +0 -1
  1454. package/dist/router/services/GitHubMonitor.test.js +0 -103
  1455. package/dist/router/services/GitHubMonitor.test.js.map +0 -1
  1456. package/dist/router/services/GmailService.d.ts +0 -28
  1457. package/dist/router/services/GmailService.d.ts.map +0 -1
  1458. package/dist/router/services/GmailService.js +0 -169
  1459. package/dist/router/services/GmailService.js.map +0 -1
  1460. package/dist/router/services/GmailService.test.d.ts +0 -6
  1461. package/dist/router/services/GmailService.test.d.ts.map +0 -1
  1462. package/dist/router/services/GmailService.test.js +0 -113
  1463. package/dist/router/services/GmailService.test.js.map +0 -1
  1464. package/dist/router/services/GoogleAuthManager.d.ts +0 -31
  1465. package/dist/router/services/GoogleAuthManager.d.ts.map +0 -1
  1466. package/dist/router/services/GoogleAuthManager.js +0 -219
  1467. package/dist/router/services/GoogleAuthManager.js.map +0 -1
  1468. package/dist/router/services/GoogleAuthManager.test.d.ts +0 -6
  1469. package/dist/router/services/GoogleAuthManager.test.d.ts.map +0 -1
  1470. package/dist/router/services/GoogleAuthManager.test.js +0 -153
  1471. package/dist/router/services/GoogleAuthManager.test.js.map +0 -1
  1472. package/dist/router/services/ImageGenerator.d.ts +0 -20
  1473. package/dist/router/services/ImageGenerator.d.ts.map +0 -1
  1474. package/dist/router/services/ImageGenerator.js +0 -41
  1475. package/dist/router/services/ImageGenerator.js.map +0 -1
  1476. package/dist/router/services/NoteService.d.ts +0 -36
  1477. package/dist/router/services/NoteService.d.ts.map +0 -1
  1478. package/dist/router/services/NoteService.js +0 -125
  1479. package/dist/router/services/NoteService.js.map +0 -1
  1480. package/dist/router/services/NoteService.test.d.ts +0 -6
  1481. package/dist/router/services/NoteService.test.d.ts.map +0 -1
  1482. package/dist/router/services/NoteService.test.js +0 -90
  1483. package/dist/router/services/NoteService.test.js.map +0 -1
  1484. package/dist/router/services/ProgressReporter.d.ts +0 -32
  1485. package/dist/router/services/ProgressReporter.d.ts.map +0 -1
  1486. package/dist/router/services/ProgressReporter.js +0 -81
  1487. package/dist/router/services/ProgressReporter.js.map +0 -1
  1488. package/dist/router/services/SchedulerEngine.d.ts +0 -55
  1489. package/dist/router/services/SchedulerEngine.d.ts.map +0 -1
  1490. package/dist/router/services/SchedulerEngine.js +0 -215
  1491. package/dist/router/services/SchedulerEngine.js.map +0 -1
  1492. package/dist/router/services/SchedulerEngine.test.d.ts +0 -6
  1493. package/dist/router/services/SchedulerEngine.test.d.ts.map +0 -1
  1494. package/dist/router/services/SchedulerEngine.test.js +0 -102
  1495. package/dist/router/services/SchedulerEngine.test.js.map +0 -1
  1496. package/dist/router/services/ScreenshotService.d.ts +0 -22
  1497. package/dist/router/services/ScreenshotService.d.ts.map +0 -1
  1498. package/dist/router/services/ScreenshotService.js +0 -39
  1499. package/dist/router/services/ScreenshotService.js.map +0 -1
  1500. package/dist/router/services/SheetsService.d.ts +0 -27
  1501. package/dist/router/services/SheetsService.d.ts.map +0 -1
  1502. package/dist/router/services/SheetsService.js +0 -91
  1503. package/dist/router/services/SheetsService.js.map +0 -1
  1504. package/dist/router/services/SheetsService.test.d.ts +0 -6
  1505. package/dist/router/services/SheetsService.test.d.ts.map +0 -1
  1506. package/dist/router/services/SheetsService.test.js +0 -86
  1507. package/dist/router/services/SheetsService.test.js.map +0 -1
  1508. package/dist/router/services/TranslationService.d.ts +0 -21
  1509. package/dist/router/services/TranslationService.d.ts.map +0 -1
  1510. package/dist/router/services/TranslationService.js +0 -76
  1511. package/dist/router/services/TranslationService.js.map +0 -1
  1512. package/dist/router/services/TranslationService.test.d.ts +0 -6
  1513. package/dist/router/services/TranslationService.test.d.ts.map +0 -1
  1514. package/dist/router/services/TranslationService.test.js +0 -61
  1515. package/dist/router/services/TranslationService.test.js.map +0 -1
  1516. package/dist/router/services/WebSearchService.d.ts +0 -24
  1517. package/dist/router/services/WebSearchService.d.ts.map +0 -1
  1518. package/dist/router/services/WebSearchService.js +0 -78
  1519. package/dist/router/services/WebSearchService.js.map +0 -1
  1520. package/dist/router/services/WebSearchService.test.d.ts +0 -6
  1521. package/dist/router/services/WebSearchService.test.d.ts.map +0 -1
  1522. package/dist/router/services/WebSearchService.test.js +0 -75
  1523. package/dist/router/services/WebSearchService.test.js.map +0 -1
  1524. package/dist/router/services/YouTubeService.d.ts +0 -30
  1525. package/dist/router/services/YouTubeService.d.ts.map +0 -1
  1526. package/dist/router/services/YouTubeService.js +0 -145
  1527. package/dist/router/services/YouTubeService.js.map +0 -1
  1528. package/dist/router/services/YouTubeService.test.d.ts +0 -6
  1529. package/dist/router/services/YouTubeService.test.d.ts.map +0 -1
  1530. package/dist/router/services/YouTubeService.test.js +0 -128
  1531. package/dist/router/services/YouTubeService.test.js.map +0 -1
  1532. package/dist/router/services/google-types.d.ts +0 -222
  1533. package/dist/router/services/google-types.d.ts.map +0 -1
  1534. package/dist/router/services/google-types.js +0 -6
  1535. package/dist/router/services/google-types.js.map +0 -1
  1536. package/dist/router/sessions/DevSessionManager.d.ts +0 -39
  1537. package/dist/router/sessions/DevSessionManager.d.ts.map +0 -1
  1538. package/dist/router/sessions/DevSessionManager.js +0 -151
  1539. package/dist/router/sessions/DevSessionManager.js.map +0 -1
  1540. package/dist/router/types.d.ts +0 -117
  1541. package/dist/router/types.d.ts.map +0 -1
  1542. package/dist/router/types.js +0 -25
  1543. package/dist/router/types.js.map +0 -1
  1544. package/dist/sync/ConflictResolver.d.ts +0 -29
  1545. package/dist/sync/ConflictResolver.d.ts.map +0 -1
  1546. package/dist/sync/ConflictResolver.js +0 -106
  1547. package/dist/sync/ConflictResolver.js.map +0 -1
  1548. package/dist/sync/DataSerializer.d.ts +0 -33
  1549. package/dist/sync/DataSerializer.d.ts.map +0 -1
  1550. package/dist/sync/DataSerializer.js +0 -207
  1551. package/dist/sync/DataSerializer.js.map +0 -1
  1552. package/dist/sync/DeviceManager.d.ts +0 -31
  1553. package/dist/sync/DeviceManager.d.ts.map +0 -1
  1554. package/dist/sync/DeviceManager.js +0 -141
  1555. package/dist/sync/DeviceManager.js.map +0 -1
  1556. package/dist/sync/SyncEngine.d.ts +0 -56
  1557. package/dist/sync/SyncEngine.d.ts.map +0 -1
  1558. package/dist/sync/SyncEngine.js +0 -172
  1559. package/dist/sync/SyncEngine.js.map +0 -1
  1560. package/dist/sync/SyncStore.d.ts +0 -46
  1561. package/dist/sync/SyncStore.d.ts.map +0 -1
  1562. package/dist/sync/SyncStore.js +0 -219
  1563. package/dist/sync/SyncStore.js.map +0 -1
  1564. package/dist/sync/index.d.ts +0 -12
  1565. package/dist/sync/index.d.ts.map +0 -1
  1566. package/dist/sync/index.js +0 -11
  1567. package/dist/sync/index.js.map +0 -1
  1568. package/dist/sync/sync.test.d.ts +0 -5
  1569. package/dist/sync/sync.test.d.ts.map +0 -1
  1570. package/dist/sync/sync.test.js +0 -416
  1571. package/dist/sync/sync.test.js.map +0 -1
  1572. package/dist/sync/types.d.ts +0 -80
  1573. package/dist/sync/types.d.ts.map +0 -1
  1574. package/dist/sync/types.js +0 -12
  1575. package/dist/sync/types.js.map +0 -1
  1576. package/dist/tools/browser/index.d.ts +0 -47
  1577. package/dist/tools/browser/index.d.ts.map +0 -1
  1578. package/dist/tools/browser/index.js +0 -413
  1579. package/dist/tools/browser/index.js.map +0 -1
  1580. package/dist/tools/google/index.d.ts +0 -84
  1581. package/dist/tools/google/index.d.ts.map +0 -1
  1582. package/dist/tools/google/index.js +0 -508
  1583. package/dist/tools/google/index.js.map +0 -1
  1584. package/dist/tools/integration/index.d.ts +0 -24
  1585. package/dist/tools/integration/index.d.ts.map +0 -1
  1586. package/dist/tools/integration/index.js +0 -223
  1587. package/dist/tools/integration/index.js.map +0 -1
  1588. package/dist/tools/sandbox/index.d.ts +0 -25
  1589. package/dist/tools/sandbox/index.d.ts.map +0 -1
  1590. package/dist/tools/sandbox/index.js +0 -255
  1591. package/dist/tools/sandbox/index.js.map +0 -1
  1592. package/dist/tools/vision/index.d.ts +0 -45
  1593. package/dist/tools/vision/index.d.ts.map +0 -1
  1594. package/dist/tools/vision/index.js +0 -328
  1595. package/dist/tools/vision/index.js.map +0 -1
  1596. package/dist/tools/voice/index.d.ts +0 -24
  1597. package/dist/tools/voice/index.d.ts.map +0 -1
  1598. package/dist/tools/voice/index.js +0 -204
  1599. package/dist/tools/voice/index.js.map +0 -1
  1600. package/dist/types/tool.d.ts +0 -64
  1601. package/dist/types/tool.d.ts.map +0 -1
  1602. package/dist/types/tool.js +0 -3
  1603. package/dist/types/tool.js.map +0 -1
@@ -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