opencode-skills-collection 3.0.34 → 3.0.36

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 (269) hide show
  1. package/bundled-skills/.antigravity-install-manifest.json +16 -1
  2. package/bundled-skills/accesslint-audit/SKILL.md +115 -0
  3. package/bundled-skills/accesslint-diff/SKILL.md +81 -0
  4. package/bundled-skills/accesslint-scan/SKILL.md +47 -0
  5. package/bundled-skills/composition-patterns/SKILL.md +87 -0
  6. package/bundled-skills/composition-patterns/rules/_sections.md +29 -0
  7. package/bundled-skills/composition-patterns/rules/_template.md +24 -0
  8. package/bundled-skills/composition-patterns/rules/architecture-avoid-boolean-props.md +100 -0
  9. package/bundled-skills/composition-patterns/rules/architecture-compound-components.md +112 -0
  10. package/bundled-skills/composition-patterns/rules/patterns-children-over-render-props.md +87 -0
  11. package/bundled-skills/composition-patterns/rules/patterns-explicit-variants.md +100 -0
  12. package/bundled-skills/composition-patterns/rules/react19-no-forwardref.md +42 -0
  13. package/bundled-skills/composition-patterns/rules/state-context-interface.md +191 -0
  14. package/bundled-skills/composition-patterns/rules/state-decouple-implementation.md +113 -0
  15. package/bundled-skills/composition-patterns/rules/state-lift-state.md +125 -0
  16. package/bundled-skills/debugging-toolkit/SKILL.md +35 -0
  17. package/bundled-skills/deploy-to-vercel/SKILL.md +304 -0
  18. package/bundled-skills/deploy-to-vercel/resources/deploy-codex.sh +301 -0
  19. package/bundled-skills/deploy-to-vercel/resources/deploy.sh +301 -0
  20. package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
  21. package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
  22. package/bundled-skills/docs/maintainers/backups/README-2026-06-02.md +687 -0
  23. package/bundled-skills/docs/maintainers/repo-growth-seo.md +4 -4
  24. package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
  25. package/bundled-skills/docs/users/bundles.md +245 -1
  26. package/bundled-skills/docs/users/claude-code-skills.md +1 -1
  27. package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
  28. package/bundled-skills/docs/users/getting-started.md +3 -3
  29. package/bundled-skills/docs/users/kiro-integration.md +1 -1
  30. package/bundled-skills/docs/users/plugins.md +21 -13
  31. package/bundled-skills/docs/users/specialized-plugin-roadmap.md +95 -0
  32. package/bundled-skills/docs/users/usage.md +4 -4
  33. package/bundled-skills/docs/users/visual-guide.md +4 -4
  34. package/bundled-skills/mmx-cli/SKILL.md +5 -2
  35. package/bundled-skills/nextjs-seo-indexing/SKILL.md +3 -3
  36. package/bundled-skills/polis-protocol/SKILL.md +93 -0
  37. package/bundled-skills/python-development/SKILL.md +35 -0
  38. package/bundled-skills/radix-ui-design-system/SKILL.md +2 -2
  39. package/bundled-skills/react-native-skills/SKILL.md +120 -0
  40. package/bundled-skills/react-native-skills/rules/_sections.md +86 -0
  41. package/bundled-skills/react-native-skills/rules/_template.md +28 -0
  42. package/bundled-skills/react-native-skills/rules/animation-derived-value.md +53 -0
  43. package/bundled-skills/react-native-skills/rules/animation-gesture-detector-press.md +95 -0
  44. package/bundled-skills/react-native-skills/rules/animation-gpu-properties.md +65 -0
  45. package/bundled-skills/react-native-skills/rules/design-system-compound-components.md +66 -0
  46. package/bundled-skills/react-native-skills/rules/fonts-config-plugin.md +71 -0
  47. package/bundled-skills/react-native-skills/rules/imports-design-system-folder.md +68 -0
  48. package/bundled-skills/react-native-skills/rules/js-hoist-intl.md +61 -0
  49. package/bundled-skills/react-native-skills/rules/list-performance-callbacks.md +44 -0
  50. package/bundled-skills/react-native-skills/rules/list-performance-function-references.md +132 -0
  51. package/bundled-skills/react-native-skills/rules/list-performance-images.md +53 -0
  52. package/bundled-skills/react-native-skills/rules/list-performance-inline-objects.md +97 -0
  53. package/bundled-skills/react-native-skills/rules/list-performance-item-expensive.md +94 -0
  54. package/bundled-skills/react-native-skills/rules/list-performance-item-memo.md +82 -0
  55. package/bundled-skills/react-native-skills/rules/list-performance-item-types.md +104 -0
  56. package/bundled-skills/react-native-skills/rules/list-performance-virtualize.md +67 -0
  57. package/bundled-skills/react-native-skills/rules/monorepo-native-deps-in-app.md +46 -0
  58. package/bundled-skills/react-native-skills/rules/monorepo-single-dependency-versions.md +63 -0
  59. package/bundled-skills/react-native-skills/rules/navigation-native-navigators.md +188 -0
  60. package/bundled-skills/react-native-skills/rules/react-compiler-destructure-functions.md +50 -0
  61. package/bundled-skills/react-native-skills/rules/react-compiler-reanimated-shared-values.md +48 -0
  62. package/bundled-skills/react-native-skills/rules/react-state-dispatcher.md +91 -0
  63. package/bundled-skills/react-native-skills/rules/react-state-fallback.md +56 -0
  64. package/bundled-skills/react-native-skills/rules/react-state-minimize.md +65 -0
  65. package/bundled-skills/react-native-skills/rules/rendering-no-falsy-and.md +74 -0
  66. package/bundled-skills/react-native-skills/rules/rendering-text-in-text-component.md +36 -0
  67. package/bundled-skills/react-native-skills/rules/scroll-position-no-state.md +82 -0
  68. package/bundled-skills/react-native-skills/rules/state-ground-truth.md +80 -0
  69. package/bundled-skills/react-native-skills/rules/ui-expo-image.md +66 -0
  70. package/bundled-skills/react-native-skills/rules/ui-image-gallery.md +104 -0
  71. package/bundled-skills/react-native-skills/rules/ui-measure-views.md +78 -0
  72. package/bundled-skills/react-native-skills/rules/ui-menus.md +174 -0
  73. package/bundled-skills/react-native-skills/rules/ui-native-modals.md +77 -0
  74. package/bundled-skills/react-native-skills/rules/ui-pressable.md +61 -0
  75. package/bundled-skills/react-native-skills/rules/ui-safe-area-scroll.md +65 -0
  76. package/bundled-skills/react-native-skills/rules/ui-scrollview-content-inset.md +45 -0
  77. package/bundled-skills/react-native-skills/rules/ui-styling.md +87 -0
  78. package/bundled-skills/schema-markup-generator/SKILL.md +1 -1
  79. package/bundled-skills/skill-issue/SKILL.md +73 -0
  80. package/bundled-skills/social-metadata-hardening/SKILL.md +4 -3
  81. package/bundled-skills/social-post-writer-seo/SKILL.md +19 -0
  82. package/bundled-skills/tdd-workflows/SKILL.md +35 -0
  83. package/bundled-skills/user-thoughts/SKILL.md +236 -0
  84. package/bundled-skills/user-thoughts/assets/Runtime-Template/README.ai.md +13 -0
  85. package/bundled-skills/user-thoughts/assets/Runtime-Template/define.ini +3 -0
  86. package/bundled-skills/user-thoughts/assets/Runtime-Template/mdbase/README.ai.md +25 -0
  87. package/bundled-skills/user-thoughts/assets/Runtime-Template/mdbase/backlog.md +19 -0
  88. package/bundled-skills/user-thoughts/assets/Runtime-Template/mdbase/details/dev-stack.md +7 -0
  89. package/bundled-skills/user-thoughts/assets/Runtime-Template/mdbase/details/general.md +7 -0
  90. package/bundled-skills/user-thoughts/assets/Runtime-Template/mdbase/details/plans.md +7 -0
  91. package/bundled-skills/user-thoughts/assets/Runtime-Template/mdbase/details/rules.md +7 -0
  92. package/bundled-skills/user-thoughts/assets/Runtime-Template/mdbase/details/ui/details.md +7 -0
  93. package/bundled-skills/user-thoughts/assets/Runtime-Template/mdbase/details/ui/outline.md +7 -0
  94. package/bundled-skills/user-thoughts/references/commands.md +54 -0
  95. package/bundled-skills/user-thoughts/references/edge-cases.md +84 -0
  96. package/bundled-skills/user-thoughts/references/safety.md +65 -0
  97. package/bundled-skills/user-thoughts/references/sortin.md +76 -0
  98. package/bundled-skills/user-thoughts/scripts/common.py +62 -0
  99. package/bundled-skills/user-thoughts/scripts/ignore_ops.py +125 -0
  100. package/bundled-skills/user-thoughts/scripts/init.py +63 -0
  101. package/bundled-skills/user-thoughts/scripts/show_mdbase.py +93 -0
  102. package/bundled-skills/user-thoughts/scripts/show_raw.py +42 -0
  103. package/bundled-skills/user-thoughts/scripts/sortin.py +211 -0
  104. package/bundled-skills/user-thoughts/scripts/status.py +56 -0
  105. package/bundled-skills/user-thoughts/scripts/toggle.py +68 -0
  106. package/bundled-skills/user-thoughts/scripts/write_raw.py +106 -0
  107. package/bundled-skills/vercel-cli-with-tokens/SKILL.md +361 -0
  108. package/bundled-skills/vercel-optimize/CONTRIBUTING.md +41 -0
  109. package/bundled-skills/vercel-optimize/SKILL.md +331 -0
  110. package/bundled-skills/vercel-optimize/lib/auth-route.mjs +23 -0
  111. package/bundled-skills/vercel-optimize/lib/budget-summary.mjs +182 -0
  112. package/bundled-skills/vercel-optimize/lib/citations.mjs +139 -0
  113. package/bundled-skills/vercel-optimize/lib/cost-coverage.mjs +143 -0
  114. package/bundled-skills/vercel-optimize/lib/dedup-recs.mjs +325 -0
  115. package/bundled-skills/vercel-optimize/lib/deep-dive.mjs +350 -0
  116. package/bundled-skills/vercel-optimize/lib/display-labels.mjs +185 -0
  117. package/bundled-skills/vercel-optimize/lib/extract-claims.mjs +550 -0
  118. package/bundled-skills/vercel-optimize/lib/framework-support.mjs +67 -0
  119. package/bundled-skills/vercel-optimize/lib/gates/build-minutes-fanout.mjs +69 -0
  120. package/bundled-skills/vercel-optimize/lib/gates/cold-start.mjs +66 -0
  121. package/bundled-skills/vercel-optimize/lib/gates/contract.mjs +79 -0
  122. package/bundled-skills/vercel-optimize/lib/gates/cwv-poor.mjs +87 -0
  123. package/bundled-skills/vercel-optimize/lib/gates/external-api-slow.mjs +55 -0
  124. package/bundled-skills/vercel-optimize/lib/gates/hard-gates.mjs +73 -0
  125. package/bundled-skills/vercel-optimize/lib/gates/index.mjs +45 -0
  126. package/bundled-skills/vercel-optimize/lib/gates/isr-overrevalidation.mjs +62 -0
  127. package/bundled-skills/vercel-optimize/lib/gates/middleware-heavy.mjs +51 -0
  128. package/bundled-skills/vercel-optimize/lib/gates/observability-events-attribution.mjs +56 -0
  129. package/bundled-skills/vercel-optimize/lib/gates/platform-bot-protection.mjs +115 -0
  130. package/bundled-skills/vercel-optimize/lib/gates/platform-fluid-compute.mjs +83 -0
  131. package/bundled-skills/vercel-optimize/lib/gates/region-misconfig.mjs +64 -0
  132. package/bundled-skills/vercel-optimize/lib/gates/route-errors.mjs +80 -0
  133. package/bundled-skills/vercel-optimize/lib/gates/scanner-driven.mjs +122 -0
  134. package/bundled-skills/vercel-optimize/lib/gates/select-candidates.mjs +134 -0
  135. package/bundled-skills/vercel-optimize/lib/gates/slow-route.mjs +88 -0
  136. package/bundled-skills/vercel-optimize/lib/gates/types.d.ts +38 -0
  137. package/bundled-skills/vercel-optimize/lib/gates/uncached-route.mjs +93 -0
  138. package/bundled-skills/vercel-optimize/lib/gates/usage-spike-triage.mjs +121 -0
  139. package/bundled-skills/vercel-optimize/lib/grade-recommendation.mjs +155 -0
  140. package/bundled-skills/vercel-optimize/lib/impact-label.mjs +126 -0
  141. package/bundled-skills/vercel-optimize/lib/impact-magnitude.mjs +60 -0
  142. package/bundled-skills/vercel-optimize/lib/investigation-brief.mjs +610 -0
  143. package/bundled-skills/vercel-optimize/lib/observation-safety.mjs +174 -0
  144. package/bundled-skills/vercel-optimize/lib/project-facts.mjs +99 -0
  145. package/bundled-skills/vercel-optimize/lib/queries.mjs +315 -0
  146. package/bundled-skills/vercel-optimize/lib/reconcile-candidates.mjs +372 -0
  147. package/bundled-skills/vercel-optimize/lib/render-report.mjs +955 -0
  148. package/bundled-skills/vercel-optimize/lib/repo-root.mjs +86 -0
  149. package/bundled-skills/vercel-optimize/lib/route-normalize.mjs +220 -0
  150. package/bundled-skills/vercel-optimize/lib/sanitizers/bot-protection-certainty.mjs +38 -0
  151. package/bundled-skills/vercel-optimize/lib/sanitizers/cache-tag-invalidation-certainty.mjs +30 -0
  152. package/bundled-skills/vercel-optimize/lib/sanitizers/count-correct.mjs +52 -0
  153. package/bundled-skills/vercel-optimize/lib/sanitizers/function-duration-invocations.mjs +38 -0
  154. package/bundled-skills/vercel-optimize/lib/sanitizers/index.mjs +79 -0
  155. package/bundled-skills/vercel-optimize/lib/sanitizers/middleware-conflict.mjs +36 -0
  156. package/bundled-skills/vercel-optimize/lib/sanitizers/missing-citation.mjs +16 -0
  157. package/bundled-skills/vercel-optimize/lib/sanitizers/pre-release.mjs +74 -0
  158. package/bundled-skills/vercel-optimize/lib/sanitizers/rate-limit.mjs +67 -0
  159. package/bundled-skills/vercel-optimize/lib/sanitizers/rendering-mode-mislabel.mjs +38 -0
  160. package/bundled-skills/vercel-optimize/lib/sanitizers/undeclared-dep.mjs +78 -0
  161. package/bundled-skills/vercel-optimize/lib/sanitizers/vercel-directive-strip.mjs +37 -0
  162. package/bundled-skills/vercel-optimize/lib/sanitizers/window-units.mjs +32 -0
  163. package/bundled-skills/vercel-optimize/lib/scanners/cache-components-suspense-dedupe.mjs +109 -0
  164. package/bundled-skills/vercel-optimize/lib/scanners/edge-heavy-import.mjs +94 -0
  165. package/bundled-skills/vercel-optimize/lib/scanners/force-dynamic.mjs +42 -0
  166. package/bundled-skills/vercel-optimize/lib/scanners/headers-in-page.mjs +44 -0
  167. package/bundled-skills/vercel-optimize/lib/scanners/index.mjs +35 -0
  168. package/bundled-skills/vercel-optimize/lib/scanners/large-static-asset.mjs +92 -0
  169. package/bundled-skills/vercel-optimize/lib/scanners/max-age-without-s-maxage.mjs +42 -0
  170. package/bundled-skills/vercel-optimize/lib/scanners/middleware-broad-matcher.mjs +55 -0
  171. package/bundled-skills/vercel-optimize/lib/scanners/missing-cache-headers.mjs +90 -0
  172. package/bundled-skills/vercel-optimize/lib/scanners/prisma-include-tree.mjs +42 -0
  173. package/bundled-skills/vercel-optimize/lib/scanners/region-pin-in-config.mjs +88 -0
  174. package/bundled-skills/vercel-optimize/lib/scanners/source-maps-production.mjs +36 -0
  175. package/bundled-skills/vercel-optimize/lib/scanners/sveltekit-prerender-missing.mjs +43 -0
  176. package/bundled-skills/vercel-optimize/lib/scanners/turbo-force-bypass.mjs +129 -0
  177. package/bundled-skills/vercel-optimize/lib/scanners/unoptimized-image.mjs +113 -0
  178. package/bundled-skills/vercel-optimize/lib/scanners/use-cache-date-stamp.mjs +106 -0
  179. package/bundled-skills/vercel-optimize/lib/support-topics.mjs +355 -0
  180. package/bundled-skills/vercel-optimize/lib/throttle.mjs +273 -0
  181. package/bundled-skills/vercel-optimize/lib/util.mjs +17 -0
  182. package/bundled-skills/vercel-optimize/lib/vercel.mjs +784 -0
  183. package/bundled-skills/vercel-optimize/lib/verify-claim.mjs +1296 -0
  184. package/bundled-skills/vercel-optimize/lib/workspace-resolver.mjs +521 -0
  185. package/bundled-skills/vercel-optimize/references/candidates.md +176 -0
  186. package/bundled-skills/vercel-optimize/references/data-collection.md +218 -0
  187. package/bundled-skills/vercel-optimize/references/docs-library.json +683 -0
  188. package/bundled-skills/vercel-optimize/references/doctrine.md +105 -0
  189. package/bundled-skills/vercel-optimize/references/observability-plus.md +108 -0
  190. package/bundled-skills/vercel-optimize/references/playbooks/README.md +53 -0
  191. package/bundled-skills/vercel-optimize/references/playbooks/ai-application.md +32 -0
  192. package/bundled-skills/vercel-optimize/references/playbooks/api-service.md +30 -0
  193. package/bundled-skills/vercel-optimize/references/playbooks/content-site.md +30 -0
  194. package/bundled-skills/vercel-optimize/references/playbooks/ecommerce.md +30 -0
  195. package/bundled-skills/vercel-optimize/references/playbooks/marketing.md +30 -0
  196. package/bundled-skills/vercel-optimize/references/playbooks/saas.md +31 -0
  197. package/bundled-skills/vercel-optimize/references/playbooks/sveltekit.md +75 -0
  198. package/bundled-skills/vercel-optimize/references/recommendations.md +203 -0
  199. package/bundled-skills/vercel-optimize/references/scanner-patterns.md +251 -0
  200. package/bundled-skills/vercel-optimize/references/scoring.md +205 -0
  201. package/bundled-skills/vercel-optimize/references/support-topics/README.md +46 -0
  202. package/bundled-skills/vercel-optimize/references/support-topics/astro-edge-middleware-scope.md +22 -0
  203. package/bundled-skills/vercel-optimize/references/support-topics/astro-output-mode-and-isr.md +22 -0
  204. package/bundled-skills/vercel-optimize/references/support-topics/auth-preserving-parallelization.md +22 -0
  205. package/bundled-skills/vercel-optimize/references/support-topics/bot-protection-product-guardrails.md +22 -0
  206. package/bundled-skills/vercel-optimize/references/support-topics/build-minutes-monorepo-fanout.md +23 -0
  207. package/bundled-skills/vercel-optimize/references/support-topics/cache-components-static-shell-boundaries.md +22 -0
  208. package/bundled-skills/vercel-optimize/references/support-topics/cache-components-suspense-dedupe-pitfall.md +23 -0
  209. package/bundled-skills/vercel-optimize/references/support-topics/cdn-cache-auth-safety.md +22 -0
  210. package/bundled-skills/vercel-optimize/references/support-topics/cold-start-initialization-bundle.md +22 -0
  211. package/bundled-skills/vercel-optimize/references/support-topics/core-web-vitals-client-bottlenecks.md +22 -0
  212. package/bundled-skills/vercel-optimize/references/support-topics/database-egress-pooling-region.md +22 -0
  213. package/bundled-skills/vercel-optimize/references/support-topics/dynamic-rendering-traps.md +22 -0
  214. package/bundled-skills/vercel-optimize/references/support-topics/external-api-critical-path-platform.md +22 -0
  215. package/bundled-skills/vercel-optimize/references/support-topics/external-api-critical-path.md +22 -0
  216. package/bundled-skills/vercel-optimize/references/support-topics/fast-data-transfer-payloads.md +22 -0
  217. package/bundled-skills/vercel-optimize/references/support-topics/fluid-compute-caveats.md +22 -0
  218. package/bundled-skills/vercel-optimize/references/support-topics/function-duration-io-and-after.md +22 -0
  219. package/bundled-skills/vercel-optimize/references/support-topics/function-invocation-reduction.md +22 -0
  220. package/bundled-skills/vercel-optimize/references/support-topics/function-region-misconfiguration-ttfb.md +23 -0
  221. package/bundled-skills/vercel-optimize/references/support-topics/image-optimization-cost-control.md +22 -0
  222. package/bundled-skills/vercel-optimize/references/support-topics/isr-revalidation-static-generation.md +22 -0
  223. package/bundled-skills/vercel-optimize/references/support-topics/middleware-proxy-edge-cost.md +22 -0
  224. package/bundled-skills/vercel-optimize/references/support-topics/next-fetch-revalidate-floor.md +22 -0
  225. package/bundled-skills/vercel-optimize/references/support-topics/next-font-cls-self-hosting.md +23 -0
  226. package/bundled-skills/vercel-optimize/references/support-topics/next-heavy-ui-lazy-load-boundaries.md +23 -0
  227. package/bundled-skills/vercel-optimize/references/support-topics/next-image-lcp-preload-sizes.md +23 -0
  228. package/bundled-skills/vercel-optimize/references/support-topics/next-route-handler-get-cache-defaults.md +22 -0
  229. package/bundled-skills/vercel-optimize/references/support-topics/next-script-third-party-strategy.md +23 -0
  230. package/bundled-skills/vercel-optimize/references/support-topics/nextjs-version-cache-semantics.md +22 -0
  231. package/bundled-skills/vercel-optimize/references/support-topics/not-found-catchall-request-waste.md +23 -0
  232. package/bundled-skills/vercel-optimize/references/support-topics/nuxt-route-rules-cache-isr.md +22 -0
  233. package/bundled-skills/vercel-optimize/references/support-topics/observability-events-cost-attribution.md +22 -0
  234. package/bundled-skills/vercel-optimize/references/support-topics/post-response-work-waituntil.md +22 -0
  235. package/bundled-skills/vercel-optimize/references/support-topics/route-error-durable-offload.md +22 -0
  236. package/bundled-skills/vercel-optimize/references/support-topics/route-error-runtime-limits.md +22 -0
  237. package/bundled-skills/vercel-optimize/references/support-topics/runtime-cache-reusable-data.md +22 -0
  238. package/bundled-skills/vercel-optimize/references/support-topics/sveltekit-isr-prerender-safety.md +22 -0
  239. package/bundled-skills/vercel-optimize/references/support-topics/sveltekit-split-cold-start-tradeoff.md +22 -0
  240. package/bundled-skills/vercel-optimize/references/support-topics/usage-spike-triage.md +22 -0
  241. package/bundled-skills/vercel-optimize/references/support-topics/use-cache-date-stamp-isr-write-amplifier.md +23 -0
  242. package/bundled-skills/vercel-optimize/references/support-topics/use-cache-remote-shared-origin-data.md +22 -0
  243. package/bundled-skills/vercel-optimize/references/support-topics/workflow-resumable-stream-routes.md +23 -0
  244. package/bundled-skills/vercel-optimize/references/verification.md +102 -0
  245. package/bundled-skills/vercel-optimize/references/voice.md +76 -0
  246. package/bundled-skills/vercel-optimize/scripts/budget-summary.mjs +56 -0
  247. package/bundled-skills/vercel-optimize/scripts/build-docs.mjs +74 -0
  248. package/bundled-skills/vercel-optimize/scripts/check-citations.mjs +81 -0
  249. package/bundled-skills/vercel-optimize/scripts/check-docs-fresh.mjs +93 -0
  250. package/bundled-skills/vercel-optimize/scripts/collect-signals.mjs +576 -0
  251. package/bundled-skills/vercel-optimize/scripts/collect-sub-agent-outputs.mjs +296 -0
  252. package/bundled-skills/vercel-optimize/scripts/deep-dive.mjs +319 -0
  253. package/bundled-skills/vercel-optimize/scripts/gate-investigations.mjs +166 -0
  254. package/bundled-skills/vercel-optimize/scripts/merge-signals.mjs +192 -0
  255. package/bundled-skills/vercel-optimize/scripts/prepare-investigation-brief.mjs +231 -0
  256. package/bundled-skills/vercel-optimize/scripts/reconcile-candidates.mjs +62 -0
  257. package/bundled-skills/vercel-optimize/scripts/render-report.mjs +437 -0
  258. package/bundled-skills/vercel-optimize/scripts/scan-codebase.mjs +313 -0
  259. package/bundled-skills/vercel-optimize/scripts/verify-and-regen.mjs +346 -0
  260. package/bundled-skills/vercel-optimize/scripts/verify-finding.mjs +19 -0
  261. package/bundled-skills/vercel-react-view-transitions/SKILL.md +327 -0
  262. package/bundled-skills/vercel-react-view-transitions/references/css-recipes.md +242 -0
  263. package/bundled-skills/vercel-react-view-transitions/references/implementation.md +182 -0
  264. package/bundled-skills/vercel-react-view-transitions/references/nextjs.md +176 -0
  265. package/bundled-skills/vercel-react-view-transitions/references/patterns.md +262 -0
  266. package/bundled-skills/vibe-code-cleanup/SKILL.md +4 -4
  267. package/bundled-skills/vibecode-production-qa-validator/SKILL.md +3 -2
  268. package/package.json +1 -1
  269. package/skills_index.json +338 -4
@@ -0,0 +1,125 @@
1
+ ---
2
+ title: Lift State into Provider Components
3
+ impact: HIGH
4
+ impactDescription: enables state sharing outside component boundaries
5
+ tags: composition, state, context, providers
6
+ ---
7
+
8
+ ## Lift State into Provider Components
9
+
10
+ Move state management into dedicated provider components. This allows sibling
11
+ components outside the main UI to access and modify state without prop drilling
12
+ or awkward refs.
13
+
14
+ **Incorrect (state trapped inside component):**
15
+
16
+ ```tsx
17
+ function ForwardMessageComposer() {
18
+ const [state, setState] = useState(initialState)
19
+ const forwardMessage = useForwardMessage()
20
+
21
+ return (
22
+ <Composer.Frame>
23
+ <Composer.Input />
24
+ <Composer.Footer />
25
+ </Composer.Frame>
26
+ )
27
+ }
28
+
29
+ // Problem: How does this button access composer state?
30
+ function ForwardMessageDialog() {
31
+ return (
32
+ <Dialog>
33
+ <ForwardMessageComposer />
34
+ <MessagePreview /> {/* Needs composer state */}
35
+ <DialogActions>
36
+ <CancelButton />
37
+ <ForwardButton /> {/* Needs to call submit */}
38
+ </DialogActions>
39
+ </Dialog>
40
+ )
41
+ }
42
+ ```
43
+
44
+ **Incorrect (useEffect to sync state up):**
45
+
46
+ ```tsx
47
+ function ForwardMessageDialog() {
48
+ const [input, setInput] = useState('')
49
+ return (
50
+ <Dialog>
51
+ <ForwardMessageComposer onInputChange={setInput} />
52
+ <MessagePreview input={input} />
53
+ </Dialog>
54
+ )
55
+ }
56
+
57
+ function ForwardMessageComposer({ onInputChange }) {
58
+ const [state, setState] = useState(initialState)
59
+ useEffect(() => {
60
+ onInputChange(state.input) // Sync on every change 😬
61
+ }, [state.input])
62
+ }
63
+ ```
64
+
65
+ **Incorrect (reading state from ref on submit):**
66
+
67
+ ```tsx
68
+ function ForwardMessageDialog() {
69
+ const stateRef = useRef(null)
70
+ return (
71
+ <Dialog>
72
+ <ForwardMessageComposer stateRef={stateRef} />
73
+ <ForwardButton onPress={() => submit(stateRef.current)} />
74
+ </Dialog>
75
+ )
76
+ }
77
+ ```
78
+
79
+ **Correct (state lifted to provider):**
80
+
81
+ ```tsx
82
+ function ForwardMessageProvider({ children }: { children: React.ReactNode }) {
83
+ const [state, setState] = useState(initialState)
84
+ const forwardMessage = useForwardMessage()
85
+ const inputRef = useRef(null)
86
+
87
+ return (
88
+ <Composer.Provider
89
+ state={state}
90
+ actions={{ update: setState, submit: forwardMessage }}
91
+ meta={{ inputRef }}
92
+ >
93
+ {children}
94
+ </Composer.Provider>
95
+ )
96
+ }
97
+
98
+ function ForwardMessageDialog() {
99
+ return (
100
+ <ForwardMessageProvider>
101
+ <Dialog>
102
+ <ForwardMessageComposer />
103
+ <MessagePreview /> {/* Custom components can access state and actions */}
104
+ <DialogActions>
105
+ <CancelButton />
106
+ <ForwardButton /> {/* Custom components can access state and actions */}
107
+ </DialogActions>
108
+ </Dialog>
109
+ </ForwardMessageProvider>
110
+ )
111
+ }
112
+
113
+ function ForwardButton() {
114
+ const { actions } = use(Composer.Context)
115
+ return <Button onPress={actions.submit}>Forward</Button>
116
+ }
117
+ ```
118
+
119
+ The ForwardButton lives outside the Composer.Frame but still has access to the
120
+ submit action because it's within the provider. Even though it's a one-off
121
+ component, it can still access the composer's state and actions from outside the
122
+ UI itself.
123
+
124
+ **Key insight:** Components that need shared state don't have to be visually
125
+ nested inside each other—they just need to be within the same provider.
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: debugging-toolkit
3
+ description: "Use when working with debugging toolkit smart debug (Alias for debugging-toolkit-smart-debug)"
4
+ risk: unknown
5
+ source: "alias"
6
+ date_added: "2026-06-02"
7
+ ---
8
+
9
+ # Debugging Toolkit
10
+
11
+ > **This is an alias.** The canonical skill is **`debugging-toolkit-smart-debug`**.
12
+
13
+ This skill redirects to `debugging-toolkit-smart-debug`. Load it from the vault:
14
+
15
+ `skill-libraries/code-quality/debugging-toolkit-smart-debug/SKILL.md`
16
+
17
+ ## When to Use
18
+ - Use this skill when working with debugging toolkit smart debug (Alias for debugging-toolkit-smart-debug)
19
+
20
+ ## Why this alias exists
21
+
22
+ Users commonly search for `debugging-toolkit` but the full skill name in this collection is `debugging-toolkit-smart-debug`. This alias ensures discoverability.
23
+
24
+ ## Limitations
25
+ - Use this skill only when the task clearly matches the scope described above.
26
+ - Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
27
+ - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.
28
+
29
+ ## Examples
30
+ ```text
31
+ Use @debugging-toolkit for this task: Use when working with debugging toolkit smart debug (Alias for debugging-toolkit-smart-debug).
32
+
33
+ Apply the skill to my current work and walk me through the safest next steps,
34
+ key checks, and the concrete output I should produce.
35
+ ```
@@ -0,0 +1,304 @@
1
+ ---
2
+ name: deploy-to-vercel
3
+ description: "Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\"."
4
+ risk: safe
5
+ source: "https://github.com/vercel-labs/agent-skills"
6
+ date_added: "2026-06-02"
7
+ ---
8
+
9
+ # Deploy to Vercel
10
+
11
+ Deploy any project to Vercel. **Always deploy as preview** (not production) unless the user explicitly asks for production.
12
+
13
+ The goal is to get the user into the best long-term setup: their project linked to Vercel with git-push deploys. Every method below tries to move the user closer to that state.
14
+
15
+ ## When to Use
16
+ - Use this skill when the task matches this description: Deploy applications and websites to Vercel. Use when the user requests deployment actions like "deploy my app", "deploy and give me the link", "push this live", or "create a preview deployment".
17
+
18
+ ## Step 1: Gather Project State
19
+
20
+ Run all four checks before deciding which method to use:
21
+
22
+ ```bash
23
+ # 1. Check for a git remote
24
+ git remote get-url origin 2>/dev/null
25
+
26
+ # 2. Check if locally linked to a Vercel project (either file means linked)
27
+ cat .vercel/project.json 2>/dev/null || cat .vercel/repo.json 2>/dev/null
28
+
29
+ # 3. Check if the Vercel CLI is installed and authenticated
30
+ vercel whoami 2>/dev/null
31
+
32
+ # 4. List available teams (if authenticated)
33
+ vercel teams list --format json 2>/dev/null
34
+ ```
35
+
36
+ ### Team selection
37
+
38
+ If the user belongs to multiple teams, present all available team slugs as a bulleted list and ask which one to deploy to. Once the user picks a team, proceed immediately to the next step — do not ask for additional confirmation.
39
+
40
+ Pass the team slug via `--scope` on all subsequent CLI commands (`vercel deploy`, `vercel link`, `vercel inspect`, etc.):
41
+
42
+ ```bash
43
+ vercel deploy [path] -y --no-wait --scope <team-slug>
44
+ ```
45
+
46
+ If the project is already linked (`.vercel/project.json` or `.vercel/repo.json` exists), the `orgId` in those files determines the team — no need to ask again. If there is only one team (or just a personal account), skip the prompt and use it directly.
47
+
48
+ **About the `.vercel/` directory:** A linked project has either:
49
+ - `.vercel/project.json` — created by `vercel link` (single project linking). Contains `projectId` and `orgId`.
50
+ - `.vercel/repo.json` — created by `vercel link --repo` (repo-based linking). Contains `orgId`, `remoteName`, and a `projects` array mapping directories to Vercel project IDs.
51
+
52
+ Either file means the project is linked. Check for both.
53
+
54
+ **Do NOT** use `vercel project inspect`, `vercel ls`, or `vercel link` to detect state in an unlinked directory — without a `.vercel/` config, they will interactively prompt (or with `--yes`, silently link as a side-effect). Only `vercel whoami` is safe to run anywhere.
55
+
56
+ ## Step 2: Choose a Deploy Method
57
+
58
+ ### Linked (`.vercel/` exists) + has git remote → Git Push
59
+
60
+ This is the ideal state. The project is linked and has git integration.
61
+
62
+ 1. **Ask the user before pushing.** Never push without explicit approval:
63
+ ```
64
+ This project is connected to Vercel via git. I can commit and push to
65
+ trigger a deployment. Want me to proceed?
66
+ ```
67
+
68
+ 2. **Commit and push:**
69
+ ```bash
70
+ git add .
71
+ git commit -m "deploy: <description of changes>"
72
+ git push
73
+ ```
74
+ Vercel automatically builds from the push. Non-production branches get preview deployments; the production branch (usually `main`) gets a production deployment.
75
+
76
+ 3. **Retrieve the preview URL.** If the CLI is authenticated:
77
+ ```bash
78
+ sleep 5
79
+ vercel ls --format json
80
+ ```
81
+ The JSON output has a `deployments` array. Find the latest entry — its `url` field is the preview URL.
82
+
83
+ If the CLI is not authenticated, tell the user to check the Vercel dashboard or the commit status checks on their git provider for the preview URL.
84
+
85
+ ---
86
+
87
+ ### Linked (`.vercel/` exists) + no git remote → `vercel deploy`
88
+
89
+ The project is linked but there's no git repo. Deploy directly with the CLI.
90
+
91
+ ```bash
92
+ vercel deploy [path] -y --no-wait
93
+ ```
94
+
95
+ Use `--no-wait` so the CLI returns immediately with the deployment URL instead of blocking until the build finishes (builds can take a while). Then check on the deployment status with:
96
+
97
+ ```bash
98
+ vercel inspect <deployment-url>
99
+ ```
100
+
101
+ For production deploys (only if user explicitly asks):
102
+ ```bash
103
+ vercel deploy [path] --prod -y --no-wait
104
+ ```
105
+
106
+ ---
107
+
108
+ ### Not linked + CLI is authenticated → Link first, then deploy
109
+
110
+ The CLI is working but the project isn't linked yet. This is the opportunity to get the user into the best state.
111
+
112
+ 1. **Ask the user which team to deploy to.** Present the team slugs from Step 1 as a bulleted list. If there's only one team (or just a personal account), skip this step.
113
+
114
+ 2. **Once a team is selected, proceed directly to linking.** Tell the user what will happen but do not ask for separate confirmation:
115
+ ```
116
+ Linking this project to <team name> on Vercel. This will create a Vercel
117
+ project to deploy to and enable automatic deployments on future git pushes.
118
+ ```
119
+
120
+ 3. **If a git remote exists**, use repo-based linking with the selected team scope:
121
+ ```bash
122
+ vercel link --repo --scope <team-slug>
123
+ ```
124
+ This reads the git remote URL and matches it to existing Vercel projects that deploy from that repo. It creates `.vercel/repo.json`. This is much more reliable than `vercel link` (without `--repo`), which tries to match by directory name and often fails when the local folder and Vercel project are named differently.
125
+
126
+ **If there is no git remote**, fall back to standard linking:
127
+ ```bash
128
+ vercel link --scope <team-slug>
129
+ ```
130
+ This prompts the user to select or create a project. It creates `.vercel/project.json`.
131
+
132
+ 4. **Then deploy using the best available method:**
133
+ - If a git remote exists → commit and push (see git push method above)
134
+ - If no git remote → `vercel deploy [path] -y --no-wait --scope <team-slug>`, then `vercel inspect <url>` to check status
135
+
136
+ ---
137
+
138
+ ### Not linked + CLI not authenticated → Install, auth, link, deploy
139
+
140
+ The Vercel CLI isn't set up at all.
141
+
142
+ 1. **Install the CLI (if not already installed):**
143
+ ```bash
144
+ npm install -g vercel
145
+ ```
146
+
147
+ 2. **Authenticate:**
148
+ ```bash
149
+ vercel login
150
+ ```
151
+ The user completes auth in their browser. If running in a non-interactive environment where login is not possible, skip to the **no-auth fallback** below.
152
+
153
+ 3. **Ask which team to deploy to** — present team slugs from `vercel teams list --format json` as a bulleted list. If only one team / personal account, skip. Once selected, proceed immediately.
154
+
155
+ 4. **Link the project** with the selected team scope (use `--repo` if a git remote exists, plain `vercel link` otherwise):
156
+ ```bash
157
+ vercel link --repo --scope <team-slug> # if git remote exists
158
+ vercel link --scope <team-slug> # if no git remote
159
+ ```
160
+
161
+ 5. **Deploy** using the best available method (git push if remote exists, otherwise `vercel deploy -y --no-wait --scope <team-slug>`, then `vercel inspect <url>` to check status).
162
+
163
+ ---
164
+
165
+ ### No-Auth Fallback — claude.ai sandbox
166
+
167
+ **When to use:** Last resort when the CLI can't be installed or authenticated in the claude.ai sandbox. This requires no authentication — it returns a **Preview URL** (live site) and a **Claim URL** (transfer to your Vercel account).
168
+
169
+ ```bash
170
+ bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh [path]
171
+ ```
172
+
173
+ **Arguments:**
174
+ - `path` - Directory to deploy, or a `.tgz` file (defaults to current directory)
175
+
176
+ **Examples:**
177
+ ```bash
178
+ # Deploy current directory
179
+ bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh
180
+
181
+ # Deploy specific project
182
+ bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh /path/to/project
183
+
184
+ # Deploy existing tarball
185
+ bash /mnt/skills/user/deploy-to-vercel/resources/deploy.sh /path/to/project.tgz
186
+ ```
187
+
188
+ The script auto-detects the framework from `package.json`, packages the project (excluding `node_modules`, `.git`, `.env`), uploads it, and waits for the build to complete.
189
+
190
+ **Tell the user:** "Your deployment is ready at [previewUrl]. Claim it at [claimUrl] to manage your deployment."
191
+
192
+ ---
193
+
194
+ ### No-Auth Fallback — Codex sandbox
195
+
196
+ **When to use:** In the Codex sandbox where the CLI may not be authenticated. Codex runs in a sandboxed environment by default — try the CLI first, and fall back to the deploy script if auth fails.
197
+
198
+ 1. **Check whether the Vercel CLI is installed** (no escalation needed for this check):
199
+ ```bash
200
+ command -v vercel
201
+ ```
202
+
203
+ 2. **If `vercel` is installed**, try deploying with the CLI:
204
+ ```bash
205
+ vercel deploy [path] -y --no-wait
206
+ ```
207
+
208
+ 3. **If `vercel` is not installed, or the CLI fails with "No existing credentials found"**, use the fallback script:
209
+ ```bash
210
+ skill_dir="<path-to-skill>"
211
+
212
+ # Deploy current directory
213
+ bash "$skill_dir/resources/deploy-codex.sh"
214
+
215
+ # Deploy specific project
216
+ bash "$skill_dir/resources/deploy-codex.sh" /path/to/project
217
+
218
+ # Deploy existing tarball
219
+ bash "$skill_dir/resources/deploy-codex.sh" /path/to/project.tgz
220
+ ```
221
+
222
+ The script handles framework detection, packaging, and deployment. It waits for the build to complete and returns JSON with `previewUrl` and `claimUrl`.
223
+
224
+ **Tell the user:** "Your deployment is ready at [previewUrl]. Claim it at [claimUrl] to manage your deployment."
225
+
226
+ **Escalated network access:** Only escalate the actual deploy command if sandboxing blocks the network call (`sandbox_permissions=require_escalated`). Do **not** escalate the `command -v vercel` check.
227
+
228
+ ---
229
+
230
+ ## Agent-Specific Notes
231
+
232
+ ### Claude Code / terminal-based agents
233
+
234
+ You have full shell access. Do NOT use the `/mnt/skills/` path. Follow the decision flow above using the CLI directly.
235
+
236
+ For the no-auth fallback, run the deploy script from the skill's installed location:
237
+ ```bash
238
+ bash ~/.claude/skills/deploy-to-vercel/resources/deploy.sh [path]
239
+ ```
240
+ The path may vary depending on where the user installed the skill.
241
+
242
+ ### Sandboxed environments (claude.ai)
243
+
244
+ You likely cannot run `vercel login` or `git push`. Go directly to the **no-auth fallback — claude.ai sandbox**.
245
+
246
+ ### Codex
247
+
248
+ Codex runs in a sandbox. Check if the CLI is available first, then fall back to the deploy script. Go to the **no-auth fallback — Codex sandbox**.
249
+
250
+ ---
251
+
252
+ ## Output
253
+
254
+ Always show the user the deployment URL.
255
+
256
+ - **Git push:** Use `vercel ls --format json` to find the preview URL. If the CLI isn't authenticated, tell the user to check the Vercel dashboard or commit status checks.
257
+ - **CLI deploy:** Show the URL returned by `vercel deploy --no-wait`. Use `vercel inspect <url>` to check build status and report it to the user.
258
+ - **No-auth fallback:** Show both the preview URL and the claim URL:
259
+ ```
260
+ Deployment successful!
261
+
262
+ Preview URL: https://my-app-abc123.vercel.app
263
+ Claim URL: https://vercel.com/claim-deployment?code=...
264
+
265
+ View your site at the Preview URL.
266
+ To transfer this deployment to your Vercel account, visit the Claim URL.
267
+ ```
268
+
269
+ **Do not** curl or fetch the deployed URL to verify it works. Just return the link.
270
+
271
+ ---
272
+
273
+ ## Troubleshooting
274
+
275
+ ### Network Egress Error (claude.ai)
276
+
277
+ If deployment fails due to network restrictions on claude.ai, tell the user:
278
+
279
+ ```
280
+ Deployment failed due to network restrictions. To fix this:
281
+
282
+ 1. Go to https://claude.ai/settings/capabilities
283
+ 2. Add *.vercel.com to the allowed domains
284
+ 3. Try deploying again
285
+ ```
286
+
287
+ ### Escalated Network Access (Codex / sandboxed environments)
288
+
289
+ If deployment fails due to network issues (timeouts, DNS errors, connection resets) in a sandboxed environment, rerun with escalated permissions (`sandbox_permissions=require_escalated`). Do not escalate the initial CLI availability check — only escalate the actual deploy command.
290
+
291
+ Example guidance to the user:
292
+ ```
293
+ The deploy needs escalated network access to deploy to Vercel. I can rerun
294
+ the command with escalated permissions — want me to proceed?
295
+ ```
296
+
297
+ ### CLI Auth Failure
298
+
299
+ If `vercel login` or `vercel deploy` fails with authentication errors, fall back to the no-auth deploy script (claude.ai or Codex variant, depending on the environment).
300
+
301
+ ## Limitations
302
+ - Use this skill only when the task clearly matches the scope described above.
303
+ - Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
304
+ - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.