ai-qakit 1.0.0

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 (875) hide show
  1. package/README.md +240 -0
  2. package/dist/cli.d.ts +2 -0
  3. package/dist/cli.js +208 -0
  4. package/dist/commands/clean.d.ts +10 -0
  5. package/dist/commands/clean.js +53 -0
  6. package/dist/commands/init.d.ts +20 -0
  7. package/dist/commands/init.js +195 -0
  8. package/dist/index.d.ts +3 -0
  9. package/dist/index.js +2 -0
  10. package/dist/utils/file-operations.d.ts +18 -0
  11. package/dist/utils/file-operations.js +79 -0
  12. package/dist/utils/git.d.ts +4 -0
  13. package/dist/utils/git.js +27 -0
  14. package/dist/utils/index.d.ts +5 -0
  15. package/dist/utils/index.js +5 -0
  16. package/dist/utils/logger.d.ts +22 -0
  17. package/dist/utils/logger.js +23 -0
  18. package/dist/utils/manifest.d.ts +37 -0
  19. package/dist/utils/manifest.js +120 -0
  20. package/dist/utils/package.d.ts +19 -0
  21. package/dist/utils/package.js +47 -0
  22. package/package.json +61 -0
  23. package/templates/.antigravity/agents/qa-agents.yaml +50 -0
  24. package/templates/.antigravity/prompts/qa-prompts.md +56 -0
  25. package/templates/.claude/.scoutignore +33 -0
  26. package/templates/.claude/CHANGELOG.md +587 -0
  27. package/templates/.claude/CLAUDE.md +335 -0
  28. package/templates/.claude/README.md +428 -0
  29. package/templates/.claude/TROUBLESHOOTING.md +789 -0
  30. package/templates/.claude/agents/accessibility-tester.md +29 -0
  31. package/templates/.claude/agents/api-tester.md +29 -0
  32. package/templates/.claude/agents/automation-engineer.md +30 -0
  33. package/templates/.claude/agents/brainstormer.md +123 -0
  34. package/templates/.claude/agents/bug-hunter.md +30 -0
  35. package/templates/.claude/agents/claude-optimizer.md +221 -0
  36. package/templates/.claude/agents/code-reviewer.md +176 -0
  37. package/templates/.claude/agents/code-simplifier.md +103 -0
  38. package/templates/.claude/agents/coder.md +163 -0
  39. package/templates/.claude/agents/context-manager.md +110 -0
  40. package/templates/.claude/agents/cunningham.md +134 -0
  41. package/templates/.claude/agents/database-admin.md +112 -0
  42. package/templates/.claude/agents/debugger.md +156 -0
  43. package/templates/.claude/agents/docs-manager.md +181 -0
  44. package/templates/.claude/agents/e2e-tester.md +30 -0
  45. package/templates/.claude/agents/performance-engineer.md +48 -0
  46. package/templates/.claude/agents/performance-tester.md +29 -0
  47. package/templates/.claude/agents/planner.md +72 -0
  48. package/templates/.claude/agents/project-manager.md +152 -0
  49. package/templates/.claude/agents/qa-scout.md +29 -0
  50. package/templates/.claude/agents/quality-engineer.md +48 -0
  51. package/templates/.claude/agents/readme-writer.md +67 -0
  52. package/templates/.claude/agents/researcher.md +57 -0
  53. package/templates/.claude/agents/scout.md +125 -0
  54. package/templates/.claude/agents/security-agent.md +564 -0
  55. package/templates/.claude/agents/security-tester.md +29 -0
  56. package/templates/.claude/agents/storage-path-convention.md +102 -0
  57. package/templates/.claude/agents/tattletale-reporter.md +77 -0
  58. package/templates/.claude/agents/test-architect.md +32 -0
  59. package/templates/.claude/agents/test-reviewer.md +29 -0
  60. package/templates/.claude/agents/tester.md +286 -0
  61. package/templates/.claude/agents/typescript-pro.md +280 -0
  62. package/templates/.claude/agents/ui-ux-designer.md +256 -0
  63. package/templates/.claude/commands/devkit/analyze.md +92 -0
  64. package/templates/.claude/commands/devkit/ask.md +269 -0
  65. package/templates/.claude/commands/devkit/backend/create-api.md +220 -0
  66. package/templates/.claude/commands/devkit/backend/create-migration.md +130 -0
  67. package/templates/.claude/commands/devkit/backend/create-schema.md +158 -0
  68. package/templates/.claude/commands/devkit/backend/design-graphql-api.md +302 -0
  69. package/templates/.claude/commands/devkit/backend/design-rest-api.md +192 -0
  70. package/templates/.claude/commands/devkit/config/bootstrap.md +137 -0
  71. package/templates/.claude/commands/devkit/config/init-backend.md +233 -0
  72. package/templates/.claude/commands/devkit/config/init-frontend.md +911 -0
  73. package/templates/.claude/commands/devkit/create-test.md +165 -0
  74. package/templates/.claude/commands/devkit/debug.md +481 -0
  75. package/templates/.claude/commands/devkit/docs/capture-knowledge.md +424 -0
  76. package/templates/.claude/commands/devkit/docs/init.md +203 -0
  77. package/templates/.claude/commands/devkit/docs/summarize.md +33 -0
  78. package/templates/.claude/commands/devkit/docs/update.md +207 -0
  79. package/templates/.claude/commands/devkit/fix/fast.md +22 -0
  80. package/templates/.claude/commands/devkit/fix/hard.md +44 -0
  81. package/templates/.claude/commands/devkit/fix.md +16 -0
  82. package/templates/.claude/commands/devkit/frontend/create-api-integration.md +507 -0
  83. package/templates/.claude/commands/devkit/frontend/create-component.md +461 -0
  84. package/templates/.claude/commands/devkit/frontend/create-form.md +804 -0
  85. package/templates/.claude/commands/devkit/frontend/create-page.md +484 -0
  86. package/templates/.claude/commands/devkit/frontend/create-storybook.md +899 -0
  87. package/templates/.claude/commands/devkit/frontend/create-table.md +1035 -0
  88. package/templates/.claude/commands/devkit/help.md +148 -0
  89. package/templates/.claude/commands/devkit/refactor.md +510 -0
  90. package/templates/.claude/commands/devkit/research.md +394 -0
  91. package/templates/.claude/commands/devkit/review/code.md +349 -0
  92. package/templates/.claude/commands/devkit/review/codebase.md +51 -0
  93. package/templates/.claude/commands/devkit/scout.md +312 -0
  94. package/templates/.claude/commands/devkit/skill/add.md +29 -0
  95. package/templates/.claude/commands/devkit/skill/create.md +22 -0
  96. package/templates/.claude/commands/devkit/skill/optimize.md +34 -0
  97. package/templates/.claude/commands/devkit/solve.md +364 -0
  98. package/templates/.claude/commands/devkit/spec/brainstorm.md +309 -0
  99. package/templates/.claude/commands/devkit/spec/capture-requirement.md +202 -0
  100. package/templates/.claude/commands/devkit/spec/cook.md +157 -0
  101. package/templates/.claude/commands/devkit/spec/deep-capture-requirement.md +393 -0
  102. package/templates/.claude/commands/devkit/spec/implement.md +350 -0
  103. package/templates/.claude/commands/devkit/spec/plan.md +269 -0
  104. package/templates/.claude/commands/devkit/spec/task.md +156 -0
  105. package/templates/.claude/commands/devkit/spec/test.md +259 -0
  106. package/templates/.claude/commands/devkit/spec/update-plan.md +263 -0
  107. package/templates/.claude/commands/devkit/spec/update-requirement.md +239 -0
  108. package/templates/.claude/commands/devkit/spec-lite/do.md +280 -0
  109. package/templates/.claude/commands/devkit/spec-lite/plan.md +236 -0
  110. package/templates/.claude/commands/devkit/spec-lite/task.md +141 -0
  111. package/templates/.claude/commands/devkit/spec-lite/test.md +171 -0
  112. package/templates/.claude/commands/devkit/spec-lite/update-plan.md +154 -0
  113. package/templates/.claude/commands/qakit/a11y/audit.md +38 -0
  114. package/templates/.claude/commands/qakit/a11y/fix.md +22 -0
  115. package/templates/.claude/commands/qakit/analyze/full.md +459 -0
  116. package/templates/.claude/commands/qakit/analyze/quick.md +84 -0
  117. package/templates/.claude/commands/qakit/api/analyze.md +34 -0
  118. package/templates/.claude/commands/qakit/api/contract.md +22 -0
  119. package/templates/.claude/commands/qakit/api/generate.md +20 -0
  120. package/templates/.claude/commands/qakit/api/run.md +16 -0
  121. package/templates/.claude/commands/qakit/ask.md +57 -0
  122. package/templates/.claude/commands/qakit/automation/fix-flaky.md +233 -0
  123. package/templates/.claude/commands/qakit/automation/health-check.md +192 -0
  124. package/templates/.claude/commands/qakit/automation/maintenance.md +311 -0
  125. package/templates/.claude/commands/qakit/automation/scaffold-playwright.md +689 -0
  126. package/templates/.claude/commands/qakit/automation/scaffold-webdriverio.md +802 -0
  127. package/templates/.claude/commands/qakit/automation/scaffold.md +447 -0
  128. package/templates/.claude/commands/qakit/automation/update-deps.md +219 -0
  129. package/templates/.claude/commands/qakit/bug/investigate.md +96 -0
  130. package/templates/.claude/commands/qakit/bug/report.md +147 -0
  131. package/templates/.claude/commands/qakit/bug/reproduce.md +101 -0
  132. package/templates/.claude/commands/qakit/bug/triage.md +101 -0
  133. package/templates/.claude/commands/qakit/bug/verify.md +106 -0
  134. package/templates/.claude/commands/qakit/config/init-qa.md +107 -0
  135. package/templates/.claude/commands/qakit/confluence/fetch.md +192 -0
  136. package/templates/.claude/commands/qakit/confluence/search.md +201 -0
  137. package/templates/.claude/commands/qakit/docs/capture-test-knowledge.md +451 -0
  138. package/templates/.claude/commands/qakit/docs/update-changelog.md +207 -0
  139. package/templates/.claude/commands/qakit/docs/update-readme.md +296 -0
  140. package/templates/.claude/commands/qakit/e2e/generate.md +18 -0
  141. package/templates/.claude/commands/qakit/e2e/page-object.md +37 -0
  142. package/templates/.claude/commands/qakit/e2e/run.md +17 -0
  143. package/templates/.claude/commands/qakit/e2e/scenario.md +20 -0
  144. package/templates/.claude/commands/qakit/feature/create.md +178 -0
  145. package/templates/.claude/commands/qakit/feature/enrich-api.md +352 -0
  146. package/templates/.claude/commands/qakit/feature/enrich-tests.md +243 -0
  147. package/templates/.claude/commands/qakit/feature/enrich-ui.md +217 -0
  148. package/templates/.claude/commands/qakit/feature/enrich.md +246 -0
  149. package/templates/.claude/commands/qakit/feature/from-jira.md +184 -0
  150. package/templates/.claude/commands/qakit/feature/update.md +136 -0
  151. package/templates/.claude/commands/qakit/help.md +98 -0
  152. package/templates/.claude/commands/qakit/jira/analyze.md +329 -0
  153. package/templates/.claude/commands/qakit/jira/create-tests.md +319 -0
  154. package/templates/.claude/commands/qakit/kb/add-design.md +258 -0
  155. package/templates/.claude/commands/qakit/kb/capture.md +325 -0
  156. package/templates/.claude/commands/qakit/kb/clean.md +157 -0
  157. package/templates/.claude/commands/qakit/kb/dedupe.md +281 -0
  158. package/templates/.claude/commands/qakit/kb/init.md +234 -0
  159. package/templates/.claude/commands/qakit/kb/link.md +124 -0
  160. package/templates/.claude/commands/qakit/kb/list.md +185 -0
  161. package/templates/.claude/commands/qakit/kb/resolve.md +234 -0
  162. package/templates/.claude/commands/qakit/kb/search.md +202 -0
  163. package/templates/.claude/commands/qakit/kb/sync-confluence.md +474 -0
  164. package/templates/.claude/commands/qakit/metrics/coverage.md +46 -0
  165. package/templates/.claude/commands/qakit/metrics/dashboard.md +62 -0
  166. package/templates/.claude/commands/qakit/metrics/trends.md +42 -0
  167. package/templates/.claude/commands/qakit/perf/analyze.md +31 -0
  168. package/templates/.claude/commands/qakit/perf/plan.md +18 -0
  169. package/templates/.claude/commands/qakit/perf/run.md +17 -0
  170. package/templates/.claude/commands/qakit/perf/script.md +38 -0
  171. package/templates/.claude/commands/qakit/rca/analyze.md +166 -0
  172. package/templates/.claude/commands/qakit/regression/analyze.md +36 -0
  173. package/templates/.claude/commands/qakit/regression/report.md +30 -0
  174. package/templates/.claude/commands/qakit/regression/run.md +17 -0
  175. package/templates/.claude/commands/qakit/regression/select.md +34 -0
  176. package/templates/.claude/commands/qakit/research/deep.md +328 -0
  177. package/templates/.claude/commands/qakit/review/coverage.md +116 -0
  178. package/templates/.claude/commands/qakit/review/quality-gate.md +126 -0
  179. package/templates/.claude/commands/qakit/review/test-code.md +320 -0
  180. package/templates/.claude/commands/qakit/review/test-review.md +109 -0
  181. package/templates/.claude/commands/qakit/scout.md +195 -0
  182. package/templates/.claude/commands/qakit/setup/confluence.md +140 -0
  183. package/templates/.claude/commands/qakit/setup/jira.md +154 -0
  184. package/templates/.claude/commands/qakit/spec/analyze.md +46 -0
  185. package/templates/.claude/commands/qakit/spec/cook.md +344 -0
  186. package/templates/.claude/commands/qakit/spec/execute.md +38 -0
  187. package/templates/.claude/commands/qakit/spec/plan.md +46 -0
  188. package/templates/.claude/commands/qakit/spec/report.md +40 -0
  189. package/templates/.claude/commands/qakit/spec/task.md +40 -0
  190. package/templates/.claude/commands/qakit/test/create-test-case.md +151 -0
  191. package/templates/.claude/commands/qakit/test/create-test-suite.md +84 -0
  192. package/templates/.claude/commands/qakit/test/generate-api-tests.md +82 -0
  193. package/templates/.claude/commands/qakit/test/generate-data.md +114 -0
  194. package/templates/.claude/commands/qakit/test/generate-e2e.md +99 -0
  195. package/templates/.claude/commands/qakit/test/generate-ui-tests.md +97 -0
  196. package/templates/.claude/commands/qakit/testmo/report.md +22 -0
  197. package/templates/.claude/commands/qakit/testmo/sync.md +31 -0
  198. package/templates/.claude/doc-templates/bug-report-template.md +247 -0
  199. package/templates/.claude/doc-templates/code-standards.md +486 -0
  200. package/templates/.claude/doc-templates/codebase-summary.md +426 -0
  201. package/templates/.claude/doc-templates/development-rules.md +553 -0
  202. package/templates/.claude/doc-templates/feature-spec-template.md +167 -0
  203. package/templates/.claude/doc-templates/performance-report-template.md +49 -0
  204. package/templates/.claude/doc-templates/project-overview-pdr.md +494 -0
  205. package/templates/.claude/doc-templates/quality-report-template.md +44 -0
  206. package/templates/.claude/doc-templates/regression-report-template.md +41 -0
  207. package/templates/.claude/doc-templates/system-architecture.md +615 -0
  208. package/templates/.claude/doc-templates/technical-documents.md +127 -0
  209. package/templates/.claude/doc-templates/test-case-template.md +198 -0
  210. package/templates/.claude/doc-templates/test-plan-template.md +366 -0
  211. package/templates/.claude/doc-templates/test-summary-report.md +401 -0
  212. package/templates/.claude/hooks/dev-rules-reminder.cjs +101 -0
  213. package/templates/.claude/hooks/dev-rules-reminder.js +96 -0
  214. package/templates/.claude/hooks/executable_force-agent-skills-eval.sh +38 -0
  215. package/templates/.claude/hooks/scout-block/scout-block.ps1 +92 -0
  216. package/templates/.claude/hooks/scout-block/scout-block.sh +119 -0
  217. package/templates/.claude/hooks/scout-block.cjs +100 -0
  218. package/templates/.claude/hooks/scout-block.js +104 -0
  219. package/templates/.claude/repomix.config.json +34 -0
  220. package/templates/.claude/rules/01-core-principles.md +81 -0
  221. package/templates/.claude/rules/02-naming-and-constants.md +115 -0
  222. package/templates/.claude/rules/03-function-design.md +167 -0
  223. package/templates/.claude/rules/04-error-handling.md +83 -0
  224. package/templates/.claude/rules/05-testing.md +86 -0
  225. package/templates/.claude/rules/06-code-quality.md +107 -0
  226. package/templates/.claude/rules/07-architecture.md +105 -0
  227. package/templates/.claude/rules/08-performance-security.md +93 -0
  228. package/templates/.claude/rules/index.md +77 -0
  229. package/templates/.claude/scripts/README.md +153 -0
  230. package/templates/.claude/scripts/commands_data.yaml +336 -0
  231. package/templates/.claude/scripts/generate_catalogs.py +163 -0
  232. package/templates/.claude/scripts/helper.py +723 -0
  233. package/templates/.claude/scripts/scan_commands.py +101 -0
  234. package/templates/.claude/scripts/scan_skills.py +187 -0
  235. package/templates/.claude/scripts/skills_data.yaml +348 -0
  236. package/templates/.claude/settings.json +54 -0
  237. package/templates/.claude/settings.local.README.md +650 -0
  238. package/templates/.claude/settings.local.json +41 -0
  239. package/templates/.claude/setup/dependencies/setup-claude-mem.ps1 +534 -0
  240. package/templates/.claude/setup/dependencies/setup-claude-mem.sh +477 -0
  241. package/templates/.claude/setup/dependencies/setup-mcp-servers.ps1 +562 -0
  242. package/templates/.claude/setup/dependencies/setup-mcp-servers.sh +511 -0
  243. package/templates/.claude/setup/jira-env.example.sh +22 -0
  244. package/templates/.claude/setup/setup.ps1 +240 -0
  245. package/templates/.claude/setup/setup.sh +222 -0
  246. package/templates/.claude/skills/accessibility-testing/SKILL.md +34 -0
  247. package/templates/.claude/skills/aesthetic/SKILL.md +121 -0
  248. package/templates/.claude/skills/aesthetic/assets/design-guideline-template.md +163 -0
  249. package/templates/.claude/skills/aesthetic/assets/design-story-template.md +135 -0
  250. package/templates/.claude/skills/aesthetic/references/design-principles.md +62 -0
  251. package/templates/.claude/skills/aesthetic/references/design-resources.md +75 -0
  252. package/templates/.claude/skills/aesthetic/references/micro-interactions.md +53 -0
  253. package/templates/.claude/skills/aesthetic/references/storytelling-design.md +50 -0
  254. package/templates/.claude/skills/aesthetic/skill-creator/LICENSE.txt +202 -0
  255. package/templates/.claude/skills/aesthetic/skill-creator/SKILL.md +266 -0
  256. package/templates/.claude/skills/aesthetic/skill-creator/scripts/init_skill.py +303 -0
  257. package/templates/.claude/skills/aesthetic/skill-creator/scripts/package_skill.py +110 -0
  258. package/templates/.claude/skills/aesthetic/skill-creator/scripts/quick_validate.py +65 -0
  259. package/templates/.claude/skills/agent_skills_spec.md +51 -0
  260. package/templates/.claude/skills/ai-multimodal/.env.example +185 -0
  261. package/templates/.claude/skills/ai-multimodal/SKILL.md +69 -0
  262. package/templates/.claude/skills/ai-multimodal/references/audio-processing.md +386 -0
  263. package/templates/.claude/skills/ai-multimodal/references/image-generation.md +722 -0
  264. package/templates/.claude/skills/ai-multimodal/references/video-analysis.md +515 -0
  265. package/templates/.claude/skills/ai-multimodal/references/video-generation.md +457 -0
  266. package/templates/.claude/skills/ai-multimodal/references/vision-understanding.md +492 -0
  267. package/templates/.claude/skills/ai-multimodal/scripts/check_setup.py +299 -0
  268. package/templates/.claude/skills/ai-multimodal/scripts/document_converter.py +395 -0
  269. package/templates/.claude/skills/ai-multimodal/scripts/gemini_batch_process.py +1067 -0
  270. package/templates/.claude/skills/ai-multimodal/scripts/media_optimizer.py +506 -0
  271. package/templates/.claude/skills/ai-multimodal/scripts/requirements.txt +26 -0
  272. package/templates/.claude/skills/ai-multimodal/scripts/tests/requirements.txt +20 -0
  273. package/templates/.claude/skills/ai-multimodal/scripts/tests/test_document_converter.py +74 -0
  274. package/templates/.claude/skills/ai-multimodal/scripts/tests/test_gemini_batch_process.py +362 -0
  275. package/templates/.claude/skills/ai-multimodal/scripts/tests/test_media_optimizer.py +373 -0
  276. package/templates/.claude/skills/api-design-principles/SKILL.md +527 -0
  277. package/templates/.claude/skills/api-design-principles/assets/api-design-checklist.md +136 -0
  278. package/templates/.claude/skills/api-design-principles/assets/rest-api-template.py +165 -0
  279. package/templates/.claude/skills/api-design-principles/references/graphql-schema-design.md +566 -0
  280. package/templates/.claude/skills/api-design-principles/references/rest-best-practices.md +385 -0
  281. package/templates/.claude/skills/api-testing/SKILL.md +24 -0
  282. package/templates/.claude/skills/backend-development/SKILL.md +95 -0
  283. package/templates/.claude/skills/backend-development/references/backend-api-design.md +495 -0
  284. package/templates/.claude/skills/backend-development/references/backend-architecture.md +454 -0
  285. package/templates/.claude/skills/backend-development/references/backend-code-quality.md +659 -0
  286. package/templates/.claude/skills/backend-development/references/backend-debugging.md +904 -0
  287. package/templates/.claude/skills/backend-development/references/backend-devops.md +494 -0
  288. package/templates/.claude/skills/backend-development/references/backend-mindset.md +387 -0
  289. package/templates/.claude/skills/backend-development/references/backend-performance.md +397 -0
  290. package/templates/.claude/skills/backend-development/references/backend-security.md +290 -0
  291. package/templates/.claude/skills/backend-development/references/backend-technologies.md +256 -0
  292. package/templates/.claude/skills/backend-development/references/backend-testing.md +429 -0
  293. package/templates/.claude/skills/bug-investigation/SKILL.md +24 -0
  294. package/templates/.claude/skills/chrome-devtools/SKILL.md +472 -0
  295. package/templates/.claude/skills/chrome-devtools/references/cdp-domains.md +694 -0
  296. package/templates/.claude/skills/chrome-devtools/references/performance-guide.md +940 -0
  297. package/templates/.claude/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
  298. package/templates/.claude/skills/chrome-devtools/scripts/README.md +228 -0
  299. package/templates/.claude/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
  300. package/templates/.claude/skills/chrome-devtools/scripts/aria-snapshot.js +362 -0
  301. package/templates/.claude/skills/chrome-devtools/scripts/click.js +83 -0
  302. package/templates/.claude/skills/chrome-devtools/scripts/console.js +79 -0
  303. package/templates/.claude/skills/chrome-devtools/scripts/evaluate.js +53 -0
  304. package/templates/.claude/skills/chrome-devtools/scripts/fill.js +76 -0
  305. package/templates/.claude/skills/chrome-devtools/scripts/install-deps.sh +181 -0
  306. package/templates/.claude/skills/chrome-devtools/scripts/install.sh +83 -0
  307. package/templates/.claude/skills/chrome-devtools/scripts/lib/browser.js +217 -0
  308. package/templates/.claude/skills/chrome-devtools/scripts/lib/selector.js +178 -0
  309. package/templates/.claude/skills/chrome-devtools/scripts/navigate.js +54 -0
  310. package/templates/.claude/skills/chrome-devtools/scripts/network.js +106 -0
  311. package/templates/.claude/skills/chrome-devtools/scripts/package.json +16 -0
  312. package/templates/.claude/skills/chrome-devtools/scripts/performance.js +149 -0
  313. package/templates/.claude/skills/chrome-devtools/scripts/screenshot.js +194 -0
  314. package/templates/.claude/skills/chrome-devtools/scripts/select-ref.js +131 -0
  315. package/templates/.claude/skills/chrome-devtools/scripts/snapshot.js +135 -0
  316. package/templates/.claude/skills/claude-code-analyzer/SKILL.md +299 -0
  317. package/templates/.claude/skills/claude-code-analyzer/references/best-practices.md +290 -0
  318. package/templates/.claude/skills/claude-code-analyzer/scripts/analyze-claude-md.sh +239 -0
  319. package/templates/.claude/skills/claude-code-analyzer/scripts/analyze.sh +274 -0
  320. package/templates/.claude/skills/claude-code-analyzer/scripts/fetch-features.sh +69 -0
  321. package/templates/.claude/skills/claude-code-analyzer/scripts/github-discovery.sh +178 -0
  322. package/templates/.claude/skills/code-review/SKILL.md +155 -0
  323. package/templates/.claude/skills/code-review/references/code-review-reception.md +209 -0
  324. package/templates/.claude/skills/code-review/references/human-code-review-practices.md +370 -0
  325. package/templates/.claude/skills/code-review/references/requesting-code-review.md +105 -0
  326. package/templates/.claude/skills/code-review/references/verification-before-completion.md +139 -0
  327. package/templates/.claude/skills/command-development/README.md +272 -0
  328. package/templates/.claude/skills/command-development/SKILL.md +834 -0
  329. package/templates/.claude/skills/command-development/examples/plugin-commands.md +557 -0
  330. package/templates/.claude/skills/command-development/examples/simple-commands.md +504 -0
  331. package/templates/.claude/skills/command-development/references/advanced-workflows.md +722 -0
  332. package/templates/.claude/skills/command-development/references/documentation-patterns.md +739 -0
  333. package/templates/.claude/skills/command-development/references/frontmatter-reference.md +463 -0
  334. package/templates/.claude/skills/command-development/references/interactive-commands.md +920 -0
  335. package/templates/.claude/skills/command-development/references/marketplace-considerations.md +904 -0
  336. package/templates/.claude/skills/command-development/references/plugin-features-reference.md +609 -0
  337. package/templates/.claude/skills/command-development/references/testing-strategies.md +702 -0
  338. package/templates/.claude/skills/confluence-integration/confluence-integration.md +260 -0
  339. package/templates/.claude/skills/databases/SKILL.md +232 -0
  340. package/templates/.claude/skills/databases/references/mongodb-aggregation.md +447 -0
  341. package/templates/.claude/skills/databases/references/mongodb-atlas.md +465 -0
  342. package/templates/.claude/skills/databases/references/mongodb-crud.md +408 -0
  343. package/templates/.claude/skills/databases/references/mongodb-indexing.md +442 -0
  344. package/templates/.claude/skills/databases/references/postgresql-administration.md +594 -0
  345. package/templates/.claude/skills/databases/references/postgresql-performance.md +527 -0
  346. package/templates/.claude/skills/databases/references/postgresql-psql-cli.md +467 -0
  347. package/templates/.claude/skills/databases/references/postgresql-queries.md +475 -0
  348. package/templates/.claude/skills/databases/scripts/db_backup.py +502 -0
  349. package/templates/.claude/skills/databases/scripts/db_migrate.py +414 -0
  350. package/templates/.claude/skills/databases/scripts/db_performance_check.py +444 -0
  351. package/templates/.claude/skills/databases/scripts/dot_coverage +0 -0
  352. package/templates/.claude/skills/databases/scripts/requirements.txt +20 -0
  353. package/templates/.claude/skills/databases/scripts/tests/coverage-db.json +1 -0
  354. package/templates/.claude/skills/databases/scripts/tests/requirements.txt +4 -0
  355. package/templates/.claude/skills/databases/scripts/tests/test_db_backup.py +340 -0
  356. package/templates/.claude/skills/databases/scripts/tests/test_db_migrate.py +277 -0
  357. package/templates/.claude/skills/databases/scripts/tests/test_db_performance_check.py +370 -0
  358. package/templates/.claude/skills/debugging/SKILL.md +84 -0
  359. package/templates/.claude/skills/debugging/references/defense-in-depth.md +124 -0
  360. package/templates/.claude/skills/debugging/references/root-cause-tracing.md +122 -0
  361. package/templates/.claude/skills/debugging/references/systematic-debugging.md +102 -0
  362. package/templates/.claude/skills/debugging/references/verification.md +123 -0
  363. package/templates/.claude/skills/debugging/scripts/find-polluter.sh +63 -0
  364. package/templates/.claude/skills/debugging/scripts/find-polluter.test.md +102 -0
  365. package/templates/.claude/skills/docs-discovery/COMPARISON.md +313 -0
  366. package/templates/.claude/skills/docs-discovery/README.md +53 -0
  367. package/templates/.claude/skills/docs-discovery/REFACTORING_SUMMARY.md +144 -0
  368. package/templates/.claude/skills/docs-discovery/SKILL.md +64 -0
  369. package/templates/.claude/skills/docs-discovery/archive/dot_env.example +15 -0
  370. package/templates/.claude/skills/docs-discovery/archive/package.json +24 -0
  371. package/templates/.claude/skills/docs-discovery/archive/references/advanced.md +79 -0
  372. package/templates/.claude/skills/docs-discovery/archive/references/context7-patterns.md +68 -0
  373. package/templates/.claude/skills/docs-discovery/archive/references/errors.md +68 -0
  374. package/templates/.claude/skills/docs-discovery/archive/scripts/analyze-llms-txt.js +211 -0
  375. package/templates/.claude/skills/docs-discovery/archive/scripts/detect-topic.js +172 -0
  376. package/templates/.claude/skills/docs-discovery/archive/scripts/fetch-docs.js +213 -0
  377. package/templates/.claude/skills/docs-discovery/archive/scripts/tests/run-tests.js +72 -0
  378. package/templates/.claude/skills/docs-discovery/archive/scripts/tests/test-analyze-llms.js +119 -0
  379. package/templates/.claude/skills/docs-discovery/archive/scripts/tests/test-detect-topic.js +112 -0
  380. package/templates/.claude/skills/docs-discovery/archive/scripts/tests/test-fetch-docs.js +84 -0
  381. package/templates/.claude/skills/docs-discovery/archive/scripts/utils/env-loader.js +94 -0
  382. package/templates/.claude/skills/docs-discovery/archive/workflows/library-search.md +87 -0
  383. package/templates/.claude/skills/docs-discovery/archive/workflows/repo-analysis.md +91 -0
  384. package/templates/.claude/skills/docs-discovery/archive/workflows/topic-search.md +77 -0
  385. package/templates/.claude/skills/docs-seeker/.env.example +15 -0
  386. package/templates/.claude/skills/docs-seeker/SKILL.md +97 -0
  387. package/templates/.claude/skills/docs-seeker/package.json +24 -0
  388. package/templates/.claude/skills/docs-seeker/references/advanced.md +79 -0
  389. package/templates/.claude/skills/docs-seeker/references/context7-patterns.md +68 -0
  390. package/templates/.claude/skills/docs-seeker/references/errors.md +68 -0
  391. package/templates/.claude/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
  392. package/templates/.claude/skills/docs-seeker/scripts/detect-topic.js +172 -0
  393. package/templates/.claude/skills/docs-seeker/scripts/fetch-docs.js +213 -0
  394. package/templates/.claude/skills/docs-seeker/scripts/tests/run-tests.js +72 -0
  395. package/templates/.claude/skills/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
  396. package/templates/.claude/skills/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
  397. package/templates/.claude/skills/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
  398. package/templates/.claude/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
  399. package/templates/.claude/skills/docs-seeker/workflows/library-search.md +87 -0
  400. package/templates/.claude/skills/docs-seeker/workflows/repo-analysis.md +91 -0
  401. package/templates/.claude/skills/docs-seeker/workflows/topic-search.md +77 -0
  402. package/templates/.claude/skills/document-skills/docx/LICENSE.txt +30 -0
  403. package/templates/.claude/skills/document-skills/docx/SKILL.md +197 -0
  404. package/templates/.claude/skills/document-skills/docx/docx-js.md +350 -0
  405. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  406. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  407. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  408. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  409. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  410. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  411. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  412. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  413. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  414. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  415. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  416. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  417. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  418. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  419. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  420. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  421. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  422. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  423. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  424. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  425. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  426. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  427. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  428. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  429. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  430. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  431. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  432. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  433. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  434. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  435. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  436. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
  437. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  438. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  439. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  440. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  441. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  442. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  443. package/templates/.claude/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  444. package/templates/.claude/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
  445. package/templates/.claude/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
  446. package/templates/.claude/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
  447. package/templates/.claude/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
  448. package/templates/.claude/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
  449. package/templates/.claude/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
  450. package/templates/.claude/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
  451. package/templates/.claude/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
  452. package/templates/.claude/skills/document-skills/docx/ooxml.md +610 -0
  453. package/templates/.claude/skills/document-skills/docx/scripts/__init__.py +1 -0
  454. package/templates/.claude/skills/document-skills/docx/scripts/document.py +1276 -0
  455. package/templates/.claude/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
  456. package/templates/.claude/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
  457. package/templates/.claude/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
  458. package/templates/.claude/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
  459. package/templates/.claude/skills/document-skills/docx/scripts/templates/people.xml +3 -0
  460. package/templates/.claude/skills/document-skills/docx/scripts/utilities.py +374 -0
  461. package/templates/.claude/skills/document-skills/pdf/LICENSE.txt +30 -0
  462. package/templates/.claude/skills/document-skills/pdf/SKILL.md +294 -0
  463. package/templates/.claude/skills/document-skills/pdf/forms.md +205 -0
  464. package/templates/.claude/skills/document-skills/pdf/reference.md +612 -0
  465. package/templates/.claude/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
  466. package/templates/.claude/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
  467. package/templates/.claude/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
  468. package/templates/.claude/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
  469. package/templates/.claude/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
  470. package/templates/.claude/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
  471. package/templates/.claude/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
  472. package/templates/.claude/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
  473. package/templates/.claude/skills/document-skills/pptx/LICENSE.txt +30 -0
  474. package/templates/.claude/skills/document-skills/pptx/SKILL.md +484 -0
  475. package/templates/.claude/skills/document-skills/pptx/html2pptx.md +625 -0
  476. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  477. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  478. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  479. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  480. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  481. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  482. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  483. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  484. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  485. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  486. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  487. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  488. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  489. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  490. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  491. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  492. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  493. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  494. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  495. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  496. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  497. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  498. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  499. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  500. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  501. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  502. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  503. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  504. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  505. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  506. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  507. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
  508. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  509. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  510. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  511. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  512. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  513. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  514. package/templates/.claude/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  515. package/templates/.claude/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
  516. package/templates/.claude/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
  517. package/templates/.claude/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
  518. package/templates/.claude/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
  519. package/templates/.claude/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
  520. package/templates/.claude/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
  521. package/templates/.claude/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
  522. package/templates/.claude/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
  523. package/templates/.claude/skills/document-skills/pptx/ooxml.md +427 -0
  524. package/templates/.claude/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
  525. package/templates/.claude/skills/document-skills/pptx/scripts/inventory.py +1020 -0
  526. package/templates/.claude/skills/document-skills/pptx/scripts/rearrange.py +231 -0
  527. package/templates/.claude/skills/document-skills/pptx/scripts/replace.py +385 -0
  528. package/templates/.claude/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
  529. package/templates/.claude/skills/document-skills/xlsx/LICENSE.txt +30 -0
  530. package/templates/.claude/skills/document-skills/xlsx/SKILL.md +289 -0
  531. package/templates/.claude/skills/document-skills/xlsx/recalc.py +178 -0
  532. package/templates/.claude/skills/frontend-development/SKILL.md +208 -0
  533. package/templates/.claude/skills/frontend-development/references/accessibility.md +720 -0
  534. package/templates/.claude/skills/frontend-development/references/data-fetching.md +412 -0
  535. package/templates/.claude/skills/frontend-development/references/forms.md +809 -0
  536. package/templates/.claude/skills/frontend-development/references/fsd-architecture.md +442 -0
  537. package/templates/.claude/skills/frontend-development/references/graphql-apollo.md +731 -0
  538. package/templates/.claude/skills/frontend-development/references/performance.md +417 -0
  539. package/templates/.claude/skills/frontend-development/references/react-patterns.md +451 -0
  540. package/templates/.claude/skills/frontend-development/references/routing.md +436 -0
  541. package/templates/.claude/skills/frontend-development/references/state-management.md +510 -0
  542. package/templates/.claude/skills/frontend-development/references/tailwind-css.md +397 -0
  543. package/templates/.claude/skills/frontend-development/references/testing.md +630 -0
  544. package/templates/.claude/skills/frontend-development/references/typescript-standards.md +363 -0
  545. package/templates/.claude/skills/frontend-development/references/ui-libraries.md +586 -0
  546. package/templates/.claude/skills/infra-engineer/SKILL.md +642 -0
  547. package/templates/.claude/skills/infra-engineer/dot_env.example +76 -0
  548. package/templates/.claude/skills/infra-engineer/references/aws-overview.md +171 -0
  549. package/templates/.claude/skills/infra-engineer/references/browser-rendering.md +305 -0
  550. package/templates/.claude/skills/infra-engineer/references/cicd-github-actions.md +439 -0
  551. package/templates/.claude/skills/infra-engineer/references/cloudflare-d1-kv.md +123 -0
  552. package/templates/.claude/skills/infra-engineer/references/cloudflare-platform.md +271 -0
  553. package/templates/.claude/skills/infra-engineer/references/cloudflare-r2-storage.md +280 -0
  554. package/templates/.claude/skills/infra-engineer/references/cloudflare-workers-advanced.md +312 -0
  555. package/templates/.claude/skills/infra-engineer/references/cloudflare-workers-apis.md +309 -0
  556. package/templates/.claude/skills/infra-engineer/references/cloudflare-workers-basics.md +418 -0
  557. package/templates/.claude/skills/infra-engineer/references/devsecops-basics.md +361 -0
  558. package/templates/.claude/skills/infra-engineer/references/docker-basics.md +297 -0
  559. package/templates/.claude/skills/infra-engineer/references/docker-compose.md +292 -0
  560. package/templates/.claude/skills/infra-engineer/references/finops-basics.md +278 -0
  561. package/templates/.claude/skills/infra-engineer/references/gcloud-platform.md +297 -0
  562. package/templates/.claude/skills/infra-engineer/references/gcloud-services.md +304 -0
  563. package/templates/.claude/skills/infra-engineer/references/kubernetes-basics.md +295 -0
  564. package/templates/.claude/skills/infra-engineer/scripts/cloudflare_deploy.py +269 -0
  565. package/templates/.claude/skills/infra-engineer/scripts/docker_optimize.py +320 -0
  566. package/templates/.claude/skills/infra-engineer/scripts/requirements.txt +20 -0
  567. package/templates/.claude/skills/infra-engineer/scripts/tests/requirements.txt +3 -0
  568. package/templates/.claude/skills/infra-engineer/scripts/tests/test_cloudflare_deploy.py +285 -0
  569. package/templates/.claude/skills/infra-engineer/scripts/tests/test_docker_optimize.py +436 -0
  570. package/templates/.claude/skills/javascript-pro/SKILL.md +96 -0
  571. package/templates/.claude/skills/javascript-pro/references/async-patterns.md +96 -0
  572. package/templates/.claude/skills/javascript-pro/references/best-practices.md +98 -0
  573. package/templates/.claude/skills/javascript-pro/references/design-patterns.md +100 -0
  574. package/templates/.claude/skills/javascript-pro/references/error-handling.md +100 -0
  575. package/templates/.claude/skills/javascript-pro/references/functional-patterns.md +93 -0
  576. package/templates/.claude/skills/javascript-pro/references/modern-syntax.md +100 -0
  577. package/templates/.claude/skills/javascript-pro/references/performance.md +98 -0
  578. package/templates/.claude/skills/jira-integration/adf-parser.md +338 -0
  579. package/templates/.claude/skills/jira-integration/jira-integration.md +353 -0
  580. package/templates/.claude/skills/knowledge-base/knowledge-base.md +212 -0
  581. package/templates/.claude/skills/mobile-development/SKILL.md +212 -0
  582. package/templates/.claude/skills/mobile-development/references/mobile-android.md +604 -0
  583. package/templates/.claude/skills/mobile-development/references/mobile-best-practices.md +545 -0
  584. package/templates/.claude/skills/mobile-development/references/mobile-debugging.md +1089 -0
  585. package/templates/.claude/skills/mobile-development/references/mobile-frameworks.md +465 -0
  586. package/templates/.claude/skills/mobile-development/references/mobile-ios.md +496 -0
  587. package/templates/.claude/skills/mobile-development/references/mobile-mindset.md +544 -0
  588. package/templates/.claude/skills/mobile-testing/SKILL.md +24 -0
  589. package/templates/.claude/skills/performance-testing/SKILL.md +30 -0
  590. package/templates/.claude/skills/planning/SKILL.md +143 -0
  591. package/templates/.claude/skills/planning/references/codebase-understanding.md +62 -0
  592. package/templates/.claude/skills/planning/references/output-standards.md +87 -0
  593. package/templates/.claude/skills/planning/references/plan-organization.md +137 -0
  594. package/templates/.claude/skills/planning/references/research-phase.md +47 -0
  595. package/templates/.claude/skills/planning/references/solution-design.md +63 -0
  596. package/templates/.claude/skills/playwright/SKILL.md +303 -0
  597. package/templates/.claude/skills/playwright/examples/auth.fixture.ts +172 -0
  598. package/templates/.claude/skills/playwright/examples/login.page.ts +232 -0
  599. package/templates/.claude/skills/playwright/references/config.md +391 -0
  600. package/templates/.claude/skills/problem-solving/SKILL.md +96 -0
  601. package/templates/.claude/skills/problem-solving/references/attribution.md +69 -0
  602. package/templates/.claude/skills/problem-solving/references/collision-zone-thinking.md +79 -0
  603. package/templates/.claude/skills/problem-solving/references/inversion-exercise.md +91 -0
  604. package/templates/.claude/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
  605. package/templates/.claude/skills/problem-solving/references/scale-game.md +95 -0
  606. package/templates/.claude/skills/problem-solving/references/simplification-cascades.md +80 -0
  607. package/templates/.claude/skills/problem-solving/references/when-stuck.md +72 -0
  608. package/templates/.claude/skills/prompt-enhancer/SKILL.md +380 -0
  609. package/templates/.claude/skills/python-pro/SKILL.md +59 -0
  610. package/templates/.claude/skills/python-pro/references/async-patterns.md +96 -0
  611. package/templates/.claude/skills/python-pro/references/error-handling.md +84 -0
  612. package/templates/.claude/skills/python-pro/references/performance.md +71 -0
  613. package/templates/.claude/skills/python-pro/references/project-setup.md +78 -0
  614. package/templates/.claude/skills/python-pro/references/security.md +73 -0
  615. package/templates/.claude/skills/python-pro/references/testing.md +90 -0
  616. package/templates/.claude/skills/python-pro/references/type-system.md +88 -0
  617. package/templates/.claude/skills/qa-standards/SKILL.md +176 -0
  618. package/templates/.claude/skills/qa-standards/references/naming-conventions.md +262 -0
  619. package/templates/.claude/skills/quality-metrics/SKILL.md +27 -0
  620. package/templates/.claude/skills/repomix/SKILL.md +247 -0
  621. package/templates/.claude/skills/repomix/references/configuration.md +211 -0
  622. package/templates/.claude/skills/repomix/references/usage-patterns.md +232 -0
  623. package/templates/.claude/skills/repomix/scripts/README.md +179 -0
  624. package/templates/.claude/skills/repomix/scripts/repomix_batch.py +455 -0
  625. package/templates/.claude/skills/repomix/scripts/repos.example.json +15 -0
  626. package/templates/.claude/skills/repomix/scripts/requirements.txt +15 -0
  627. package/templates/.claude/skills/repomix/scripts/tests/test_repomix_batch.py +531 -0
  628. package/templates/.claude/skills/research/SKILL.md +168 -0
  629. package/templates/.claude/skills/sequential-thinking/.env.example +8 -0
  630. package/templates/.claude/skills/sequential-thinking/README.md +183 -0
  631. package/templates/.claude/skills/sequential-thinking/SKILL.md +94 -0
  632. package/templates/.claude/skills/sequential-thinking/package.json +31 -0
  633. package/templates/.claude/skills/sequential-thinking/references/advanced-strategies.md +79 -0
  634. package/templates/.claude/skills/sequential-thinking/references/advanced-techniques.md +76 -0
  635. package/templates/.claude/skills/sequential-thinking/references/core-patterns.md +95 -0
  636. package/templates/.claude/skills/sequential-thinking/references/examples-api.md +88 -0
  637. package/templates/.claude/skills/sequential-thinking/references/examples-architecture.md +94 -0
  638. package/templates/.claude/skills/sequential-thinking/references/examples-debug.md +90 -0
  639. package/templates/.claude/skills/sequential-thinking/scripts/format-thought.js +159 -0
  640. package/templates/.claude/skills/sequential-thinking/scripts/process-thought.js +236 -0
  641. package/templates/.claude/skills/sequential-thinking/tests/format-thought.test.js +133 -0
  642. package/templates/.claude/skills/sequential-thinking/tests/process-thought.test.js +215 -0
  643. package/templates/.claude/skills/test-automation/SKILL.md +93 -0
  644. package/templates/.claude/skills/test-automation/examples/page-object.ts +44 -0
  645. package/templates/.claude/skills/test-automation/references/frameworks.md +96 -0
  646. package/templates/.claude/skills/test-data-management/SKILL.md +24 -0
  647. package/templates/.claude/skills/test-design/SKILL.md +25 -0
  648. package/templates/.claude/skills/typescript-pro/SKILL.md +84 -0
  649. package/templates/.claude/skills/typescript-pro/references/advanced-patterns.md +100 -0
  650. package/templates/.claude/skills/typescript-pro/references/best-practices.md +96 -0
  651. package/templates/.claude/skills/typescript-pro/references/conditional-types.md +85 -0
  652. package/templates/.claude/skills/typescript-pro/references/generics.md +97 -0
  653. package/templates/.claude/skills/typescript-pro/references/mapped-types.md +99 -0
  654. package/templates/.claude/skills/typescript-pro/references/template-literals.md +85 -0
  655. package/templates/.claude/skills/typescript-pro/references/type-inference.md +94 -0
  656. package/templates/.claude/skills/typescript-pro/references/utility-types.md +96 -0
  657. package/templates/.claude/skills/ui-testing/SKILL.md +24 -0
  658. package/templates/.claude/skills/ui-ux-pro-max/SKILL.md +229 -0
  659. package/templates/.claude/skills/ui-ux-pro-max/data/charts.csv +26 -0
  660. package/templates/.claude/skills/ui-ux-pro-max/data/colors.csv +97 -0
  661. package/templates/.claude/skills/ui-ux-pro-max/data/landing.csv +31 -0
  662. package/templates/.claude/skills/ui-ux-pro-max/data/products.csv +97 -0
  663. package/templates/.claude/skills/ui-ux-pro-max/data/prompts.csv +24 -0
  664. package/templates/.claude/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  665. package/templates/.claude/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  666. package/templates/.claude/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  667. package/templates/.claude/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  668. package/templates/.claude/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
  669. package/templates/.claude/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  670. package/templates/.claude/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  671. package/templates/.claude/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  672. package/templates/.claude/skills/ui-ux-pro-max/data/styles.csv +59 -0
  673. package/templates/.claude/skills/ui-ux-pro-max/data/typography.csv +58 -0
  674. package/templates/.claude/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  675. package/templates/.claude/skills/ui-ux-pro-max/scripts/core.py +236 -0
  676. package/templates/.claude/skills/ui-ux-pro-max/scripts/search.py +61 -0
  677. package/templates/.claude/skills/webdriverio/SKILL.md +433 -0
  678. package/templates/.claude/skills/webdriverio/examples/mobile.page.ts +369 -0
  679. package/templates/.claude/skills/webdriverio/references/capabilities.md +377 -0
  680. package/templates/.claude/statusline.cjs +105 -0
  681. package/templates/.claude/statusline.ps1 +187 -0
  682. package/templates/.claude/statusline.sh +161 -0
  683. package/templates/.claude/workflows/api-testing-workflow.md +36 -0
  684. package/templates/.claude/workflows/bug-investigation-workflow.md +42 -0
  685. package/templates/.claude/workflows/development-rules.md +366 -0
  686. package/templates/.claude/workflows/documentation-management.md +128 -0
  687. package/templates/.claude/workflows/e2e-testing-workflow.md +36 -0
  688. package/templates/.claude/workflows/orchestration-protocol.md +16 -0
  689. package/templates/.claude/workflows/performance-testing-workflow.md +42 -0
  690. package/templates/.claude/workflows/primary-workflow.md +45 -0
  691. package/templates/.claude/workflows/qa-primary-workflow.md +48 -0
  692. package/templates/.claude/workflows/qa-rules.md +42 -0
  693. package/templates/.claude/workflows/regression-testing-workflow.md +36 -0
  694. package/templates/.claude/workflows/test-driven-qa-workflow.md +37 -0
  695. package/templates/.codex/config.toml.template +29 -0
  696. package/templates/.codex/prompts/qa-commands.md +32 -0
  697. package/templates/.codex/prompts/test-generation.md +29 -0
  698. package/templates/.cursor/CHANGELOG.md +540 -0
  699. package/templates/.cursor/README.md +261 -0
  700. package/templates/.cursor/commands/devkit/ask.md +71 -0
  701. package/templates/.cursor/commands/devkit/backend/create-api.md +207 -0
  702. package/templates/.cursor/commands/devkit/backend/create-migration.md +169 -0
  703. package/templates/.cursor/commands/devkit/backend/create-schema.md +183 -0
  704. package/templates/.cursor/commands/devkit/backend/design-graphql-api.md +287 -0
  705. package/templates/.cursor/commands/devkit/backend/design-rest-api.md +219 -0
  706. package/templates/.cursor/commands/devkit/config/init-backend.md +219 -0
  707. package/templates/.cursor/commands/devkit/config/init-frontend.md +114 -0
  708. package/templates/.cursor/commands/devkit/create-api-integration.md +196 -0
  709. package/templates/.cursor/commands/devkit/create-component.md +104 -0
  710. package/templates/.cursor/commands/devkit/create-form.md +189 -0
  711. package/templates/.cursor/commands/devkit/create-page.md +111 -0
  712. package/templates/.cursor/commands/devkit/create-storybook.md +235 -0
  713. package/templates/.cursor/commands/devkit/create-table.md +251 -0
  714. package/templates/.cursor/commands/devkit/create-test.md +174 -0
  715. package/templates/.cursor/commands/devkit/debug.md +192 -0
  716. package/templates/.cursor/commands/devkit/docs/capture-knowledge.md +252 -0
  717. package/templates/.cursor/commands/devkit/docs/init.md +153 -0
  718. package/templates/.cursor/commands/devkit/docs/summarize.md +82 -0
  719. package/templates/.cursor/commands/devkit/docs/update.md +174 -0
  720. package/templates/.cursor/commands/devkit/fix.md +24 -0
  721. package/templates/.cursor/commands/devkit/help.md +148 -0
  722. package/templates/.cursor/commands/devkit/refactor.md +476 -0
  723. package/templates/.cursor/commands/devkit/research.md +135 -0
  724. package/templates/.cursor/commands/devkit/review/code.md +297 -0
  725. package/templates/.cursor/commands/devkit/review/codebase.md +37 -0
  726. package/templates/.cursor/commands/devkit/scout.md +103 -0
  727. package/templates/.cursor/commands/devkit/solve.md +355 -0
  728. package/templates/.cursor/commands/devkit/spec/brainstorm.md +184 -0
  729. package/templates/.cursor/commands/devkit/spec/capture-requirement.md +164 -0
  730. package/templates/.cursor/commands/devkit/spec/cook.md +101 -0
  731. package/templates/.cursor/commands/devkit/spec/deep-capture-requirement.md +149 -0
  732. package/templates/.cursor/commands/devkit/spec/implement.md +354 -0
  733. package/templates/.cursor/commands/devkit/spec/plan.md +317 -0
  734. package/templates/.cursor/commands/devkit/spec/task.md +150 -0
  735. package/templates/.cursor/commands/devkit/spec/test.md +203 -0
  736. package/templates/.cursor/commands/devkit/spec/update-plan.md +234 -0
  737. package/templates/.cursor/commands/devkit/spec/update-requirement.md +222 -0
  738. package/templates/.cursor/commands/devkit/spec-lite/do.md +154 -0
  739. package/templates/.cursor/commands/devkit/spec-lite/plan.md +197 -0
  740. package/templates/.cursor/commands/devkit/spec-lite/task.md +138 -0
  741. package/templates/.cursor/commands/devkit/spec-lite/test.md +129 -0
  742. package/templates/.cursor/commands/devkit/spec-lite/update-plan.md +133 -0
  743. package/templates/.cursor/commands/devkit/ui-ux-pro-max.md +226 -0
  744. package/templates/.cursor/doc-templates/code-standards.md +486 -0
  745. package/templates/.cursor/doc-templates/codebase-summary.md +426 -0
  746. package/templates/.cursor/doc-templates/development-rules.md +553 -0
  747. package/templates/.cursor/doc-templates/project-overview-pdr.md +494 -0
  748. package/templates/.cursor/doc-templates/system-architecture.md +615 -0
  749. package/templates/.cursor/doc-templates/technical-documents.md +127 -0
  750. package/templates/.cursor/repomix.config.json +34 -0
  751. package/templates/.cursor/rules/backend-development/backend-development.mdc +94 -0
  752. package/templates/.cursor/rules/backend-development/references/backend-api-design.md +495 -0
  753. package/templates/.cursor/rules/backend-development/references/backend-architecture.md +454 -0
  754. package/templates/.cursor/rules/backend-development/references/backend-code-quality.md +659 -0
  755. package/templates/.cursor/rules/backend-development/references/backend-debugging.md +904 -0
  756. package/templates/.cursor/rules/backend-development/references/backend-devops.md +494 -0
  757. package/templates/.cursor/rules/backend-development/references/backend-mindset.md +387 -0
  758. package/templates/.cursor/rules/backend-development/references/backend-performance.md +397 -0
  759. package/templates/.cursor/rules/backend-development/references/backend-security.md +290 -0
  760. package/templates/.cursor/rules/backend-development/references/backend-technologies.md +256 -0
  761. package/templates/.cursor/rules/backend-development/references/backend-testing.md +429 -0
  762. package/templates/.cursor/rules/brainstormer.mdc +147 -0
  763. package/templates/.cursor/rules/code-optimizer.mdc +132 -0
  764. package/templates/.cursor/rules/code-review/code-revew.mdc +144 -0
  765. package/templates/.cursor/rules/code-review/references/code-review-reception.md +209 -0
  766. package/templates/.cursor/rules/code-review/references/requesting-code-review.md +105 -0
  767. package/templates/.cursor/rules/code-review/references/verification-before-completion.md +139 -0
  768. package/templates/.cursor/rules/code-reviewer.mdc +85 -0
  769. package/templates/.cursor/rules/code-simplifier.mdc +121 -0
  770. package/templates/.cursor/rules/coder.mdc +86 -0
  771. package/templates/.cursor/rules/community-rules.mdc +38 -0
  772. package/templates/.cursor/rules/cunningham.mdc +114 -0
  773. package/templates/.cursor/rules/debugger.mdc +108 -0
  774. package/templates/.cursor/rules/development-rules.mdc +208 -0
  775. package/templates/.cursor/rules/docs-manager.mdc +121 -0
  776. package/templates/.cursor/rules/docs-seeker/docs-seeker.mdc +57 -0
  777. package/templates/.cursor/rules/docs-seeker/references/advanced.md +80 -0
  778. package/templates/.cursor/rules/docs-seeker/references/context7-patterns.md +69 -0
  779. package/templates/.cursor/rules/docs-seeker/references/errors.md +69 -0
  780. package/templates/.cursor/rules/docs-seeker/scripts/analyze-llms-txt.js +211 -0
  781. package/templates/.cursor/rules/docs-seeker/scripts/detect-topic.js +172 -0
  782. package/templates/.cursor/rules/docs-seeker/scripts/fetch-docs.js +213 -0
  783. package/templates/.cursor/rules/docs-seeker/scripts/tests/run-tests.js +72 -0
  784. package/templates/.cursor/rules/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
  785. package/templates/.cursor/rules/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
  786. package/templates/.cursor/rules/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
  787. package/templates/.cursor/rules/docs-seeker/scripts/utils/env-loader.js +94 -0
  788. package/templates/.cursor/rules/docs-seeker/workflows/library-search.md +88 -0
  789. package/templates/.cursor/rules/docs-seeker/workflows/repo-analysis.md +92 -0
  790. package/templates/.cursor/rules/docs-seeker/workflows/topic-search.md +78 -0
  791. package/templates/.cursor/rules/frontend-development/frontend-development.mdc +131 -0
  792. package/templates/.cursor/rules/frontend-development/references/accessibility.md +719 -0
  793. package/templates/.cursor/rules/frontend-development/references/data-fetching.md +412 -0
  794. package/templates/.cursor/rules/frontend-development/references/forms.md +808 -0
  795. package/templates/.cursor/rules/frontend-development/references/fsd-architecture.md +442 -0
  796. package/templates/.cursor/rules/frontend-development/references/graphql-apollo.md +730 -0
  797. package/templates/.cursor/rules/frontend-development/references/performance.md +417 -0
  798. package/templates/.cursor/rules/frontend-development/references/react-patterns.md +451 -0
  799. package/templates/.cursor/rules/frontend-development/references/routing.md +436 -0
  800. package/templates/.cursor/rules/frontend-development/references/state-management.md +511 -0
  801. package/templates/.cursor/rules/frontend-development/references/tailwind-css.md +398 -0
  802. package/templates/.cursor/rules/frontend-development/references/testing.md +629 -0
  803. package/templates/.cursor/rules/frontend-development/references/typescript-standards.md +364 -0
  804. package/templates/.cursor/rules/frontend-development/references/ui-libraries.md +587 -0
  805. package/templates/.cursor/rules/javascript-pro/javascript-pro.mdc +98 -0
  806. package/templates/.cursor/rules/javascript-pro/references/async-patterns.md +96 -0
  807. package/templates/.cursor/rules/javascript-pro/references/best-practices.md +98 -0
  808. package/templates/.cursor/rules/javascript-pro/references/design-patterns.md +100 -0
  809. package/templates/.cursor/rules/javascript-pro/references/error-handling.md +100 -0
  810. package/templates/.cursor/rules/javascript-pro/references/functional-patterns.md +93 -0
  811. package/templates/.cursor/rules/javascript-pro/references/modern-syntax.md +100 -0
  812. package/templates/.cursor/rules/javascript-pro/references/performance.md +98 -0
  813. package/templates/.cursor/rules/planner.mdc +87 -0
  814. package/templates/.cursor/rules/problem-solving/problem-solving.mdc +96 -0
  815. package/templates/.cursor/rules/problem-solving/references/attribution.md +69 -0
  816. package/templates/.cursor/rules/problem-solving/references/collision-zone-thinking.md +79 -0
  817. package/templates/.cursor/rules/problem-solving/references/inversion-exercise.md +91 -0
  818. package/templates/.cursor/rules/problem-solving/references/meta-pattern-recognition.md +87 -0
  819. package/templates/.cursor/rules/problem-solving/references/scale-game.md +95 -0
  820. package/templates/.cursor/rules/problem-solving/references/simplification-cascades.md +80 -0
  821. package/templates/.cursor/rules/problem-solving/references/when-stuck.md +72 -0
  822. package/templates/.cursor/rules/project-manager.mdc +116 -0
  823. package/templates/.cursor/rules/project-profile.mdc +54 -0
  824. package/templates/.cursor/rules/python-pro/python-pro.mdc +83 -0
  825. package/templates/.cursor/rules/python-pro/references/async-patterns.md +96 -0
  826. package/templates/.cursor/rules/python-pro/references/error-handling.md +84 -0
  827. package/templates/.cursor/rules/python-pro/references/performance.md +71 -0
  828. package/templates/.cursor/rules/python-pro/references/project-setup.md +78 -0
  829. package/templates/.cursor/rules/python-pro/references/security.md +73 -0
  830. package/templates/.cursor/rules/python-pro/references/testing.md +90 -0
  831. package/templates/.cursor/rules/python-pro/references/type-system.md +88 -0
  832. package/templates/.cursor/rules/qa-api-testing.mdc +25 -0
  833. package/templates/.cursor/rules/qa-automation.mdc +28 -0
  834. package/templates/.cursor/rules/qa-testing.mdc +28 -0
  835. package/templates/.cursor/rules/repomix/references/configuration.md +211 -0
  836. package/templates/.cursor/rules/repomix/references/usage-patterns.md +232 -0
  837. package/templates/.cursor/rules/repomix/repomix.mdc +248 -0
  838. package/templates/.cursor/rules/repomix/scripts/README.md +179 -0
  839. package/templates/.cursor/rules/repomix/scripts/repomix_batch.py +455 -0
  840. package/templates/.cursor/rules/repomix/scripts/repos.example.json +15 -0
  841. package/templates/.cursor/rules/repomix/scripts/requirements.txt +15 -0
  842. package/templates/.cursor/rules/repomix/scripts/tests/test_repomix_batch.py +531 -0
  843. package/templates/.cursor/rules/research/research.mdc +111 -0
  844. package/templates/.cursor/rules/researcher.mdc +54 -0
  845. package/templates/.cursor/rules/scout.mdc +105 -0
  846. package/templates/.cursor/rules/security-agent.mdc +122 -0
  847. package/templates/.cursor/rules/security.mdc +90 -0
  848. package/templates/.cursor/rules/sequential-thinking/references/advanced-strategies.md +80 -0
  849. package/templates/.cursor/rules/sequential-thinking/references/advanced-techniques.md +77 -0
  850. package/templates/.cursor/rules/sequential-thinking/references/core-patterns.md +96 -0
  851. package/templates/.cursor/rules/sequential-thinking/references/examples-api.md +89 -0
  852. package/templates/.cursor/rules/sequential-thinking/references/examples-architecture.md +95 -0
  853. package/templates/.cursor/rules/sequential-thinking/references/examples-debug.md +91 -0
  854. package/templates/.cursor/rules/sequential-thinking/scripts/format-thought.js +159 -0
  855. package/templates/.cursor/rules/sequential-thinking/scripts/process-thought.js +236 -0
  856. package/templates/.cursor/rules/sequential-thinking/sequential-thinking.mdc +86 -0
  857. package/templates/.cursor/rules/tattletale-reporter.mdc +64 -0
  858. package/templates/.cursor/rules/tester.mdc +221 -0
  859. package/templates/.cursor/rules/testing.mdc +215 -0
  860. package/templates/.cursor/rules/typescript-pro/references/advanced-patterns.md +100 -0
  861. package/templates/.cursor/rules/typescript-pro/references/best-practices.md +96 -0
  862. package/templates/.cursor/rules/typescript-pro/references/conditional-types.md +85 -0
  863. package/templates/.cursor/rules/typescript-pro/references/generics.md +97 -0
  864. package/templates/.cursor/rules/typescript-pro/references/mapped-types.md +99 -0
  865. package/templates/.cursor/rules/typescript-pro/references/template-literals.md +85 -0
  866. package/templates/.cursor/rules/typescript-pro/references/type-inference.md +94 -0
  867. package/templates/.cursor/rules/typescript-pro/references/utility-types.md +96 -0
  868. package/templates/.cursor/rules/typescript-pro/typescript-pro.mdc +101 -0
  869. package/templates/.cursor/rules/typescript-pro.mdc +129 -0
  870. package/templates/.cursor/rules/ui-ux-designer.mdc +117 -0
  871. package/templates/.cursor/scripts/helper.py +723 -0
  872. package/templates/.cursor/settings.json +5 -0
  873. package/templates/.kiro/steering/qa-standards.md +84 -0
  874. package/templates/.kiro/steering/test-patterns.md +62 -0
  875. package/templates/.kiro/steering/tool-integration.md +73 -0
@@ -0,0 +1,229 @@
1
+ ---
2
+ name: ui-ux-pro-max
3
+ description: "Frontend UI/UX design intelligence - activate FIRST when user requests beautiful, stunning, gorgeous, or aesthetic interfaces. The primary skill for design decisions before implementation. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check frontend UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
4
+
5
+ ---
6
+
7
+ # UI/UX Pro Max - Design Intelligence
8
+
9
+ Searchable database of UI styles, color palettes, font pairings, chart types, product recommendations, UX guidelines, and stack-specific best practices.
10
+
11
+ ## Prerequisites
12
+
13
+ Check if Python is installed:
14
+
15
+ ```bash
16
+ python3 --version || python --version
17
+ ```
18
+
19
+ If Python is not installed, install it based on user's OS:
20
+
21
+ **macOS:**
22
+ ```bash
23
+ brew install python3
24
+ ```
25
+
26
+ **Ubuntu/Debian:**
27
+ ```bash
28
+ sudo apt update && sudo apt install python3
29
+ ```
30
+
31
+ **Windows:**
32
+ ```powershell
33
+ winget install Python.Python.3.12
34
+ ```
35
+
36
+ ---
37
+
38
+ ## How to Use This Skill
39
+
40
+ When user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:
41
+
42
+ ### Step 1: Analyze User Requirements
43
+
44
+ Extract key information from user request:
45
+ - **Product type**: SaaS, e-commerce, portfolio, dashboard, landing page, etc.
46
+ - **Style keywords**: minimal, playful, professional, elegant, dark mode, etc.
47
+ - **Industry**: healthcare, fintech, gaming, education, etc.
48
+ - **Stack**: React, Vue, Next.js, or default to `html-tailwind`
49
+
50
+ ### Step 2: Search Relevant Domains
51
+
52
+ Use `search.py` multiple times to gather comprehensive information. Search until you have enough context.
53
+
54
+ ```bash
55
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]
56
+ ```
57
+
58
+ **Recommended search order:**
59
+
60
+ 1. **Product** - Get style recommendations for product type
61
+ 2. **Style** - Get detailed style guide (colors, effects, frameworks)
62
+ 3. **Typography** - Get font pairings with Google Fonts imports
63
+ 4. **Color** - Get color palette (Primary, Secondary, CTA, Background, Text, Border)
64
+ 5. **Landing** - Get page structure (if landing page)
65
+ 6. **Chart** - Get chart recommendations (if dashboard/analytics)
66
+ 7. **UX** - Get best practices and anti-patterns
67
+ 8. **Stack** - Get stack-specific guidelines (default: html-tailwind)
68
+
69
+ ### Step 3: Stack Guidelines (Default: html-tailwind)
70
+
71
+ If user doesn't specify a stack, **default to `html-tailwind`**.
72
+
73
+ ```bash
74
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --stack html-tailwind
75
+ ```
76
+
77
+ Available stacks: `html-tailwind`, `react`, `nextjs`, `vue`, `svelte`, `swiftui`, `react-native`, `flutter`
78
+
79
+ ---
80
+
81
+ ## Search Reference
82
+
83
+ ### Available Domains
84
+
85
+ | Domain | Use For | Example Keywords |
86
+ |--------|---------|------------------|
87
+ | `product` | Product type recommendations | SaaS, e-commerce, portfolio, healthcare, beauty, service |
88
+ | `style` | UI styles, colors, effects | glassmorphism, minimalism, dark mode, brutalism |
89
+ | `typography` | Font pairings, Google Fonts | elegant, playful, professional, modern |
90
+ | `color` | Color palettes by product type | saas, ecommerce, healthcare, beauty, fintech, service |
91
+ | `landing` | Page structure, CTA strategies | hero, hero-centric, testimonial, pricing, social-proof |
92
+ | `chart` | Chart types, library recommendations | trend, comparison, timeline, funnel, pie |
93
+ | `ux` | Best practices, anti-patterns | animation, accessibility, z-index, loading |
94
+ | `prompt` | AI prompts, CSS keywords | (style name) |
95
+
96
+ ### Available Stacks
97
+
98
+ | Stack | Focus |
99
+ |-------|-------|
100
+ | `html-tailwind` | Tailwind utilities, responsive, a11y (DEFAULT) |
101
+ | `react` | State, hooks, performance, patterns |
102
+ | `nextjs` | SSR, routing, images, API routes |
103
+ | `vue` | Composition API, Pinia, Vue Router |
104
+ | `svelte` | Runes, stores, SvelteKit |
105
+ | `swiftui` | Views, State, Navigation, Animation |
106
+ | `react-native` | Components, Navigation, Lists |
107
+ | `flutter` | Widgets, State, Layout, Theming |
108
+
109
+ ---
110
+
111
+ ## Example Workflow
112
+
113
+ **User request:** "Làm landing page cho dịch vụ chăm sóc da chuyên nghiệp"
114
+
115
+ **AI should:**
116
+
117
+ ```bash
118
+ # 1. Search product type
119
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service" --domain product
120
+
121
+ # 2. Search style (based on industry: beauty, elegant)
122
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "elegant minimal soft" --domain style
123
+
124
+ # 3. Search typography
125
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "elegant luxury" --domain typography
126
+
127
+ # 4. Search color palette
128
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness" --domain color
129
+
130
+ # 5. Search landing page structure
131
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "hero-centric social-proof" --domain landing
132
+
133
+ # 6. Search UX guidelines
134
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "animation" --domain ux
135
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "accessibility" --domain ux
136
+
137
+ # 7. Search stack guidelines (default: html-tailwind)
138
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "layout responsive" --stack html-tailwind
139
+ ```
140
+
141
+ **Then:** Synthesize all search results and implement the design.
142
+
143
+ ---
144
+
145
+ ## Tips for Better Results
146
+
147
+ 1. **Be specific with keywords** - "healthcare SaaS dashboard" > "app"
148
+ 2. **Search multiple times** - Different keywords reveal different insights
149
+ 3. **Combine domains** - Style + Typography + Color = Complete design system
150
+ 4. **Always check UX** - Search "animation", "z-index", "accessibility" for common issues
151
+ 5. **Use stack flag** - Get implementation-specific best practices
152
+ 6. **Iterate** - If first search doesn't match, try different keywords
153
+
154
+ ---
155
+
156
+ ## Common Rules for Professional UI
157
+
158
+ These are frequently overlooked issues that make UI look unprofessional:
159
+
160
+ ### Icons & Visual Elements
161
+
162
+ | Rule | Do | Don't |
163
+ |------|----|----- |
164
+ | **No emoji icons** | Use SVG icons (Heroicons, Lucide, Simple Icons) | Use emojis like 🎨 🚀 ⚙️ as UI icons |
165
+ | **Stable hover states** | Use color/opacity transitions on hover | Use scale transforms that shift layout |
166
+ | **Correct brand logos** | Research official SVG from Simple Icons | Guess or use incorrect logo paths |
167
+ | **Consistent icon sizing** | Use fixed viewBox (24x24) with w-6 h-6 | Mix different icon sizes randomly |
168
+
169
+ ### Interaction & Cursor
170
+
171
+ | Rule | Do | Don't |
172
+ |------|----|----- |
173
+ | **Cursor pointer** | Add `cursor-pointer` to all clickable/hoverable cards | Leave default cursor on interactive elements |
174
+ | **Hover feedback** | Provide visual feedback (color, shadow, border) | No indication element is interactive |
175
+ | **Smooth transitions** | Use `transition-colors duration-200` | Instant state changes or too slow (>500ms) |
176
+
177
+ ### Light/Dark Mode Contrast
178
+
179
+ | Rule | Do | Don't |
180
+ |------|----|----- |
181
+ | **Glass card light mode** | Use `bg-white/80` or higher opacity | Use `bg-white/10` (too transparent) |
182
+ | **Text contrast light** | Use `#0F172A` (slate-900) for text | Use `#94A3B8` (slate-400) for body text |
183
+ | **Muted text light** | Use `#475569` (slate-600) minimum | Use gray-400 or lighter |
184
+ | **Border visibility** | Use `border-gray-200` in light mode | Use `border-white/10` (invisible) |
185
+
186
+ ### Layout & Spacing
187
+
188
+ | Rule | Do | Don't |
189
+ |------|----|----- |
190
+ | **Floating navbar** | Add `top-4 left-4 right-4` spacing | Stick navbar to `top-0 left-0 right-0` |
191
+ | **Content padding** | Account for fixed navbar height | Let content hide behind fixed elements |
192
+ | **Consistent max-width** | Use same `max-w-6xl` or `max-w-7xl` | Mix different container widths |
193
+
194
+ ---
195
+
196
+ ## Pre-Delivery Checklist
197
+
198
+ Before delivering UI code, verify these items:
199
+
200
+ ### Visual Quality
201
+ - [ ] No emojis used as icons (use SVG instead)
202
+ - [ ] All icons from consistent icon set (Heroicons/Lucide)
203
+ - [ ] Brand logos are correct (verified from Simple Icons)
204
+ - [ ] Hover states don't cause layout shift
205
+ - [ ] Use theme colors directly (bg-primary) not var() wrapper
206
+
207
+ ### Interaction
208
+ - [ ] All clickable elements have `cursor-pointer`
209
+ - [ ] Hover states provide clear visual feedback
210
+ - [ ] Transitions are smooth (150-300ms)
211
+ - [ ] Focus states visible for keyboard navigation
212
+
213
+ ### Light/Dark Mode
214
+ - [ ] Light mode text has sufficient contrast (4.5:1 minimum)
215
+ - [ ] Glass/transparent elements visible in light mode
216
+ - [ ] Borders visible in both modes
217
+ - [ ] Test both modes before delivery
218
+
219
+ ### Layout
220
+ - [ ] Floating elements have proper spacing from edges
221
+ - [ ] No content hidden behind fixed navbars
222
+ - [ ] Responsive at 320px, 768px, 1024px, 1440px
223
+ - [ ] No horizontal scroll on mobile
224
+
225
+ ### Accessibility
226
+ - [ ] All images have alt text
227
+ - [ ] Form inputs have labels
228
+ - [ ] Color is not the only indicator
229
+ - [ ] `prefers-reduced-motion` respected
@@ -0,0 +1,26 @@
1
+ No,Data Type,Keywords,Best Chart Type,Secondary Options,Color Guidance,Performance Impact,Accessibility Notes,Library Recommendation,Interactive Level
2
+ 1,Trend Over Time,"trend, time-series, line, growth, timeline, progress",Line Chart,"Area Chart, Smooth Area",Primary: #0080FF. Multiple series: use distinct colors. Fill: 20% opacity,⚡ Excellent (optimized),✓ Clear line patterns for colorblind users. Add pattern overlays.,"Chart.js, Recharts, ApexCharts",Hover + Zoom
3
+ 2,Compare Categories,"compare, categories, bar, comparison, ranking",Bar Chart (Horizontal or Vertical),"Column Chart, Grouped Bar",Each bar: distinct color. Category: grouped same color. Sorted: descending order,⚡ Excellent,✓ Easy to compare. Add value labels on bars for clarity.,"Chart.js, Recharts, D3.js",Hover + Sort
4
+ 3,Part-to-Whole,"part-to-whole, pie, donut, percentage, proportion, share",Pie Chart or Donut,"Stacked Bar, Treemap",Colors: 5-6 max. Contrasting palette. Large slices first. Use labels.,⚡ Good (limit 6 slices),⚠ Hard for accessibility. Better: Stacked bar with legend. Avoid pie if >5 items.,"Chart.js, Recharts, D3.js",Hover + Drill
5
+ 4,Correlation/Distribution,"correlation, distribution, scatter, relationship, pattern",Scatter Plot or Bubble Chart,"Heat Map, Matrix",Color axis: gradient (blue-red). Size: relative. Opacity: 0.6-0.8 to show density,⚠ Moderate (many points),⚠ Provide data table alternative. Use pattern + color distinction.,"D3.js, Plotly, Recharts",Hover + Brush
6
+ 5,Heatmap/Intensity,"heatmap, heat-map, intensity, density, matrix",Heat Map or Choropleth,"Grid Heat Map, Bubble Heat",Gradient: Cool (blue) to Hot (red). Scale: clear legend. Divergent for ±data,⚡ Excellent (color CSS),⚠ Colorblind: Use pattern overlay. Provide numerical legend.,"D3.js, Plotly, ApexCharts",Hover + Zoom
7
+ 6,Geographic Data,"geographic, map, location, region, geo, spatial","Choropleth Map, Bubble Map",Geographic Heat Map,Regional: single color gradient or categorized colors. Legend: clear scale,⚠ Moderate (rendering),⚠ Include text labels for regions. Provide data table alternative.,"D3.js, Mapbox, Leaflet",Pan + Zoom + Drill
8
+ 7,Funnel/Flow,funnel/flow,"Funnel Chart, Sankey",Waterfall (for flows),Stages: gradient (starting color → ending color). Show conversion %,⚡ Good,✓ Clear stage labels + percentages. Good for accessibility if labeled.,"D3.js, Recharts, Custom SVG",Hover + Drill
9
+ 8,Performance vs Target,performance-vs-target,Gauge Chart or Bullet Chart,"Dial, Thermometer",Performance: Red→Yellow→Green gradient. Target: marker line. Threshold colors,⚡ Good,✓ Add numerical value + percentage label beside gauge.,"D3.js, ApexCharts, Custom SVG",Hover
10
+ 9,Time-Series Forecast,time-series-forecast,Line with Confidence Band,Ribbon Chart,Actual: solid line #0080FF. Forecast: dashed #FF9500. Band: light shading,⚡ Good,✓ Clearly distinguish actual vs forecast. Add legend.,"Chart.js, ApexCharts, Plotly",Hover + Toggle
11
+ 10,Anomaly Detection,anomaly-detection,Line Chart with Highlights,Scatter with Alert,Normal: blue #0080FF. Anomaly: red #FF0000 circle/square marker + alert,⚡ Good,✓ Circle/marker for anomalies. Add text alert annotation.,"D3.js, Plotly, ApexCharts",Hover + Alert
12
+ 11,Hierarchical/Nested Data,hierarchical/nested-data,Treemap,"Sunburst, Nested Donut, Icicle",Parent: distinct hues. Children: lighter shades. White borders 2-3px.,⚠ Moderate,⚠ Poor - provide table alternative. Label large areas.,"D3.js, Recharts, ApexCharts",Hover + Drilldown
13
+ 12,Flow/Process Data,flow/process-data,Sankey Diagram,"Alluvial, Chord Diagram",Gradient from source to target. Opacity 0.4-0.6 for flows.,⚠ Moderate,⚠ Poor - provide flow table alternative.,"D3.js (d3-sankey), Plotly",Hover + Drilldown
14
+ 13,Cumulative Changes,cumulative-changes,Waterfall Chart,"Stacked Bar, Cascade",Increases: #4CAF50. Decreases: #F44336. Start: #2196F3. End: #0D47A1.,⚡ Good,✓ Good - clear directional colors with labels.,"ApexCharts, Highcharts, Plotly",Hover
15
+ 14,Multi-Variable Comparison,multi-variable-comparison,Radar/Spider Chart,"Parallel Coordinates, Grouped Bar",Single: #0080FF 20% fill. Multiple: distinct colors per dataset.,⚡ Good,⚠ Moderate - limit 5-8 axes. Add data table.,"Chart.js, Recharts, ApexCharts",Hover + Toggle
16
+ 15,Stock/Trading OHLC,stock/trading-ohlc,Candlestick Chart,"OHLC Bar, Heikin-Ashi",Bullish: #26A69A. Bearish: #EF5350. Volume: 40% opacity below.,⚡ Good,⚠ Moderate - provide OHLC data table.,"Lightweight Charts (TradingView), ApexCharts",Real-time + Hover + Zoom
17
+ 16,Relationship/Connection Data,relationship/connection-data,Network Graph,"Hierarchical Tree, Adjacency Matrix",Node types: categorical colors. Edges: #90A4AE 60% opacity.,❌ Poor (500+ nodes struggles),❌ Very Poor - provide adjacency list alternative.,"D3.js (d3-force), Vis.js, Cytoscape.js",Drilldown + Hover + Drag
18
+ 17,Distribution/Statistical,distribution/statistical,Box Plot,"Violin Plot, Beeswarm",Box: #BBDEFB. Border: #1976D2. Median: #D32F2F. Outliers: #F44336.,⚡ Excellent,"✓ Good - include stats table (min, Q1, median, Q3, max).","Plotly, D3.js, Chart.js (plugin)",Hover
19
+ 18,Performance vs Target (Compact),performance-vs-target-(compact),Bullet Chart,"Gauge, Progress Bar","Ranges: #FFCDD2, #FFF9C4, #C8E6C9. Performance: #1976D2. Target: black 3px.",⚡ Excellent,✓ Excellent - compact with clear values.,"D3.js, Plotly, Custom SVG",Hover
20
+ 19,Proportional/Percentage,proportional/percentage,Waffle Chart,"Pictogram, Stacked Bar 100%",10x10 grid. 3-5 categories max. 2-3px spacing between squares.,⚡ Good,✓ Good - better than pie for accessibility.,"D3.js, React-Waffle, Custom CSS Grid",Hover
21
+ 20,Hierarchical Proportional,hierarchical-proportional,Sunburst Chart,"Treemap, Icicle, Circle Packing",Center to outer: darker to lighter. 15-20% lighter per level.,⚠ Moderate,⚠ Poor - provide hierarchy table alternative.,"D3.js (d3-hierarchy), Recharts, ApexCharts",Drilldown + Hover
22
+ 21,Root Cause Analysis,"root cause, decomposition, tree, hierarchy, drill-down, ai-split",Decomposition Tree,"Decision Tree, Flow Chart",Nodes: #2563EB (Primary) vs #EF4444 (Negative impact). Connectors: Neutral grey.,⚠ Moderate (calculation heavy),✓ clear hierarchy. Allow keyboard navigation for nodes.,"Power BI (native), React-Flow, Custom D3.js",Drill + Expand
23
+ 22,3D Spatial Data,"3d, spatial, immersive, terrain, molecular, volumetric",3D Scatter/Surface Plot,"Volumetric Rendering, Point Cloud",Depth cues: lighting/shading. Z-axis: color gradient (cool to warm).,❌ Heavy (WebGL required),❌ Poor - requires alternative 2D view or data table.,"Three.js, Deck.gl, Plotly 3D",Rotate + Zoom + VR
24
+ 23,Real-Time Streaming,"streaming, real-time, ticker, live, velocity, pulse",Streaming Area Chart,"Ticker Tape, Moving Gauge",Current: Bright Pulse (#00FF00). History: Fading opacity. Grid: Dark.,⚡ Optimized (canvas/webgl),⚠ Flashing elements - provide pause button. High contrast.,Smoothed D3.js, CanvasJS, SciChart,Real-time + Pause
25
+ 24,Sentiment/Emotion,"sentiment, emotion, nlp, opinion, feeling",Word Cloud with Sentiment,"Sentiment Arc, Radar Chart",Positive: #22C55E. Negative: #EF4444. Neutral: #94A3B8. Size = Frequency.,⚡ Good,⚠ Word clouds poor for screen readers. Use list view.,"D3-cloud, Highcharts, Nivo",Hover + Filter
26
+ 25,Process Mining,"process, mining, variants, path, bottleneck, log",Process Map / Graph,"Directed Acyclic Graph (DAG), Petri Net",Happy path: #10B981 (Thick). Deviations: #F59E0B (Thin). Bottlenecks: #EF4444.,⚠ Moderate to Heavy,⚠ Complex graphs hard to navigate. Provide path summary.,"React-Flow, Cytoscape.js, Recharts",Drag + Node-Click
@@ -0,0 +1,97 @@
1
+ No,Product Type,Keywords,Primary (Hex),Secondary (Hex),CTA (Hex),Background (Hex),Text (Hex),Border (Hex),Notes
2
+ 1,SaaS (General),"saas, general",#2563EB,#3B82F6,#F97316,#F8FAFC,#1E293B,#E2E8F0,Trust blue + accent contrast
3
+ 2,Micro SaaS,"micro, saas",#2563EB,#3B82F6,#F97316,#F8FAFC,#1E293B,#E2E8F0,Vibrant primary + white space
4
+ 3,E-commerce,commerce,#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Brand primary + success green
5
+ 4,E-commerce Luxury,"commerce, luxury",#1C1917,#44403C,#CA8A04,#FAFAF9,#0C0A09,#D6D3D1,Premium colors + minimal accent
6
+ 5,Service Landing Page,"service, landing, page",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Brand primary + trust colors
7
+ 6,B2B Service,"b2b, service",#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,Professional blue + neutral grey
8
+ 7,Financial Dashboard,"financial, dashboard",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Dark bg + red/green alerts + trust blue
9
+ 8,Analytics Dashboard,"analytics, dashboard",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Cool→Hot gradients + neutral grey
10
+ 9,Healthcare App,"healthcare, app",#0891B2,#22D3EE,#059669,#ECFEFF,#164E63,#A5F3FC,Calm blue + health green + trust
11
+ 10,Educational App,"educational, app",#4F46E5,#818CF8,#F97316,#EEF2FF,#1E1B4B,#C7D2FE,Playful colors + clear hierarchy
12
+ 11,Creative Agency,"creative, agency",#EC4899,#F472B6,#06B6D4,#FDF2F8,#831843,#FBCFE8,Bold primaries + artistic freedom
13
+ 12,Portfolio/Personal,"portfolio, personal",#18181B,#3F3F46,#2563EB,#FAFAFA,#09090B,#E4E4E7,Brand primary + artistic interpretation
14
+ 13,Gaming,gaming,#7C3AED,#A78BFA,#F43F5E,#0F0F23,#E2E8F0,#4C1D95,Vibrant + neon + immersive colors
15
+ 14,Government/Public Service,"government, public, service",#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,Professional blue + high contrast
16
+ 15,Fintech/Crypto,"fintech, crypto",#F59E0B,#FBBF24,#8B5CF6,#0F172A,#F8FAFC,#334155,Dark tech colors + trust + vibrant accents
17
+ 16,Social Media App,"social, media, app",#2563EB,#60A5FA,#F43F5E,#F8FAFC,#1E293B,#DBEAFE,Vibrant + engagement colors
18
+ 17,Productivity Tool,"productivity, tool",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Clear hierarchy + functional colors
19
+ 18,Design System/Component Library,"design, system, component, library",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Clear hierarchy + code-like structure
20
+ 19,AI/Chatbot Platform,"chatbot, platform",#7C3AED,#A78BFA,#06B6D4,#FAF5FF,#1E1B4B,#DDD6FE,Neutral + AI Purple (#6366F1)
21
+ 20,NFT/Web3 Platform,"nft, web3, platform",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Dark + Neon + Gold (#FFD700)
22
+ 21,Creator Economy Platform,"creator, economy, platform",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Vibrant + Brand colors
23
+ 22,Sustainability/ESG Platform,"sustainability, esg, platform",#7C3AED,#A78BFA,#06B6D4,#FAF5FF,#1E1B4B,#DDD6FE,Green (#228B22) + Earth tones
24
+ 23,Remote Work/Collaboration Tool,"remote, work, collaboration, tool",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Calm Blue + Neutral grey
25
+ 24,Mental Health App,"mental, health, app",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Calm Pastels + Trust colors
26
+ 25,Pet Tech App,"pet, tech, app",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Playful + Warm colors
27
+ 26,Smart Home/IoT Dashboard,"smart, home, iot, dashboard",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Dark + Status indicator colors
28
+ 27,EV/Charging Ecosystem,"charging, ecosystem",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Electric Blue (#009CD1) + Green
29
+ 28,Subscription Box Service,"subscription, box, service",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Brand + Excitement colors
30
+ 29,Podcast Platform,"podcast, platform",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Dark + Audio waveform accents
31
+ 30,Dating App,"dating, app",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Warm + Romantic (Pink/Red gradients)
32
+ 31,Micro-Credentials/Badges Platform,"micro, credentials, badges, platform",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Trust Blue + Gold (#FFD700)
33
+ 32,Knowledge Base/Documentation,"knowledge, base, documentation",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Clean hierarchy + minimal color
34
+ 33,Hyperlocal Services,"hyperlocal, services",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Location markers + Trust colors
35
+ 34,Beauty/Spa/Wellness Service,"beauty, spa, wellness, service",#10B981,#34D399,#8B5CF6,#ECFDF5,#064E3B,#A7F3D0,Soft pastels (Pink #FFB6C1 Sage #90EE90) + Cream + Gold accents
36
+ 35,Luxury/Premium Brand,"luxury, premium, brand",#1C1917,#44403C,#CA8A04,#FAFAF9,#0C0A09,#D6D3D1,Black + Gold (#FFD700) + White + Minimal accent
37
+ 36,Restaurant/Food Service,"restaurant, food, service",#DC2626,#F87171,#CA8A04,#FEF2F2,#450A0A,#FECACA,Warm colors (Orange Red Brown) + appetizing imagery
38
+ 37,Fitness/Gym App,"fitness, gym, app",#DC2626,#F87171,#16A34A,#FEF2F2,#1F2937,#FECACA,Energetic (Orange #FF6B35 Electric Blue) + Dark bg
39
+ 38,Real Estate/Property,"real, estate, property",#0F766E,#14B8A6,#0369A1,#F0FDFA,#134E4A,#99F6E4,Trust Blue (#0077B6) + Gold accents + White
40
+ 39,Travel/Tourism Agency,"travel, tourism, agency",#EC4899,#F472B6,#06B6D4,#FDF2F8,#831843,#FBCFE8,Vibrant destination colors + Sky Blue + Warm accents
41
+ 40,Hotel/Hospitality,"hotel, hospitality",#1E3A8A,#3B82F6,#CA8A04,#F8FAFC,#1E40AF,#BFDBFE,Warm neutrals + Gold (#D4AF37) + Brand accent
42
+ 41,Wedding/Event Planning,"wedding, event, planning",#7C3AED,#A78BFA,#F97316,#FAF5FF,#4C1D95,#DDD6FE,Soft Pink (#FFD6E0) + Gold + Cream + Sage
43
+ 42,Legal Services,"legal, services",#1E3A8A,#1E40AF,#B45309,#F8FAFC,#0F172A,#CBD5E1,Navy Blue (#1E3A5F) + Gold + White
44
+ 43,Insurance Platform,"insurance, platform",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Trust Blue (#0066CC) + Green (security) + Neutral
45
+ 44,Banking/Traditional Finance,"banking, traditional, finance",#0F766E,#14B8A6,#0369A1,#F0FDFA,#134E4A,#99F6E4,Navy (#0A1628) + Trust Blue + Gold accents
46
+ 45,Online Course/E-learning,"online, course, learning",#0D9488,#2DD4BF,#EA580C,#F0FDFA,#134E4A,#5EEAD4,Vibrant learning colors + Progress green
47
+ 46,Non-profit/Charity,"non, profit, charity",#0891B2,#22D3EE,#F97316,#ECFEFF,#164E63,#A5F3FC,Cause-related colors + Trust + Warm
48
+ 47,Music Streaming,"music, streaming",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Dark (#121212) + Vibrant accents + Album art colors
49
+ 48,Video Streaming/OTT,"video, streaming, ott",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Dark bg + Content poster colors + Brand accent
50
+ 49,Job Board/Recruitment,"job, board, recruitment",#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,Professional Blue + Success Green + Neutral
51
+ 50,Marketplace (P2P),"marketplace, p2p",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Trust colors + Category colors + Success green
52
+ 51,Logistics/Delivery,"logistics, delivery",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Blue (#2563EB) + Orange (tracking) + Green (delivered)
53
+ 52,Agriculture/Farm Tech,"agriculture, farm, tech",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Earth Green (#4A7C23) + Brown + Sky Blue
54
+ 53,Construction/Architecture,"construction, architecture",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Grey (#4A4A4A) + Orange (safety) + Blueprint Blue
55
+ 54,Automotive/Car Dealership,"automotive, car, dealership",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Brand colors + Metallic accents + Dark/Light
56
+ 55,Photography Studio,"photography, studio",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Black + White + Minimal accent
57
+ 56,Coworking Space,"coworking, space",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Energetic colors + Wood tones + Brand accent
58
+ 57,Cleaning Service,"cleaning, service",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Fresh Blue (#00B4D8) + Clean White + Green
59
+ 58,Home Services (Plumber/Electrician),"home, services, plumber, electrician",#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,Trust Blue + Safety Orange + Professional grey
60
+ 59,Childcare/Daycare,"childcare, daycare",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Playful pastels + Safe colors + Warm accents
61
+ 60,Senior Care/Elderly,"senior, care, elderly",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Calm Blue + Warm neutrals + Large text
62
+ 61,Medical Clinic,"medical, clinic",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Medical Blue (#0077B6) + Trust White + Calm Green
63
+ 62,Pharmacy/Drug Store,"pharmacy, drug, store",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Pharmacy Green + Trust Blue + Clean White
64
+ 63,Dental Practice,"dental, practice",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Fresh Blue + White + Smile Yellow accent
65
+ 64,Veterinary Clinic,"veterinary, clinic",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Caring Blue + Pet-friendly colors + Warm accents
66
+ 65,Florist/Plant Shop,"florist, plant, shop",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Natural Green + Floral pinks/purples + Earth tones
67
+ 66,Bakery/Cafe,"bakery, cafe",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Warm Brown + Cream + Appetizing accents
68
+ 67,Coffee Shop,"coffee, shop",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Coffee Brown (#6F4E37) + Cream + Warm accents
69
+ 68,Brewery/Winery,"brewery, winery",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Deep amber/burgundy + Gold + Craft aesthetic
70
+ 69,Airline,airline,#7C3AED,#A78BFA,#06B6D4,#FAF5FF,#1E1B4B,#DDD6FE,Sky Blue + Brand colors + Trust accents
71
+ 70,News/Media Platform,"news, media, platform",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Brand colors + High contrast + Category colors
72
+ 71,Magazine/Blog,"magazine, blog",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Editorial colors + Brand primary + Clean white
73
+ 72,Freelancer Platform,"freelancer, platform",#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,Professional Blue + Success Green + Neutral
74
+ 73,Consulting Firm,"consulting, firm",#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,Navy + Gold + Professional grey
75
+ 74,Marketing Agency,"marketing, agency",#EC4899,#F472B6,#06B6D4,#FDF2F8,#831843,#FBCFE8,Bold brand colors + Creative freedom
76
+ 75,Event Management,"event, management",#7C3AED,#A78BFA,#F97316,#FAF5FF,#4C1D95,#DDD6FE,Event theme colors + Excitement accents
77
+ 76,Conference/Webinar Platform,"conference, webinar, platform",#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,Professional Blue + Video accent + Brand
78
+ 77,Membership/Community,"membership, community",#7C3AED,#A78BFA,#F97316,#FAF5FF,#4C1D95,#DDD6FE,Community brand colors + Engagement accents
79
+ 78,Newsletter Platform,"newsletter, platform",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Brand primary + Clean white + CTA accent
80
+ 79,Digital Products/Downloads,"digital, products, downloads",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Product category colors + Brand + Success green
81
+ 80,Church/Religious Organization,"church, religious, organization",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Warm Gold + Deep Purple/Blue + White
82
+ 81,Sports Team/Club,"sports, team, club",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Team colors + Energetic accents
83
+ 82,Museum/Gallery,"museum, gallery",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Art-appropriate neutrals + Exhibition accents
84
+ 83,Theater/Cinema,"theater, cinema",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Dark + Spotlight accents + Gold
85
+ 84,Language Learning App,"language, learning, app",#0D9488,#2DD4BF,#EA580C,#F0FDFA,#134E4A,#5EEAD4,Playful colors + Progress indicators + Country flags
86
+ 85,Coding Bootcamp,"coding, bootcamp",#3B82F6,#60A5FA,#F97316,#F8FAFC,#1E293B,#E2E8F0,Code editor colors + Brand + Success green
87
+ 86,Cybersecurity Platform,"cybersecurity, security, cyber, hacker",#00FF41,#0D0D0D,#00FF41,#000000,#E0E0E0,#1F1F1F,Matrix Green + Deep Black + Terminal feel
88
+ 87,Developer Tool / IDE,"developer, tool, ide, code, dev",#3B82F6,#1E293B,#2563EB,#0F172A,#F1F5F9,#334155,Dark syntax theme colors + Blue focus
89
+ 88,Biotech / Life Sciences,"biotech, science, biology, medical",#0EA5E9,#0284C7,#10B981,#F8FAFC,#0F172A,#E2E8F0,Sterile White + DNA Blue + Life Green
90
+ 89,Space Tech / Aerospace,"space, aerospace, tech, futuristic",#FFFFFF,#94A3B8,#3B82F6,#0B0B10,#F8FAFC,#1E293B,Deep Space Black + Star White + Metallic
91
+ 90,Architecture / Interior,"architecture, interior, design, luxury",#171717,#404040,#D4AF37,#FFFFFF,#171717,#E5E5E5,Monochrome + Gold Accent + High Imagery
92
+ 91,Quantum Computing,"quantum, qubit, tech",#00FFFF,#7B61FF,#FF00FF,#050510,#E0E0FF,#333344,Interference patterns + Neon + Deep Dark
93
+ 92,Biohacking / Longevity,"bio, health, science",#FF4D4D,#4D94FF,#00E676,#F5F5F7,#1C1C1E,#E5E5EA,Biological red/blue + Clinical white
94
+ 93,Autonomous Systems,"drone, robot, fleet",#00FF41,#008F11,#FF3333,#0D1117,#E6EDF3,#30363D,Terminal Green + Tactical Dark
95
+ 94,Generative AI Art,"art, gen-ai, creative",#111111,#333333,#FFFFFF,#FAFAFA,#000000,#E5E5E5,Canvas Neutral + High Contrast
96
+ 95,Spatial / Vision OS,"spatial, glass, vision",#FFFFFF,#E5E5E5,#007AFF,#888888,#000000,#FFFFFF,Glass opacity 20% + System Blue
97
+ 96,Climate Tech,"climate, green, energy",#2E8B57,#87CEEB,#FFD700,#F0FFF4,#1A3320,#C6E6C6,Nature Green + Solar Yellow + Air Blue
@@ -0,0 +1,31 @@
1
+ No,Pattern Name,Keywords,Section Order,Primary CTA Placement,Color Strategy,Recommended Effects,Conversion Optimization
2
+ 1,Hero + Features + CTA,"hero, hero-centric, features, feature-rich, cta, call-to-action","1. Hero with headline/image, 2. Value prop, 3. Key features (3-5), 4. CTA section, 5. Footer",Hero (sticky) + Bottom,Hero: Brand primary or vibrant. Features: Card bg #FAFAFA. CTA: Contrasting accent color,"Hero parallax, feature card hover lift, CTA glow on hover",Deep CTA placement. Use contrasting color (at least 7:1 contrast ratio). Sticky navbar CTA.
3
+ 2,Hero + Testimonials + CTA,"hero, testimonials, social-proof, trust, reviews, cta","1. Hero, 2. Problem statement, 3. Solution overview, 4. Testimonials carousel, 5. CTA",Hero (sticky) + Post-testimonials,"Hero: Brand color. Testimonials: Light bg #F5F5F5. Quotes: Italic, muted color #666. CTA: Vibrant","Testimonial carousel slide animations, quote marks animations, avatar fade-in",Social proof before CTA. Use 3-5 testimonials. Include photo + name + role. CTA after social proof.
4
+ 3,Product Demo + Features,"demo, product-demo, features, showcase, interactive","1. Hero, 2. Product video/mockup (center), 3. Feature breakdown per section, 4. Comparison (optional), 5. CTA",Video center + CTA right/bottom,Video surround: Brand color overlay. Features: Icon color #0080FF. Text: Dark #222,"Video play button pulse, feature scroll reveals, demo interaction highlights",Embedded product demo increases engagement. Use interactive mockup if possible. Auto-play video muted.
5
+ 4,Minimal Single Column,"minimal, simple, direct, single-column, clean","1. Hero headline, 2. Short description, 3. Benefit bullets (3 max), 4. CTA, 5. Footer","Center, large CTA button",Minimalist: Brand + white #FFFFFF + accent. Buttons: High contrast 7:1+. Text: Black/Dark grey,Minimal hover effects. Smooth scroll. CTA scale on hover (subtle),Single CTA focus. Large typography. Lots of whitespace. No nav clutter. Mobile-first.
6
+ 5,Funnel (3-Step Conversion),"funnel, conversion, steps, wizard, onboarding","1. Hero, 2. Step 1 (problem), 3. Step 2 (solution), 4. Step 3 (action), 5. CTA progression",Each step: mini-CTA. Final: main CTA,"Step colors: 1 (Red/Problem), 2 (Orange/Process), 3 (Green/Solution). CTA: Brand color","Step number animations, progress bar fill, step transitions smooth scroll",Progressive disclosure. Show only essential info per step. Use progress indicators. Multiple CTAs.
7
+ 6,Comparison Table + CTA,"comparison, table, compare, versus, cta","1. Hero, 2. Problem intro, 3. Comparison table (product vs competitors), 4. Pricing (optional), 5. CTA",Table: Right column. CTA: Below table,Table: Alternating rows (white/light grey). Your product: Highlight #FFFACD (light yellow) or green. Text: Dark,"Table row hover highlight, price toggle animations, feature checkmark animations",Use comparison to show unique value. Highlight your product row. Include 'free trial' in pricing row.
8
+ 7,Lead Magnet + Form,"lead, form, signup, capture, email, magnet","1. Hero (benefit headline), 2. Lead magnet preview (ebook cover, checklist, etc), 3. Form (minimal fields), 4. CTA submit",Form CTA: Submit button,Lead magnet: Professional design. Form: Clean white bg. Inputs: Light border #CCCCCC. CTA: Brand color,"Form focus state animations, input validation animations, success confirmation animation",Form fields ≤ 3 for best conversion. Offer valuable lead magnet preview. Show form submission progress.
9
+ 8,Pricing Page + CTA,"pricing, plans, tiers, comparison, cta","1. Hero (pricing headline), 2. Price comparison cards, 3. Feature comparison table, 4. FAQ section, 5. Final CTA",Each card: CTA button. Sticky CTA in nav,"Free: Grey, Starter: Blue, Pro: Green/Gold, Enterprise: Dark. Cards: 1px border, shadow","Price toggle animation (monthly/yearly), card comparison highlight, FAQ accordion open/close",Recommend starter plan (pre-select/highlight). Show annual discount (20-30%). Use FAQs to address concerns.
10
+ 9,Video-First Hero,"video, hero, media, visual, engaging","1. Hero with video background, 2. Key features overlay, 3. Benefits section, 4. CTA",Overlay on video (center/bottom) + Bottom section,Dark overlay 60% on video. Brand accent for CTA. White text on dark.,"Video autoplay muted, parallax scroll, text fade-in on scroll",86% higher engagement with video. Add captions for accessibility. Compress video for performance.
11
+ 10,Scroll-Triggered Storytelling,"storytelling, scroll, narrative, story, immersive","1. Intro hook, 2. Chapter 1 (problem), 3. Chapter 2 (journey), 4. Chapter 3 (solution), 5. Climax CTA",End of each chapter (mini) + Final climax CTA,Progressive reveal. Each chapter has distinct color. Building intensity.,"ScrollTrigger animations, parallax layers, progressive disclosure, chapter transitions",Narrative increases time-on-page 3x. Use progress indicator. Mobile: simplify animations.
12
+ 11,AI Personalization Landing,"ai, personalization, smart, recommendation, dynamic","1. Dynamic hero (personalized), 2. Relevant features, 3. Tailored testimonials, 4. Smart CTA",Context-aware placement based on user segment,Adaptive based on user data. A/B test color variations per segment.,"Dynamic content swap, fade transitions, personalized product recommendations",20%+ conversion with personalization. Requires analytics integration. Fallback for new users.
13
+ 12,Waitlist/Coming Soon,"waitlist, coming-soon, launch, early-access, notify","1. Hero with countdown, 2. Product teaser/preview, 3. Email capture form, 4. Social proof (waitlist count)",Email form prominent (above fold) + Sticky form on scroll,Anticipation: Dark + accent highlights. Countdown in brand color. Urgency indicators.,"Countdown timer animation, email validation feedback, success confetti, social share buttons",Scarcity + exclusivity. Show waitlist count. Early access benefits. Referral program.
14
+ 13,Comparison Table Focus,"comparison, table, versus, compare, features","1. Hero (problem statement), 2. Comparison matrix (you vs competitors), 3. Feature deep-dive, 4. Winner CTA",After comparison table (highlighted row) + Bottom,Your product column highlighted (accent bg or green). Competitors neutral. Checkmarks green.,"Table row hover highlight, feature checkmark animations, sticky comparison header",Show value vs competitors. 35% higher conversion. Be factual. Include pricing if favorable.
15
+ 14,Pricing-Focused Landing,"pricing, price, cost, plans, subscription","1. Hero (value proposition), 2. Pricing cards (3 tiers), 3. Feature comparison, 4. FAQ, 5. Final CTA",Each pricing card + Sticky CTA in nav + Bottom,Popular plan highlighted (brand color border/bg). Free: grey. Enterprise: dark/premium.,"Price toggle monthly/annual animation, card hover lift, FAQ accordion smooth open",Annual discount 20-30%. Recommend mid-tier (most popular badge). Address objections in FAQ.
16
+ 15,App Store Style Landing,"app, mobile, download, store, install","1. Hero with device mockup, 2. Screenshots carousel, 3. Features with icons, 4. Reviews/ratings, 5. Download CTAs",Download buttons prominent (App Store + Play Store) throughout,Dark/light matching app store feel. Star ratings in gold. Screenshots with device frames.,"Device mockup rotations, screenshot slider, star rating animations, download button pulse",Show real screenshots. Include ratings (4.5+ stars). QR code for mobile. Platform-specific CTAs.
17
+ 16,FAQ/Documentation Landing,"faq, documentation, help, support, questions","1. Hero with search bar, 2. Popular categories, 3. FAQ accordion, 4. Contact/support CTA",Search bar prominent + Contact CTA for unresolved questions,"Clean, high readability. Minimal color. Category icons in brand color. Success green for resolved.","Search autocomplete, smooth accordion open/close, category hover, helpful feedback buttons",Reduce support tickets. Track search analytics. Show related articles. Contact escalation path.
18
+ 17,Immersive/Interactive Experience,"immersive, interactive, experience, 3d, animation","1. Full-screen interactive element, 2. Guided product tour, 3. Key benefits revealed, 4. CTA after completion",After interaction complete + Skip option for impatient users,Immersive experience colors. Dark background for focus. Highlight interactive elements.,"WebGL, 3D interactions, gamification elements, progress indicators, reward animations",40% higher engagement. Performance trade-off. Provide skip option. Mobile fallback essential.
19
+ 18,Event/Conference Landing,"event, conference, meetup, registration, schedule","1. Hero (date/location/countdown), 2. Speakers grid, 3. Agenda/schedule, 4. Sponsors, 5. Register CTA",Register CTA sticky + After speakers + Bottom,Urgency colors (countdown). Event branding. Speaker cards professional. Sponsor logos neutral.,"Countdown timer, speaker hover cards with bio, agenda tabs, early bird countdown",Early bird pricing with deadline. Social proof (past attendees). Speaker credibility. Multi-ticket discounts.
20
+ 19,Product Review/Ratings Focused,"reviews, ratings, testimonials, social-proof, stars","1. Hero (product + aggregate rating), 2. Rating breakdown, 3. Individual reviews, 4. Buy/CTA",After reviews summary + Buy button alongside reviews,Trust colors. Star ratings gold. Verified badge green. Review sentiment colors.,"Star fill animations, review filtering, helpful vote interactions, photo lightbox",User-generated content builds trust. Show verified purchases. Filter by rating. Respond to negative reviews.
21
+ 20,Community/Forum Landing,"community, forum, social, members, discussion","1. Hero (community value prop), 2. Popular topics/categories, 3. Active members showcase, 4. Join CTA",Join button prominent + After member showcase,"Warm, welcoming. Member photos add humanity. Topic badges in brand colors. Activity indicators green.","Member avatars animation, activity feed live updates, topic hover previews, join success celebration","Show active community (member count, posts today). Highlight benefits. Preview content. Easy onboarding."
22
+ 21,Before-After Transformation,"before-after, transformation, results, comparison","1. Hero (problem state), 2. Transformation slider/comparison, 3. How it works, 4. Results CTA",After transformation reveal + Bottom,Contrast: muted/grey (before) vs vibrant/colorful (after). Success green for results.,"Slider comparison interaction, before/after reveal animations, result counters, testimonial videos",Visual proof of value. 45% higher conversion. Real results. Specific metrics. Guarantee offer.
23
+ 22,Marketplace / Directory,"marketplace, directory, search, listing","1. Hero (Search focused), 2. Categories, 3. Featured Listings, 4. Trust/Safety, 5. CTA (Become a host/seller)",Hero Search Bar + Navbar 'List your item',Search: High contrast. Categories: Visual icons. Trust: Blue/Green.,Search autocomplete animation, map hover pins, card carousel,Search bar is the CTA. Reduce friction to search. Popular searches suggestions.
24
+ 23,Newsletter / Content First,"newsletter, content, writer, blog, subscribe","1. Hero (Value Prop + Form), 2. Recent Issues/Archives, 3. Social Proof (Subscriber count), 4. About Author",Hero inline form + Sticky header form,Minimalist. Paper-like background. Text focus. Accent color for Subscribe.,Text highlight animations, typewriter effect, subtle fade-in,Single field form (Email only). Show 'Join X,000 readers'. Read sample link.
25
+ 24,Webinar Registration,"webinar, registration, event, training, live","1. Hero (Topic + Timer + Form), 2. What you'll learn, 3. Speaker Bio, 4. Urgency/Bonuses, 5. Form (again)",Hero (Right side form) + Bottom anchor,Urgency: Red/Orange. Professional: Blue/Navy. Form: High contrast white.,Countdown timer, speaker avatar float, urgent ticker,Limited seats logic. 'Live' indicator. Auto-fill timezone.
26
+ 25,Enterprise Gateway,"enterprise, corporate, gateway, solutions, portal","1. Hero (Video/Mission), 2. Solutions by Industry, 3. Solutions by Role, 4. Client Logos, 5. Contact Sales",Contact Sales (Primary) + Login (Secondary),Corporate: Navy/Grey. High integrity. Conservative accents.,Slow video background, logo carousel, tab switching for industries,Path selection (I am a...). Mega menu navigation. Trust signals prominent.
27
+ 26,Portfolio Grid,"portfolio, grid, showcase, gallery, masonry","1. Hero (Name/Role), 2. Project Grid (Masonry), 3. About/Philosophy, 4. Contact",Project Card Hover + Footer Contact,Neutral background (let work shine). Text: Black/White. Accent: Minimal.,Image lazy load reveal, hover overlay info, lightbox view,Visuals first. Filter by category. Fast loading essential.
28
+ 27,Horizontal Scroll Journey,"horizontal, scroll, journey, gallery, storytelling, panoramic","1. Intro (Vertical), 2. The Journey (Horizontal Track), 3. Detail Reveal, 4. Vertical Footer","Floating Sticky CTA or End of Horizontal Track","Continuous palette transition. Chapter colors. Progress bar #000000.","Scroll-jacking (careful), parallax layers, horizontal slide, progress indicator","Immersive product discovery. High engagement. Keep navigation visible.
29
+ 28,Bento Grid Showcase,"bento, grid, features, modular, apple-style, showcase","1. Hero, 2. Bento Grid (Key Features), 3. Detail Cards, 4. Tech Specs, 5. CTA","Floating Action Button or Bottom of Grid","Card backgrounds: #F5F5F7 or Glass. Icons: Vibrant brand colors. Text: Dark.","Hover card scale (1.02), video inside cards, tilt effect, staggered reveal","Scannable value props. High information density without clutter. Mobile stack.
30
+ 29,Interactive 3D Configurator,"3d, configurator, customizer, interactive, product","1. Hero (Configurator), 2. Feature Highlight (synced), 3. Price/Specs, 4. Purchase","Inside Configurator UI + Sticky Bottom Bar","Neutral studio background. Product: Realistic materials. UI: Minimal overlay.","Real-time rendering, material swap animation, camera rotate/zoom, light reflection","Increases ownership feeling. 360 view reduces return rates. Direct add-to-cart.
31
+ 30,AI-Driven Dynamic Landing,"ai, dynamic, personalized, adaptive, generative","1. Prompt/Input Hero, 2. Generated Result Preview, 3. How it Works, 4. Value Prop","Input Field (Hero) + 'Try it' Buttons","Adaptive to user input. Dark mode for compute feel. Neon accents.","Typing text effects, shimmering generation loaders, morphing layouts","Immediate value demonstration. 'Show, don't tell'. Low friction start.
@@ -0,0 +1,97 @@
1
+ No,Product Type,Keywords,Primary Style Recommendation,Secondary Styles,Landing Page Pattern,Dashboard Style (if applicable),Color Palette Focus,Key Considerations
2
+ 1,SaaS (General),"app, b2b, cloud, general, saas, software, subscription",Glassmorphism + Flat Design,"Soft UI Evolution, Minimalism",Hero + Features + CTA,Data-Dense + Real-Time Monitoring,Trust blue + accent contrast,Balance modern feel with clarity. Focus on CTAs.
3
+ 2,Micro SaaS,"app, b2b, cloud, indie, micro, micro-saas, niche, saas, small, software, solo, subscription",Flat Design + Vibrant & Block,"Motion-Driven, Micro-interactions",Minimal & Direct + Demo,Executive Dashboard,Vibrant primary + white space,"Keep simple, show product quickly. Speed is key."
4
+ 3,E-commerce,"buy, commerce, e, ecommerce, products, retail, sell, shop, store",Vibrant & Block-based,"Aurora UI, Motion-Driven",Feature-Rich Showcase,Sales Intelligence Dashboard,Brand primary + success green,Engagement & conversions. High visual hierarchy.
5
+ 4,E-commerce Luxury,"buy, commerce, e, ecommerce, elegant, exclusive, high-end, luxury, premium, products, retail, sell, shop, store",Liquid Glass + Glassmorphism,"3D & Hyperrealism, Aurora UI",Feature-Rich Showcase,Sales Intelligence Dashboard,Premium colors + minimal accent,Elegance & sophistication. Premium materials.
6
+ 5,Service Landing Page,"appointment, booking, consultation, conversion, landing, marketing, page, service",Hero-Centric + Trust & Authority,"Social Proof-Focused, Storytelling",Hero-Centric Design,N/A - Analytics for conversions,Brand primary + trust colors,Social proof essential. Show expertise.
7
+ 6,B2B Service,"appointment, b, b2b, booking, business, consultation, corporate, enterprise, service",Trust & Authority + Minimal,"Feature-Rich, Conversion-Optimized",Feature-Rich Showcase,Sales Intelligence Dashboard,Professional blue + neutral grey,Credibility essential. Clear ROI messaging.
8
+ 7,Financial Dashboard,"admin, analytics, dashboard, data, financial, panel",Dark Mode (OLED) + Data-Dense,"Minimalism, Accessible & Ethical",N/A - Dashboard focused,Financial Dashboard,Dark bg + red/green alerts + trust blue,"High contrast, real-time updates, accuracy paramount."
9
+ 8,Analytics Dashboard,"admin, analytics, dashboard, data, panel",Data-Dense + Heat Map & Heatmap,"Minimalism, Dark Mode (OLED)",N/A - Analytics focused,Drill-Down Analytics + Comparative,Cool→Hot gradients + neutral grey,Clarity > aesthetics. Color-coded data priority.
10
+ 9,Healthcare App,"app, clinic, health, healthcare, medical, patient",Neumorphism + Accessible & Ethical,"Soft UI Evolution, Claymorphism (for patients)",Social Proof-Focused,User Behavior Analytics,Calm blue + health green + trust,Accessibility mandatory. Calming aesthetic.
11
+ 10,Educational App,"app, course, education, educational, learning, school, training",Claymorphism + Micro-interactions,"Vibrant & Block-based, Flat Design",Storytelling-Driven,User Behavior Analytics,Playful colors + clear hierarchy,Engagement & ease of use. Age-appropriate design.
12
+ 11,Creative Agency,"agency, creative, design, marketing, studio",Brutalism + Motion-Driven,"Retro-Futurism, Storytelling-Driven",Storytelling-Driven,N/A - Portfolio focused,Bold primaries + artistic freedom,Differentiation key. Wow-factor necessary.
13
+ 12,Portfolio/Personal,"creative, personal, portfolio, projects, showcase, work",Motion-Driven + Minimalism,"Brutalism, Aurora UI",Storytelling-Driven,N/A - Personal branding,Brand primary + artistic interpretation,Showcase work. Personality shine through.
14
+ 13,Gaming,"entertainment, esports, game, gaming, play",3D & Hyperrealism + Retro-Futurism,"Motion-Driven, Vibrant & Block",Feature-Rich Showcase,N/A - Game focused,Vibrant + neon + immersive colors,Immersion priority. Performance critical.
15
+ 14,Government/Public Service,"appointment, booking, consultation, government, public, service",Accessible & Ethical + Minimalism,"Flat Design, Inclusive Design",Minimal & Direct,Executive Dashboard,Professional blue + high contrast,WCAG AAA mandatory. Trust paramount.
16
+ 15,Fintech/Crypto,"banking, blockchain, crypto, defi, finance, fintech, money, nft, payment, web3",Glassmorphism + Dark Mode (OLED),"Retro-Futurism, Motion-Driven",Conversion-Optimized,Real-Time Monitoring + Predictive,Dark tech colors + trust + vibrant accents,Security perception. Real-time data critical.
17
+ 16,Social Media App,"app, community, content, entertainment, media, network, sharing, social, streaming, users, video",Vibrant & Block-based + Motion-Driven,"Aurora UI, Micro-interactions",Feature-Rich Showcase,User Behavior Analytics,Vibrant + engagement colors,Engagement & retention. Addictive design ethics.
18
+ 17,Productivity Tool,"collaboration, productivity, project, task, tool, workflow",Flat Design + Micro-interactions,"Minimalism, Soft UI Evolution",Interactive Product Demo,Drill-Down Analytics,Clear hierarchy + functional colors,Ease of use. Speed & efficiency focus.
19
+ 18,Design System/Component Library,"component, design, library, system",Minimalism + Accessible & Ethical,"Flat Design, Zero Interface",Feature-Rich Showcase,N/A - Dev focused,Clear hierarchy + code-like structure,Consistency. Developer-first approach.
20
+ 19,AI/Chatbot Platform,"ai, artificial-intelligence, automation, chatbot, machine-learning, ml, platform",AI-Native UI + Minimalism,"Zero Interface, Glassmorphism",Interactive Product Demo,AI/ML Analytics Dashboard,Neutral + AI Purple (#6366F1),Conversational UI. Streaming text. Context awareness. Minimal chrome.
21
+ 20,NFT/Web3 Platform,"nft, platform, web",Cyberpunk UI + Glassmorphism,"Aurora UI, 3D & Hyperrealism",Feature-Rich Showcase,Crypto/Blockchain Dashboard,Dark + Neon + Gold (#FFD700),Wallet integration. Transaction feedback. Gas fees display. Dark mode essential.
22
+ 21,Creator Economy Platform,"creator, economy, platform",Vibrant & Block-based + Bento Box Grid,"Motion-Driven, Aurora UI",Social Proof-Focused,User Behavior Analytics,Vibrant + Brand colors,Creator profiles. Monetization display. Engagement metrics. Social proof.
23
+ 22,Sustainability/ESG Platform,"ai, artificial-intelligence, automation, esg, machine-learning, ml, platform, sustainability",Organic Biophilic + Minimalism,"Accessible & Ethical, Flat Design",Trust & Authority,Energy/Utilities Dashboard,Green (#228B22) + Earth tones,Carbon footprint visuals. Progress indicators. Certification badges. Eco-friendly imagery.
24
+ 23,Remote Work/Collaboration Tool,"collaboration, remote, tool, work",Soft UI Evolution + Minimalism,"Glassmorphism, Micro-interactions",Feature-Rich Showcase,Drill-Down Analytics,Calm Blue + Neutral grey,Real-time collaboration. Status indicators. Video integration. Notification management.
25
+ 24,Mental Health App,"app, health, mental",Neumorphism + Accessible & Ethical,"Claymorphism, Soft UI Evolution",Social Proof-Focused,Healthcare Analytics,Calm Pastels + Trust colors,Calming aesthetics. Privacy-first. Crisis resources. Progress tracking. Accessibility mandatory.
26
+ 25,Pet Tech App,"app, pet, tech",Claymorphism + Vibrant & Block-based,"Micro-interactions, Flat Design",Storytelling-Driven,User Behavior Analytics,Playful + Warm colors,Pet profiles. Health tracking. Playful UI. Photo galleries. Vet integration.
27
+ 26,Smart Home/IoT Dashboard,"admin, analytics, dashboard, data, home, iot, panel, smart",Glassmorphism + Dark Mode (OLED),"Minimalism, AI-Native UI",Interactive Product Demo,Real-Time Monitoring,Dark + Status indicator colors,Device status. Real-time controls. Energy monitoring. Automation rules. Quick actions.
28
+ 27,EV/Charging Ecosystem,"charging, ecosystem, ev",Minimalism + Aurora UI,"Glassmorphism, Organic Biophilic",Hero-Centric Design,Energy/Utilities Dashboard,Electric Blue (#009CD1) + Green,Charging station maps. Range estimation. Cost calculation. Environmental impact.
29
+ 28,Subscription Box Service,"appointment, booking, box, consultation, membership, plan, recurring, service, subscription",Vibrant & Block-based + Motion-Driven,"Claymorphism, Aurora UI",Feature-Rich Showcase,E-commerce Analytics,Brand + Excitement colors,Unboxing experience. Personalization quiz. Subscription management. Product reveals.
30
+ 29,Podcast Platform,"platform, podcast",Dark Mode (OLED) + Minimalism,"Motion-Driven, Vibrant & Block-based",Storytelling-Driven,Media/Entertainment Dashboard,Dark + Audio waveform accents,Audio player UX. Episode discovery. Creator tools. Analytics for podcasters.
31
+ 30,Dating App,"app, dating",Vibrant & Block-based + Motion-Driven,"Aurora UI, Glassmorphism",Social Proof-Focused,User Behavior Analytics,Warm + Romantic (Pink/Red gradients),Profile cards. Swipe interactions. Match animations. Safety features. Video chat.
32
+ 31,Micro-Credentials/Badges Platform,"badges, credentials, micro, platform",Minimalism + Flat Design,"Accessible & Ethical, Swiss Modernism 2.0",Trust & Authority,Education Dashboard,Trust Blue + Gold (#FFD700),Credential verification. Badge display. Progress tracking. Issuer trust. LinkedIn integration.
33
+ 32,Knowledge Base/Documentation,"base, documentation, knowledge",Minimalism + Accessible & Ethical,"Swiss Modernism 2.0, Flat Design",FAQ/Documentation,N/A - Documentation focused,Clean hierarchy + minimal color,Search-first. Clear navigation. Code highlighting. Version switching. Feedback system.
34
+ 33,Hyperlocal Services,"appointment, booking, consultation, hyperlocal, service, services",Minimalism + Vibrant & Block-based,"Micro-interactions, Flat Design",Conversion-Optimized,Drill-Down Analytics + Map,Location markers + Trust colors,Map integration. Service categories. Provider profiles. Booking system. Reviews.
35
+ 34,Beauty/Spa/Wellness Service,"appointment, beauty, booking, consultation, service, spa, wellness",Soft UI Evolution + Neumorphism,"Glassmorphism, Minimalism",Hero-Centric Design + Social Proof,User Behavior Analytics,Soft pastels (Pink #FFB6C1 Sage #90EE90) + Cream + Gold accents,Calming aesthetic. Booking system. Service menu. Before/after gallery. Testimonials. Relaxing imagery.
36
+ 35,Luxury/Premium Brand,"brand, elegant, exclusive, high-end, luxury, premium",Liquid Glass + Glassmorphism,"Minimalism, 3D & Hyperrealism",Storytelling-Driven + Feature-Rich,Sales Intelligence Dashboard,Black + Gold (#FFD700) + White + Minimal accent,Elegance paramount. Premium imagery. Storytelling. High-quality visuals. Exclusive feel.
37
+ 36,Restaurant/Food Service,"appointment, booking, consultation, delivery, food, menu, order, restaurant, service",Vibrant & Block-based + Motion-Driven,"Claymorphism, Flat Design",Hero-Centric Design + Conversion,N/A - Booking focused,Warm colors (Orange Red Brown) + appetizing imagery,Menu display. Online ordering. Reservation system. Food photography. Location/hours prominent.
38
+ 37,Fitness/Gym App,"app, exercise, fitness, gym, health, workout",Vibrant & Block-based + Dark Mode (OLED),"Motion-Driven, Neumorphism",Feature-Rich Showcase,User Behavior Analytics,Energetic (Orange #FF6B35 Electric Blue) + Dark bg,Progress tracking. Workout plans. Community features. Achievements. Motivational design.
39
+ 38,Real Estate/Property,"buy, estate, housing, property, real, real-estate, rent",Glassmorphism + Minimalism,"Motion-Driven, 3D & Hyperrealism",Hero-Centric Design + Feature-Rich,Sales Intelligence Dashboard,Trust Blue (#0077B6) + Gold accents + White,Property listings. Virtual tours. Map integration. Agent profiles. Mortgage calculator. High-quality imagery.
40
+ 39,Travel/Tourism Agency,"agency, booking, creative, design, flight, hotel, marketing, studio, tourism, travel, vacation",Aurora UI + Motion-Driven,"Vibrant & Block-based, Glassmorphism",Storytelling-Driven + Hero-Centric,Booking Analytics,Vibrant destination colors + Sky Blue + Warm accents,Destination showcase. Booking system. Itinerary builder. Reviews. Inspiration galleries. Mobile-first.
41
+ 40,Hotel/Hospitality,"hospitality, hotel",Liquid Glass + Minimalism,"Glassmorphism, Soft UI Evolution",Hero-Centric Design + Social Proof,Revenue Management Dashboard,Warm neutrals + Gold (#D4AF37) + Brand accent,Room booking. Amenities showcase. Location maps. Guest reviews. Seasonal pricing. Luxury imagery.
42
+ 41,Wedding/Event Planning,"conference, event, meetup, planning, registration, ticket, wedding",Soft UI Evolution + Aurora UI,"Glassmorphism, Motion-Driven",Storytelling-Driven + Social Proof,N/A - Planning focused,Soft Pink (#FFD6E0) + Gold + Cream + Sage,Portfolio gallery. Vendor directory. Planning tools. Timeline. Budget tracker. Romantic aesthetic.
43
+ 42,Legal Services,"appointment, attorney, booking, compliance, consultation, contract, law, legal, service, services",Trust & Authority + Minimalism,"Accessible & Ethical, Swiss Modernism 2.0",Trust & Authority + Minimal,Case Management Dashboard,Navy Blue (#1E3A5F) + Gold + White,Credibility paramount. Practice areas. Attorney profiles. Case results. Contact forms. Professional imagery.
44
+ 43,Insurance Platform,"insurance, platform",Trust & Authority + Flat Design,"Accessible & Ethical, Minimalism",Conversion-Optimized + Trust,Claims Analytics Dashboard,Trust Blue (#0066CC) + Green (security) + Neutral,Quote calculator. Policy comparison. Claims process. Trust signals. Clear pricing. Security badges.
45
+ 44,Banking/Traditional Finance,"banking, finance, traditional",Minimalism + Accessible & Ethical,"Trust & Authority, Dark Mode (OLED)",Trust & Authority + Feature-Rich,Financial Dashboard,Navy (#0A1628) + Trust Blue + Gold accents,Security-first. Account overview. Transaction history. Mobile banking. Accessibility critical. Trust paramount.
46
+ 45,Online Course/E-learning,"course, e, learning, online",Claymorphism + Vibrant & Block-based,"Motion-Driven, Flat Design",Feature-Rich Showcase + Social Proof,Education Dashboard,Vibrant learning colors + Progress green,Course catalog. Progress tracking. Video player. Quizzes. Certificates. Community forums. Gamification.
47
+ 46,Non-profit/Charity,"charity, non, profit",Accessible & Ethical + Organic Biophilic,"Minimalism, Storytelling-Driven",Storytelling-Driven + Trust,Donation Analytics Dashboard,Cause-related colors + Trust + Warm,Impact stories. Donation flow. Transparency reports. Volunteer signup. Event calendar. Emotional connection.
48
+ 47,Music Streaming,"music, streaming",Dark Mode (OLED) + Vibrant & Block-based,"Motion-Driven, Aurora UI",Feature-Rich Showcase,Media/Entertainment Dashboard,Dark (#121212) + Vibrant accents + Album art colors,Audio player. Playlist management. Artist pages. Personalization. Social features. Waveform visualizations.
49
+ 48,Video Streaming/OTT,"ott, streaming, video",Dark Mode (OLED) + Motion-Driven,"Glassmorphism, Vibrant & Block-based",Hero-Centric Design + Feature-Rich,Media/Entertainment Dashboard,Dark bg + Content poster colors + Brand accent,Video player. Content discovery. Watchlist. Continue watching. Personalized recommendations. Thumbnail-heavy.
50
+ 49,Job Board/Recruitment,"board, job, recruitment",Flat Design + Minimalism,"Vibrant & Block-based, Accessible & Ethical",Conversion-Optimized + Feature-Rich,HR Analytics Dashboard,Professional Blue + Success Green + Neutral,Job listings. Search/filter. Company profiles. Application tracking. Resume upload. Salary insights.
51
+ 50,Marketplace (P2P),"buyers, listings, marketplace, p, platform, sellers",Vibrant & Block-based + Flat Design,"Micro-interactions, Trust & Authority",Feature-Rich Showcase + Social Proof,E-commerce Analytics,Trust colors + Category colors + Success green,Seller/buyer profiles. Listings. Reviews/ratings. Secure payment. Messaging. Search/filter. Trust badges.
52
+ 51,Logistics/Delivery,"delivery, logistics",Minimalism + Flat Design,"Dark Mode (OLED), Micro-interactions",Feature-Rich Showcase + Conversion,Real-Time Monitoring + Route Analytics,Blue (#2563EB) + Orange (tracking) + Green (delivered),Real-time tracking. Delivery scheduling. Route optimization. Driver management. Status updates. Map integration.
53
+ 52,Agriculture/Farm Tech,"agriculture, farm, tech",Organic Biophilic + Flat Design,"Minimalism, Accessible & Ethical",Feature-Rich Showcase + Trust,IoT Sensor Dashboard,Earth Green (#4A7C23) + Brown + Sky Blue,Crop monitoring. Weather data. IoT sensors. Yield tracking. Market prices. Sustainable imagery.
54
+ 53,Construction/Architecture,"architecture, construction",Minimalism + 3D & Hyperrealism,"Brutalism, Swiss Modernism 2.0",Hero-Centric Design + Feature-Rich,Project Management Dashboard,Grey (#4A4A4A) + Orange (safety) + Blueprint Blue,Project portfolio. 3D renders. Timeline. Material specs. Team collaboration. Blueprint aesthetic.
55
+ 54,Automotive/Car Dealership,"automotive, car, dealership",Motion-Driven + 3D & Hyperrealism,"Dark Mode (OLED), Glassmorphism",Hero-Centric Design + Feature-Rich,Sales Intelligence Dashboard,Brand colors + Metallic accents + Dark/Light,Vehicle showcase. 360° views. Comparison tools. Financing calculator. Test drive booking. High-quality imagery.
56
+ 55,Photography Studio,"photography, studio",Motion-Driven + Minimalism,"Aurora UI, Glassmorphism",Storytelling-Driven + Hero-Centric,N/A - Portfolio focused,Black + White + Minimal accent,Portfolio gallery. Before/after. Service packages. Booking system. Client galleries. Full-bleed imagery.
57
+ 56,Coworking Space,"coworking, space",Vibrant & Block-based + Glassmorphism,"Minimalism, Motion-Driven",Hero-Centric Design + Feature-Rich,Occupancy Dashboard,Energetic colors + Wood tones + Brand accent,Space tour. Membership plans. Booking system. Amenities. Community events. Virtual tour.
58
+ 57,Cleaning Service,"appointment, booking, cleaning, consultation, service",Soft UI Evolution + Flat Design,"Minimalism, Micro-interactions",Conversion-Optimized + Trust,Service Analytics,Fresh Blue (#00B4D8) + Clean White + Green,Service packages. Booking system. Price calculator. Before/after gallery. Reviews. Trust badges.
59
+ 58,Home Services (Plumber/Electrician),"appointment, booking, consultation, electrician, home, plumber, service, services",Flat Design + Trust & Authority,"Minimalism, Accessible & Ethical",Conversion-Optimized + Trust,Service Analytics,Trust Blue + Safety Orange + Professional grey,Service list. Emergency contact. Booking. Price transparency. Certifications. Local trust signals.
60
+ 59,Childcare/Daycare,"childcare, daycare",Claymorphism + Vibrant & Block-based,"Soft UI Evolution, Accessible & Ethical",Social Proof-Focused + Trust,Parent Dashboard,Playful pastels + Safe colors + Warm accents,Programs. Staff profiles. Safety certifications. Parent portal. Activity updates. Cheerful imagery.
61
+ 60,Senior Care/Elderly,"care, elderly, senior",Accessible & Ethical + Soft UI Evolution,"Minimalism, Neumorphism",Trust & Authority + Social Proof,Healthcare Analytics,Calm Blue + Warm neutrals + Large text,Care services. Staff qualifications. Facility tour. Family portal. Large touch targets. High contrast. Accessibility-first.
62
+ 61,Medical Clinic,"clinic, medical",Accessible & Ethical + Minimalism,"Neumorphism, Trust & Authority",Trust & Authority + Conversion,Healthcare Analytics,Medical Blue (#0077B6) + Trust White + Calm Green,Services. Doctor profiles. Online booking. Patient portal. Insurance info. HIPAA compliant. Trust signals.
63
+ 62,Pharmacy/Drug Store,"drug, pharmacy, store",Flat Design + Accessible & Ethical,"Minimalism, Trust & Authority",Conversion-Optimized + Trust,Inventory Dashboard,Pharmacy Green + Trust Blue + Clean White,Product catalog. Prescription upload. Refill reminders. Health info. Store locator. Safety certifications.
64
+ 63,Dental Practice,"dental, practice",Soft UI Evolution + Minimalism,"Accessible & Ethical, Trust & Authority",Social Proof-Focused + Conversion,Patient Analytics,Fresh Blue + White + Smile Yellow accent,Services. Dentist profiles. Before/after. Online booking. Insurance. Patient testimonials. Friendly imagery.
65
+ 64,Veterinary Clinic,"clinic, veterinary",Claymorphism + Accessible & Ethical,"Soft UI Evolution, Flat Design",Social Proof-Focused + Trust,Pet Health Dashboard,Caring Blue + Pet-friendly colors + Warm accents,Pet services. Vet profiles. Online booking. Pet portal. Emergency info. Friendly animal imagery.
66
+ 65,Florist/Plant Shop,"florist, plant, shop",Organic Biophilic + Vibrant & Block-based,"Aurora UI, Motion-Driven",Hero-Centric Design + Conversion,E-commerce Analytics,Natural Green + Floral pinks/purples + Earth tones,Product catalog. Occasion categories. Delivery scheduling. Care guides. Seasonal collections. Beautiful imagery.
67
+ 66,Bakery/Cafe,"bakery, cafe",Vibrant & Block-based + Soft UI Evolution,"Claymorphism, Motion-Driven",Hero-Centric Design + Conversion,N/A - Order focused,Warm Brown + Cream + Appetizing accents,Menu display. Online ordering. Location/hours. Catering. Seasonal specials. Appetizing photography.
68
+ 67,Coffee Shop,"coffee, shop",Minimalism + Organic Biophilic,"Soft UI Evolution, Flat Design",Hero-Centric Design + Conversion,N/A - Order focused,Coffee Brown (#6F4E37) + Cream + Warm accents,Menu. Online ordering. Loyalty program. Location. Story/origin. Cozy aesthetic.
69
+ 68,Brewery/Winery,"brewery, winery",Motion-Driven + Storytelling-Driven,"Dark Mode (OLED), Organic Biophilic",Storytelling-Driven + Hero-Centric,N/A - E-commerce focused,Deep amber/burgundy + Gold + Craft aesthetic,Product showcase. Story/heritage. Tasting notes. Events. Club membership. Artisanal imagery.
70
+ 69,Airline,"ai, airline, artificial-intelligence, automation, machine-learning, ml",Minimalism + Glassmorphism,"Motion-Driven, Accessible & Ethical",Conversion-Optimized + Feature-Rich,Operations Dashboard,Sky Blue + Brand colors + Trust accents,Flight search. Booking. Check-in. Boarding pass. Loyalty program. Route maps. Mobile-first.
71
+ 70,News/Media Platform,"content, entertainment, media, news, platform, streaming, video",Minimalism + Flat Design,"Dark Mode (OLED), Accessible & Ethical",Hero-Centric Design + Feature-Rich,Media Analytics Dashboard,Brand colors + High contrast + Category colors,Article layout. Breaking news. Categories. Search. Subscription. Mobile reading. Fast loading.
72
+ 71,Magazine/Blog,"articles, blog, content, magazine, posts, writing",Swiss Modernism 2.0 + Motion-Driven,"Minimalism, Aurora UI",Storytelling-Driven + Hero-Centric,Content Analytics,Editorial colors + Brand primary + Clean white,Article showcase. Category navigation. Author profiles. Newsletter signup. Related content. Typography-focused.
73
+ 72,Freelancer Platform,"freelancer, platform",Flat Design + Minimalism,"Vibrant & Block-based, Micro-interactions",Feature-Rich Showcase + Conversion,Marketplace Analytics,Professional Blue + Success Green + Neutral,Profile creation. Portfolio. Skill matching. Messaging. Payment. Reviews. Project management.
74
+ 73,Consulting Firm,"consulting, firm",Trust & Authority + Minimalism,"Swiss Modernism 2.0, Accessible & Ethical",Trust & Authority + Feature-Rich,N/A - Lead generation,Navy + Gold + Professional grey,Service areas. Case studies. Team profiles. Thought leadership. Contact. Professional credibility.
75
+ 74,Marketing Agency,"agency, creative, design, marketing, studio",Brutalism + Motion-Driven,"Vibrant & Block-based, Aurora UI",Storytelling-Driven + Feature-Rich,Campaign Analytics,Bold brand colors + Creative freedom,Portfolio. Case studies. Services. Team. Creative showcase. Results-focused. Bold aesthetic.
76
+ 75,Event Management,"conference, event, management, meetup, registration, ticket",Vibrant & Block-based + Motion-Driven,"Glassmorphism, Aurora UI",Hero-Centric Design + Feature-Rich,Event Analytics,Event theme colors + Excitement accents,Event showcase. Registration. Agenda. Speakers. Sponsors. Ticket sales. Countdown timer.
77
+ 76,Conference/Webinar Platform,"conference, platform, webinar",Glassmorphism + Minimalism,"Motion-Driven, Flat Design",Feature-Rich Showcase + Conversion,Attendee Analytics,Professional Blue + Video accent + Brand,Registration. Agenda. Speaker profiles. Live stream. Networking. Recording access. Virtual event features.
78
+ 77,Membership/Community,"community, membership",Vibrant & Block-based + Soft UI Evolution,"Bento Box Grid, Micro-interactions",Social Proof-Focused + Conversion,Community Analytics,Community brand colors + Engagement accents,Member benefits. Pricing tiers. Community showcase. Events. Member directory. Exclusive content.
79
+ 78,Newsletter Platform,"newsletter, platform",Minimalism + Flat Design,"Swiss Modernism 2.0, Accessible & Ethical",Minimal & Direct + Conversion,Email Analytics,Brand primary + Clean white + CTA accent,Subscribe form. Archive. About. Social proof. Sample content. Simple conversion.
80
+ 79,Digital Products/Downloads,"digital, downloads, products",Vibrant & Block-based + Motion-Driven,"Glassmorphism, Bento Box Grid",Feature-Rich Showcase + Conversion,E-commerce Analytics,Product category colors + Brand + Success green,Product showcase. Preview. Pricing. Instant delivery. License management. Customer reviews.
81
+ 80,Church/Religious Organization,"church, organization, religious",Accessible & Ethical + Soft UI Evolution,"Minimalism, Trust & Authority",Hero-Centric Design + Social Proof,N/A - Community focused,Warm Gold + Deep Purple/Blue + White,Service times. Events. Sermons. Community. Giving. Location. Welcoming imagery.
82
+ 81,Sports Team/Club,"club, sports, team",Vibrant & Block-based + Motion-Driven,"Dark Mode (OLED), 3D & Hyperrealism",Hero-Centric Design + Feature-Rich,Performance Analytics,Team colors + Energetic accents,Schedule. Roster. News. Tickets. Merchandise. Fan engagement. Action imagery.
83
+ 82,Museum/Gallery,"gallery, museum",Minimalism + Motion-Driven,"Swiss Modernism 2.0, 3D & Hyperrealism",Storytelling-Driven + Feature-Rich,Visitor Analytics,Art-appropriate neutrals + Exhibition accents,Exhibitions. Collections. Tickets. Events. Virtual tours. Educational content. Art-focused design.
84
+ 83,Theater/Cinema,"cinema, theater",Dark Mode (OLED) + Motion-Driven,"Vibrant & Block-based, Glassmorphism",Hero-Centric Design + Conversion,Booking Analytics,Dark + Spotlight accents + Gold,Showtimes. Seat selection. Trailers. Coming soon. Membership. Dramatic imagery.
85
+ 84,Language Learning App,"app, language, learning",Claymorphism + Vibrant & Block-based,"Micro-interactions, Flat Design",Feature-Rich Showcase + Social Proof,Learning Analytics,Playful colors + Progress indicators + Country flags,Lesson structure. Progress tracking. Gamification. Speaking practice. Community. Achievement badges.
86
+ 85,Coding Bootcamp,"bootcamp, coding",Dark Mode (OLED) + Minimalism,"Cyberpunk UI, Flat Design",Feature-Rich Showcase + Social Proof,Student Analytics,Code editor colors + Brand + Success green,Curriculum. Projects. Career outcomes. Alumni. Pricing. Application. Terminal aesthetic.
87
+ 86,Cybersecurity Platform,"cyber, security, platform",Cyberpunk UI + Dark Mode (OLED),"Neubrutalism, Minimal & Direct",Trust & Authority + Real-Time,Real-Time Monitoring + Heat Map,Matrix Green + Deep Black + Terminal feel,Data density. Threat visualization. Dark mode default.
88
+ 87,Developer Tool / IDE,"dev, developer, tool, ide",Dark Mode (OLED) + Minimalism,"Flat Design, Bento Box Grid",Minimal & Direct + Documentation,Real-Time Monitor + Terminal,Dark syntax theme colors + Blue focus,Keyboard shortcuts. Syntax highlighting. Fast performance.
89
+ 88,Biotech / Life Sciences,"biotech, biology, science",Glassmorphism + Clean Science,"Minimalism, Organic Biophilic",Storytelling-Driven + Research,Data-Dense + Predictive,Sterile White + DNA Blue + Life Green,Data accuracy. Cleanliness. Complex data viz.
90
+ 89,Space Tech / Aerospace,"aerospace, space, tech",Holographic / HUD + Dark Mode,"Glassmorphism, 3D & Hyperrealism",Immersive Experience + Hero,Real-Time Monitoring + 3D,Deep Space Black + Star White + Metallic,High-tech feel. Precision. Telemetry data.
91
+ 90,Architecture / Interior,"architecture, design, interior",Exaggerated Minimalism + High Imagery,"Swiss Modernism 2.0, Parallax",Portfolio Grid + Visuals,Project Management + Gallery,Monochrome + Gold Accent + High Imagery,High-res images. Typography. Space.
92
+ 91,Quantum Computing Interface,"quantum, computing, physics, qubit, future, science",Holographic / HUD + Dark Mode,"Glassmorphism, Spatial UI",Immersive/Interactive Experience,3D Spatial Data + Real-Time Monitor,Quantum Blue #00FFFF + Deep Black + Interference patterns,Visualize complexity. Qubit states. Probability clouds. High-tech trust.
93
+ 92,Biohacking / Longevity App,"biohacking, health, longevity, tracking, wellness, science",Biomimetic / Organic 2.0,"Minimalism, Dark Mode (OLED)",Data-Dense + Storytelling,Real-Time Monitor + Biological Data,Cellular Pink/Red + DNA Blue + Clean White,Personal data privacy. Scientific credibility. Biological visualizations.
94
+ 93,Autonomous Drone Fleet Manager,"drone, autonomous, fleet, aerial, logistics, robotics",HUD / Sci-Fi FUI,"Real-Time Monitor, Spatial UI",Real-Time Monitor,Geographic + Real-Time,Tactical Green #00FF00 + Alert Red + Map Dark,Real-time telemetry. 3D spatial awareness. Latency indicators. Safety alerts.
95
+ 94,Generative Art Platform,"art, generative, ai, creative, platform, gallery",Minimalism (Frame) + Gen Z Chaos,"Masonry Grid, Dark Mode",Bento Grid Showcase,Gallery / Portfolio,Neutral #F5F5F5 (Canvas) + User Content,Content is king. Fast loading. Creator attribution. Minting flow.
96
+ 95,Spatial Computing OS / App,"spatial, vr, ar, vision, os, immersive, mixed-reality",Spatial UI (VisionOS),"Glassmorphism, 3D & Hyperrealism",Immersive/Interactive Experience,Spatial Dashboard,Frosted Glass + System Colors + Depth,Gaze/Pinch interaction. Depth hierarchy. Environment awareness.
97
+ 96,Sustainable Energy / Climate Tech,"climate, energy, sustainable, green, tech, carbon",Organic Biophilic + E-Ink / Paper,"Data-Dense, Swiss Modernism",Interactive Demo + Data,Energy/Utilities Dashboard,Earth Green + Sky Blue + Solar Yellow,Data transparency. Impact visualization. Low-carbon web design.