@hybridlabor-api/bdb-antigravity-skills 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (792) hide show
  1. package/GEMINI.md +29 -0
  2. package/README.md +64 -0
  3. package/installer.sh +97 -0
  4. package/mcp_config.json +32 -0
  5. package/package.json +20 -0
  6. package/skills/global_config/MCP_Manage/SKILL.md +39 -0
  7. package/skills/global_config/agent-manager-skill/SKILL.md +47 -0
  8. package/skills/global_config/agent-memory-mcp/SKILL.md +92 -0
  9. package/skills/global_config/agent-orchestrator/SKILL.md +321 -0
  10. package/skills/global_config/agent-orchestrator/references/capability-taxonomy.md +85 -0
  11. package/skills/global_config/agent-orchestrator/references/orchestration-patterns.md +129 -0
  12. package/skills/global_config/agent-orchestrator/scripts/match_skills.py +329 -0
  13. package/skills/global_config/agent-orchestrator/scripts/orchestrate.py +304 -0
  14. package/skills/global_config/agent-orchestrator/scripts/requirements.txt +1 -0
  15. package/skills/global_config/agent-orchestrator/scripts/scan_registry.py +508 -0
  16. package/skills/global_config/agent-tool-builder/SKILL.md +714 -0
  17. package/skills/global_config/ai-agent-development/SKILL.md +178 -0
  18. package/skills/global_config/ai-product/SKILL.md +753 -0
  19. package/skills/global_config/api-design-principles/SKILL.md +45 -0
  20. package/skills/global_config/api-design-principles/assets/api-design-checklist.md +155 -0
  21. package/skills/global_config/api-design-principles/assets/rest-api-template.py +182 -0
  22. package/skills/global_config/api-design-principles/references/graphql-schema-design.md +583 -0
  23. package/skills/global_config/api-design-principles/references/rest-best-practices.md +408 -0
  24. package/skills/global_config/api-design-principles/resources/implementation-playbook.md +513 -0
  25. package/skills/global_config/api-patterns/SKILL.md +90 -0
  26. package/skills/global_config/api-patterns/api-style.md +42 -0
  27. package/skills/global_config/api-patterns/auth.md +24 -0
  28. package/skills/global_config/api-patterns/documentation.md +26 -0
  29. package/skills/global_config/api-patterns/graphql.md +41 -0
  30. package/skills/global_config/api-patterns/rate-limiting.md +31 -0
  31. package/skills/global_config/api-patterns/response.md +37 -0
  32. package/skills/global_config/api-patterns/rest.md +40 -0
  33. package/skills/global_config/api-patterns/scripts/api_validator.py +211 -0
  34. package/skills/global_config/api-patterns/security-testing.md +122 -0
  35. package/skills/global_config/api-patterns/trpc.md +41 -0
  36. package/skills/global_config/api-patterns/versioning.md +22 -0
  37. package/skills/global_config/apify-lead-generation/SKILL.md +131 -0
  38. package/skills/global_config/apify-lead-generation/reference/scripts/run_actor.js +363 -0
  39. package/skills/global_config/apify-ultimate-scraper/SKILL.md +241 -0
  40. package/skills/global_config/apify-ultimate-scraper/reference/scripts/run_actor.js +363 -0
  41. package/skills/global_config/architect-review/SKILL.md +177 -0
  42. package/skills/global_config/bash-linux/SKILL.md +209 -0
  43. package/skills/global_config/bdbrainstorm/SKILL.md +37 -0
  44. package/skills/global_config/browser-automation/SKILL.md +1116 -0
  45. package/skills/global_config/clean-code/SKILL.md +99 -0
  46. package/skills/global_config/cloudflare-workers-expert/SKILL.md +94 -0
  47. package/skills/global_config/concise-planning/SKILL.md +73 -0
  48. package/skills/global_config/copywriting/SKILL.md +254 -0
  49. package/skills/global_config/crewai/SKILL.md +458 -0
  50. package/skills/global_config/database-design/SKILL.md +62 -0
  51. package/skills/global_config/database-design/database-selection.md +43 -0
  52. package/skills/global_config/database-design/indexing.md +39 -0
  53. package/skills/global_config/database-design/migrations.md +48 -0
  54. package/skills/global_config/database-design/optimization.md +36 -0
  55. package/skills/global_config/database-design/orm-selection.md +30 -0
  56. package/skills/global_config/database-design/schema-design.md +56 -0
  57. package/skills/global_config/database-design/scripts/schema_validator.py +172 -0
  58. package/skills/global_config/debugger/SKILL.md +58 -0
  59. package/skills/global_config/deep-research/SKILL.md +120 -0
  60. package/skills/global_config/design-spells/SKILL.md +41 -0
  61. package/skills/global_config/design-taste-frontend/SKILL.md +247 -0
  62. package/skills/global_config/docker-expert/SKILL.md +418 -0
  63. package/skills/global_config/documentation/SKILL.md +265 -0
  64. package/skills/global_config/drizzle-orm-expert/SKILL.md +368 -0
  65. package/skills/global_config/executing-plans/SKILL.md +87 -0
  66. package/skills/global_config/frontend-design/LICENSE.txt +177 -0
  67. package/skills/global_config/frontend-design/SKILL.md +282 -0
  68. package/skills/global_config/frontend-dev-guidelines/SKILL.md +369 -0
  69. package/skills/global_config/frontend-dev-guidelines/resources/common-patterns.md +331 -0
  70. package/skills/global_config/frontend-dev-guidelines/resources/complete-examples.md +872 -0
  71. package/skills/global_config/frontend-dev-guidelines/resources/component-patterns.md +502 -0
  72. package/skills/global_config/frontend-dev-guidelines/resources/data-fetching.md +767 -0
  73. package/skills/global_config/frontend-dev-guidelines/resources/file-organization.md +502 -0
  74. package/skills/global_config/frontend-dev-guidelines/resources/loading-and-error-states.md +501 -0
  75. package/skills/global_config/frontend-dev-guidelines/resources/performance.md +406 -0
  76. package/skills/global_config/frontend-dev-guidelines/resources/routing-guide.md +364 -0
  77. package/skills/global_config/frontend-dev-guidelines/resources/styling-guide.md +428 -0
  78. package/skills/global_config/frontend-dev-guidelines/resources/typescript-standards.md +418 -0
  79. package/skills/global_config/gemini-api-dev/SKILL.md +138 -0
  80. package/skills/global_config/gemini-api-integration/SKILL.md +193 -0
  81. package/skills/global_config/geo-fundamentals/SKILL.md +165 -0
  82. package/skills/global_config/geo-fundamentals/scripts/geo_checker.py +289 -0
  83. package/skills/global_config/git-advanced-workflows/SKILL.md +420 -0
  84. package/skills/global_config/git-pr-review/SKILL.md +179 -0
  85. package/skills/global_config/github/SKILL.md +80 -0
  86. package/skills/global_config/github/agents/openai.yaml +4 -0
  87. package/skills/global_config/github-actions-templates/SKILL.md +353 -0
  88. package/skills/global_config/github-workflow-automation/SKILL.md +854 -0
  89. package/skills/global_config/go-concurrency-patterns/SKILL.md +41 -0
  90. package/skills/global_config/go-concurrency-patterns/resources/implementation-playbook.md +654 -0
  91. package/skills/global_config/go-playwright/SKILL.md +76 -0
  92. package/skills/global_config/go-playwright/resources/implementation-playbook.md +110 -0
  93. package/skills/global_config/golang-pro/SKILL.md +181 -0
  94. package/skills/global_config/google-sheets-automation/SKILL.md +149 -0
  95. package/skills/global_config/landing-page-generator/SKILL.md +213 -0
  96. package/skills/global_config/landing-page-generator/references/conversion-patterns.md +176 -0
  97. package/skills/global_config/landing-page-generator/references/frameworks.md +177 -0
  98. package/skills/global_config/landing-page-generator/references/landing-page-patterns.md +98 -0
  99. package/skills/global_config/landing-page-generator/references/seo-checklist.md +109 -0
  100. package/skills/global_config/landing-page-generator/scripts/landing_page_scaffolder.py +568 -0
  101. package/skills/global_config/linear-claude-skill/SKILL.md +523 -0
  102. package/skills/global_config/llm-app-patterns/SKILL.md +768 -0
  103. package/skills/global_config/llm-application-dev-ai-assistant/SKILL.md +43 -0
  104. package/skills/global_config/llm-application-dev-ai-assistant/resources/implementation-playbook.md +1236 -0
  105. package/skills/global_config/llm-prompt-optimizer/SKILL.md +187 -0
  106. package/skills/global_config/llm-structured-output/SKILL.md +212 -0
  107. package/skills/global_config/local-llm-expert/SKILL.md +88 -0
  108. package/skills/global_config/microservices-patterns/SKILL.md +43 -0
  109. package/skills/global_config/microservices-patterns/resources/implementation-playbook.md +607 -0
  110. package/skills/global_config/modern-javascript-patterns/SKILL.md +43 -0
  111. package/skills/global_config/modern-javascript-patterns/resources/implementation-playbook.md +910 -0
  112. package/skills/global_config/monorepo-management/SKILL.md +43 -0
  113. package/skills/global_config/monorepo-management/resources/implementation-playbook.md +621 -0
  114. package/skills/global_config/n8n-code-javascript/SKILL.md +706 -0
  115. package/skills/global_config/n8n-code-python/SKILL.md +755 -0
  116. package/skills/global_config/n8n-expression-syntax/SKILL.md +528 -0
  117. package/skills/global_config/n8n-mcp-tools-expert/SKILL.md +654 -0
  118. package/skills/global_config/n8n-workflow-patterns/SKILL.md +423 -0
  119. package/skills/global_config/neon-postgres/SKILL.md +619 -0
  120. package/skills/global_config/nextjs-app-router-patterns/SKILL.md +41 -0
  121. package/skills/global_config/nextjs-app-router-patterns/resources/implementation-playbook.md +543 -0
  122. package/skills/global_config/nextjs-best-practices/SKILL.md +213 -0
  123. package/skills/global_config/notion-automation/SKILL.md +224 -0
  124. package/skills/global_config/obsidian-markdown/SKILL.md +209 -0
  125. package/skills/global_config/obsidian-markdown/references/CALLOUTS.md +58 -0
  126. package/skills/global_config/obsidian-markdown/references/EMBEDS.md +63 -0
  127. package/skills/global_config/obsidian-markdown/references/PROPERTIES.md +61 -0
  128. package/skills/global_config/openapi-spec-generation/SKILL.md +41 -0
  129. package/skills/global_config/openapi-spec-generation/resources/implementation-playbook.md +1027 -0
  130. package/skills/global_config/os-scripting/SKILL.md +433 -0
  131. package/skills/global_config/planning-with-files/SKILL.md +189 -0
  132. package/skills/global_config/planning-with-files/examples.md +202 -0
  133. package/skills/global_config/planning-with-files/reference.md +218 -0
  134. package/skills/global_config/planning-with-files/scripts/check-complete.sh +44 -0
  135. package/skills/global_config/planning-with-files/scripts/init-session.sh +120 -0
  136. package/skills/global_config/planning-with-files/templates/findings.md +95 -0
  137. package/skills/global_config/planning-with-files/templates/progress.md +114 -0
  138. package/skills/global_config/planning-with-files/templates/task_plan.md +132 -0
  139. package/skills/global_config/playwright-skill/API_REFERENCE.md +653 -0
  140. package/skills/global_config/playwright-skill/SKILL.md +469 -0
  141. package/skills/global_config/playwright-skill/lib/helpers.js +441 -0
  142. package/skills/global_config/playwright-skill/package.json +26 -0
  143. package/skills/global_config/playwright-skill/run.js +228 -0
  144. package/skills/global_config/posix-shell-pro/SKILL.md +308 -0
  145. package/skills/global_config/postgres-best-practices/AGENTS.md +1490 -0
  146. package/skills/global_config/postgres-best-practices/README.md +119 -0
  147. package/skills/global_config/postgres-best-practices/SKILL.md +63 -0
  148. package/skills/global_config/postgres-best-practices/metadata.json +13 -0
  149. package/skills/global_config/postgres-best-practices/rules/_contributing.md +171 -0
  150. package/skills/global_config/postgres-best-practices/rules/_sections.md +39 -0
  151. package/skills/global_config/postgres-best-practices/rules/_template.md +34 -0
  152. package/skills/global_config/postgres-best-practices/rules/advanced-full-text-search.md +55 -0
  153. package/skills/global_config/postgres-best-practices/rules/advanced-jsonb-indexing.md +49 -0
  154. package/skills/global_config/postgres-best-practices/rules/conn-idle-timeout.md +46 -0
  155. package/skills/global_config/postgres-best-practices/rules/conn-limits.md +44 -0
  156. package/skills/global_config/postgres-best-practices/rules/conn-pooling.md +41 -0
  157. package/skills/global_config/postgres-best-practices/rules/conn-prepared-statements.md +46 -0
  158. package/skills/global_config/postgres-best-practices/rules/data-batch-inserts.md +54 -0
  159. package/skills/global_config/postgres-best-practices/rules/data-n-plus-one.md +53 -0
  160. package/skills/global_config/postgres-best-practices/rules/data-pagination.md +50 -0
  161. package/skills/global_config/postgres-best-practices/rules/data-upsert.md +50 -0
  162. package/skills/global_config/postgres-best-practices/rules/lock-advisory.md +56 -0
  163. package/skills/global_config/postgres-best-practices/rules/lock-deadlock-prevention.md +68 -0
  164. package/skills/global_config/postgres-best-practices/rules/lock-short-transactions.md +50 -0
  165. package/skills/global_config/postgres-best-practices/rules/lock-skip-locked.md +54 -0
  166. package/skills/global_config/postgres-best-practices/rules/monitor-explain-analyze.md +45 -0
  167. package/skills/global_config/postgres-best-practices/rules/monitor-pg-stat-statements.md +55 -0
  168. package/skills/global_config/postgres-best-practices/rules/monitor-vacuum-analyze.md +55 -0
  169. package/skills/global_config/postgres-best-practices/rules/query-composite-indexes.md +44 -0
  170. package/skills/global_config/postgres-best-practices/rules/query-covering-indexes.md +40 -0
  171. package/skills/global_config/postgres-best-practices/rules/query-index-types.md +45 -0
  172. package/skills/global_config/postgres-best-practices/rules/query-missing-indexes.md +43 -0
  173. package/skills/global_config/postgres-best-practices/rules/query-partial-indexes.md +45 -0
  174. package/skills/global_config/postgres-best-practices/rules/schema-data-types.md +46 -0
  175. package/skills/global_config/postgres-best-practices/rules/schema-foreign-key-indexes.md +59 -0
  176. package/skills/global_config/postgres-best-practices/rules/schema-lowercase-identifiers.md +55 -0
  177. package/skills/global_config/postgres-best-practices/rules/schema-partitioning.md +55 -0
  178. package/skills/global_config/postgres-best-practices/rules/schema-primary-keys.md +61 -0
  179. package/skills/global_config/postgres-best-practices/rules/security-privileges.md +54 -0
  180. package/skills/global_config/postgres-best-practices/rules/security-rls-basics.md +50 -0
  181. package/skills/global_config/postgres-best-practices/rules/security-rls-performance.md +57 -0
  182. package/skills/global_config/postgresql/SKILL.md +233 -0
  183. package/skills/global_config/prisma-expert/SKILL.md +366 -0
  184. package/skills/global_config/product-manager-toolkit/SKILL.md +362 -0
  185. package/skills/global_config/product-manager-toolkit/references/prd_templates.md +317 -0
  186. package/skills/global_config/product-manager-toolkit/scripts/customer_interview_analyzer.py +441 -0
  187. package/skills/global_config/product-manager-toolkit/scripts/rice_prioritizer.py +296 -0
  188. package/skills/global_config/programmatic-seo/SKILL.md +356 -0
  189. package/skills/global_config/prompt-engineer/README.md +659 -0
  190. package/skills/global_config/prompt-engineer/SKILL.md +281 -0
  191. package/skills/global_config/prompt-engineering-patterns/SKILL.md +221 -0
  192. package/skills/global_config/prompt-engineering-patterns/assets/few-shot-examples.json +106 -0
  193. package/skills/global_config/prompt-engineering-patterns/assets/prompt-template-library.md +246 -0
  194. package/skills/global_config/prompt-engineering-patterns/references/chain-of-thought.md +399 -0
  195. package/skills/global_config/prompt-engineering-patterns/references/few-shot-learning.md +369 -0
  196. package/skills/global_config/prompt-engineering-patterns/references/prompt-optimization.md +414 -0
  197. package/skills/global_config/prompt-engineering-patterns/references/prompt-templates.md +470 -0
  198. package/skills/global_config/prompt-engineering-patterns/references/system-prompts.md +189 -0
  199. package/skills/global_config/prompt-engineering-patterns/scripts/optimize-prompt.py +279 -0
  200. package/skills/global_config/python-patterns/SKILL.md +451 -0
  201. package/skills/global_config/python-performance-optimization/SKILL.md +44 -0
  202. package/skills/global_config/python-performance-optimization/resources/implementation-playbook.md +868 -0
  203. package/skills/global_config/python-pro/SKILL.md +161 -0
  204. package/skills/global_config/rag-engineer/SKILL.md +341 -0
  205. package/skills/global_config/rag-implementation/SKILL.md +201 -0
  206. package/skills/global_config/react-best-practices/AGENTS.md +2249 -0
  207. package/skills/global_config/react-best-practices/README.md +123 -0
  208. package/skills/global_config/react-best-practices/SKILL.md +131 -0
  209. package/skills/global_config/react-best-practices/metadata.json +15 -0
  210. package/skills/global_config/react-best-practices/rules/_sections.md +46 -0
  211. package/skills/global_config/react-best-practices/rules/_template.md +28 -0
  212. package/skills/global_config/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  213. package/skills/global_config/react-best-practices/rules/advanced-use-latest.md +49 -0
  214. package/skills/global_config/react-best-practices/rules/async-api-routes.md +38 -0
  215. package/skills/global_config/react-best-practices/rules/async-defer-await.md +80 -0
  216. package/skills/global_config/react-best-practices/rules/async-dependencies.md +36 -0
  217. package/skills/global_config/react-best-practices/rules/async-parallel.md +28 -0
  218. package/skills/global_config/react-best-practices/rules/async-suspense-boundaries.md +99 -0
  219. package/skills/global_config/react-best-practices/rules/bundle-barrel-imports.md +59 -0
  220. package/skills/global_config/react-best-practices/rules/bundle-conditional.md +31 -0
  221. package/skills/global_config/react-best-practices/rules/bundle-defer-third-party.md +49 -0
  222. package/skills/global_config/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
  223. package/skills/global_config/react-best-practices/rules/bundle-preload.md +50 -0
  224. package/skills/global_config/react-best-practices/rules/client-event-listeners.md +74 -0
  225. package/skills/global_config/react-best-practices/rules/client-swr-dedup.md +56 -0
  226. package/skills/global_config/react-best-practices/rules/js-batch-dom-css.md +82 -0
  227. package/skills/global_config/react-best-practices/rules/js-cache-function-results.md +80 -0
  228. package/skills/global_config/react-best-practices/rules/js-cache-property-access.md +28 -0
  229. package/skills/global_config/react-best-practices/rules/js-cache-storage.md +70 -0
  230. package/skills/global_config/react-best-practices/rules/js-combine-iterations.md +32 -0
  231. package/skills/global_config/react-best-practices/rules/js-early-exit.md +50 -0
  232. package/skills/global_config/react-best-practices/rules/js-hoist-regexp.md +45 -0
  233. package/skills/global_config/react-best-practices/rules/js-index-maps.md +37 -0
  234. package/skills/global_config/react-best-practices/rules/js-length-check-first.md +49 -0
  235. package/skills/global_config/react-best-practices/rules/js-min-max-loop.md +82 -0
  236. package/skills/global_config/react-best-practices/rules/js-set-map-lookups.md +24 -0
  237. package/skills/global_config/react-best-practices/rules/js-tosorted-immutable.md +57 -0
  238. package/skills/global_config/react-best-practices/rules/rendering-activity.md +26 -0
  239. package/skills/global_config/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
  240. package/skills/global_config/react-best-practices/rules/rendering-conditional-render.md +40 -0
  241. package/skills/global_config/react-best-practices/rules/rendering-content-visibility.md +38 -0
  242. package/skills/global_config/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
  243. package/skills/global_config/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
  244. package/skills/global_config/react-best-practices/rules/rendering-svg-precision.md +28 -0
  245. package/skills/global_config/react-best-practices/rules/rerender-defer-reads.md +39 -0
  246. package/skills/global_config/react-best-practices/rules/rerender-dependencies.md +45 -0
  247. package/skills/global_config/react-best-practices/rules/rerender-derived-state.md +29 -0
  248. package/skills/global_config/react-best-practices/rules/rerender-functional-setstate.md +74 -0
  249. package/skills/global_config/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
  250. package/skills/global_config/react-best-practices/rules/rerender-memo.md +44 -0
  251. package/skills/global_config/react-best-practices/rules/rerender-transitions.md +40 -0
  252. package/skills/global_config/react-best-practices/rules/server-after-nonblocking.md +73 -0
  253. package/skills/global_config/react-best-practices/rules/server-cache-lru.md +41 -0
  254. package/skills/global_config/react-best-practices/rules/server-cache-react.md +26 -0
  255. package/skills/global_config/react-best-practices/rules/server-parallel-fetching.md +79 -0
  256. package/skills/global_config/react-best-practices/rules/server-serialization.md +38 -0
  257. package/skills/global_config/react-component-performance/SKILL.md +139 -0
  258. package/skills/global_config/react-component-performance/agents/openai.yaml +4 -0
  259. package/skills/global_config/react-component-performance/references/examples.md +88 -0
  260. package/skills/global_config/react-patterns/SKILL.md +216 -0
  261. package/skills/global_config/readme/SKILL.md +848 -0
  262. package/skills/global_config/remotion/SKILL.md +404 -0
  263. package/skills/global_config/schema-markup/SKILL.md +363 -0
  264. package/skills/global_config/senior-frontend/SKILL.md +495 -0
  265. package/skills/global_config/senior-frontend/references/frontend_best_practices.md +806 -0
  266. package/skills/global_config/senior-frontend/references/nextjs_optimization_guide.md +724 -0
  267. package/skills/global_config/senior-frontend/references/react_patterns.md +746 -0
  268. package/skills/global_config/senior-frontend/scripts/bundle_analyzer.py +407 -0
  269. package/skills/global_config/senior-frontend/scripts/component_generator.py +329 -0
  270. package/skills/global_config/senior-frontend/scripts/frontend_scaffolder.py +1005 -0
  271. package/skills/global_config/senior-fullstack/SKILL.md +220 -0
  272. package/skills/global_config/senior-fullstack/references/architecture_patterns.md +103 -0
  273. package/skills/global_config/senior-fullstack/references/development_workflows.md +103 -0
  274. package/skills/global_config/senior-fullstack/references/tech_stack_guide.md +103 -0
  275. package/skills/global_config/senior-fullstack/scripts/code_quality_analyzer.py +114 -0
  276. package/skills/global_config/senior-fullstack/scripts/fullstack_scaffolder.py +114 -0
  277. package/skills/global_config/senior-fullstack/scripts/project_scaffolder.py +114 -0
  278. package/skills/global_config/seo/SKILL.md +143 -0
  279. package/skills/global_config/seo/references/cwv-thresholds.md +108 -0
  280. package/skills/global_config/seo/references/eeat-framework.md +214 -0
  281. package/skills/global_config/seo/references/quality-gates.md +155 -0
  282. package/skills/global_config/seo/references/schema-types.md +118 -0
  283. package/skills/global_config/seo-audit/SKILL.md +492 -0
  284. package/skills/global_config/seo-technical/SKILL.md +179 -0
  285. package/skills/global_config/shadcn/SKILL.md +254 -0
  286. package/skills/global_config/shadcn/agents/openai.yml +5 -0
  287. package/skills/global_config/shadcn/assets/shadcn-small.png +0 -0
  288. package/skills/global_config/shadcn/assets/shadcn.png +0 -0
  289. package/skills/global_config/shadcn/cli.md +255 -0
  290. package/skills/global_config/shadcn/customization.md +202 -0
  291. package/skills/global_config/shadcn/evals/evals.json +47 -0
  292. package/skills/global_config/shadcn/mcp.md +94 -0
  293. package/skills/global_config/shadcn/rules/base-vs-radix.md +306 -0
  294. package/skills/global_config/shadcn/rules/composition.md +195 -0
  295. package/skills/global_config/shadcn/rules/forms.md +192 -0
  296. package/skills/global_config/shadcn/rules/icons.md +101 -0
  297. package/skills/global_config/shadcn/rules/styling.md +162 -0
  298. package/skills/global_config/simplify-code/SKILL.md +183 -0
  299. package/skills/global_config/slack-automation/SKILL.md +197 -0
  300. package/skills/global_config/software-architecture/SKILL.md +86 -0
  301. package/skills/global_config/spline-3d-integration/SKILL.md +90 -0
  302. package/skills/global_config/spline-3d-integration/examples/interactive-scene.tsx +198 -0
  303. package/skills/global_config/spline-3d-integration/examples/react-spline-wrapper.tsx +124 -0
  304. package/skills/global_config/spline-3d-integration/examples/vanilla-embed.html +146 -0
  305. package/skills/global_config/spline-3d-integration/guides/COMMON_PROBLEMS.md +262 -0
  306. package/skills/global_config/spline-3d-integration/guides/PERFORMANCE.md +163 -0
  307. package/skills/global_config/spline-3d-integration/guides/REACT_INTEGRATION.md +212 -0
  308. package/skills/global_config/spline-3d-integration/guides/VANILLA_INTEGRATION.md +203 -0
  309. package/skills/global_config/subagent-driven-development/SKILL.md +247 -0
  310. package/skills/global_config/subagent-driven-development/code-quality-reviewer-prompt.md +20 -0
  311. package/skills/global_config/subagent-driven-development/implementer-prompt.md +78 -0
  312. package/skills/global_config/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  313. package/skills/global_config/systematic-debugging/CREATION-LOG.md +119 -0
  314. package/skills/global_config/systematic-debugging/SKILL.md +303 -0
  315. package/skills/global_config/systematic-debugging/condition-based-waiting-example.ts +158 -0
  316. package/skills/global_config/systematic-debugging/condition-based-waiting.md +115 -0
  317. package/skills/global_config/systematic-debugging/defense-in-depth.md +122 -0
  318. package/skills/global_config/systematic-debugging/find-polluter.sh +63 -0
  319. package/skills/global_config/systematic-debugging/root-cause-tracing.md +169 -0
  320. package/skills/global_config/systematic-debugging/test-academic.md +14 -0
  321. package/skills/global_config/systematic-debugging/test-pressure-1.md +58 -0
  322. package/skills/global_config/systematic-debugging/test-pressure-2.md +68 -0
  323. package/skills/global_config/systematic-debugging/test-pressure-3.md +69 -0
  324. package/skills/global_config/tailwind-patterns/SKILL.md +279 -0
  325. package/skills/global_config/tanstack-query-expert/SKILL.md +247 -0
  326. package/skills/global_config/tdd-workflow/SKILL.md +159 -0
  327. package/skills/global_config/test-driven-development/SKILL.md +378 -0
  328. package/skills/global_config/test-driven-development/testing-anti-patterns.md +299 -0
  329. package/skills/global_config/threejs-skills/SKILL.md +720 -0
  330. package/skills/global_config/tmux/SKILL.md +375 -0
  331. package/skills/global_config/turborepo-caching/SKILL.md +427 -0
  332. package/skills/global_config/typescript-pro/SKILL.md +58 -0
  333. package/skills/global_config/ui-component/SKILL.md +104 -0
  334. package/skills/global_config/ui-page/SKILL.md +100 -0
  335. package/skills/global_config/ui-pattern/SKILL.md +92 -0
  336. package/skills/global_config/ui-review/SKILL.md +90 -0
  337. package/skills/global_config/ui-tokens/SKILL.md +73 -0
  338. package/skills/global_config/ui-ux-pro-max/SKILL.md +361 -0
  339. package/skills/global_config/ui-ux-pro-max/data/charts.csv +26 -0
  340. package/skills/global_config/ui-ux-pro-max/data/colors.csv +97 -0
  341. package/skills/global_config/ui-ux-pro-max/data/icons.csv +101 -0
  342. package/skills/global_config/ui-ux-pro-max/data/landing.csv +31 -0
  343. package/skills/global_config/ui-ux-pro-max/data/products.csv +97 -0
  344. package/skills/global_config/ui-ux-pro-max/data/prompts.csv +24 -0
  345. package/skills/global_config/ui-ux-pro-max/data/react-performance.csv +45 -0
  346. package/skills/global_config/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  347. package/skills/global_config/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  348. package/skills/global_config/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  349. package/skills/global_config/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  350. package/skills/global_config/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  351. package/skills/global_config/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  352. package/skills/global_config/ui-ux-pro-max/data/stacks/react.csv +54 -0
  353. package/skills/global_config/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  354. package/skills/global_config/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  355. package/skills/global_config/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  356. package/skills/global_config/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  357. package/skills/global_config/ui-ux-pro-max/data/styles.csv +59 -0
  358. package/skills/global_config/ui-ux-pro-max/data/typography.csv +58 -0
  359. package/skills/global_config/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  360. package/skills/global_config/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  361. package/skills/global_config/ui-ux-pro-max/data/web-interface.csv +31 -0
  362. package/skills/global_config/ui-ux-pro-max/scripts/__pycache__/core.cpython-313.pyc +0 -0
  363. package/skills/global_config/ui-ux-pro-max/scripts/__pycache__/design_system.cpython-313.pyc +0 -0
  364. package/skills/global_config/ui-ux-pro-max/scripts/core.py +257 -0
  365. package/skills/global_config/ui-ux-pro-max/scripts/design_system.py +487 -0
  366. package/skills/global_config/ui-ux-pro-max/scripts/search.py +76 -0
  367. package/skills/global_config/using-neon/SKILL.md +90 -0
  368. package/skills/global_config/ux-audit/SKILL.md +66 -0
  369. package/skills/global_config/ux-feedback/SKILL.md +68 -0
  370. package/skills/global_config/ux-flow/SKILL.md +72 -0
  371. package/skills/global_config/ux-persuasion-engineer/SKILL.md +119 -0
  372. package/skills/global_config/vector-database-engineer/SKILL.md +68 -0
  373. package/skills/global_config/vercel-ai-sdk-expert/SKILL.md +227 -0
  374. package/skills/global_config/vercel-deployment/SKILL.md +682 -0
  375. package/skills/global_config/wcag-audit-patterns/SKILL.md +49 -0
  376. package/skills/global_config/wcag-audit-patterns/resources/implementation-playbook.md +541 -0
  377. package/skills/global_config/web-artifacts-builder/LICENSE.txt +202 -0
  378. package/skills/global_config/web-artifacts-builder/SKILL.md +84 -0
  379. package/skills/global_config/web-artifacts-builder/scripts/bundle-artifact.sh +54 -0
  380. package/skills/global_config/web-artifacts-builder/scripts/init-artifact.sh +322 -0
  381. package/skills/global_config/web-artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
  382. package/skills/global_config/web-performance-optimization/SKILL.md +654 -0
  383. package/skills/global_config/web-scraper/SKILL.md +757 -0
  384. package/skills/global_config/web-scraper/references/data-transforms.md +397 -0
  385. package/skills/global_config/web-scraper/references/extraction-patterns.md +475 -0
  386. package/skills/global_config/web-scraper/references/output-templates.md +481 -0
  387. package/skills/global_config/webapp-testing/LICENSE.txt +202 -0
  388. package/skills/global_config/webapp-testing/SKILL.md +106 -0
  389. package/skills/global_config/webapp-testing/scripts/with_server.py +106 -0
  390. package/skills/global_config/writing-plans/SKILL.md +127 -0
  391. package/skills/global_config/zustand-store-ts/SKILL.md +79 -0
  392. package/skills/global_legacy/agent-manager-skill/SKILL.md +47 -0
  393. package/skills/global_legacy/agent-memory-mcp/SKILL.md +92 -0
  394. package/skills/global_legacy/agent-orchestrator/SKILL.md +321 -0
  395. package/skills/global_legacy/agent-orchestrator/references/capability-taxonomy.md +85 -0
  396. package/skills/global_legacy/agent-orchestrator/references/orchestration-patterns.md +129 -0
  397. package/skills/global_legacy/agent-orchestrator/scripts/match_skills.py +329 -0
  398. package/skills/global_legacy/agent-orchestrator/scripts/orchestrate.py +304 -0
  399. package/skills/global_legacy/agent-orchestrator/scripts/requirements.txt +1 -0
  400. package/skills/global_legacy/agent-orchestrator/scripts/scan_registry.py +508 -0
  401. package/skills/global_legacy/agent-tool-builder/SKILL.md +714 -0
  402. package/skills/global_legacy/ai-agent-development/SKILL.md +178 -0
  403. package/skills/global_legacy/ai-product/SKILL.md +753 -0
  404. package/skills/global_legacy/api-design-principles/SKILL.md +45 -0
  405. package/skills/global_legacy/api-design-principles/assets/api-design-checklist.md +155 -0
  406. package/skills/global_legacy/api-design-principles/assets/rest-api-template.py +182 -0
  407. package/skills/global_legacy/api-design-principles/references/graphql-schema-design.md +583 -0
  408. package/skills/global_legacy/api-design-principles/references/rest-best-practices.md +408 -0
  409. package/skills/global_legacy/api-design-principles/resources/implementation-playbook.md +513 -0
  410. package/skills/global_legacy/api-patterns/SKILL.md +90 -0
  411. package/skills/global_legacy/api-patterns/api-style.md +42 -0
  412. package/skills/global_legacy/api-patterns/auth.md +24 -0
  413. package/skills/global_legacy/api-patterns/documentation.md +26 -0
  414. package/skills/global_legacy/api-patterns/graphql.md +41 -0
  415. package/skills/global_legacy/api-patterns/rate-limiting.md +31 -0
  416. package/skills/global_legacy/api-patterns/response.md +37 -0
  417. package/skills/global_legacy/api-patterns/rest.md +40 -0
  418. package/skills/global_legacy/api-patterns/scripts/api_validator.py +211 -0
  419. package/skills/global_legacy/api-patterns/security-testing.md +122 -0
  420. package/skills/global_legacy/api-patterns/trpc.md +41 -0
  421. package/skills/global_legacy/api-patterns/versioning.md +22 -0
  422. package/skills/global_legacy/apify-lead-generation/SKILL.md +131 -0
  423. package/skills/global_legacy/apify-lead-generation/reference/scripts/run_actor.js +363 -0
  424. package/skills/global_legacy/apify-ultimate-scraper/SKILL.md +241 -0
  425. package/skills/global_legacy/apify-ultimate-scraper/reference/scripts/run_actor.js +363 -0
  426. package/skills/global_legacy/architect-review/SKILL.md +177 -0
  427. package/skills/global_legacy/bash-linux/SKILL.md +209 -0
  428. package/skills/global_legacy/brainstorming/SKILL.md +237 -0
  429. package/skills/global_legacy/browser-automation/SKILL.md +1116 -0
  430. package/skills/global_legacy/clean-code/SKILL.md +99 -0
  431. package/skills/global_legacy/cloudflare-workers-expert/SKILL.md +94 -0
  432. package/skills/global_legacy/concise-planning/SKILL.md +73 -0
  433. package/skills/global_legacy/copywriting/SKILL.md +254 -0
  434. package/skills/global_legacy/crewai/SKILL.md +458 -0
  435. package/skills/global_legacy/database-design/SKILL.md +62 -0
  436. package/skills/global_legacy/database-design/database-selection.md +43 -0
  437. package/skills/global_legacy/database-design/indexing.md +39 -0
  438. package/skills/global_legacy/database-design/migrations.md +48 -0
  439. package/skills/global_legacy/database-design/optimization.md +36 -0
  440. package/skills/global_legacy/database-design/orm-selection.md +30 -0
  441. package/skills/global_legacy/database-design/schema-design.md +56 -0
  442. package/skills/global_legacy/database-design/scripts/schema_validator.py +172 -0
  443. package/skills/global_legacy/debugger/SKILL.md +58 -0
  444. package/skills/global_legacy/deep-research/SKILL.md +120 -0
  445. package/skills/global_legacy/design-spells/SKILL.md +41 -0
  446. package/skills/global_legacy/design-taste-frontend/SKILL.md +247 -0
  447. package/skills/global_legacy/docker-expert/SKILL.md +418 -0
  448. package/skills/global_legacy/documentation/SKILL.md +265 -0
  449. package/skills/global_legacy/drizzle-orm-expert/SKILL.md +368 -0
  450. package/skills/global_legacy/executing-plans/SKILL.md +87 -0
  451. package/skills/global_legacy/frontend-design/LICENSE.txt +177 -0
  452. package/skills/global_legacy/frontend-design/SKILL.md +282 -0
  453. package/skills/global_legacy/frontend-dev-guidelines/SKILL.md +369 -0
  454. package/skills/global_legacy/frontend-dev-guidelines/resources/common-patterns.md +331 -0
  455. package/skills/global_legacy/frontend-dev-guidelines/resources/complete-examples.md +872 -0
  456. package/skills/global_legacy/frontend-dev-guidelines/resources/component-patterns.md +502 -0
  457. package/skills/global_legacy/frontend-dev-guidelines/resources/data-fetching.md +767 -0
  458. package/skills/global_legacy/frontend-dev-guidelines/resources/file-organization.md +502 -0
  459. package/skills/global_legacy/frontend-dev-guidelines/resources/loading-and-error-states.md +501 -0
  460. package/skills/global_legacy/frontend-dev-guidelines/resources/performance.md +406 -0
  461. package/skills/global_legacy/frontend-dev-guidelines/resources/routing-guide.md +364 -0
  462. package/skills/global_legacy/frontend-dev-guidelines/resources/styling-guide.md +428 -0
  463. package/skills/global_legacy/frontend-dev-guidelines/resources/typescript-standards.md +418 -0
  464. package/skills/global_legacy/gemini-api-dev/SKILL.md +138 -0
  465. package/skills/global_legacy/gemini-api-integration/SKILL.md +193 -0
  466. package/skills/global_legacy/geo-fundamentals/SKILL.md +165 -0
  467. package/skills/global_legacy/geo-fundamentals/scripts/geo_checker.py +289 -0
  468. package/skills/global_legacy/git-advanced-workflows/SKILL.md +420 -0
  469. package/skills/global_legacy/git-pr-review/SKILL.md +179 -0
  470. package/skills/global_legacy/github/SKILL.md +80 -0
  471. package/skills/global_legacy/github/agents/openai.yaml +4 -0
  472. package/skills/global_legacy/github-actions-templates/SKILL.md +353 -0
  473. package/skills/global_legacy/github-workflow-automation/SKILL.md +854 -0
  474. package/skills/global_legacy/go-concurrency-patterns/SKILL.md +41 -0
  475. package/skills/global_legacy/go-concurrency-patterns/resources/implementation-playbook.md +654 -0
  476. package/skills/global_legacy/go-playwright/SKILL.md +76 -0
  477. package/skills/global_legacy/go-playwright/resources/implementation-playbook.md +110 -0
  478. package/skills/global_legacy/golang-pro/SKILL.md +181 -0
  479. package/skills/global_legacy/google-sheets-automation/SKILL.md +149 -0
  480. package/skills/global_legacy/landing-page-generator/SKILL.md +213 -0
  481. package/skills/global_legacy/landing-page-generator/references/conversion-patterns.md +176 -0
  482. package/skills/global_legacy/landing-page-generator/references/frameworks.md +177 -0
  483. package/skills/global_legacy/landing-page-generator/references/landing-page-patterns.md +98 -0
  484. package/skills/global_legacy/landing-page-generator/references/seo-checklist.md +109 -0
  485. package/skills/global_legacy/landing-page-generator/scripts/landing_page_scaffolder.py +568 -0
  486. package/skills/global_legacy/linear-claude-skill/SKILL.md +523 -0
  487. package/skills/global_legacy/llm-app-patterns/SKILL.md +768 -0
  488. package/skills/global_legacy/llm-application-dev-ai-assistant/SKILL.md +43 -0
  489. package/skills/global_legacy/llm-application-dev-ai-assistant/resources/implementation-playbook.md +1236 -0
  490. package/skills/global_legacy/llm-prompt-optimizer/SKILL.md +187 -0
  491. package/skills/global_legacy/llm-structured-output/SKILL.md +212 -0
  492. package/skills/global_legacy/local-llm-expert/SKILL.md +88 -0
  493. package/skills/global_legacy/microservices-patterns/SKILL.md +43 -0
  494. package/skills/global_legacy/microservices-patterns/resources/implementation-playbook.md +607 -0
  495. package/skills/global_legacy/modern-javascript-patterns/SKILL.md +43 -0
  496. package/skills/global_legacy/modern-javascript-patterns/resources/implementation-playbook.md +910 -0
  497. package/skills/global_legacy/monorepo-management/SKILL.md +43 -0
  498. package/skills/global_legacy/monorepo-management/resources/implementation-playbook.md +621 -0
  499. package/skills/global_legacy/n8n-code-javascript/SKILL.md +706 -0
  500. package/skills/global_legacy/n8n-code-python/SKILL.md +755 -0
  501. package/skills/global_legacy/n8n-expression-syntax/SKILL.md +528 -0
  502. package/skills/global_legacy/n8n-mcp-tools-expert/SKILL.md +654 -0
  503. package/skills/global_legacy/n8n-workflow-patterns/SKILL.md +423 -0
  504. package/skills/global_legacy/neon-postgres/SKILL.md +619 -0
  505. package/skills/global_legacy/nextjs-app-router-patterns/SKILL.md +41 -0
  506. package/skills/global_legacy/nextjs-app-router-patterns/resources/implementation-playbook.md +543 -0
  507. package/skills/global_legacy/nextjs-best-practices/SKILL.md +213 -0
  508. package/skills/global_legacy/notion-automation/SKILL.md +224 -0
  509. package/skills/global_legacy/obsidian-markdown/SKILL.md +209 -0
  510. package/skills/global_legacy/obsidian-markdown/references/CALLOUTS.md +58 -0
  511. package/skills/global_legacy/obsidian-markdown/references/EMBEDS.md +63 -0
  512. package/skills/global_legacy/obsidian-markdown/references/PROPERTIES.md +61 -0
  513. package/skills/global_legacy/openapi-spec-generation/SKILL.md +41 -0
  514. package/skills/global_legacy/openapi-spec-generation/resources/implementation-playbook.md +1027 -0
  515. package/skills/global_legacy/os-scripting/SKILL.md +433 -0
  516. package/skills/global_legacy/planning-with-files/SKILL.md +189 -0
  517. package/skills/global_legacy/planning-with-files/examples.md +202 -0
  518. package/skills/global_legacy/planning-with-files/reference.md +218 -0
  519. package/skills/global_legacy/planning-with-files/scripts/check-complete.sh +44 -0
  520. package/skills/global_legacy/planning-with-files/scripts/init-session.sh +120 -0
  521. package/skills/global_legacy/planning-with-files/templates/findings.md +95 -0
  522. package/skills/global_legacy/planning-with-files/templates/progress.md +114 -0
  523. package/skills/global_legacy/planning-with-files/templates/task_plan.md +132 -0
  524. package/skills/global_legacy/playwright-skill/API_REFERENCE.md +653 -0
  525. package/skills/global_legacy/playwright-skill/SKILL.md +469 -0
  526. package/skills/global_legacy/playwright-skill/lib/helpers.js +441 -0
  527. package/skills/global_legacy/playwright-skill/package.json +26 -0
  528. package/skills/global_legacy/playwright-skill/run.js +228 -0
  529. package/skills/global_legacy/posix-shell-pro/SKILL.md +308 -0
  530. package/skills/global_legacy/postgres-best-practices/AGENTS.md +1490 -0
  531. package/skills/global_legacy/postgres-best-practices/README.md +119 -0
  532. package/skills/global_legacy/postgres-best-practices/SKILL.md +63 -0
  533. package/skills/global_legacy/postgres-best-practices/metadata.json +13 -0
  534. package/skills/global_legacy/postgres-best-practices/rules/_contributing.md +171 -0
  535. package/skills/global_legacy/postgres-best-practices/rules/_sections.md +39 -0
  536. package/skills/global_legacy/postgres-best-practices/rules/_template.md +34 -0
  537. package/skills/global_legacy/postgres-best-practices/rules/advanced-full-text-search.md +55 -0
  538. package/skills/global_legacy/postgres-best-practices/rules/advanced-jsonb-indexing.md +49 -0
  539. package/skills/global_legacy/postgres-best-practices/rules/conn-idle-timeout.md +46 -0
  540. package/skills/global_legacy/postgres-best-practices/rules/conn-limits.md +44 -0
  541. package/skills/global_legacy/postgres-best-practices/rules/conn-pooling.md +41 -0
  542. package/skills/global_legacy/postgres-best-practices/rules/conn-prepared-statements.md +46 -0
  543. package/skills/global_legacy/postgres-best-practices/rules/data-batch-inserts.md +54 -0
  544. package/skills/global_legacy/postgres-best-practices/rules/data-n-plus-one.md +53 -0
  545. package/skills/global_legacy/postgres-best-practices/rules/data-pagination.md +50 -0
  546. package/skills/global_legacy/postgres-best-practices/rules/data-upsert.md +50 -0
  547. package/skills/global_legacy/postgres-best-practices/rules/lock-advisory.md +56 -0
  548. package/skills/global_legacy/postgres-best-practices/rules/lock-deadlock-prevention.md +68 -0
  549. package/skills/global_legacy/postgres-best-practices/rules/lock-short-transactions.md +50 -0
  550. package/skills/global_legacy/postgres-best-practices/rules/lock-skip-locked.md +54 -0
  551. package/skills/global_legacy/postgres-best-practices/rules/monitor-explain-analyze.md +45 -0
  552. package/skills/global_legacy/postgres-best-practices/rules/monitor-pg-stat-statements.md +55 -0
  553. package/skills/global_legacy/postgres-best-practices/rules/monitor-vacuum-analyze.md +55 -0
  554. package/skills/global_legacy/postgres-best-practices/rules/query-composite-indexes.md +44 -0
  555. package/skills/global_legacy/postgres-best-practices/rules/query-covering-indexes.md +40 -0
  556. package/skills/global_legacy/postgres-best-practices/rules/query-index-types.md +45 -0
  557. package/skills/global_legacy/postgres-best-practices/rules/query-missing-indexes.md +43 -0
  558. package/skills/global_legacy/postgres-best-practices/rules/query-partial-indexes.md +45 -0
  559. package/skills/global_legacy/postgres-best-practices/rules/schema-data-types.md +46 -0
  560. package/skills/global_legacy/postgres-best-practices/rules/schema-foreign-key-indexes.md +59 -0
  561. package/skills/global_legacy/postgres-best-practices/rules/schema-lowercase-identifiers.md +55 -0
  562. package/skills/global_legacy/postgres-best-practices/rules/schema-partitioning.md +55 -0
  563. package/skills/global_legacy/postgres-best-practices/rules/schema-primary-keys.md +61 -0
  564. package/skills/global_legacy/postgres-best-practices/rules/security-privileges.md +54 -0
  565. package/skills/global_legacy/postgres-best-practices/rules/security-rls-basics.md +50 -0
  566. package/skills/global_legacy/postgres-best-practices/rules/security-rls-performance.md +57 -0
  567. package/skills/global_legacy/postgresql/SKILL.md +233 -0
  568. package/skills/global_legacy/prisma-expert/SKILL.md +366 -0
  569. package/skills/global_legacy/product-manager-toolkit/SKILL.md +362 -0
  570. package/skills/global_legacy/product-manager-toolkit/references/prd_templates.md +317 -0
  571. package/skills/global_legacy/product-manager-toolkit/scripts/customer_interview_analyzer.py +441 -0
  572. package/skills/global_legacy/product-manager-toolkit/scripts/rice_prioritizer.py +296 -0
  573. package/skills/global_legacy/programmatic-seo/SKILL.md +356 -0
  574. package/skills/global_legacy/prompt-engineer/README.md +659 -0
  575. package/skills/global_legacy/prompt-engineer/SKILL.md +281 -0
  576. package/skills/global_legacy/prompt-engineering-patterns/SKILL.md +221 -0
  577. package/skills/global_legacy/prompt-engineering-patterns/assets/few-shot-examples.json +106 -0
  578. package/skills/global_legacy/prompt-engineering-patterns/assets/prompt-template-library.md +246 -0
  579. package/skills/global_legacy/prompt-engineering-patterns/references/chain-of-thought.md +399 -0
  580. package/skills/global_legacy/prompt-engineering-patterns/references/few-shot-learning.md +369 -0
  581. package/skills/global_legacy/prompt-engineering-patterns/references/prompt-optimization.md +414 -0
  582. package/skills/global_legacy/prompt-engineering-patterns/references/prompt-templates.md +470 -0
  583. package/skills/global_legacy/prompt-engineering-patterns/references/system-prompts.md +189 -0
  584. package/skills/global_legacy/prompt-engineering-patterns/scripts/optimize-prompt.py +279 -0
  585. package/skills/global_legacy/python-patterns/SKILL.md +451 -0
  586. package/skills/global_legacy/python-performance-optimization/SKILL.md +44 -0
  587. package/skills/global_legacy/python-performance-optimization/resources/implementation-playbook.md +868 -0
  588. package/skills/global_legacy/python-pro/SKILL.md +161 -0
  589. package/skills/global_legacy/rag-engineer/SKILL.md +341 -0
  590. package/skills/global_legacy/rag-implementation/SKILL.md +201 -0
  591. package/skills/global_legacy/react-best-practices/AGENTS.md +2249 -0
  592. package/skills/global_legacy/react-best-practices/README.md +123 -0
  593. package/skills/global_legacy/react-best-practices/SKILL.md +131 -0
  594. package/skills/global_legacy/react-best-practices/metadata.json +15 -0
  595. package/skills/global_legacy/react-best-practices/rules/_sections.md +46 -0
  596. package/skills/global_legacy/react-best-practices/rules/_template.md +28 -0
  597. package/skills/global_legacy/react-best-practices/rules/advanced-event-handler-refs.md +55 -0
  598. package/skills/global_legacy/react-best-practices/rules/advanced-use-latest.md +49 -0
  599. package/skills/global_legacy/react-best-practices/rules/async-api-routes.md +38 -0
  600. package/skills/global_legacy/react-best-practices/rules/async-defer-await.md +80 -0
  601. package/skills/global_legacy/react-best-practices/rules/async-dependencies.md +36 -0
  602. package/skills/global_legacy/react-best-practices/rules/async-parallel.md +28 -0
  603. package/skills/global_legacy/react-best-practices/rules/async-suspense-boundaries.md +99 -0
  604. package/skills/global_legacy/react-best-practices/rules/bundle-barrel-imports.md +59 -0
  605. package/skills/global_legacy/react-best-practices/rules/bundle-conditional.md +31 -0
  606. package/skills/global_legacy/react-best-practices/rules/bundle-defer-third-party.md +49 -0
  607. package/skills/global_legacy/react-best-practices/rules/bundle-dynamic-imports.md +35 -0
  608. package/skills/global_legacy/react-best-practices/rules/bundle-preload.md +50 -0
  609. package/skills/global_legacy/react-best-practices/rules/client-event-listeners.md +74 -0
  610. package/skills/global_legacy/react-best-practices/rules/client-swr-dedup.md +56 -0
  611. package/skills/global_legacy/react-best-practices/rules/js-batch-dom-css.md +82 -0
  612. package/skills/global_legacy/react-best-practices/rules/js-cache-function-results.md +80 -0
  613. package/skills/global_legacy/react-best-practices/rules/js-cache-property-access.md +28 -0
  614. package/skills/global_legacy/react-best-practices/rules/js-cache-storage.md +70 -0
  615. package/skills/global_legacy/react-best-practices/rules/js-combine-iterations.md +32 -0
  616. package/skills/global_legacy/react-best-practices/rules/js-early-exit.md +50 -0
  617. package/skills/global_legacy/react-best-practices/rules/js-hoist-regexp.md +45 -0
  618. package/skills/global_legacy/react-best-practices/rules/js-index-maps.md +37 -0
  619. package/skills/global_legacy/react-best-practices/rules/js-length-check-first.md +49 -0
  620. package/skills/global_legacy/react-best-practices/rules/js-min-max-loop.md +82 -0
  621. package/skills/global_legacy/react-best-practices/rules/js-set-map-lookups.md +24 -0
  622. package/skills/global_legacy/react-best-practices/rules/js-tosorted-immutable.md +57 -0
  623. package/skills/global_legacy/react-best-practices/rules/rendering-activity.md +26 -0
  624. package/skills/global_legacy/react-best-practices/rules/rendering-animate-svg-wrapper.md +47 -0
  625. package/skills/global_legacy/react-best-practices/rules/rendering-conditional-render.md +40 -0
  626. package/skills/global_legacy/react-best-practices/rules/rendering-content-visibility.md +38 -0
  627. package/skills/global_legacy/react-best-practices/rules/rendering-hoist-jsx.md +46 -0
  628. package/skills/global_legacy/react-best-practices/rules/rendering-hydration-no-flicker.md +82 -0
  629. package/skills/global_legacy/react-best-practices/rules/rendering-svg-precision.md +28 -0
  630. package/skills/global_legacy/react-best-practices/rules/rerender-defer-reads.md +39 -0
  631. package/skills/global_legacy/react-best-practices/rules/rerender-dependencies.md +45 -0
  632. package/skills/global_legacy/react-best-practices/rules/rerender-derived-state.md +29 -0
  633. package/skills/global_legacy/react-best-practices/rules/rerender-functional-setstate.md +74 -0
  634. package/skills/global_legacy/react-best-practices/rules/rerender-lazy-state-init.md +58 -0
  635. package/skills/global_legacy/react-best-practices/rules/rerender-memo.md +44 -0
  636. package/skills/global_legacy/react-best-practices/rules/rerender-transitions.md +40 -0
  637. package/skills/global_legacy/react-best-practices/rules/server-after-nonblocking.md +73 -0
  638. package/skills/global_legacy/react-best-practices/rules/server-cache-lru.md +41 -0
  639. package/skills/global_legacy/react-best-practices/rules/server-cache-react.md +26 -0
  640. package/skills/global_legacy/react-best-practices/rules/server-parallel-fetching.md +79 -0
  641. package/skills/global_legacy/react-best-practices/rules/server-serialization.md +38 -0
  642. package/skills/global_legacy/react-component-performance/SKILL.md +139 -0
  643. package/skills/global_legacy/react-component-performance/agents/openai.yaml +4 -0
  644. package/skills/global_legacy/react-component-performance/references/examples.md +88 -0
  645. package/skills/global_legacy/react-patterns/SKILL.md +216 -0
  646. package/skills/global_legacy/readme/SKILL.md +848 -0
  647. package/skills/global_legacy/remotion/SKILL.md +404 -0
  648. package/skills/global_legacy/schema-markup/SKILL.md +363 -0
  649. package/skills/global_legacy/senior-frontend/SKILL.md +495 -0
  650. package/skills/global_legacy/senior-frontend/references/frontend_best_practices.md +806 -0
  651. package/skills/global_legacy/senior-frontend/references/nextjs_optimization_guide.md +724 -0
  652. package/skills/global_legacy/senior-frontend/references/react_patterns.md +746 -0
  653. package/skills/global_legacy/senior-frontend/scripts/bundle_analyzer.py +407 -0
  654. package/skills/global_legacy/senior-frontend/scripts/component_generator.py +329 -0
  655. package/skills/global_legacy/senior-frontend/scripts/frontend_scaffolder.py +1005 -0
  656. package/skills/global_legacy/senior-fullstack/SKILL.md +220 -0
  657. package/skills/global_legacy/senior-fullstack/references/architecture_patterns.md +103 -0
  658. package/skills/global_legacy/senior-fullstack/references/development_workflows.md +103 -0
  659. package/skills/global_legacy/senior-fullstack/references/tech_stack_guide.md +103 -0
  660. package/skills/global_legacy/senior-fullstack/scripts/code_quality_analyzer.py +114 -0
  661. package/skills/global_legacy/senior-fullstack/scripts/fullstack_scaffolder.py +114 -0
  662. package/skills/global_legacy/senior-fullstack/scripts/project_scaffolder.py +114 -0
  663. package/skills/global_legacy/seo/SKILL.md +143 -0
  664. package/skills/global_legacy/seo/references/cwv-thresholds.md +108 -0
  665. package/skills/global_legacy/seo/references/eeat-framework.md +214 -0
  666. package/skills/global_legacy/seo/references/quality-gates.md +155 -0
  667. package/skills/global_legacy/seo/references/schema-types.md +118 -0
  668. package/skills/global_legacy/seo-audit/SKILL.md +492 -0
  669. package/skills/global_legacy/seo-technical/SKILL.md +179 -0
  670. package/skills/global_legacy/shadcn/SKILL.md +254 -0
  671. package/skills/global_legacy/shadcn/agents/openai.yml +5 -0
  672. package/skills/global_legacy/shadcn/assets/shadcn-small.png +0 -0
  673. package/skills/global_legacy/shadcn/assets/shadcn.png +0 -0
  674. package/skills/global_legacy/shadcn/cli.md +255 -0
  675. package/skills/global_legacy/shadcn/customization.md +202 -0
  676. package/skills/global_legacy/shadcn/evals/evals.json +47 -0
  677. package/skills/global_legacy/shadcn/mcp.md +94 -0
  678. package/skills/global_legacy/shadcn/rules/base-vs-radix.md +306 -0
  679. package/skills/global_legacy/shadcn/rules/composition.md +195 -0
  680. package/skills/global_legacy/shadcn/rules/forms.md +192 -0
  681. package/skills/global_legacy/shadcn/rules/icons.md +101 -0
  682. package/skills/global_legacy/shadcn/rules/styling.md +162 -0
  683. package/skills/global_legacy/simplify-code/SKILL.md +183 -0
  684. package/skills/global_legacy/slack-automation/SKILL.md +197 -0
  685. package/skills/global_legacy/software-architecture/SKILL.md +86 -0
  686. package/skills/global_legacy/spline-3d-integration/SKILL.md +90 -0
  687. package/skills/global_legacy/spline-3d-integration/examples/interactive-scene.tsx +198 -0
  688. package/skills/global_legacy/spline-3d-integration/examples/react-spline-wrapper.tsx +124 -0
  689. package/skills/global_legacy/spline-3d-integration/examples/vanilla-embed.html +146 -0
  690. package/skills/global_legacy/spline-3d-integration/guides/COMMON_PROBLEMS.md +262 -0
  691. package/skills/global_legacy/spline-3d-integration/guides/PERFORMANCE.md +163 -0
  692. package/skills/global_legacy/spline-3d-integration/guides/REACT_INTEGRATION.md +212 -0
  693. package/skills/global_legacy/spline-3d-integration/guides/VANILLA_INTEGRATION.md +203 -0
  694. package/skills/global_legacy/subagent-driven-development/SKILL.md +247 -0
  695. package/skills/global_legacy/subagent-driven-development/code-quality-reviewer-prompt.md +20 -0
  696. package/skills/global_legacy/subagent-driven-development/implementer-prompt.md +78 -0
  697. package/skills/global_legacy/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  698. package/skills/global_legacy/systematic-debugging/CREATION-LOG.md +119 -0
  699. package/skills/global_legacy/systematic-debugging/SKILL.md +303 -0
  700. package/skills/global_legacy/systematic-debugging/condition-based-waiting-example.ts +158 -0
  701. package/skills/global_legacy/systematic-debugging/condition-based-waiting.md +115 -0
  702. package/skills/global_legacy/systematic-debugging/defense-in-depth.md +122 -0
  703. package/skills/global_legacy/systematic-debugging/find-polluter.sh +63 -0
  704. package/skills/global_legacy/systematic-debugging/root-cause-tracing.md +169 -0
  705. package/skills/global_legacy/systematic-debugging/test-academic.md +14 -0
  706. package/skills/global_legacy/systematic-debugging/test-pressure-1.md +58 -0
  707. package/skills/global_legacy/systematic-debugging/test-pressure-2.md +68 -0
  708. package/skills/global_legacy/systematic-debugging/test-pressure-3.md +69 -0
  709. package/skills/global_legacy/tailwind-patterns/SKILL.md +279 -0
  710. package/skills/global_legacy/tanstack-query-expert/SKILL.md +247 -0
  711. package/skills/global_legacy/tdd-workflow/SKILL.md +159 -0
  712. package/skills/global_legacy/test-driven-development/SKILL.md +378 -0
  713. package/skills/global_legacy/test-driven-development/testing-anti-patterns.md +299 -0
  714. package/skills/global_legacy/threejs-skills/SKILL.md +720 -0
  715. package/skills/global_legacy/tmux/SKILL.md +375 -0
  716. package/skills/global_legacy/turborepo-caching/SKILL.md +427 -0
  717. package/skills/global_legacy/typescript-pro/SKILL.md +58 -0
  718. package/skills/global_legacy/ui-component/SKILL.md +104 -0
  719. package/skills/global_legacy/ui-page/SKILL.md +100 -0
  720. package/skills/global_legacy/ui-pattern/SKILL.md +92 -0
  721. package/skills/global_legacy/ui-review/SKILL.md +90 -0
  722. package/skills/global_legacy/ui-tokens/SKILL.md +73 -0
  723. package/skills/global_legacy/ui-ux-pro-max/SKILL.md +361 -0
  724. package/skills/global_legacy/ui-ux-pro-max/data/charts.csv +26 -0
  725. package/skills/global_legacy/ui-ux-pro-max/data/colors.csv +97 -0
  726. package/skills/global_legacy/ui-ux-pro-max/data/icons.csv +101 -0
  727. package/skills/global_legacy/ui-ux-pro-max/data/landing.csv +31 -0
  728. package/skills/global_legacy/ui-ux-pro-max/data/products.csv +97 -0
  729. package/skills/global_legacy/ui-ux-pro-max/data/prompts.csv +24 -0
  730. package/skills/global_legacy/ui-ux-pro-max/data/react-performance.csv +45 -0
  731. package/skills/global_legacy/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
  732. package/skills/global_legacy/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
  733. package/skills/global_legacy/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
  734. package/skills/global_legacy/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
  735. package/skills/global_legacy/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
  736. package/skills/global_legacy/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
  737. package/skills/global_legacy/ui-ux-pro-max/data/stacks/react.csv +54 -0
  738. package/skills/global_legacy/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
  739. package/skills/global_legacy/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
  740. package/skills/global_legacy/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
  741. package/skills/global_legacy/ui-ux-pro-max/data/stacks/vue.csv +50 -0
  742. package/skills/global_legacy/ui-ux-pro-max/data/styles.csv +59 -0
  743. package/skills/global_legacy/ui-ux-pro-max/data/typography.csv +58 -0
  744. package/skills/global_legacy/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
  745. package/skills/global_legacy/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
  746. package/skills/global_legacy/ui-ux-pro-max/data/web-interface.csv +31 -0
  747. package/skills/global_legacy/ui-ux-pro-max/scripts/core.py +257 -0
  748. package/skills/global_legacy/ui-ux-pro-max/scripts/design_system.py +487 -0
  749. package/skills/global_legacy/ui-ux-pro-max/scripts/search.py +76 -0
  750. package/skills/global_legacy/using-neon/SKILL.md +90 -0
  751. package/skills/global_legacy/ux-audit/SKILL.md +66 -0
  752. package/skills/global_legacy/ux-feedback/SKILL.md +68 -0
  753. package/skills/global_legacy/ux-flow/SKILL.md +72 -0
  754. package/skills/global_legacy/ux-persuasion-engineer/SKILL.md +119 -0
  755. package/skills/global_legacy/vector-database-engineer/SKILL.md +68 -0
  756. package/skills/global_legacy/vercel-ai-sdk-expert/SKILL.md +227 -0
  757. package/skills/global_legacy/vercel-deployment/SKILL.md +682 -0
  758. package/skills/global_legacy/wcag-audit-patterns/SKILL.md +49 -0
  759. package/skills/global_legacy/wcag-audit-patterns/resources/implementation-playbook.md +541 -0
  760. package/skills/global_legacy/web-artifacts-builder/LICENSE.txt +202 -0
  761. package/skills/global_legacy/web-artifacts-builder/SKILL.md +84 -0
  762. package/skills/global_legacy/web-artifacts-builder/scripts/bundle-artifact.sh +54 -0
  763. package/skills/global_legacy/web-artifacts-builder/scripts/init-artifact.sh +322 -0
  764. package/skills/global_legacy/web-artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
  765. package/skills/global_legacy/web-performance-optimization/SKILL.md +654 -0
  766. package/skills/global_legacy/web-scraper/SKILL.md +757 -0
  767. package/skills/global_legacy/web-scraper/references/data-transforms.md +397 -0
  768. package/skills/global_legacy/web-scraper/references/extraction-patterns.md +475 -0
  769. package/skills/global_legacy/web-scraper/references/output-templates.md +481 -0
  770. package/skills/global_legacy/webapp-testing/LICENSE.txt +202 -0
  771. package/skills/global_legacy/webapp-testing/SKILL.md +106 -0
  772. package/skills/global_legacy/webapp-testing/scripts/with_server.py +106 -0
  773. package/skills/global_legacy/writing-plans/SKILL.md +127 -0
  774. package/skills/global_legacy/zustand-store-ts/SKILL.md +79 -0
  775. package/skills/workspace_agents/firecrawl/SKILL.md +148 -0
  776. package/skills/workspace_agents/firecrawl/rules/install.md +82 -0
  777. package/skills/workspace_agents/firecrawl/rules/security.md +26 -0
  778. package/skills/workspace_agents/firecrawl-agent/SKILL.md +57 -0
  779. package/skills/workspace_agents/firecrawl-build/SKILL.md +38 -0
  780. package/skills/workspace_agents/firecrawl-build-interact/SKILL.md +67 -0
  781. package/skills/workspace_agents/firecrawl-build-onboarding/SKILL.md +102 -0
  782. package/skills/workspace_agents/firecrawl-build-onboarding/references/auth-flow.md +39 -0
  783. package/skills/workspace_agents/firecrawl-build-onboarding/references/project-setup.md +20 -0
  784. package/skills/workspace_agents/firecrawl-build-onboarding/references/sdk-installation.md +17 -0
  785. package/skills/workspace_agents/firecrawl-build-scrape/SKILL.md +68 -0
  786. package/skills/workspace_agents/firecrawl-build-search/SKILL.md +68 -0
  787. package/skills/workspace_agents/firecrawl-crawl/SKILL.md +58 -0
  788. package/skills/workspace_agents/firecrawl-download/SKILL.md +69 -0
  789. package/skills/workspace_agents/firecrawl-interact/SKILL.md +83 -0
  790. package/skills/workspace_agents/firecrawl-map/SKILL.md +50 -0
  791. package/skills/workspace_agents/firecrawl-scrape/SKILL.md +68 -0
  792. package/skills/workspace_agents/firecrawl-search/SKILL.md +59 -0
@@ -0,0 +1,92 @@
1
+ ---
2
+ name: ui-pattern
3
+ description: "Generate reusable UI patterns such as card sections, grids, lists, forms, and chart wrappers using StyleSeed Toss primitives."
4
+ category: design
5
+ risk: safe
6
+ source: community
7
+ source_repo: bitjaru/styleseed
8
+ source_type: community
9
+ date_added: "2026-04-08"
10
+ author: bitjaru
11
+ tags: [ui, patterns, design-system, reuse, styleseed]
12
+ tools: [claude, cursor, codex, gemini]
13
+ ---
14
+
15
+ # UI Pattern
16
+
17
+ ## Overview
18
+
19
+ Part of [StyleSeed](https://github.com/bitjaru/styleseed), this skill builds reusable composed patterns from the seed's primitives. It is intended for sections like card lists, grids, form blocks, ranking lists, and chart wrappers that appear across multiple pages and need to look deliberate rather than ad hoc.
20
+
21
+ ## When to Use
22
+ - Use when you need a reusable layout pattern rather than a one-off page section
23
+ - Use when a page repeats the same arrangement of cards, rows, filters, or data blocks
24
+ - Use when you want to build from existing StyleSeed primitives instead of copying markup
25
+ - Use when you want a pattern component with props for dynamic content
26
+
27
+ ## How It Works
28
+
29
+ ### Step 1: Identify the Pattern Type
30
+
31
+ Common pattern families include:
32
+ - card section
33
+ - two-column grid
34
+ - horizontal scroller
35
+ - list section
36
+ - form section
37
+ - stat grid
38
+ - data table
39
+ - detail card
40
+ - chart card
41
+ - filter bar
42
+ - action sheet
43
+
44
+ ### Step 2: Read the Available Building Blocks
45
+
46
+ Inspect both:
47
+ - `components/ui/` for primitives
48
+ - `components/patterns/` for neighboring patterns that can be extended
49
+
50
+ The goal is composition, not duplication.
51
+
52
+ ### Step 3: Apply StyleSeed Layout Rules
53
+
54
+ Keep the Toss seed defaults intact:
55
+ - card surfaces on semantic tokens
56
+ - rounded corners from the system scale
57
+ - shadow tokens instead of improvised shadow values
58
+ - consistent internal padding
59
+ - section wrappers that align with the page margin system
60
+
61
+ ### Step 4: Make the Pattern Dynamic
62
+
63
+ Expose data through props instead of hardcoding content. If a pattern has multiple variants, keep the API explicit and small.
64
+
65
+ ### Step 5: Keep the Pattern Reusable Across Pages
66
+
67
+ Avoid page-specific assumptions unless the user explicitly wants a one-off section. If the markup only works on one route, it probably belongs in a page component, not a shared pattern.
68
+
69
+ ## Output
70
+
71
+ Provide:
72
+ 1. The generated pattern component
73
+ 2. The target location
74
+ 3. Expected props and usage example
75
+ 4. Notes on which existing primitives were reused
76
+
77
+ ## Best Practices
78
+
79
+ - Start from the smallest existing building block that solves the problem
80
+ - Keep container, section, and item responsibilities separate
81
+ - Use tokens and spacing rules consistently
82
+ - Prefer extending a pattern over adding a near-duplicate sibling
83
+
84
+ ## Additional Resources
85
+
86
+ - [StyleSeed repository](https://github.com/bitjaru/styleseed)
87
+ - [Source skill](https://github.com/bitjaru/styleseed/blob/main/seeds/toss/.claude/skills/ui-pattern/SKILL.md)
88
+
89
+ ## Limitations
90
+ - Use this skill only when the task clearly matches the scope described above.
91
+ - Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
92
+ - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
@@ -0,0 +1,90 @@
1
+ ---
2
+ name: ui-review
3
+ description: "Review UI code for StyleSeed design-system compliance, accessibility, mobile ergonomics, spacing discipline, and implementation quality."
4
+ category: design
5
+ risk: safe
6
+ source: community
7
+ source_repo: bitjaru/styleseed
8
+ source_type: community
9
+ date_added: "2026-04-08"
10
+ author: bitjaru
11
+ tags: [ui, review, design-system, accessibility, styleseed]
12
+ tools: [claude, cursor, codex, gemini]
13
+ ---
14
+
15
+ # UI Review
16
+
17
+ ## Overview
18
+
19
+ Part of [StyleSeed](https://github.com/bitjaru/styleseed), this skill audits UI code against the Toss seed's conventions instead of reviewing it as generic frontend work. It focuses on design-token discipline, component ergonomics, accessibility, mobile readiness, typography, and spacing consistency.
20
+
21
+ ## When to Use
22
+ - Use when a component or page should follow the StyleSeed Toss design language
23
+ - Use when reviewing a UI-heavy PR for consistency and design-system violations
24
+ - Use when the output looks "mostly fine" but feels off in subtle ways
25
+ - Use when you need a structured review with concrete fixes
26
+
27
+ ## Review Checklist
28
+
29
+ ### Design Tokens
30
+
31
+ - no hardcoded hex colors when semantic tokens exist
32
+ - no improvised shadow values when tokenized shadows exist
33
+ - no arbitrary radius choices outside the system scale
34
+ - no random spacing values that break the seed rhythm
35
+
36
+ ### Component Conventions
37
+
38
+ - uses the project's class merge helper
39
+ - supports `className` extension when appropriate
40
+ - uses the agreed typing pattern
41
+ - avoids wrapper components that only forward one class string
42
+ - reuses existing primitives before inventing new ones
43
+
44
+ ### Accessibility
45
+
46
+ - touch targets large enough for mobile
47
+ - visible keyboard focus states
48
+ - labels and `aria-*` attributes where needed
49
+ - adequate color contrast
50
+ - reduced-motion respect for animation
51
+
52
+ ### Mobile UX
53
+
54
+ - no horizontal overflow
55
+ - safe-area handling where relevant
56
+ - readable text sizes
57
+ - thumb-friendly interaction spacing
58
+ - bottom nav or sticky actions do not obscure content
59
+
60
+ ### Typography and Spacing
61
+
62
+ - uses the system type hierarchy
63
+ - display and headings are not overly loose
64
+ - body text remains readable
65
+ - spacing follows the seed grid instead of arbitrary values
66
+
67
+ ## Output Format
68
+
69
+ Return:
70
+ 1. A verdict: Pass, Needs Improvement, or Fail
71
+ 2. A prioritized list of issues with file and line references when available
72
+ 3. Concrete fixes for each issue
73
+ 4. Any open questions where the design intent is ambiguous
74
+
75
+ ## Best Practices
76
+
77
+ - Review against the seed, not against personal taste
78
+ - Separate stylistic drift from real usability or accessibility bugs
79
+ - Prefer actionable diffs over abstract criticism
80
+ - Call out duplication when an existing component already solves the problem
81
+
82
+ ## Additional Resources
83
+
84
+ - [StyleSeed repository](https://github.com/bitjaru/styleseed)
85
+ - [Source skill](https://github.com/bitjaru/styleseed/blob/main/seeds/toss/.claude/skills/ui-review/SKILL.md)
86
+
87
+ ## Limitations
88
+ - Use this skill only when the task clearly matches the scope described above.
89
+ - Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
90
+ - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
@@ -0,0 +1,73 @@
1
+ ---
2
+ name: ui-tokens
3
+ description: "List, add, and update StyleSeed design tokens while keeping JSON sources, CSS variables, and dark-mode values in sync."
4
+ category: design
5
+ risk: safe
6
+ source: community
7
+ source_repo: bitjaru/styleseed
8
+ source_type: community
9
+ date_added: "2026-04-08"
10
+ author: bitjaru
11
+ tags: [ui, tokens, design-system, theming, styleseed]
12
+ tools: [claude, cursor, codex, gemini]
13
+ ---
14
+
15
+ # UI Tokens
16
+
17
+ ## Overview
18
+
19
+ Part of [StyleSeed](https://github.com/bitjaru/styleseed), this skill manages design tokens without letting the source-of-truth files drift apart. It is meant for teams using the Toss seed's JSON token files and CSS implementation together.
20
+
21
+ ## When to Use
22
+ - Use when you need to inspect the current token set
23
+ - Use when you want to add a new color, shadow, radius, spacing, or typography token
24
+ - Use when you need to update a token and propagate the change safely
25
+ - Use when the project has both JSON token files and CSS variables that must stay aligned
26
+
27
+ ## How It Works
28
+
29
+ ### Supported Actions
30
+
31
+ - `list`: show the current tokens in a human-readable form
32
+ - `add`: introduce a new token and wire it through the implementation
33
+ - `update`: change an existing token value and audit the downstream usage
34
+
35
+ ### Typical Source-of-Truth Split
36
+
37
+ For the Toss seed:
38
+ - JSON under `tokens/`
39
+ - CSS variables and theme wiring under `css/theme.css`
40
+ - typography support in the font and base CSS files
41
+
42
+ ### Rules
43
+
44
+ - keep JSON and CSS in sync
45
+ - prefer semantic names over descriptive names
46
+ - provide dark-mode support where relevant
47
+ - update the token implementation, not just the source manifest
48
+ - check for direct component usage that might now be stale
49
+
50
+ ## Output
51
+
52
+ Return:
53
+ 1. The requested token inventory or change summary
54
+ 2. Every file touched
55
+ 3. Any affected components or utilities that should be reviewed
56
+ 4. Follow-up actions if the new token requires broader adoption
57
+
58
+ ## Best Practices
59
+
60
+ - Add semantic intent, not one-off brand shades
61
+ - Avoid token sprawl by extending existing scales first
62
+ - Keep naming consistent with the rest of the system
63
+ - Review contrast and accessibility when introducing new colors
64
+
65
+ ## Additional Resources
66
+
67
+ - [StyleSeed repository](https://github.com/bitjaru/styleseed)
68
+ - [Source skill](https://github.com/bitjaru/styleseed/blob/main/seeds/toss/.claude/skills/ui-tokens/SKILL.md)
69
+
70
+ ## Limitations
71
+ - Use this skill only when the task clearly matches the scope described above.
72
+ - Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
73
+ - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
@@ -0,0 +1,361 @@
1
+ ---
2
+ name: ui-ux-pro-max
3
+ description: "Comprehensive design guide for web and mobile applications. Use when designing new UI components or pages, choosing color palettes and typography, or reviewing code for UX issues."
4
+ risk: unknown
5
+ source: community
6
+ date_added: "2026-02-27"
7
+ ---
8
+
9
+ # UI/UX Pro Max - Design Intelligence
10
+
11
+ Comprehensive design guide for web and mobile applications. Contains 50+ styles, 97 color palettes, 57 font pairings, 99 UX guidelines, and 25 chart types across 9 technology stacks. Searchable database with priority-based recommendations.
12
+
13
+ ## When to Use
14
+ Reference these guidelines when:
15
+ - Designing new UI components or pages
16
+ - Choosing color palettes and typography
17
+ - Reviewing code for UX issues
18
+ - Building landing pages or dashboards
19
+ - Implementing accessibility requirements
20
+
21
+ ## Rule Categories by Priority
22
+
23
+ | Priority | Category | Impact | Domain |
24
+ |----------|----------|--------|--------|
25
+ | 1 | Accessibility | CRITICAL | `ux` |
26
+ | 2 | Touch & Interaction | CRITICAL | `ux` |
27
+ | 3 | Performance | HIGH | `ux` |
28
+ | 4 | Layout & Responsive | HIGH | `ux` |
29
+ | 5 | Typography & Color | MEDIUM | `typography`, `color` |
30
+ | 6 | Animation | MEDIUM | `ux` |
31
+ | 7 | Style Selection | MEDIUM | `style`, `product` |
32
+ | 8 | Charts & Data | LOW | `chart` |
33
+
34
+ ## Quick Reference
35
+
36
+ ### 1. Accessibility (CRITICAL)
37
+
38
+ - `color-contrast` - Minimum 4.5:1 ratio for normal text
39
+ - `focus-states` - Visible focus rings on interactive elements
40
+ - `alt-text` - Descriptive alt text for meaningful images
41
+ - `aria-labels` - aria-label for icon-only buttons
42
+ - `keyboard-nav` - Tab order matches visual order
43
+ - `form-labels` - Use label with for attribute
44
+
45
+ ### 2. Touch & Interaction (CRITICAL)
46
+
47
+ - `touch-target-size` - Minimum 44x44px touch targets
48
+ - `hover-vs-tap` - Use click/tap for primary interactions
49
+ - `loading-buttons` - Disable button during async operations
50
+ - `error-feedback` - Clear error messages near problem
51
+ - `cursor-pointer` - Add cursor-pointer to clickable elements
52
+
53
+ ### 3. Performance (HIGH)
54
+
55
+ - `image-optimization` - Use WebP, srcset, lazy loading
56
+ - `reduced-motion` - Check prefers-reduced-motion
57
+ - `content-jumping` - Reserve space for async content
58
+
59
+ ### 4. Layout & Responsive (HIGH)
60
+
61
+ - `viewport-meta` - width=device-width initial-scale=1
62
+ - `readable-font-size` - Minimum 16px body text on mobile
63
+ - `horizontal-scroll` - Ensure content fits viewport width
64
+ - `z-index-management` - Define z-index scale (10, 20, 30, 50)
65
+
66
+ ### 5. Typography & Color (MEDIUM)
67
+
68
+ - `line-height` - Use 1.5-1.75 for body text
69
+ - `line-length` - Limit to 65-75 characters per line
70
+ - `font-pairing` - Match heading/body font personalities
71
+
72
+ ### 6. Animation (MEDIUM)
73
+
74
+ - `duration-timing` - Use 150-300ms for micro-interactions
75
+ - `transform-performance` - Use transform/opacity, not width/height
76
+ - `loading-states` - Skeleton screens or spinners
77
+
78
+ ### 7. Style Selection (MEDIUM)
79
+
80
+ - `style-match` - Match style to product type
81
+ - `consistency` - Use same style across all pages
82
+ - `no-emoji-icons` - Use SVG icons, not emojis
83
+
84
+ ### 8. Charts & Data (LOW)
85
+
86
+ - `chart-type` - Match chart type to data type
87
+ - `color-guidance` - Use accessible color palettes
88
+ - `data-table` - Provide table alternative for accessibility
89
+
90
+ ## How to Use
91
+
92
+ Search specific domains using the CLI tool below.
93
+
94
+ ---
95
+
96
+ ## Prerequisites
97
+
98
+ Check if Python is installed:
99
+
100
+ ```bash
101
+ python3 --version || python --version
102
+ ```
103
+
104
+ If Python is not installed, install it based on user's OS:
105
+
106
+ **macOS:**
107
+ ```bash
108
+ brew install python3
109
+ ```
110
+
111
+ **Ubuntu/Debian:**
112
+ ```bash
113
+ sudo apt update && sudo apt install python3
114
+ ```
115
+
116
+ **Windows:**
117
+ ```powershell
118
+ winget install Python.Python.3.12
119
+ ```
120
+
121
+ ---
122
+
123
+ ## How to Use This Skill
124
+
125
+ When user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:
126
+
127
+ ### Step 1: Analyze User Requirements
128
+
129
+ Extract key information from user request:
130
+ - **Product type**: SaaS, e-commerce, portfolio, dashboard, landing page, etc.
131
+ - **Style keywords**: minimal, playful, professional, elegant, dark mode, etc.
132
+ - **Industry**: healthcare, fintech, gaming, education, etc.
133
+ - **Stack**: React, Vue, Next.js, or default to `html-tailwind`
134
+
135
+ ### Step 2: Generate Design System (REQUIRED)
136
+
137
+ **Always start with `--design-system`** to get comprehensive recommendations with reasoning:
138
+
139
+ ```bash
140
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<product_type> <industry> <keywords>" --design-system [-p "Project Name"]
141
+ ```
142
+
143
+ This command:
144
+ 1. Searches 5 domains in parallel (product, style, color, landing, typography)
145
+ 2. Applies reasoning rules from `ui-reasoning.csv` to select best matches
146
+ 3. Returns complete design system: pattern, style, colors, typography, effects
147
+ 4. Includes anti-patterns to avoid
148
+
149
+ **Example:**
150
+ ```bash
151
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service" --design-system -p "Serenity Spa"
152
+ ```
153
+
154
+ ### Step 3: Supplement with Detailed Searches (as needed)
155
+
156
+ After getting the design system, use domain searches to get additional details:
157
+
158
+ ```bash
159
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]
160
+ ```
161
+
162
+ **When to use detailed searches:**
163
+
164
+ | Need | Domain | Example |
165
+ |------|--------|---------|
166
+ | More style options | `style` | `--domain style "glassmorphism dark"` |
167
+ | Chart recommendations | `chart` | `--domain chart "real-time dashboard"` |
168
+ | UX best practices | `ux` | `--domain ux "animation accessibility"` |
169
+ | Alternative fonts | `typography` | `--domain typography "elegant luxury"` |
170
+ | Landing structure | `landing` | `--domain landing "hero social-proof"` |
171
+
172
+ ### Step 4: Stack Guidelines (Default: html-tailwind)
173
+
174
+ Get implementation-specific best practices. If user doesn't specify a stack, **default to `html-tailwind`**.
175
+
176
+ ```bash
177
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "<keyword>" --stack html-tailwind
178
+ ```
179
+
180
+ Available stacks: `html-tailwind`, `react`, `nextjs`, `vue`, `svelte`, `swiftui`, `react-native`, `flutter`, `shadcn`
181
+
182
+ ---
183
+
184
+ ## Search Reference
185
+
186
+ ### Available Domains
187
+
188
+ | Domain | Use For | Example Keywords |
189
+ |--------|---------|------------------|
190
+ | `product` | Product type recommendations | SaaS, e-commerce, portfolio, healthcare, beauty, service |
191
+ | `style` | UI styles, colors, effects | glassmorphism, minimalism, dark mode, brutalism |
192
+ | `typography` | Font pairings, Google Fonts | elegant, playful, professional, modern |
193
+ | `color` | Color palettes by product type | saas, ecommerce, healthcare, beauty, fintech, service |
194
+ | `landing` | Page structure, CTA strategies | hero, hero-centric, testimonial, pricing, social-proof |
195
+ | `chart` | Chart types, library recommendations | trend, comparison, timeline, funnel, pie |
196
+ | `ux` | Best practices, anti-patterns | animation, accessibility, z-index, loading |
197
+ | `react` | React/Next.js performance | waterfall, bundle, suspense, memo, rerender, cache |
198
+ | `web` | Web interface guidelines | aria, focus, keyboard, semantic, virtualize |
199
+ | `prompt` | AI prompts, CSS keywords | (style name) |
200
+
201
+ ### Available Stacks
202
+
203
+ | Stack | Focus |
204
+ |-------|-------|
205
+ | `html-tailwind` | Tailwind utilities, responsive, a11y (DEFAULT) |
206
+ | `react` | State, hooks, performance, patterns |
207
+ | `nextjs` | SSR, routing, images, API routes |
208
+ | `vue` | Composition API, Pinia, Vue Router |
209
+ | `svelte` | Runes, stores, SvelteKit |
210
+ | `swiftui` | Views, State, Navigation, Animation |
211
+ | `react-native` | Components, Navigation, Lists |
212
+ | `flutter` | Widgets, State, Layout, Theming |
213
+ | `shadcn` | shadcn/ui components, theming, forms, patterns |
214
+
215
+ ---
216
+
217
+ ## Example Workflow
218
+
219
+ **User request:** "LΓ m landing page cho dα»‹ch vα»₯ chΔƒm sΓ³c da chuyΓͺn nghiệp"
220
+
221
+ ### Step 1: Analyze Requirements
222
+ - Product type: Beauty/Spa service
223
+ - Style keywords: elegant, professional, soft
224
+ - Industry: Beauty/Wellness
225
+ - Stack: html-tailwind (default)
226
+
227
+ ### Step 2: Generate Design System (REQUIRED)
228
+
229
+ ```bash
230
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service elegant" --design-system -p "Serenity Spa"
231
+ ```
232
+
233
+ **Output:** Complete design system with pattern, style, colors, typography, effects, and anti-patterns.
234
+
235
+ ### Step 3: Supplement with Detailed Searches (as needed)
236
+
237
+ ```bash
238
+ # Get UX guidelines for animation and accessibility
239
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "animation accessibility" --domain ux
240
+
241
+ # Get alternative typography options if needed
242
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "elegant luxury serif" --domain typography
243
+ ```
244
+
245
+ ### Step 4: Stack Guidelines
246
+
247
+ ```bash
248
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "layout responsive form" --stack html-tailwind
249
+ ```
250
+
251
+ **Then:** Synthesize design system + detailed searches and implement the design.
252
+
253
+ ---
254
+
255
+ ## Output Formats
256
+
257
+ The `--design-system` flag supports two output formats:
258
+
259
+ ```bash
260
+ # ASCII box (default) - best for terminal display
261
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "fintech crypto" --design-system
262
+
263
+ # Markdown - best for documentation
264
+ python3 .claude/skills/ui-ux-pro-max/scripts/search.py "fintech crypto" --design-system -f markdown
265
+ ```
266
+
267
+ ---
268
+
269
+ ## Tips for Better Results
270
+
271
+ 1. **Be specific with keywords** - "healthcare SaaS dashboard" > "app"
272
+ 2. **Search multiple times** - Different keywords reveal different insights
273
+ 3. **Combine domains** - Style + Typography + Color = Complete design system
274
+ 4. **Always check UX** - Search "animation", "z-index", "accessibility" for common issues
275
+ 5. **Use stack flag** - Get implementation-specific best practices
276
+ 6. **Iterate** - If first search doesn't match, try different keywords
277
+
278
+ ---
279
+
280
+ ## Common Rules for Professional UI
281
+
282
+ These are frequently overlooked issues that make UI look unprofessional:
283
+
284
+ ### Icons & Visual Elements
285
+
286
+ | Rule | Do | Don't |
287
+ |------|----|----- |
288
+ | **No emoji icons** | Use SVG icons (Heroicons, Lucide, Simple Icons) | Use emojis like 🎨 πŸš€ βš™οΈ as UI icons |
289
+ | **Stable hover states** | Use color/opacity transitions on hover | Use scale transforms that shift layout |
290
+ | **Correct brand logos** | Research official SVG from Simple Icons | Guess or use incorrect logo paths |
291
+ | **Consistent icon sizing** | Use fixed viewBox (24x24) with w-6 h-6 | Mix different icon sizes randomly |
292
+
293
+ ### Interaction & Cursor
294
+
295
+ | Rule | Do | Don't |
296
+ |------|----|----- |
297
+ | **Cursor pointer** | Add `cursor-pointer` to all clickable/hoverable cards | Leave default cursor on interactive elements |
298
+ | **Hover feedback** | Provide visual feedback (color, shadow, border) | No indication element is interactive |
299
+ | **Smooth transitions** | Use `transition-colors duration-200` | Instant state changes or too slow (>500ms) |
300
+
301
+ ### Light/Dark Mode Contrast
302
+
303
+ | Rule | Do | Don't |
304
+ |------|----|----- |
305
+ | **Glass card light mode** | Use `bg-white/80` or higher opacity | Use `bg-white/10` (too transparent) |
306
+ | **Text contrast light** | Use `#0F172A` (slate-900) for text | Use `#94A3B8` (slate-400) for body text |
307
+ | **Muted text light** | Use `#475569` (slate-600) minimum | Use gray-400 or lighter |
308
+ | **Border visibility** | Use `border-gray-200` in light mode | Use `border-white/10` (invisible) |
309
+
310
+ ### Layout & Spacing
311
+
312
+ | Rule | Do | Don't |
313
+ |------|----|----- |
314
+ | **Floating navbar** | Add `top-4 left-4 right-4` spacing | Stick navbar to `top-0 left-0 right-0` |
315
+ | **Content padding** | Account for fixed navbar height | Let content hide behind fixed elements |
316
+ | **Consistent max-width** | Use same `max-w-6xl` or `max-w-7xl` | Mix different container widths |
317
+
318
+ ---
319
+
320
+ ## Pre-Delivery Checklist
321
+
322
+ Before delivering UI code, verify these items:
323
+
324
+ ### Visual Quality
325
+ - [ ] No emojis used as icons (use SVG instead)
326
+ - [ ] All icons from consistent icon set (Heroicons/Lucide)
327
+ - [ ] Brand logos are correct (verified from Simple Icons)
328
+ - [ ] Hover states don't cause layout shift
329
+ - [ ] Use theme colors directly (bg-primary) not var() wrapper
330
+
331
+ ### Interaction
332
+ - [ ] All clickable elements have `cursor-pointer`
333
+ - [ ] Hover states provide clear visual feedback
334
+ - [ ] Transitions are smooth (150-300ms)
335
+ - [ ] Focus states visible for keyboard navigation
336
+
337
+ ### Light/Dark Mode
338
+ - [ ] Light mode text has sufficient contrast (4.5:1 minimum)
339
+ - [ ] Glass/transparent elements visible in light mode
340
+ - [ ] Borders visible in both modes
341
+ - [ ] Test both modes before delivery
342
+
343
+ ### Layout
344
+ - [ ] Floating elements have proper spacing from edges
345
+ - [ ] No content hidden behind fixed navbars
346
+ - [ ] Responsive at 375px, 768px, 1024px, 1440px
347
+ - [ ] No horizontal scroll on mobile
348
+
349
+ ### Accessibility
350
+ - [ ] All images have alt text
351
+ - [ ] Form inputs have labels
352
+ - [ ] Color is not the only indicator
353
+ - [ ] `prefers-reduced-motion` respected
354
+
355
+ ### When to Use
356
+ This skill is applicable to execute the workflow or actions described in the overview.
357
+
358
+ ## Limitations
359
+ - Use this skill only when the task clearly matches the scope described above.
360
+ - Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
361
+ - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
@@ -0,0 +1,26 @@
1
+ No,Data Type,Keywords,Best Chart Type,Secondary Options,Color Guidance,Performance Impact,Accessibility Notes,Library Recommendation,Interactive Level
2
+ 1,Trend Over Time,"trend, time-series, line, growth, timeline, progress",Line Chart,"Area Chart, Smooth Area",Primary: #0080FF. Multiple series: use distinct colors. Fill: 20% opacity,⚑ Excellent (optimized),βœ“ Clear line patterns for colorblind users. Add pattern overlays.,"Chart.js, Recharts, ApexCharts",Hover + Zoom
3
+ 2,Compare Categories,"compare, categories, bar, comparison, ranking",Bar Chart (Horizontal or Vertical),"Column Chart, Grouped Bar",Each bar: distinct color. Category: grouped same color. Sorted: descending order,⚑ Excellent,βœ“ Easy to compare. Add value labels on bars for clarity.,"Chart.js, Recharts, D3.js",Hover + Sort
4
+ 3,Part-to-Whole,"part-to-whole, pie, donut, percentage, proportion, share",Pie Chart or Donut,"Stacked Bar, Treemap",Colors: 5-6 max. Contrasting palette. Large slices first. Use labels.,⚑ Good (limit 6 slices),⚠ Hard for accessibility. Better: Stacked bar with legend. Avoid pie if >5 items.,"Chart.js, Recharts, D3.js",Hover + Drill
5
+ 4,Correlation/Distribution,"correlation, distribution, scatter, relationship, pattern",Scatter Plot or Bubble Chart,"Heat Map, Matrix",Color axis: gradient (blue-red). Size: relative. Opacity: 0.6-0.8 to show density,⚠ Moderate (many points),⚠ Provide data table alternative. Use pattern + color distinction.,"D3.js, Plotly, Recharts",Hover + Brush
6
+ 5,Heatmap/Intensity,"heatmap, heat-map, intensity, density, matrix",Heat Map or Choropleth,"Grid Heat Map, Bubble Heat",Gradient: Cool (blue) to Hot (red). Scale: clear legend. Divergent for ±data,⚑ Excellent (color CSS),⚠ Colorblind: Use pattern overlay. Provide numerical legend.,"D3.js, Plotly, ApexCharts",Hover + Zoom
7
+ 6,Geographic Data,"geographic, map, location, region, geo, spatial","Choropleth Map, Bubble Map",Geographic Heat Map,Regional: single color gradient or categorized colors. Legend: clear scale,⚠ Moderate (rendering),⚠ Include text labels for regions. Provide data table alternative.,"D3.js, Mapbox, Leaflet",Pan + Zoom + Drill
8
+ 7,Funnel/Flow,funnel/flow,"Funnel Chart, Sankey",Waterfall (for flows),Stages: gradient (starting color β†’ ending color). Show conversion %,⚑ Good,βœ“ Clear stage labels + percentages. Good for accessibility if labeled.,"D3.js, Recharts, Custom SVG",Hover + Drill
9
+ 8,Performance vs Target,performance-vs-target,Gauge Chart or Bullet Chart,"Dial, Thermometer",Performance: Redβ†’Yellowβ†’Green gradient. Target: marker line. Threshold colors,⚑ Good,βœ“ Add numerical value + percentage label beside gauge.,"D3.js, ApexCharts, Custom SVG",Hover
10
+ 9,Time-Series Forecast,time-series-forecast,Line with Confidence Band,Ribbon Chart,Actual: solid line #0080FF. Forecast: dashed #FF9500. Band: light shading,⚑ Good,βœ“ Clearly distinguish actual vs forecast. Add legend.,"Chart.js, ApexCharts, Plotly",Hover + Toggle
11
+ 10,Anomaly Detection,anomaly-detection,Line Chart with Highlights,Scatter with Alert,Normal: blue #0080FF. Anomaly: red #FF0000 circle/square marker + alert,⚑ Good,βœ“ Circle/marker for anomalies. Add text alert annotation.,"D3.js, Plotly, ApexCharts",Hover + Alert
12
+ 11,Hierarchical/Nested Data,hierarchical/nested-data,Treemap,"Sunburst, Nested Donut, Icicle",Parent: distinct hues. Children: lighter shades. White borders 2-3px.,⚠ Moderate,⚠ Poor - provide table alternative. Label large areas.,"D3.js, Recharts, ApexCharts",Hover + Drilldown
13
+ 12,Flow/Process Data,flow/process-data,Sankey Diagram,"Alluvial, Chord Diagram",Gradient from source to target. Opacity 0.4-0.6 for flows.,⚠ Moderate,⚠ Poor - provide flow table alternative.,"D3.js (d3-sankey), Plotly",Hover + Drilldown
14
+ 13,Cumulative Changes,cumulative-changes,Waterfall Chart,"Stacked Bar, Cascade",Increases: #4CAF50. Decreases: #F44336. Start: #2196F3. End: #0D47A1.,⚑ Good,βœ“ Good - clear directional colors with labels.,"ApexCharts, Highcharts, Plotly",Hover
15
+ 14,Multi-Variable Comparison,multi-variable-comparison,Radar/Spider Chart,"Parallel Coordinates, Grouped Bar",Single: #0080FF 20% fill. Multiple: distinct colors per dataset.,⚑ Good,⚠ Moderate - limit 5-8 axes. Add data table.,"Chart.js, Recharts, ApexCharts",Hover + Toggle
16
+ 15,Stock/Trading OHLC,stock/trading-ohlc,Candlestick Chart,"OHLC Bar, Heikin-Ashi",Bullish: #26A69A. Bearish: #EF5350. Volume: 40% opacity below.,⚑ Good,⚠ Moderate - provide OHLC data table.,"Lightweight Charts (TradingView), ApexCharts",Real-time + Hover + Zoom
17
+ 16,Relationship/Connection Data,relationship/connection-data,Network Graph,"Hierarchical Tree, Adjacency Matrix",Node types: categorical colors. Edges: #90A4AE 60% opacity.,❌ Poor (500+ nodes struggles),❌ Very Poor - provide adjacency list alternative.,"D3.js (d3-force), Vis.js, Cytoscape.js",Drilldown + Hover + Drag
18
+ 17,Distribution/Statistical,distribution/statistical,Box Plot,"Violin Plot, Beeswarm",Box: #BBDEFB. Border: #1976D2. Median: #D32F2F. Outliers: #F44336.,⚑ Excellent,"βœ“ Good - include stats table (min, Q1, median, Q3, max).","Plotly, D3.js, Chart.js (plugin)",Hover
19
+ 18,Performance vs Target (Compact),performance-vs-target-(compact),Bullet Chart,"Gauge, Progress Bar","Ranges: #FFCDD2, #FFF9C4, #C8E6C9. Performance: #1976D2. Target: black 3px.",⚑ Excellent,βœ“ Excellent - compact with clear values.,"D3.js, Plotly, Custom SVG",Hover
20
+ 19,Proportional/Percentage,proportional/percentage,Waffle Chart,"Pictogram, Stacked Bar 100%",10x10 grid. 3-5 categories max. 2-3px spacing between squares.,⚑ Good,βœ“ Good - better than pie for accessibility.,"D3.js, React-Waffle, Custom CSS Grid",Hover
21
+ 20,Hierarchical Proportional,hierarchical-proportional,Sunburst Chart,"Treemap, Icicle, Circle Packing",Center to outer: darker to lighter. 15-20% lighter per level.,⚠ Moderate,⚠ Poor - provide hierarchy table alternative.,"D3.js (d3-hierarchy), Recharts, ApexCharts",Drilldown + Hover
22
+ 21,Root Cause Analysis,"root cause, decomposition, tree, hierarchy, drill-down, ai-split",Decomposition Tree,"Decision Tree, Flow Chart",Nodes: #2563EB (Primary) vs #EF4444 (Negative impact). Connectors: Neutral grey.,⚠ Moderate (calculation heavy),βœ“ clear hierarchy. Allow keyboard navigation for nodes.,"Power BI (native), React-Flow, Custom D3.js",Drill + Expand
23
+ 22,3D Spatial Data,"3d, spatial, immersive, terrain, molecular, volumetric",3D Scatter/Surface Plot,"Volumetric Rendering, Point Cloud",Depth cues: lighting/shading. Z-axis: color gradient (cool to warm).,❌ Heavy (WebGL required),❌ Poor - requires alternative 2D view or data table.,"Three.js, Deck.gl, Plotly 3D",Rotate + Zoom + VR
24
+ 23,Real-Time Streaming,"streaming, real-time, ticker, live, velocity, pulse",Streaming Area Chart,"Ticker Tape, Moving Gauge",Current: Bright Pulse (#00FF00). History: Fading opacity. Grid: Dark.,⚑ Optimized (canvas/webgl),⚠ Flashing elements - provide pause button. High contrast.,Smoothed D3.js, CanvasJS, SciChart,Real-time + Pause
25
+ 24,Sentiment/Emotion,"sentiment, emotion, nlp, opinion, feeling",Word Cloud with Sentiment,"Sentiment Arc, Radar Chart",Positive: #22C55E. Negative: #EF4444. Neutral: #94A3B8. Size = Frequency.,⚑ Good,⚠ Word clouds poor for screen readers. Use list view.,"D3-cloud, Highcharts, Nivo",Hover + Filter
26
+ 25,Process Mining,"process, mining, variants, path, bottleneck, log",Process Map / Graph,"Directed Acyclic Graph (DAG), Petri Net",Happy path: #10B981 (Thick). Deviations: #F59E0B (Thin). Bottlenecks: #EF4444.,⚠ Moderate to Heavy,⚠ Complex graphs hard to navigate. Provide path summary.,"React-Flow, Cytoscape.js, Recharts",Drag + Node-Click