cokit-cli 1.0.8 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1163) hide show
  1. package/.vscode/settings.json +70 -70
  2. package/AGENTS.md +103 -103
  3. package/FAQ.md +101 -102
  4. package/INIT.md +154 -154
  5. package/LICENSE +32 -32
  6. package/QUICK-START.md +37 -37
  7. package/README.FLOW.md +237 -237
  8. package/README.md +92 -171
  9. package/agents/brainstormer.agent.md +71 -71
  10. package/agents/code-reviewer.agent.md +136 -128
  11. package/agents/debugger.agent.md +128 -128
  12. package/agents/docs-manager.agent.md +121 -121
  13. package/agents/git-manager.agent.md +390 -390
  14. package/agents/planner.agent.md +94 -94
  15. package/agents/researcher.agent.md +32 -32
  16. package/agents/scout.agent.md +107 -107
  17. package/agents/tester.agent.md +117 -106
  18. package/bin/cokit.js +4 -4
  19. package/changelogs/1.0.8.md +77 -0
  20. package/changelogs/1.0.9.md +173 -0
  21. package/collections/ck-core.collection.yml +28 -30
  22. package/collections/ck-development-rules.collection.yml +18 -18
  23. package/collections/ck-documentation.collection.yml +14 -18
  24. package/collections/ck-git-workflow.collection.yml +12 -18
  25. package/collections/ck-orchestration.collection.yml +16 -22
  26. package/docs/README.md +108 -85
  27. package/docs/cokit-comprehensive-mapping-guide.md +374 -937
  28. package/docs/cokit-slides.md +222 -205
  29. package/docs/cokit-team-presentation.md +378 -319
  30. package/docs/copilot-processing-flow.md +212 -128
  31. package/docs/migration-guide.md +133 -120
  32. package/docs/project-roadmap.md +280 -257
  33. package/instructions/ck-backend.instructions.md +48 -48
  34. package/instructions/ck-development.instructions.md +54 -54
  35. package/instructions/ck-frontend.instructions.md +44 -44
  36. package/instructions/ck-research.instructions.md +167 -167
  37. package/instructions/ck-testing.instructions.md +36 -36
  38. package/package.json +42 -42
  39. package/plans/reports/docs-manager-260120-0854-documentation-update.md +323 -0
  40. package/prompts/ck-ask.prompt.md +57 -57
  41. package/prompts/ck-bootstrap.prompt.md +136 -136
  42. package/prompts/ck-brainstorm.prompt.md +105 -105
  43. package/prompts/ck-ck-help.prompt.md +112 -114
  44. package/prompts/ck-code.prompt.md +178 -178
  45. package/prompts/ck-cook.prompt.md +97 -97
  46. package/prompts/ck-debug.prompt.md +14 -14
  47. package/prompts/ck-docs.prompt.md +51 -0
  48. package/prompts/ck-fix.prompt.md +44 -44
  49. package/prompts/ck-git.prompt.md +79 -0
  50. package/prompts/ck-plan.prompt.md +80 -80
  51. package/prompts/ck-test.prompt.md +10 -10
  52. package/repomix-output.xml +40725 -0
  53. package/rules/README.agents.md +55 -55
  54. package/rules/README.collections.md +78 -78
  55. package/rules/README.copilot-instructions.md +66 -66
  56. package/rules/README.instructions.md +73 -73
  57. package/rules/README.md +39 -39
  58. package/rules/README.prompts.md +76 -76
  59. package/rules/README.skills.md +71 -71
  60. package/skills/ck-backend-development/SKILL.md +96 -93
  61. package/skills/ck-backend-development/references/backend-api-design.md +495 -495
  62. package/skills/ck-backend-development/references/backend-architecture.md +454 -454
  63. package/skills/ck-backend-development/references/backend-authentication.md +338 -338
  64. package/skills/ck-backend-development/references/backend-code-quality.md +659 -659
  65. package/skills/ck-backend-development/references/backend-debugging.md +904 -904
  66. package/skills/ck-backend-development/references/backend-devops.md +494 -494
  67. package/skills/ck-backend-development/references/backend-mindset.md +387 -387
  68. package/skills/ck-backend-development/references/backend-performance.md +397 -397
  69. package/skills/ck-backend-development/references/backend-security.md +290 -290
  70. package/skills/ck-backend-development/references/backend-technologies.md +290 -256
  71. package/skills/ck-backend-development/references/backend-testing.md +561 -429
  72. package/skills/ck-code-review/SKILL.md +143 -143
  73. package/skills/ck-code-review/references/code-review-reception.md +208 -208
  74. package/skills/ck-code-review/references/requesting-code-review.md +104 -104
  75. package/skills/ck-code-review/references/verification-before-completion.md +138 -138
  76. package/skills/ck-debugging/SKILL.md +82 -82
  77. package/skills/ck-debugging/references/defense-in-depth.md +124 -124
  78. package/skills/ck-debugging/references/root-cause-tracing.md +122 -122
  79. package/skills/ck-debugging/references/systematic-debugging.md +102 -102
  80. package/skills/ck-debugging/references/verification.md +123 -123
  81. package/skills/ck-debugging/scripts/find-polluter.sh +63 -63
  82. package/skills/ck-debugging/scripts/find-polluter.test.md +102 -102
  83. package/skills/ck-frontend-development/SKILL.md +399 -399
  84. package/skills/ck-frontend-development/resources/common-patterns.md +330 -330
  85. package/skills/ck-frontend-development/resources/complete-examples.md +871 -871
  86. package/skills/ck-frontend-development/resources/component-patterns.md +501 -501
  87. package/skills/ck-frontend-development/resources/data-fetching.md +766 -766
  88. package/skills/ck-frontend-development/resources/file-organization.md +501 -501
  89. package/skills/ck-frontend-development/resources/loading-and-error-states.md +500 -500
  90. package/skills/ck-frontend-development/resources/performance.md +405 -405
  91. package/skills/ck-frontend-development/resources/routing-guide.md +363 -363
  92. package/skills/ck-frontend-development/resources/styling-guide.md +427 -427
  93. package/skills/ck-frontend-development/resources/typescript-standards.md +417 -417
  94. package/skills/ck-planning/SKILL.md +112 -112
  95. package/skills/ck-planning/references/codebase-understanding.md +62 -62
  96. package/skills/ck-planning/references/output-standards.md +127 -127
  97. package/skills/ck-planning/references/plan-organization.md +150 -150
  98. package/skills/ck-planning/references/research-phase.md +49 -49
  99. package/skills/ck-planning/references/solution-design.md +63 -63
  100. package/skills/ck-problem-solving/SKILL.md +95 -95
  101. package/skills/ck-problem-solving/references/attribution.md +69 -69
  102. package/skills/ck-problem-solving/references/collision-zone-thinking.md +79 -79
  103. package/skills/ck-problem-solving/references/inversion-exercise.md +91 -91
  104. package/skills/ck-problem-solving/references/meta-pattern-recognition.md +87 -87
  105. package/skills/ck-problem-solving/references/scale-game.md +95 -95
  106. package/skills/ck-problem-solving/references/simplification-cascades.md +80 -80
  107. package/skills/ck-problem-solving/references/when-stuck.md +72 -72
  108. package/skills/ck-sequential-thinking/.env.example +8 -8
  109. package/skills/ck-sequential-thinking/README.md +183 -183
  110. package/skills/ck-sequential-thinking/SKILL.md +92 -92
  111. package/skills/ck-sequential-thinking/package.json +31 -31
  112. package/skills/ck-sequential-thinking/references/advanced-strategies.md +79 -79
  113. package/skills/ck-sequential-thinking/references/advanced-techniques.md +76 -76
  114. package/skills/ck-sequential-thinking/references/core-patterns.md +95 -95
  115. package/skills/ck-sequential-thinking/references/examples-api.md +88 -88
  116. package/skills/ck-sequential-thinking/references/examples-architecture.md +94 -94
  117. package/skills/ck-sequential-thinking/references/examples-debug.md +90 -90
  118. package/skills/ck-sequential-thinking/scripts/format-thought.js +159 -159
  119. package/skills/ck-sequential-thinking/scripts/process-thought.js +236 -236
  120. package/skills/ck-sequential-thinking/tests/format-thought.test.js +133 -133
  121. package/skills/ck-sequential-thinking/tests/process-thought.test.js +215 -215
  122. package/src/commands/add.js +93 -93
  123. package/src/commands/doctor.js +117 -117
  124. package/src/commands/init.js +183 -183
  125. package/src/commands/list.js +91 -91
  126. package/src/commands/update.js +22 -22
  127. package/src/index.js +35 -35
  128. package/src/utils/colors.js +14 -14
  129. package/src/utils/copy.js +122 -122
  130. package/src/utils/paths.js +66 -66
  131. package/src/utils/update-checker.js +126 -126
  132. package/templates/repo/.github/.cokit-version +4 -4
  133. package/templates/repo/.github/AGENTS.md +55 -55
  134. package/templates/repo/.github/agents/brainstormer.agent.md +71 -71
  135. package/templates/repo/.github/agents/code-reviewer.agent.md +136 -128
  136. package/templates/repo/.github/agents/debugger.agent.md +128 -128
  137. package/templates/repo/.github/agents/docs-manager.agent.md +121 -121
  138. package/templates/repo/.github/agents/git-manager.agent.md +390 -390
  139. package/templates/repo/.github/agents/planner.agent.md +94 -94
  140. package/templates/repo/.github/agents/researcher.agent.md +32 -32
  141. package/templates/repo/.github/agents/scout.agent.md +107 -107
  142. package/templates/repo/.github/agents/tester.agent.md +117 -106
  143. package/templates/repo/.github/collections/ck-core.collection.yml +28 -30
  144. package/templates/repo/.github/collections/ck-development-rules.collection.yml +18 -18
  145. package/templates/repo/.github/collections/ck-documentation.collection.yml +14 -18
  146. package/templates/repo/.github/collections/ck-git-workflow.collection.yml +12 -18
  147. package/templates/repo/.github/collections/ck-orchestration.collection.yml +16 -22
  148. package/templates/repo/.github/copilot-instructions.md +45 -45
  149. package/templates/repo/.github/instructions/ck-backend.instructions.md +48 -48
  150. package/templates/repo/.github/instructions/ck-development.instructions.md +54 -54
  151. package/templates/repo/.github/instructions/ck-frontend.instructions.md +44 -44
  152. package/templates/repo/.github/instructions/ck-research.instructions.md +167 -167
  153. package/templates/repo/.github/instructions/ck-testing.instructions.md +36 -36
  154. package/templates/repo/.github/prompts/ck-ask.prompt.md +57 -57
  155. package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +136 -136
  156. package/templates/repo/.github/prompts/ck-brainstorm.prompt.md +105 -105
  157. package/templates/repo/.github/prompts/ck-ck-help.prompt.md +112 -114
  158. package/templates/repo/.github/prompts/ck-code.prompt.md +178 -178
  159. package/templates/repo/.github/prompts/ck-cook.prompt.md +97 -97
  160. package/templates/repo/.github/prompts/ck-debug.prompt.md +14 -14
  161. package/templates/repo/.github/prompts/ck-docs.prompt.md +51 -0
  162. package/templates/repo/.github/prompts/ck-fix.prompt.md +44 -44
  163. package/templates/repo/.github/prompts/ck-git.prompt.md +79 -0
  164. package/templates/repo/.github/prompts/ck-plan.prompt.md +80 -80
  165. package/templates/repo/.github/prompts/ck-test.prompt.md +10 -10
  166. package/templates/repo/.github/skills/ck-backend-development/SKILL.md +96 -93
  167. package/templates/repo/.github/skills/ck-backend-development/references/backend-api-design.md +495 -495
  168. package/templates/repo/.github/skills/ck-backend-development/references/backend-architecture.md +454 -454
  169. package/templates/repo/.github/skills/ck-backend-development/references/backend-authentication.md +338 -338
  170. package/templates/repo/.github/skills/ck-backend-development/references/backend-code-quality.md +659 -659
  171. package/templates/repo/.github/skills/ck-backend-development/references/backend-debugging.md +904 -904
  172. package/templates/repo/.github/skills/ck-backend-development/references/backend-devops.md +494 -494
  173. package/templates/repo/.github/skills/ck-backend-development/references/backend-mindset.md +387 -387
  174. package/templates/repo/.github/skills/ck-backend-development/references/backend-performance.md +397 -397
  175. package/templates/repo/.github/skills/ck-backend-development/references/backend-security.md +290 -290
  176. package/templates/repo/.github/skills/ck-backend-development/references/backend-technologies.md +290 -256
  177. package/templates/repo/.github/skills/ck-backend-development/references/backend-testing.md +561 -429
  178. package/templates/repo/.github/skills/ck-code-review/SKILL.md +143 -143
  179. package/templates/repo/.github/skills/ck-code-review/references/code-review-reception.md +208 -208
  180. package/templates/repo/.github/skills/ck-code-review/references/requesting-code-review.md +104 -104
  181. package/templates/repo/.github/skills/ck-code-review/references/verification-before-completion.md +138 -138
  182. package/templates/repo/.github/skills/ck-debugging/SKILL.md +82 -82
  183. package/templates/repo/.github/skills/ck-debugging/references/defense-in-depth.md +124 -124
  184. package/templates/repo/.github/skills/ck-debugging/references/root-cause-tracing.md +122 -122
  185. package/templates/repo/.github/skills/ck-debugging/references/systematic-debugging.md +102 -102
  186. package/templates/repo/.github/skills/ck-debugging/references/verification.md +123 -123
  187. package/templates/repo/.github/skills/ck-debugging/scripts/find-polluter.sh +63 -63
  188. package/templates/repo/.github/skills/ck-debugging/scripts/find-polluter.test.md +102 -102
  189. package/templates/repo/.github/skills/ck-frontend-development/SKILL.md +399 -399
  190. package/templates/repo/.github/skills/ck-frontend-development/resources/common-patterns.md +330 -330
  191. package/templates/repo/.github/skills/ck-frontend-development/resources/complete-examples.md +871 -871
  192. package/templates/repo/.github/skills/ck-frontend-development/resources/component-patterns.md +501 -501
  193. package/templates/repo/.github/skills/ck-frontend-development/resources/data-fetching.md +766 -766
  194. package/templates/repo/.github/skills/ck-frontend-development/resources/file-organization.md +501 -501
  195. package/templates/repo/.github/skills/ck-frontend-development/resources/loading-and-error-states.md +500 -500
  196. package/templates/repo/.github/skills/ck-frontend-development/resources/performance.md +405 -405
  197. package/templates/repo/.github/skills/ck-frontend-development/resources/routing-guide.md +363 -363
  198. package/templates/repo/.github/skills/ck-frontend-development/resources/styling-guide.md +427 -427
  199. package/templates/repo/.github/skills/ck-frontend-development/resources/typescript-standards.md +417 -417
  200. package/templates/repo/.github/skills/ck-planning/SKILL.md +112 -112
  201. package/templates/repo/.github/skills/ck-planning/references/codebase-understanding.md +62 -62
  202. package/templates/repo/.github/skills/ck-planning/references/output-standards.md +127 -127
  203. package/templates/repo/.github/skills/ck-planning/references/plan-organization.md +150 -150
  204. package/templates/repo/.github/skills/ck-planning/references/research-phase.md +49 -49
  205. package/templates/repo/.github/skills/ck-planning/references/solution-design.md +63 -63
  206. package/templates/repo/.github/skills/ck-problem-solving/SKILL.md +95 -95
  207. package/templates/repo/.github/skills/ck-problem-solving/references/attribution.md +69 -69
  208. package/templates/repo/.github/skills/ck-problem-solving/references/collision-zone-thinking.md +79 -79
  209. package/templates/repo/.github/skills/ck-problem-solving/references/inversion-exercise.md +91 -91
  210. package/templates/repo/.github/skills/ck-problem-solving/references/meta-pattern-recognition.md +87 -87
  211. package/templates/repo/.github/skills/ck-problem-solving/references/scale-game.md +95 -95
  212. package/templates/repo/.github/skills/ck-problem-solving/references/simplification-cascades.md +80 -80
  213. package/templates/repo/.github/skills/ck-problem-solving/references/when-stuck.md +72 -72
  214. package/templates/repo/.github/skills/ck-sequential-thinking/.env.example +8 -8
  215. package/templates/repo/.github/skills/ck-sequential-thinking/README.md +183 -183
  216. package/templates/repo/.github/skills/ck-sequential-thinking/SKILL.md +92 -92
  217. package/templates/repo/.github/skills/ck-sequential-thinking/package.json +31 -31
  218. package/templates/repo/.github/skills/ck-sequential-thinking/references/advanced-strategies.md +79 -79
  219. package/templates/repo/.github/skills/ck-sequential-thinking/references/advanced-techniques.md +76 -76
  220. package/templates/repo/.github/skills/ck-sequential-thinking/references/core-patterns.md +95 -95
  221. package/templates/repo/.github/skills/ck-sequential-thinking/references/examples-api.md +88 -88
  222. package/templates/repo/.github/skills/ck-sequential-thinking/references/examples-architecture.md +94 -94
  223. package/templates/repo/.github/skills/ck-sequential-thinking/references/examples-debug.md +90 -90
  224. package/templates/repo/.github/skills/ck-sequential-thinking/scripts/format-thought.js +159 -159
  225. package/templates/repo/.github/skills/ck-sequential-thinking/scripts/process-thought.js +236 -236
  226. package/templates/repo/.github/skills/ck-sequential-thinking/tests/format-thought.test.js +133 -133
  227. package/templates/repo/.github/skills/ck-sequential-thinking/tests/process-thought.test.js +215 -215
  228. package/templates/repo/.vscode/settings.json +70 -70
  229. package/agents/database-admin.agent.md +0 -91
  230. package/agents/fullstack-developer.agent.md +0 -96
  231. package/agents/mcp-manager.agent.md +0 -93
  232. package/agents/project-manager.agent.md +0 -124
  233. package/agents/scout-external.agent.md +0 -141
  234. package/agents/ui-ux-designer.agent.md +0 -225
  235. package/collections/ck-ui-design.collection.yml +0 -18
  236. package/instructions/ck-frontend-design-pro.instructions.md +0 -58
  237. package/instructions/ck-google-adk-python.instructions.md +0 -242
  238. package/plans/260106-1102-cokit-implementation/phases/phase-01-cli-tool.md +0 -151
  239. package/plans/260106-1102-cokit-implementation/phases/phase-02-repo-level-templates.md +0 -198
  240. package/plans/260106-1102-cokit-implementation/phases/phase-03-user-level-skills.md +0 -219
  241. package/plans/260106-1102-cokit-implementation/phases/phase-04-prompt-files.md +0 -328
  242. package/plans/260106-1102-cokit-implementation/phases/phase-05-documentation.md +0 -166
  243. package/plans/260106-1102-cokit-implementation/plan.md +0 -130
  244. package/plans/260106-1102-cokit-implementation/research/researcher-01-copilot-skills-spec.md +0 -182
  245. package/plans/260106-1102-cokit-implementation/research/researcher-02-copilot-instructions-prompts.md +0 -201
  246. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-01-restructure-folders.md +0 -183
  247. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-02-convert-agents.md +0 -206
  248. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-03-convert-commands-to-prompts.md +0 -284
  249. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-04-convert-skills-to-instructions.md +0 -349
  250. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-05-create-collections.md +0 -320
  251. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-06-update-cli-build-scripts.md +0 -450
  252. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/phase-07-update-documentation.md +0 -407
  253. package/plans/260108-0924-rebuild-cokit-awesome-copilot-format/plan.md +0 -136
  254. package/plans/reports/code-reviewer-260106-1718-phase2-repo-templates.md +0 -184
  255. package/plans/reports/code-reviewer-260106-1728-phase3-review.md +0 -486
  256. package/plans/reports/code-reviewer-260106-1742-phase4-prompts.md +0 -235
  257. package/plans/reports/code-reviewer-260106-1753-phase5-docs.md +0 -275
  258. package/plans/reports/docs-manager-260106-1217-phase1-completion.md +0 -45
  259. package/plans/reports/docs-manager-260106-1734-phase3-skills.md +0 -108
  260. package/plans/reports/docs-manager-260106-1746-phase4-prompt-files.md +0 -75
  261. package/plans/reports/project-manager-260106-1734-SUMMARY.md +0 -354
  262. package/plans/reports/project-manager-260106-1734-phase3-completion.md +0 -257
  263. package/plans/reports/project-manager-260106-1734-phase3-to-phase4-transition.md +0 -274
  264. package/plans/reports/project-manager-260106-1734-phase4-kickoff.md +0 -343
  265. package/plans/reports/project-manager-260106-1734-project-status.md +0 -355
  266. package/plans/reports/project-manager-260106-1746-phase4-completion.md +0 -249
  267. package/plans/reports/project-manager-260106-1746-phase4-deliverables.md +0 -350
  268. package/plans/reports/project-manager-260106-1804-project-complete.md +0 -297
  269. package/plans/reports/tester-260106-1717-phase2-templates.md +0 -216
  270. package/plans/reports/tester-260106-1726-phase3-user-skills.md +0 -256
  271. package/plans/reports/tester-260106-1741-phase4-prompts.md +0 -202
  272. package/plans/reports/tester-260106-1751-phase5-docs.md +0 -301
  273. package/prompts/ck-bootstrap-auto-fast.prompt.md +0 -108
  274. package/prompts/ck-bootstrap-auto-parallel.prompt.md +0 -66
  275. package/prompts/ck-bootstrap-auto.prompt.md +0 -114
  276. package/prompts/ck-code-auto.prompt.md +0 -172
  277. package/prompts/ck-code-no-test.prompt.md +0 -160
  278. package/prompts/ck-code-parallel.prompt.md +0 -57
  279. package/prompts/ck-coding-level.prompt.md +0 -54
  280. package/prompts/ck-cook-auto-fast.prompt.md +0 -26
  281. package/prompts/ck-cook-auto-parallel.prompt.md +0 -50
  282. package/prompts/ck-cook-auto.prompt.md +0 -17
  283. package/prompts/ck-design-3d.prompt.md +0 -84
  284. package/prompts/ck-design-describe.prompt.md +0 -24
  285. package/prompts/ck-design-fast.prompt.md +0 -32
  286. package/prompts/ck-design-good.prompt.md +0 -36
  287. package/prompts/ck-design-screenshot.prompt.md +0 -35
  288. package/prompts/ck-design-video.prompt.md +0 -35
  289. package/prompts/ck-docs-init.prompt.md +0 -27
  290. package/prompts/ck-docs-summarize.prompt.md +0 -23
  291. package/prompts/ck-docs-update.prompt.md +0 -36
  292. package/prompts/ck-fix-ci.prompt.md +0 -18
  293. package/prompts/ck-fix-fast.prompt.md +0 -18
  294. package/prompts/ck-fix-hard.prompt.md +0 -36
  295. package/prompts/ck-fix-logs.prompt.md +0 -27
  296. package/prompts/ck-fix-parallel.prompt.md +0 -54
  297. package/prompts/ck-fix-test.prompt.md +0 -19
  298. package/prompts/ck-fix-types.prompt.md +0 -11
  299. package/prompts/ck-fix-ui.prompt.md +0 -49
  300. package/prompts/ck-git-cm.prompt.md +0 -8
  301. package/prompts/ck-git-cp.prompt.md +0 -7
  302. package/prompts/ck-git-merge.prompt.md +0 -41
  303. package/prompts/ck-git-pr.prompt.md +0 -49
  304. package/prompts/ck-kanban.prompt.md +0 -77
  305. package/prompts/ck-plan-archive.prompt.md +0 -57
  306. package/prompts/ck-plan-ci.prompt.md +0 -35
  307. package/prompts/ck-plan-cro.prompt.md +0 -66
  308. package/prompts/ck-plan-fast.prompt.md +0 -103
  309. package/prompts/ck-plan-hard.prompt.md +0 -125
  310. package/prompts/ck-plan-parallel.prompt.md +0 -159
  311. package/prompts/ck-plan-two.prompt.md +0 -78
  312. package/prompts/ck-plan-validate.prompt.md +0 -117
  313. package/prompts/ck-preview.prompt.md +0 -65
  314. package/prompts/ck-scout-ext.prompt.md +0 -35
  315. package/prompts/ck-skill-add.prompt.md +0 -36
  316. package/prompts/ck-skill-create.prompt.md +0 -29
  317. package/prompts/ck-skill-fix-logs.prompt.md +0 -22
  318. package/prompts/ck-skill-optimize-auto.prompt.md +0 -25
  319. package/prompts/ck-skill-optimize.prompt.md +0 -34
  320. package/prompts/ck-skill-plan.prompt.md +0 -46
  321. package/prompts/ck-test-ui.prompt.md +0 -92
  322. package/prompts/ck-use-mcp.prompt.md +0 -27
  323. package/prompts/ck-watzup.prompt.md +0 -11
  324. package/prompts/ck-worktree.prompt.md +0 -127
  325. package/skills/ck-ai-artist/SKILL.md +0 -73
  326. package/skills/ck-ai-artist/references/advanced-techniques.md +0 -184
  327. package/skills/ck-ai-artist/references/domain-code.md +0 -66
  328. package/skills/ck-ai-artist/references/domain-data.md +0 -72
  329. package/skills/ck-ai-artist/references/domain-marketing.md +0 -66
  330. package/skills/ck-ai-artist/references/domain-patterns.md +0 -33
  331. package/skills/ck-ai-artist/references/domain-writing.md +0 -68
  332. package/skills/ck-ai-artist/references/image-prompting.md +0 -141
  333. package/skills/ck-ai-artist/references/llm-prompting.md +0 -165
  334. package/skills/ck-ai-artist/references/nano-banana.md +0 -59
  335. package/skills/ck-ai-artist/references/reasoning-techniques.md +0 -201
  336. package/skills/ck-better-auth/SKILL.md +0 -202
  337. package/skills/ck-better-auth/references/advanced-features.md +0 -553
  338. package/skills/ck-better-auth/references/database-integration.md +0 -577
  339. package/skills/ck-better-auth/references/email-password-auth.md +0 -416
  340. package/skills/ck-better-auth/references/oauth-providers.md +0 -430
  341. package/skills/ck-better-auth/scripts/.coverage +0 -0
  342. package/skills/ck-better-auth/scripts/better_auth_init.py +0 -521
  343. package/skills/ck-better-auth/scripts/requirements.txt +0 -15
  344. package/skills/ck-better-auth/scripts/tests/.coverage +0 -0
  345. package/skills/ck-better-auth/scripts/tests/test_better_auth_init.py +0 -421
  346. package/skills/ck-chrome-devtools/SKILL.md +0 -470
  347. package/skills/ck-chrome-devtools/references/cdp-domains.md +0 -694
  348. package/skills/ck-chrome-devtools/references/performance-guide.md +0 -940
  349. package/skills/ck-chrome-devtools/references/puppeteer-reference.md +0 -953
  350. package/skills/ck-chrome-devtools/scripts/README.md +0 -272
  351. package/skills/ck-chrome-devtools/scripts/__tests__/selector.test.js +0 -210
  352. package/skills/ck-chrome-devtools/scripts/aria-snapshot.js +0 -362
  353. package/skills/ck-chrome-devtools/scripts/click.js +0 -83
  354. package/skills/ck-chrome-devtools/scripts/console.js +0 -79
  355. package/skills/ck-chrome-devtools/scripts/evaluate.js +0 -53
  356. package/skills/ck-chrome-devtools/scripts/fill.js +0 -76
  357. package/skills/ck-chrome-devtools/scripts/inject-auth.js +0 -229
  358. package/skills/ck-chrome-devtools/scripts/install-deps.sh +0 -181
  359. package/skills/ck-chrome-devtools/scripts/install.sh +0 -83
  360. package/skills/ck-chrome-devtools/scripts/lib/browser.js +0 -318
  361. package/skills/ck-chrome-devtools/scripts/lib/selector.js +0 -178
  362. package/skills/ck-chrome-devtools/scripts/navigate.js +0 -54
  363. package/skills/ck-chrome-devtools/scripts/network.js +0 -106
  364. package/skills/ck-chrome-devtools/scripts/package-lock.json +0 -1589
  365. package/skills/ck-chrome-devtools/scripts/package.json +0 -16
  366. package/skills/ck-chrome-devtools/scripts/performance.js +0 -149
  367. package/skills/ck-chrome-devtools/scripts/screenshot.js +0 -198
  368. package/skills/ck-chrome-devtools/scripts/select-ref.js +0 -131
  369. package/skills/ck-chrome-devtools/scripts/snapshot.js +0 -135
  370. package/skills/ck-databases/SKILL.md +0 -231
  371. package/skills/ck-databases/references/mongodb-aggregation.md +0 -447
  372. package/skills/ck-databases/references/mongodb-atlas.md +0 -465
  373. package/skills/ck-databases/references/mongodb-crud.md +0 -408
  374. package/skills/ck-databases/references/mongodb-indexing.md +0 -442
  375. package/skills/ck-databases/references/postgresql-administration.md +0 -594
  376. package/skills/ck-databases/references/postgresql-performance.md +0 -527
  377. package/skills/ck-databases/references/postgresql-psql-cli.md +0 -467
  378. package/skills/ck-databases/references/postgresql-queries.md +0 -475
  379. package/skills/ck-databases/scripts/.coverage +0 -0
  380. package/skills/ck-databases/scripts/db_backup.py +0 -502
  381. package/skills/ck-databases/scripts/db_migrate.py +0 -425
  382. package/skills/ck-databases/scripts/db_performance_check.py +0 -456
  383. package/skills/ck-databases/scripts/requirements.txt +0 -20
  384. package/skills/ck-databases/scripts/tests/coverage-db.json +0 -1
  385. package/skills/ck-databases/scripts/tests/requirements.txt +0 -4
  386. package/skills/ck-databases/scripts/tests/test_db_backup.py +0 -340
  387. package/skills/ck-databases/scripts/tests/test_db_migrate.py +0 -277
  388. package/skills/ck-databases/scripts/tests/test_db_performance_check.py +0 -370
  389. package/skills/ck-devops/.env.example +0 -76
  390. package/skills/ck-devops/SKILL.md +0 -283
  391. package/skills/ck-devops/references/browser-rendering.md +0 -305
  392. package/skills/ck-devops/references/cloudflare-d1-kv.md +0 -123
  393. package/skills/ck-devops/references/cloudflare-platform.md +0 -271
  394. package/skills/ck-devops/references/cloudflare-r2-storage.md +0 -280
  395. package/skills/ck-devops/references/cloudflare-workers-advanced.md +0 -312
  396. package/skills/ck-devops/references/cloudflare-workers-apis.md +0 -309
  397. package/skills/ck-devops/references/cloudflare-workers-basics.md +0 -418
  398. package/skills/ck-devops/references/docker-basics.md +0 -297
  399. package/skills/ck-devops/references/docker-compose.md +0 -292
  400. package/skills/ck-devops/references/gcloud-platform.md +0 -297
  401. package/skills/ck-devops/references/gcloud-services.md +0 -304
  402. package/skills/ck-devops/scripts/cloudflare_deploy.py +0 -269
  403. package/skills/ck-devops/scripts/docker_optimize.py +0 -331
  404. package/skills/ck-devops/scripts/requirements.txt +0 -20
  405. package/skills/ck-devops/scripts/tests/requirements.txt +0 -3
  406. package/skills/ck-devops/scripts/tests/test_cloudflare_deploy.py +0 -285
  407. package/skills/ck-devops/scripts/tests/test_docker_optimize.py +0 -436
  408. package/skills/ck-docs-seeker/.env.example +0 -15
  409. package/skills/ck-docs-seeker/SKILL.md +0 -96
  410. package/skills/ck-docs-seeker/package.json +0 -25
  411. package/skills/ck-docs-seeker/references/advanced.md +0 -79
  412. package/skills/ck-docs-seeker/references/context7-patterns.md +0 -68
  413. package/skills/ck-docs-seeker/references/errors.md +0 -68
  414. package/skills/ck-docs-seeker/references/search-patterns.md +0 -93
  415. package/skills/ck-docs-seeker/references/source-evaluation.md +0 -77
  416. package/skills/ck-docs-seeker/scripts/analyze-llms-txt.js +0 -211
  417. package/skills/ck-docs-seeker/scripts/detect-topic.js +0 -172
  418. package/skills/ck-docs-seeker/scripts/fetch-docs.js +0 -213
  419. package/skills/ck-docs-seeker/scripts/tests/run-tests.js +0 -72
  420. package/skills/ck-docs-seeker/scripts/tests/test-analyze-llms.js +0 -119
  421. package/skills/ck-docs-seeker/scripts/tests/test-detect-topic.js +0 -112
  422. package/skills/ck-docs-seeker/scripts/tests/test-fetch-docs.js +0 -84
  423. package/skills/ck-docs-seeker/scripts/utils/env-loader.js +0 -94
  424. package/skills/ck-docs-seeker/workflows/library-search.md +0 -87
  425. package/skills/ck-docs-seeker/workflows/repo-analysis.md +0 -91
  426. package/skills/ck-docs-seeker/workflows/topic-search.md +0 -77
  427. package/skills/ck-frontend-design/SKILL.md +0 -79
  428. package/skills/ck-frontend-design/references/analysis-best-practices.md +0 -80
  429. package/skills/ck-frontend-design/references/analysis-prompts.md +0 -141
  430. package/skills/ck-frontend-design/references/analysis-techniques.md +0 -118
  431. package/skills/ck-frontend-design/references/animejs.md +0 -396
  432. package/skills/ck-frontend-design/references/design-extraction-overview.md +0 -71
  433. package/skills/ck-frontend-design/references/extraction-best-practices.md +0 -141
  434. package/skills/ck-frontend-design/references/extraction-output-templates.md +0 -162
  435. package/skills/ck-frontend-design/references/extraction-prompts.md +0 -127
  436. package/skills/ck-frontend-design/references/technical-accessibility.md +0 -119
  437. package/skills/ck-frontend-design/references/technical-best-practices.md +0 -97
  438. package/skills/ck-frontend-design/references/technical-optimization.md +0 -44
  439. package/skills/ck-frontend-design/references/technical-overview.md +0 -90
  440. package/skills/ck-frontend-design/references/technical-workflows.md +0 -150
  441. package/skills/ck-frontend-design/references/visual-analysis-overview.md +0 -95
  442. package/skills/ck-markdown-novel-viewer/SKILL.md +0 -190
  443. package/skills/ck-markdown-novel-viewer/assets/directory-browser.css +0 -215
  444. package/skills/ck-markdown-novel-viewer/assets/favicon.png +0 -0
  445. package/skills/ck-markdown-novel-viewer/assets/novel-theme.css +0 -818
  446. package/skills/ck-markdown-novel-viewer/assets/reader.js +0 -262
  447. package/skills/ck-markdown-novel-viewer/assets/template.html +0 -80
  448. package/skills/ck-markdown-novel-viewer/package.json +0 -15
  449. package/skills/ck-markdown-novel-viewer/scripts/lib/http-server.cjs +0 -434
  450. package/skills/ck-markdown-novel-viewer/scripts/lib/markdown-renderer.cjs +0 -272
  451. package/skills/ck-markdown-novel-viewer/scripts/lib/plan-navigator.cjs +0 -509
  452. package/skills/ck-markdown-novel-viewer/scripts/lib/port-finder.cjs +0 -48
  453. package/skills/ck-markdown-novel-viewer/scripts/lib/process-mgr.cjs +0 -150
  454. package/skills/ck-markdown-novel-viewer/scripts/server.cjs +0 -411
  455. package/skills/ck-markdown-novel-viewer/scripts/tests/server.test.cjs +0 -283
  456. package/skills/ck-markdown-novel-viewer/tests/dashboard-assets.test.cjs +0 -340
  457. package/skills/ck-markdown-novel-viewer/tests/dashboard-renderer.test.cjs +0 -404
  458. package/skills/ck-markdown-novel-viewer/tests/http-server.test.cjs +0 -271
  459. package/skills/ck-markdown-novel-viewer/tests/run-tests.cjs +0 -51
  460. package/skills/ck-markdown-novel-viewer/tests/test-framework.cjs +0 -154
  461. package/skills/ck-markdown-novel-viewer/tests/verify-xss.cjs +0 -90
  462. package/skills/ck-mcp-builder/LICENSE.txt +0 -202
  463. package/skills/ck-mcp-builder/SKILL.md +0 -327
  464. package/skills/ck-mcp-builder/reference/evaluation.md +0 -602
  465. package/skills/ck-mcp-builder/reference/mcp_best_practices.md +0 -915
  466. package/skills/ck-mcp-builder/reference/node_mcp_server.md +0 -916
  467. package/skills/ck-mcp-builder/reference/python_mcp_server.md +0 -752
  468. package/skills/ck-mcp-builder/scripts/connections.py +0 -151
  469. package/skills/ck-mcp-builder/scripts/evaluation.py +0 -373
  470. package/skills/ck-mcp-builder/scripts/example_evaluation.xml +0 -22
  471. package/skills/ck-mcp-builder/scripts/requirements.txt +0 -2
  472. package/skills/ck-mcp-management/README.md +0 -219
  473. package/skills/ck-mcp-management/SKILL.md +0 -209
  474. package/skills/ck-mcp-management/assets/tools.json +0 -3146
  475. package/skills/ck-mcp-management/references/configuration.md +0 -114
  476. package/skills/ck-mcp-management/references/gemini-cli-integration.md +0 -215
  477. package/skills/ck-mcp-management/references/mcp-protocol.md +0 -116
  478. package/skills/ck-mcp-management/scripts/.env.example +0 -10
  479. package/skills/ck-mcp-management/scripts/cli.ts +0 -195
  480. package/skills/ck-mcp-management/scripts/dist/analyze-tools.js +0 -70
  481. package/skills/ck-mcp-management/scripts/dist/cli.js +0 -160
  482. package/skills/ck-mcp-management/scripts/dist/mcp-client.js +0 -183
  483. package/skills/ck-mcp-management/scripts/mcp-client.ts +0 -230
  484. package/skills/ck-mcp-management/scripts/package.json +0 -20
  485. package/skills/ck-mcp-management/scripts/tsconfig.json +0 -15
  486. package/skills/ck-media-processing/SKILL.md +0 -90
  487. package/skills/ck-media-processing/references/common-workflows.md +0 -132
  488. package/skills/ck-media-processing/references/ffmpeg-encoding.md +0 -358
  489. package/skills/ck-media-processing/references/ffmpeg-filters.md +0 -503
  490. package/skills/ck-media-processing/references/ffmpeg-streaming.md +0 -403
  491. package/skills/ck-media-processing/references/format-compatibility.md +0 -375
  492. package/skills/ck-media-processing/references/imagemagick-batch.md +0 -612
  493. package/skills/ck-media-processing/references/imagemagick-editing.md +0 -623
  494. package/skills/ck-media-processing/references/rmbg-background-removal.md +0 -66
  495. package/skills/ck-media-processing/references/troubleshooting.md +0 -109
  496. package/skills/ck-media-processing/scripts/README.md +0 -111
  497. package/skills/ck-media-processing/scripts/batch-remove-background.sh +0 -124
  498. package/skills/ck-media-processing/scripts/batch_resize.py +0 -342
  499. package/skills/ck-media-processing/scripts/media_convert.py +0 -311
  500. package/skills/ck-media-processing/scripts/remove-background.sh +0 -96
  501. package/skills/ck-media-processing/scripts/remove-bg-node.js +0 -158
  502. package/skills/ck-media-processing/scripts/requirements.txt +0 -24
  503. package/skills/ck-media-processing/scripts/tests/.coverage +0 -0
  504. package/skills/ck-media-processing/scripts/tests/requirements.txt +0 -2
  505. package/skills/ck-media-processing/scripts/tests/test_batch_resize.py +0 -372
  506. package/skills/ck-media-processing/scripts/tests/test_media_convert.py +0 -259
  507. package/skills/ck-media-processing/scripts/tests/test_video_optimize.py +0 -397
  508. package/skills/ck-media-processing/scripts/video_optimize.py +0 -414
  509. package/skills/ck-mobile-development/SKILL.md +0 -210
  510. package/skills/ck-mobile-development/references/mobile-android.md +0 -604
  511. package/skills/ck-mobile-development/references/mobile-best-practices.md +0 -545
  512. package/skills/ck-mobile-development/references/mobile-debugging.md +0 -1089
  513. package/skills/ck-mobile-development/references/mobile-frameworks.md +0 -465
  514. package/skills/ck-mobile-development/references/mobile-ios.md +0 -496
  515. package/skills/ck-mobile-development/references/mobile-mindset.md +0 -544
  516. package/skills/ck-payment-integration/README.md +0 -185
  517. package/skills/ck-payment-integration/SKILL.md +0 -116
  518. package/skills/ck-payment-integration/references/polar/benefits.md +0 -396
  519. package/skills/ck-payment-integration/references/polar/best-practices.md +0 -482
  520. package/skills/ck-payment-integration/references/polar/checkouts.md +0 -266
  521. package/skills/ck-payment-integration/references/polar/overview.md +0 -184
  522. package/skills/ck-payment-integration/references/polar/products.md +0 -244
  523. package/skills/ck-payment-integration/references/polar/sdk.md +0 -436
  524. package/skills/ck-payment-integration/references/polar/subscriptions.md +0 -340
  525. package/skills/ck-payment-integration/references/polar/webhooks.md +0 -405
  526. package/skills/ck-payment-integration/references/sepay/api.md +0 -140
  527. package/skills/ck-payment-integration/references/sepay/best-practices.md +0 -337
  528. package/skills/ck-payment-integration/references/sepay/overview.md +0 -138
  529. package/skills/ck-payment-integration/references/sepay/qr-codes.md +0 -228
  530. package/skills/ck-payment-integration/references/sepay/sdk.md +0 -213
  531. package/skills/ck-payment-integration/references/sepay/webhooks.md +0 -208
  532. package/skills/ck-payment-integration/scripts/.env.example +0 -20
  533. package/skills/ck-payment-integration/scripts/checkout-helper.js +0 -244
  534. package/skills/ck-payment-integration/scripts/package.json +0 -17
  535. package/skills/ck-payment-integration/scripts/polar-webhook-verify.js +0 -202
  536. package/skills/ck-payment-integration/scripts/sepay-webhook-verify.js +0 -193
  537. package/skills/ck-payment-integration/scripts/test-scripts.js +0 -237
  538. package/skills/ck-repomix/SKILL.md +0 -247
  539. package/skills/ck-repomix/references/configuration.md +0 -211
  540. package/skills/ck-repomix/references/usage-patterns.md +0 -232
  541. package/skills/ck-repomix/scripts/.coverage +0 -0
  542. package/skills/ck-repomix/scripts/README.md +0 -179
  543. package/skills/ck-repomix/scripts/repomix_batch.py +0 -455
  544. package/skills/ck-repomix/scripts/repos.example.json +0 -15
  545. package/skills/ck-repomix/scripts/requirements.txt +0 -15
  546. package/skills/ck-repomix/scripts/tests/test_repomix_batch.py +0 -531
  547. package/skills/ck-shopify/README.md +0 -66
  548. package/skills/ck-shopify/SKILL.md +0 -319
  549. package/skills/ck-shopify/references/app-development.md +0 -470
  550. package/skills/ck-shopify/references/extensions.md +0 -493
  551. package/skills/ck-shopify/references/themes.md +0 -498
  552. package/skills/ck-shopify/scripts/.coverage +0 -0
  553. package/skills/ck-shopify/scripts/requirements.txt +0 -19
  554. package/skills/ck-shopify/scripts/shopify_init.py +0 -423
  555. package/skills/ck-shopify/scripts/tests/.coverage +0 -0
  556. package/skills/ck-shopify/scripts/tests/test_shopify_init.py +0 -385
  557. package/skills/ck-skill-creator/LICENSE.txt +0 -202
  558. package/skills/ck-skill-creator/SKILL.md +0 -263
  559. package/skills/ck-skill-creator/scripts/init_skill.py +0 -303
  560. package/skills/ck-skill-creator/scripts/package_skill.py +0 -110
  561. package/skills/ck-skill-creator/scripts/quick_validate.py +0 -65
  562. package/skills/ck-threejs/SKILL.md +0 -87
  563. package/skills/ck-threejs/references/01-getting-started.md +0 -177
  564. package/skills/ck-threejs/references/02-loaders.md +0 -169
  565. package/skills/ck-threejs/references/03-textures.md +0 -170
  566. package/skills/ck-threejs/references/04-cameras.md +0 -195
  567. package/skills/ck-threejs/references/05-lights.md +0 -183
  568. package/skills/ck-threejs/references/06-animations.md +0 -214
  569. package/skills/ck-threejs/references/07-math.md +0 -260
  570. package/skills/ck-threejs/references/08-interaction.md +0 -267
  571. package/skills/ck-threejs/references/09-postprocessing.md +0 -240
  572. package/skills/ck-threejs/references/10-controls.md +0 -259
  573. package/skills/ck-threejs/references/11-materials-advanced.md +0 -270
  574. package/skills/ck-threejs/references/12-performance.md +0 -269
  575. package/skills/ck-threejs/references/13-node-materials.md +0 -298
  576. package/skills/ck-threejs/references/14-physics-vr.md +0 -304
  577. package/skills/ck-threejs/references/15-specialized-loaders.md +0 -333
  578. package/skills/ck-threejs/references/16-webgpu.md +0 -302
  579. package/skills/ck-ui-styling/LICENSE.txt +0 -202
  580. package/skills/ck-ui-styling/SKILL.md +0 -319
  581. package/skills/ck-ui-styling/canvas-fonts/ArsenalSC-OFL.txt +0 -93
  582. package/skills/ck-ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  583. package/skills/ck-ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  584. package/skills/ck-ui-styling/canvas-fonts/BigShoulders-OFL.txt +0 -93
  585. package/skills/ck-ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  586. package/skills/ck-ui-styling/canvas-fonts/Boldonse-OFL.txt +0 -93
  587. package/skills/ck-ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
  588. package/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  589. package/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +0 -93
  590. package/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  591. package/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  592. package/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  593. package/skills/ck-ui-styling/canvas-fonts/CrimsonPro-OFL.txt +0 -93
  594. package/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  595. package/skills/ck-ui-styling/canvas-fonts/DMMono-OFL.txt +0 -93
  596. package/skills/ck-ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
  597. package/skills/ck-ui-styling/canvas-fonts/EricaOne-OFL.txt +0 -94
  598. package/skills/ck-ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
  599. package/skills/ck-ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
  600. package/skills/ck-ui-styling/canvas-fonts/GeistMono-OFL.txt +0 -93
  601. package/skills/ck-ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
  602. package/skills/ck-ui-styling/canvas-fonts/Gloock-OFL.txt +0 -93
  603. package/skills/ck-ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
  604. package/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  605. package/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +0 -93
  606. package/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  607. package/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  608. package/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  609. package/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  610. package/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  611. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  612. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  613. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  614. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-OFL.txt +0 -93
  615. package/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  616. package/skills/ck-ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  617. package/skills/ck-ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  618. package/skills/ck-ui-styling/canvas-fonts/Italiana-OFL.txt +0 -93
  619. package/skills/ck-ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
  620. package/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  621. package/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +0 -93
  622. package/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  623. package/skills/ck-ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
  624. package/skills/ck-ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
  625. package/skills/ck-ui-styling/canvas-fonts/Jura-OFL.txt +0 -93
  626. package/skills/ck-ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +0 -93
  627. package/skills/ck-ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  628. package/skills/ck-ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
  629. package/skills/ck-ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  630. package/skills/ck-ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
  631. package/skills/ck-ui-styling/canvas-fonts/Lora-OFL.txt +0 -93
  632. package/skills/ck-ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
  633. package/skills/ck-ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
  634. package/skills/ck-ui-styling/canvas-fonts/NationalPark-OFL.txt +0 -93
  635. package/skills/ck-ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
  636. package/skills/ck-ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -93
  637. package/skills/ck-ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  638. package/skills/ck-ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
  639. package/skills/ck-ui-styling/canvas-fonts/Outfit-OFL.txt +0 -93
  640. package/skills/ck-ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
  641. package/skills/ck-ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  642. package/skills/ck-ui-styling/canvas-fonts/PixelifySans-OFL.txt +0 -93
  643. package/skills/ck-ui-styling/canvas-fonts/PoiretOne-OFL.txt +0 -93
  644. package/skills/ck-ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  645. package/skills/ck-ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  646. package/skills/ck-ui-styling/canvas-fonts/RedHatMono-OFL.txt +0 -93
  647. package/skills/ck-ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  648. package/skills/ck-ui-styling/canvas-fonts/Silkscreen-OFL.txt +0 -93
  649. package/skills/ck-ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  650. package/skills/ck-ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  651. package/skills/ck-ui-styling/canvas-fonts/SmoochSans-OFL.txt +0 -93
  652. package/skills/ck-ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
  653. package/skills/ck-ui-styling/canvas-fonts/Tektur-OFL.txt +0 -93
  654. package/skills/ck-ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
  655. package/skills/ck-ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
  656. package/skills/ck-ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  657. package/skills/ck-ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
  658. package/skills/ck-ui-styling/canvas-fonts/WorkSans-OFL.txt +0 -93
  659. package/skills/ck-ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
  660. package/skills/ck-ui-styling/canvas-fonts/YoungSerif-OFL.txt +0 -93
  661. package/skills/ck-ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  662. package/skills/ck-ui-styling/references/canvas-design-system.md +0 -320
  663. package/skills/ck-ui-styling/references/shadcn-accessibility.md +0 -471
  664. package/skills/ck-ui-styling/references/shadcn-components.md +0 -424
  665. package/skills/ck-ui-styling/references/shadcn-theming.md +0 -373
  666. package/skills/ck-ui-styling/references/tailwind-customization.md +0 -483
  667. package/skills/ck-ui-styling/references/tailwind-responsive.md +0 -382
  668. package/skills/ck-ui-styling/references/tailwind-utilities.md +0 -455
  669. package/skills/ck-ui-styling/scripts/.coverage +0 -0
  670. package/skills/ck-ui-styling/scripts/requirements.txt +0 -17
  671. package/skills/ck-ui-styling/scripts/shadcn_add.py +0 -292
  672. package/skills/ck-ui-styling/scripts/tailwind_config_gen.py +0 -456
  673. package/skills/ck-ui-styling/scripts/tests/coverage-ui.json +0 -1
  674. package/skills/ck-ui-styling/scripts/tests/requirements.txt +0 -3
  675. package/skills/ck-ui-styling/scripts/tests/test_shadcn_add.py +0 -266
  676. package/skills/ck-ui-styling/scripts/tests/test_tailwind_config_gen.py +0 -336
  677. package/skills/ck-ui-ux-pro-max/SKILL.md +0 -227
  678. package/skills/ck-ui-ux-pro-max/data/charts.csv +0 -26
  679. package/skills/ck-ui-ux-pro-max/data/colors.csv +0 -97
  680. package/skills/ck-ui-ux-pro-max/data/landing.csv +0 -31
  681. package/skills/ck-ui-ux-pro-max/data/products.csv +0 -97
  682. package/skills/ck-ui-ux-pro-max/data/prompts.csv +0 -24
  683. package/skills/ck-ui-ux-pro-max/data/stacks/flutter.csv +0 -53
  684. package/skills/ck-ui-ux-pro-max/data/stacks/html-tailwind.csv +0 -51
  685. package/skills/ck-ui-ux-pro-max/data/stacks/nextjs.csv +0 -53
  686. package/skills/ck-ui-ux-pro-max/data/stacks/react-native.csv +0 -52
  687. package/skills/ck-ui-ux-pro-max/data/stacks/react.csv +0 -54
  688. package/skills/ck-ui-ux-pro-max/data/stacks/svelte.csv +0 -54
  689. package/skills/ck-ui-ux-pro-max/data/stacks/swiftui.csv +0 -51
  690. package/skills/ck-ui-ux-pro-max/data/stacks/vue.csv +0 -50
  691. package/skills/ck-ui-ux-pro-max/data/styles.csv +0 -59
  692. package/skills/ck-ui-ux-pro-max/data/typography.csv +0 -58
  693. package/skills/ck-ui-ux-pro-max/data/ux-guidelines.csv +0 -100
  694. package/skills/ck-ui-ux-pro-max/scripts/core.py +0 -236
  695. package/skills/ck-ui-ux-pro-max/scripts/search.py +0 -76
  696. package/skills/ck-web-frameworks/SKILL.md +0 -322
  697. package/skills/ck-web-frameworks/references/nextjs-app-router.md +0 -465
  698. package/skills/ck-web-frameworks/references/nextjs-data-fetching.md +0 -459
  699. package/skills/ck-web-frameworks/references/nextjs-optimization.md +0 -511
  700. package/skills/ck-web-frameworks/references/nextjs-server-components.md +0 -495
  701. package/skills/ck-web-frameworks/references/remix-icon-integration.md +0 -603
  702. package/skills/ck-web-frameworks/references/turborepo-caching.md +0 -551
  703. package/skills/ck-web-frameworks/references/turborepo-pipelines.md +0 -517
  704. package/skills/ck-web-frameworks/references/turborepo-setup.md +0 -542
  705. package/skills/ck-web-frameworks/scripts/.coverage +0 -0
  706. package/skills/ck-web-frameworks/scripts/__init__.py +0 -0
  707. package/skills/ck-web-frameworks/scripts/nextjs_init.py +0 -547
  708. package/skills/ck-web-frameworks/scripts/requirements.txt +0 -16
  709. package/skills/ck-web-frameworks/scripts/tests/coverage-web.json +0 -1
  710. package/skills/ck-web-frameworks/scripts/tests/requirements.txt +0 -3
  711. package/skills/ck-web-frameworks/scripts/tests/test_nextjs_init.py +0 -319
  712. package/skills/ck-web-frameworks/scripts/tests/test_turborepo_migrate.py +0 -374
  713. package/skills/ck-web-frameworks/scripts/turborepo_migrate.py +0 -394
  714. package/templates/repo/.github/agents/database-admin.agent.md +0 -91
  715. package/templates/repo/.github/agents/fullstack-developer.agent.md +0 -96
  716. package/templates/repo/.github/agents/mcp-manager.agent.md +0 -93
  717. package/templates/repo/.github/agents/project-manager.agent.md +0 -124
  718. package/templates/repo/.github/agents/scout-external.agent.md +0 -141
  719. package/templates/repo/.github/agents/ui-ux-designer.agent.md +0 -225
  720. package/templates/repo/.github/collections/ck-ui-design.collection.yml +0 -18
  721. package/templates/repo/.github/instructions/ck-frontend-design-pro.instructions.md +0 -58
  722. package/templates/repo/.github/instructions/ck-google-adk-python.instructions.md +0 -242
  723. package/templates/repo/.github/prompts/ck-bootstrap-auto-fast.prompt.md +0 -108
  724. package/templates/repo/.github/prompts/ck-bootstrap-auto-parallel.prompt.md +0 -66
  725. package/templates/repo/.github/prompts/ck-bootstrap-auto.prompt.md +0 -114
  726. package/templates/repo/.github/prompts/ck-code-auto.prompt.md +0 -172
  727. package/templates/repo/.github/prompts/ck-code-no-test.prompt.md +0 -160
  728. package/templates/repo/.github/prompts/ck-code-parallel.prompt.md +0 -57
  729. package/templates/repo/.github/prompts/ck-coding-level.prompt.md +0 -54
  730. package/templates/repo/.github/prompts/ck-cook-auto-fast.prompt.md +0 -26
  731. package/templates/repo/.github/prompts/ck-cook-auto-parallel.prompt.md +0 -50
  732. package/templates/repo/.github/prompts/ck-cook-auto.prompt.md +0 -17
  733. package/templates/repo/.github/prompts/ck-design-3d.prompt.md +0 -84
  734. package/templates/repo/.github/prompts/ck-design-describe.prompt.md +0 -24
  735. package/templates/repo/.github/prompts/ck-design-fast.prompt.md +0 -32
  736. package/templates/repo/.github/prompts/ck-design-good.prompt.md +0 -36
  737. package/templates/repo/.github/prompts/ck-design-screenshot.prompt.md +0 -35
  738. package/templates/repo/.github/prompts/ck-design-video.prompt.md +0 -35
  739. package/templates/repo/.github/prompts/ck-docs-init.prompt.md +0 -27
  740. package/templates/repo/.github/prompts/ck-docs-summarize.prompt.md +0 -23
  741. package/templates/repo/.github/prompts/ck-docs-update.prompt.md +0 -36
  742. package/templates/repo/.github/prompts/ck-fix-ci.prompt.md +0 -18
  743. package/templates/repo/.github/prompts/ck-fix-fast.prompt.md +0 -18
  744. package/templates/repo/.github/prompts/ck-fix-hard.prompt.md +0 -36
  745. package/templates/repo/.github/prompts/ck-fix-logs.prompt.md +0 -27
  746. package/templates/repo/.github/prompts/ck-fix-parallel.prompt.md +0 -54
  747. package/templates/repo/.github/prompts/ck-fix-test.prompt.md +0 -19
  748. package/templates/repo/.github/prompts/ck-fix-types.prompt.md +0 -11
  749. package/templates/repo/.github/prompts/ck-fix-ui.prompt.md +0 -49
  750. package/templates/repo/.github/prompts/ck-git-cm.prompt.md +0 -8
  751. package/templates/repo/.github/prompts/ck-git-cp.prompt.md +0 -7
  752. package/templates/repo/.github/prompts/ck-git-merge.prompt.md +0 -41
  753. package/templates/repo/.github/prompts/ck-git-pr.prompt.md +0 -49
  754. package/templates/repo/.github/prompts/ck-kanban.prompt.md +0 -77
  755. package/templates/repo/.github/prompts/ck-plan-archive.prompt.md +0 -57
  756. package/templates/repo/.github/prompts/ck-plan-ci.prompt.md +0 -35
  757. package/templates/repo/.github/prompts/ck-plan-cro.prompt.md +0 -66
  758. package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +0 -103
  759. package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +0 -125
  760. package/templates/repo/.github/prompts/ck-plan-parallel.prompt.md +0 -159
  761. package/templates/repo/.github/prompts/ck-plan-two.prompt.md +0 -78
  762. package/templates/repo/.github/prompts/ck-plan-validate.prompt.md +0 -117
  763. package/templates/repo/.github/prompts/ck-preview.prompt.md +0 -65
  764. package/templates/repo/.github/prompts/ck-scout-ext.prompt.md +0 -35
  765. package/templates/repo/.github/prompts/ck-skill-add.prompt.md +0 -36
  766. package/templates/repo/.github/prompts/ck-skill-create.prompt.md +0 -29
  767. package/templates/repo/.github/prompts/ck-skill-fix-logs.prompt.md +0 -22
  768. package/templates/repo/.github/prompts/ck-skill-optimize-auto.prompt.md +0 -25
  769. package/templates/repo/.github/prompts/ck-skill-optimize.prompt.md +0 -34
  770. package/templates/repo/.github/prompts/ck-skill-plan.prompt.md +0 -46
  771. package/templates/repo/.github/prompts/ck-test-ui.prompt.md +0 -92
  772. package/templates/repo/.github/prompts/ck-use-mcp.prompt.md +0 -27
  773. package/templates/repo/.github/prompts/ck-watzup.prompt.md +0 -11
  774. package/templates/repo/.github/prompts/ck-worktree.prompt.md +0 -127
  775. package/templates/repo/.github/skills/ck-ai-artist/SKILL.md +0 -73
  776. package/templates/repo/.github/skills/ck-ai-artist/references/advanced-techniques.md +0 -184
  777. package/templates/repo/.github/skills/ck-ai-artist/references/domain-code.md +0 -66
  778. package/templates/repo/.github/skills/ck-ai-artist/references/domain-data.md +0 -72
  779. package/templates/repo/.github/skills/ck-ai-artist/references/domain-marketing.md +0 -66
  780. package/templates/repo/.github/skills/ck-ai-artist/references/domain-patterns.md +0 -33
  781. package/templates/repo/.github/skills/ck-ai-artist/references/domain-writing.md +0 -68
  782. package/templates/repo/.github/skills/ck-ai-artist/references/image-prompting.md +0 -141
  783. package/templates/repo/.github/skills/ck-ai-artist/references/llm-prompting.md +0 -165
  784. package/templates/repo/.github/skills/ck-ai-artist/references/nano-banana.md +0 -59
  785. package/templates/repo/.github/skills/ck-ai-artist/references/reasoning-techniques.md +0 -201
  786. package/templates/repo/.github/skills/ck-better-auth/SKILL.md +0 -202
  787. package/templates/repo/.github/skills/ck-better-auth/references/advanced-features.md +0 -553
  788. package/templates/repo/.github/skills/ck-better-auth/references/database-integration.md +0 -577
  789. package/templates/repo/.github/skills/ck-better-auth/references/email-password-auth.md +0 -416
  790. package/templates/repo/.github/skills/ck-better-auth/references/oauth-providers.md +0 -430
  791. package/templates/repo/.github/skills/ck-better-auth/scripts/.coverage +0 -0
  792. package/templates/repo/.github/skills/ck-better-auth/scripts/better_auth_init.py +0 -521
  793. package/templates/repo/.github/skills/ck-better-auth/scripts/requirements.txt +0 -15
  794. package/templates/repo/.github/skills/ck-better-auth/scripts/tests/.coverage +0 -0
  795. package/templates/repo/.github/skills/ck-better-auth/scripts/tests/test_better_auth_init.py +0 -421
  796. package/templates/repo/.github/skills/ck-chrome-devtools/SKILL.md +0 -470
  797. package/templates/repo/.github/skills/ck-chrome-devtools/references/cdp-domains.md +0 -694
  798. package/templates/repo/.github/skills/ck-chrome-devtools/references/performance-guide.md +0 -940
  799. package/templates/repo/.github/skills/ck-chrome-devtools/references/puppeteer-reference.md +0 -953
  800. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/README.md +0 -272
  801. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/__tests__/selector.test.js +0 -210
  802. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/aria-snapshot.js +0 -362
  803. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/click.js +0 -83
  804. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/console.js +0 -79
  805. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/evaluate.js +0 -53
  806. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/fill.js +0 -76
  807. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/inject-auth.js +0 -229
  808. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install-deps.sh +0 -181
  809. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/install.sh +0 -83
  810. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/lib/browser.js +0 -318
  811. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/lib/selector.js +0 -178
  812. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/navigate.js +0 -54
  813. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/network.js +0 -106
  814. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package-lock.json +0 -1589
  815. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/package.json +0 -16
  816. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/performance.js +0 -149
  817. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/screenshot.js +0 -198
  818. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/select-ref.js +0 -131
  819. package/templates/repo/.github/skills/ck-chrome-devtools/scripts/snapshot.js +0 -135
  820. package/templates/repo/.github/skills/ck-databases/SKILL.md +0 -231
  821. package/templates/repo/.github/skills/ck-databases/references/mongodb-aggregation.md +0 -447
  822. package/templates/repo/.github/skills/ck-databases/references/mongodb-atlas.md +0 -465
  823. package/templates/repo/.github/skills/ck-databases/references/mongodb-crud.md +0 -408
  824. package/templates/repo/.github/skills/ck-databases/references/mongodb-indexing.md +0 -442
  825. package/templates/repo/.github/skills/ck-databases/references/postgresql-administration.md +0 -594
  826. package/templates/repo/.github/skills/ck-databases/references/postgresql-performance.md +0 -527
  827. package/templates/repo/.github/skills/ck-databases/references/postgresql-psql-cli.md +0 -467
  828. package/templates/repo/.github/skills/ck-databases/references/postgresql-queries.md +0 -475
  829. package/templates/repo/.github/skills/ck-databases/scripts/.coverage +0 -0
  830. package/templates/repo/.github/skills/ck-databases/scripts/db_backup.py +0 -502
  831. package/templates/repo/.github/skills/ck-databases/scripts/db_migrate.py +0 -425
  832. package/templates/repo/.github/skills/ck-databases/scripts/db_performance_check.py +0 -456
  833. package/templates/repo/.github/skills/ck-databases/scripts/requirements.txt +0 -20
  834. package/templates/repo/.github/skills/ck-databases/scripts/tests/coverage-db.json +0 -1
  835. package/templates/repo/.github/skills/ck-databases/scripts/tests/requirements.txt +0 -4
  836. package/templates/repo/.github/skills/ck-databases/scripts/tests/test_db_backup.py +0 -340
  837. package/templates/repo/.github/skills/ck-databases/scripts/tests/test_db_migrate.py +0 -277
  838. package/templates/repo/.github/skills/ck-databases/scripts/tests/test_db_performance_check.py +0 -370
  839. package/templates/repo/.github/skills/ck-devops/.env.example +0 -76
  840. package/templates/repo/.github/skills/ck-devops/SKILL.md +0 -283
  841. package/templates/repo/.github/skills/ck-devops/references/browser-rendering.md +0 -305
  842. package/templates/repo/.github/skills/ck-devops/references/cloudflare-d1-kv.md +0 -123
  843. package/templates/repo/.github/skills/ck-devops/references/cloudflare-platform.md +0 -271
  844. package/templates/repo/.github/skills/ck-devops/references/cloudflare-r2-storage.md +0 -280
  845. package/templates/repo/.github/skills/ck-devops/references/cloudflare-workers-advanced.md +0 -312
  846. package/templates/repo/.github/skills/ck-devops/references/cloudflare-workers-apis.md +0 -309
  847. package/templates/repo/.github/skills/ck-devops/references/cloudflare-workers-basics.md +0 -418
  848. package/templates/repo/.github/skills/ck-devops/references/docker-basics.md +0 -297
  849. package/templates/repo/.github/skills/ck-devops/references/docker-compose.md +0 -292
  850. package/templates/repo/.github/skills/ck-devops/references/gcloud-platform.md +0 -297
  851. package/templates/repo/.github/skills/ck-devops/references/gcloud-services.md +0 -304
  852. package/templates/repo/.github/skills/ck-devops/scripts/cloudflare_deploy.py +0 -269
  853. package/templates/repo/.github/skills/ck-devops/scripts/docker_optimize.py +0 -331
  854. package/templates/repo/.github/skills/ck-devops/scripts/requirements.txt +0 -20
  855. package/templates/repo/.github/skills/ck-devops/scripts/tests/requirements.txt +0 -3
  856. package/templates/repo/.github/skills/ck-devops/scripts/tests/test_cloudflare_deploy.py +0 -285
  857. package/templates/repo/.github/skills/ck-devops/scripts/tests/test_docker_optimize.py +0 -436
  858. package/templates/repo/.github/skills/ck-docs-seeker/.env.example +0 -15
  859. package/templates/repo/.github/skills/ck-docs-seeker/SKILL.md +0 -96
  860. package/templates/repo/.github/skills/ck-docs-seeker/package.json +0 -25
  861. package/templates/repo/.github/skills/ck-docs-seeker/references/advanced.md +0 -79
  862. package/templates/repo/.github/skills/ck-docs-seeker/references/context7-patterns.md +0 -68
  863. package/templates/repo/.github/skills/ck-docs-seeker/references/errors.md +0 -68
  864. package/templates/repo/.github/skills/ck-docs-seeker/references/search-patterns.md +0 -93
  865. package/templates/repo/.github/skills/ck-docs-seeker/references/source-evaluation.md +0 -77
  866. package/templates/repo/.github/skills/ck-docs-seeker/scripts/analyze-llms-txt.js +0 -211
  867. package/templates/repo/.github/skills/ck-docs-seeker/scripts/detect-topic.js +0 -172
  868. package/templates/repo/.github/skills/ck-docs-seeker/scripts/fetch-docs.js +0 -213
  869. package/templates/repo/.github/skills/ck-docs-seeker/scripts/tests/run-tests.js +0 -72
  870. package/templates/repo/.github/skills/ck-docs-seeker/scripts/tests/test-analyze-llms.js +0 -119
  871. package/templates/repo/.github/skills/ck-docs-seeker/scripts/tests/test-detect-topic.js +0 -112
  872. package/templates/repo/.github/skills/ck-docs-seeker/scripts/tests/test-fetch-docs.js +0 -84
  873. package/templates/repo/.github/skills/ck-docs-seeker/scripts/utils/env-loader.js +0 -94
  874. package/templates/repo/.github/skills/ck-docs-seeker/workflows/library-search.md +0 -87
  875. package/templates/repo/.github/skills/ck-docs-seeker/workflows/repo-analysis.md +0 -91
  876. package/templates/repo/.github/skills/ck-docs-seeker/workflows/topic-search.md +0 -77
  877. package/templates/repo/.github/skills/ck-frontend-design/SKILL.md +0 -79
  878. package/templates/repo/.github/skills/ck-frontend-design/references/analysis-best-practices.md +0 -80
  879. package/templates/repo/.github/skills/ck-frontend-design/references/analysis-prompts.md +0 -141
  880. package/templates/repo/.github/skills/ck-frontend-design/references/analysis-techniques.md +0 -118
  881. package/templates/repo/.github/skills/ck-frontend-design/references/animejs.md +0 -396
  882. package/templates/repo/.github/skills/ck-frontend-design/references/design-extraction-overview.md +0 -71
  883. package/templates/repo/.github/skills/ck-frontend-design/references/extraction-best-practices.md +0 -141
  884. package/templates/repo/.github/skills/ck-frontend-design/references/extraction-output-templates.md +0 -162
  885. package/templates/repo/.github/skills/ck-frontend-design/references/extraction-prompts.md +0 -127
  886. package/templates/repo/.github/skills/ck-frontend-design/references/technical-accessibility.md +0 -119
  887. package/templates/repo/.github/skills/ck-frontend-design/references/technical-best-practices.md +0 -97
  888. package/templates/repo/.github/skills/ck-frontend-design/references/technical-optimization.md +0 -44
  889. package/templates/repo/.github/skills/ck-frontend-design/references/technical-overview.md +0 -90
  890. package/templates/repo/.github/skills/ck-frontend-design/references/technical-workflows.md +0 -150
  891. package/templates/repo/.github/skills/ck-frontend-design/references/visual-analysis-overview.md +0 -95
  892. package/templates/repo/.github/skills/ck-markdown-novel-viewer/SKILL.md +0 -190
  893. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/directory-browser.css +0 -215
  894. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/favicon.png +0 -0
  895. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/novel-theme.css +0 -818
  896. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/reader.js +0 -262
  897. package/templates/repo/.github/skills/ck-markdown-novel-viewer/assets/template.html +0 -80
  898. package/templates/repo/.github/skills/ck-markdown-novel-viewer/package.json +0 -15
  899. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/http-server.cjs +0 -434
  900. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/markdown-renderer.cjs +0 -272
  901. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/plan-navigator.cjs +0 -509
  902. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/port-finder.cjs +0 -48
  903. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/lib/process-mgr.cjs +0 -150
  904. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/server.cjs +0 -411
  905. package/templates/repo/.github/skills/ck-markdown-novel-viewer/scripts/tests/server.test.cjs +0 -283
  906. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/dashboard-assets.test.cjs +0 -340
  907. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/dashboard-renderer.test.cjs +0 -404
  908. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/http-server.test.cjs +0 -271
  909. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/run-tests.cjs +0 -51
  910. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/test-framework.cjs +0 -154
  911. package/templates/repo/.github/skills/ck-markdown-novel-viewer/tests/verify-xss.cjs +0 -90
  912. package/templates/repo/.github/skills/ck-mcp-builder/LICENSE.txt +0 -202
  913. package/templates/repo/.github/skills/ck-mcp-builder/SKILL.md +0 -327
  914. package/templates/repo/.github/skills/ck-mcp-builder/reference/evaluation.md +0 -602
  915. package/templates/repo/.github/skills/ck-mcp-builder/reference/mcp_best_practices.md +0 -915
  916. package/templates/repo/.github/skills/ck-mcp-builder/reference/node_mcp_server.md +0 -916
  917. package/templates/repo/.github/skills/ck-mcp-builder/reference/python_mcp_server.md +0 -752
  918. package/templates/repo/.github/skills/ck-mcp-builder/scripts/connections.py +0 -151
  919. package/templates/repo/.github/skills/ck-mcp-builder/scripts/evaluation.py +0 -373
  920. package/templates/repo/.github/skills/ck-mcp-builder/scripts/example_evaluation.xml +0 -22
  921. package/templates/repo/.github/skills/ck-mcp-builder/scripts/requirements.txt +0 -2
  922. package/templates/repo/.github/skills/ck-mcp-management/README.md +0 -219
  923. package/templates/repo/.github/skills/ck-mcp-management/SKILL.md +0 -209
  924. package/templates/repo/.github/skills/ck-mcp-management/assets/tools.json +0 -3146
  925. package/templates/repo/.github/skills/ck-mcp-management/references/configuration.md +0 -114
  926. package/templates/repo/.github/skills/ck-mcp-management/references/gemini-cli-integration.md +0 -215
  927. package/templates/repo/.github/skills/ck-mcp-management/references/mcp-protocol.md +0 -116
  928. package/templates/repo/.github/skills/ck-mcp-management/scripts/.env.example +0 -10
  929. package/templates/repo/.github/skills/ck-mcp-management/scripts/cli.ts +0 -195
  930. package/templates/repo/.github/skills/ck-mcp-management/scripts/dist/analyze-tools.js +0 -70
  931. package/templates/repo/.github/skills/ck-mcp-management/scripts/dist/cli.js +0 -160
  932. package/templates/repo/.github/skills/ck-mcp-management/scripts/dist/mcp-client.js +0 -183
  933. package/templates/repo/.github/skills/ck-mcp-management/scripts/mcp-client.ts +0 -230
  934. package/templates/repo/.github/skills/ck-mcp-management/scripts/package.json +0 -20
  935. package/templates/repo/.github/skills/ck-mcp-management/scripts/tsconfig.json +0 -15
  936. package/templates/repo/.github/skills/ck-media-processing/SKILL.md +0 -90
  937. package/templates/repo/.github/skills/ck-media-processing/references/common-workflows.md +0 -132
  938. package/templates/repo/.github/skills/ck-media-processing/references/ffmpeg-encoding.md +0 -358
  939. package/templates/repo/.github/skills/ck-media-processing/references/ffmpeg-filters.md +0 -503
  940. package/templates/repo/.github/skills/ck-media-processing/references/ffmpeg-streaming.md +0 -403
  941. package/templates/repo/.github/skills/ck-media-processing/references/format-compatibility.md +0 -375
  942. package/templates/repo/.github/skills/ck-media-processing/references/imagemagick-batch.md +0 -612
  943. package/templates/repo/.github/skills/ck-media-processing/references/imagemagick-editing.md +0 -623
  944. package/templates/repo/.github/skills/ck-media-processing/references/rmbg-background-removal.md +0 -66
  945. package/templates/repo/.github/skills/ck-media-processing/references/troubleshooting.md +0 -109
  946. package/templates/repo/.github/skills/ck-media-processing/scripts/README.md +0 -111
  947. package/templates/repo/.github/skills/ck-media-processing/scripts/batch-remove-background.sh +0 -124
  948. package/templates/repo/.github/skills/ck-media-processing/scripts/batch_resize.py +0 -342
  949. package/templates/repo/.github/skills/ck-media-processing/scripts/media_convert.py +0 -311
  950. package/templates/repo/.github/skills/ck-media-processing/scripts/remove-background.sh +0 -96
  951. package/templates/repo/.github/skills/ck-media-processing/scripts/remove-bg-node.js +0 -158
  952. package/templates/repo/.github/skills/ck-media-processing/scripts/requirements.txt +0 -24
  953. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/.coverage +0 -0
  954. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/requirements.txt +0 -2
  955. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/test_batch_resize.py +0 -372
  956. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/test_media_convert.py +0 -259
  957. package/templates/repo/.github/skills/ck-media-processing/scripts/tests/test_video_optimize.py +0 -397
  958. package/templates/repo/.github/skills/ck-media-processing/scripts/video_optimize.py +0 -414
  959. package/templates/repo/.github/skills/ck-mobile-development/SKILL.md +0 -210
  960. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-android.md +0 -604
  961. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-best-practices.md +0 -545
  962. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-debugging.md +0 -1089
  963. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-frameworks.md +0 -465
  964. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-ios.md +0 -496
  965. package/templates/repo/.github/skills/ck-mobile-development/references/mobile-mindset.md +0 -544
  966. package/templates/repo/.github/skills/ck-payment-integration/README.md +0 -185
  967. package/templates/repo/.github/skills/ck-payment-integration/SKILL.md +0 -116
  968. package/templates/repo/.github/skills/ck-payment-integration/references/polar/benefits.md +0 -396
  969. package/templates/repo/.github/skills/ck-payment-integration/references/polar/best-practices.md +0 -482
  970. package/templates/repo/.github/skills/ck-payment-integration/references/polar/checkouts.md +0 -266
  971. package/templates/repo/.github/skills/ck-payment-integration/references/polar/overview.md +0 -184
  972. package/templates/repo/.github/skills/ck-payment-integration/references/polar/products.md +0 -244
  973. package/templates/repo/.github/skills/ck-payment-integration/references/polar/sdk.md +0 -436
  974. package/templates/repo/.github/skills/ck-payment-integration/references/polar/subscriptions.md +0 -340
  975. package/templates/repo/.github/skills/ck-payment-integration/references/polar/webhooks.md +0 -405
  976. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/api.md +0 -140
  977. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/best-practices.md +0 -337
  978. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/overview.md +0 -138
  979. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/qr-codes.md +0 -228
  980. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/sdk.md +0 -213
  981. package/templates/repo/.github/skills/ck-payment-integration/references/sepay/webhooks.md +0 -208
  982. package/templates/repo/.github/skills/ck-payment-integration/scripts/.env.example +0 -20
  983. package/templates/repo/.github/skills/ck-payment-integration/scripts/checkout-helper.js +0 -244
  984. package/templates/repo/.github/skills/ck-payment-integration/scripts/package.json +0 -17
  985. package/templates/repo/.github/skills/ck-payment-integration/scripts/polar-webhook-verify.js +0 -202
  986. package/templates/repo/.github/skills/ck-payment-integration/scripts/sepay-webhook-verify.js +0 -193
  987. package/templates/repo/.github/skills/ck-payment-integration/scripts/test-scripts.js +0 -237
  988. package/templates/repo/.github/skills/ck-repomix/SKILL.md +0 -247
  989. package/templates/repo/.github/skills/ck-repomix/references/configuration.md +0 -211
  990. package/templates/repo/.github/skills/ck-repomix/references/usage-patterns.md +0 -232
  991. package/templates/repo/.github/skills/ck-repomix/scripts/.coverage +0 -0
  992. package/templates/repo/.github/skills/ck-repomix/scripts/README.md +0 -179
  993. package/templates/repo/.github/skills/ck-repomix/scripts/repomix_batch.py +0 -455
  994. package/templates/repo/.github/skills/ck-repomix/scripts/repos.example.json +0 -15
  995. package/templates/repo/.github/skills/ck-repomix/scripts/requirements.txt +0 -15
  996. package/templates/repo/.github/skills/ck-repomix/scripts/tests/test_repomix_batch.py +0 -531
  997. package/templates/repo/.github/skills/ck-shopify/README.md +0 -66
  998. package/templates/repo/.github/skills/ck-shopify/SKILL.md +0 -319
  999. package/templates/repo/.github/skills/ck-shopify/references/app-development.md +0 -470
  1000. package/templates/repo/.github/skills/ck-shopify/references/extensions.md +0 -493
  1001. package/templates/repo/.github/skills/ck-shopify/references/themes.md +0 -498
  1002. package/templates/repo/.github/skills/ck-shopify/scripts/.coverage +0 -0
  1003. package/templates/repo/.github/skills/ck-shopify/scripts/requirements.txt +0 -19
  1004. package/templates/repo/.github/skills/ck-shopify/scripts/shopify_init.py +0 -423
  1005. package/templates/repo/.github/skills/ck-shopify/scripts/tests/.coverage +0 -0
  1006. package/templates/repo/.github/skills/ck-shopify/scripts/tests/test_shopify_init.py +0 -385
  1007. package/templates/repo/.github/skills/ck-skill-creator/LICENSE.txt +0 -202
  1008. package/templates/repo/.github/skills/ck-skill-creator/SKILL.md +0 -263
  1009. package/templates/repo/.github/skills/ck-skill-creator/scripts/init_skill.py +0 -303
  1010. package/templates/repo/.github/skills/ck-skill-creator/scripts/package_skill.py +0 -110
  1011. package/templates/repo/.github/skills/ck-skill-creator/scripts/quick_validate.py +0 -65
  1012. package/templates/repo/.github/skills/ck-threejs/SKILL.md +0 -87
  1013. package/templates/repo/.github/skills/ck-threejs/references/01-getting-started.md +0 -177
  1014. package/templates/repo/.github/skills/ck-threejs/references/02-loaders.md +0 -169
  1015. package/templates/repo/.github/skills/ck-threejs/references/03-textures.md +0 -170
  1016. package/templates/repo/.github/skills/ck-threejs/references/04-cameras.md +0 -195
  1017. package/templates/repo/.github/skills/ck-threejs/references/05-lights.md +0 -183
  1018. package/templates/repo/.github/skills/ck-threejs/references/06-animations.md +0 -214
  1019. package/templates/repo/.github/skills/ck-threejs/references/07-math.md +0 -260
  1020. package/templates/repo/.github/skills/ck-threejs/references/08-interaction.md +0 -267
  1021. package/templates/repo/.github/skills/ck-threejs/references/09-postprocessing.md +0 -240
  1022. package/templates/repo/.github/skills/ck-threejs/references/10-controls.md +0 -259
  1023. package/templates/repo/.github/skills/ck-threejs/references/11-materials-advanced.md +0 -270
  1024. package/templates/repo/.github/skills/ck-threejs/references/12-performance.md +0 -269
  1025. package/templates/repo/.github/skills/ck-threejs/references/13-node-materials.md +0 -298
  1026. package/templates/repo/.github/skills/ck-threejs/references/14-physics-vr.md +0 -304
  1027. package/templates/repo/.github/skills/ck-threejs/references/15-specialized-loaders.md +0 -333
  1028. package/templates/repo/.github/skills/ck-threejs/references/16-webgpu.md +0 -302
  1029. package/templates/repo/.github/skills/ck-ui-styling/LICENSE.txt +0 -202
  1030. package/templates/repo/.github/skills/ck-ui-styling/SKILL.md +0 -319
  1031. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/ArsenalSC-OFL.txt +0 -93
  1032. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
  1033. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
  1034. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BigShoulders-OFL.txt +0 -93
  1035. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
  1036. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Boldonse-OFL.txt +0 -93
  1037. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
  1038. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
  1039. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +0 -93
  1040. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
  1041. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
  1042. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
  1043. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/CrimsonPro-OFL.txt +0 -93
  1044. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
  1045. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/DMMono-OFL.txt +0 -93
  1046. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
  1047. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/EricaOne-OFL.txt +0 -94
  1048. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
  1049. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
  1050. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/GeistMono-OFL.txt +0 -93
  1051. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
  1052. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Gloock-OFL.txt +0 -93
  1053. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
  1054. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
  1055. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +0 -93
  1056. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
  1057. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
  1058. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
  1059. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
  1060. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
  1061. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
  1062. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
  1063. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
  1064. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-OFL.txt +0 -93
  1065. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
  1066. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
  1067. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
  1068. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Italiana-OFL.txt +0 -93
  1069. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
  1070. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
  1071. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +0 -93
  1072. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
  1073. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
  1074. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
  1075. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Jura-OFL.txt +0 -93
  1076. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +0 -93
  1077. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
  1078. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
  1079. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
  1080. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
  1081. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-OFL.txt +0 -93
  1082. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
  1083. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
  1084. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NationalPark-OFL.txt +0 -93
  1085. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
  1086. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -93
  1087. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
  1088. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
  1089. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Outfit-OFL.txt +0 -93
  1090. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
  1091. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
  1092. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/PixelifySans-OFL.txt +0 -93
  1093. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/PoiretOne-OFL.txt +0 -93
  1094. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
  1095. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
  1096. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/RedHatMono-OFL.txt +0 -93
  1097. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
  1098. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Silkscreen-OFL.txt +0 -93
  1099. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
  1100. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
  1101. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/SmoochSans-OFL.txt +0 -93
  1102. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
  1103. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Tektur-OFL.txt +0 -93
  1104. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
  1105. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
  1106. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
  1107. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
  1108. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-OFL.txt +0 -93
  1109. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
  1110. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/YoungSerif-OFL.txt +0 -93
  1111. package/templates/repo/.github/skills/ck-ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
  1112. package/templates/repo/.github/skills/ck-ui-styling/references/canvas-design-system.md +0 -320
  1113. package/templates/repo/.github/skills/ck-ui-styling/references/shadcn-accessibility.md +0 -471
  1114. package/templates/repo/.github/skills/ck-ui-styling/references/shadcn-components.md +0 -424
  1115. package/templates/repo/.github/skills/ck-ui-styling/references/shadcn-theming.md +0 -373
  1116. package/templates/repo/.github/skills/ck-ui-styling/references/tailwind-customization.md +0 -483
  1117. package/templates/repo/.github/skills/ck-ui-styling/references/tailwind-responsive.md +0 -382
  1118. package/templates/repo/.github/skills/ck-ui-styling/references/tailwind-utilities.md +0 -455
  1119. package/templates/repo/.github/skills/ck-ui-styling/scripts/.coverage +0 -0
  1120. package/templates/repo/.github/skills/ck-ui-styling/scripts/requirements.txt +0 -17
  1121. package/templates/repo/.github/skills/ck-ui-styling/scripts/shadcn_add.py +0 -292
  1122. package/templates/repo/.github/skills/ck-ui-styling/scripts/tailwind_config_gen.py +0 -456
  1123. package/templates/repo/.github/skills/ck-ui-styling/scripts/tests/coverage-ui.json +0 -1
  1124. package/templates/repo/.github/skills/ck-ui-styling/scripts/tests/requirements.txt +0 -3
  1125. package/templates/repo/.github/skills/ck-ui-styling/scripts/tests/test_shadcn_add.py +0 -266
  1126. package/templates/repo/.github/skills/ck-ui-styling/scripts/tests/test_tailwind_config_gen.py +0 -336
  1127. package/templates/repo/.github/skills/ck-ui-ux-pro-max/SKILL.md +0 -227
  1128. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/charts.csv +0 -26
  1129. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/colors.csv +0 -97
  1130. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/landing.csv +0 -31
  1131. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/products.csv +0 -97
  1132. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/prompts.csv +0 -24
  1133. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/flutter.csv +0 -53
  1134. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/html-tailwind.csv +0 -51
  1135. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/nextjs.csv +0 -53
  1136. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/react-native.csv +0 -52
  1137. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/react.csv +0 -54
  1138. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/svelte.csv +0 -54
  1139. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/swiftui.csv +0 -51
  1140. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/stacks/vue.csv +0 -50
  1141. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/styles.csv +0 -59
  1142. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/typography.csv +0 -58
  1143. package/templates/repo/.github/skills/ck-ui-ux-pro-max/data/ux-guidelines.csv +0 -100
  1144. package/templates/repo/.github/skills/ck-ui-ux-pro-max/scripts/core.py +0 -236
  1145. package/templates/repo/.github/skills/ck-ui-ux-pro-max/scripts/search.py +0 -76
  1146. package/templates/repo/.github/skills/ck-web-frameworks/SKILL.md +0 -322
  1147. package/templates/repo/.github/skills/ck-web-frameworks/references/nextjs-app-router.md +0 -465
  1148. package/templates/repo/.github/skills/ck-web-frameworks/references/nextjs-data-fetching.md +0 -459
  1149. package/templates/repo/.github/skills/ck-web-frameworks/references/nextjs-optimization.md +0 -511
  1150. package/templates/repo/.github/skills/ck-web-frameworks/references/nextjs-server-components.md +0 -495
  1151. package/templates/repo/.github/skills/ck-web-frameworks/references/remix-icon-integration.md +0 -603
  1152. package/templates/repo/.github/skills/ck-web-frameworks/references/turborepo-caching.md +0 -551
  1153. package/templates/repo/.github/skills/ck-web-frameworks/references/turborepo-pipelines.md +0 -517
  1154. package/templates/repo/.github/skills/ck-web-frameworks/references/turborepo-setup.md +0 -542
  1155. package/templates/repo/.github/skills/ck-web-frameworks/scripts/.coverage +0 -0
  1156. package/templates/repo/.github/skills/ck-web-frameworks/scripts/__init__.py +0 -0
  1157. package/templates/repo/.github/skills/ck-web-frameworks/scripts/nextjs_init.py +0 -547
  1158. package/templates/repo/.github/skills/ck-web-frameworks/scripts/requirements.txt +0 -16
  1159. package/templates/repo/.github/skills/ck-web-frameworks/scripts/tests/coverage-web.json +0 -1
  1160. package/templates/repo/.github/skills/ck-web-frameworks/scripts/tests/requirements.txt +0 -3
  1161. package/templates/repo/.github/skills/ck-web-frameworks/scripts/tests/test_nextjs_init.py +0 -319
  1162. package/templates/repo/.github/skills/ck-web-frameworks/scripts/tests/test_turborepo_migrate.py +0 -374
  1163. package/templates/repo/.github/skills/ck-web-frameworks/scripts/turborepo_migrate.py +0 -394
@@ -1,50 +0,0 @@
1
- No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
2
- 1,Composition,Use Composition API for new projects,Composition API offers better TypeScript support and logic reuse,<script setup> for components,Options API for new projects,<script setup>,export default { data() },Medium,https://vuejs.org/guide/extras/composition-api-faq.html
3
- 2,Composition,Use script setup syntax,Cleaner syntax with automatic exports,<script setup> with defineProps,setup() function manually,<script setup>,<script> setup() { return {} },Low,https://vuejs.org/api/sfc-script-setup.html
4
- 3,Reactivity,Use ref for primitives,ref() for primitive values that need reactivity,ref() for strings numbers booleans,reactive() for primitives,const count = ref(0),const count = reactive(0),Medium,https://vuejs.org/guide/essentials/reactivity-fundamentals.html
5
- 4,Reactivity,Use reactive for objects,reactive() for complex objects and arrays,reactive() for objects with multiple properties,ref() for complex objects,const state = reactive({ user: null }),const state = ref({ user: null }),Medium,
6
- 5,Reactivity,Access ref values with .value,Remember .value in script unwrap in template,Use .value in script,Forget .value in script,count.value++,count++ (in script),High,
7
- 6,Reactivity,Use computed for derived state,Computed properties cache and update automatically,computed() for derived values,Methods for derived values,const doubled = computed(() => count.value * 2),const doubled = () => count.value * 2,Medium,https://vuejs.org/guide/essentials/computed.html
8
- 7,Reactivity,Use shallowRef for large objects,Avoid deep reactivity for performance,shallowRef for large data structures,ref for large nested objects,const bigData = shallowRef(largeObject),const bigData = ref(largeObject),Medium,https://vuejs.org/api/reactivity-advanced.html#shallowref
9
- 8,Watchers,Use watchEffect for simple cases,Auto-tracks dependencies,watchEffect for simple reactive effects,watch with explicit deps when not needed,watchEffect(() => console.log(count.value)),"watch(count, (val) => console.log(val))",Low,https://vuejs.org/guide/essentials/watchers.html
10
- 9,Watchers,Use watch for specific sources,Explicit control over what to watch,watch with specific refs,watchEffect for complex conditional logic,"watch(userId, fetchUser)",watchEffect with conditionals,Medium,
11
- 10,Watchers,Clean up side effects,Return cleanup function in watchers,Return cleanup in watchEffect,Leave subscriptions open,watchEffect((onCleanup) => { onCleanup(unsub) }),watchEffect without cleanup,High,
12
- 11,Props,Define props with defineProps,Type-safe prop definitions,defineProps with TypeScript,Props without types,defineProps<{ msg: string }>(),defineProps(['msg']),Medium,https://vuejs.org/guide/typescript/composition-api.html#typing-component-props
13
- 12,Props,Use withDefaults for default values,Provide defaults for optional props,withDefaults with defineProps,Defaults in destructuring,"withDefaults(defineProps<Props>(), { count: 0 })",const { count = 0 } = defineProps(),Medium,
14
- 13,Props,Avoid mutating props,Props should be read-only,Emit events to parent for changes,Direct prop mutation,"emit('update:modelValue', newVal)",props.modelValue = newVal,High,
15
- 14,Emits,Define emits with defineEmits,Type-safe event emissions,defineEmits with types,Emit without definition,defineEmits<{ change: [id: number] }>(),"emit('change', id) without define",Medium,https://vuejs.org/guide/typescript/composition-api.html#typing-component-emits
16
- 15,Emits,Use v-model for two-way binding,Simplified parent-child data flow,v-model with modelValue prop,:value + @input manually,"<Child v-model=""value""/>","<Child :value=""value"" @input=""value = $event""/>",Low,https://vuejs.org/guide/components/v-model.html
17
- 16,Lifecycle,Use onMounted for DOM access,DOM is ready in onMounted,onMounted for DOM operations,Access DOM in setup directly,onMounted(() => el.value.focus()),el.value.focus() in setup,High,https://vuejs.org/api/composition-api-lifecycle.html
18
- 17,Lifecycle,Clean up in onUnmounted,Remove listeners and subscriptions,onUnmounted for cleanup,Leave listeners attached,onUnmounted(() => window.removeEventListener()),No cleanup on unmount,High,
19
- 18,Lifecycle,Avoid onBeforeMount for data,Use onMounted or setup for data fetching,Fetch in onMounted or setup,Fetch in onBeforeMount,onMounted(async () => await fetchData()),onBeforeMount(async () => await fetchData()),Low,
20
- 19,Components,Use single-file components,Keep template script style together,.vue files for components,Separate template/script files,Component.vue with all parts,Component.js + Component.html,Low,
21
- 20,Components,Use PascalCase for components,Consistent component naming,PascalCase in imports and templates,kebab-case in script,<MyComponent/>,<my-component/>,Low,https://vuejs.org/style-guide/rules-strongly-recommended.html
22
- 21,Components,Prefer composition over mixins,Composables replace mixins,Composables for shared logic,Mixins for code reuse,const { data } = useApi(),mixins: [apiMixin],Medium,
23
- 22,Composables,Name composables with use prefix,Convention for composable functions,useFetch useAuth useForm,getData or fetchApi,export function useFetch(),export function fetchData(),Medium,https://vuejs.org/guide/reusability/composables.html
24
- 23,Composables,Return refs from composables,Maintain reactivity when destructuring,Return ref values,Return reactive objects that lose reactivity,return { data: ref(null) },return reactive({ data: null }),Medium,
25
- 24,Composables,Accept ref or value params,Use toValue for flexible inputs,toValue() or unref() for params,Only accept ref or only value,const val = toValue(maybeRef),const val = maybeRef.value,Low,https://vuejs.org/api/reactivity-utilities.html#tovalue
26
- 25,Templates,Use v-bind shorthand,Cleaner template syntax,:prop instead of v-bind:prop,Full v-bind syntax,"<div :class=""cls"">","<div v-bind:class=""cls"">",Low,
27
- 26,Templates,Use v-on shorthand,Cleaner event binding,@event instead of v-on:event,Full v-on syntax,"<button @click=""handler"">","<button v-on:click=""handler"">",Low,
28
- 27,Templates,Avoid v-if with v-for,v-if has higher priority causes issues,Wrap in template or computed filter,v-if on same element as v-for,<template v-for><div v-if>,<div v-for v-if>,High,https://vuejs.org/style-guide/rules-essential.html#avoid-v-if-with-v-for
29
- 28,Templates,Use key with v-for,Proper list rendering and updates,Unique key for each item,Index as key for dynamic lists,"v-for=""item in items"" :key=""item.id""","v-for=""(item, i) in items"" :key=""i""",High,
30
- 29,State,Use Pinia for global state,Official state management for Vue 3,Pinia stores for shared state,Vuex for new projects,const store = useCounterStore(),Vuex with mutations,Medium,https://pinia.vuejs.org/
31
- 30,State,Define stores with defineStore,Composition API style stores,Setup stores with defineStore,Options stores for complex state,"defineStore('counter', () => {})","defineStore('counter', { state })",Low,
32
- 31,State,Use storeToRefs for destructuring,Maintain reactivity when destructuring,storeToRefs(store),Direct destructuring,const { count } = storeToRefs(store),const { count } = store,High,https://pinia.vuejs.org/core-concepts/#destructuring-from-a-store
33
- 32,Routing,Use useRouter and useRoute,Composition API router access,useRouter() useRoute() in setup,this.$router this.$route,const router = useRouter(),this.$router.push(),Medium,https://router.vuejs.org/guide/advanced/composition-api.html
34
- 33,Routing,Lazy load route components,Code splitting for routes,() => import() for components,Static imports for all routes,component: () => import('./Page.vue'),component: Page,Medium,https://router.vuejs.org/guide/advanced/lazy-loading.html
35
- 34,Routing,Use navigation guards,Protect routes and handle redirects,beforeEach for auth checks,Check auth in each component,router.beforeEach((to) => {}),Check auth in onMounted,Medium,
36
- 35,Performance,Use v-once for static content,Skip re-renders for static elements,v-once on never-changing content,v-once on dynamic content,<div v-once>{{ staticText }}</div>,<div v-once>{{ dynamicText }}</div>,Low,https://vuejs.org/api/built-in-directives.html#v-once
37
- 36,Performance,Use v-memo for expensive lists,Memoize list items,v-memo with dependency array,Re-render entire list always,"<div v-for v-memo=""[item.id]"">",<div v-for> without memo,Medium,https://vuejs.org/api/built-in-directives.html#v-memo
38
- 37,Performance,Use shallowReactive for flat objects,Avoid deep reactivity overhead,shallowReactive for flat state,reactive for simple objects,shallowReactive({ count: 0 }),reactive({ count: 0 }),Low,
39
- 38,Performance,Use defineAsyncComponent,Lazy load heavy components,defineAsyncComponent for modals dialogs,Import all components eagerly,defineAsyncComponent(() => import()),import HeavyComponent from,Medium,https://vuejs.org/guide/components/async.html
40
- 39,TypeScript,Use generic components,Type-safe reusable components,Generic with defineComponent,Any types in components,"<script setup lang=""ts"" generic=""T"">",<script setup> without types,Medium,https://vuejs.org/guide/typescript/composition-api.html
41
- 40,TypeScript,Type template refs,Proper typing for DOM refs,ref<HTMLInputElement>(null),ref(null) without type,const input = ref<HTMLInputElement>(null),const input = ref(null),Medium,
42
- 41,TypeScript,Use PropType for complex props,Type complex prop types,PropType<User> for object props,Object without type,type: Object as PropType<User>,type: Object,Medium,
43
- 42,Testing,Use Vue Test Utils,Official testing library,mount shallowMount for components,Manual DOM testing,import { mount } from '@vue/test-utils',document.createElement,Medium,https://test-utils.vuejs.org/
44
- 43,Testing,Test component behavior,Focus on inputs and outputs,Test props emit and rendered output,Test internal implementation,expect(wrapper.text()).toContain(),expect(wrapper.vm.internalState),Medium,
45
- 44,Forms,Use v-model modifiers,Built-in input handling,.lazy .number .trim modifiers,Manual input parsing,"<input v-model.number=""age"">","<input v-model=""age""> then parse",Low,https://vuejs.org/guide/essentials/forms.html#modifiers
46
- 45,Forms,Use VeeValidate or FormKit,Form validation libraries,VeeValidate for complex forms,Manual validation logic,useField useForm from vee-validate,Custom validation in each input,Medium,
47
- 46,Accessibility,Use semantic elements,Proper HTML elements in templates,button nav main for purpose,div for everything,<button @click>,<div @click>,High,
48
- 47,Accessibility,Bind aria attributes dynamically,Keep ARIA in sync with state,":aria-expanded=""isOpen""",Static ARIA values,":aria-expanded=""menuOpen""","aria-expanded=""true""",Medium,
49
- 48,SSR,Use Nuxt for SSR,Full-featured SSR framework,Nuxt 3 for SSR apps,Manual SSR setup,npx nuxi init my-app,Custom SSR configuration,Medium,https://nuxt.com/
50
- 49,SSR,Handle hydration mismatches,Client/server content must match,ClientOnly for browser-only content,Different content server/client,<ClientOnly><BrowserWidget/></ClientOnly>,<div>{{ Date.now() }}</div>,High,
@@ -1,59 +0,0 @@
1
- STT,Style Category,Type,Keywords,Primary Colors,Secondary Colors,Effects & Animation,Best For,Do Not Use For,Light Mode ✓,Dark Mode ✓,Performance,Accessibility,Mobile-Friendly,Conversion-Focused,Framework Compatibility,Era/Origin,Complexity
2
- 1,Minimalism & Swiss Style,General,"Clean, simple, spacious, functional, white space, high contrast, geometric, sans-serif, grid-based, essential","Monochromatic, Black #000000, White #FFFFFF","Neutral (Beige #F5F1E8, Grey #808080, Taupe #B38B6D), Primary accent","Subtle hover (200-250ms), smooth transitions, sharp shadows if any, clear type hierarchy, fast loading","Enterprise apps, dashboards, documentation sites, SaaS platforms, professional tools","Creative portfolios, entertainment, playful brands, artistic experiments",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✓ High,◐ Medium,"Tailwind 10/10, Bootstrap 9/10, MUI 9/10",1950s Swiss,Low
3
- 2,Neumorphism,General,"Soft UI, embossed, debossed, convex, concave, light source, subtle depth, rounded (12-16px), monochromatic","Light pastels: Soft Blue #C8E0F4, Soft Pink #F5E0E8, Soft Grey #E8E8E8","Tints/shades (±30%), gradient subtlety, color harmony","Soft box-shadow (multiple: -5px -5px 15px, 5px 5px 15px), smooth press (150ms), inner subtle shadow","Health/wellness apps, meditation platforms, fitness trackers, minimal interaction UIs","Complex apps, critical accessibility, data-heavy dashboards, high-contrast required",✓ Full,◐ Partial,⚡ Good,⚠ Low contrast,✓ Good,◐ Medium,"Tailwind 8/10, CSS-in-JS 9/10",2020s Modern,Medium
4
- 3,Glassmorphism,General,"Frosted glass, transparent, blurred background, layered, vibrant background, light source, depth, multi-layer","Translucent white: rgba(255,255,255,0.1-0.3)","Vibrant: Electric Blue #0080FF, Neon Purple #8B00FF, Vivid Pink #FF1493, Teal #20B2AA","Backdrop blur (10-20px), subtle border (1px solid rgba white 0.2), light reflection, Z-depth","Modern SaaS, financial dashboards, high-end corporate, lifestyle apps, modal overlays, navigation","Low-contrast backgrounds, critical accessibility, performance-limited, dark text on dark",✓ Full,✓ Full,⚠ Good,⚠ Ensure 4.5:1,✓ Good,✓ High,"Tailwind 9/10, MUI 8/10, Chakra 8/10",2020s Modern,Medium
5
- 4,Brutalism,General,"Raw, unpolished, stark, high contrast, plain text, default fonts, visible borders, asymmetric, anti-design","Primary: Red #FF0000, Blue #0000FF, Yellow #FFFF00, Black #000000, White #FFFFFF","Limited: Neon Green #00FF00, Hot Pink #FF00FF, minimal secondary","No smooth transitions (instant), sharp corners (0px), bold typography (700+), visible grid, large blocks","Design portfolios, artistic projects, counter-culture brands, editorial/media sites, tech blogs","Corporate environments, conservative industries, critical accessibility, customer-facing professional",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,◐ Medium,✗ Low,"Tailwind 10/10, Bootstrap 7/10",1950s Brutalist,Low
6
- 5,3D & Hyperrealism,General,"Depth, realistic textures, 3D models, spatial navigation, tactile, skeuomorphic elements, rich detail, immersive","Deep Navy #001F3F, Forest Green #228B22, Burgundy #800020, Gold #FFD700, Silver #C0C0C0","Complex gradients (5-10 stops), realistic lighting, shadow variations (20-40% darker)","WebGL/Three.js 3D, realistic shadows (layers), physics lighting, parallax (3-5 layers), smooth 3D (300-400ms)","Gaming, product showcase, immersive experiences, high-end e-commerce, architectural viz, VR/AR","Low-end mobile, performance-limited, critical accessibility, data tables/forms",◐ Partial,◐ Partial,❌ Poor,⚠ Not accessible,✗ Low,◐ Medium,"Three.js 10/10, R3F 10/10, Babylon.js 10/10",2020s Modern,High
7
- 6,Vibrant & Block-based,General,"Bold, energetic, playful, block layout, geometric shapes, high color contrast, duotone, modern, energetic","Neon Green #39FF14, Electric Purple #BF00FF, Vivid Pink #FF1493, Bright Cyan #00FFFF, Sunburst #FFAA00","Complementary: Orange #FF7F00, Shocking Pink #FF006E, Lime #CCFF00, triadic schemes","Large sections (48px+ gaps), animated patterns, bold hover (color shift), scroll-snap, large type (32px+), 200-300ms","Startups, creative agencies, gaming, social media, youth-focused, entertainment, consumer","Financial institutions, healthcare, formal business, government, conservative, elderly",✓ Full,✓ Full,⚡ Good,◐ Ensure WCAG,✓ High,✓ High,"Tailwind 10/10, Chakra 9/10, Styled 9/10",2020s Modern,Medium
8
- 7,Dark Mode (OLED),General,"Dark theme, low light, high contrast, deep black, midnight blue, eye-friendly, OLED, night mode, power efficient","Deep Black #000000, Dark Grey #121212, Midnight Blue #0A0E27","Vibrant accents: Neon Green #39FF14, Electric Blue #0080FF, Gold #FFD700, Plasma Purple #BF00FF","Minimal glow (text-shadow: 0 0 10px), dark-to-light transitions, low white emission, high readability, visible focus","Night-mode apps, coding platforms, entertainment, eye-strain prevention, OLED devices, low-light","Print-first content, high-brightness outdoor, color-accuracy-critical",✗ No,✓ Only,⚡ Excellent,✓ WCAG AAA,✓ High,◐ Low,"Tailwind 10/10, MUI 10/10, Chakra 10/10",2020s Modern,Low
9
- 8,Accessible & Ethical,General,"High contrast, large text (16px+), keyboard navigation, screen reader friendly, WCAG compliant, focus state, semantic","WCAG AA/AAA (4.5:1 min), simple primary, clear secondary, high luminosity (7:1+)","Symbol-based colors (not color-only), supporting patterns, inclusive combinations","Clear focus rings (3-4px), ARIA labels, skip links, responsive design, reduced motion, 44x44px touch targets","Government, healthcare, education, inclusive products, large audience, legal compliance, public",None - accessibility universal,✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✓ High,✓ High,"All frameworks 10/10",Universal,Low
10
- 9,Claymorphism,General,"Soft 3D, chunky, playful, toy-like, bubbly, thick borders (3-4px), double shadows, rounded (16-24px)","Pastel: Soft Peach #FDBCB4, Baby Blue #ADD8E6, Mint #98FF98, Lilac #E6E6FA, light BG","Soft gradients (pastel-to-pastel), light/dark variations (20-30%), gradient subtle","Inner+outer shadows (subtle, no hard lines), soft press (200ms ease-out), fluffy elements, smooth transitions","Educational apps, children's apps, SaaS platforms, creative tools, fun-focused, onboarding, casual games","Formal corporate, professional services, data-critical, serious/medical, legal apps, finance",✓ Full,◐ Partial,⚡ Good,⚠ Ensure 4.5:1,✓ High,✓ High,"Tailwind 9/10, CSS-in-JS 9/10",2020s Modern,Medium
11
- 10,Aurora UI,General,"Vibrant gradients, smooth blend, Northern Lights effect, mesh gradient, luminous, atmospheric, abstract","Complementary: Blue-Orange, Purple-Yellow, Electric Blue #0080FF, Magenta #FF1493, Cyan #00FFFF","Smooth transitions (Blue→Purple→Pink→Teal), iridescent effects, blend modes (screen, multiply)","Large flowing CSS/SVG gradients, subtle 8-12s animations, depth via color layering, smooth morph","Modern SaaS, creative agencies, branding, music platforms, lifestyle, premium products, hero sections","Data-heavy dashboards, critical accessibility, content-heavy where distraction issues",✓ Full,✓ Full,⚠ Good,⚠ Text contrast,✓ Good,✓ High,"Tailwind 9/10, CSS-in-JS 10/10",2020s Modern,Medium
12
- 11,Retro-Futurism,General,"Vintage sci-fi, 80s aesthetic, neon glow, geometric patterns, CRT scanlines, pixel art, cyberpunk, synthwave","Neon Blue #0080FF, Hot Pink #FF006E, Cyan #00FFFF, Deep Black #1A1A2E, Purple #5D34D0","Metallic Silver #C0C0C0, Gold #FFD700, duotone, 80s Pink #FF10F0, neon accents","CRT scanlines (::before overlay), neon glow (text-shadow+box-shadow), glitch effects (skew/offset keyframes)","Gaming, entertainment, music platforms, tech brands, artistic projects, nostalgic, cyberpunk","Conservative industries, critical accessibility, professional/corporate, elderly, legal/finance",✓ Full,✓ Dark focused,⚠ Moderate,⚠ High contrast/strain,◐ Medium,◐ Medium,"Tailwind 8/10, CSS-in-JS 9/10",1980s Retro,Medium
13
- 12,Flat Design,General,"2D, minimalist, bold colors, no shadows, clean lines, simple shapes, typography-focused, modern, icon-heavy","Solid bright: Red, Orange, Blue, Green, limited palette (4-6 max)","Complementary colors, muted secondaries, high saturation, clean accents","No gradients/shadows, simple hover (color/opacity shift), fast loading, clean transitions (150-200ms ease), minimal icons","Web apps, mobile apps, cross-platform, startup MVPs, user-friendly, SaaS, dashboards, corporate","Complex 3D, premium/luxury, artistic portfolios, immersive experiences, high-detail",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✓ High,✓ High,"Tailwind 10/10, Bootstrap 10/10, MUI 9/10",2010s Modern,Low
14
- 13,Skeuomorphism,General,"Realistic, texture, depth, 3D appearance, real-world metaphors, shadows, gradients, tactile, detailed, material","Rich realistic: wood, leather, metal colors, detailed gradients (8-12 stops), metallic effects","Realistic lighting gradients, shadow variations (30-50% darker), texture overlays, material colors","Realistic shadows (layers), depth (perspective), texture details (noise, grain), realistic animations (300-500ms)","Legacy apps, gaming, immersive storytelling, premium products, luxury, realistic simulations, education","Modern enterprise, critical accessibility, low-performance, web (use Flat/Modern)",◐ Partial,◐ Partial,❌ Poor,⚠ Textures reduce readability,✗ Low,◐ Medium,"CSS-in-JS 7/10, Custom 8/10",2007-2012 iOS,High
15
- 14,Liquid Glass,General,"Flowing glass, morphing, smooth transitions, fluid effects, translucent, animated blur, iridescent, chromatic aberration","Vibrant iridescent (rainbow spectrum), translucent base with opacity shifts, gradient fluidity","Chromatic aberration (Red-Cyan), iridescent oil-spill, fluid gradient blends, holographic effects","Morphing elements (SVG/CSS), fluid animations (400-600ms curves), dynamic blur (backdrop-filter), color transitions","Premium SaaS, high-end e-commerce, creative platforms, branding experiences, luxury portfolios","Performance-limited, critical accessibility, complex data, budget projects",✓ Full,✓ Full,⚠ Moderate-Poor,⚠ Text contrast,◐ Medium,✓ High,"Framer Motion 10/10, GSAP 10/10",2020s Modern,High
16
- 15,Motion-Driven,General,"Animation-heavy, microinteractions, smooth transitions, scroll effects, parallax, entrance anim, page transitions","Bold colors emphasize movement, high contrast animated, dynamic gradients, accent action colors","Transitional states, success (Green #22C55E), error (Red #EF4444), neutral feedback","Scroll anim (Intersection Observer), hover (300-400ms), entrance, parallax (3-5 layers), page transitions","Portfolio sites, storytelling platforms, interactive experiences, entertainment apps, creative, SaaS","Data dashboards, critical accessibility, low-power devices, content-heavy, motion-sensitive",✓ Full,✓ Full,⚠ Good,⚠ Prefers-reduced-motion,✓ Good,✓ High,"GSAP 10/10, Framer Motion 10/10",2020s Modern,High
17
- 16,Micro-interactions,General,"Small animations, gesture-based, tactile feedback, subtle animations, contextual interactions, responsive","Subtle color shifts (10-20%), feedback: Green #22C55E, Red #EF4444, Amber #F59E0B","Accent feedback, neutral supporting, clear action indicators","Small hover (50-100ms), loading spinners, success/error state anim, gesture-triggered (swipe/pinch), haptic","Mobile apps, touchscreen UIs, productivity tools, user-friendly, consumer apps, interactive components","Desktop-only, critical performance, accessibility-first (alternatives needed)",✓ Full,✓ Full,⚡ Excellent,✓ Good,✓ High,✓ High,"Framer Motion 10/10, React Spring 9/10",2020s Modern,Medium
18
- 17,Inclusive Design,General,"Accessible, color-blind friendly, high contrast, haptic feedback, voice interaction, screen reader, WCAG AAA, universal","WCAG AAA (7:1+ contrast), avoid red-green only, symbol-based indicators, high contrast primary","Supporting patterns (stripes, dots, hatch), symbols, combinations, clear non-color indicators","Haptic feedback (vibration), voice guidance, focus indicators (4px+ ring), motion options, alt content, semantic","Public services, education, healthcare, finance, government, accessible consumer, inclusive",None - accessibility universal,✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✓ High,✓ High,"All frameworks 10/10",Universal,Low
19
- 18,Zero Interface,General,"Minimal visible UI, voice-first, gesture-based, AI-driven, invisible controls, predictive, context-aware, ambient","Neutral backgrounds: Soft white #FAFAFA, light grey #F0F0F0, warm off-white #F5F1E8","Subtle feedback: light green, light red, minimal UI elements, soft accents","Voice recognition UI, gesture detection, AI predictions (smooth reveal), progressive disclosure, smart suggestions","Voice assistants, AI platforms, future-forward UX, smart home, contextual computing, ambient experiences","Complex workflows, data-entry heavy, traditional systems, legacy support, explicit control",✓ Full,✓ Full,⚡ Excellent,✓ Excellent,✓ High,✓ High,"Tailwind 10/10, Custom 10/10",2020s AI-Era,Low
20
- 19,Soft UI Evolution,General,"Evolved soft UI, better contrast, modern aesthetics, subtle depth, accessibility-focused, improved shadows, hybrid","Improved contrast pastels: Soft Blue #87CEEB, Soft Pink #FFB6C1, Soft Green #90EE90, better hierarchy","Better combinations, accessible secondary, supporting with improved contrast, modern accents","Improved shadows (softer than flat, clearer than neumorphism), modern (200-300ms), focus visible, WCAG AA/AAA","Modern enterprise apps, SaaS platforms, health/wellness, modern business tools, professional, hybrid","Extreme minimalism, critical performance, systems without modern OS",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA+,✓ High,✓ High,"Tailwind 9/10, MUI 9/10, Chakra 9/10",2020s Modern,Medium
21
- 20,Hero-Centric Design,Landing Page,"Large hero section, compelling headline, high-contrast CTA, product showcase, value proposition, hero image/video, dramatic visual","Brand primary color, white/light backgrounds for contrast, accent color for CTA","Supporting colors for secondary CTAs, accent highlights, trust elements (testimonials, logos)","Smooth scroll reveal, fade-in animations on hero, subtle background parallax, CTA glow/pulse effect","SaaS landing pages, product launches, service landing pages, B2B platforms, tech companies","Complex navigation, multi-page experiences, data-heavy applications",✓ Full,✓ Full,⚡ Good,✓ WCAG AA,✓ Full,✓ Very High,"Tailwind 10/10, Bootstrap 9/10",2020s Modern,Medium
22
- 21,Conversion-Optimized,Landing Page,"Form-focused, minimalist design, single CTA focus, high contrast, urgency elements, trust signals, social proof, clear value","Primary brand color, high-contrast white/light backgrounds, warning/urgency colors for time-limited offers","Secondary CTA color (muted), trust element colors (testimonial highlights), accent for key benefits","Hover states on CTA (color shift, slight scale), form field focus animations, loading spinner, success feedback","E-commerce product pages, free trial signups, lead generation, SaaS pricing pages, limited-time offers","Complex feature explanations, multi-product showcases, technical documentation",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA,✓ Full (mobile-optimized),✓ Very High
23
- 22,Feature-Rich Showcase,Landing Page,"Multiple feature sections, grid layout, benefit cards, visual feature demonstrations, interactive elements, problem-solution pairs","Primary brand, bright secondary colors for feature cards, contrasting accent for CTAs","Supporting colors for: benefits (green), problems (red/orange), features (blue/purple), social proof (neutral)","Card hover effects (lift/scale), icon animations on scroll, feature toggle animations, smooth section transitions","Enterprise SaaS, software tools landing pages, platform services, complex product explanations, B2B products","Simple product pages, early-stage startups with few features, entertainment landing pages",✓ Full,✓ Full,⚡ Good,✓ WCAG AA,✓ Good,✓ High
24
- 23,Minimal & Direct,Landing Page,"Minimal text, white space heavy, single column layout, direct messaging, clean typography, visual-centric, fast-loading","Monochromatic primary, white background, single accent color for CTA, black/dark grey text","Minimal secondary colors, reserved for critical CTAs only, neutral supporting elements","Very subtle hover effects, minimal animations, fast page load (no heavy animations), smooth scroll","Simple service landing pages, indie products, consulting services, micro SaaS, freelancer portfolios","Feature-heavy products, complex explanations, multi-product showcases",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✓ Full,✓ High
25
- 24,Social Proof-Focused,Landing Page,"Testimonials prominent, client logos displayed, case studies sections, reviews/ratings, user avatars, success metrics, credibility markers","Primary brand, trust colors (blue), success/growth colors (green), neutral backgrounds","Testimonial highlight colors, logo grid backgrounds (light grey), badge/achievement colors","Testimonial carousel animations, logo grid fade-in, stat counter animations (number count-up), review star ratings","B2B SaaS, professional services, premium products, e-commerce conversion pages, established brands","Startup MVPs, products without users, niche/experimental products",✓ Full,✓ Full,⚡ Good,✓ WCAG AA,✓ Full,✓ High
26
- 25,Interactive Product Demo,Landing Page,"Embedded product mockup/video, interactive elements, product walkthrough, step-by-step guides, hover-to-reveal features, embedded demos","Primary brand, interface colors matching product, demo highlight colors for interactive elements","Product UI colors, tutorial step colors (numbered progression), hover state indicators","Product animation playback, step progression animations, hover reveal effects, smooth zoom on interaction","SaaS platforms, tool/software products, productivity apps landing pages, developer tools, productivity software","Simple services, consulting, non-digital products, complexity-averse audiences",✓ Full,✓ Full,⚠ Good (video/interactive),✓ WCAG AA,✓ Good,✓ Very High
27
- 26,Trust & Authority,Landing Page,"Certificates/badges displayed, expert credentials, case studies with metrics, before/after comparisons, industry recognition, security badges","Professional colors (blue/grey), trust colors, certification badge colors (gold/silver accents)","Certificate highlight colors, metric showcase colors, comparison highlight (success green)","Badge hover effects, metric pulse animations, certificate carousel, smooth stat reveal","Healthcare/medical landing pages, financial services, enterprise software, premium/luxury products, legal services","Casual products, entertainment, viral/social-first products",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✓ Full,✓ High
28
- 27,Storytelling-Driven,Landing Page,"Narrative flow, visual story progression, section transitions, consistent character/brand voice, emotional messaging, journey visualization","Brand primary, warm/emotional colors, varied accent colors per story section, high visual variety","Story section color coding, emotional state colors (calm, excitement, success), transitional gradients","Section-to-section animations, scroll-triggered reveals, character/icon animations, morphing transitions, parallax narrative","Brand/startup stories, mission-driven products, premium/lifestyle brands, documentary-style products, educational","Technical/complex products (unless narrative-driven), traditional enterprise software",✓ Full,✓ Full,⚠ Moderate (animations),✓ WCAG AA,✓ Good,✓ High
29
- 28,Data-Dense Dashboard,BI/Analytics,"Multiple charts/widgets, data tables, KPI cards, minimal padding, grid layout, space-efficient, maximum data visibility","Neutral primary (light grey/white #F5F5F5), data colors (blue/green/red), dark text #333333","Chart colors: success (green #22C55E), warning (amber #F59E0B), alert (red #EF4444), neutral (grey)","Hover tooltips, chart zoom on click, row highlighting on hover, smooth filter animations, data loading spinners","Business intelligence dashboards, financial analytics, enterprise reporting, operational dashboards, data warehousing","Marketing dashboards, consumer-facing analytics, simple reporting",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA,◐ Medium,✗ Not applicable
30
- 29,Heat Map & Heatmap Style,BI/Analytics,"Color-coded grid/matrix, data intensity visualization, geographical heat maps, correlation matrices, cell-based representation, gradient coloring","Gradient scale: Cool (blue #0080FF) to hot (red #FF0000), neutral middle (white/yellow)","Support gradients: Light (cool blue) to dark (warm red), divergent for positive/negative data, monochromatic options","Color gradient transitions on data change, cell highlighting on hover, tooltip reveal on click, smooth color animation","Geographical analysis, performance matrices, correlation analysis, user behavior heatmaps, temperature/intensity data","Linear data representation, categorical comparisons (use bar charts), small datasets",✓ Full,✓ Full (with adjustments),⚡ Excellent,⚠ Colorblind considerations,◐ Medium,✗ Not applicable
31
- 30,Executive Dashboard,BI/Analytics,"High-level KPIs, large key metrics, minimal detail, summary view, trend indicators, at-a-glance insights, executive summary","Brand colors, professional palette (blue/grey/white), accent for KPIs, red for alerts/concerns","KPI highlight colors: positive (green), negative (red), neutral (grey), trend arrow colors","KPI value animations (count-up), trend arrow direction animations, metric card hover lift, alert pulse effect","C-suite dashboards, business summary reports, decision-maker dashboards, strategic planning views","Detailed analyst dashboards, technical deep-dives, operational monitoring",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA,✗ Low (not mobile-optimized),✗ Not applicable
32
- 31,Real-Time Monitoring,BI/Analytics,"Live data updates, status indicators, alert notifications, streaming data visualization, active monitoring, streaming charts","Alert colors: critical (red #FF0000), warning (orange #FFA500), normal (green #22C55E), updating (blue animation)","Status indicator colors, chart line colors varying by metric, streaming data highlight colors","Real-time chart animations, alert pulse/glow, status indicator blink animation, smooth data stream updates, loading effect","System monitoring dashboards, DevOps dashboards, real-time analytics, stock market dashboards, live event tracking","Historical analysis, long-term trend reports, archived data dashboards",✓ Full,✓ Full,⚡ Good (real-time load),✓ WCAG AA,◐ Medium,✗ Not applicable
33
- 32,Drill-Down Analytics,BI/Analytics,"Hierarchical data exploration, expandable sections, interactive drill-down paths, summary-to-detail flow, context preservation","Primary brand, breadcrumb colors, drill-level indicator colors, hierarchy depth colors","Drill-down path indicator colors, level-specific colors, highlight colors for selected level, transition colors","Drill-down expand animations, breadcrumb click transitions, smooth detail reveal, level change smooth, data reload animation","Sales analytics, product analytics, funnel analysis, multi-dimensional data exploration, business intelligence","Simple linear data, single-metric dashboards, streaming real-time dashboards",✓ Full,✓ Full,⚡ Good,✓ WCAG AA,◐ Medium,✗ Not applicable
34
- 33,Comparative Analysis Dashboard,BI/Analytics,"Side-by-side comparisons, period-over-period metrics, A/B test results, regional comparisons, performance benchmarks","Comparison colors: primary (blue), comparison (orange/purple), delta indicator (green/red)","Winning metric color (green), losing metric color (red), neutral comparison (grey), benchmark colors","Comparison bar animations (grow to value), delta indicator animations (direction arrows), highlight on compare","Period-over-period reporting, A/B test dashboards, market comparison, competitive analysis, regional performance","Single metric dashboards, future projections (use forecasting), real-time only (no historical)",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA,◐ Medium,✗ Not applicable
35
- 34,Predictive Analytics,BI/Analytics,"Forecast lines, confidence intervals, trend projections, scenario modeling, AI-driven insights, anomaly detection visualization","Forecast line color (distinct from actual), confidence interval shading, anomaly highlight (red alert), trend colors","High confidence (dark color), low confidence (light color), anomaly colors (red/orange), normal trend (green/blue)","Forecast line animation on draw, confidence band fade-in, anomaly pulse alert, smoothing function animations","Forecasting dashboards, anomaly detection systems, trend prediction dashboards, AI-powered analytics, budget planning","Historical-only dashboards, simple reporting, real-time operational dashboards",✓ Full,✓ Full,⚠ Good (computation),✓ WCAG AA,◐ Medium,✗ Not applicable
36
- 35,User Behavior Analytics,BI/Analytics,"Funnel visualization, user flow diagrams, conversion tracking, engagement metrics, user journey mapping, cohort analysis","Funnel stage colors: high engagement (green), drop-off (red), conversion (blue), user flow arrows (grey)","Stage completion colors (success), abandonment colors (warning), engagement levels (gradient), cohort colors","Funnel animation (fill-down), flow diagram animations (connection draw), conversion pulse, engagement bar fill","Conversion funnel analysis, user journey tracking, engagement analytics, cohort analysis, retention tracking","Real-time operational metrics, technical system monitoring, financial transactions",✓ Full,✓ Full,⚡ Good,✓ WCAG AA,✓ Good,✗ Not applicable
37
- 36,Financial Dashboard,BI/Analytics,"Revenue metrics, profit/loss visualization, budget tracking, financial ratios, portfolio performance, cash flow, audit trail","Financial colors: profit (green #22C55E), loss (red #EF4444), neutral (grey), trust (dark blue #003366)","Revenue highlight (green), expenses (red), budget variance (orange/red), balance (grey), accuracy (blue)","Number animations (count-up), trend direction indicators, percentage change animations, profit/loss color transitions","Financial reporting, accounting dashboards, portfolio tracking, budget monitoring, banking analytics","Simple business dashboards, entertainment/social metrics, non-financial data",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✗ Low,✗ Not applicable
38
- 37,Sales Intelligence Dashboard,BI/Analytics,"Deal pipeline, sales metrics, territory performance, sales rep leaderboard, win-loss analysis, quota tracking, forecast accuracy","Sales colors: won (green), lost (red), in-progress (blue), blocked (orange), quota met (gold), quota missed (grey)","Pipeline stage colors, rep performance colors, quota achievement colors, forecast accuracy colors","Deal movement animations, metric updates, leaderboard ranking changes, gauge needle movements, status change highlights","CRM dashboards, sales management, opportunity tracking, performance management, quota planning","Marketing analytics, customer support metrics, HR dashboards",✓ Full,✓ Full,⚡ Good,✓ WCAG AA,◐ Medium,✗ Not applicable,"Recharts 9/10, Chart.js 9/10",2020s Modern,Medium
39
- 38,Neubrutalism,General,"Bold borders, black outlines, primary colors, thick shadows, no gradients, flat colors, 45° shadows, playful, Gen Z","#FFEB3B (Yellow), #FF5252 (Red), #2196F3 (Blue), #000000 (Black borders)","Limited accent colors, high contrast combinations, no gradients allowed","box-shadow: 4px 4px 0 #000, border: 3px solid #000, no gradients, sharp corners (0px), bold typography","Gen Z brands, startups, creative agencies, Figma-style apps, Notion-style interfaces, tech blogs","Luxury brands, finance, healthcare, conservative industries (too playful)",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✓ High,✓ High,"Tailwind 10/10, Bootstrap 8/10",2020s Modern,Low
40
- 39,Bento Box Grid,General,"Modular cards, asymmetric grid, varied sizes, Apple-style, dashboard tiles, negative space, clean hierarchy, cards","Neutral base + brand accent, #FFFFFF, #F5F5F5, brand primary","Subtle gradients, shadow variations, accent highlights for interactive cards","grid-template with varied spans, rounded-xl (16px), subtle shadows, hover scale (1.02), smooth transitions","Dashboards, product pages, portfolios, Apple-style marketing, feature showcases, SaaS","Dense data tables, text-heavy content, real-time monitoring",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA,✓ High,✓ High,"Tailwind 10/10, CSS Grid 10/10",2020s Apple,Low
41
- 40,Y2K Aesthetic,General,"Neon pink, chrome, metallic, bubblegum, iridescent, glossy, retro-futurism, 2000s, futuristic nostalgia","#FF69B4 (Hot Pink), #00FFFF (Cyan), #C0C0C0 (Silver), #9400D3 (Purple)","Metallic gradients, glossy overlays, iridescent effects, chrome textures","linear-gradient metallic, glossy buttons, 3D chrome effects, glow animations, bubble shapes","Fashion brands, music platforms, Gen Z brands, nostalgia marketing, entertainment, youth-focused","B2B enterprise, healthcare, finance, conservative industries, elderly users",✓ Full,◐ Partial,⚠ Good,⚠ Check contrast,✓ Good,✓ High,"Tailwind 8/10, CSS-in-JS 9/10",Y2K 2000s,Medium
42
- 41,Cyberpunk UI,General,"Neon, dark mode, terminal, HUD, sci-fi, glitch, dystopian, futuristic, matrix, tech noir","#00FF00 (Matrix Green), #FF00FF (Magenta), #00FFFF (Cyan), #0D0D0D (Dark)","Neon gradients, scanline overlays, glitch colors, terminal green accents","Neon glow (text-shadow), glitch animations (skew/offset), scanlines (::before overlay), terminal fonts","Gaming platforms, tech products, crypto apps, sci-fi applications, developer tools, entertainment","Corporate enterprise, healthcare, family apps, conservative brands, elderly users",✗ No,✓ Only,⚠ Moderate,⚠ Limited (dark+neon),◐ Medium,◐ Medium,"Tailwind 8/10, Custom CSS 10/10",2020s Cyberpunk,Medium
43
- 42,Organic Biophilic,General,"Nature, organic shapes, green, sustainable, rounded, flowing, wellness, earthy, natural textures","#228B22 (Forest Green), #8B4513 (Earth Brown), #87CEEB (Sky Blue), #F5F5DC (Beige)","Natural gradients, earth tones, sky blues, organic textures, wood/stone colors","Rounded corners (16-24px), organic curves (border-radius variations), natural shadows, flowing SVG shapes","Wellness apps, sustainability brands, eco products, health apps, meditation, organic food brands","Tech-focused products, gaming, industrial, urban brands",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA,✓ High,✓ High,"Tailwind 10/10, CSS 10/10",2020s Sustainable,Low
44
- 43,AI-Native UI,General,"Chatbot, conversational, voice, assistant, agentic, ambient, minimal chrome, streaming text, AI interactions","Neutral + single accent, #6366F1 (AI Purple), #10B981 (Success), #F5F5F5 (Background)","Status indicators, streaming highlights, context card colors, subtle accent variations","Typing indicators (3-dot pulse), streaming text animations, pulse animations, context cards, smooth reveals","AI products, chatbots, voice assistants, copilots, AI-powered tools, conversational interfaces","Traditional forms, data-heavy dashboards, print-first content",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA,✓ High,✓ High,"Tailwind 10/10, React 10/10",2020s AI-Era,Low
45
- 44,Memphis Design,General,"80s, geometric, playful, postmodern, shapes, patterns, squiggles, triangles, neon, abstract, bold","#FF71CE (Hot Pink), #FFCE5C (Yellow), #86CCCA (Teal), #6A7BB4 (Blue Purple)","Complementary geometric colors, pattern fills, contrasting accent shapes","transform: rotate(), clip-path: polygon(), mix-blend-mode, repeating patterns, bold shapes","Creative agencies, music sites, youth brands, event promotion, artistic portfolios, entertainment","Corporate finance, healthcare, legal, elderly users, conservative brands",✓ Full,✓ Full,⚡ Excellent,⚠ Check contrast,✓ Good,◐ Medium,"Tailwind 9/10, CSS 10/10",1980s Postmodern,Medium
46
- 45,Vaporwave,General,"Synthwave, retro-futuristic, 80s-90s, neon, glitch, nostalgic, sunset gradient, dreamy, aesthetic","#FF71CE (Pink), #01CDFE (Cyan), #05FFA1 (Mint), #B967FF (Purple)","Sunset gradients, glitch overlays, VHS effects, neon accents, pastel variations","text-shadow glow, linear-gradient, filter: hue-rotate(), glitch animations, retro scan lines","Music platforms, gaming, creative portfolios, tech startups, entertainment, artistic projects","Business apps, e-commerce, education, healthcare, enterprise software",✓ Full,✓ Dark focused,⚠ Moderate,⚠ Poor (motion),◐ Medium,◐ Medium,"Tailwind 8/10, CSS-in-JS 9/10",1980s-90s Retro,Medium
47
- 46,Dimensional Layering,General,"Depth, overlapping, z-index, layers, 3D, shadows, elevation, floating, cards, spatial hierarchy","Neutral base (#FFFFFF, #F5F5F5, #E0E0E0) + brand accent for elevated elements","Shadow variations (sm/md/lg/xl), elevation colors, highlight colors for top layers","z-index stacking, box-shadow elevation (4 levels), transform: translateZ(), backdrop-filter, parallax","Dashboards, card layouts, modals, navigation, product showcases, SaaS interfaces","Print-style layouts, simple blogs, low-end devices, flat design requirements",✓ Full,✓ Full,⚠ Good,⚠ Moderate (SR issues),✓ Good,✓ High,"Tailwind 10/10, MUI 10/10, Chakra 10/10",2020s Modern,Medium
48
- 47,Exaggerated Minimalism,General,"Bold minimalism, oversized typography, high contrast, negative space, loud minimal, statement design","#000000 (Black), #FFFFFF (White), single vibrant accent only","Minimal - single accent color, no secondary colors, extreme restraint","font-size: clamp(3rem 10vw 12rem), font-weight: 900, letter-spacing: -0.05em, massive whitespace","Fashion, architecture, portfolios, agency landing pages, luxury brands, editorial","E-commerce catalogs, dashboards, forms, data-heavy, elderly users, complex apps",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA,✓ High,✓ High,"Tailwind 10/10, Typography.js 10/10",2020s Modern,Low
49
- 48,Kinetic Typography,General,"Motion text, animated type, moving letters, dynamic, typing effect, morphing, scroll-triggered text","Flexible - high contrast recommended, bold colors for emphasis, animation-friendly palette","Accent colors for emphasis, transition colors, gradient text fills","@keyframes text animation, typing effect, background-clip: text, GSAP ScrollTrigger, split text","Hero sections, marketing sites, video platforms, storytelling, creative portfolios, landing pages","Long-form content, accessibility-critical, data interfaces, forms, elderly users",✓ Full,✓ Full,⚠ Moderate,❌ Poor (motion),✓ Good,✓ Very High,"GSAP 10/10, Framer Motion 10/10",2020s Modern,High
50
- 49,Parallax Storytelling,General,"Scroll-driven, narrative, layered scrolling, immersive, progressive disclosure, cinematic, scroll-triggered","Story-dependent, often gradients and natural colors, section-specific palettes","Section transition colors, depth layer colors, narrative mood colors","transform: translateY(scroll), position: fixed/sticky, perspective: 1px, scroll-triggered animations","Brand storytelling, product launches, case studies, portfolios, annual reports, marketing campaigns","E-commerce, dashboards, mobile-first, SEO-critical, accessibility-required",✓ Full,✓ Full,❌ Poor,❌ Poor (motion),✗ Low,✓ High,"GSAP ScrollTrigger 10/10, Locomotive Scroll 10/10",2020s Modern,High
51
- 50,Swiss Modernism 2.0,General,"Grid system, Helvetica, modular, asymmetric, international style, rational, clean, mathematical spacing","#000000, #FFFFFF, #F5F5F5, single vibrant accent only","Minimal secondary, accent for emphasis only, no gradients","display: grid, grid-template-columns: repeat(12 1fr), gap: 1rem, mathematical ratios, clear hierarchy","Corporate sites, architecture, editorial, SaaS, museums, professional services, documentation","Playful brands, children's sites, entertainment, gaming, emotional storytelling",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✓ High,✓ High,"Tailwind 10/10, Bootstrap 9/10, Foundation 10/10",1950s Swiss + 2020s,Low
52
- 51,HUD / Sci-Fi FUI,General,"Futuristic, technical, wireframe, neon, data, transparency, iron man, sci-fi, interface","Neon Cyan #00FFFF, Holographic Blue #0080FF, Alert Red #FF0000","Transparent Black, Grid Lines #333333","Glow effects, scanning animations, ticker text, blinking markers, fine line drawing","Sci-fi games, space tech, cybersecurity, movie props, immersive dashboards","Standard corporate, reading heavy content, accessible public services",✓ Low,✓ Full,⚠ Moderate (renders),⚠ Poor (thin lines),◐ Medium,✗ Low,"React 9/10, Canvas 10/10",2010s Sci-Fi,High
53
- 52,Pixel Art,General,"Retro, 8-bit, 16-bit, gaming, blocky, nostalgic, pixelated, arcade","Primary colors (NES Palette), brights, limited palette","Black outlines, shading via dithering or block colors","Frame-by-frame sprite animation, blinking cursor, instant transitions, marquee text","Indie games, retro tools, creative portfolios, nostalgia marketing, Web3/NFT","Professional corporate, modern SaaS, high-res photography sites",✓ Full,✓ Full,⚡ Excellent,✓ Good (if contrast ok),✓ High,◐ Medium,"CSS (box-shadow) 8/10, Canvas 10/10",1980s Arcade,Medium
54
- 53,Bento Grids,General,"Apple-style, modular, cards, organized, clean, hierarchy, grid, rounded, soft","Off-white #F5F5F7, Clean White #FFFFFF, Text #1D1D1F","Subtle accents, soft shadows, blurred backdrops","Hover scale (1.02), soft shadow expansion, smooth layout shifts, content reveal","Product features, dashboards, personal sites, marketing summaries, galleries","Long-form reading, data tables, complex forms",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AA,✓ High,✓ High,"CSS Grid 10/10, Tailwind 10/10",2020s Apple/Linear,Low
55
- 54,Neubrutalism,General,"Bold, ugly-cute, raw, high contrast, flat, hard shadows, distinct, playful, loud","Pop Yellow #FFDE59, Bright Red #FF5757, Black #000000","Lavender #CBA6F7, Mint #76E0C2","Hard hover shifts (4px), marquee scrolling, jitter animations, bold borders","Design tools, creative agencies, Gen Z brands, personal blogs, gumroad-style","Banking, legal, healthcare, serious enterprise, elderly users",✓ Full,✓ Full,⚡ Excellent,✓ WCAG AAA,✓ High,✓ High,"Tailwind 10/10, Plain CSS 10/10",2020s Modern Retro,Low
56
- 55,Spatial UI (VisionOS),General,"Glass, depth, immersion, spatial, translucent, gaze, gesture, apple, vision-pro","Frosted Glass #FFFFFF (15-30% opacity), System White","Vibrant system colors for active states, deep shadows for depth","Parallax depth, dynamic lighting response, gaze-hover effects, smooth scale on focus","Spatial computing apps, VR/AR interfaces, immersive media, futuristic dashboards","Text-heavy documents, high-contrast requirements, non-3D capable devices",✓ Full,✓ Full,⚠ Moderate (blur cost),⚠ Contrast risks,✓ High (if adapted),✓ High,"SwiftUI, React (Three.js/Fiber)",2024 Spatial Era,High
57
- 56,E-Ink / Paper,General,"Paper-like, matte, high contrast, texture, reading, calm, slow tech, monochrome","Off-White #FDFBF7, Paper White #F5F5F5, Ink Black #1A1A1A","Pencil Grey #4A4A4A, Highlighter Yellow #FFFF00 (accent)","No motion blur, distinct page turns, grain/noise texture, sharp transitions (no fade)","Reading apps, digital newspapers, minimal journals, distraction-free writing, slow-living brands","Gaming, video platforms, high-energy marketing, dark mode dependent apps",✓ Full,✗ Low (inverted only),⚡ Excellent,✓ WCAG AAA,✓ High,✓ Medium,"Tailwind 10/10, CSS 10/10",2020s Digital Well-being,Low
58
- 57,Gen Z Chaos / Maximalism,General,"Chaos, clutter, stickers, raw, collage, mixed media, loud, internet culture, ironic","Clashing Brights: #FF00FF, #00FF00, #FFFF00, #0000FF","Gradients, rainbow, glitch, noise, heavily saturated mix","Marquee scrolls, jitter, sticker layering, GIF overload, random placement, drag-and-drop","Gen Z lifestyle brands, music artists, creative portfolios, viral marketing, fashion","Corporate, government, healthcare, banking, serious tools",✓ Full,✓ Full,⚠ Poor (heavy assets),❌ Poor,◐ Medium,✓ High (Viral),CSS-in-JS 8/10,2023+ Internet Core,High
59
- 58,Biomimetic / Organic 2.0,General,"Nature-inspired, cellular, fluid, breathing, generative, algorithms, life-like","Cellular Pink #FF9999, Chlorophyll Green #00FF41, Bioluminescent Blue","Deep Ocean #001E3C, Coral #FF7F50, Organic gradients","Breathing animations, fluid morphing, generative growth, physics-based movement","Sustainability tech, biotech, advanced health, meditation, generative art platforms","Standard SaaS, data grids, strict corporate, accounting",✓ Full,✓ Full,⚠ Moderate,✓ Good,✓ Good,✓ High,"Canvas 10/10, WebGL 10/10",2024+ Generative,High
@@ -1,58 +0,0 @@
1
- STT,Font Pairing Name,Category,Heading Font,Body Font,Mood/Style Keywords,Best For,Google Fonts URL,CSS Import,Tailwind Config,Notes
2
- 1,Classic Elegant,"Serif + Sans",Playfair Display,Inter,"elegant, luxury, sophisticated, timeless, premium, editorial","Luxury brands, fashion, spa, beauty, editorial, magazines, high-end e-commerce","https://fonts.google.com/share?selection.family=Inter:wght@300;400;500;600;700|Playfair+Display:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');","fontFamily: { serif: ['Playfair Display', 'serif'], sans: ['Inter', 'sans-serif'] }","High contrast between elegant heading and clean body. Perfect for luxury/premium."
3
- 2,Modern Professional,"Sans + Sans",Poppins,Open Sans,"modern, professional, clean, corporate, friendly, approachable","SaaS, corporate sites, business apps, startups, professional services","https://fonts.google.com/share?selection.family=Open+Sans:wght@300;400;500;600;700|Poppins:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');","fontFamily: { heading: ['Poppins', 'sans-serif'], body: ['Open Sans', 'sans-serif'] }","Geometric Poppins for headings, humanist Open Sans for readability."
4
- 3,Tech Startup,"Sans + Sans",Space Grotesk,DM Sans,"tech, startup, modern, innovative, bold, futuristic","Tech companies, startups, SaaS, developer tools, AI products","https://fonts.google.com/share?selection.family=DM+Sans:wght@400;500;700|Space+Grotesk:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');","fontFamily: { heading: ['Space Grotesk', 'sans-serif'], body: ['DM Sans', 'sans-serif'] }","Space Grotesk has unique character, DM Sans is highly readable."
5
- 4,Editorial Classic,"Serif + Serif",Cormorant Garamond,Libre Baskerville,"editorial, classic, literary, traditional, refined, bookish","Publishing, blogs, news sites, literary magazines, book covers","https://fonts.google.com/share?selection.family=Cormorant+Garamond:wght@400;500;600;700|Libre+Baskerville:wght@400;700","@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');","fontFamily: { heading: ['Cormorant Garamond', 'serif'], body: ['Libre Baskerville', 'serif'] }","All-serif pairing for traditional editorial feel."
6
- 5,Minimal Swiss,"Sans + Sans",Inter,Inter,"minimal, clean, swiss, functional, neutral, professional","Dashboards, admin panels, documentation, enterprise apps, design systems","https://fonts.google.com/share?selection.family=Inter:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');","fontFamily: { sans: ['Inter', 'sans-serif'] }","Single font family with weight variations. Ultimate simplicity."
7
- 6,Playful Creative,"Display + Sans",Fredoka,Nunito,"playful, friendly, fun, creative, warm, approachable","Children's apps, educational, gaming, creative tools, entertainment","https://fonts.google.com/share?selection.family=Fredoka:wght@400;500;600;700|Nunito:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');","fontFamily: { heading: ['Fredoka', 'sans-serif'], body: ['Nunito', 'sans-serif'] }","Rounded, friendly fonts perfect for playful UIs."
8
- 7,Bold Statement,"Display + Sans",Bebas Neue,Source Sans 3,"bold, impactful, strong, dramatic, modern, headlines","Marketing sites, portfolios, agencies, event pages, sports","https://fonts.google.com/share?selection.family=Bebas+Neue|Source+Sans+3:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');","fontFamily: { display: ['Bebas Neue', 'sans-serif'], body: ['Source Sans 3', 'sans-serif'] }","Bebas Neue for large headlines only. All-caps display font."
9
- 8,Wellness Calm,"Serif + Sans",Lora,Raleway,"calm, wellness, health, relaxing, natural, organic","Health apps, wellness, spa, meditation, yoga, organic brands","https://fonts.google.com/share?selection.family=Lora:wght@400;500;600;700|Raleway:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');","fontFamily: { serif: ['Lora', 'serif'], sans: ['Raleway', 'sans-serif'] }","Lora's organic curves with Raleway's elegant simplicity."
10
- 9,Developer Mono,"Mono + Sans",JetBrains Mono,IBM Plex Sans,"code, developer, technical, precise, functional, hacker","Developer tools, documentation, code editors, tech blogs, CLI apps","https://fonts.google.com/share?selection.family=IBM+Plex+Sans:wght@300;400;500;600;700|JetBrains+Mono:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap');","fontFamily: { mono: ['JetBrains Mono', 'monospace'], sans: ['IBM Plex Sans', 'sans-serif'] }","JetBrains for code, IBM Plex for UI. Developer-focused."
11
- 10,Retro Vintage,"Display + Serif",Abril Fatface,Merriweather,"retro, vintage, nostalgic, dramatic, decorative, bold","Vintage brands, breweries, restaurants, creative portfolios, posters","https://fonts.google.com/share?selection.family=Abril+Fatface|Merriweather:wght@300;400;700","@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Merriweather:wght@300;400;700&display=swap');","fontFamily: { display: ['Abril Fatface', 'serif'], body: ['Merriweather', 'serif'] }","Abril Fatface for hero headlines only. High-impact vintage feel."
12
- 11,Geometric Modern,"Sans + Sans",Outfit,Work Sans,"geometric, modern, clean, balanced, contemporary, versatile","General purpose, portfolios, agencies, modern brands, landing pages","https://fonts.google.com/share?selection.family=Outfit:wght@300;400;500;600;700|Work+Sans:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap');","fontFamily: { heading: ['Outfit', 'sans-serif'], body: ['Work Sans', 'sans-serif'] }","Both geometric but Outfit more distinctive for headings."
13
- 12,Luxury Serif,"Serif + Sans",Cormorant,Montserrat,"luxury, high-end, fashion, elegant, refined, premium","Fashion brands, luxury e-commerce, jewelry, high-end services","https://fonts.google.com/share?selection.family=Cormorant:wght@400;500;600;700|Montserrat:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');","fontFamily: { serif: ['Cormorant', 'serif'], sans: ['Montserrat', 'sans-serif'] }","Cormorant's elegance with Montserrat's geometric precision."
14
- 13,Friendly SaaS,"Sans + Sans",Plus Jakarta Sans,Plus Jakarta Sans,"friendly, modern, saas, clean, approachable, professional","SaaS products, web apps, dashboards, B2B, productivity tools","https://fonts.google.com/share?selection.family=Plus+Jakarta+Sans:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');","fontFamily: { sans: ['Plus Jakarta Sans', 'sans-serif'] }","Single versatile font. Modern alternative to Inter."
15
- 14,News Editorial,"Serif + Sans",Newsreader,Roboto,"news, editorial, journalism, trustworthy, readable, informative","News sites, blogs, magazines, journalism, content-heavy sites","https://fonts.google.com/share?selection.family=Newsreader:wght@400;500;600;700|Roboto:wght@300;400;500;700","@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');","fontFamily: { serif: ['Newsreader', 'serif'], sans: ['Roboto', 'sans-serif'] }","Newsreader designed for long-form reading. Roboto for UI."
16
- 15,Handwritten Charm,"Script + Sans",Caveat,Quicksand,"handwritten, personal, friendly, casual, warm, charming","Personal blogs, invitations, creative portfolios, lifestyle brands","https://fonts.google.com/share?selection.family=Caveat:wght@400;500;600;700|Quicksand:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');","fontFamily: { script: ['Caveat', 'cursive'], sans: ['Quicksand', 'sans-serif'] }","Use Caveat sparingly for accents. Quicksand for body."
17
- 16,Corporate Trust,"Sans + Sans",Lexend,Source Sans 3,"corporate, trustworthy, accessible, readable, professional, clean","Enterprise, government, healthcare, finance, accessibility-focused","https://fonts.google.com/share?selection.family=Lexend:wght@300;400;500;600;700|Source+Sans+3:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');","fontFamily: { heading: ['Lexend', 'sans-serif'], body: ['Source Sans 3', 'sans-serif'] }","Lexend designed for readability. Excellent accessibility."
18
- 17,Brutalist Raw,"Mono + Mono",Space Mono,Space Mono,"brutalist, raw, technical, monospace, minimal, stark","Brutalist designs, developer portfolios, experimental, tech art","https://fonts.google.com/share?selection.family=Space+Mono:wght@400;700","@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');","fontFamily: { mono: ['Space Mono', 'monospace'] }","All-mono for raw brutalist aesthetic. Limited weights."
19
- 18,Fashion Forward,"Sans + Sans",Syne,Manrope,"fashion, avant-garde, creative, bold, artistic, edgy","Fashion brands, creative agencies, art galleries, design studios","https://fonts.google.com/share?selection.family=Manrope:wght@300;400;500;600;700|Syne:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700&display=swap');","fontFamily: { heading: ['Syne', 'sans-serif'], body: ['Manrope', 'sans-serif'] }","Syne's unique character for headlines. Manrope for readability."
20
- 19,Soft Rounded,"Sans + Sans",Varela Round,Nunito Sans,"soft, rounded, friendly, approachable, warm, gentle","Children's products, pet apps, friendly brands, wellness, soft UI","https://fonts.google.com/share?selection.family=Nunito+Sans:wght@300;400;500;600;700|Varela+Round","@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700&family=Varela+Round&display=swap');","fontFamily: { heading: ['Varela Round', 'sans-serif'], body: ['Nunito Sans', 'sans-serif'] }","Both rounded and friendly. Perfect for soft UI designs."
21
- 20,Premium Sans,"Sans + Sans",Satoshi,General Sans,"premium, modern, clean, sophisticated, versatile, balanced","Premium brands, modern agencies, SaaS, portfolios, startups","https://fonts.google.com/share?selection.family=DM+Sans:wght@400;500;700","@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');","fontFamily: { sans: ['DM Sans', 'sans-serif'] }","Note: Satoshi/General Sans on Fontshare. DM Sans as Google alternative."
22
- 21,Vietnamese Friendly,"Sans + Sans",Be Vietnam Pro,Noto Sans,"vietnamese, international, readable, clean, multilingual, accessible","Vietnamese sites, multilingual apps, international products","https://fonts.google.com/share?selection.family=Be+Vietnam+Pro:wght@300;400;500;600;700|Noto+Sans:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;600;700&display=swap');","fontFamily: { sans: ['Be Vietnam Pro', 'Noto Sans', 'sans-serif'] }","Be Vietnam Pro excellent Vietnamese support. Noto as fallback."
23
- 22,Japanese Elegant,"Serif + Sans",Noto Serif JP,Noto Sans JP,"japanese, elegant, traditional, modern, multilingual, readable","Japanese sites, Japanese restaurants, cultural sites, anime/manga","https://fonts.google.com/share?selection.family=Noto+Sans+JP:wght@300;400;500;700|Noto+Serif+JP:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap');","fontFamily: { serif: ['Noto Serif JP', 'serif'], sans: ['Noto Sans JP', 'sans-serif'] }","Noto fonts excellent Japanese support. Traditional + modern feel."
24
- 23,Korean Modern,"Sans + Sans",Noto Sans KR,Noto Sans KR,"korean, modern, clean, professional, multilingual, readable","Korean sites, K-beauty, K-pop, Korean businesses, multilingual","https://fonts.google.com/share?selection.family=Noto+Sans+KR:wght@300;400;500;700","@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');","fontFamily: { sans: ['Noto Sans KR', 'sans-serif'] }","Clean Korean typography. Single font with weight variations."
25
- 24,Chinese Traditional,"Serif + Sans",Noto Serif TC,Noto Sans TC,"chinese, traditional, elegant, cultural, multilingual, readable","Traditional Chinese sites, cultural content, Taiwan/Hong Kong markets","https://fonts.google.com/share?selection.family=Noto+Sans+TC:wght@300;400;500;700|Noto+Serif+TC:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Noto+Serif+TC:wght@400;500;600;700&display=swap');","fontFamily: { serif: ['Noto Serif TC', 'serif'], sans: ['Noto Sans TC', 'sans-serif'] }","Traditional Chinese character support. Elegant pairing."
26
- 25,Chinese Simplified,"Sans + Sans",Noto Sans SC,Noto Sans SC,"chinese, simplified, modern, professional, multilingual, readable","Simplified Chinese sites, mainland China market, business apps","https://fonts.google.com/share?selection.family=Noto+Sans+SC:wght@300;400;500;700","@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');","fontFamily: { sans: ['Noto Sans SC', 'sans-serif'] }","Simplified Chinese support. Clean modern look."
27
- 26,Arabic Elegant,"Serif + Sans",Noto Naskh Arabic,Noto Sans Arabic,"arabic, elegant, traditional, cultural, RTL, readable","Arabic sites, Middle East market, Islamic content, bilingual sites","https://fonts.google.com/share?selection.family=Noto+Naskh+Arabic:wght@400;500;600;700|Noto+Sans+Arabic:wght@300;400;500;700","@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600;700&family=Noto+Sans+Arabic:wght@300;400;500;700&display=swap');","fontFamily: { serif: ['Noto Naskh Arabic', 'serif'], sans: ['Noto Sans Arabic', 'sans-serif'] }","RTL support. Naskh for traditional, Sans for modern Arabic."
28
- 27,Thai Modern,"Sans + Sans",Noto Sans Thai,Noto Sans Thai,"thai, modern, readable, clean, multilingual, accessible","Thai sites, Southeast Asia, tourism, Thai restaurants","https://fonts.google.com/share?selection.family=Noto+Sans+Thai:wght@300;400;500;700","@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;700&display=swap');","fontFamily: { sans: ['Noto Sans Thai', 'sans-serif'] }","Clean Thai typography. Excellent readability."
29
- 28,Hebrew Modern,"Sans + Sans",Noto Sans Hebrew,Noto Sans Hebrew,"hebrew, modern, RTL, clean, professional, readable","Hebrew sites, Israeli market, Jewish content, bilingual sites","https://fonts.google.com/share?selection.family=Noto+Sans+Hebrew:wght@300;400;500;700","@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@300;400;500;700&display=swap');","fontFamily: { sans: ['Noto Sans Hebrew', 'sans-serif'] }","RTL support. Clean modern Hebrew typography."
30
- 29,Legal Professional,"Serif + Sans",EB Garamond,Lato,"legal, professional, traditional, trustworthy, formal, authoritative","Law firms, legal services, contracts, formal documents, government","https://fonts.google.com/share?selection.family=EB+Garamond:wght@400;500;600;700|Lato:wght@300;400;700","@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');","fontFamily: { serif: ['EB Garamond', 'serif'], sans: ['Lato', 'sans-serif'] }","EB Garamond for authority. Lato for clean body text."
31
- 30,Medical Clean,"Sans + Sans",Figtree,Noto Sans,"medical, clean, accessible, professional, healthcare, trustworthy","Healthcare, medical clinics, pharma, health apps, accessibility","https://fonts.google.com/share?selection.family=Figtree:wght@300;400;500;600;700|Noto+Sans:wght@300;400;500;700","@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;700&display=swap');","fontFamily: { heading: ['Figtree', 'sans-serif'], body: ['Noto Sans', 'sans-serif'] }","Clean, accessible fonts for medical contexts."
32
- 31,Financial Trust,"Sans + Sans",IBM Plex Sans,IBM Plex Sans,"financial, trustworthy, professional, corporate, banking, serious","Banks, finance, insurance, investment, fintech, enterprise","https://fonts.google.com/share?selection.family=IBM+Plex+Sans:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');","fontFamily: { sans: ['IBM Plex Sans', 'sans-serif'] }","IBM Plex conveys trust and professionalism. Excellent for data."
33
- 32,Real Estate Luxury,"Serif + Sans",Cinzel,Josefin Sans,"real estate, luxury, elegant, sophisticated, property, premium","Real estate, luxury properties, architecture, interior design","https://fonts.google.com/share?selection.family=Cinzel:wght@400;500;600;700|Josefin+Sans:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Josefin+Sans:wght@300;400;500;600;700&display=swap');","fontFamily: { serif: ['Cinzel', 'serif'], sans: ['Josefin Sans', 'sans-serif'] }","Cinzel's elegance for headlines. Josefin for modern body."
34
- 33,Restaurant Menu,"Serif + Sans",Playfair Display SC,Karla,"restaurant, menu, culinary, elegant, foodie, hospitality","Restaurants, cafes, food blogs, culinary, hospitality","https://fonts.google.com/share?selection.family=Karla:wght@300;400;500;600;700|Playfair+Display+SC:wght@400;700","@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&family=Playfair+Display+SC:wght@400;700&display=swap');","fontFamily: { display: ['Playfair Display SC', 'serif'], sans: ['Karla', 'sans-serif'] }","Small caps Playfair for menu headers. Karla for descriptions."
35
- 34,Art Deco,"Display + Sans",Poiret One,Didact Gothic,"art deco, vintage, 1920s, elegant, decorative, gatsby","Vintage events, art deco themes, luxury hotels, classic cocktails","https://fonts.google.com/share?selection.family=Didact+Gothic|Poiret+One","@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Poiret+One&display=swap');","fontFamily: { display: ['Poiret One', 'sans-serif'], sans: ['Didact Gothic', 'sans-serif'] }","Poiret One for art deco headlines only. Didact for body."
36
- 35,Magazine Style,"Serif + Sans",Libre Bodoni,Public Sans,"magazine, editorial, publishing, refined, journalism, print","Magazines, online publications, editorial content, journalism","https://fonts.google.com/share?selection.family=Libre+Bodoni:wght@400;500;600;700|Public+Sans:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:wght@400;500;600;700&family=Public+Sans:wght@300;400;500;600;700&display=swap');","fontFamily: { serif: ['Libre Bodoni', 'serif'], sans: ['Public Sans', 'sans-serif'] }","Bodoni's editorial elegance. Public Sans for clean UI."
37
- 36,Crypto/Web3,"Sans + Sans",Orbitron,Exo 2,"crypto, web3, futuristic, tech, blockchain, digital","Crypto platforms, NFT, blockchain, web3, futuristic tech","https://fonts.google.com/share?selection.family=Exo+2:wght@300;400;500;600;700|Orbitron:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700&display=swap');","fontFamily: { display: ['Orbitron', 'sans-serif'], body: ['Exo 2', 'sans-serif'] }","Orbitron for futuristic headers. Exo 2 for readable body."
38
- 37,Gaming Bold,"Display + Sans",Russo One,Chakra Petch,"gaming, bold, action, esports, competitive, energetic","Gaming, esports, action games, competitive sports, entertainment","https://fonts.google.com/share?selection.family=Chakra+Petch:wght@300;400;500;600;700|Russo+One","@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Russo+One&display=swap');","fontFamily: { display: ['Russo One', 'sans-serif'], body: ['Chakra Petch', 'sans-serif'] }","Russo One for impact. Chakra Petch for techy body text."
39
- 38,Indie/Craft,"Display + Sans",Amatic SC,Cabin,"indie, craft, handmade, artisan, organic, creative","Craft brands, indie products, artisan, handmade, organic products","https://fonts.google.com/share?selection.family=Amatic+SC:wght@400;700|Cabin:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Cabin:wght@400;500;600;700&display=swap');","fontFamily: { display: ['Amatic SC', 'sans-serif'], sans: ['Cabin', 'sans-serif'] }","Amatic for handwritten feel. Cabin for readable body."
40
- 39,Startup Bold,"Sans + Sans",Clash Display,Satoshi,"startup, bold, modern, innovative, confident, dynamic","Startups, pitch decks, product launches, bold brands","https://fonts.google.com/share?selection.family=Outfit:wght@400;500;600;700|Rubik:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Rubik:wght@300;400;500;600;700&display=swap');","fontFamily: { heading: ['Outfit', 'sans-serif'], body: ['Rubik', 'sans-serif'] }","Note: Clash Display on Fontshare. Outfit as Google alternative."
41
- 40,E-commerce Clean,"Sans + Sans",Rubik,Nunito Sans,"ecommerce, clean, shopping, product, retail, conversion","E-commerce, online stores, product pages, retail, shopping","https://fonts.google.com/share?selection.family=Nunito+Sans:wght@300;400;500;600;700|Rubik:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;600;700&display=swap');","fontFamily: { heading: ['Rubik', 'sans-serif'], body: ['Nunito Sans', 'sans-serif'] }","Clean readable fonts perfect for product descriptions."
42
- 41,Academic/Research,"Serif + Sans",Crimson Pro,Atkinson Hyperlegible,"academic, research, scholarly, accessible, readable, educational","Universities, research papers, academic journals, educational","https://fonts.google.com/share?selection.family=Atkinson+Hyperlegible:wght@400;700|Crimson+Pro:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&family=Crimson+Pro:wght@400;500;600;700&display=swap');","fontFamily: { serif: ['Crimson Pro', 'serif'], sans: ['Atkinson Hyperlegible', 'sans-serif'] }","Crimson for scholarly headlines. Atkinson for accessibility."
43
- 42,Dashboard Data,"Mono + Sans",Fira Code,Fira Sans,"dashboard, data, analytics, code, technical, precise","Dashboards, analytics, data visualization, admin panels","https://fonts.google.com/share?selection.family=Fira+Code:wght@400;500;600;700|Fira+Sans:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Fira+Sans:wght@300;400;500;600;700&display=swap');","fontFamily: { mono: ['Fira Code', 'monospace'], sans: ['Fira Sans', 'sans-serif'] }","Fira family cohesion. Code for data, Sans for labels."
44
- 43,Music/Entertainment,"Display + Sans",Righteous,Poppins,"music, entertainment, fun, energetic, bold, performance","Music platforms, entertainment, events, festivals, performers","https://fonts.google.com/share?selection.family=Poppins:wght@300;400;500;600;700|Righteous","@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Righteous&display=swap');","fontFamily: { display: ['Righteous', 'sans-serif'], sans: ['Poppins', 'sans-serif'] }","Righteous for bold entertainment headers. Poppins for body."
45
- 44,Minimalist Portfolio,"Sans + Sans",Archivo,Space Grotesk,"minimal, portfolio, designer, creative, clean, artistic","Design portfolios, creative professionals, minimalist brands","https://fonts.google.com/share?selection.family=Archivo:wght@300;400;500;600;700|Space+Grotesk:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');","fontFamily: { heading: ['Space Grotesk', 'sans-serif'], body: ['Archivo', 'sans-serif'] }","Space Grotesk for distinctive headers. Archivo for clean body."
46
- 45,Kids/Education,"Display + Sans",Baloo 2,Comic Neue,"kids, education, playful, friendly, colorful, learning","Children's apps, educational games, kid-friendly content","https://fonts.google.com/share?selection.family=Baloo+2:wght@400;500;600;700|Comic+Neue:wght@300;400;700","@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700&family=Comic+Neue:wght@300;400;700&display=swap');","fontFamily: { display: ['Baloo 2', 'sans-serif'], sans: ['Comic Neue', 'sans-serif'] }","Fun, playful fonts for children. Comic Neue is readable comic style."
47
- 46,Wedding/Romance,"Script + Serif",Great Vibes,Cormorant Infant,"wedding, romance, elegant, script, invitation, feminine","Wedding sites, invitations, romantic brands, bridal","https://fonts.google.com/share?selection.family=Cormorant+Infant:wght@300;400;500;600;700|Great+Vibes","@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;400;500;600;700&family=Great+Vibes&display=swap');","fontFamily: { script: ['Great Vibes', 'cursive'], serif: ['Cormorant Infant', 'serif'] }","Great Vibes for elegant accents. Cormorant for readable text."
48
- 47,Science/Tech,"Sans + Sans",Exo,Roboto Mono,"science, technology, research, data, futuristic, precise","Science, research, tech documentation, data-heavy sites","https://fonts.google.com/share?selection.family=Exo:wght@300;400;500;600;700|Roboto+Mono:wght@300;400;500;700","@import url('https://fonts.googleapis.com/css2?family=Exo:wght@300;400;500;600;700&family=Roboto+Mono:wght@300;400;500;700&display=swap');","fontFamily: { sans: ['Exo', 'sans-serif'], mono: ['Roboto Mono', 'monospace'] }","Exo for modern tech feel. Roboto Mono for code/data."
49
- 48,Accessibility First,"Sans + Sans",Atkinson Hyperlegible,Atkinson Hyperlegible,"accessible, readable, inclusive, WCAG, dyslexia-friendly, clear","Accessibility-critical sites, government, healthcare, inclusive design","https://fonts.google.com/share?selection.family=Atkinson+Hyperlegible:wght@400;700","@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@400;700&display=swap');","fontFamily: { sans: ['Atkinson Hyperlegible', 'sans-serif'] }","Designed for maximum legibility. Excellent for accessibility."
50
- 49,Sports/Fitness,"Sans + Sans",Barlow Condensed,Barlow,"sports, fitness, athletic, energetic, condensed, action","Sports, fitness, gyms, athletic brands, competition","https://fonts.google.com/share?selection.family=Barlow+Condensed:wght@400;500;600;700|Barlow:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Barlow:wght@300;400;500;600;700&display=swap');","fontFamily: { display: ['Barlow Condensed', 'sans-serif'], body: ['Barlow', 'sans-serif'] }","Condensed for impact headlines. Regular Barlow for body."
51
- 50,Luxury Minimalist,"Serif + Sans",Bodoni Moda,Jost,"luxury, minimalist, high-end, sophisticated, refined, premium","Luxury minimalist brands, high-end fashion, premium products","https://fonts.google.com/share?selection.family=Bodoni+Moda:wght@400;500;600;700|Jost:wght@300;400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');","fontFamily: { serif: ['Bodoni Moda', 'serif'], sans: ['Jost', 'sans-serif'] }","Bodoni's high contrast elegance. Jost for geometric body."
52
- 51,Tech/HUD Mono,"Mono + Mono",Share Tech Mono,Fira Code,"tech, futuristic, hud, sci-fi, data, monospaced, precise","Sci-fi interfaces, developer tools, cybersecurity, dashboards","https://fonts.google.com/share?selection.family=Fira+Code:wght@300;400;500;600;700|Share+Tech+Mono","@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');","fontFamily: { hud: ['Share Tech Mono', 'monospace'], code: ['Fira Code', 'monospace'] }","Share Tech Mono has that classic sci-fi look."
53
- 52,Pixel Retro,"Display + Sans",Press Start 2P,VT323,"pixel, retro, gaming, 8-bit, nostalgic, arcade","Pixel art games, retro websites, creative portfolios","https://fonts.google.com/share?selection.family=Press+Start+2P|VT323","@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');","fontFamily: { pixel: ['Press Start 2P', 'cursive'], terminal: ['VT323', 'monospace'] }","Press Start 2P is very wide/large. VT323 is better for body text."
54
- 53,Neubrutalist Bold,"Display + Sans",Lexend Mega,Public Sans,"bold, neubrutalist, loud, strong, geometric, quirky","Neubrutalist designs, Gen Z brands, bold marketing","https://fonts.google.com/share?selection.family=Lexend+Mega:wght@100..900|Public+Sans:wght@100..900","@import url('https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@100..900&family=Public+Sans:wght@100..900&display=swap');","fontFamily: { mega: ['Lexend Mega', 'sans-serif'], body: ['Public Sans', 'sans-serif'] }","Lexend Mega has distinct character and variable weight."
55
- 54,Academic/Archival,"Serif + Serif",EB Garamond,Crimson Text,"academic, old-school, university, research, serious, traditional","University sites, archives, research papers, history","https://fonts.google.com/share?selection.family=Crimson+Text:wght@400;600;700|EB+Garamond:wght@400;500;600;700;800","@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=EB+Garamond:wght@400;500;600;700;800&display=swap');","fontFamily: { classic: ['EB Garamond', 'serif'], text: ['Crimson Text', 'serif'] }","Classic academic aesthetic. Very legible."
56
- 55,Spatial Clear,"Sans + Sans",Inter,Inter,"spatial, legible, glass, system, clean, neutral","Spatial computing, AR/VR, glassmorphism interfaces","https://fonts.google.com/share?selection.family=Inter:wght@300;400;500;600","@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');","fontFamily: { sans: ['Inter', 'sans-serif'] }","Optimized for readability on dynamic backgrounds."
57
- 56,Kinetic Motion,"Display + Mono",Syncopate,Space Mono,"kinetic, motion, futuristic, speed, wide, tech","Music festivals, automotive, high-energy brands","https://fonts.google.com/share?selection.family=Space+Mono:wght@400;700|Syncopate:wght@400;700","@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syncopate:wght@400;700&display=swap');","fontFamily: { display: ['Syncopate', 'sans-serif'], mono: ['Space Mono', 'monospace'] }","Syncopate's wide stance works well with motion effects."
58
- 57,Gen Z Brutal,"Display + Sans",Anton,Epilogue,"brutal, loud, shouty, meme, internet, bold","Gen Z marketing, streetwear, viral campaigns","https://fonts.google.com/share?selection.family=Anton|Epilogue:wght@400;500;600;700","@import url('https://fonts.googleapis.com/css2?family=Anton&family=Epilogue:wght@400;500;600;700&display=swap');","fontFamily: { display: ['Anton', 'sans-serif'], body: ['Epilogue', 'sans-serif'] }","Anton is impactful and condensed. Good for stickers/badges."
@@ -1,100 +0,0 @@
1
- No,Category,Issue,Platform,Description,Do,Don't,Code Example Good,Code Example Bad,Severity
2
- 1,Navigation,Smooth Scroll,Web,Anchor links should scroll smoothly to target section,Use scroll-behavior: smooth on html element,Jump directly without transition,html { scroll-behavior: smooth; },<a href='#section'> without CSS,High
3
- 2,Navigation,Sticky Navigation,Web,Fixed nav should not obscure content,Add padding-top to body equal to nav height,Let nav overlap first section content,pt-20 (if nav is h-20),No padding compensation,Medium
4
- 3,Navigation,Active State,All,Current page/section should be visually indicated,Highlight active nav item with color/underline,No visual feedback on current location,text-primary border-b-2,All links same style,Medium
5
- 4,Navigation,Back Button,Mobile,Users expect back to work predictably,Preserve navigation history properly,Break browser/app back button behavior,history.pushState(),location.replace(),High
6
- 5,Navigation,Deep Linking,All,URLs should reflect current state for sharing,Update URL on state/view changes,Static URLs for dynamic content,Use query params or hash,Single URL for all states,Medium
7
- 6,Navigation,Breadcrumbs,Web,Show user location in site hierarchy,Use for sites with 3+ levels of depth,Use for flat single-level sites,Home > Category > Product,Only on deep nested pages,Low
8
- 7,Animation,Excessive Motion,All,Too many animations cause distraction and motion sickness,Animate 1-2 key elements per view maximum,Animate everything that moves,Single hero animation,animate-bounce on 5+ elements,High
9
- 8,Animation,Duration Timing,All,Animations should feel responsive not sluggish,Use 150-300ms for micro-interactions,Use animations longer than 500ms for UI,transition-all duration-200,duration-1000,Medium
10
- 9,Animation,Reduced Motion,All,Respect user's motion preferences,Check prefers-reduced-motion media query,Ignore accessibility motion settings,@media (prefers-reduced-motion: reduce),No motion query check,High
11
- 10,Animation,Loading States,All,Show feedback during async operations,Use skeleton screens or spinners,Leave UI frozen with no feedback,animate-pulse skeleton,Blank screen while loading,High
12
- 11,Animation,Hover vs Tap,All,Hover effects don't work on touch devices,Use click/tap for primary interactions,Rely only on hover for important actions,onClick handler,onMouseEnter only,High
13
- 12,Animation,Continuous Animation,All,Infinite animations are distracting,Use for loading indicators only,Use for decorative elements,animate-spin on loader,animate-bounce on icons,Medium
14
- 13,Animation,Transform Performance,Web,Some CSS properties trigger expensive repaints,Use transform and opacity for animations,Animate width/height/top/left properties,transform: translateY(),top: 10px animation,Medium
15
- 14,Animation,Easing Functions,All,Linear motion feels robotic,Use ease-out for entering ease-in for exiting,Use linear for UI transitions,ease-out,linear,Low
16
- 15,Layout,Z-Index Management,Web,Stacking context conflicts cause hidden elements,Define z-index scale system (10 20 30 50),Use arbitrary large z-index values,z-10 z-20 z-50,z-[9999],High
17
- 16,Layout,Overflow Hidden,Web,Hidden overflow can clip important content,Test all content fits within containers,Blindly apply overflow-hidden,overflow-auto with scroll,overflow-hidden truncating content,Medium
18
- 17,Layout,Fixed Positioning,Web,Fixed elements can overlap or be inaccessible,Account for safe areas and other fixed elements,Stack multiple fixed elements carelessly,Fixed nav + fixed bottom with gap,Multiple overlapping fixed elements,Medium
19
- 18,Layout,Stacking Context,Web,New stacking contexts reset z-index,Understand what creates new stacking context,Expect z-index to work across contexts,Parent with z-index isolates children,z-index: 9999 not working,Medium
20
- 19,Layout,Content Jumping,Web,Layout shift when content loads is jarring,Reserve space for async content,Let images/content push layout around,aspect-ratio or fixed height,No dimensions on images,High
21
- 20,Layout,Viewport Units,Web,100vh can be problematic on mobile browsers,Use dvh or account for mobile browser chrome,Use 100vh for full-screen mobile layouts,min-h-dvh or min-h-screen,h-screen on mobile,Medium
22
- 21,Layout,Container Width,Web,Content too wide is hard to read,Limit max-width for text content (65-75ch),Let text span full viewport width,max-w-prose or max-w-3xl,Full width paragraphs,Medium
23
- 22,Touch,Touch Target Size,Mobile,Small buttons are hard to tap accurately,Minimum 44x44px touch targets,Tiny clickable areas,min-h-[44px] min-w-[44px],w-6 h-6 buttons,High
24
- 23,Touch,Touch Spacing,Mobile,Adjacent touch targets need adequate spacing,Minimum 8px gap between touch targets,Tightly packed clickable elements,gap-2 between buttons,gap-0 or gap-1,Medium
25
- 24,Touch,Gesture Conflicts,Mobile,Custom gestures can conflict with system,Avoid horizontal swipe on main content,Override system gestures,Vertical scroll primary,Horizontal swipe carousel only,Medium
26
- 25,Touch,Tap Delay,Mobile,300ms tap delay feels laggy,Use touch-action CSS or fastclick,Default mobile tap handling,touch-action: manipulation,No touch optimization,Medium
27
- 26,Touch,Pull to Refresh,Mobile,Accidental refresh is frustrating,Disable where not needed,Enable by default everywhere,overscroll-behavior: contain,Default overscroll,Low
28
- 27,Touch,Haptic Feedback,Mobile,Tactile feedback improves interaction feel,Use for confirmations and important actions,Overuse vibration feedback,navigator.vibrate(10),Vibrate on every tap,Low
29
- 28,Interaction,Focus States,All,Keyboard users need visible focus indicators,Use visible focus rings on interactive elements,Remove focus outline without replacement,focus:ring-2 focus:ring-blue-500,outline-none without alternative,High
30
- 29,Interaction,Hover States,Web,Visual feedback on interactive elements,Change cursor and add subtle visual change,No hover feedback on clickable elements,hover:bg-gray-100 cursor-pointer,No hover style,Medium
31
- 30,Interaction,Active States,All,Show immediate feedback on press/click,Add pressed/active state visual change,No feedback during interaction,active:scale-95,No active state,Medium
32
- 31,Interaction,Disabled States,All,Clearly indicate non-interactive elements,Reduce opacity and change cursor,Confuse disabled with normal state,opacity-50 cursor-not-allowed,Same style as enabled,Medium
33
- 32,Interaction,Loading Buttons,All,Prevent double submission during async actions,Disable button and show loading state,Allow multiple clicks during processing,disabled={loading} spinner,Button clickable while loading,High
34
- 33,Interaction,Error Feedback,All,Users need to know when something fails,Show clear error messages near problem,Silent failures with no feedback,Red border + error message,No indication of error,High
35
- 34,Interaction,Success Feedback,All,Confirm successful actions to users,Show success message or visual change,No confirmation of completed action,Toast notification or checkmark,Action completes silently,Medium
36
- 35,Interaction,Confirmation Dialogs,All,Prevent accidental destructive actions,Confirm before delete/irreversible actions,Delete without confirmation,Are you sure modal,Direct delete on click,High
37
- 36,Accessibility,Color Contrast,All,Text must be readable against background,Minimum 4.5:1 ratio for normal text,Low contrast text,#333 on white (7:1),#999 on white (2.8:1),High
38
- 37,Accessibility,Color Only,All,Don't convey information by color alone,Use icons/text in addition to color,Red/green only for error/success,Red text + error icon,Red border only for error,High
39
- 38,Accessibility,Alt Text,All,Images need text alternatives,Descriptive alt text for meaningful images,Empty or missing alt attributes,alt='Dog playing in park',alt='' for content images,High
40
- 39,Accessibility,Heading Hierarchy,Web,Screen readers use headings for navigation,Use sequential heading levels h1-h6,Skip heading levels or misuse for styling,h1 then h2 then h3,h1 then h4,Medium
41
- 40,Accessibility,ARIA Labels,All,Interactive elements need accessible names,Add aria-label for icon-only buttons,Icon buttons without labels,aria-label='Close menu',<button><Icon/></button>,High
42
- 41,Accessibility,Keyboard Navigation,Web,All functionality accessible via keyboard,Tab order matches visual order,Keyboard traps or illogical tab order,tabIndex for custom order,Unreachable elements,High
43
- 42,Accessibility,Screen Reader,All,Content should make sense when read aloud,Use semantic HTML and ARIA properly,Div soup with no semantics,<nav> <main> <article>,<div> for everything,Medium
44
- 43,Accessibility,Form Labels,All,Inputs must have associated labels,Use label with for attribute or wrap input,Placeholder-only inputs,<label for='email'>,placeholder='Email' only,High
45
- 44,Accessibility,Error Messages,All,Error messages must be announced,Use aria-live or role=alert for errors,Visual-only error indication,role='alert',Red border only,High
46
- 45,Accessibility,Skip Links,Web,Allow keyboard users to skip navigation,Provide skip to main content link,No skip link on nav-heavy pages,Skip to main content link,100 tabs to reach content,Medium
47
- 46,Performance,Image Optimization,All,Large images slow page load,Use appropriate size and format (WebP),Unoptimized full-size images,srcset with multiple sizes,4000px image for 400px display,High
48
- 47,Performance,Lazy Loading,All,Load content as needed,Lazy load below-fold images and content,Load everything upfront,loading='lazy',All images eager load,Medium
49
- 48,Performance,Code Splitting,Web,Large bundles slow initial load,Split code by route/feature,Single large bundle,dynamic import(),All code in main bundle,Medium
50
- 49,Performance,Caching,Web,Repeat visits should be fast,Set appropriate cache headers,No caching strategy,Cache-Control headers,Every request hits server,Medium
51
- 50,Performance,Font Loading,Web,Web fonts can block rendering,Use font-display swap or optional,Invisible text during font load,font-display: swap,FOIT (Flash of Invisible Text),Medium
52
- 51,Performance,Third Party Scripts,Web,External scripts can block rendering,Load non-critical scripts async/defer,Synchronous third-party scripts,async or defer attribute,<script src='...'> in head,Medium
53
- 52,Performance,Bundle Size,Web,Large JavaScript slows interaction,Monitor and minimize bundle size,Ignore bundle size growth,Bundle analyzer,No size monitoring,Medium
54
- 53,Performance,Render Blocking,Web,CSS/JS can block first paint,Inline critical CSS defer non-critical,Large blocking CSS files,Critical CSS inline,All CSS in head,Medium
55
- 54,Forms,Input Labels,All,Every input needs a visible label,Always show label above or beside input,Placeholder as only label,<label>Email</label><input>,placeholder='Email' only,High
56
- 55,Forms,Error Placement,All,Errors should appear near the problem,Show error below related input,Single error message at top of form,Error under each field,All errors at form top,Medium
57
- 56,Forms,Inline Validation,All,Validate as user types or on blur,Validate on blur for most fields,Validate only on submit,onBlur validation,Submit-only validation,Medium
58
- 57,Forms,Input Types,All,Use appropriate input types,Use email tel number url etc,Text input for everything,type='email',type='text' for email,Medium
59
- 58,Forms,Autofill Support,Web,Help browsers autofill correctly,Use autocomplete attribute properly,Block or ignore autofill,autocomplete='email',autocomplete='off' everywhere,Medium
60
- 59,Forms,Required Indicators,All,Mark required fields clearly,Use asterisk or (required) text,No indication of required fields,* required indicator,Guess which are required,Medium
61
- 60,Forms,Password Visibility,All,Let users see password while typing,Toggle to show/hide password,No visibility toggle,Show/hide password button,Password always hidden,Medium
62
- 61,Forms,Submit Feedback,All,Confirm form submission status,Show loading then success/error state,No feedback after submit,Loading -> Success message,Button click with no response,High
63
- 62,Forms,Input Affordance,All,Inputs should look interactive,Use distinct input styling,Inputs that look like plain text,Border/background on inputs,Borderless inputs,Medium
64
- 63,Forms,Mobile Keyboards,Mobile,Show appropriate keyboard for input type,Use inputmode attribute,Default keyboard for all inputs,inputmode='numeric',Text keyboard for numbers,Medium
65
- 64,Responsive,Mobile First,Web,Design for mobile then enhance for larger,Start with mobile styles then add breakpoints,Desktop-first causing mobile issues,Default mobile + md: lg: xl:,Desktop default + max-width queries,Medium
66
- 65,Responsive,Breakpoint Testing,Web,Test at all common screen sizes,Test at 320 375 414 768 1024 1440,Only test on your device,Multiple device testing,Single device development,Medium
67
- 66,Responsive,Touch Friendly,Web,Mobile layouts need touch-sized targets,Increase touch targets on mobile,Same tiny buttons on mobile,Larger buttons on mobile,Desktop-sized targets on mobile,High
68
- 67,Responsive,Readable Font Size,All,Text must be readable on all devices,Minimum 16px body text on mobile,Tiny text on mobile,text-base or larger,text-xs for body text,High
69
- 68,Responsive,Viewport Meta,Web,Set viewport for mobile devices,Use width=device-width initial-scale=1,Missing or incorrect viewport,<meta name='viewport'...>,No viewport meta tag,High
70
- 69,Responsive,Horizontal Scroll,Web,Avoid horizontal scrolling,Ensure content fits viewport width,Content wider than viewport,max-w-full overflow-x-hidden,Horizontal scrollbar on mobile,High
71
- 70,Responsive,Image Scaling,Web,Images should scale with container,Use max-width: 100% on images,Fixed width images overflow,max-w-full h-auto,width='800' fixed,Medium
72
- 71,Responsive,Table Handling,Web,Tables can overflow on mobile,Use horizontal scroll or card layout,Wide tables breaking layout,overflow-x-auto wrapper,Table overflows viewport,Medium
73
- 72,Typography,Line Height,All,Adequate line height improves readability,Use 1.5-1.75 for body text,Cramped or excessive line height,leading-relaxed (1.625),leading-none (1),Medium
74
- 73,Typography,Line Length,Web,Long lines are hard to read,Limit to 65-75 characters per line,Full-width text on large screens,max-w-prose,Full viewport width text,Medium
75
- 74,Typography,Font Size Scale,All,Consistent type hierarchy aids scanning,Use consistent modular scale,Random font sizes,Type scale (12 14 16 18 24 32),Arbitrary sizes,Medium
76
- 75,Typography,Font Loading,Web,Fonts should load without layout shift,Reserve space with fallback font,Layout shift when fonts load,font-display: swap + similar fallback,No fallback font,Medium
77
- 76,Typography,Contrast Readability,All,Body text needs good contrast,Use darker text on light backgrounds,Gray text on gray background,text-gray-900 on white,text-gray-400 on gray-100,High
78
- 77,Typography,Heading Clarity,All,Headings should stand out from body,Clear size/weight difference,Headings similar to body text,Bold + larger size,Same size as body,Medium
79
- 78,Feedback,Loading Indicators,All,Show system status during waits,Show spinner/skeleton for operations > 300ms,No feedback during loading,Skeleton or spinner,Frozen UI,High
80
- 79,Feedback,Empty States,All,Guide users when no content exists,Show helpful message and action,Blank empty screens,No items yet. Create one!,Empty white space,Medium
81
- 80,Feedback,Error Recovery,All,Help users recover from errors,Provide clear next steps,Error without recovery path,Try again button + help link,Error message only,Medium
82
- 81,Feedback,Progress Indicators,All,Show progress for multi-step processes,Step indicators or progress bar,No indication of progress,Step 2 of 4 indicator,No step information,Medium
83
- 82,Feedback,Toast Notifications,All,Transient messages for non-critical info,Auto-dismiss after 3-5 seconds,Toasts that never disappear,Auto-dismiss toast,Persistent toast,Medium
84
- 83,Feedback,Confirmation Messages,All,Confirm successful actions,Brief success message,Silent success,Saved successfully toast,No confirmation,Medium
85
- 84,Content,Truncation,All,Handle long content gracefully,Truncate with ellipsis and expand option,Overflow or broken layout,line-clamp-2 with expand,Overflow or cut off,Medium
86
- 85,Content,Date Formatting,All,Use locale-appropriate date formats,Use relative or locale-aware dates,Ambiguous date formats,2 hours ago or locale format,01/02/03,Low
87
- 86,Content,Number Formatting,All,Format large numbers for readability,Use thousand separators or abbreviations,Long unformatted numbers,"1.2K or 1,234",1234567,Low
88
- 87,Content,Placeholder Content,All,Show realistic placeholders during dev,Use realistic sample data,Lorem ipsum everywhere,Real sample content,Lorem ipsum,Low
89
- 88,Onboarding,User Freedom,All,Users should be able to skip tutorials,Provide Skip and Back buttons,Force linear unskippable tour,Skip Tutorial button,Locked overlay until finished,Medium
90
- 89,Search,Autocomplete,Web,Help users find results faster,Show predictions as user types,Require full type and enter,Debounced fetch + dropdown,No suggestions,Medium
91
- 90,Search,No Results,Web,Dead ends frustrate users,Show 'No results' with suggestions,Blank screen or '0 results',Try searching for X instead,No results found.,Medium
92
- 91,Data Entry,Bulk Actions,Web,Editing one by one is tedious,Allow multi-select and bulk edit,Single row actions only,Checkbox column + Action bar,Repeated actions per row,Low
93
- 92,AI Interaction,Disclaimer,All,Users need to know they talk to AI,Clearly label AI generated content,Present AI as human,AI Assistant label,Fake human name without label,High
94
- 93,AI Interaction,Streaming,All,Waiting for full text is slow,Stream text response token by token,Show loading spinner for 10s+,Typewriter effect,Spinner until 100% complete,Medium
95
- 94,Spatial UI,Gaze Hover,VisionOS,Elements should respond to eye tracking before pinch,Scale/highlight element on look,Static element until pinch,hoverEffect(),onTap only,High
96
- 95,Spatial UI,Depth Layering,VisionOS,UI needs Z-depth to separate content from environment,Use glass material and z-offset,Flat opaque panels blocking view,.glassBackgroundEffect(),bg-white,Medium
97
- 96,Sustainability,Auto-Play Video,Web,Video consumes massive data and energy,Click-to-play or pause when off-screen,Auto-play high-res video loops,playsInline muted preload='none',autoplay loop,Medium
98
- 97,Sustainability,Asset Weight,Web,Heavy 3D/Image assets increase carbon footprint,Compress and lazy load 3D models,Load 50MB textures,Draco compression,Raw .obj files,Medium
99
- 98,AI Interaction,Feedback Loop,All,AI needs user feedback to improve,Thumps up/down or 'Regenerate',Static output only,Feedback component,Read-only text,Low
100
- 99,Accessibility,Motion Sensitivity,All,Parallax/Scroll-jacking causes nausea,Respect prefers-reduced-motion,Force scroll effects,@media (prefers-reduced-motion),ScrollTrigger.create(),High