cokit-cli 1.2.6 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (471) hide show
  1. package/README.md +9 -42
  2. package/agents/brainstormer.agent.md +28 -14
  3. package/agents/code-reviewer.agent.md +101 -67
  4. package/agents/code-simplifier.agent.md +36 -41
  5. package/agents/debugger.agent.md +29 -24
  6. package/agents/docs-manager.agent.md +15 -23
  7. package/agents/fullstack-developer.agent.md +16 -6
  8. package/agents/git-manager.agent.md +0 -3
  9. package/agents/planner.agent.md +16 -34
  10. package/agents/project-manager.agent.md +24 -0
  11. package/agents/researcher.agent.md +15 -13
  12. package/agents/tester.agent.md +43 -20
  13. package/agents/ui-ux-designer.agent.md +16 -49
  14. package/docs/README.md +8 -9
  15. package/docs/Skills Orchestration Layer - Training Slides - en.pdf +0 -0
  16. package/docs/Skills Orchestration Layer - Training Slides - vi.pdf +0 -0
  17. package/docs/code-standards.md +1 -2
  18. package/docs/codebase-summary.md +35 -66
  19. package/docs/cokit-commands-usage-guide.md +27 -73
  20. package/docs/cokit-comprehensive-mapping-guide.md +9 -15
  21. package/docs/cokit-slides.md +4 -9
  22. package/docs/cokit-sync-and-maintenance-guide.md +42 -190
  23. package/docs/cokit-team-presentation.md +6 -11
  24. package/docs/copilot-processing-flow.md +3 -3
  25. package/docs/migration-guide.md +15 -15
  26. package/docs/project-overview-pdr.md +6 -7
  27. package/docs/project-roadmap.md +13 -15
  28. package/docs/skills-and-orchestration-layer-en.md +404 -0
  29. package/docs/skills-and-orchestration-layer-vi.md +404 -0
  30. package/docs/system-architecture.md +14 -20
  31. package/docs/{claudekit-porting-rules.md → upstream-porting-rules.md} +15 -16
  32. package/package.json +3 -4
  33. package/prompts/ck-ask.prompt.md +0 -1
  34. package/prompts/ck-bootstrap.prompt.md +0 -3
  35. package/prompts/ck-brainstorm.prompt.md +0 -1
  36. package/prompts/ck-cook.prompt.md +0 -1
  37. package/prompts/ck-debug.prompt.md +0 -1
  38. package/prompts/ck-deploy.prompt.md +22 -0
  39. package/prompts/ck-docs.prompt.md +0 -1
  40. package/prompts/ck-frontend.prompt.md +20 -0
  41. package/prompts/ck-help.prompt.md +0 -1
  42. package/prompts/ck-plan-fast.prompt.md +0 -3
  43. package/prompts/ck-plan-hard.prompt.md +0 -3
  44. package/prompts/ck-plan.prompt.md +0 -3
  45. package/prompts/ck-project.prompt.md +20 -0
  46. package/prompts/ck-review.prompt.md +0 -3
  47. package/prompts/ck-scout.prompt.md +0 -1
  48. package/prompts/ck-security.prompt.md +22 -0
  49. package/prompts/ck-ship.prompt.md +22 -0
  50. package/prompts/ck-test.prompt.md +0 -2
  51. package/prompts/ck-watzup.prompt.md +0 -1
  52. package/skills/agent-browser/SKILL.md +11 -8
  53. package/skills/agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
  54. package/skills/bootstrap/SKILL.md +102 -0
  55. package/skills/bootstrap/references/shared-phases.md +59 -0
  56. package/skills/bootstrap/references/workflow-auto.md +52 -0
  57. package/skills/bootstrap/references/workflow-fast.md +50 -0
  58. package/skills/bootstrap/references/workflow-full.md +60 -0
  59. package/skills/bootstrap/references/workflow-parallel.md +59 -0
  60. package/skills/brainstorm/SKILL.md +63 -15
  61. package/skills/code-review/SKILL.md +138 -135
  62. package/skills/code-review/references/adversarial-review.md +223 -0
  63. package/skills/code-review/references/checklist-workflow.md +100 -0
  64. package/skills/code-review/references/checklists/api.md +52 -0
  65. package/skills/code-review/references/checklists/base.md +100 -0
  66. package/skills/code-review/references/checklists/web-app.md +54 -0
  67. package/skills/code-review/references/code-review-reception.md +48 -144
  68. package/skills/code-review/references/codebase-scan-workflow.md +30 -0
  69. package/skills/code-review/references/edge-case-scouting.md +119 -0
  70. package/skills/code-review/references/input-mode-resolution.md +135 -0
  71. package/skills/code-review/references/parallel-review-workflow.md +76 -0
  72. package/skills/code-review/references/requesting-code-review.md +115 -104
  73. package/skills/code-review/references/spec-compliance-review.md +43 -0
  74. package/skills/code-review/references/task-management-reviews.md +155 -0
  75. package/skills/common/README.md +2 -12
  76. package/skills/common/api_key_helper.py +7 -37
  77. package/skills/context-engineering/SKILL.md +4 -3
  78. package/skills/context-engineering/references/context-degradation.md +2 -2
  79. package/skills/context-engineering/references/runtime-awareness.md +5 -47
  80. package/skills/cook/README.md +13 -13
  81. package/skills/cook/SKILL.md +86 -58
  82. package/skills/cook/references/intent-detection.md +7 -7
  83. package/skills/cook/references/review-cycle.md +2 -2
  84. package/skills/cook/references/subagent-patterns.md +75 -0
  85. package/skills/cook/references/workflow-steps.md +75 -23
  86. package/skills/databases/SKILL.md +3 -30
  87. package/skills/databases/db-design.md +1 -1
  88. package/skills/debug/SKILL.md +47 -105
  89. package/skills/debug/references/frontend-verification.md +103 -0
  90. package/skills/debug/references/investigation-methodology.md +101 -0
  91. package/skills/debug/references/log-and-ci-analysis.md +97 -0
  92. package/skills/debug/references/performance-diagnostics.md +113 -0
  93. package/skills/debug/references/reporting-standards.md +122 -0
  94. package/skills/debug/references/task-management-debugging.md +155 -0
  95. package/skills/deploy/SKILL.md +154 -0
  96. package/skills/deploy/references/platform-config-templates.md +35 -0
  97. package/skills/deploy/references/platforms/aws.md +58 -0
  98. package/skills/deploy/references/platforms/cloudflare.md +41 -0
  99. package/skills/deploy/references/platforms/coolify.md +32 -0
  100. package/skills/deploy/references/platforms/digitalocean.md +45 -0
  101. package/skills/deploy/references/platforms/dokploy.md +29 -0
  102. package/skills/deploy/references/platforms/flyio.md +54 -0
  103. package/skills/deploy/references/platforms/gcp.md +45 -0
  104. package/skills/deploy/references/platforms/github-pages.md +56 -0
  105. package/skills/deploy/references/platforms/heroku.md +31 -0
  106. package/skills/deploy/references/platforms/netlify.md +39 -0
  107. package/skills/deploy/references/platforms/railway.md +38 -0
  108. package/skills/deploy/references/platforms/render.md +39 -0
  109. package/skills/deploy/references/platforms/tose.md +35 -0
  110. package/skills/deploy/references/platforms/vercel.md +37 -0
  111. package/skills/deploy/references/platforms/vultr.md +27 -0
  112. package/skills/devops/SKILL.md +6 -12
  113. package/skills/docs-seeker/SKILL.md +2 -1
  114. package/skills/docs-seeker/references/context7-patterns.md +4 -0
  115. package/skills/docs-seeker/scripts/fetch-docs.js +1 -2
  116. package/skills/docs-seeker/scripts/utils/env-loader.js +4 -4
  117. package/skills/docs-seeker/workflows/library-search.md +1 -0
  118. package/skills/fix/SKILL.md +141 -44
  119. package/skills/fix/references/complexity-assessment.md +21 -9
  120. package/skills/fix/references/diagnosis-protocol.md +133 -0
  121. package/skills/fix/references/mode-selection.md +27 -11
  122. package/skills/fix/references/parallel-exploration.md +35 -12
  123. package/skills/fix/references/prevention-gate.md +87 -0
  124. package/skills/fix/references/review-cycle.md +3 -3
  125. package/skills/fix/references/skill-activation-matrix.md +64 -31
  126. package/skills/fix/references/task-orchestration.md +110 -0
  127. package/skills/fix/references/workflow-deep.md +110 -47
  128. package/skills/fix/references/workflow-logs.md +46 -10
  129. package/skills/fix/references/workflow-quick.md +43 -20
  130. package/skills/fix/references/workflow-standard.md +75 -41
  131. package/skills/fix/references/workflow-test.md +49 -10
  132. package/skills/fix/references/workflow-ui.md +56 -18
  133. package/skills/frontend-design/SKILL.md +109 -77
  134. package/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
  135. package/skills/frontend-design/references/anti-slop-rules.md +103 -0
  136. package/skills/frontend-design/references/asset-generation.md +284 -108
  137. package/skills/frontend-design/references/bento-motion-engine.md +142 -0
  138. package/skills/frontend-design/references/magicui-components.md +129 -0
  139. package/skills/frontend-design/references/performance-guardrails.md +169 -0
  140. package/skills/frontend-design/references/premium-design-patterns.md +93 -0
  141. package/skills/frontend-design/references/redesign-audit-checklist.md +114 -0
  142. package/skills/frontend-design/references/visual-analysis-overview.md +1 -1
  143. package/skills/frontend-design/references/workflow-3d.md +98 -0
  144. package/skills/frontend-design/references/workflow-describe.md +4 -3
  145. package/skills/frontend-design/references/workflow-immersive.md +82 -0
  146. package/skills/frontend-design/references/workflow-quick.md +10 -12
  147. package/skills/frontend-design/references/workflow-screenshot.md +9 -8
  148. package/skills/frontend-design/references/workflow-video.md +74 -0
  149. package/skills/frontend-development/SKILL.md +400 -0
  150. package/skills/frontend-development/resources/common-patterns.md +331 -0
  151. package/skills/frontend-development/resources/complete-examples.md +872 -0
  152. package/skills/frontend-development/resources/component-patterns.md +502 -0
  153. package/skills/frontend-development/resources/data-fetching.md +767 -0
  154. package/skills/frontend-development/resources/file-organization.md +502 -0
  155. package/skills/frontend-development/resources/loading-and-error-states.md +501 -0
  156. package/skills/frontend-development/resources/performance.md +406 -0
  157. package/skills/frontend-development/resources/routing-guide.md +364 -0
  158. package/skills/frontend-development/resources/styling-guide.md +428 -0
  159. package/skills/frontend-development/resources/typescript-standards.md +418 -0
  160. package/skills/git/SKILL.md +18 -4
  161. package/skills/git/references/commit-standards.md +3 -3
  162. package/skills/git/references/workflow-commit.md +3 -3
  163. package/skills/git/references/workflow-merge.md +1 -1
  164. package/skills/git/references/workflow-pr.md +1 -1
  165. package/skills/git/references/workflow-push.md +1 -1
  166. package/skills/mcp-management/README.md +18 -18
  167. package/skills/mcp-management/SKILL.md +16 -15
  168. package/skills/mcp-management/references/configuration.md +4 -4
  169. package/skills/mcp-management/references/gemini-cli-integration.md +12 -12
  170. package/skills/mcp-management/scripts/.env.example +2 -2
  171. package/skills/mcp-management/scripts/dist/mcp-client.js +1 -1
  172. package/skills/mcp-management/scripts/mcp-client.ts +1 -1
  173. package/skills/mermaidjs-v11/SKILL.md +1 -0
  174. package/skills/planning/SKILL.md +122 -91
  175. package/skills/planning/references/archive-workflow.md +53 -0
  176. package/skills/planning/references/codebase-understanding.md +1 -1
  177. package/skills/planning/references/output-standards.md +17 -13
  178. package/skills/planning/references/plan-organization.md +52 -30
  179. package/skills/planning/references/red-team-personas.md +69 -0
  180. package/skills/planning/references/red-team-workflow.md +77 -0
  181. package/skills/planning/references/scope-challenge.md +90 -0
  182. package/skills/planning/references/task-management.md +134 -0
  183. package/skills/planning/references/validate-question-framework.md +80 -0
  184. package/skills/planning/references/validate-workflow.md +65 -0
  185. package/skills/planning/references/workflow-modes.md +154 -0
  186. package/skills/problem-solving/SKILL.md +1 -0
  187. package/skills/project-management/SKILL.md +133 -0
  188. package/skills/project-management/references/documentation-triggers.md +60 -0
  189. package/skills/project-management/references/hydration-workflow.md +89 -0
  190. package/skills/project-management/references/progress-tracking.md +120 -0
  191. package/skills/project-management/references/reporting-patterns.md +94 -0
  192. package/skills/project-management/references/task-operations.md +87 -0
  193. package/skills/repomix/SKILL.md +3 -2
  194. package/skills/repomix/references/usage-patterns.md +2 -2
  195. package/skills/repomix/scripts/README.md +1 -1
  196. package/skills/repomix/scripts/repomix_batch.py +2 -2
  197. package/skills/research/SKILL.md +7 -4
  198. package/skills/scout/SKILL.md +24 -24
  199. package/skills/scout/references/external-scouting.md +17 -17
  200. package/skills/scout/references/internal-scouting.md +9 -9
  201. package/skills/scout/references/task-management-scouting.md +125 -0
  202. package/skills/security/SKILL.md +139 -0
  203. package/skills/security/references/stride-owasp-checklist.md +128 -0
  204. package/skills/sequential-thinking/README.md +3 -3
  205. package/skills/sequential-thinking/SKILL.md +2 -0
  206. package/skills/sequential-thinking/package.json +1 -1
  207. package/skills/ship/SKILL.md +116 -0
  208. package/skills/ship/references/auto-detect.md +103 -0
  209. package/skills/ship/references/pr-template.md +90 -0
  210. package/skills/ship/references/ship-workflow.md +241 -0
  211. package/skills/test/SKILL.md +111 -0
  212. package/skills/test/references/report-format.md +58 -0
  213. package/skills/test/references/test-execution-workflow.md +103 -0
  214. package/skills/test/references/ui-testing-workflow.md +65 -0
  215. package/skills/ui-styling/SKILL.md +2 -0
  216. package/skills/web-testing/SKILL.md +8 -60
  217. package/src/commands/add.js +0 -1
  218. package/src/commands/doctor.js +2 -2
  219. package/src/commands/init.js +19 -28
  220. package/src/commands/update.js +1 -1
  221. package/templates/repo/.github/agents/brainstormer.agent.md +28 -14
  222. package/templates/repo/.github/agents/code-reviewer.agent.md +101 -67
  223. package/templates/repo/.github/agents/code-simplifier.agent.md +36 -41
  224. package/templates/repo/.github/agents/debugger.agent.md +29 -24
  225. package/templates/repo/.github/agents/docs-manager.agent.md +15 -23
  226. package/templates/repo/.github/agents/fullstack-developer.agent.md +16 -6
  227. package/templates/repo/.github/agents/git-manager.agent.md +0 -3
  228. package/templates/repo/.github/agents/planner.agent.md +16 -34
  229. package/templates/repo/.github/agents/project-manager.agent.md +24 -0
  230. package/templates/repo/.github/agents/researcher.agent.md +15 -13
  231. package/templates/repo/.github/agents/tester.agent.md +43 -20
  232. package/templates/repo/.github/agents/ui-ux-designer.agent.md +16 -49
  233. package/templates/repo/.github/prompts/ck-ask.prompt.md +0 -1
  234. package/templates/repo/.github/prompts/ck-bootstrap.prompt.md +0 -3
  235. package/templates/repo/.github/prompts/ck-brainstorm.prompt.md +0 -1
  236. package/templates/repo/.github/prompts/ck-cook.prompt.md +0 -1
  237. package/templates/repo/.github/prompts/ck-debug.prompt.md +0 -1
  238. package/templates/repo/.github/prompts/ck-deploy.prompt.md +22 -0
  239. package/templates/repo/.github/prompts/ck-docs.prompt.md +0 -1
  240. package/templates/repo/.github/prompts/ck-frontend.prompt.md +20 -0
  241. package/templates/repo/.github/prompts/ck-help.prompt.md +0 -1
  242. package/templates/repo/.github/prompts/ck-plan-fast.prompt.md +0 -3
  243. package/templates/repo/.github/prompts/ck-plan-hard.prompt.md +0 -3
  244. package/templates/repo/.github/prompts/ck-plan.prompt.md +0 -3
  245. package/templates/repo/.github/prompts/ck-project.prompt.md +20 -0
  246. package/templates/repo/.github/prompts/ck-review.prompt.md +0 -3
  247. package/templates/repo/.github/prompts/ck-scout.prompt.md +0 -1
  248. package/templates/repo/.github/prompts/ck-security.prompt.md +22 -0
  249. package/templates/repo/.github/prompts/ck-ship.prompt.md +22 -0
  250. package/templates/repo/.github/prompts/ck-test.prompt.md +0 -2
  251. package/templates/repo/.github/prompts/ck-watzup.prompt.md +0 -1
  252. package/templates/repo/.github/skills/agent-browser/SKILL.md +11 -8
  253. package/templates/repo/.github/skills/agent-browser/references/agent-browser-vs-chrome-devtools.md +112 -0
  254. package/templates/repo/.github/skills/bootstrap/SKILL.md +102 -0
  255. package/templates/repo/.github/skills/bootstrap/references/shared-phases.md +59 -0
  256. package/templates/repo/.github/skills/bootstrap/references/workflow-auto.md +52 -0
  257. package/templates/repo/.github/skills/bootstrap/references/workflow-fast.md +50 -0
  258. package/templates/repo/.github/skills/bootstrap/references/workflow-full.md +60 -0
  259. package/templates/repo/.github/skills/bootstrap/references/workflow-parallel.md +59 -0
  260. package/templates/repo/.github/skills/brainstorm/SKILL.md +63 -15
  261. package/templates/repo/.github/skills/code-review/SKILL.md +138 -135
  262. package/templates/repo/.github/skills/code-review/references/adversarial-review.md +223 -0
  263. package/templates/repo/.github/skills/code-review/references/checklist-workflow.md +100 -0
  264. package/templates/repo/.github/skills/code-review/references/checklists/api.md +52 -0
  265. package/templates/repo/.github/skills/code-review/references/checklists/base.md +100 -0
  266. package/templates/repo/.github/skills/code-review/references/checklists/web-app.md +54 -0
  267. package/templates/repo/.github/skills/code-review/references/code-review-reception.md +48 -144
  268. package/templates/repo/.github/skills/code-review/references/codebase-scan-workflow.md +30 -0
  269. package/templates/repo/.github/skills/code-review/references/edge-case-scouting.md +119 -0
  270. package/templates/repo/.github/skills/code-review/references/input-mode-resolution.md +135 -0
  271. package/templates/repo/.github/skills/code-review/references/parallel-review-workflow.md +76 -0
  272. package/templates/repo/.github/skills/code-review/references/requesting-code-review.md +19 -8
  273. package/templates/repo/.github/skills/code-review/references/spec-compliance-review.md +43 -0
  274. package/templates/repo/.github/skills/code-review/references/task-management-reviews.md +155 -0
  275. package/templates/repo/.github/skills/common/README.md +2 -12
  276. package/templates/repo/.github/skills/common/api_key_helper.py +7 -37
  277. package/templates/repo/.github/skills/context-engineering/SKILL.md +4 -3
  278. package/templates/repo/.github/skills/context-engineering/references/context-degradation.md +2 -2
  279. package/templates/repo/.github/skills/context-engineering/references/runtime-awareness.md +5 -47
  280. package/templates/repo/.github/skills/cook/README.md +13 -13
  281. package/templates/repo/.github/skills/cook/SKILL.md +86 -58
  282. package/templates/repo/.github/skills/cook/references/intent-detection.md +7 -7
  283. package/templates/repo/.github/skills/cook/references/review-cycle.md +2 -2
  284. package/templates/repo/.github/skills/cook/references/subagent-patterns.md +75 -0
  285. package/templates/repo/.github/skills/cook/references/workflow-steps.md +75 -23
  286. package/templates/repo/.github/skills/databases/SKILL.md +3 -30
  287. package/templates/repo/.github/skills/databases/db-design.md +1 -1
  288. package/templates/repo/.github/skills/debug/SKILL.md +47 -105
  289. package/templates/repo/.github/skills/debug/references/frontend-verification.md +103 -0
  290. package/templates/repo/.github/skills/debug/references/investigation-methodology.md +101 -0
  291. package/templates/repo/.github/skills/debug/references/log-and-ci-analysis.md +97 -0
  292. package/templates/repo/.github/skills/debug/references/performance-diagnostics.md +113 -0
  293. package/templates/repo/.github/skills/debug/references/reporting-standards.md +122 -0
  294. package/templates/repo/.github/skills/debug/references/task-management-debugging.md +155 -0
  295. package/templates/repo/.github/skills/deploy/SKILL.md +154 -0
  296. package/templates/repo/.github/skills/deploy/references/platform-config-templates.md +35 -0
  297. package/templates/repo/.github/skills/deploy/references/platforms/aws.md +58 -0
  298. package/templates/repo/.github/skills/deploy/references/platforms/cloudflare.md +41 -0
  299. package/templates/repo/.github/skills/deploy/references/platforms/coolify.md +32 -0
  300. package/templates/repo/.github/skills/deploy/references/platforms/digitalocean.md +45 -0
  301. package/templates/repo/.github/skills/deploy/references/platforms/dokploy.md +29 -0
  302. package/templates/repo/.github/skills/deploy/references/platforms/flyio.md +54 -0
  303. package/templates/repo/.github/skills/deploy/references/platforms/gcp.md +45 -0
  304. package/templates/repo/.github/skills/deploy/references/platforms/github-pages.md +56 -0
  305. package/templates/repo/.github/skills/deploy/references/platforms/heroku.md +31 -0
  306. package/templates/repo/.github/skills/deploy/references/platforms/netlify.md +39 -0
  307. package/templates/repo/.github/skills/deploy/references/platforms/railway.md +38 -0
  308. package/templates/repo/.github/skills/deploy/references/platforms/render.md +39 -0
  309. package/templates/repo/.github/skills/deploy/references/platforms/tose.md +35 -0
  310. package/templates/repo/.github/skills/deploy/references/platforms/vercel.md +37 -0
  311. package/templates/repo/.github/skills/deploy/references/platforms/vultr.md +27 -0
  312. package/templates/repo/.github/skills/devops/SKILL.md +6 -12
  313. package/templates/repo/.github/skills/docs-seeker/SKILL.md +2 -1
  314. package/templates/repo/.github/skills/docs-seeker/references/context7-patterns.md +4 -0
  315. package/templates/repo/.github/skills/docs-seeker/scripts/fetch-docs.js +1 -2
  316. package/templates/repo/.github/skills/docs-seeker/scripts/utils/env-loader.js +4 -4
  317. package/templates/repo/.github/skills/docs-seeker/workflows/library-search.md +1 -0
  318. package/templates/repo/.github/skills/fix/SKILL.md +141 -44
  319. package/templates/repo/.github/skills/fix/references/complexity-assessment.md +21 -9
  320. package/templates/repo/.github/skills/fix/references/diagnosis-protocol.md +133 -0
  321. package/templates/repo/.github/skills/fix/references/mode-selection.md +27 -11
  322. package/templates/repo/.github/skills/fix/references/parallel-exploration.md +35 -12
  323. package/templates/repo/.github/skills/fix/references/prevention-gate.md +87 -0
  324. package/templates/repo/.github/skills/fix/references/review-cycle.md +3 -3
  325. package/templates/repo/.github/skills/fix/references/skill-activation-matrix.md +64 -31
  326. package/templates/repo/.github/skills/fix/references/task-orchestration.md +110 -0
  327. package/templates/repo/.github/skills/fix/references/workflow-deep.md +110 -47
  328. package/templates/repo/.github/skills/fix/references/workflow-logs.md +46 -10
  329. package/templates/repo/.github/skills/fix/references/workflow-quick.md +43 -20
  330. package/templates/repo/.github/skills/fix/references/workflow-standard.md +75 -41
  331. package/templates/repo/.github/skills/fix/references/workflow-test.md +49 -10
  332. package/templates/repo/.github/skills/fix/references/workflow-ui.md +56 -18
  333. package/templates/repo/.github/skills/frontend-design/SKILL.md +49 -17
  334. package/templates/repo/.github/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
  335. package/templates/repo/.github/skills/frontend-design/references/anti-slop-rules.md +103 -0
  336. package/templates/repo/.github/skills/frontend-design/references/asset-generation.md +284 -108
  337. package/templates/repo/.github/skills/frontend-design/references/bento-motion-engine.md +142 -0
  338. package/templates/repo/.github/skills/frontend-design/references/magicui-components.md +129 -0
  339. package/templates/repo/.github/skills/frontend-design/references/performance-guardrails.md +169 -0
  340. package/templates/repo/.github/skills/frontend-design/references/premium-design-patterns.md +93 -0
  341. package/templates/repo/.github/skills/frontend-design/references/redesign-audit-checklist.md +114 -0
  342. package/templates/repo/.github/skills/frontend-design/references/visual-analysis-overview.md +1 -1
  343. package/templates/repo/.github/skills/frontend-design/references/workflow-3d.md +98 -0
  344. package/templates/repo/.github/skills/frontend-design/references/workflow-describe.md +4 -3
  345. package/templates/repo/.github/skills/frontend-design/references/workflow-immersive.md +82 -0
  346. package/templates/repo/.github/skills/frontend-design/references/workflow-quick.md +10 -12
  347. package/templates/repo/.github/skills/frontend-design/references/workflow-screenshot.md +9 -8
  348. package/templates/repo/.github/skills/frontend-design/references/workflow-video.md +74 -0
  349. package/templates/repo/.github/skills/frontend-development/SKILL.md +400 -0
  350. package/templates/repo/.github/skills/frontend-development/resources/common-patterns.md +331 -0
  351. package/templates/repo/.github/skills/frontend-development/resources/complete-examples.md +872 -0
  352. package/templates/repo/.github/skills/frontend-development/resources/component-patterns.md +502 -0
  353. package/templates/repo/.github/skills/frontend-development/resources/data-fetching.md +767 -0
  354. package/templates/repo/.github/skills/frontend-development/resources/file-organization.md +502 -0
  355. package/templates/repo/.github/skills/frontend-development/resources/loading-and-error-states.md +501 -0
  356. package/templates/repo/.github/skills/frontend-development/resources/performance.md +406 -0
  357. package/templates/repo/.github/skills/frontend-development/resources/routing-guide.md +364 -0
  358. package/templates/repo/.github/skills/frontend-development/resources/styling-guide.md +428 -0
  359. package/templates/repo/.github/skills/frontend-development/resources/typescript-standards.md +418 -0
  360. package/templates/repo/.github/skills/git/SKILL.md +18 -4
  361. package/templates/repo/.github/skills/git/references/commit-standards.md +3 -3
  362. package/templates/repo/.github/skills/git/references/workflow-commit.md +3 -3
  363. package/templates/repo/.github/skills/git/references/workflow-merge.md +1 -1
  364. package/templates/repo/.github/skills/git/references/workflow-pr.md +1 -1
  365. package/templates/repo/.github/skills/git/references/workflow-push.md +1 -1
  366. package/templates/repo/.github/skills/mcp-management/README.md +18 -18
  367. package/templates/repo/.github/skills/mcp-management/SKILL.md +16 -15
  368. package/templates/repo/.github/skills/mcp-management/references/configuration.md +4 -4
  369. package/templates/repo/.github/skills/mcp-management/references/gemini-cli-integration.md +12 -12
  370. package/templates/repo/.github/skills/mcp-management/scripts/.env.example +2 -2
  371. package/templates/repo/.github/skills/mcp-management/scripts/mcp-client.ts +1 -1
  372. package/templates/repo/.github/skills/mermaidjs-v11/SKILL.md +1 -0
  373. package/templates/repo/.github/skills/planning/SKILL.md +122 -91
  374. package/templates/repo/.github/skills/planning/references/archive-workflow.md +53 -0
  375. package/templates/repo/.github/skills/planning/references/codebase-understanding.md +1 -1
  376. package/templates/repo/.github/skills/planning/references/output-standards.md +17 -13
  377. package/templates/repo/.github/skills/planning/references/plan-organization.md +52 -30
  378. package/templates/repo/.github/skills/planning/references/red-team-personas.md +69 -0
  379. package/templates/repo/.github/skills/planning/references/red-team-workflow.md +77 -0
  380. package/templates/repo/.github/skills/planning/references/scope-challenge.md +90 -0
  381. package/templates/repo/.github/skills/planning/references/task-management.md +134 -0
  382. package/templates/repo/.github/skills/planning/references/validate-question-framework.md +80 -0
  383. package/templates/repo/.github/skills/planning/references/validate-workflow.md +65 -0
  384. package/templates/repo/.github/skills/planning/references/workflow-modes.md +154 -0
  385. package/templates/repo/.github/skills/problem-solving/SKILL.md +1 -0
  386. package/templates/repo/.github/skills/project-management/SKILL.md +133 -0
  387. package/templates/repo/.github/skills/project-management/references/documentation-triggers.md +60 -0
  388. package/templates/repo/.github/skills/project-management/references/hydration-workflow.md +89 -0
  389. package/templates/repo/.github/skills/project-management/references/progress-tracking.md +120 -0
  390. package/templates/repo/.github/skills/project-management/references/reporting-patterns.md +94 -0
  391. package/templates/repo/.github/skills/project-management/references/task-operations.md +87 -0
  392. package/templates/repo/.github/skills/repomix/SKILL.md +3 -2
  393. package/templates/repo/.github/skills/repomix/references/usage-patterns.md +2 -2
  394. package/templates/repo/.github/skills/repomix/scripts/README.md +1 -1
  395. package/templates/repo/.github/skills/repomix/scripts/repomix_batch.py +2 -2
  396. package/templates/repo/.github/skills/research/SKILL.md +7 -4
  397. package/templates/repo/.github/skills/scout/SKILL.md +24 -24
  398. package/templates/repo/.github/skills/scout/references/external-scouting.md +17 -17
  399. package/templates/repo/.github/skills/scout/references/internal-scouting.md +9 -9
  400. package/templates/repo/.github/skills/scout/references/task-management-scouting.md +125 -0
  401. package/templates/repo/.github/skills/security/SKILL.md +139 -0
  402. package/templates/repo/.github/skills/security/references/stride-owasp-checklist.md +128 -0
  403. package/templates/repo/.github/skills/sequential-thinking/README.md +3 -3
  404. package/templates/repo/.github/skills/sequential-thinking/SKILL.md +2 -0
  405. package/templates/repo/.github/skills/sequential-thinking/package-lock.json +3652 -0
  406. package/templates/repo/.github/skills/sequential-thinking/package.json +1 -1
  407. package/templates/repo/.github/skills/ship/SKILL.md +116 -0
  408. package/templates/repo/.github/skills/ship/references/auto-detect.md +103 -0
  409. package/templates/repo/.github/skills/ship/references/pr-template.md +90 -0
  410. package/templates/repo/.github/skills/ship/references/ship-workflow.md +241 -0
  411. package/templates/repo/.github/skills/test/SKILL.md +111 -0
  412. package/templates/repo/.github/skills/test/references/report-format.md +58 -0
  413. package/templates/repo/.github/skills/test/references/test-execution-workflow.md +103 -0
  414. package/templates/repo/.github/skills/test/references/ui-testing-workflow.md +65 -0
  415. package/templates/repo/.github/skills/ui-styling/SKILL.md +2 -0
  416. package/templates/repo/.github/skills/web-testing/SKILL.md +8 -60
  417. package/docs/guide-next-steps-speckit-cokit-implementation.md +0 -187
  418. package/prompts/ck-spec-analyze.prompt.md +0 -201
  419. package/prompts/ck-spec-checklist.prompt.md +0 -308
  420. package/prompts/ck-spec-clarify.prompt.md +0 -190
  421. package/prompts/ck-spec-constitution.prompt.md +0 -92
  422. package/prompts/ck-spec-implement.prompt.md +0 -157
  423. package/prompts/ck-spec-plan.prompt.md +0 -95
  424. package/prompts/ck-spec-specify.prompt.md +0 -261
  425. package/prompts/ck-spec-tasks.prompt.md +0 -181
  426. package/templates/repo/.github/AGENTS.md +0 -103
  427. package/templates/repo/.github/prompts/ck-spec-analyze.prompt.md +0 -201
  428. package/templates/repo/.github/prompts/ck-spec-checklist.prompt.md +0 -308
  429. package/templates/repo/.github/prompts/ck-spec-clarify.prompt.md +0 -190
  430. package/templates/repo/.github/prompts/ck-spec-constitution.prompt.md +0 -92
  431. package/templates/repo/.github/prompts/ck-spec-implement.prompt.md +0 -157
  432. package/templates/repo/.github/prompts/ck-spec-plan.prompt.md +0 -95
  433. package/templates/repo/.github/prompts/ck-spec-specify.prompt.md +0 -261
  434. package/templates/repo/.github/prompts/ck-spec-tasks.prompt.md +0 -181
  435. package/templates/repo/.github/skills/databases/stacks/bigquery.md +0 -231
  436. package/templates/repo/.github/skills/databases/stacks/d1_cloudflare.md +0 -137
  437. package/templates/repo/.github/skills/databases/stacks/mysql.md +0 -216
  438. package/templates/repo/.github/skills/databases/stacks/postgres.md +0 -235
  439. package/templates/repo/.github/skills/databases/stacks/sqlite.md +0 -244
  440. package/templates/repo/.github/skills/mcp-management/assets/tools.json +0 -3146
  441. package/templates/repo/.github/skills/mcp-management/scripts/dist/analyze-tools.js +0 -70
  442. package/templates/repo/.github/skills/mcp-management/scripts/dist/cli.js +0 -160
  443. package/templates/repo/.github/skills/mcp-management/scripts/dist/mcp-client.js +0 -183
  444. package/templates/repo/.github/skills/ui-styling/LICENSE.txt +0 -202
  445. package/templates/repo/.github/spec-kit/memory/constitution.md +0 -50
  446. package/templates/repo/.github/spec-kit/scripts/bash/check-prerequisites.sh +0 -166
  447. package/templates/repo/.github/spec-kit/scripts/bash/common.sh +0 -156
  448. package/templates/repo/.github/spec-kit/scripts/bash/create-new-feature.sh +0 -297
  449. package/templates/repo/.github/spec-kit/scripts/bash/setup-plan.sh +0 -61
  450. package/templates/repo/.github/spec-kit/scripts/bash/update-agent-context.sh +0 -799
  451. package/templates/repo/.github/spec-kit/scripts/powershell/check-prerequisites.ps1 +0 -148
  452. package/templates/repo/.github/spec-kit/scripts/powershell/common.ps1 +0 -137
  453. package/templates/repo/.github/spec-kit/scripts/powershell/create-new-feature.ps1 +0 -283
  454. package/templates/repo/.github/spec-kit/scripts/powershell/setup-plan.ps1 +0 -61
  455. package/templates/repo/.github/spec-kit/scripts/powershell/update-agent-context.ps1 +0 -448
  456. package/templates/repo/.github/spec-kit/templates/agent-file-template.md +0 -28
  457. package/templates/repo/.github/spec-kit/templates/checklist-template.md +0 -40
  458. package/templates/repo/.github/spec-kit/templates/commands/analyze.md +0 -187
  459. package/templates/repo/.github/spec-kit/templates/commands/checklist.md +0 -297
  460. package/templates/repo/.github/spec-kit/templates/commands/clarify.md +0 -184
  461. package/templates/repo/.github/spec-kit/templates/commands/constitution.md +0 -82
  462. package/templates/repo/.github/spec-kit/templates/commands/implement.md +0 -138
  463. package/templates/repo/.github/spec-kit/templates/commands/plan.md +0 -95
  464. package/templates/repo/.github/spec-kit/templates/commands/specify.md +0 -261
  465. package/templates/repo/.github/spec-kit/templates/commands/tasks.md +0 -140
  466. package/templates/repo/.github/spec-kit/templates/commands/taskstoissues.md +0 -33
  467. package/templates/repo/.github/spec-kit/templates/plan-template.md +0 -104
  468. package/templates/repo/.github/spec-kit/templates/spec-template.md +0 -115
  469. package/templates/repo/.github/spec-kit/templates/tasks-phase-template.md +0 -42
  470. package/templates/repo/.github/spec-kit/templates/tasks-template.md +0 -268
  471. package/templates/repo/.github/spec-kit/templates/vscode-settings.json +0 -14
@@ -0,0 +1,129 @@
1
+ # Magic UI - Component Library Reference
2
+
3
+ > Beautifully designed landing page components built with React & Tailwind CSS. 80+ components.
4
+ > Docs: https://magicui.design | Repo: https://github.com/magicuidesign/magicui
5
+
6
+ ## Installation
7
+
8
+ ```bash
9
+ npx magicui-cli add <component-name>
10
+ ```
11
+
12
+ ## Component Categories
13
+
14
+ ### Text Effects
15
+ | Component | Description | Docs |
16
+ |-----------|-------------|------|
17
+ | Animated Gradient Text | Gradient transitions for text | [docs](https://magicui.design/docs/components/animated-gradient-text) |
18
+ | Animated Shiny Text | Light glare shimmer on text | [docs](https://magicui.design/docs/components/animated-shiny-text) |
19
+ | Aurora Text | Aurora borealis text effect | [docs](https://magicui.design/docs/components/aurora-text) |
20
+ | Comic Text | Comic-style text animation | [docs](https://magicui.design/docs/components/comic-text) |
21
+ | Hyper Text | Scramble-then-reveal animation | [docs](https://magicui.design/docs/components/hyper-text) |
22
+ | Line Shadow Text | Moving line shadow on text | [docs](https://magicui.design/docs/components/line-shadow-text) |
23
+ | Morphing Text | Dynamic text morphing | [docs](https://magicui.design/docs/components/morphing-text) |
24
+ | Sparkles Text | Continuous sparkle animation | [docs](https://magicui.design/docs/components/sparkles-text) |
25
+ | Spinning Text | Circular motion text | [docs](https://magicui.design/docs/components/spinning-text) |
26
+ | Text Animate | Multiple text animation types | [docs](https://magicui.design/docs/components/text-animate) |
27
+ | Text Reveal | Fade-in on scroll | [docs](https://magicui.design/docs/components/text-reveal) |
28
+ | Typing Animation | Typewriter effect | [docs](https://magicui.design/docs/components/typing-animation) |
29
+ | Video Text | Video background in text | [docs](https://magicui.design/docs/components/video-text) |
30
+ | Word Rotate | Vertical word rotation | [docs](https://magicui.design/docs/components/word-rotate) |
31
+ | Highlighter | Marker-stroke highlight | [docs](https://magicui.design/docs/components/highlighter) |
32
+
33
+ ### Buttons
34
+ | Component | Description | Docs |
35
+ |-----------|-------------|------|
36
+ | Shimmer Button | Light travels along perimeter | [docs](https://magicui.design/docs/components/shimmer-button) |
37
+ | Shiny Button | Dynamic shiny effect | [docs](https://magicui.design/docs/components/shiny-button) |
38
+ | Pulsating Button | Attention-capturing pulse | [docs](https://magicui.design/docs/components/pulsating-button) |
39
+ | Rainbow Button | Rainbow color animation | [docs](https://magicui.design/docs/components/rainbow-button) |
40
+ | Ripple Button | Click ripple effect | [docs](https://magicui.design/docs/components/ripple-button) |
41
+ | Interactive Hover Button | Hover interaction | [docs](https://magicui.design/docs/components/interactive-hover-button) |
42
+
43
+ ### Backgrounds & Patterns
44
+ | Component | Description | Docs |
45
+ |-----------|-------------|------|
46
+ | Grid Pattern | SVG grid, customizable | [docs](https://magicui.design/docs/components/grid-pattern) |
47
+ | Animated Grid Pattern | Animated SVG grid | [docs](https://magicui.design/docs/components/animated-grid-pattern) |
48
+ | Interactive Grid Pattern | Mouse-interactive grid | [docs](https://magicui.design/docs/components/interactive-grid-pattern) |
49
+ | Dot Pattern | SVG dots background | [docs](https://magicui.design/docs/components/dot-pattern) |
50
+ | Striped Pattern | SVG stripes background | [docs](https://magicui.design/docs/components/striped-pattern) |
51
+ | Flickering Grid | Flickering cells grid | [docs](https://magicui.design/docs/components/flickering-grid) |
52
+ | Retro Grid | Animated scrolling retro grid | [docs](https://magicui.design/docs/components/retro-grid) |
53
+ | Warp Background | Time-warping effect | [docs](https://magicui.design/docs/components/warp-background) |
54
+ | Particles | Interactive particle system | [docs](https://magicui.design/docs/components/particles) |
55
+ | Light Rays | Animated light rays from above | [docs](https://magicui.design/docs/components/light-rays) |
56
+
57
+ ### Cards & Borders
58
+ | Component | Description | Docs |
59
+ |-----------|-------------|------|
60
+ | Magic Card | Spotlight follows cursor | [docs](https://magicui.design/docs/components/magic-card) |
61
+ | Neon Gradient Card | Neon glow effect | [docs](https://magicui.design/docs/components/neon-gradient-card) |
62
+ | Border Beam | Animated light along border | [docs](https://magicui.design/docs/components/border-beam) |
63
+ | Shine Border | Animated shine border | [docs](https://magicui.design/docs/components/shine-border) |
64
+
65
+ ### Layout & Navigation
66
+ | Component | Description | Docs |
67
+ |-----------|-------------|------|
68
+ | Bento Grid | Feature showcase grid | [docs](https://magicui.design/docs/components/bento-grid) |
69
+ | Dock | macOS-style dock | [docs](https://magicui.design/docs/components/dock) |
70
+ | Marquee | Infinite scroll (text/images) | [docs](https://magicui.design/docs/components/marquee) |
71
+ | File Tree | Directory structure display | [docs](https://magicui.design/docs/components/file-tree) |
72
+ | Terminal | Terminal mockup | [docs](https://magicui.design/docs/components/terminal) |
73
+
74
+ ### Animated Effects
75
+ | Component | Description | Docs |
76
+ |-----------|-------------|------|
77
+ | Animated Beam | Light beam along path | [docs](https://magicui.design/docs/components/animated-beam) |
78
+ | Animated List | Sequential item animation | [docs](https://magicui.design/docs/components/animated-list) |
79
+ | Blur Fade | Smooth blur fade-in/out | [docs](https://magicui.design/docs/components/blur-fade) |
80
+ | Confetti | Celebration animations | [docs](https://magicui.design/docs/components/confetti) |
81
+ | Cool Mode | Fun click particle effect | [docs](https://magicui.design/docs/components/cool-mode) |
82
+ | Meteors | Meteor shower effect | [docs](https://magicui.design/docs/components/meteors) |
83
+ | Number Ticker | Count up/down animation | [docs](https://magicui.design/docs/components/number-ticker) |
84
+ | Orbiting Circles | Orbital motion circles | [docs](https://magicui.design/docs/components/orbiting-circles) |
85
+ | Ripple | Background ripple emphasis | [docs](https://magicui.design/docs/components/ripple) |
86
+ | Scroll Based Velocity | Speed-reactive scroll text | [docs](https://magicui.design/docs/components/scroll-based-velocity) |
87
+ | Scroll Progress | Page scroll indicator | [docs](https://magicui.design/docs/components/scroll-progress) |
88
+ | Progressive Blur | Blur gradient for scroll | [docs](https://magicui.design/docs/components/progressive-blur) |
89
+ | Smooth Cursor | Physics-based cursor | [docs](https://magicui.design/docs/components/smooth-cursor) |
90
+ | Pointer | Hover pointer indicator | [docs](https://magicui.design/docs/components/pointer) |
91
+
92
+ ### Device Mockups
93
+ | Component | Description | Docs |
94
+ |-----------|-------------|------|
95
+ | Android | Android device mockup | [docs](https://magicui.design/docs/components/android) |
96
+ | iPhone | iPhone mockup | [docs](https://magicui.design/docs/components/iphone) |
97
+ | Safari | Safari browser mockup | [docs](https://magicui.design/docs/components/safari) |
98
+
99
+ ### Data Display
100
+ | Component | Description | Docs |
101
+ |-----------|-------------|------|
102
+ | Globe | WebGL interactive globe | [docs](https://magicui.design/docs/components/globe) |
103
+ | Icon Cloud | 3D interactive tag cloud | [docs](https://magicui.design/docs/components/icon-cloud) |
104
+ | Animated Circular Progress | Circular gauge | [docs](https://magicui.design/docs/components/animated-circular-progress-bar) |
105
+ | Dotted Map | Map with dot markers | [docs](https://magicui.design/docs/components/dotted-map) |
106
+ | Pixel Image | Pixelated image effect | [docs](https://magicui.design/docs/components/pixel-image) |
107
+ | Lens | Zoom into images/videos | [docs](https://magicui.design/docs/components/lens) |
108
+
109
+ ### Social & Media
110
+ | Component | Description | Docs |
111
+ |-----------|-------------|------|
112
+ | Tweet Card | Display tweet embed | [docs](https://magicui.design/docs/components/tweet-card) |
113
+ | Client Tweet Card | Client-side tweet card | [docs](https://magicui.design/docs/components/client-tweet-card) |
114
+ | Avatar Circles | Overlapping avatar stack | [docs](https://magicui.design/docs/components/avatar-circles) |
115
+ | Hero Video Dialog | Video dialog for hero | [docs](https://magicui.design/docs/components/hero-video-dialog) |
116
+ | Code Comparison | Side-by-side code diff | [docs](https://magicui.design/docs/components/code-comparison) |
117
+ | Theme Toggler | Animated theme switch | [docs](https://magicui.design/docs/components/animated-theme-toggler) |
118
+
119
+ ## Usage Pattern
120
+
121
+ For docs lookup, use `docs-seeker` skill with Context7:
122
+ ```
123
+ context7 query: "magicui <component-name> usage example"
124
+ ```
125
+
126
+ For source code examples, fetch from GitHub:
127
+ ```
128
+ https://github.com/magicuidesign/magicui/blob/main/example/<component>-demo.tsx
129
+ ```
@@ -0,0 +1,169 @@
1
+ # Performance Guardrails
2
+
3
+ Rules for maintaining smooth animation and rendering performance. These prevent the most common causes of mobile frame drops and layout thrashing.
4
+
5
+ ---
6
+
7
+ ## GPU-Safe Animations
8
+
9
+ **Only animate these properties:**
10
+ - `transform` (translate, scale, rotate)
11
+ - `opacity`
12
+
13
+ **Never animate:**
14
+ - `top`, `left`, `right`, `bottom` — triggers layout reflow
15
+ - `width`, `height` — triggers layout + paint
16
+ - `margin`, `padding` — triggers layout
17
+ - `background-color` — triggers paint (acceptable for color transitions, but avoid on frequently animating elements)
18
+
19
+ **Why:** CSS `transform` and `opacity` are composited on the GPU and don't trigger layout or paint. All other properties cause the browser to recalculate layout on every frame — catastrophic on mobile.
20
+
21
+ ```css
22
+ /* Good */
23
+ .card { transform: translateY(0); transition: transform 300ms; }
24
+ .card:hover { transform: translateY(-4px); }
25
+
26
+ /* Bad */
27
+ .card { top: 0; transition: top 300ms; }
28
+ .card:hover { top: -4px; }
29
+ ```
30
+
31
+ ---
32
+
33
+ ## Blur Constraints
34
+
35
+ **Apply `backdrop-blur` only to:**
36
+ - Fixed-position elements (sticky navbars, overlays)
37
+ - Modals and dialogs
38
+ - Elements that don't scroll with content
39
+
40
+ **Never apply blur to:**
41
+ - Scrolling containers
42
+ - Large content areas
43
+ - Elements inside `overflow: auto/scroll` parents
44
+
45
+ **Why:** `backdrop-blur` triggers continuous GPU compositing on every scroll frame. On a scrolling container with 20+ cards, this causes severe frame drops on mid-range and low-end mobile.
46
+
47
+ ```css
48
+ /* Good — fixed nav */
49
+ .navbar { position: fixed; backdrop-filter: blur(12px); }
50
+
51
+ /* Bad — scrolling card list */
52
+ .card-list .card { backdrop-filter: blur(8px); } /* kills mobile perf */
53
+ ```
54
+
55
+ ---
56
+
57
+ ## Grain and Noise Overlays
58
+
59
+ **Correct implementation:**
60
+ ```css
61
+ /* Fixed, pointer-events-none pseudo-element only */
62
+ body::after {
63
+ content: '';
64
+ position: fixed;
65
+ inset: 0;
66
+ z-index: 50;
67
+ pointer-events: none;
68
+ background-image: url("data:image/svg+xml,..."); /* or CSS noise */
69
+ opacity: 0.03;
70
+ }
71
+ ```
72
+
73
+ **Never attach grain/noise to:**
74
+ - Scrolling containers
75
+ - Individual cards or sections
76
+ - Any element with `position: relative` inside a scroll context
77
+
78
+ ---
79
+
80
+ ## Z-Index Discipline
81
+
82
+ **Use systemic layers only. Establish a scale in your theme/variables:**
83
+
84
+ ```css
85
+ :root {
86
+ --z-base: 0;
87
+ --z-card: 10;
88
+ --z-sticky: 100;
89
+ --z-overlay: 200;
90
+ --z-modal: 300;
91
+ --z-tooltip: 400;
92
+ --z-notification: 500;
93
+ }
94
+ ```
95
+
96
+ **Never:**
97
+ - Use arbitrary values like `z-[9999]` or `z-50` unprompted
98
+ - Stack z-indexes without a documented reason
99
+ - Use z-index to fix stacking without understanding the stacking context
100
+
101
+ ---
102
+
103
+ ## Framer Motion Performance
104
+
105
+ **Use `useMotionValue` + `useTransform` for continuous animations:**
106
+ ```jsx
107
+ // Good — runs outside React render cycle
108
+ const mouseX = useMotionValue(0);
109
+ const rotateY = useTransform(mouseX, [-300, 300], [-15, 15]);
110
+
111
+ // Bad — triggers re-render on every mouse move
112
+ const [rotation, setRotation] = useState(0);
113
+ ```
114
+
115
+ **For perpetual/infinite animations:**
116
+ - Wrap in `React.memo` to prevent parent re-renders
117
+ - Extract as isolated leaf client components
118
+ - Use `<AnimatePresence>` for enter/exit — don't conditionally render without it
119
+
120
+ **For scroll-driven reveals:**
121
+ - Use `whileInView` or `IntersectionObserver`
122
+ - Never use `window.addEventListener('scroll')` — causes continuous reflows
123
+
124
+ **For staggered children:**
125
+ - Parent `variants` and children MUST be in the same Client Component tree
126
+ - If data is async, pass it as props into a centralized parent motion wrapper
127
+
128
+ ---
129
+
130
+ ## RSC Safety (Next.js)
131
+
132
+ - Global state (Context, providers) works **only** in Client Components
133
+ - Wrap providers in a `"use client"` component
134
+ - If a section uses Framer Motion or any interactive hook, extract it as an isolated leaf component with `'use client'` at the top
135
+ - Server Components render static layout only
136
+
137
+ ---
138
+
139
+ ## Mobile Override Rules
140
+
141
+ For any asymmetric or complex layout, apply aggressive mobile fallback below 768px:
142
+
143
+ ```jsx
144
+ // All asymmetric layouts collapse to single column
145
+ <div className="grid grid-cols-1 md:grid-cols-[2fr_1fr_1fr] gap-6">
146
+ ```
147
+
148
+ - Remove all rotations, negative margins, and overlaps below `md:`
149
+ - Replace `h-screen` with `min-h-[100dvh]` — prevents iOS Safari viewport jumping
150
+ - Never use `overflow: hidden` on `html`/`body` without testing on actual mobile
151
+ - Test horizontal scroll — asymmetric layouts often cause unintentional x-overflow on small screens
152
+
153
+ ---
154
+
155
+ ## `will-change` Guidance
156
+
157
+ Use sparingly. `will-change: transform` tells the browser to promote the element to its own GPU layer:
158
+
159
+ - Apply only to elements that are **actively animating**
160
+ - Remove after animation completes (or use `:hover` scoping)
161
+ - Never apply globally — creates excessive GPU memory pressure
162
+
163
+ ```css
164
+ /* Good — scoped to hover state */
165
+ .card:hover { will-change: transform; }
166
+
167
+ /* Bad — always promoted */
168
+ .card { will-change: transform; }
169
+ ```
@@ -0,0 +1,93 @@
1
+ # Premium Design Patterns: Creative Arsenal
2
+
3
+ Pull from this library to avoid defaulting to generic UI. These patterns make interfaces visually striking and memorable.
4
+
5
+ > Framework note: Examples mention Framer Motion as an option for JS-driven patterns. GSAP/ThreeJS are alternatives for scroll storytelling. Never mix both in the same component tree.
6
+
7
+ ---
8
+
9
+ ## Vibe Archetypes (Pick One Before Designing)
10
+
11
+ Before writing code, commit to a vibe:
12
+
13
+ 1. **Ethereal Glass** (SaaS / AI / Tech) — Deep OLED black `#050505`, radial mesh gradient orbs in background, vantablack cards with heavy `backdrop-blur-2xl`, wide geometric Grotesk typography
14
+ 2. **Editorial Luxury** (Lifestyle / Real Estate / Agency) — Warm creams `#FDFBF7`, muted sage, or deep espresso. Variable serif for massive headings, subtle CSS noise/film-grain overlay for a physical paper feel
15
+ 3. **Soft Structuralism** (Consumer / Health / Portfolio) — Silver-grey or pure white background, massive bold Grotesk, airy floating components with highly diffused ambient shadows
16
+
17
+ ---
18
+
19
+ ## Navigation
20
+
21
+ - **Mac Dock Magnification** — Nav icons scale fluidly on hover with spring physics
22
+ - **Magnetic Button** — Buttons physically pull toward the cursor using `useMotionValue` + `useTransform`
23
+ - **Gooey Menu** — Sub-items detach from main button like viscous liquid
24
+ - **Dynamic Island** — Pill-shaped component that morphs to show status/alerts
25
+ - **Fluid Island Nav** — Floating glass pill detached from top (`mt-6`, `mx-auto`, `rounded-full`). On mobile: hamburger lines fluidly rotate to form an X
26
+ - **Contextual Radial Menu** — Circular menu expanding at click coordinates
27
+ - **Mega Menu Reveal** — Full-screen dropdowns that stagger-fade complex content
28
+ - **Floating Speed Dial** — FAB that springs into a curved line of secondary actions
29
+
30
+ ## Layout and Grids
31
+
32
+ - **Asymmetrical Bento** — Masonry-like CSS Grid with varying card sizes (`col-span-8 row-span-2` next to stacked `col-span-4` cards). Falls back to `grid-cols-1` on mobile
33
+ - **Z-Axis Cascade** — Elements stacked like physical cards with slight overlap and varying depths. Remove rotations below 768px
34
+ - **Editorial Split** — Massive typography on left half, scrollable image pills or staggered cards on right
35
+ - **Split Screen Scroll** — Two halves of the screen sliding in opposite directions on scroll
36
+ - **Curtain Reveal** — Hero section parting in the middle like a curtain on scroll
37
+ - **Masonry Layout** — Staggered grid without fixed row heights (Pinterest-style)
38
+ - **Chroma Grid** — Grid borders or tiles with subtle, continuously animating color gradients
39
+
40
+ ## Cards and Containers
41
+
42
+ - **Double-Bezel (Doppelrand)** — Cards that look like machined hardware: outer shell (`bg-black/5`, `ring-1 ring-black/5`, `p-1.5`, `rounded-[2rem]`) wrapping an inner core with its own highlight and concentric radius (`rounded-[calc(2rem-0.375rem)]`)
43
+ - **Parallax Tilt Card** — 3D-tilting card tracking mouse coordinates
44
+ - **Spotlight Border Card** — Card borders that illuminate dynamically under the cursor
45
+ - **Glassmorphism Panel** — True frosted glass: `backdrop-blur` + 1px inner border (`border-white/10`) + inner shadow (`shadow-[inset_0_1px_0_rgba(255,255,255,0.1)]`) to simulate edge refraction
46
+ - **Holographic Foil Card** — Iridescent rainbow reflections shifting on hover
47
+ - **Tinder Swipe Stack** — Physical stack of cards the user can swipe away
48
+ - **Morphing Modal** — Button that seamlessly expands into a full-screen dialog
49
+
50
+ ## Scroll Animations
51
+
52
+ - **Sticky Scroll Stack** — Cards that stick to top and physically stack over each other during scroll
53
+ - **Horizontal Scroll Hijack** — Vertical scroll translates into smooth horizontal gallery pan
54
+ - **Zoom Parallax** — Central background image zooming in/out seamlessly as you scroll
55
+ - **Scroll Progress Path** — SVG lines that draw themselves as user scrolls
56
+ - **Staggered Entry** — Elements cascade in with slight delays, Y-translation + opacity fade. Use `staggerChildren` in Framer Motion or CSS `animation-delay: calc(var(--index) * 100ms)`. Never mount everything at once
57
+
58
+ ## Galleries and Media
59
+
60
+ - **Coverflow Carousel** — 3D carousel with center focused, edges angled back
61
+ - **Drag-to-Pan Grid** — Boundless grid freely draggable in any direction
62
+ - **Accordion Image Slider** — Narrow strips that expand fully on hover
63
+ - **Hover Image Trail** — Mouse leaves a trail of popping/fading images
64
+ - **Glitch Effect Image** — Brief RGB-channel shift digital distortion on hover
65
+ - **Dome Gallery** — 3D gallery with panoramic dome feel
66
+
67
+ ## Typography and Text
68
+
69
+ - **Kinetic Marquee** — Endless text bands that reverse direction or speed up on scroll
70
+ - **Text Mask Reveal** — Massive typography as a transparent window to video background
71
+ - **Text Scramble Effect** — Matrix-style character decoding on load or hover
72
+ - **Variable Font Animation** — Interpolate weight/width on scroll or hover for text that feels alive
73
+ - **Outlined-to-Fill Transition** — Text starts as stroke outline, fills with color on scroll entry
74
+ - **Circular Text Path** — Text curved along a spinning circular path
75
+ - **Kinetic Typography Grid** — Grid of letters that dodge or rotate away from cursor
76
+
77
+ ## Micro-Interactions
78
+
79
+ - **Button-in-Button Trailing Icon** — Arrow icon nested inside its own circular wrapper (`w-8 h-8 rounded-full bg-black/5`) flush with button's inner right padding. Never a naked icon next to text
80
+ - **Particle Explosion Button** — CTAs shatter into particles on success
81
+ - **Directional Hover-Aware Button** — Hover fill enters from the exact side the mouse came from
82
+ - **Ripple Click Effect** — Visual waves rippling precisely from click coordinates
83
+ - **Skeleton Shimmer** — Shifting light reflections across placeholder boxes. Match layout shape exactly
84
+ - **Tactile Press Feedback** — On `:active`, use `scale(0.98)` or `translateY(1px)` to simulate physical push
85
+ - **Eyebrow Tags** — Microscopic pill badge before major headings (`rounded-full px-3 py-1 text-[10px] uppercase tracking-[0.2em]`)
86
+
87
+ ## Surfaces and Effects
88
+
89
+ - **Grain/Noise Overlay** — Fixed `pointer-events-none` pseudo-element at `z-50`. Never on scrolling containers
90
+ - **Colored Tinted Shadows** — Shadows carry background hue instead of generic black
91
+ - **Mesh Gradient Background** — Organic, lava-lamp-like animated color blobs
92
+ - **Lens Blur Depth** — Dynamic focus blurring background layers to highlight foreground action
93
+ - **Animated SVG Line Drawing** — Vectors draw their own contours in real-time
@@ -0,0 +1,114 @@
1
+ # Redesign Audit Checklist
2
+
3
+ Use when upgrading an existing project. Follow Scan → Diagnose → Fix in order.
4
+
5
+ ## Workflow
6
+
7
+ 1. **Scan** — Read the codebase. Identify framework, styling method (Tailwind, vanilla CSS, styled-components), and current design patterns.
8
+ 2. **Diagnose** — Run through each category below. List every generic pattern, weak point, and missing state.
9
+ 3. **Fix** — Apply targeted upgrades working with the existing stack. Do not rewrite from scratch.
10
+
11
+ **Rules:**
12
+ - Work with the existing tech stack. Do not migrate frameworks.
13
+ - Do not break existing functionality. Test after every change.
14
+ - Check `package.json` before adding any new dependency.
15
+ - Keep changes focused and reviewable — small targeted improvements over big rewrites.
16
+
17
+ ---
18
+
19
+ ## Audit Categories
20
+
21
+ ### 1. Typography
22
+ - [ ] Browser default fonts or Inter everywhere → replace with `Geist`, `Outfit`, `Cabinet Grotesk`, or `Satoshi`
23
+ - [ ] Headlines lack presence → tighten tracking, reduce line-height, increase display size
24
+ - [ ] Body text too wide → limit to ~65ch, increase line-height
25
+ - [ ] Only 400 + 700 weights → introduce 500/600 for subtler hierarchy
26
+ - [ ] Numbers in proportional font → use monospace or `font-variant-numeric: tabular-nums`
27
+ - [ ] All-caps subheaders everywhere → try lowercase italic or sentence case
28
+ - [ ] Orphaned last words → fix with `text-wrap: balance` or `text-wrap: pretty`
29
+ - [ ] Serif fonts on dashboard UI → use high-end sans-serif pairs only
30
+
31
+ ### 2. Color and Surfaces
32
+ - [ ] Pure `#000000` → replace with off-black or tinted dark
33
+ - [ ] Oversaturated accents → desaturate below 80%
34
+ - [ ] More than one accent color → reduce to one
35
+ - [ ] Mixing warm and cool grays → pick one family, stay consistent
36
+ - [ ] Purple/blue AI gradient aesthetic → replace with neutral base + singular accent
37
+ - [ ] Generic `box-shadow` → tint shadows to background hue
38
+ - [ ] Flat surfaces with zero texture → add subtle noise/grain overlay
39
+ - [ ] Perfectly even linear gradients → use radial, mesh, or noise-overlaid gradients
40
+ - [ ] Random dark section in light-mode page (or vice versa) → commit to consistent tone or use slightly darker shade of same palette
41
+
42
+ ### 3. Layout
43
+ - [ ] Everything centered and symmetrical → break with offset margins, mixed aspect ratios
44
+ - [ ] Three equal card columns as feature row → use 2-col zig-zag, asymmetric grid, or horizontal scroll
45
+ - [ ] `h-screen` / `height: 100vh` → replace with `min-height: 100dvh`
46
+ - [ ] Complex flexbox `calc()` math → replace with CSS Grid
47
+ - [ ] No max-width container → add 1200-1440px constraint with auto margins
48
+ - [ ] Uniform border-radius everywhere → vary inner/outer elements
49
+ - [ ] No overlap or depth → use negative margins for layering
50
+ - [ ] Dashboard always has left sidebar → consider top nav, command menu, or collapsible panel
51
+ - [ ] Buttons not bottom-aligned in card groups → pin CTAs to card bottom
52
+ - [ ] Missing whitespace on marketing pages → double spacing, let design breathe
53
+
54
+ ### 4. Interactivity and States
55
+ - [ ] No hover states on buttons → add background shift, scale, or translate
56
+ - [ ] No active/pressed feedback → add `scale(0.98)` or `translateY(1px)` on press
57
+ - [ ] Instant transitions → add 200-300ms smooth transitions
58
+ - [ ] Missing focus ring → visible focus indicator (accessibility requirement)
59
+ - [ ] Generic circular spinner → replace with skeleton loader matching layout shape
60
+ - [ ] No empty state → design a composed "getting started" view
61
+ - [ ] No error state → inline error messages on forms (no `window.alert()`)
62
+ - [ ] Dead links (`href="#"`) → link real destinations or visually disable
63
+ - [ ] No current-page indicator in nav → style active link distinctly
64
+ - [ ] Scroll jumping on anchor links → add `scroll-behavior: smooth`
65
+ - [ ] Animations using `top`/`left`/`width`/`height` → switch to `transform` + `opacity`
66
+
67
+ ### 5. Content
68
+ - [ ] Generic placeholder names → use diverse, realistic names
69
+ - [ ] Round fake numbers → use organic messy data
70
+ - [ ] AI copywriting clichés → plain, specific language
71
+ - [ ] Lorem Ipsum → real draft copy
72
+ - [ ] Exclamation marks in success states → remove
73
+ - [ ] Title Case On Every Header → use sentence case
74
+ - [ ] Same avatar for multiple users → unique assets per person
75
+ - [ ] Blog post dates all identical → randomize
76
+
77
+ ### 6. Components and Code
78
+ - [ ] Generic card (border + shadow + white bg) at high density → use spacing/dividers
79
+ - [ ] Always one filled + one ghost button → add text links, reduce visual noise
80
+ - [ ] Lucide/Feather icons only → try Phosphor or Heroicons for differentiation
81
+ - [ ] Cliché icon metaphors (rocketship, shield) → less obvious alternatives
82
+ - [ ] Div soup → use semantic HTML: `nav`, `main`, `article`, `aside`, `section`
83
+ - [ ] Inline styles mixed with CSS classes → move all styling to the project's system
84
+ - [ ] Arbitrary z-index values (`z-[9999]`) → establish a clean z-index scale
85
+ - [ ] Missing alt text on meaningful images → describe content for screen readers
86
+ - [ ] Missing meta tags → add `title`, `description`, `og:image`
87
+
88
+ ---
89
+
90
+ ## Fix Priority Order
91
+
92
+ Apply in this order for maximum impact with minimum risk:
93
+
94
+ 1. **Font swap** — biggest instant improvement, lowest risk
95
+ 2. **Color cleanup** — remove clashing or oversaturated colors
96
+ 3. **Hover and active states** — makes interface feel alive
97
+ 4. **Layout and spacing** — proper grid, max-width, consistent padding
98
+ 5. **Replace generic components** — swap cliché patterns for modern alternatives
99
+ 6. **Add loading, empty, error states** — makes it feel finished
100
+ 7. **Polish typography scale** — the premium final touch
101
+
102
+ ---
103
+
104
+ ## Strategic Omissions (What AI Typically Forgets)
105
+
106
+ These are rarely in AI-generated output. Check explicitly:
107
+
108
+ - **No legal links** → add privacy policy + terms in footer
109
+ - **No "back" navigation** → every page needs a way back
110
+ - **No custom 404 page** → design a helpful branded "not found" experience
111
+ - **No form validation** → client-side validation for emails, required fields, formats
112
+ - **No "skip to content" link** → essential for keyboard users
113
+ - **No favicon** → always include a branded favicon
114
+ - **No social sharing meta** → `og:image`, `og:title`, `twitter:card`
@@ -53,7 +53,7 @@ python scripts/gemini_batch_process.py \
53
53
 
54
54
  ### Score 6-7/10: Minor Refinements Needed
55
55
  **Actions**:
56
- - Use ImageMagick for adjustments (brightness/contrast/saturation)
56
+ - Use `media-processing` skill for adjustments (brightness/contrast/saturation)
57
57
  - Consider selective regeneration of problem areas
58
58
  - May proceed with caution if time-constrained
59
59
 
@@ -0,0 +1,98 @@
1
+ # 3D Design Workflow
2
+
3
+ Create immersive interactive 3D designs with Three.js.
4
+
5
+ ## Prerequisites
6
+ - Activate `ui-ux-pro-max` skill (if available) first
7
+ - Activate `threejs` skill for 3D and WebGL expertise
8
+ - Have `ai-multimodal` (if available) skill ready for asset generation
9
+
10
+ ## Initial Research
11
+ ```bash
12
+ ```
13
+
14
+ ## Workflow Steps
15
+
16
+ ### 1. Create Implementation Plan
17
+ Use `ui-ux-designer` + `researcher` subagents:
18
+ - Create plan directory (use `## Naming` pattern)
19
+ - Write `plan.md` (<80 lines overview)
20
+ - Add `phase-XX-name.md` files
21
+ - Keep research reports under 150 lines
22
+
23
+ ### 2. Implement with Three.js
24
+ Use `ui-ux-designer` subagent to build:
25
+ - Three.js scene setup
26
+ - Custom GLSL shaders
27
+ - GPU particle systems
28
+ - Cinematic camera controls
29
+ - Post-processing effects
30
+ - Interactive elements
31
+
32
+ ### 3. Generate 3D Assets
33
+ Use `ai-multimodal` (if available) skill for:
34
+ - Textures and materials
35
+ - Skyboxes and environment maps
36
+ - Particle sprites
37
+ - Video backgrounds
38
+
39
+ Use `media-processing` skill for:
40
+ - Texture optimization for WebGL
41
+ - Normal/height map generation
42
+ - Sprite sheet creation
43
+ - Background removal
44
+ - Asset optimization
45
+
46
+ ### 4. Verify & Report
47
+ - Test across devices
48
+ - Optimize for 60fps
49
+ - Report to user
50
+ - Request approval
51
+
52
+ ### 5. Document
53
+ Update `./docs/design-guidelines.md` with:
54
+ - 3D design patterns
55
+ - Shader libraries
56
+ - Reusable components
57
+
58
+ ## Technical Requirements
59
+
60
+ ### Three.js Implementation
61
+ - Proper scene optimization
62
+ - Efficient draw calls
63
+ - LOD (Level of Detail) where needed
64
+ - Responsive canvas behavior
65
+ - Memory management
66
+
67
+ ### Shader Development
68
+ - Custom vertex shaders
69
+ - Custom fragment shaders
70
+ - Uniform management
71
+ - Performance optimization
72
+
73
+ ### Particle Systems
74
+ - GPU-accelerated rendering
75
+ - Efficient buffer geometry
76
+ - Point sprite optimization
77
+
78
+ ### Post-Processing
79
+ - Render pipeline setup
80
+ - Effect composition
81
+ - Performance budgeting
82
+
83
+ ## Implementation Stack
84
+ - Three.js - 3D rendering
85
+ - GLSL - Custom shaders
86
+ - HTML/CSS/JS - UI integration
87
+ - WebGL - GPU graphics
88
+
89
+ ## Performance Targets
90
+ - 60fps minimum
91
+ - < 100ms initial load
92
+ - Responsive to viewport
93
+ - Mobile-friendly fallbacks
94
+
95
+ ## Related
96
+ - `animejs.md` - UI animation patterns
97
+ - `technical-optimization.md` - Performance tips
98
+ - `asset-generation.md` - Asset creation
@@ -3,12 +3,13 @@
3
3
  Create detailed design documentation from screenshot/video for developer implementation.
4
4
 
5
5
  ## Prerequisites
6
- - Activate `ui-styling` skill first for design patterns
6
+ - Activate `ui-ux-pro-max` skill (if available) first
7
+ - Have `ai-multimodal` (if available) skill ready
7
8
 
8
9
  ## Workflow Steps
9
10
 
10
11
  ### 1. Comprehensive Visual Analysis
11
- Analyze and describe exhaustively:
12
+ Use `ai-multimodal` (if available) skill to describe exhaustively:
12
13
 
13
14
  **Layout & Structure**
14
15
  - Element positions (absolute coords or relative)
@@ -50,7 +51,7 @@ Analyze and describe exhaustively:
50
51
  **Font Prediction**: Match actual fonts, avoid Inter/Poppins defaults.
51
52
 
52
53
  ### 2. Create Implementation Plan
53
- Use `ui-ux-designer` agent:
54
+ Use `ui-ux-designer` subagent:
54
55
  - Create plan directory (use `## Naming` pattern)
55
56
  - Write `plan.md` overview (<80 lines)
56
57
  - Add detailed `phase-XX-name.md` files