cokit-cli 1.0.7 → 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,24 +0,0 @@
1
- STT,Style Category,AI Prompt Keywords (Copy-Paste Ready),CSS/Technical Keywords,Implementation Checklist,Design System Variables
2
- 1,Minimalism & Swiss Style,"Design a minimalist landing page. Use: white space, geometric layouts, sans-serif fonts, high contrast, grid-based structure, essential elements only. Avoid shadows and gradients. Focus on clarity and functionality.","display: grid, gap: 2rem, font-family: sans-serif, color: #000 or #FFF, max-width: 1200px, clean borders, no box-shadow unless necessary","☐ Grid-based layout 12-16 columns, ☐ Typography hierarchy clear, ☐ No unnecessary decorations, ☐ WCAG AAA contrast verified, ☐ Mobile responsive grid","--spacing: 2rem, --border-radius: 0px, --font-weight: 400-700, --shadow: none, --accent-color: single primary only"
3
- 2,Neumorphism,"Create a neumorphic UI with soft 3D effects. Use light pastels, rounded corners (12-16px), subtle soft shadows (multiple layers), no hard lines, monochromatic color scheme with light/dark variations. Embossed/debossed effect on interactive elements.","border-radius: 12-16px, box-shadow: -5px -5px 15px rgba(0,0,0,0.1), 5px 5px 15px rgba(255,255,255,0.8), background: linear-gradient(145deg, color1, color2), transform: scale on press","☐ Rounded corners 12-16px consistent, ☐ Multiple shadow layers (2-3), ☐ Pastel color verified, ☐ Monochromatic palette checked, ☐ Press animation smooth 150ms","--border-radius: 14px, --shadow-soft-1: -5px -5px 15px, --shadow-soft-2: 5px 5px 15px, --color-light: #F5F5F5, --color-primary: single pastel"
4
- 3,Glassmorphism,"Design a glassmorphic interface with frosted glass effect. Use backdrop blur (10-20px), translucent overlays (rgba 10-30% opacity), vibrant background colors, subtle borders, light source reflection, layered depth. Perfect for modern overlays and cards.","backdrop-filter: blur(15px), background: rgba(255, 255, 255, 0.15), border: 1px solid rgba(255,255,255,0.2), -webkit-backdrop-filter: blur(15px), z-index layering for depth","☐ Backdrop-filter blur 10-20px, ☐ Translucent white 15-30% opacity, ☐ Subtle border 1px light, ☐ Vibrant background verified, ☐ Text contrast 4.5:1 checked","--blur-amount: 15px, --glass-opacity: 0.15, --border-color: rgba(255,255,255,0.2), --background: vibrant color, --text-color: light/dark based on BG"
5
- 4,Brutalism,"Create a brutalist design with raw, unpolished, stark aesthetic. Use pure primary colors (red, blue, yellow), black & white, no smooth transitions (instant), sharp corners, bold large typography, visible grid lines, default system fonts, intentional 'broken' design elements.","border-radius: 0px, transition: none or 0s, font-family: system-ui or monospace, font-weight: 700+, border: visible 2-4px, colors: #FF0000, #0000FF, #FFFF00, #000000, #FFFFFF","☐ No border-radius (0px), ☐ No transitions (instant), ☐ Bold typography (700+), ☐ Pure primary colors used, ☐ Visible grid/borders, ☐ Asymmetric layout intentional","--border-radius: 0px, --transition-duration: 0s, --font-weight: 700-900, --colors: primary only, --border-style: visible, --grid-visible: true"
6
- 5,3D & Hyperrealism,"Build an immersive 3D interface using realistic textures, 3D models (Three.js/Babylon.js), complex shadows, realistic lighting, parallax scrolling (3-5 layers), physics-based motion. Include skeuomorphic elements with tactile detail.","transform: translate3d, perspective: 1000px, WebGL canvas, Three.js/Babylon.js library, box-shadow: complex multi-layer, background: complex gradients, filter: drop-shadow()","☐ WebGL/Three.js integrated, ☐ 3D models loaded, ☐ Parallax 3-5 layers, ☐ Realistic lighting verified, ☐ Complex shadows rendered, ☐ Physics animation smooth 300-400ms","--perspective: 1000px, --parallax-layers: 5, --lighting-intensity: realistic, --shadow-depth: 20-40%, --animation-duration: 300-400ms"
7
- 6,Vibrant & Block-based,"Design an energetic, vibrant interface with bold block layouts, geometric shapes, high color contrast, large typography (32px+), animated background patterns, duotone effects. Perfect for startups and youth-focused apps. Use 4-6 contrasting colors from complementary/triadic schemes.","display: flex/grid with large gaps (48px+), font-size: 32px+, background: animated patterns (CSS), color: neon/vibrant colors, animation: continuous pattern movement","☐ Block layout with 48px+ gaps, ☐ Large typography 32px+, ☐ 4-6 vibrant colors max, ☐ Animated patterns active, ☐ Scroll-snap enabled, ☐ High contrast verified (7:1+)","--block-gap: 48px, --typography-size: 32px+, --color-palette: 4-6 vibrant colors, --animation: continuous pattern, --contrast-ratio: 7:1+"
8
- 7,Dark Mode (OLED),"Create an OLED-optimized dark interface with deep black (#000000), dark grey (#121212), midnight blue accents. Use minimal glow effects, vibrant neon accents (green, blue, gold, purple), high contrast text. Optimize for eye comfort and OLED power saving.","background: #000000 or #121212, color: #FFFFFF or #E0E0E0, text-shadow: 0 0 10px neon-color (sparingly), filter: brightness(0.8) if needed, color-scheme: dark","☐ Deep black #000000 or #121212, ☐ Vibrant neon accents used, ☐ Text contrast 7:1+, ☐ Minimal glow effects, ☐ OLED power optimization, ☐ No white (#FFFFFF) background","--bg-black: #000000, --bg-dark-grey: #121212, --text-primary: #FFFFFF, --accent-neon: neon colors, --glow-effect: minimal, --oled-optimized: true"
9
- 8,Accessible & Ethical,"Design with WCAG AAA compliance. Include: high contrast (7:1+), large text (16px+), keyboard navigation, screen reader compatibility, focus states visible (3-4px ring), semantic HTML, ARIA labels, skip links, reduced motion support (prefers-reduced-motion), 44x44px touch targets.","color-contrast: 7:1+, font-size: 16px+, outline: 3-4px on :focus-visible, aria-label, role attributes, @media (prefers-reduced-motion), touch-target: 44x44px, cursor: pointer","☐ WCAG AAA verified, ☐ 7:1+ contrast checked, ☐ Keyboard navigation tested, ☐ Screen reader tested, ☐ Focus visible 3-4px, ☐ Semantic HTML used, ☐ Touch targets 44x44px","--contrast-ratio: 7:1, --font-size-min: 16px, --focus-ring: 3-4px, --touch-target: 44x44px, --wcag-level: AAA, --keyboard-accessible: true, --sr-tested: true"
10
- 9,Claymorphism,"Design a playful, toy-like interface with soft 3D, chunky elements, bubbly aesthetic, rounded edges (16-24px), thick borders (3-4px), double shadows (inner + outer), pastel colors, smooth animations. Perfect for children's apps and creative tools.","border-radius: 16-24px, border: 3-4px solid, box-shadow: inset -2px -2px 8px, 4px 4px 8px, background: pastel-gradient, animation: soft bounce (cubic-bezier 0.34, 1.56)","☐ Border-radius 16-24px, ☐ Thick borders 3-4px, ☐ Double shadows (inner+outer), ☐ Pastel colors used, ☐ Soft bounce animations, ☐ Playful interactions","--border-radius: 20px, --border-width: 3-4px, --shadow-inner: inset -2px -2px 8px, --shadow-outer: 4px 4px 8px, --color-palette: pastels, --animation: bounce"
11
- 10,Aurora UI,"Create a vibrant gradient interface inspired by Northern Lights with mesh gradients, smooth color blends, flowing animations. Use complementary color pairs (blue-orange, purple-yellow), flowing background gradients, subtle continuous animations (8-12s loops), iridescent effects.","background: conic-gradient or radial-gradient with multiple stops, animation: @keyframes gradient (8-12s), background-size: 200% 200%, filter: saturate(1.2), blend-mode: screen or multiply","☐ Mesh/flowing gradients applied, ☐ 8-12s animation loop, ☐ Complementary colors used, ☐ Smooth color transitions, ☐ Iridescent effect subtle, ☐ Text contrast verified","--gradient-colors: complementary pairs, --animation-duration: 8-12s, --blend-mode: screen, --color-saturation: 1.2, --effect: iridescent, --loop-smooth: true"
12
- 11,Retro-Futurism,"Build a retro-futuristic (cyberpunk/vaporwave) interface with neon colors (blue, pink, cyan), deep black background, 80s aesthetic, CRT scanlines, glitch effects, neon glow text/borders, monospace fonts, geometric patterns. Use neon text-shadow and animated glitch effects.","color: neon colors (#0080FF, #FF006E, #00FFFF), text-shadow: 0 0 10px neon, background: #000 or #1A1A2E, font-family: monospace, animation: glitch (skew+offset), filter: hue-rotate","☐ Neon colors used, ☐ CRT scanlines effect, ☐ Glitch animations active, ☐ Monospace font, ☐ Deep black background, ☐ Glow effects applied, ☐ 80s patterns present","--neon-colors: #0080FF #FF006E #00FFFF, --background: #000000, --font-family: monospace, --effect: glitch+glow, --scanline-opacity: 0.3, --crt-effect: true"
13
- 12,Flat Design,"Create a flat, 2D interface with bold colors, no shadows/gradients, clean lines, simple geometric shapes, icon-heavy, typography-focused, minimal ornamentation. Use 4-6 solid, bright colors in a limited palette with high saturation.","box-shadow: none, background: solid color, border-radius: 0-4px, color: solid (no gradients), fill: solid, stroke: 1-2px, font: bold sans-serif, icons: simplified SVG","☐ No shadows/gradients, ☐ 4-6 solid colors max, ☐ Clean lines consistent, ☐ Simple shapes used, ☐ Icon-heavy layout, ☐ High saturation colors, ☐ Fast loading verified","--shadow: none, --color-palette: 4-6 solid, --border-radius: 2px, --gradient: none, --icons: simplified SVG, --animation: minimal 150-200ms"
14
- 13,Skeuomorphism,"Design a realistic, textured interface with 3D depth, real-world metaphors (leather, wood, metal), complex gradients (8-12 stops), realistic shadows, grain/texture overlays, tactile press animations. Perfect for premium/luxury products.","background: complex gradient (8-12 stops), box-shadow: realistic multi-layer, background-image: texture overlay (noise, grain), filter: drop-shadow, transform: scale on press (300-500ms)","☐ Realistic textures applied, ☐ Complex gradients 8-12 stops, ☐ Multi-layer shadows, ☐ Texture overlays present, ☐ Tactile animations smooth, ☐ Depth effect pronounced","--gradient-stops: 8-12, --texture-overlay: noise+grain, --shadow-layers: 3+, --animation-duration: 300-500ms, --depth-effect: pronounced, --tactile: true"
15
- 14,Liquid Glass,"Create a premium liquid glass effect with morphing shapes, flowing animations, chromatic aberration, iridescent gradients, smooth 400-600ms transitions. Use SVG morphing for shape changes, dynamic blur, smooth color transitions creating a fluid, premium feel.","animation: morphing SVG paths (400-600ms), backdrop-filter: blur + saturate, filter: hue-rotate + brightness, blend-mode: screen, background: iridescent gradient","☐ Morphing animations 400-600ms, ☐ Chromatic aberration applied, ☐ Dynamic blur active, ☐ Iridescent gradients, ☐ Smooth color transitions, ☐ Premium feel achieved","--morph-duration: 400-600ms, --blur-amount: 15px, --chromatic-aberration: true, --iridescent: true, --blend-mode: screen, --smooth-transitions: true"
16
- 15,Motion-Driven,"Build an animation-heavy interface with scroll-triggered animations, microinteractions, parallax scrolling (3-5 layers), smooth transitions (300-400ms), entrance animations, page transitions. Use Intersection Observer for scroll effects, transform for performance, GPU acceleration.","animation: @keyframes scroll-reveal, transform: translateY/X, Intersection Observer API, will-change: transform, scroll-behavior: smooth, animation-duration: 300-400ms","☐ Scroll animations active, ☐ Parallax 3-5 layers, ☐ Entrance animations smooth, ☐ Page transitions fluid, ☐ GPU accelerated, ☐ Prefers-reduced-motion respected","--animation-duration: 300-400ms, --parallax-layers: 5, --scroll-behavior: smooth, --gpu-accelerated: true, --entrance-animation: true, --page-transition: smooth"
17
- 16,Micro-interactions,"Design with delightful micro-interactions: small 50-100ms animations, gesture-based responses, tactile feedback, loading spinners, success/error states, subtle hover effects, haptic feedback triggers for mobile. Focus on responsive, contextual interactions.","animation: short 50-100ms, transition: hover states, @media (hover: hover) for desktop, :active for press, haptic-feedback CSS/API, loading animation smooth loop","☐ Micro-animations 50-100ms, ☐ Gesture-responsive, ☐ Tactile feedback visual/haptic, ☐ Loading spinners smooth, ☐ Success/error states clear, ☐ Hover effects subtle","--micro-animation-duration: 50-100ms, --gesture-responsive: true, --haptic-feedback: true, --loading-animation: smooth, --state-feedback: success+error"
18
- 17,Inclusive Design,"Design for universal accessibility: high contrast (7:1+), large text (16px+), keyboard-only navigation, screen reader optimization, WCAG AAA compliance, symbol-based color indicators (not color-only), haptic feedback, voice interaction support, reduced motion options.","aria-* attributes complete, role attributes semantic, focus-visible: 3-4px ring, color-contrast: 7:1+, @media (prefers-reduced-motion), alt text on all images, form labels properly associated","☐ WCAG AAA verified, ☐ 7:1+ contrast all text, ☐ Keyboard accessible (Tab/Enter), ☐ Screen reader tested, ☐ Focus visible 3-4px, ☐ No color-only indicators, ☐ Haptic fallback","--contrast-ratio: 7:1, --font-size: 16px+, --keyboard-accessible: true, --sr-compatible: true, --wcag-level: AAA, --color-symbols: true, --haptic: enabled"
19
- 18,Zero Interface,"Create a voice-first, gesture-based, AI-driven interface with minimal visible UI, progressive disclosure, voice recognition UI, gesture detection, AI predictions, smart suggestions, context-aware actions. Hide controls until needed.","voice-commands: Web Speech API, gesture-detection: touch events, AI-predictions: hidden by default (reveal on hover), progressive-disclosure: show on demand, minimal UI visible","☐ Voice commands responsive, ☐ Gesture detection active, ☐ AI predictions hidden/revealed, ☐ Progressive disclosure working, ☐ Minimal visible UI, ☐ Smart suggestions contextual","--voice-ui: enabled, --gesture-detection: active, --ai-predictions: smart, --progressive-disclosure: true, --visible-ui: minimal, --context-aware: true"
20
- 19,Soft UI Evolution,"Design evolved neumorphism with improved contrast (WCAG AA+), modern aesthetics, subtle depth, accessibility focus. Use soft shadows (softer than flat but clearer than pure neumorphism), better color hierarchy, improved focus states, modern 200-300ms animations.","box-shadow: softer multi-layer (0 2px 4px), background: improved contrast pastels, border-radius: 8-12px, animation: 200-300ms smooth, outline: 2-3px on focus, contrast: 4.5:1+","☐ Improved contrast AA/AAA, ☐ Soft shadows modern, ☐ Border-radius 8-12px, ☐ Animations 200-300ms, ☐ Focus states visible, ☐ Color hierarchy clear","--shadow-soft: modern blend, --border-radius: 10px, --animation-duration: 200-300ms, --contrast-ratio: 4.5:1+, --color-hierarchy: improved, --wcag-level: AA+"
21
- 20,Bento Grids,"Design a Bento Grid layout. Use: modular grid system, rounded corners (16-24px), different card sizes (1x1, 2x1, 2x2), card-based hierarchy, soft backgrounds (#F5F5F7), subtle borders, content-first, Apple-style aesthetic.","display: grid, grid-template-columns: repeat(auto-fit, minmax(...)), gap: 1rem, border-radius: 20px, background: #FFF, box-shadow: subtle","☐ Grid layout (CSS Grid), ☐ Rounded corners 16-24px, ☐ Varied card spans, ☐ Content fits card size, ☐ Responsive re-flow, ☐ Apple-like aesthetic","--grid-gap: 20px, --card-radius: 24px, --card-bg: #FFFFFF, --page-bg: #F5F5F7, --shadow: soft"
22
- 21,Neubrutalism,"Design a neubrutalist interface. Use: high contrast, hard black borders (3px+), bright pop colors, no blur, sharp or slightly rounded corners, bold typography, hard shadows (offset 4px 4px), raw aesthetic but functional.","border: 3px solid black, box-shadow: 5px 5px 0px black, colors: #FFDB58 #FF6B6B #4ECDC4, font-weight: 700, no gradients","☐ Hard borders (2-4px), ☐ Hard offset shadows, ☐ High saturation colors, ☐ Bold typography, ☐ No blurs/gradients, ☐ Distinctive 'ugly-cute' look","--border-width: 3px, --shadow-offset: 4px, --shadow-color: #000, --colors: high saturation, --font: bold sans"
23
- 22,HUD / Sci-Fi FUI,"Design a futuristic HUD (Heads Up Display) or FUI. Use: thin lines (1px), neon cyan/blue on black, technical markers, decorative brackets, data visualization, monospaced tech fonts, glowing elements, transparency.","border: 1px solid rgba(0,255,255,0.5), color: #00FFFF, background: transparent or rgba(0,0,0,0.8), font-family: monospace, text-shadow: 0 0 5px cyan","☐ Fine lines 1px, ☐ Neon glow text/borders, ☐ Monospaced font, ☐ Dark/Transparent BG, ☐ Decorative tech markers, ☐ Holographic feel","--hud-color: #00FFFF, --bg-color: rgba(0,10,20,0.9), --line-width: 1px, --glow: 0 0 5px, --font: monospace"
24
- 23,Pixel Art,"Design a pixel art inspired interface. Use: pixelated fonts, 8-bit or 16-bit aesthetic, sharp edges (image-rendering: pixelated), limited color palette, blocky UI elements, retro gaming feel.","font-family: 'Press Start 2P', image-rendering: pixelated, box-shadow: 4px 0 0 #000 (pixel border), no anti-aliasing","☐ Pixelated fonts loaded, ☐ Images sharp (no blur), ☐ CSS box-shadow for pixel borders, ☐ Retro palette, ☐ Blocky layout","--pixel-size: 4px, --font: pixel font, --border-style: pixel-shadow, --anti-alias: none"
@@ -1,53 +0,0 @@
1
- No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
2
- 1,Widgets,Use StatelessWidget when possible,Immutable widgets are simpler,StatelessWidget for static UI,StatefulWidget for everything,class MyWidget extends StatelessWidget,class MyWidget extends StatefulWidget (static),Medium,https://api.flutter.dev/flutter/widgets/StatelessWidget-class.html
3
- 2,Widgets,Keep widgets small,Single responsibility principle,Extract widgets into smaller pieces,Large build methods,Column(children: [Header() Content()]),500+ line build method,Medium,
4
- 3,Widgets,Use const constructors,Compile-time constants for performance,const MyWidget() when possible,Non-const for static widgets,const Text('Hello'),Text('Hello') for literals,High,https://dart.dev/guides/language/language-tour#constant-constructors
5
- 4,Widgets,Prefer composition over inheritance,Combine widgets using children,Compose widgets,Extend widget classes,Container(child: MyContent()),class MyContainer extends Container,Medium,
6
- 5,State,Use setState correctly,Minimal state in StatefulWidget,setState for UI state changes,setState for business logic,setState(() { _counter++; }),Complex logic in setState,Medium,https://api.flutter.dev/flutter/widgets/State/setState.html
7
- 6,State,Avoid setState in build,Never call setState during build,setState in callbacks only,setState in build method,onPressed: () => setState(() {}),build() { setState(); },High,
8
- 7,State,Use state management for complex apps,Provider Riverpod BLoC,State management for shared state,setState for global state,Provider.of<MyState>(context),Global setState calls,Medium,
9
- 8,State,Prefer Riverpod or Provider,Recommended state solutions,Riverpod for new projects,InheritedWidget manually,ref.watch(myProvider),Custom InheritedWidget,Medium,https://riverpod.dev/
10
- 9,State,Dispose resources,Clean up controllers and subscriptions,dispose() for cleanup,Memory leaks from subscriptions,@override void dispose() { controller.dispose(); },No dispose implementation,High,
11
- 10,Layout,Use Column and Row,Basic layout widgets,Column Row for linear layouts,Stack for simple layouts,"Column(children: [Text(), Button()])",Stack for vertical list,Medium,https://api.flutter.dev/flutter/widgets/Column-class.html
12
- 11,Layout,Use Expanded and Flexible,Control flex behavior,Expanded to fill space,Fixed sizes in flex containers,Expanded(child: Container()),Container(width: 200) in Row,Medium,
13
- 12,Layout,Use SizedBox for spacing,Consistent spacing,SizedBox for gaps,Container for spacing only,SizedBox(height: 16),Container(height: 16),Low,
14
- 13,Layout,Use LayoutBuilder for responsive,Respond to constraints,LayoutBuilder for adaptive layouts,Fixed sizes for responsive,LayoutBuilder(builder: (context constraints) {}),Container(width: 375),Medium,https://api.flutter.dev/flutter/widgets/LayoutBuilder-class.html
15
- 14,Layout,Avoid deep nesting,Keep widget tree shallow,Extract deeply nested widgets,10+ levels of nesting,Extract widget to method or class,Column(Row(Column(Row(...)))),Medium,
16
- 15,Lists,Use ListView.builder,Lazy list building,ListView.builder for long lists,ListView with children for large lists,"ListView.builder(itemCount: 100, itemBuilder: ...)",ListView(children: items.map(...).toList()),High,https://api.flutter.dev/flutter/widgets/ListView-class.html
17
- 16,Lists,Provide itemExtent when known,Skip measurement,itemExtent for fixed height items,No itemExtent for uniform lists,ListView.builder(itemExtent: 50),ListView.builder without itemExtent,Medium,
18
- 17,Lists,Use keys for stateful items,Preserve widget state,Key for stateful list items,No key for dynamic lists,ListTile(key: ValueKey(item.id)),ListTile without key,High,
19
- 18,Lists,Use SliverList for custom scroll,Custom scroll effects,CustomScrollView with Slivers,Nested ListViews,CustomScrollView(slivers: [SliverList()]),ListView inside ListView,Medium,https://api.flutter.dev/flutter/widgets/SliverList-class.html
20
- 19,Navigation,Use Navigator 2.0 or GoRouter,Declarative routing,go_router for navigation,Navigator.push for complex apps,GoRouter(routes: [...]),Navigator.push everywhere,Medium,https://pub.dev/packages/go_router
21
- 20,Navigation,Use named routes,Organized navigation,Named routes for clarity,Anonymous routes,Navigator.pushNamed(context '/home'),Navigator.push(context MaterialPageRoute()),Low,
22
- 21,Navigation,Handle back button (PopScope),Android back behavior and predictive back (Android 14+),Use PopScope widget (WillPopScope is deprecated),Use WillPopScope,"PopScope(canPop: false, onPopInvoked: (didPop) => ...)",WillPopScope(onWillPop: ...),High,https://api.flutter.dev/flutter/widgets/PopScope-class.html
23
- 22,Navigation,Pass typed arguments,Type-safe route arguments,Typed route arguments,Dynamic arguments,MyRoute(id: '123'),arguments: {'id': '123'},Medium,
24
- 23,Async,Use FutureBuilder,Async UI building,FutureBuilder for async data,setState for async,FutureBuilder(future: fetchData()),fetchData().then((d) => setState()),Medium,https://api.flutter.dev/flutter/widgets/FutureBuilder-class.html
25
- 24,Async,Use StreamBuilder,Stream UI building,StreamBuilder for streams,Manual stream subscription,StreamBuilder(stream: myStream),stream.listen in initState,Medium,https://api.flutter.dev/flutter/widgets/StreamBuilder-class.html
26
- 25,Async,Handle loading and error states,Complete async UI states,ConnectionState checks,Only success state,if (snapshot.connectionState == ConnectionState.waiting),No loading indicator,High,
27
- 26,Async,Cancel subscriptions,Clean up stream subscriptions,Cancel in dispose,Memory leaks,subscription.cancel() in dispose,No subscription cleanup,High,
28
- 27,Theming,Use ThemeData,Consistent theming,ThemeData for app theme,Hardcoded colors,Theme.of(context).primaryColor,Color(0xFF123456) everywhere,Medium,https://api.flutter.dev/flutter/material/ThemeData-class.html
29
- 28,Theming,Use ColorScheme,Material 3 color system,ColorScheme for colors,Individual color properties,colorScheme: ColorScheme.fromSeed(),primaryColor: Colors.blue,Medium,
30
- 29,Theming,Access theme via context,Dynamic theme access,Theme.of(context),Static theme reference,Theme.of(context).textTheme.bodyLarge,TextStyle(fontSize: 16),Medium,
31
- 30,Theming,Support dark mode,Respect system theme,darkTheme in MaterialApp,Light theme only,"MaterialApp(theme: light, darkTheme: dark)",MaterialApp(theme: light),Medium,
32
- 31,Animation,Use implicit animations,Simple animations,AnimatedContainer AnimatedOpacity,Explicit for simple transitions,AnimatedContainer(duration: Duration()),AnimationController for fade,Low,https://api.flutter.dev/flutter/widgets/AnimatedContainer-class.html
33
- 32,Animation,Use AnimationController for complex,Fine-grained control,AnimationController with Ticker,Implicit for complex sequences,AnimationController(vsync: this),AnimatedContainer for staggered,Medium,
34
- 33,Animation,Dispose AnimationControllers,Clean up animation resources,dispose() for controllers,Memory leaks,controller.dispose() in dispose,No controller disposal,High,
35
- 34,Animation,Use Hero for transitions,Shared element transitions,Hero for navigation animations,Manual shared element,Hero(tag: 'image' child: Image()),Custom shared element animation,Low,https://api.flutter.dev/flutter/widgets/Hero-class.html
36
- 35,Forms,Use Form widget,Form validation,Form with GlobalKey,Individual validation,Form(key: _formKey child: ...),TextField without Form,Medium,https://api.flutter.dev/flutter/widgets/Form-class.html
37
- 36,Forms,Use TextEditingController,Control text input,Controller for text fields,onChanged for all text,final controller = TextEditingController(),onChanged: (v) => setState(),Medium,
38
- 37,Forms,Validate on submit,Form validation flow,_formKey.currentState!.validate(),Skip validation,if (_formKey.currentState!.validate()),Submit without validation,High,
39
- 38,Forms,Dispose controllers,Clean up text controllers,dispose() for controllers,Memory leaks,controller.dispose() in dispose,No controller disposal,High,
40
- 39,Performance,Use const widgets,Reduce rebuilds,const for static widgets,No const for literals,const Icon(Icons.add),Icon(Icons.add),High,
41
- 40,Performance,Avoid rebuilding entire tree,Minimal rebuild scope,Isolate changing widgets,setState on parent,Consumer only around changing widget,setState on root widget,High,
42
- 41,Performance,Use RepaintBoundary,Isolate repaints,RepaintBoundary for animations,Full screen repaints,RepaintBoundary(child: AnimatedWidget()),Animation without boundary,Medium,https://api.flutter.dev/flutter/widgets/RepaintBoundary-class.html
43
- 42,Performance,Profile with DevTools,Measure before optimizing,Flutter DevTools profiling,Guess at performance,DevTools performance tab,Optimize without measuring,Medium,https://docs.flutter.dev/tools/devtools
44
- 43,Accessibility,Use Semantics widget,Screen reader support,Semantics for accessibility,Missing accessibility info,Semantics(label: 'Submit button'),GestureDetector without semantics,High,https://api.flutter.dev/flutter/widgets/Semantics-class.html
45
- 44,Accessibility,Support large fonts,MediaQuery text scaling,MediaQuery.textScaleFactor,Fixed font sizes,style: Theme.of(context).textTheme,TextStyle(fontSize: 14),High,
46
- 45,Accessibility,Test with screen readers,TalkBack and VoiceOver,Test accessibility regularly,Skip accessibility testing,Regular TalkBack testing,No screen reader testing,High,
47
- 46,Testing,Use widget tests,Test widget behavior,WidgetTester for UI tests,Unit tests only,testWidgets('...' (tester) async {}),Only test() for UI,Medium,https://docs.flutter.dev/testing
48
- 47,Testing,Use integration tests,Full app testing,integration_test package,Manual testing only,IntegrationTestWidgetsFlutterBinding,Manual E2E testing,Medium,
49
- 48,Testing,Mock dependencies,Isolate tests,Mockito or mocktail,Real dependencies in tests,when(mock.method()).thenReturn(),Real API calls in tests,Medium,
50
- 49,Platform,Use Platform checks,Platform-specific code,Platform.isIOS Platform.isAndroid,Same code for all platforms,if (Platform.isIOS) {},Hardcoded iOS behavior,Medium,
51
- 50,Platform,Use kIsWeb for web,Web platform detection,kIsWeb for web checks,Platform for web,if (kIsWeb) {},Platform.isWeb (doesn't exist),Medium,
52
- 51,Packages,Use pub.dev packages,Community packages,Popular maintained packages,Custom implementations,cached_network_image,Custom image cache,Medium,https://pub.dev/
53
- 52,Packages,Check package quality,Quality before adding,Pub points and popularity,Any package without review,100+ pub points,Unmaintained packages,Medium,
@@ -1,51 +0,0 @@
1
- No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
2
- 1,Animation,Use Tailwind animate utilities,Built-in animations are optimized and respect reduced-motion,Use animate-pulse animate-spin animate-ping,Custom @keyframes for simple effects,animate-pulse,@keyframes pulse {...},Medium,https://tailwindcss.com/docs/animation
3
- 2,Animation,Limit bounce animations,Continuous bounce is distracting and causes motion sickness,Use animate-bounce sparingly on CTAs only,Multiple bounce animations on page,Single CTA with animate-bounce,5+ elements with animate-bounce,High,
4
- 3,Animation,Transition duration,Use appropriate transition speeds for UI feedback,duration-150 to duration-300 for UI,duration-1000 or longer for UI elements,transition-all duration-200,transition-all duration-1000,Medium,https://tailwindcss.com/docs/transition-duration
5
- 4,Animation,Hover transitions,Add smooth transitions on hover state changes,Add transition class with hover states,Instant hover changes without transition,hover:bg-gray-100 transition-colors,hover:bg-gray-100 (no transition),Low,
6
- 5,Z-Index,Use Tailwind z-* scale,Consistent stacking context with predefined scale,z-0 z-10 z-20 z-30 z-40 z-50,Arbitrary z-index values,z-50 for modals,z-[9999],Medium,https://tailwindcss.com/docs/z-index
7
- 6,Z-Index,Fixed elements z-index,Fixed navigation and modals need explicit z-index,z-50 for nav z-40 for dropdowns,Relying on DOM order for stacking,fixed top-0 z-50,fixed top-0 (no z-index),High,
8
- 7,Z-Index,Negative z-index for backgrounds,Use negative z-index for decorative backgrounds,z-[-1] for background elements,Positive z-index for backgrounds,-z-10 for decorative,z-10 for background,Low,
9
- 8,Layout,Container max-width,Limit content width for readability,max-w-7xl mx-auto for main content,Full-width content on large screens,max-w-7xl mx-auto px-4,w-full (no max-width),Medium,https://tailwindcss.com/docs/container
10
- 9,Layout,Responsive padding,Adjust padding for different screen sizes,px-4 md:px-6 lg:px-8,Same padding all sizes,px-4 sm:px-6 lg:px-8,px-8 (same all sizes),Medium,
11
- 10,Layout,Grid gaps,Use consistent gap utilities for spacing,gap-4 gap-6 gap-8,Margins on individual items,grid gap-6,grid with mb-4 on each item,Medium,https://tailwindcss.com/docs/gap
12
- 11,Layout,Flexbox alignment,Use flex utilities for alignment,items-center justify-between,Multiple nested wrappers,flex items-center justify-between,Nested divs for alignment,Low,
13
- 12,Images,Aspect ratio,Maintain consistent image aspect ratios,aspect-video aspect-square,No aspect ratio on containers,aspect-video rounded-lg,No aspect control,Medium,https://tailwindcss.com/docs/aspect-ratio
14
- 13,Images,Object fit,Control image scaling within containers,object-cover object-contain,Stretched distorted images,object-cover w-full h-full,No object-fit,Medium,https://tailwindcss.com/docs/object-fit
15
- 14,Images,Lazy loading,Defer loading of off-screen images,loading='lazy' on images,All images eager load,<img loading='lazy'>,<img> without lazy,High,
16
- 15,Images,Responsive images,Serve appropriate image sizes,srcset and sizes attributes,Same large image all devices,srcset with multiple sizes,4000px image everywhere,High,
17
- 16,Typography,Prose plugin,Use @tailwindcss/typography for rich text,prose prose-lg for article content,Custom styles for markdown,prose prose-lg max-w-none,Custom text styling,Medium,https://tailwindcss.com/docs/typography-plugin
18
- 17,Typography,Line height,Use appropriate line height for readability,leading-relaxed for body text,Default tight line height,leading-relaxed (1.625),leading-none or leading-tight,Medium,https://tailwindcss.com/docs/line-height
19
- 18,Typography,Font size scale,Use consistent text size scale,text-sm text-base text-lg text-xl,Arbitrary font sizes,text-lg,text-[17px],Low,https://tailwindcss.com/docs/font-size
20
- 19,Typography,Text truncation,Handle long text gracefully,truncate or line-clamp-*,Overflow breaking layout,line-clamp-2,No overflow handling,Medium,https://tailwindcss.com/docs/text-overflow
21
- 20,Colors,Opacity utilities,Use color opacity utilities,bg-black/50 text-white/80,Separate opacity class,bg-black/50,bg-black opacity-50,Low,https://tailwindcss.com/docs/background-color
22
- 21,Colors,Dark mode,Support dark mode with dark: prefix,dark:bg-gray-900 dark:text-white,No dark mode support,dark:bg-gray-900,Only light theme,Medium,https://tailwindcss.com/docs/dark-mode
23
- 22,Colors,Semantic colors,Use semantic color naming in config,primary secondary danger success,Generic color names in components,bg-primary,bg-blue-500 everywhere,Medium,
24
- 23,Spacing,Consistent spacing scale,Use Tailwind spacing scale consistently,p-4 m-6 gap-8,Arbitrary pixel values,p-4 (1rem),p-[15px],Low,https://tailwindcss.com/docs/customizing-spacing
25
- 24,Spacing,Negative margins,Use sparingly for overlapping effects,-mt-4 for overlapping elements,Negative margins for layout fixing,-mt-8 for card overlap,-m-2 to fix spacing issues,Medium,
26
- 25,Spacing,Space between,Use space-y-* for vertical lists,space-y-4 on flex/grid column,Margin on each child,space-y-4,Each child has mb-4,Low,https://tailwindcss.com/docs/space
27
- 26,Forms,Focus states,Always show focus indicators,focus:ring-2 focus:ring-blue-500,Remove focus outline,focus:ring-2 focus:ring-offset-2,focus:outline-none (no replacement),High,
28
- 27,Forms,Input sizing,Consistent input dimensions,h-10 px-3 for inputs,Inconsistent input heights,h-10 w-full px-3,Various heights per input,Medium,
29
- 28,Forms,Disabled states,Clear disabled styling,disabled:opacity-50 disabled:cursor-not-allowed,No disabled indication,disabled:opacity-50,Same style as enabled,Medium,
30
- 29,Forms,Placeholder styling,Style placeholder text appropriately,placeholder:text-gray-400,Dark placeholder text,placeholder:text-gray-400,Default dark placeholder,Low,
31
- 30,Responsive,Mobile-first approach,Start with mobile styles and add breakpoints,Default mobile + md: lg: xl:,Desktop-first approach,text-sm md:text-base,text-base max-md:text-sm,Medium,https://tailwindcss.com/docs/responsive-design
32
- 31,Responsive,Breakpoint testing,Test at standard breakpoints,320 375 768 1024 1280 1536,Only test on development device,Test all breakpoints,Single device testing,High,
33
- 32,Responsive,Hidden/shown utilities,Control visibility per breakpoint,hidden md:block,Different content per breakpoint,hidden md:flex,Separate mobile/desktop components,Low,https://tailwindcss.com/docs/display
34
- 33,Buttons,Button sizing,Consistent button dimensions,px-4 py-2 or px-6 py-3,Inconsistent button sizes,px-4 py-2 text-sm,Various padding per button,Medium,
35
- 34,Buttons,Touch targets,Minimum 44px touch target on mobile,min-h-[44px] on mobile,Small buttons on mobile,min-h-[44px] min-w-[44px],h-8 w-8 on mobile,High,
36
- 35,Buttons,Loading states,Show loading feedback,disabled + spinner icon,Clickable during loading,<Button disabled><Spinner/></Button>,Button without loading state,High,
37
- 36,Buttons,Icon buttons,Accessible icon-only buttons,aria-label on icon buttons,Icon button without label,<button aria-label='Close'><XIcon/></button>,<button><XIcon/></button>,High,
38
- 37,Cards,Card structure,Consistent card styling,rounded-lg shadow-md p-6,Inconsistent card styles,rounded-2xl shadow-lg p-6,Mixed card styling,Low,
39
- 38,Cards,Card hover states,Interactive cards should have hover feedback,hover:shadow-lg transition-shadow,No hover on clickable cards,hover:shadow-xl transition-shadow,Static cards that are clickable,Medium,
40
- 39,Cards,Card spacing,Consistent internal card spacing,space-y-4 for card content,Inconsistent internal spacing,space-y-4 or p-6,Mixed mb-2 mb-4 mb-6,Low,
41
- 40,Accessibility,Screen reader text,Provide context for screen readers,sr-only for hidden labels,Missing context for icons,<span class='sr-only'>Close menu</span>,No label for icon button,High,https://tailwindcss.com/docs/screen-readers
42
- 41,Accessibility,Focus visible,Show focus only for keyboard users,focus-visible:ring-2,Focus on all interactions,focus-visible:ring-2,focus:ring-2 (shows on click too),Medium,
43
- 42,Accessibility,Reduced motion,Respect user motion preferences,motion-reduce:animate-none,Ignore motion preferences,motion-reduce:transition-none,No reduced motion support,High,https://tailwindcss.com/docs/hover-focus-and-other-states#prefers-reduced-motion
44
- 43,Performance,Configure content paths,Tailwind needs to know where classes are used,Use 'content' array in config,Use deprecated 'purge' option (v2),"content: ['./src/**/*.{js,ts,jsx,tsx}']",purge: [...],High,https://tailwindcss.com/docs/content-configuration
45
- 44,Performance,JIT mode,Use JIT for faster builds and smaller bundles,JIT enabled (default in v3),Full CSS in development,Tailwind v3 defaults,Tailwind v2 without JIT,Medium,
46
- 45,Performance,Avoid @apply bloat,Use @apply sparingly,Direct utilities in HTML,Heavy @apply usage,class='px-4 py-2 rounded',@apply px-4 py-2 rounded;,Low,https://tailwindcss.com/docs/reusing-styles
47
- 46,Plugins,Official plugins,Use official Tailwind plugins,@tailwindcss/forms typography aspect-ratio,Custom implementations,@tailwindcss/forms,Custom form reset CSS,Medium,https://tailwindcss.com/docs/plugins
48
- 47,Plugins,Custom utilities,Create utilities for repeated patterns,Custom utility in config,Repeated arbitrary values,Custom shadow utility,"shadow-[0_4px_20px_rgba(0,0,0,0.1)] everywhere",Medium,
49
- 48,Layout,Container Queries,Use @container for component-based responsiveness,Use @container and @lg: etc.,Media queries for component internals,@container @lg:grid-cols-2,@media (min-width: ...) inside component,Medium,https://github.com/tailwindlabs/tailwindcss-container-queries
50
- 49,Interactivity,Group and Peer,Style based on parent/sibling state,group-hover peer-checked,JS for simple state interactions,group-hover:text-blue-500,onMouseEnter={() => setHover(true)},Low,https://tailwindcss.com/docs/hover-focus-and-other-states#styling-based-on-parent-state
51
- 50,Customization,Arbitrary Values,Use [] for one-off values,w-[350px] for specific needs,Creating config for single use,top-[117px] (if strictly needed),style={{ top: '117px' }},Low,https://tailwindcss.com/docs/adding-custom-styles#using-arbitrary-values
@@ -1,53 +0,0 @@
1
- No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
2
- 1,Routing,Use App Router for new projects,App Router is the recommended approach in Next.js 14+,app/ directory with page.tsx,pages/ for new projects,app/dashboard/page.tsx,pages/dashboard.tsx,Medium,https://nextjs.org/docs/app
3
- 2,Routing,Use file-based routing,Create routes by adding files in app directory,page.tsx for routes layout.tsx for layouts,Manual route configuration,app/blog/[slug]/page.tsx,Custom router setup,Medium,https://nextjs.org/docs/app/building-your-application/routing
4
- 3,Routing,Colocate related files,Keep components styles tests with their routes,Component files alongside page.tsx,Separate components folder,app/dashboard/_components/,components/dashboard/,Low,
5
- 4,Routing,Use route groups for organization,Group routes without affecting URL,Parentheses for route groups,Nested folders affecting URL,(marketing)/about/page.tsx,marketing/about/page.tsx,Low,https://nextjs.org/docs/app/building-your-application/routing/route-groups
6
- 5,Routing,Handle loading states,Use loading.tsx for route loading UI,loading.tsx alongside page.tsx,Manual loading state management,app/dashboard/loading.tsx,useState for loading in page,Medium,https://nextjs.org/docs/app/building-your-application/routing/loading-ui-and-streaming
7
- 6,Routing,Handle errors with error.tsx,Catch errors at route level,error.tsx with reset function,try/catch in every component,app/dashboard/error.tsx,try/catch in page component,High,https://nextjs.org/docs/app/building-your-application/routing/error-handling
8
- 7,Rendering,Use Server Components by default,Server Components reduce client JS bundle,Keep components server by default,Add 'use client' unnecessarily,export default function Page(),('use client') for static content,High,https://nextjs.org/docs/app/building-your-application/rendering/server-components
9
- 8,Rendering,Mark Client Components explicitly,'use client' for interactive components,Add 'use client' only when needed,Server Component with hooks/events,('use client') for onClick useState,No directive with useState,High,https://nextjs.org/docs/app/building-your-application/rendering/client-components
10
- 9,Rendering,Push Client Components down,Keep Client Components as leaf nodes,Client wrapper for interactive parts only,Mark page as Client Component,<InteractiveButton/> in Server Page,('use client') on page.tsx,High,
11
- 10,Rendering,Use streaming for better UX,Stream content with Suspense boundaries,Suspense for slow data fetches,Wait for all data before render,<Suspense><SlowComponent/></Suspense>,await allData then render,Medium,https://nextjs.org/docs/app/building-your-application/routing/loading-ui-and-streaming
12
- 11,Rendering,Choose correct rendering strategy,SSG for static SSR for dynamic ISR for semi-static,generateStaticParams for known paths,SSR for static content,export const revalidate = 3600,fetch without cache config,Medium,
13
- 12,DataFetching,Fetch data in Server Components,Fetch directly in async Server Components,async function Page() { const data = await fetch() },useEffect for initial data,const data = await fetch(url),useEffect(() => fetch(url)),High,https://nextjs.org/docs/app/building-your-application/data-fetching
14
- 13,DataFetching,Configure caching explicitly (Next.js 15+),Next.js 15 changed defaults to uncached for fetch,Explicitly set cache: 'force-cache' for static data,Assume default is cached (it's not in Next.js 15),fetch(url { cache: 'force-cache' }),fetch(url) // Uncached in v15,High,https://nextjs.org/docs/app/building-your-application/upgrading/version-15
15
- 14,DataFetching,Deduplicate fetch requests,React and Next.js dedupe same requests,Same fetch call in multiple components,Manual request deduplication,Multiple components fetch same URL,Custom cache layer,Low,
16
- 15,DataFetching,Use Server Actions for mutations,Server Actions for form submissions,action={serverAction} in forms,API route for every mutation,<form action={createPost}>,<form onSubmit={callApiRoute}>,Medium,https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations
17
- 16,DataFetching,Revalidate data appropriately,Use revalidatePath/revalidateTag after mutations,Revalidate after Server Action,'use client' with manual refetch,revalidatePath('/posts'),router.refresh() everywhere,Medium,https://nextjs.org/docs/app/building-your-application/caching#revalidating
18
- 17,Images,Use next/image for optimization,Automatic image optimization and lazy loading,<Image> component for all images,<img> tags directly,<Image src={} alt={} width={} height={}>,<img src={}/>,High,https://nextjs.org/docs/app/building-your-application/optimizing/images
19
- 18,Images,Provide width and height,Prevent layout shift with dimensions,width and height props or fill,Missing dimensions,<Image width={400} height={300}/>,<Image src={url}/>,High,
20
- 19,Images,Use fill for responsive images,Fill container with object-fit,fill prop with relative parent,Fixed dimensions for responsive,"<Image fill className=""object-cover""/>",<Image width={window.width}/>,Medium,
21
- 20,Images,Configure remote image domains,Whitelist external image sources,remotePatterns in next.config.js,Allow all domains,remotePatterns: [{ hostname: 'cdn.example.com' }],domains: ['*'],High,https://nextjs.org/docs/app/api-reference/components/image#remotepatterns
22
- 21,Images,Use priority for LCP images,Mark above-fold images as priority,priority prop on hero images,All images with priority,<Image priority src={hero}/>,<Image priority/> on every image,Medium,
23
- 22,Fonts,Use next/font for fonts,Self-hosted fonts with zero layout shift,next/font/google or next/font/local,External font links,import { Inter } from 'next/font/google',"<link href=""fonts.googleapis.com""/>",Medium,https://nextjs.org/docs/app/building-your-application/optimizing/fonts
24
- 23,Fonts,Apply font to layout,Set font in root layout for consistency,className on body in layout.tsx,Font in individual pages,<body className={inter.className}>,Each page imports font,Low,
25
- 24,Fonts,Use variable fonts,Variable fonts reduce bundle size,Single variable font file,Multiple font weights as files,Inter({ subsets: ['latin'] }),Inter_400 Inter_500 Inter_700,Low,
26
- 25,Metadata,Use generateMetadata for dynamic,Generate metadata based on params,export async function generateMetadata(),Hardcoded metadata everywhere,generateMetadata({ params }),export const metadata = {},Medium,https://nextjs.org/docs/app/building-your-application/optimizing/metadata
27
- 26,Metadata,Include OpenGraph images,Add OG images for social sharing,opengraph-image.tsx or og property,Missing social preview images,opengraph: { images: ['/og.png'] },No OG configuration,Medium,
28
- 27,Metadata,Use metadata API,Export metadata object for static metadata,export const metadata = {},Manual head tags,export const metadata = { title: 'Page' },<head><title>Page</title></head>,Medium,
29
- 28,API,Use Route Handlers for APIs,app/api routes for API endpoints,app/api/users/route.ts,pages/api for new projects,export async function GET(request),export default function handler,Medium,https://nextjs.org/docs/app/building-your-application/routing/route-handlers
30
- 29,API,Return proper Response objects,Use NextResponse for API responses,NextResponse.json() for JSON,Plain objects or res.json(),return NextResponse.json({ data }),return { data },Medium,
31
- 30,API,Handle HTTP methods explicitly,Export named functions for methods,Export GET POST PUT DELETE,Single handler for all methods,export async function POST(),switch(req.method),Low,
32
- 31,API,Validate request body,Validate input before processing,Zod or similar for validation,Trust client input,const body = schema.parse(await req.json()),const body = await req.json(),High,
33
- 32,Middleware,Use middleware for auth,Protect routes with middleware.ts,middleware.ts at root,Auth check in every page,export function middleware(request),if (!session) redirect in page,Medium,https://nextjs.org/docs/app/building-your-application/routing/middleware
34
- 33,Middleware,Match specific paths,Configure middleware matcher,config.matcher for specific routes,Run middleware on all routes,matcher: ['/dashboard/:path*'],No matcher config,Medium,
35
- 34,Middleware,Keep middleware edge-compatible,Middleware runs on Edge runtime,Edge-compatible code only,Node.js APIs in middleware,Edge-compatible auth check,fs.readFile in middleware,High,
36
- 35,Environment,Use NEXT_PUBLIC prefix,Client-accessible env vars need prefix,NEXT_PUBLIC_ for client vars,Server vars exposed to client,NEXT_PUBLIC_API_URL,API_SECRET in client code,High,https://nextjs.org/docs/app/building-your-application/configuring/environment-variables
37
- 36,Environment,Validate env vars,Check required env vars exist,Validate on startup,Undefined env at runtime,if (!process.env.DATABASE_URL) throw,process.env.DATABASE_URL (might be undefined),High,
38
- 37,Environment,Use .env.local for secrets,Local env file for development secrets,.env.local gitignored,Secrets in .env committed,.env.local with secrets,.env with DATABASE_PASSWORD,High,
39
- 38,Performance,Analyze bundle size,Use @next/bundle-analyzer,Bundle analyzer in dev,Ship large bundles blindly,ANALYZE=true npm run build,No bundle analysis,Medium,https://nextjs.org/docs/app/building-your-application/optimizing/bundle-analyzer
40
- 39,Performance,Use dynamic imports,Code split with next/dynamic,dynamic() for heavy components,Import everything statically,const Chart = dynamic(() => import('./Chart')),import Chart from './Chart',Medium,https://nextjs.org/docs/app/building-your-application/optimizing/lazy-loading
41
- 40,Performance,Avoid layout shifts,Reserve space for dynamic content,Skeleton loaders aspect ratios,Content popping in,"<Skeleton className=""h-48""/>",No placeholder for async content,High,
42
- 41,Performance,Use Partial Prerendering,Combine static and dynamic in one route,Static shell with Suspense holes,Full dynamic or static pages,Static header + dynamic content,Entire page SSR,Low,https://nextjs.org/docs/app/building-your-application/rendering/partial-prerendering
43
- 42,Link,Use next/link for navigation,Client-side navigation with prefetching,"<Link href=""""> for internal links",<a> for internal navigation,"<Link href=""/about"">About</Link>","<a href=""/about"">About</a>",High,https://nextjs.org/docs/app/api-reference/components/link
44
- 43,Link,Prefetch strategically,Control prefetching behavior,prefetch={false} for low-priority,Prefetch all links,<Link prefetch={false}>,Default prefetch on every link,Low,
45
- 44,Link,Use scroll option appropriately,Control scroll behavior on navigation,scroll={false} for tabs pagination,Always scroll to top,<Link scroll={false}>,Manual scroll management,Low,
46
- 45,Config,Use next.config.js correctly,Configure Next.js behavior,Proper config options,Deprecated or wrong options,images: { remotePatterns: [] },images: { domains: [] },Medium,https://nextjs.org/docs/app/api-reference/next-config-js
47
- 46,Config,Enable strict mode,Catch potential issues early,reactStrictMode: true,Strict mode disabled,reactStrictMode: true,reactStrictMode: false,Medium,
48
- 47,Config,Configure redirects and rewrites,Use config for URL management,redirects() rewrites() in config,Manual redirect handling,redirects: async () => [...],res.redirect in pages,Medium,https://nextjs.org/docs/app/api-reference/next-config-js/redirects
49
- 48,Deployment,Use Vercel for easiest deploy,Vercel optimized for Next.js,Deploy to Vercel,Self-host without knowledge,vercel deploy,Complex Docker setup for simple app,Low,https://nextjs.org/docs/app/building-your-application/deploying
50
- 49,Deployment,Configure output for self-hosting,Set output option for deployment target,output: 'standalone' for Docker,Default output for containers,output: 'standalone',No output config for Docker,Medium,https://nextjs.org/docs/app/building-your-application/deploying#self-hosting
51
- 50,Security,Sanitize user input,Never trust user input,Escape sanitize validate all input,Direct interpolation of user data,DOMPurify.sanitize(userInput),dangerouslySetInnerHTML={{ __html: userInput }},High,
52
- 51,Security,Use CSP headers,Content Security Policy for XSS protection,Configure CSP in next.config.js,No security headers,headers() with CSP,No CSP configuration,High,https://nextjs.org/docs/app/building-your-application/configuring/content-security-policy
53
- 52,Security,Validate Server Action input,Server Actions are public endpoints,Validate and authorize in Server Action,Trust Server Action input,Auth check + validation in action,Direct database call without check,High,
@@ -1,52 +0,0 @@
1
- No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
2
- 1,Components,Use functional components,Hooks-based components are standard,Functional components with hooks,Class components,const App = () => { },class App extends Component,Medium,https://reactnative.dev/docs/intro-react
3
- 2,Components,Keep components small,Single responsibility principle,Split into smaller components,Large monolithic components,<Header /><Content /><Footer />,500+ line component,Medium,
4
- 3,Components,Use TypeScript,Type safety for props and state,TypeScript for new projects,JavaScript without types,const Button: FC<Props> = () => { },const Button = (props) => { },Medium,
5
- 4,Components,Colocate component files,Keep related files together,Component folder with styles,Flat structure,components/Button/index.tsx styles.ts,components/Button.tsx styles/button.ts,Low,
6
- 5,Styling,Use StyleSheet.create,Optimized style objects,StyleSheet for all styles,Inline style objects,StyleSheet.create({ container: {} }),style={{ margin: 10 }},High,https://reactnative.dev/docs/stylesheet
7
- 6,Styling,Avoid inline styles,Prevent object recreation,Styles in StyleSheet,Inline style objects in render,style={styles.container},"style={{ margin: 10, padding: 5 }}",Medium,
8
- 7,Styling,Use flexbox for layout,React Native uses flexbox,flexDirection alignItems justifyContent,Absolute positioning everywhere,flexDirection: 'row',position: 'absolute' everywhere,Medium,https://reactnative.dev/docs/flexbox
9
- 8,Styling,Handle platform differences,Platform-specific styles,Platform.select or .ios/.android files,Same styles for both platforms,"Platform.select({ ios: {}, android: {} })",Hardcoded iOS values,Medium,https://reactnative.dev/docs/platform-specific-code
10
- 9,Styling,Use responsive dimensions,Scale for different screens,Dimensions or useWindowDimensions,Fixed pixel values,useWindowDimensions(),width: 375,Medium,
11
- 10,Navigation,Use React Navigation,Standard navigation library,React Navigation for routing,Manual navigation management,createStackNavigator(),Custom navigation state,Medium,https://reactnavigation.org/
12
- 11,Navigation,Type navigation params,Type-safe navigation,Typed navigation props,Untyped navigation,"navigation.navigate<RootStackParamList>('Home', { id })","navigation.navigate('Home', { id })",Medium,
13
- 12,Navigation,Use deep linking,Support URL-based navigation,Configure linking prop,No deep link support,linking: { prefixes: [] },No linking configuration,Medium,https://reactnavigation.org/docs/deep-linking/
14
- 13,Navigation,Handle back button,Android back button handling,useFocusEffect with BackHandler,Ignore back button,BackHandler.addEventListener,No back handler,High,
15
- 14,State,Use useState for local state,Simple component state,useState for UI state,Class component state,"const [count, setCount] = useState(0)",this.state = { count: 0 },Medium,
16
- 15,State,Use useReducer for complex state,Complex state logic,useReducer for related state,Multiple useState for related values,useReducer(reducer initialState),5+ useState calls,Medium,
17
- 16,State,Use context sparingly,Context for global state,Context for theme auth locale,Context for frequently changing data,ThemeContext for app theme,Context for list item data,Medium,
18
- 17,State,Consider Zustand or Redux,External state management,Zustand for simple Redux for complex,useState for global state,create((set) => ({ })),Prop drilling global state,Medium,
19
- 18,Lists,Use FlatList for long lists,Virtualized list rendering,FlatList for 50+ items,ScrollView with map,<FlatList data={items} />,<ScrollView>{items.map()}</ScrollView>,High,https://reactnative.dev/docs/flatlist
20
- 19,Lists,Provide keyExtractor,Unique keys for list items,keyExtractor with stable ID,Index as key,keyExtractor={(item) => item.id},"keyExtractor={(_, index) => index}",High,
21
- 20,Lists,Optimize renderItem,Memoize list item components,React.memo for list items,Inline render function,renderItem={({ item }) => <MemoizedItem item={item} />},renderItem={({ item }) => <View>...</View>},High,
22
- 21,Lists,Use getItemLayout for fixed height,Skip measurement for performance,getItemLayout when height known,Dynamic measurement for fixed items,"getItemLayout={(_, index) => ({ length: 50, offset: 50 * index, index })}",No getItemLayout for fixed height,Medium,
23
- 22,Lists,Implement windowSize,Control render window,Smaller windowSize for memory,Default windowSize for large lists,windowSize={5},windowSize={21} for huge lists,Medium,
24
- 23,Performance,Use React.memo,Prevent unnecessary re-renders,memo for pure components,No memoization,export default memo(MyComponent),export default MyComponent,Medium,
25
- 24,Performance,Use useCallback for handlers,Stable function references,useCallback for props,New function on every render,"useCallback(() => {}, [deps])",() => handlePress(),Medium,
26
- 25,Performance,Use useMemo for expensive ops,Cache expensive calculations,useMemo for heavy computations,Recalculate every render,"useMemo(() => expensive(), [deps])",const result = expensive(),Medium,
27
- 26,Performance,Avoid anonymous functions in JSX,Prevent re-renders,Named handlers or useCallback,Inline arrow functions,onPress={handlePress},onPress={() => doSomething()},Medium,
28
- 27,Performance,Use Hermes engine,Improved startup and memory,Enable Hermes in build,JavaScriptCore for new projects,hermes_enabled: true,hermes_enabled: false,Medium,https://reactnative.dev/docs/hermes
29
- 28,Images,Use expo-image,Modern performant image component for React Native,"Use expo-image for caching, blurring, and performance",Use default Image for heavy lists or unmaintained libraries,<Image source={url} cachePolicy='memory-disk' /> (expo-image),<FastImage source={url} />,Medium,https://docs.expo.dev/versions/latest/sdk/image/
30
- 29,Images,Specify image dimensions,Prevent layout shifts,width and height for remote images,No dimensions for network images,<Image style={{ width: 100 height: 100 }} />,<Image source={{ uri }} /> no size,High,
31
- 30,Images,Use resizeMode,Control image scaling,resizeMode cover contain,Stretch images,"resizeMode=""cover""",No resizeMode,Low,
32
- 31,Forms,Use controlled inputs,State-controlled form fields,value + onChangeText,Uncontrolled inputs,<TextInput value={text} onChangeText={setText} />,<TextInput defaultValue={text} />,Medium,
33
- 32,Forms,Handle keyboard,Manage keyboard visibility,KeyboardAvoidingView,Content hidden by keyboard,"<KeyboardAvoidingView behavior=""padding"">",No keyboard handling,High,https://reactnative.dev/docs/keyboardavoidingview
34
- 33,Forms,Use proper keyboard types,Appropriate keyboard for input,keyboardType for input type,Default keyboard for all,"keyboardType=""email-address""","keyboardType=""default"" for email",Low,
35
- 34,Touch,Use Pressable,Modern touch handling,Pressable for touch interactions,TouchableOpacity for new code,<Pressable onPress={} />,<TouchableOpacity onPress={} />,Low,https://reactnative.dev/docs/pressable
36
- 35,Touch,Provide touch feedback,Visual feedback on press,Ripple or opacity change,No feedback on press,android_ripple={{ color: 'gray' }},No press feedback,Medium,
37
- 36,Touch,Set hitSlop for small targets,Increase touch area,hitSlop for icons and small buttons,Tiny touch targets,hitSlop={{ top: 10 bottom: 10 }},44x44 with no hitSlop,Medium,
38
- 37,Animation,Use Reanimated,High-performance animations,react-native-reanimated,Animated API for complex,useSharedValue useAnimatedStyle,Animated.timing for gesture,Medium,https://docs.swmansion.com/react-native-reanimated/
39
- 38,Animation,Run on UI thread,worklets for smooth animation,Run animations on UI thread,JS thread animations,runOnUI(() => {}),Animated on JS thread,High,
40
- 39,Animation,Use gesture handler,Native gesture recognition,react-native-gesture-handler,JS-based gesture handling,<GestureDetector>,<View onTouchMove={} />,Medium,https://docs.swmansion.com/react-native-gesture-handler/
41
- 40,Async,Handle loading states,Show loading indicators,ActivityIndicator during load,Empty screen during load,{isLoading ? <ActivityIndicator /> : <Content />},No loading state,Medium,
42
- 41,Async,Handle errors gracefully,Error boundaries and fallbacks,Error UI for failed requests,Crash on error,{error ? <ErrorView /> : <Content />},No error handling,High,
43
- 42,Async,Cancel async operations,Cleanup on unmount,AbortController or cleanup,Memory leaks from async,useEffect cleanup,No cleanup for subscriptions,High,
44
- 43,Accessibility,Add accessibility labels,Describe UI elements,accessibilityLabel for all interactive,Missing labels,"accessibilityLabel=""Submit form""",<Pressable> without label,High,https://reactnative.dev/docs/accessibility
45
- 44,Accessibility,Use accessibility roles,Semantic meaning,accessibilityRole for elements,Wrong roles,"accessibilityRole=""button""",No role for button,Medium,
46
- 45,Accessibility,Support screen readers,Test with TalkBack/VoiceOver,Test with screen readers,Skip accessibility testing,Regular TalkBack testing,No screen reader testing,High,
47
- 46,Testing,Use React Native Testing Library,Component testing,render and fireEvent,Enzyme or manual testing,render(<Component />),shallow(<Component />),Medium,https://callstack.github.io/react-native-testing-library/
48
- 47,Testing,Test on real devices,Real device behavior,Test on iOS and Android devices,Simulator only,Device testing in CI,Simulator only testing,High,
49
- 48,Testing,Use Detox for E2E,End-to-end testing,Detox for critical flows,Manual E2E testing,detox test,Manual testing only,Medium,https://wix.github.io/Detox/
50
- 49,Native,Use native modules carefully,Bridge has overhead,Batch native calls,Frequent bridge crossing,Batch updates,Call native on every keystroke,High,
51
- 50,Native,Use Expo when possible,Simplified development,Expo for standard features,Bare RN for simple apps,expo install package,react-native link package,Low,https://docs.expo.dev/
52
- 51,Native,Handle permissions,Request permissions properly,Check and request permissions,Assume permissions granted,PermissionsAndroid.request(),Access without permission check,High,https://reactnative.dev/docs/permissionsandroid
@@ -1,54 +0,0 @@
1
- No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
2
- 1,State,Use useState for local state,Simple component state should use useState hook,useState for form inputs toggles counters,Class components this.state,"const [count, setCount] = useState(0)",this.state = { count: 0 },Medium,https://react.dev/reference/react/useState
3
- 2,State,Lift state up when needed,Share state between siblings by lifting to parent,Lift shared state to common ancestor,Prop drilling through many levels,Parent holds state passes down,Deep prop chains,Medium,https://react.dev/learn/sharing-state-between-components
4
- 3,State,Use useReducer for complex state,Complex state logic benefits from reducer pattern,useReducer for state with multiple sub-values,Multiple useState for related values,useReducer with action types,5+ useState calls that update together,Medium,https://react.dev/reference/react/useReducer
5
- 4,State,Avoid unnecessary state,Derive values from existing state when possible,Compute derived values in render,Store derivable values in state,const total = items.reduce(...),"const [total, setTotal] = useState(0)",High,https://react.dev/learn/choosing-the-state-structure
6
- 5,State,Initialize state lazily,Use function form for expensive initial state,useState(() => computeExpensive()),useState(computeExpensive()),useState(() => JSON.parse(data)),useState(JSON.parse(data)),Medium,https://react.dev/reference/react/useState#avoiding-recreating-the-initial-state
7
- 6,Effects,Clean up effects,Return cleanup function for subscriptions timers,Return cleanup function in useEffect,No cleanup for subscriptions,useEffect(() => { sub(); return unsub; }),useEffect(() => { subscribe(); }),High,https://react.dev/reference/react/useEffect#connecting-to-an-external-system
8
- 7,Effects,Specify dependencies correctly,Include all values used inside effect in deps array,All referenced values in dependency array,Empty deps with external references,[value] when using value in effect,[] when using props/state in effect,High,https://react.dev/reference/react/useEffect#specifying-reactive-dependencies
9
- 8,Effects,Avoid unnecessary effects,Don't use effects for transforming data or events,Transform data during render handle events directly,useEffect for derived state or event handling,const filtered = items.filter(...),useEffect(() => setFiltered(items.filter(...))),High,https://react.dev/learn/you-might-not-need-an-effect
10
- 9,Effects,Use refs for non-reactive values,Store values that don't trigger re-renders in refs,useRef for interval IDs DOM elements,useState for values that don't need render,const intervalRef = useRef(null),"const [intervalId, setIntervalId] = useState()",Medium,https://react.dev/reference/react/useRef
11
- 10,Rendering,Use keys properly,Stable unique keys for list items,Use stable IDs as keys,Array index as key for dynamic lists,key={item.id},key={index},High,https://react.dev/learn/rendering-lists#keeping-list-items-in-order-with-key
12
- 11,Rendering,Memoize expensive calculations,Use useMemo for costly computations,useMemo for expensive filtering/sorting,Recalculate every render,"useMemo(() => expensive(), [deps])",const result = expensiveCalc(),Medium,https://react.dev/reference/react/useMemo
13
- 12,Rendering,Memoize callbacks passed to children,Use useCallback for functions passed as props,useCallback for handlers passed to memoized children,New function reference every render,"useCallback(() => {}, [deps])",const handler = () => {},Medium,https://react.dev/reference/react/useCallback
14
- 13,Rendering,Use React.memo wisely,Wrap components that render often with same props,memo for pure components with stable props,memo everything or nothing,memo(ExpensiveList),memo(SimpleButton),Low,https://react.dev/reference/react/memo
15
- 14,Rendering,Avoid inline object/array creation in JSX,Create objects outside render or memoize,Define style objects outside component,Inline objects in props,<div style={styles.container}>,<div style={{ margin: 10 }}>,Medium,
16
- 15,Components,Keep components small and focused,Single responsibility for each component,One concern per component,Large multi-purpose components,<UserAvatar /><UserName />,<UserCard /> with 500 lines,Medium,
17
- 16,Components,Use composition over inheritance,Compose components using children and props,Use children prop for flexibility,Inheritance hierarchies,<Card>{content}</Card>,class SpecialCard extends Card,Medium,https://react.dev/learn/thinking-in-react
18
- 17,Components,Colocate related code,Keep related components and hooks together,Related files in same directory,Flat structure with many files,components/User/UserCard.tsx,components/UserCard.tsx + hooks/useUser.ts,Low,
19
- 18,Components,Use fragments to avoid extra DOM,Fragment or <> for multiple elements without wrapper,<> for grouping without DOM node,Extra div wrappers,<>{items.map(...)}</>,<div>{items.map(...)}</div>,Low,https://react.dev/reference/react/Fragment
20
- 19,Props,Destructure props,Destructure props for cleaner component code,Destructure in function signature,props.name props.value throughout,"function User({ name, age })",function User(props),Low,
21
- 20,Props,Provide default props values,Use default parameters or defaultProps,Default values in destructuring,Undefined checks throughout,function Button({ size = 'md' }),if (size === undefined) size = 'md',Low,
22
- 21,Props,Avoid prop drilling,Use context or composition for deeply nested data,Context for global data composition for UI,Passing props through 5+ levels,<UserContext.Provider>,<A user={u}><B user={u}><C user={u}>,Medium,https://react.dev/learn/passing-data-deeply-with-context
23
- 22,Props,Validate props with TypeScript,Use TypeScript interfaces for prop types,interface Props { name: string },PropTypes or no validation,interface ButtonProps { onClick: () => void },Button.propTypes = {},Medium,
24
- 23,Events,Use synthetic events correctly,React normalizes events across browsers,e.preventDefault() e.stopPropagation(),Access native event unnecessarily,onClick={(e) => e.preventDefault()},onClick={(e) => e.nativeEvent.preventDefault()},Low,https://react.dev/reference/react-dom/components/common#react-event-object
25
- 24,Events,Avoid binding in render,Use arrow functions in class or hooks,Arrow functions in functional components,bind in render or constructor,const handleClick = () => {},this.handleClick.bind(this),Medium,
26
- 25,Events,Pass event handlers not call results,Pass function reference not invocation,onClick={handleClick},onClick={handleClick()} causing immediate call,onClick={handleClick},onClick={handleClick()},High,
27
- 26,Forms,Controlled components for forms,Use state to control form inputs,value + onChange for inputs,Uncontrolled inputs with refs,<input value={val} onChange={setVal}>,<input ref={inputRef}>,Medium,https://react.dev/reference/react-dom/components/input#controlling-an-input-with-a-state-variable
28
- 27,Forms,Handle form submission properly,Prevent default and handle in submit handler,onSubmit with preventDefault,onClick on submit button only,<form onSubmit={handleSubmit}>,<button onClick={handleSubmit}>,Medium,
29
- 28,Forms,Debounce rapid input changes,Debounce search/filter inputs,useDeferredValue or debounce for search,Filter on every keystroke,useDeferredValue(searchTerm),useEffect filtering on every change,Medium,https://react.dev/reference/react/useDeferredValue
30
- 29,Hooks,Follow rules of hooks,Only call hooks at top level and in React functions,Hooks at component top level,Hooks in conditions loops or callbacks,"const [x, setX] = useState()","if (cond) { const [x, setX] = useState() }",High,https://react.dev/reference/rules/rules-of-hooks
31
- 30,Hooks,Custom hooks for reusable logic,Extract shared stateful logic to custom hooks,useCustomHook for reusable patterns,Duplicate hook logic across components,const { data } = useFetch(url),Duplicate useEffect/useState in components,Medium,https://react.dev/learn/reusing-logic-with-custom-hooks
32
- 31,Hooks,Name custom hooks with use prefix,Custom hooks must start with use,useFetch useForm useAuth,fetchData or getData for hook,function useFetch(url),function fetchData(url),High,
33
- 32,Context,Use context for global data,Context for theme auth locale,Context for app-wide state,Context for frequently changing data,<ThemeContext.Provider>,Context for form field values,Medium,https://react.dev/learn/passing-data-deeply-with-context
34
- 33,Context,Split contexts by concern,Separate contexts for different domains,ThemeContext + AuthContext,One giant AppContext,<ThemeProvider><AuthProvider>,<AppProvider value={{theme user...}}>,Medium,
35
- 34,Context,Memoize context values,Prevent unnecessary re-renders with useMemo,useMemo for context value object,New object reference every render,"value={useMemo(() => ({...}), [])}","value={{ user, theme }}",High,
36
- 35,Performance,Use React DevTools Profiler,Profile to identify performance bottlenecks,Profile before optimizing,Optimize without measuring,React DevTools Profiler,Guessing at bottlenecks,Medium,https://react.dev/learn/react-developer-tools
37
- 36,Performance,Lazy load components,Use React.lazy for code splitting,lazy() for routes and heavy components,Import everything upfront,const Page = lazy(() => import('./Page')),import Page from './Page',Medium,https://react.dev/reference/react/lazy
38
- 37,Performance,Virtualize long lists,Use windowing for lists over 100 items,react-window or react-virtual,Render thousands of DOM nodes,<VirtualizedList items={items}/>,{items.map(i => <Item />)},High,
39
- 38,Performance,Batch state updates,React 18 auto-batches but be aware,Let React batch related updates,Manual batching with flushSync,setA(1); setB(2); // batched,flushSync(() => setA(1)),Low,https://react.dev/learn/queueing-a-series-of-state-updates
40
- 39,ErrorHandling,Use error boundaries,Catch JavaScript errors in component tree,ErrorBoundary wrapping sections,Let errors crash entire app,<ErrorBoundary><App/></ErrorBoundary>,No error handling,High,https://react.dev/reference/react/Component#catching-rendering-errors-with-an-error-boundary
41
- 40,ErrorHandling,Handle async errors,Catch errors in async operations,try/catch in async handlers,Unhandled promise rejections,try { await fetch() } catch(e) {},await fetch() // no catch,High,
42
- 41,Testing,Test behavior not implementation,Test what user sees and does,Test renders and interactions,Test internal state or methods,expect(screen.getByText('Hello')),expect(component.state.name),Medium,https://testing-library.com/docs/react-testing-library/intro/
43
- 42,Testing,Use testing-library queries,Use accessible queries,getByRole getByLabelText,getByTestId for everything,getByRole('button'),getByTestId('submit-btn'),Medium,https://testing-library.com/docs/queries/about#priority
44
- 43,Accessibility,Use semantic HTML,Proper HTML elements for their purpose,button for clicks nav for navigation,div with onClick for buttons,<button onClick={...}>,<div onClick={...}>,High,https://react.dev/reference/react-dom/components#all-html-components
45
- 44,Accessibility,Manage focus properly,Handle focus for modals dialogs,Focus trap in modals return focus on close,No focus management,useEffect to focus input,Modal without focus trap,High,
46
- 45,Accessibility,Announce dynamic content,Use ARIA live regions for updates,aria-live for dynamic updates,Silent updates to screen readers,"<div aria-live=""polite"">{msg}</div>",<div>{msg}</div>,Medium,
47
- 46,Accessibility,Label form controls,Associate labels with inputs,htmlFor matching input id,Placeholder as only label,"<label htmlFor=""email"">Email</label>","<input placeholder=""Email""/>",High,
48
- 47,TypeScript,Type component props,Define interfaces for all props,interface Props with all prop types,any or missing types,interface Props { name: string },function Component(props: any),High,
49
- 48,TypeScript,Type state properly,Provide types for useState,useState<Type>() for complex state,Inferred any types,useState<User | null>(null),useState(null),Medium,
50
- 49,TypeScript,Type event handlers,Use React event types,React.ChangeEvent<HTMLInputElement>,Generic Event type,onChange: React.ChangeEvent<HTMLInputElement>,onChange: Event,Medium,
51
- 50,TypeScript,Use generics for reusable components,Generic components for flexible typing,Generic props for list components,Union types for flexibility,<List<T> items={T[]}>,<List items={any[]}>,Medium,
52
- 51,Patterns,Container/Presentational split,Separate data logic from UI,Container fetches presentational renders,Mixed data and UI in one,<UserContainer><UserView/></UserContainer>,<User /> with fetch and render,Low,
53
- 52,Patterns,Render props for flexibility,Share code via render prop pattern,Render prop for customizable rendering,Duplicate logic across components,<DataFetcher render={data => ...}/>,Copy paste fetch logic,Low,https://react.dev/reference/react/cloneElement#passing-data-with-a-render-prop
54
- 53,Patterns,Compound components,Related components sharing state,Tab + TabPanel sharing context,Prop drilling between related,<Tabs><Tab/><TabPanel/></Tabs>,<Tabs tabs={[]} panels={[...]}/>,Low,
@@ -1,54 +0,0 @@
1
- No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
2
- 1,Reactivity,Use $: for reactive statements,Automatic dependency tracking,$: for derived values,Manual recalculation,$: doubled = count * 2,let doubled; count && (doubled = count * 2),Medium,https://svelte.dev/docs/svelte-components#script-3-$-marks-a-statement-as-reactive
3
- 2,Reactivity,Trigger reactivity with assignment,Svelte tracks assignments not mutations,Reassign arrays/objects to trigger update,Mutate without reassignment,"items = [...items, newItem]",items.push(newItem),High,https://svelte.dev/docs/svelte-components#script-2-assignments-are-reactive
4
- 3,Reactivity,Use $state in Svelte 5,Runes for explicit reactivity,let count = $state(0),Implicit reactivity in Svelte 5,let count = $state(0),let count = 0 (Svelte 5),Medium,https://svelte.dev/blog/runes
5
- 4,Reactivity,Use $derived for computed values,$derived replaces $: in Svelte 5,let doubled = $derived(count * 2),$: in Svelte 5,let doubled = $derived(count * 2),$: doubled = count * 2 (Svelte 5),Medium,
6
- 5,Reactivity,Use $effect for side effects,$effect replaces $: side effects,Use $effect for subscriptions,$: for side effects in Svelte 5,$effect(() => console.log(count)),$: console.log(count) (Svelte 5),Medium,
7
- 6,Props,Export let for props,Declare props with export let,export let propName,Props without export,export let count = 0,let count = 0,High,https://svelte.dev/docs/svelte-components#script-1-export-creates-a-component-prop
8
- 7,Props,Use $props in Svelte 5,$props rune for prop access,let { name } = $props(),export let in Svelte 5,"let { name, age = 0 } = $props()",export let name; export let age = 0,Medium,
9
- 8,Props,Provide default values,Default props with assignment,export let count = 0,Required props without defaults,export let count = 0,export let count,Low,
10
- 9,Props,Use spread props,Pass through unknown props,{...$$restProps} on elements,Manual prop forwarding,<button {...$$restProps}>,<button class={$$props.class}>,Low,https://svelte.dev/docs/basic-markup#attributes-and-props
11
- 10,Bindings,Use bind: for two-way binding,Simplified input handling,bind:value for inputs,on:input with manual update,<input bind:value={name}>,<input value={name} on:input={e => name = e.target.value}>,Low,https://svelte.dev/docs/element-directives#bind-property
12
- 11,Bindings,Bind to DOM elements,Reference DOM nodes,bind:this for element reference,querySelector in onMount,<div bind:this={el}>,onMount(() => el = document.querySelector()),Medium,
13
- 12,Bindings,Use bind:group for radios/checkboxes,Simplified group handling,bind:group for radio/checkbox groups,Manual checked handling,"<input type=""radio"" bind:group={selected}>","<input type=""radio"" checked={selected === value}>",Low,
14
- 13,Events,Use on: for event handlers,Event directive syntax,on:click={handler},addEventListener in onMount,<button on:click={handleClick}>,onMount(() => btn.addEventListener()),Medium,https://svelte.dev/docs/element-directives#on-eventname
15
- 14,Events,Forward events with on:event,Pass events to parent,on:click without handler,createEventDispatcher for DOM events,<button on:click>,"dispatch('click', event)",Low,
16
- 15,Events,Use createEventDispatcher,Custom component events,dispatch for custom events,on:event for custom events,"dispatch('save', { data })",on:save without dispatch,Medium,https://svelte.dev/docs/svelte#createeventdispatcher
17
- 16,Lifecycle,Use onMount for initialization,Run code after component mounts,onMount for setup and data fetching,Code in script body for side effects,onMount(() => fetchData()),fetchData() in script body,High,https://svelte.dev/docs/svelte#onmount
18
- 17,Lifecycle,Return cleanup from onMount,Automatic cleanup on destroy,Return function from onMount,Separate onDestroy for paired cleanup,onMount(() => { sub(); return unsub }),onMount(sub); onDestroy(unsub),Medium,
19
- 18,Lifecycle,Use onDestroy sparingly,Only when onMount cleanup not possible,onDestroy for non-mount cleanup,onDestroy for mount-related cleanup,onDestroy for store unsubscribe,onDestroy(() => clearInterval(id)),Low,
20
- 19,Lifecycle,Avoid beforeUpdate/afterUpdate,Usually not needed,Reactive statements instead,beforeUpdate for derived state,$: if (x) doSomething(),beforeUpdate(() => doSomething()),Low,
21
- 20,Stores,Use writable for mutable state,Basic reactive store,writable for shared mutable state,Local variables for shared state,const count = writable(0),let count = 0 in module,Medium,https://svelte.dev/docs/svelte-store#writable
22
- 21,Stores,Use readable for read-only state,External data sources,readable for derived/external data,writable for read-only data,"readable(0, set => interval(set))",writable(0) for timer,Low,https://svelte.dev/docs/svelte-store#readable
23
- 22,Stores,Use derived for computed stores,Combine or transform stores,derived for computed values,Manual subscription for derived,"derived(count, $c => $c * 2)",count.subscribe(c => doubled = c * 2),Medium,https://svelte.dev/docs/svelte-store#derived
24
- 23,Stores,Use $ prefix for auto-subscription,Automatic subscribe/unsubscribe,$storeName in components,Manual subscription,{$count},count.subscribe(c => value = c),High,
25
- 24,Stores,Clean up custom subscriptions,Unsubscribe when component destroys,Return unsubscribe from onMount,Leave subscriptions open,onMount(() => store.subscribe(fn)),store.subscribe(fn) in script,High,
26
- 25,Slots,Use slots for composition,Content projection,<slot> for flexible content,Props for all content,<slot>Default</slot>,"<Component content=""text""/>",Medium,https://svelte.dev/docs/special-elements#slot
27
- 26,Slots,Name slots for multiple areas,Multiple content areas,"<slot name=""header"">",Single slot for complex layouts,"<slot name=""header""><slot name=""footer"">",<slot> with complex conditionals,Low,
28
- 27,Slots,Check slot content with $$slots,Conditional slot rendering,$$slots.name for conditional rendering,Always render slot wrapper,"{#if $$slots.footer}<slot name=""footer""/>{/if}","<div><slot name=""footer""/></div>",Low,
29
- 28,Styling,Use scoped styles by default,Styles scoped to component,<style> for component styles,Global styles for component,:global() only when needed,<style> all global,Medium,https://svelte.dev/docs/svelte-components#style
30
- 29,Styling,Use :global() sparingly,Escape scoping when needed,:global for third-party styling,Global for all styles,:global(.external-lib),<style> without scoping,Medium,
31
- 30,Styling,Use CSS variables for theming,Dynamic styling,CSS custom properties,Inline styles for themes,"style=""--color: {color}""","style=""color: {color}""",Low,
32
- 31,Transitions,Use built-in transitions,Svelte transition directives,transition:fade for simple effects,Manual CSS transitions,<div transition:fade>,<div class:fade={visible}>,Low,https://svelte.dev/docs/element-directives#transition-fn
33
- 32,Transitions,Use in: and out: separately,Different enter/exit animations,in:fly out:fade for asymmetric,Same transition for both,<div in:fly out:fade>,<div transition:fly>,Low,
34
- 33,Transitions,Add local modifier,Prevent ancestor trigger,transition:fade|local,Global transitions for lists,<div transition:slide|local>,<div transition:slide>,Medium,
35
- 34,Actions,Use actions for DOM behavior,Reusable DOM logic,use:action for DOM enhancements,onMount for each usage,<div use:clickOutside>,onMount(() => setupClickOutside(el)),Medium,https://svelte.dev/docs/element-directives#use-action
36
- 35,Actions,Return update and destroy,Lifecycle methods for actions,"Return { update, destroy }",Only initial setup,"return { update(params) {}, destroy() {} }",return destroy only,Medium,
37
- 36,Actions,Pass parameters to actions,Configure action behavior,use:action={params},Hardcoded action behavior,<div use:tooltip={options}>,<div use:tooltip>,Low,
38
- 37,Logic,Use {#if} for conditionals,Template conditionals,{#if} {:else if} {:else},Ternary in expressions,{#if cond}...{:else}...{/if},{cond ? a : b} for complex,Low,https://svelte.dev/docs/logic-blocks#if
39
- 38,Logic,Use {#each} for lists,List rendering,{#each} with key,Map in expression,{#each items as item (item.id)},{items.map(i => `<div>${i}</div>`)},Medium,
40
- 39,Logic,Always use keys in {#each},Proper list reconciliation,(item.id) for unique key,Index as key or no key,{#each items as item (item.id)},"{#each items as item, i (i)}",High,
41
- 40,Logic,Use {#await} for promises,Handle async states,{#await} for loading/error states,Manual promise handling,{#await promise}...{:then}...{:catch},{#if loading}...{#if error},Medium,https://svelte.dev/docs/logic-blocks#await
42
- 41,SvelteKit,Use +page.svelte for routes,File-based routing,+page.svelte for route components,Custom routing setup,routes/about/+page.svelte,routes/About.svelte,Medium,https://kit.svelte.dev/docs/routing
43
- 42,SvelteKit,Use +page.js for data loading,Load data before render,load function in +page.js,onMount for data fetching,export function load() {},onMount(() => fetchData()),High,https://kit.svelte.dev/docs/load
44
- 43,SvelteKit,Use +page.server.js for server-only,Server-side data loading,+page.server.js for sensitive data,+page.js for API keys,+page.server.js with DB access,+page.js with DB access,High,
45
- 44,SvelteKit,Use form actions,Server-side form handling,+page.server.js actions,API routes for forms,export const actions = { default },fetch('/api/submit'),Medium,https://kit.svelte.dev/docs/form-actions
46
- 45,SvelteKit,Use $app/stores for app state,$page $navigating $updated,$page for current page data,Manual URL parsing,import { page } from '$app/stores',window.location.pathname,Medium,https://kit.svelte.dev/docs/modules#$app-stores
47
- 46,Performance,Use {#key} for forced re-render,Reset component state,{#key id} for fresh instance,Manual destroy/create,{#key item.id}<Component/>{/key},on:change={() => component = null},Low,https://svelte.dev/docs/logic-blocks#key
48
- 47,Performance,Avoid unnecessary reactivity,Not everything needs $:,$: only for side effects,$: for simple assignments,$: if (x) console.log(x),$: y = x (when y = x works),Low,
49
- 48,Performance,Use immutable compiler option,Skip equality checks,immutable: true for large lists,Default for all components,<svelte:options immutable/>,Default without immutable,Low,
50
- 49,TypeScript,"Use lang=""ts"" in script",TypeScript support,"<script lang=""ts"">",JavaScript for typed projects,"<script lang=""ts"">",<script> with JSDoc,Medium,https://svelte.dev/docs/typescript
51
- 50,TypeScript,Type props with interface,Explicit prop types,interface $$Props for types,Untyped props,interface $$Props { name: string },export let name,Medium,
52
- 51,TypeScript,Type events with createEventDispatcher,Type-safe events,createEventDispatcher<Events>(),Untyped dispatch,createEventDispatcher<{ save: Data }>(),createEventDispatcher(),Medium,
53
- 52,Accessibility,Use semantic elements,Proper HTML in templates,button nav main appropriately,div for everything,<button on:click>,<div on:click>,High,
54
- 53,Accessibility,Add aria to dynamic content,Accessible state changes,aria-live for updates,Silent dynamic updates,"<div aria-live=""polite"">{message}</div>",<div>{message}</div>,Medium,
@@ -1,51 +0,0 @@
1
- No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
2
- 1,Views,Use struct for views,SwiftUI views are value types,struct MyView: View,class MyView: View,struct ContentView: View { var body: some View },class ContentView: View,High,https://developer.apple.com/documentation/swiftui/view
3
- 2,Views,Keep views small and focused,Single responsibility for each view,Extract subviews for complex layouts,Large monolithic views,Extract HeaderView FooterView,500+ line View struct,Medium,
4
- 3,Views,Use body computed property,body returns the view hierarchy,var body: some View { },func body() -> some View,"var body: some View { Text(""Hello"") }",func body() -> Text,High,
5
- 4,Views,Prefer composition over inheritance,Compose views using ViewBuilder,Combine smaller views,Inheritance hierarchies,VStack { Header() Content() },class SpecialView extends BaseView,Medium,
6
- 5,State,Use @State for local state,Simple value types owned by view,@State for view-local primitives,@State for shared data,@State private var count = 0,@State var sharedData: Model,High,https://developer.apple.com/documentation/swiftui/state
7
- 6,State,Use @Binding for two-way data,Pass mutable state to child views,@Binding for child input,@State in child for parent data,@Binding var isOn: Bool,$isOn to pass binding,Medium,https://developer.apple.com/documentation/swiftui/binding
8
- 7,State,Use @StateObject for reference types,ObservableObject owned by view,@StateObject for view-created objects,@ObservedObject for owned objects,@StateObject private var vm = ViewModel(),@ObservedObject var vm = ViewModel(),High,https://developer.apple.com/documentation/swiftui/stateobject
9
- 8,State,Use @ObservedObject for injected objects,Reference types passed from parent,@ObservedObject for injected dependencies,@StateObject for injected objects,@ObservedObject var vm: ViewModel,@StateObject var vm: ViewModel (injected),High,https://developer.apple.com/documentation/swiftui/observedobject
10
- 9,State,Use @EnvironmentObject for shared state,App-wide state injection,@EnvironmentObject for global state,Prop drilling through views,@EnvironmentObject var settings: Settings,Pass settings through 5 views,Medium,https://developer.apple.com/documentation/swiftui/environmentobject
11
- 10,State,Use @Published in ObservableObject,Automatically publish property changes,@Published for observed properties,Manual objectWillChange calls,@Published var items: [Item] = [],var items: [Item] { didSet { objectWillChange.send() } },Medium,
12
- 11,Observable,Use @Observable macro (iOS 17+),Modern observation without Combine,@Observable class for view models,ObservableObject for new projects,@Observable class ViewModel { },class ViewModel: ObservableObject,Medium,https://developer.apple.com/documentation/observation
13
- 12,Observable,Use @Bindable for @Observable,Create bindings from @Observable,@Bindable var vm for bindings,@Binding with @Observable,@Bindable var viewModel,$viewModel.name with @Observable,Medium,
14
- 13,Layout,Use VStack HStack ZStack,Standard stack-based layouts,Stacks for linear arrangements,GeometryReader for simple layouts,VStack { Text() Image() },GeometryReader for vertical list,Medium,https://developer.apple.com/documentation/swiftui/vstack
15
- 14,Layout,Use LazyVStack LazyHStack for lists,Lazy loading for performance,Lazy stacks for long lists,Regular stacks for 100+ items,LazyVStack { ForEach(items) },VStack { ForEach(largeArray) },High,https://developer.apple.com/documentation/swiftui/lazyvstack
16
- 15,Layout,Use GeometryReader sparingly,Only when needed for sizing,GeometryReader for responsive layouts,GeometryReader everywhere,GeometryReader for aspect ratio,GeometryReader wrapping everything,Medium,
17
- 16,Layout,Use spacing and padding consistently,Consistent spacing throughout app,Design system spacing values,Magic numbers for spacing,.padding(16) or .padding(),".padding(13), .padding(17)",Low,
18
- 17,Layout,Use frame modifiers correctly,Set explicit sizes when needed,.frame(maxWidth: .infinity),Fixed sizes for responsive content,.frame(maxWidth: .infinity),.frame(width: 375),Medium,
19
- 18,Modifiers,Order modifiers correctly,Modifier order affects rendering,Background before padding for full coverage,Wrong modifier order,.padding().background(Color.red),.background(Color.red).padding(),High,
20
- 19,Modifiers,Create custom ViewModifiers,Reusable modifier combinations,ViewModifier for repeated styling,Duplicate modifier chains,struct CardStyle: ViewModifier,.shadow().cornerRadius() everywhere,Medium,https://developer.apple.com/documentation/swiftui/viewmodifier
21
- 20,Modifiers,Use conditional modifiers carefully,Avoid changing view identity,if-else with same view type,Conditional that changes view identity,Text(title).foregroundColor(isActive ? .blue : .gray),if isActive { Text().bold() } else { Text() },Medium,
22
- 21,Navigation,Use NavigationStack (iOS 16+),Modern navigation with type-safe paths,NavigationStack with navigationDestination,NavigationView for new projects,NavigationStack { },NavigationView { } (deprecated),Medium,https://developer.apple.com/documentation/swiftui/navigationstack
23
- 22,Navigation,Use navigationDestination,Type-safe navigation destinations,.navigationDestination(for:),NavigationLink(destination:),.navigationDestination(for: Item.self),NavigationLink(destination: DetailView()),Medium,
24
- 23,Navigation,Use @Environment for dismiss,Programmatic navigation dismissal,@Environment(\.dismiss) var dismiss,presentationMode (deprecated),@Environment(\.dismiss) var dismiss,@Environment(\.presentationMode),Low,
25
- 24,Lists,Use List for scrollable content,Built-in scrolling and styling,List for standard scrollable content,ScrollView + VStack for simple lists,List { ForEach(items) { } },ScrollView { VStack { ForEach } },Low,https://developer.apple.com/documentation/swiftui/list
26
- 25,Lists,Provide stable identifiers,Use Identifiable or explicit id,Identifiable protocol or id parameter,Index as identifier,ForEach(items) where Item: Identifiable,"ForEach(items.indices, id: \.self)",High,
27
- 26,Lists,Use onDelete and onMove,Standard list editing,onDelete for swipe to delete,Custom delete implementation,.onDelete(perform: delete),.onTapGesture for delete,Low,
28
- 27,Forms,Use Form for settings,Grouped input controls,Form for settings screens,Manual grouping for forms,Form { Section { Toggle() } },VStack { Toggle() },Low,https://developer.apple.com/documentation/swiftui/form
29
- 28,Forms,Use @FocusState for keyboard,Manage keyboard focus,@FocusState for text field focus,Manual first responder handling,@FocusState private var isFocused: Bool,UIKit first responder,Medium,https://developer.apple.com/documentation/swiftui/focusstate
30
- 29,Forms,Validate input properly,Show validation feedback,Real-time validation feedback,Submit without validation,TextField with validation state,TextField without error handling,Medium,
31
- 30,Async,Use .task for async work,Automatic cancellation on view disappear,.task for view lifecycle async,onAppear with Task,.task { await loadData() },onAppear { Task { await loadData() } },Medium,https://developer.apple.com/documentation/swiftui/view/task(priority:_:)
32
- 31,Async,Handle loading states,Show progress during async operations,ProgressView during loading,Empty view during load,if isLoading { ProgressView() },No loading indicator,Medium,
33
- 32,Async,Use @MainActor for UI updates,Ensure UI updates on main thread,@MainActor on view models,Manual DispatchQueue.main,@MainActor class ViewModel,DispatchQueue.main.async,Medium,
34
- 33,Animation,Use withAnimation,Animate state changes,withAnimation for state transitions,No animation for state changes,withAnimation { isExpanded.toggle() },isExpanded.toggle(),Low,https://developer.apple.com/documentation/swiftui/withanimation(_:_:)
35
- 34,Animation,Use .animation modifier,Apply animations to views,.animation(.spring()) on view,Manual animation timing,.animation(.easeInOut),CABasicAnimation equivalent,Low,
36
- 35,Animation,Respect reduced motion,Check accessibility settings,Check accessibilityReduceMotion,Ignore motion preferences,@Environment(\.accessibilityReduceMotion),Always animate regardless,High,
37
- 36,Preview,Use #Preview macro (Xcode 15+),Modern preview syntax,#Preview for view previews,PreviewProvider protocol,#Preview { ContentView() },struct ContentView_Previews: PreviewProvider,Low,
38
- 37,Preview,Create multiple previews,Test different states and devices,Multiple previews for states,Single preview only,"#Preview(""Light"") { } #Preview(""Dark"") { }",Single preview configuration,Low,
39
- 38,Preview,Use preview data,Dedicated preview mock data,Static preview data,Production data in previews,Item.preview for preview,Fetch real data in preview,Low,
40
- 39,Performance,Avoid expensive body computations,Body should be fast to compute,Precompute in view model,Heavy computation in body,vm.computedValue in body,Complex calculation in body,High,
41
- 40,Performance,Use Equatable views,Skip unnecessary view updates,Equatable for complex views,Default equality for all views,struct MyView: View Equatable,No Equatable conformance,Medium,
42
- 41,Performance,Profile with Instruments,Measure before optimizing,Use SwiftUI Instruments,Guess at performance issues,Profile with Instruments,Optimize without measuring,Medium,
43
- 42,Accessibility,Add accessibility labels,Describe UI elements,.accessibilityLabel for context,Missing labels,".accessibilityLabel(""Close button"")",Button without label,High,https://developer.apple.com/documentation/swiftui/view/accessibilitylabel(_:)-1d7jv
44
- 43,Accessibility,Support Dynamic Type,Respect text size preferences,Scalable fonts and layouts,Fixed font sizes,.font(.body) with Dynamic Type,.font(.system(size: 16)),High,
45
- 44,Accessibility,Use semantic views,Proper accessibility traits,Correct accessibilityTraits,Wrong semantic meaning,Button for actions Image for display,Image that acts like button,Medium,
46
- 45,Testing,Use ViewInspector for testing,Third-party view testing,ViewInspector for unit tests,UI tests only,ViewInspector assertions,Only XCUITest,Medium,
47
- 46,Testing,Test view models,Unit test business logic,XCTest for view model,Skip view model testing,Test ViewModel methods,No unit tests,Medium,
48
- 47,Testing,Use preview as visual test,Previews catch visual regressions,Multiple preview configurations,No visual verification,Preview different states,Single preview only,Low,
49
- 48,Architecture,Use MVVM pattern,Separate view and logic,ViewModel for business logic,Logic in View,ObservableObject ViewModel,@State for complex logic,Medium,
50
- 49,Architecture,Keep views dumb,Views display view model state,View reads from ViewModel,Business logic in View,view.items from vm.items,Complex filtering in View,Medium,
51
- 50,Architecture,Use dependency injection,Inject dependencies for testing,Initialize with dependencies,Hard-coded dependencies,init(service: ServiceProtocol),let service = RealService(),Medium,