@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,213 @@
1
+ ---
2
+ name: "landing-page-generator"
3
+ description: "Generates high-converting Next.js/React landing pages with Tailwind CSS. Uses PAS, AIDA, and BAB frameworks for optimized copy/components (Heroes, Features, Pricing). Focuses on Core Web Vitals/SEO."
4
+ category: "front-end"
5
+ risk: "safe"
6
+ source: "community"
7
+ date_added: "2026-03-18"
8
+ author: "alirezarezvani"
9
+ tags: ["nextjs", "react", "tailwind", "landing-page", "marketing", "seo", "cro"]
10
+ tools: ["claude", "cursor", "gemini"]
11
+ ---
12
+
13
+ # Landing Page Generator
14
+
15
+ Generate high-converting landing pages from a product description. Output complete Next.js/React components with multiple section variants, proven copy frameworks, SEO optimization, and performance-first patterns. Not lorem ipsum — actual copy that converts.
16
+
17
+ **Target:** LCP < 1s · CLS < 0.1 · FID < 100ms
18
+ **Output:** TSX components + Tailwind styles + SEO meta + copy variants
19
+
20
+ ## When to Use
21
+ - You need to generate a marketing landing page in Next.js or React.
22
+ - The task involves conversion-focused page structure, section variants, Tailwind styling, or SEO-aware copy.
23
+ - You want complete landing-page output from a product description rather than isolated UI fragments.
24
+
25
+ ## Core Capabilities
26
+
27
+ - 5 hero section variants (centered, split, gradient, video-bg, minimal)
28
+ - Feature sections (grid, alternating, cards with icons)
29
+ - Pricing tables (2–4 tiers with feature lists and toggle)
30
+ - FAQ accordion with schema markup
31
+ - Testimonials (grid, carousel, single-quote)
32
+ - CTA sections (banner, full-page, inline)
33
+ - Footer (simple, mega, minimal)
34
+ - 4 design styles with Tailwind class sets
35
+
36
+ ---
37
+
38
+ ## Generation Workflow
39
+
40
+ Follow these steps in order for every landing page request:
41
+
42
+ 1. **Gather inputs** — collect product name, tagline, audience, pain point, key benefit, pricing tiers, design style, and copy framework using the trigger format below. Ask only for missing fields.
43
+ 2. **Analyze brand voice** (recommended) — if the user has existing brand content (website copy, blog posts, marketing materials), run it through `marketing-skill/content-production/scripts/brand_voice_analyzer.py` to get a voice profile (formality, tone, perspective). Use the profile to inform design style and copy framework selection:
44
+ - formal + professional → **enterprise** style, **AIDA** framework
45
+ - casual + friendly → **bold-startup** style, **BAB** framework
46
+ - professional + authoritative → **dark-saas** style, **PAS** framework
47
+ - casual + conversational → **clean-minimal** style, **BAB** framework
48
+ 3. **Select design style** — map the user's choice (or infer from brand voice analysis) to one of the four Tailwind class sets in the Design Style Reference.
49
+ 4. **Apply copy framework** — write all headline and body copy using the chosen framework (PAS / AIDA / BAB) before generating components. Match the voice profile's formality and tone throughout.
50
+ 5. **Generate sections in order** — Hero → Features → Pricing → FAQ → Testimonials → CTA → Footer. Skip sections not relevant to the product.
51
+ 6. **Validate against SEO checklist** — run through every item in the SEO Checklist before outputting final code. Fix any gaps inline.
52
+ 7. **Output final components** — deliver complete, copy-paste-ready TSX files with all Tailwind classes, SEO meta, and structured data included.
53
+
54
+ ---
55
+
56
+ ## Triggering This Skill
57
+
58
+ ```
59
+ Product: [name]
60
+ Tagline: [one sentence value prop]
61
+ Target audience: [who they are]
62
+ Key pain point: [what problem you solve]
63
+ Key benefit: [primary outcome]
64
+ Pricing tiers: [free/pro/enterprise or describe]
65
+ Design style: dark-saas | clean-minimal | bold-startup | enterprise
66
+ Copy framework: PAS | AIDA | BAB
67
+ ```
68
+
69
+ ---
70
+
71
+ ## Design Style Reference
72
+
73
+ | Style | Background | Accent | Cards | CTA Button |
74
+ |---|---|---|---|---|
75
+ | **Dark SaaS** | `bg-gray-950 text-white` | `violet-500/400` | `bg-gray-900 border border-gray-800` | `bg-violet-600 hover:bg-violet-500` |
76
+ | **Clean Minimal** | `bg-white text-gray-900` | `blue-600` | `bg-gray-50 border border-gray-200 rounded-2xl` | `bg-blue-600 hover:bg-blue-700` |
77
+ | **Bold Startup** | `bg-white text-gray-900` | `orange-500` | `shadow-xl rounded-3xl` | `bg-orange-500 hover:bg-orange-600 text-white` |
78
+ | **Enterprise** | `bg-slate-50 text-slate-900` | `slate-700` | `bg-white border border-slate-200 shadow-sm` | `bg-slate-900 hover:bg-slate-800 text-white` |
79
+
80
+ > **Bold Startup** headings: add `font-black tracking-tight` to all `<h1>`/`<h2>` elements.
81
+
82
+ ---
83
+
84
+ ## Copy Frameworks
85
+
86
+ **PAS (Problem → Agitate → Solution)**
87
+ - H1: Painful state they're in
88
+ - Sub: What happens if they don't fix it
89
+ - CTA: What you offer
90
+ - *Example — H1:* "Your team wastes 3 hours a day on manual reporting" / *Sub:* "Every hour spent on spreadsheets is an hour not closing deals. Your competitors are already automated." / *CTA:* "Automate your reports in 10 minutes →"
91
+
92
+ **AIDA (Attention → Interest → Desire → Action)**
93
+ - H1: Bold attention-grabbing statement → Sub: Interesting fact or benefit → Features: Desire-building proof points → CTA: Clear action
94
+
95
+ **BAB (Before → After → Bridge)**
96
+ - H1: "[Before state] → [After state]" → Sub: "Here's how [product] bridges the gap" → Features: How it works (the bridge)
97
+
98
+ ---
99
+
100
+ ## Representative Component: Hero (Centered Gradient — Dark SaaS)
101
+
102
+ Use this as the structural template for all hero variants. Swap layout classes, gradient direction, and image placement for split, video-bg, and minimal variants.
103
+
104
+ ```tsx
105
+ export function HeroCentered() {
106
+ return (
107
+ <section className="relative flex min-h-screen flex-col items-center justify-center overflow-hidden bg-gray-950 px-4 text-center">
108
+ <div className="absolute inset-0 bg-gradient-to-b from-violet-900/20 to-transparent" />
109
+ <div className="pointer-events-none absolute -top-40 left-1/2 h-[600px] w-[600px] -translate-x-1/2 rounded-full bg-violet-600/20 blur-3xl" />
110
+ <div className="relative z-10 max-w-4xl">
111
+ <div className="mb-6 inline-flex items-center gap-2 rounded-full border border-violet-500/30 bg-violet-500/10 px-4 py-1.5 text-sm text-violet-300">
112
+ <span className="h-1.5 w-1.5 rounded-full bg-violet-400" />
113
+ Now in public beta
114
+ </div>
115
+ <h1 className="mb-6 text-5xl font-bold tracking-tight text-white md:text-7xl">
116
+ Ship faster.<br />
117
+ <span className="bg-gradient-to-r from-violet-400 to-pink-400 bg-clip-text text-transparent">
118
+ Break less.
119
+ </span>
120
+ </h1>
121
+ <p className="mx-auto mb-10 max-w-2xl text-xl text-gray-400">
122
+ The deployment platform that catches errors before your users do.
123
+ Zero config. Instant rollbacks. Real-time monitoring.
124
+ </p>
125
+ <div className="flex flex-col items-center gap-4 sm:flex-row sm:justify-center">
126
+ <Button size="lg" className="bg-violet-600 text-white hover:bg-violet-500 px-8">
127
+ Start free trial
128
+ </Button>
129
+ <Button size="lg" variant="outline" className="border-gray-700 text-gray-300">
130
+ See how it works →
131
+ </Button>
132
+ </div>
133
+ <p className="mt-4 text-sm text-gray-500">No credit card required · 14-day free trial</p>
134
+ </div>
135
+ </section>
136
+ )
137
+ }
138
+ ```
139
+
140
+ ---
141
+
142
+ ## Other Section Patterns
143
+
144
+ ### Feature Section (Alternating)
145
+
146
+ Map over a `features` array with `{ title, description, image, badge }`. Toggle layout direction with `i % 2 === 1 ? "lg:flex-row-reverse" : ""`. Use `<Image>` with explicit `width`/`height` and `rounded-2xl shadow-xl`. Wrap in `<section className="py-24">` with `max-w-6xl` container.
147
+
148
+ ### Pricing Table
149
+
150
+ Map over a `plans` array with `{ name, price, description, features[], cta, highlighted }`. Highlighted plan gets `border-2 border-violet-500 bg-violet-950/50 ring-4 ring-violet-500/20`; others get `border border-gray-800 bg-gray-900`. Render `null` price as "Custom". Use `<Check>` icon per feature row. Layout: `grid gap-8 lg:grid-cols-3`.
151
+
152
+ ### FAQ with Schema Markup
153
+
154
+ Inject `FAQPage` JSON-LD via `<script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(schema) }} />` inside the section. Map FAQs with `{ q, a }` into shadcn `<Accordion>` with `type="single" collapsible`. Container: `max-w-3xl`.
155
+
156
+ ### Testimonials, CTA, Footer
157
+
158
+ - **Testimonials:** Grid (`grid-cols-1 md:grid-cols-3`) or single-quote hero block with avatar, name, role, and quote text.
159
+ - **CTA Banner:** Full-width section with headline, subhead, and two buttons (primary + ghost). Add trust signals (money-back guarantee, logo strip) immediately below.
160
+ - **Footer:** Logo + nav columns + social links + legal. Use `border-t border-gray-800` separator.
161
+
162
+ ---
163
+
164
+ ## SEO Checklist
165
+
166
+ - [ ] `<title>` tag: primary keyword + brand (50–60 chars)
167
+ - [ ] Meta description: benefit + CTA (150–160 chars)
168
+ - [ ] OG image: 1200×630px with product name and tagline
169
+ - [ ] H1: one per page, includes primary keyword
170
+ - [ ] Structured data: FAQPage, Product, or Organization schema
171
+ - [ ] Canonical URL set
172
+ - [ ] Image alt text on all `<Image>` components
173
+ - [ ] robots.txt and sitemap.xml configured
174
+ - [ ] Core Web Vitals: LCP < 1s, CLS < 0.1
175
+ - [ ] Mobile viewport meta tag present
176
+ - [ ] Internal linking to pricing and docs
177
+
178
+ > **Validation step:** Before outputting final code, verify every checklist item above is satisfied. Fix any gaps inline — do not skip items.
179
+
180
+ ---
181
+
182
+ ## Performance Targets
183
+
184
+ | Metric | Target | Technique |
185
+ |---|---|---|
186
+ | LCP | < 1s | Preload hero image, use `priority` on Next/Image |
187
+ | CLS | < 0.1 | Set explicit width/height on all images |
188
+ | FID/INP | < 100ms | Defer non-critical JS, use `loading="lazy"` |
189
+ | TTFB | < 200ms | Use ISR or static generation for landing pages |
190
+ | Bundle | < 100KB JS | Audit with `@next/bundle-analyzer` |
191
+
192
+ ---
193
+
194
+ ## Common Pitfalls
195
+
196
+ - Hero image not preloaded — add `priority` prop to first `<Image>`
197
+ - Missing mobile breakpoints — always design mobile-first with `sm:` prefixes
198
+ - CTA copy too vague — "Get started" beats "Learn more"; "Start free trial" beats "Sign up"
199
+ - Pricing page missing trust signals — add money-back guarantee and testimonials near CTA
200
+ - No above-the-fold CTA on mobile — ensure button is visible without scrolling on 375px viewport
201
+
202
+ ---
203
+
204
+ ## Related Skills
205
+
206
+ - **Brand Voice Analyzer** (`marketing-skill/content-production/scripts/brand_voice_analyzer.py`) — Run before generation to establish voice profile and ensure copy consistency
207
+ - **UI Design System** (`product-team/ui-design-system/`) — Generate design tokens from brand color before building the page
208
+ - **Competitive Teardown** (`product-team/competitive-teardown/`) — Competitive positioning informs landing page messaging and differentiation
209
+
210
+ ## Limitations
211
+ - Use this skill only when the task clearly matches the scope described above.
212
+ - Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
213
+ - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
@@ -0,0 +1,176 @@
1
+ # High-Converting Landing Page Patterns
2
+
3
+ ## Overview
4
+
5
+ This reference catalogs proven landing page design patterns that drive higher conversion rates. Each pattern includes placement guidance, implementation notes, and A/B testing priorities.
6
+
7
+ ## Hero Section Layouts
8
+
9
+ ### Pattern 1: Left Copy + Right Product Screenshot
10
+ - **Best for:** SaaS products with a strong visual UI
11
+ - **Structure:** Headline, subheadline, CTA on left (60%); product screenshot on right (40%)
12
+ - **Why it works:** F-pattern reading leads with copy, product image provides proof
13
+ - **Conversion lift:** Baseline pattern, strong performer across industries
14
+
15
+ ### Pattern 2: Centered Copy + Full-Width Background
16
+ - **Best for:** Brand-driven products, consumer apps
17
+ - **Structure:** Centered headline, subheadline, CTA over background image/gradient
18
+ - **Why it works:** Focuses attention on single message, high visual impact
19
+ - **Note:** Ensure text contrast against background for readability
20
+
21
+ ### Pattern 3: Video Hero
22
+ - **Best for:** Complex products requiring demonstration
23
+ - **Structure:** Short headline + embedded video (60-90 seconds) + CTA below
24
+ - **Why it works:** Video explains what text cannot, increases time on page
25
+ - **Note:** Always include thumbnail; autoplay is often counterproductive
26
+
27
+ ### Pattern 4: Interactive Demo
28
+ - **Best for:** Developer tools, data products, design tools
29
+ - **Structure:** Minimal copy + embedded interactive product experience
30
+ - **Why it works:** Hands-on experience converts better than description
31
+ - **Note:** Keep demo focused on one "aha moment" workflow
32
+
33
+ ## Social Proof Placement
34
+
35
+ ### Logo Bar
36
+ - **Position:** Immediately below hero section
37
+ - **Count:** 5-7 logos for credibility without clutter
38
+ - **Label:** "Trusted by" or "Used by teams at"
39
+ - **Selection:** Mix recognizable brands with relevant industry logos
40
+
41
+ ### Testimonial Cards
42
+ - **Position:** After feature explanation sections
43
+ - **Format:** Photo + name + title + company + specific quote
44
+ - **Best quotes:** Include measurable outcomes ("Saved 10 hours/week")
45
+ - **Layout:** 2-3 testimonials in a row, carousel for more
46
+
47
+ ### Case Study Callouts
48
+ - **Position:** Mid-page, before pricing
49
+ - **Format:** Company logo + headline metric + "Read the story" link
50
+ - **Example:** "Acme Corp reduced onboarding time by 60%"
51
+
52
+ ### Social Proof Numbers
53
+ - **Position:** Near CTA or in dedicated trust section
54
+ - **Format:** Large number + descriptor (e.g., "50,000+ teams", "4.8/5 rating")
55
+ - **Selection:** Choose 3-4 most impressive metrics
56
+
57
+ ## Pricing Table Designs
58
+
59
+ ### Good/Better/Best (3-Tier)
60
+ - Most effective for SaaS with clear feature tiers
61
+ - Highlight recommended plan with visual emphasis
62
+ - Show annual discount prominently
63
+ - Include feature comparison matrix below
64
+
65
+ ### Simple Two-Tier
66
+ - Free/Pro or Starter/Professional
67
+ - Best for PLG products with clear upgrade trigger
68
+ - Minimize decision fatigue
69
+
70
+ ### Enterprise Custom
71
+ - Replace price with "Contact Sales" for high-ACV products
72
+ - List enterprise-specific features (SSO, SLA, dedicated support)
73
+ - Include a "Talk to Sales" CTA, not just a form
74
+
75
+ ### Pricing Psychology
76
+ - Anchor with highest-priced plan first (or in the middle with visual highlight)
77
+ - Use monthly price with annual billing toggle
78
+ - Show savings percentage for annual plans
79
+ - Round prices ending in 9 (e.g., $49/mo, $99/mo)
80
+
81
+ ## Trust Signals
82
+
83
+ ### Security Badges
84
+ - SOC 2, ISO 27001, GDPR compliance badges
85
+ - SSL certificate indicator
86
+ - Place near forms and payment sections
87
+
88
+ ### Guarantees
89
+ - Money-back guarantee with specific timeframe
90
+ - Free trial with no credit card requirement
91
+ - SLA uptime commitments
92
+
93
+ ### Awards & Recognition
94
+ - Industry awards (best of, top rated)
95
+ - Analyst recognition (Gartner, Forrester, G2 Leader)
96
+ - Media mentions (as seen in logos)
97
+
98
+ ### Real-Time Activity
99
+ - "X people signed up today" (use real data only)
100
+ - Recent activity feed
101
+ - Live user count
102
+
103
+ ## Urgency Elements
104
+
105
+ ### Ethical Urgency
106
+ - Limited-time pricing (with real deadline)
107
+ - Early adopter benefits (extra features, lower price)
108
+ - Cohort-based enrollment (actual capacity limits)
109
+
110
+ ### Avoid
111
+ - Fake countdown timers that reset
112
+ - False scarcity ("only 3 left" when unlimited)
113
+ - Pressure tactics that erode trust
114
+
115
+ ## Form Optimization
116
+
117
+ ### Field Reduction
118
+ - Every additional field reduces conversion ~10%
119
+ - Start with email only, progressive profiling later
120
+ - Use single-column layouts for forms
121
+
122
+ ### Smart Defaults
123
+ - Pre-fill country based on IP
124
+ - Auto-detect company from email domain
125
+ - Default to most popular plan
126
+
127
+ ### Inline Validation
128
+ - Validate fields on blur, not on submit
129
+ - Show success states (green checkmark)
130
+ - Provide helpful error messages
131
+
132
+ ### Multi-Step Forms
133
+ - Break long forms into 2-3 steps with progress indicator
134
+ - Put easiest questions first to build commitment
135
+ - Allow saving progress for complex forms
136
+
137
+ ## Mobile-First Patterns
138
+
139
+ ### Thumb-Friendly Design
140
+ - CTAs in thumb zone (bottom 40% of screen)
141
+ - Minimum tap target: 44x44px
142
+ - Adequate spacing between interactive elements
143
+
144
+ ### Content Priority
145
+ - Lead with most compelling content (no scrolling to find CTA)
146
+ - Collapse secondary information into accordions
147
+ - Use sticky CTA bar on scroll
148
+
149
+ ### Performance
150
+ - Target <3s load time on 3G
151
+ - Lazy-load images below fold
152
+ - Minimize JavaScript execution
153
+
154
+ ## A/B Testing Priority Matrix
155
+
156
+ Test these elements in order of expected impact:
157
+
158
+ | Priority | Element | Expected Impact | Effort |
159
+ |----------|---------|----------------|--------|
160
+ | 1 | Headline | High | Low |
161
+ | 2 | CTA text and color | High | Low |
162
+ | 3 | Hero image/video | High | Medium |
163
+ | 4 | Social proof placement | Medium | Low |
164
+ | 5 | Form fields (fewer) | Medium | Low |
165
+ | 6 | Pricing presentation | Medium | Medium |
166
+ | 7 | Page length | Medium | High |
167
+ | 8 | Testimonial selection | Low | Low |
168
+ | 9 | Color scheme | Low | Medium |
169
+ | 10 | Font choices | Low | Low |
170
+
171
+ ### Testing Best Practices
172
+ - Test one variable at a time for clear attribution
173
+ - Run tests for minimum 2 weeks or 1,000 visitors per variant
174
+ - Use 95% statistical significance threshold
175
+ - Document all test results for institutional knowledge
176
+ - Winner becomes new control for next test iteration
@@ -0,0 +1,177 @@
1
+ # Landing Page Copywriting Frameworks
2
+
3
+ ## Overview
4
+
5
+ Four copy frameworks with worked SaaS examples you can adapt. Each framework includes a complete before/after example plus specific guidelines for each section.
6
+
7
+ ## 1. AIDA Framework (Attention - Interest - Desire - Action)
8
+
9
+ The classic direct response formula, ideal for product landing pages.
10
+
11
+ **Example — Project management SaaS:**
12
+
13
+ > **Attention:** "Your Team Loses 12 Hours Every Sprint to Status Meetings"
14
+ >
15
+ > **Interest:** "Engineering teams at Series A-C startups spend 23% of their week in sync meetings — not writing code. We tracked 847 teams over 6 months. The pattern was clear: the more people in a standup, the less code shipped that day."
16
+ >
17
+ > **Desire:** "Teams using AsyncStand ship 31% more story points per sprint. No more 15-person standups where 13 people zone out. Replace your daily sync with a 2-minute async check-in that your engineers actually complete (94% response rate vs 67% attendance for live standups)."
18
+ >
19
+ > **Action:** "Start Your Free 14-Day Trial — No Credit Card Required"
20
+
21
+ ### Attention
22
+ - Lead with a specific, quantified pain point (not vague claims)
23
+ - Weak: "Save time on meetings" → Strong: "Your Team Loses 12 Hours Every Sprint to Status Meetings"
24
+ - Keep headlines under 10 words for maximum impact
25
+
26
+ ### Interest
27
+ - Back up the headline with specific data or a relatable scenario
28
+ - Weak: "Meetings waste time" → Strong: "We tracked 847 teams — the more people in standup, the less code shipped that day"
29
+ - Use their language: mirror words from customer reviews, support tickets, and G2 feedback
30
+
31
+ ### Desire
32
+ - Stack measurable outcomes, not features
33
+ - Weak: "AI-powered async updates" → Strong: "31% more story points per sprint, 94% response rate"
34
+ - Compare directly to the status quo they already endure
35
+
36
+ ### Action
37
+ - Single, clear CTA with action-oriented verb
38
+ - Reduce friction: "No credit card required," "Set up in 2 minutes"
39
+ - Repeat CTA after each major content block
40
+
41
+ ## 2. PAS Framework (Problem - Agitate - Solution)
42
+
43
+ Best for pain-point-driven products where the problem is well understood.
44
+
45
+ **Example — Expense management tool:**
46
+
47
+ > **Problem:** "Your finance team is still chasing receipts in Slack DMs."
48
+ >
49
+ > **Agitate:** "Last quarter, your team spent 46 hours manually reconciling expenses across email threads, shared drives, and 'I'll submit it later' promises. That's $4,200 in payroll — spent on data entry. And when audit season hits? Good luck finding that client dinner receipt from February."
50
+ >
51
+ > **Solution:** "Snap a photo of the receipt. ExpenseFlow auto-extracts vendor, amount, and category in 3 seconds. Your monthly close drops from 5 days to 1. 2,400 finance teams already made the switch."
52
+
53
+ ### Problem
54
+ - Name the exact scenario (not the abstract category)
55
+ - Weak: "Expense tracking is hard" → Strong: "Your finance team is still chasing receipts in Slack DMs"
56
+ - Mirror language from reviews and support tickets
57
+
58
+ ### Agitate
59
+ - Quantify the cost in dollars, hours, or missed opportunities
60
+ - Weak: "This costs you money" → Strong: "46 hours last quarter, $4,200 in payroll — on data entry"
61
+ - Acknowledge the workarounds they've tried and why those fail too
62
+
63
+ ### Solution
64
+ - Lead with the user action, not the technology: "Snap a photo" not "AI-powered OCR"
65
+ - Include one proof point: number of customers, time saved, or before/after metric
66
+ - Make the mechanism clear in one sentence: what happens when they use it
67
+
68
+ ## 3. BAB Framework (Before - After - Bridge)
69
+
70
+ Ideal for aspirational products and lifestyle-oriented landing pages.
71
+
72
+ **Example — Sales enablement platform:**
73
+
74
+ > **Before:** "It's 9 PM. You're rebuilding a deck for tomorrow's demo because the prospect is in healthcare, not fintech. You copy-paste from three old decks, pray the logos are right, and rehearse the new talk track in the shower."
75
+ >
76
+ > **After:** "It's 9 AM. You type 'healthcare, 200-bed hospital, HIPAA-concerned CTO.' DeckGen builds your slides in 40 seconds — case studies, compliance badges, ROI calculator pre-loaded. You walk into the call with the best deck your prospect has ever seen."
77
+ >
78
+ > **Bridge:** "DeckGen connects to your CRM, learns your win patterns, and generates prospect-specific decks in under a minute. 340 AEs at companies like Stripe and Notion already use it. Start free — your first 5 decks are on us."
79
+
80
+ ### Before
81
+ - Describe a specific, lived moment — not an abstract pain category
82
+ - Weak: "Sales decks take too long" → Strong: "It's 9 PM. You're rebuilding a deck for tomorrow's demo..."
83
+ - Use second person and present tense to make it feel immediate
84
+
85
+ ### After
86
+ - Same level of specificity — show the transformed version of that exact moment
87
+ - Include a measurable outcome: "40 seconds," "best deck your prospect has ever seen"
88
+ - The after state should feel effortless compared to the before
89
+
90
+ ### Bridge
91
+ - Name the product explicitly and explain the mechanism in one sentence
92
+ - Include one social proof data point
93
+ - End with a low-friction CTA that connects to the after state
94
+
95
+ ## 4. 4Ps Framework (Promise - Picture - Proof - Push)
96
+
97
+ Strong for SaaS and B2B landing pages with measurable outcomes.
98
+
99
+ ### Promise
100
+ - Make a clear, specific, believable promise
101
+ - Tie it to a measurable outcome
102
+ - Example: "Reduce customer churn by 25% in 90 days"
103
+
104
+ ### Picture
105
+ - Help the reader visualize success
106
+ - Use scenarios they can relate to
107
+ - Show the product in context (screenshots, demos)
108
+
109
+ ### Proof
110
+ - Back the promise with evidence
111
+ - Customer testimonials with specific results
112
+ - Case studies with before/after metrics
113
+ - Third-party validation (awards, analyst reports)
114
+
115
+ ### Push
116
+ - Give a compelling reason to act now
117
+ - Limited-time offer, bonus, or guarantee
118
+ - Risk reversal (money-back guarantee, free trial)
119
+
120
+ ## Headline Formulas
121
+
122
+ ### Benefit-Driven
123
+ - "Get [Desired Outcome] Without [Common Objection]"
124
+ - "[Specific Result] in [Timeframe]"
125
+ - "The [Adjective] Way to [Achieve Goal]"
126
+
127
+ ### Problem-Driven
128
+ - "Stop [Painful Activity]. Start [Better Alternative]."
129
+ - "Tired of [Problem]? There's a Better Way."
130
+ - "[Problem]? Not Anymore."
131
+
132
+ ### Social Proof-Driven
133
+ - "[Number] Teams Trust [Product] to [Outcome]"
134
+ - "Why [Notable Company] Switched to [Product]"
135
+ - "Rated #1 for [Category] by [Authority]"
136
+
137
+ ### Question-Driven
138
+ - "What If You Could [Desirable Outcome]?"
139
+ - "Ready to [Transformation]?"
140
+ - "Still [Painful Status Quo]?"
141
+
142
+ ## CTA Best Practices
143
+
144
+ ### Language
145
+ - Use first-person: "Start My Free Trial" > "Start Your Free Trial"
146
+ - Be specific: "Get My Report" > "Submit"
147
+ - Include benefit: "Start Saving Time" > "Sign Up"
148
+ - Add urgency naturally: "Start Free Today" > "Sign Up Now!!!"
149
+
150
+ ### Placement
151
+ - Primary CTA above the fold
152
+ - Repeat after each major content section
153
+ - Sticky CTA on scroll (mobile especially)
154
+ - Exit-intent as last chance
155
+
156
+ ### Design
157
+ - High contrast color (stands out from page palette)
158
+ - Sufficient whitespace around the button
159
+ - Large enough to tap on mobile (min 44x44px)
160
+ - Micro-copy below button to reduce anxiety ("No credit card required")
161
+
162
+ ## Above-the-Fold Principles
163
+
164
+ The first viewport must accomplish these goals within 5 seconds:
165
+ 1. **Communicate what you do** - Clear, jargon-free headline
166
+ 2. **Show who it's for** - Audience identification
167
+ 3. **Demonstrate value** - Primary benefit or outcome
168
+ 4. **Provide next step** - Visible CTA button
169
+ 5. **Build credibility** - One trust signal (logo bar, metric, badge)
170
+
171
+ ### Above-the-Fold Checklist
172
+ - [ ] Headline states primary benefit (under 10 words)
173
+ - [ ] Subheadline adds specificity or addresses objection
174
+ - [ ] Hero image/video shows product in use
175
+ - [ ] CTA button is visible without scrolling
176
+ - [ ] At least one trust signal present
177
+ - [ ] No jargon or ambiguity in messaging
@@ -0,0 +1,98 @@
1
+ # Landing Page Patterns
2
+
3
+ This reference captures high-converting page patterns and copy structures.
4
+
5
+ ## Hero Section Patterns
6
+
7
+ ### Pattern 1: Problem-Solution Hero
8
+ - Headline names the painful problem.
9
+ - Subheadline states the clear outcome.
10
+ - Primary CTA starts immediately.
11
+ - Optional supporting visual demonstrates product in context.
12
+
13
+ ### Pattern 2: Outcome-First Hero
14
+ - Headline leads with measurable value.
15
+ - Subheadline clarifies who the page is for.
16
+ - CTA is action-oriented and specific.
17
+
18
+ ### Pattern 3: Authority Hero
19
+ - Headline + trust indicator (logos, testimonial snippet, proof metric).
20
+ - Useful when category skepticism is high.
21
+
22
+ ## Social Proof Layouts
23
+
24
+ ### Logo Strip + Proof Metric
25
+ - Keep to recognizable logos.
26
+ - Add one proof metric (e.g., active users, revenue saved, hours reduced).
27
+
28
+ ### Testimonial Grid
29
+ - 3-6 testimonials across segments.
30
+ - Include role/company where possible.
31
+ - Prefer concrete outcomes over generic praise.
32
+
33
+ ### Case Study Snapshot
34
+ - Mini blocks: challenge -> approach -> measurable result.
35
+
36
+ ## CTA Best Practices
37
+
38
+ - Use one dominant CTA per section.
39
+ - Match CTA verb to user intent ("Start trial", "Get demo", "Run audit").
40
+ - Keep CTA copy specific; avoid vague labels like "Submit".
41
+ - Reduce friction near CTA (short form, trust indicators, no surprise commitments).
42
+
43
+ ## Above-the-Fold Checklist
44
+
45
+ - [ ] Clear value proposition in first viewport
46
+ - [ ] Audience clarity (who this is for)
47
+ - [ ] One primary CTA visible without scrolling
48
+ - [ ] Proof element (logos, stat, quote)
49
+ - [ ] Visual hierarchy emphasizes headline + CTA
50
+ - [ ] Mobile layout keeps CTA accessible
51
+
52
+ ## Conversion-Optimized Templates
53
+
54
+ ### SaaS Demo Page
55
+ 1. Hero with problem-solution framing
56
+ 2. Product walkthrough section
57
+ 3. Social proof strip
58
+ 4. Benefits by persona
59
+ 5. Objection handling FAQ
60
+ 6. Final CTA
61
+
62
+ ### Lead Magnet Page
63
+ 1. Promise + asset preview
64
+ 2. Bullet outcomes
65
+ 3. Short form
66
+ 4. Trust/privacy note
67
+
68
+ ### Product Launch Page
69
+ 1. Outcome-first hero
70
+ 2. Why now / differentiation
71
+ 3. Feature blocks
72
+ 4. Testimonials / beta feedback
73
+ 5. Pricing or waitlist CTA
74
+
75
+ ## Headline Formulas
76
+
77
+ ### PAS (Problem-Agitate-Solution)
78
+ - Problem: identify the pain
79
+ - Agitate: show consequences of inaction
80
+ - Solution: position the offer as relief
81
+
82
+ Example structure:
83
+ "Still [problem]? Stop [negative consequence] and start [desired outcome]."
84
+
85
+ ### AIDA (Attention-Interest-Desire-Action)
86
+ - Attention: pattern interrupt headline
87
+ - Interest: relevant context and stakes
88
+ - Desire: proof and benefits
89
+ - Action: concrete next step
90
+
91
+ ### 4U Formula
92
+ - Useful: clear practical value
93
+ - Urgent: reason to act now
94
+ - Unique: differentiated promise
95
+ - Ultra-specific: concrete outcome and scope
96
+
97
+ Example structure:
98
+ "Get [specific result] in [timeframe] without [common pain]."