opencode-skills-collection 3.0.35 → 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.
- package/bundled-skills/.antigravity-install-manifest.json +15 -1
- package/bundled-skills/accesslint-audit/SKILL.md +115 -0
- package/bundled-skills/accesslint-diff/SKILL.md +81 -0
- package/bundled-skills/accesslint-scan/SKILL.md +47 -0
- package/bundled-skills/composition-patterns/SKILL.md +87 -0
- package/bundled-skills/composition-patterns/rules/_sections.md +29 -0
- package/bundled-skills/composition-patterns/rules/_template.md +24 -0
- package/bundled-skills/composition-patterns/rules/architecture-avoid-boolean-props.md +100 -0
- package/bundled-skills/composition-patterns/rules/architecture-compound-components.md +112 -0
- package/bundled-skills/composition-patterns/rules/patterns-children-over-render-props.md +87 -0
- package/bundled-skills/composition-patterns/rules/patterns-explicit-variants.md +100 -0
- package/bundled-skills/composition-patterns/rules/react19-no-forwardref.md +42 -0
- package/bundled-skills/composition-patterns/rules/state-context-interface.md +191 -0
- package/bundled-skills/composition-patterns/rules/state-decouple-implementation.md +113 -0
- package/bundled-skills/composition-patterns/rules/state-lift-state.md +125 -0
- package/bundled-skills/debugging-toolkit/SKILL.md +35 -0
- package/bundled-skills/deploy-to-vercel/SKILL.md +304 -0
- package/bundled-skills/deploy-to-vercel/resources/deploy-codex.sh +301 -0
- package/bundled-skills/deploy-to-vercel/resources/deploy.sh +301 -0
- package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
- package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
- package/bundled-skills/docs/maintainers/backups/README-2026-06-02.md +687 -0
- package/bundled-skills/docs/maintainers/repo-growth-seo.md +4 -4
- package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
- package/bundled-skills/docs/users/bundles.md +245 -1
- package/bundled-skills/docs/users/claude-code-skills.md +1 -1
- package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
- package/bundled-skills/docs/users/getting-started.md +1 -1
- package/bundled-skills/docs/users/kiro-integration.md +1 -1
- package/bundled-skills/docs/users/plugins.md +21 -13
- package/bundled-skills/docs/users/specialized-plugin-roadmap.md +95 -0
- package/bundled-skills/docs/users/usage.md +4 -4
- package/bundled-skills/docs/users/visual-guide.md +4 -4
- package/bundled-skills/polis-protocol/SKILL.md +93 -0
- package/bundled-skills/python-development/SKILL.md +35 -0
- package/bundled-skills/radix-ui-design-system/SKILL.md +2 -2
- package/bundled-skills/react-native-skills/SKILL.md +120 -0
- package/bundled-skills/react-native-skills/rules/_sections.md +86 -0
- package/bundled-skills/react-native-skills/rules/_template.md +28 -0
- package/bundled-skills/react-native-skills/rules/animation-derived-value.md +53 -0
- package/bundled-skills/react-native-skills/rules/animation-gesture-detector-press.md +95 -0
- package/bundled-skills/react-native-skills/rules/animation-gpu-properties.md +65 -0
- package/bundled-skills/react-native-skills/rules/design-system-compound-components.md +66 -0
- package/bundled-skills/react-native-skills/rules/fonts-config-plugin.md +71 -0
- package/bundled-skills/react-native-skills/rules/imports-design-system-folder.md +68 -0
- package/bundled-skills/react-native-skills/rules/js-hoist-intl.md +61 -0
- package/bundled-skills/react-native-skills/rules/list-performance-callbacks.md +44 -0
- package/bundled-skills/react-native-skills/rules/list-performance-function-references.md +132 -0
- package/bundled-skills/react-native-skills/rules/list-performance-images.md +53 -0
- package/bundled-skills/react-native-skills/rules/list-performance-inline-objects.md +97 -0
- package/bundled-skills/react-native-skills/rules/list-performance-item-expensive.md +94 -0
- package/bundled-skills/react-native-skills/rules/list-performance-item-memo.md +82 -0
- package/bundled-skills/react-native-skills/rules/list-performance-item-types.md +104 -0
- package/bundled-skills/react-native-skills/rules/list-performance-virtualize.md +67 -0
- package/bundled-skills/react-native-skills/rules/monorepo-native-deps-in-app.md +46 -0
- package/bundled-skills/react-native-skills/rules/monorepo-single-dependency-versions.md +63 -0
- package/bundled-skills/react-native-skills/rules/navigation-native-navigators.md +188 -0
- package/bundled-skills/react-native-skills/rules/react-compiler-destructure-functions.md +50 -0
- package/bundled-skills/react-native-skills/rules/react-compiler-reanimated-shared-values.md +48 -0
- package/bundled-skills/react-native-skills/rules/react-state-dispatcher.md +91 -0
- package/bundled-skills/react-native-skills/rules/react-state-fallback.md +56 -0
- package/bundled-skills/react-native-skills/rules/react-state-minimize.md +65 -0
- package/bundled-skills/react-native-skills/rules/rendering-no-falsy-and.md +74 -0
- package/bundled-skills/react-native-skills/rules/rendering-text-in-text-component.md +36 -0
- package/bundled-skills/react-native-skills/rules/scroll-position-no-state.md +82 -0
- package/bundled-skills/react-native-skills/rules/state-ground-truth.md +80 -0
- package/bundled-skills/react-native-skills/rules/ui-expo-image.md +66 -0
- package/bundled-skills/react-native-skills/rules/ui-image-gallery.md +104 -0
- package/bundled-skills/react-native-skills/rules/ui-measure-views.md +78 -0
- package/bundled-skills/react-native-skills/rules/ui-menus.md +174 -0
- package/bundled-skills/react-native-skills/rules/ui-native-modals.md +77 -0
- package/bundled-skills/react-native-skills/rules/ui-pressable.md +61 -0
- package/bundled-skills/react-native-skills/rules/ui-safe-area-scroll.md +65 -0
- package/bundled-skills/react-native-skills/rules/ui-scrollview-content-inset.md +45 -0
- package/bundled-skills/react-native-skills/rules/ui-styling.md +87 -0
- package/bundled-skills/skill-issue/SKILL.md +73 -0
- package/bundled-skills/tdd-workflows/SKILL.md +35 -0
- package/bundled-skills/vercel-cli-with-tokens/SKILL.md +361 -0
- package/bundled-skills/vercel-optimize/CONTRIBUTING.md +41 -0
- package/bundled-skills/vercel-optimize/SKILL.md +331 -0
- package/bundled-skills/vercel-optimize/lib/auth-route.mjs +23 -0
- package/bundled-skills/vercel-optimize/lib/budget-summary.mjs +182 -0
- package/bundled-skills/vercel-optimize/lib/citations.mjs +139 -0
- package/bundled-skills/vercel-optimize/lib/cost-coverage.mjs +143 -0
- package/bundled-skills/vercel-optimize/lib/dedup-recs.mjs +325 -0
- package/bundled-skills/vercel-optimize/lib/deep-dive.mjs +350 -0
- package/bundled-skills/vercel-optimize/lib/display-labels.mjs +185 -0
- package/bundled-skills/vercel-optimize/lib/extract-claims.mjs +550 -0
- package/bundled-skills/vercel-optimize/lib/framework-support.mjs +67 -0
- package/bundled-skills/vercel-optimize/lib/gates/build-minutes-fanout.mjs +69 -0
- package/bundled-skills/vercel-optimize/lib/gates/cold-start.mjs +66 -0
- package/bundled-skills/vercel-optimize/lib/gates/contract.mjs +79 -0
- package/bundled-skills/vercel-optimize/lib/gates/cwv-poor.mjs +87 -0
- package/bundled-skills/vercel-optimize/lib/gates/external-api-slow.mjs +55 -0
- package/bundled-skills/vercel-optimize/lib/gates/hard-gates.mjs +73 -0
- package/bundled-skills/vercel-optimize/lib/gates/index.mjs +45 -0
- package/bundled-skills/vercel-optimize/lib/gates/isr-overrevalidation.mjs +62 -0
- package/bundled-skills/vercel-optimize/lib/gates/middleware-heavy.mjs +51 -0
- package/bundled-skills/vercel-optimize/lib/gates/observability-events-attribution.mjs +56 -0
- package/bundled-skills/vercel-optimize/lib/gates/platform-bot-protection.mjs +115 -0
- package/bundled-skills/vercel-optimize/lib/gates/platform-fluid-compute.mjs +83 -0
- package/bundled-skills/vercel-optimize/lib/gates/region-misconfig.mjs +64 -0
- package/bundled-skills/vercel-optimize/lib/gates/route-errors.mjs +80 -0
- package/bundled-skills/vercel-optimize/lib/gates/scanner-driven.mjs +122 -0
- package/bundled-skills/vercel-optimize/lib/gates/select-candidates.mjs +134 -0
- package/bundled-skills/vercel-optimize/lib/gates/slow-route.mjs +88 -0
- package/bundled-skills/vercel-optimize/lib/gates/types.d.ts +38 -0
- package/bundled-skills/vercel-optimize/lib/gates/uncached-route.mjs +93 -0
- package/bundled-skills/vercel-optimize/lib/gates/usage-spike-triage.mjs +121 -0
- package/bundled-skills/vercel-optimize/lib/grade-recommendation.mjs +155 -0
- package/bundled-skills/vercel-optimize/lib/impact-label.mjs +126 -0
- package/bundled-skills/vercel-optimize/lib/impact-magnitude.mjs +60 -0
- package/bundled-skills/vercel-optimize/lib/investigation-brief.mjs +610 -0
- package/bundled-skills/vercel-optimize/lib/observation-safety.mjs +174 -0
- package/bundled-skills/vercel-optimize/lib/project-facts.mjs +99 -0
- package/bundled-skills/vercel-optimize/lib/queries.mjs +315 -0
- package/bundled-skills/vercel-optimize/lib/reconcile-candidates.mjs +372 -0
- package/bundled-skills/vercel-optimize/lib/render-report.mjs +955 -0
- package/bundled-skills/vercel-optimize/lib/repo-root.mjs +86 -0
- package/bundled-skills/vercel-optimize/lib/route-normalize.mjs +220 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/bot-protection-certainty.mjs +38 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/cache-tag-invalidation-certainty.mjs +30 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/count-correct.mjs +52 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/function-duration-invocations.mjs +38 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/index.mjs +79 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/middleware-conflict.mjs +36 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/missing-citation.mjs +16 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/pre-release.mjs +74 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/rate-limit.mjs +67 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/rendering-mode-mislabel.mjs +38 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/undeclared-dep.mjs +78 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/vercel-directive-strip.mjs +37 -0
- package/bundled-skills/vercel-optimize/lib/sanitizers/window-units.mjs +32 -0
- package/bundled-skills/vercel-optimize/lib/scanners/cache-components-suspense-dedupe.mjs +109 -0
- package/bundled-skills/vercel-optimize/lib/scanners/edge-heavy-import.mjs +94 -0
- package/bundled-skills/vercel-optimize/lib/scanners/force-dynamic.mjs +42 -0
- package/bundled-skills/vercel-optimize/lib/scanners/headers-in-page.mjs +44 -0
- package/bundled-skills/vercel-optimize/lib/scanners/index.mjs +35 -0
- package/bundled-skills/vercel-optimize/lib/scanners/large-static-asset.mjs +92 -0
- package/bundled-skills/vercel-optimize/lib/scanners/max-age-without-s-maxage.mjs +42 -0
- package/bundled-skills/vercel-optimize/lib/scanners/middleware-broad-matcher.mjs +55 -0
- package/bundled-skills/vercel-optimize/lib/scanners/missing-cache-headers.mjs +90 -0
- package/bundled-skills/vercel-optimize/lib/scanners/prisma-include-tree.mjs +42 -0
- package/bundled-skills/vercel-optimize/lib/scanners/region-pin-in-config.mjs +88 -0
- package/bundled-skills/vercel-optimize/lib/scanners/source-maps-production.mjs +36 -0
- package/bundled-skills/vercel-optimize/lib/scanners/sveltekit-prerender-missing.mjs +43 -0
- package/bundled-skills/vercel-optimize/lib/scanners/turbo-force-bypass.mjs +129 -0
- package/bundled-skills/vercel-optimize/lib/scanners/unoptimized-image.mjs +113 -0
- package/bundled-skills/vercel-optimize/lib/scanners/use-cache-date-stamp.mjs +106 -0
- package/bundled-skills/vercel-optimize/lib/support-topics.mjs +355 -0
- package/bundled-skills/vercel-optimize/lib/throttle.mjs +273 -0
- package/bundled-skills/vercel-optimize/lib/util.mjs +17 -0
- package/bundled-skills/vercel-optimize/lib/vercel.mjs +784 -0
- package/bundled-skills/vercel-optimize/lib/verify-claim.mjs +1296 -0
- package/bundled-skills/vercel-optimize/lib/workspace-resolver.mjs +521 -0
- package/bundled-skills/vercel-optimize/references/candidates.md +176 -0
- package/bundled-skills/vercel-optimize/references/data-collection.md +218 -0
- package/bundled-skills/vercel-optimize/references/docs-library.json +683 -0
- package/bundled-skills/vercel-optimize/references/doctrine.md +105 -0
- package/bundled-skills/vercel-optimize/references/observability-plus.md +108 -0
- package/bundled-skills/vercel-optimize/references/playbooks/README.md +53 -0
- package/bundled-skills/vercel-optimize/references/playbooks/ai-application.md +32 -0
- package/bundled-skills/vercel-optimize/references/playbooks/api-service.md +30 -0
- package/bundled-skills/vercel-optimize/references/playbooks/content-site.md +30 -0
- package/bundled-skills/vercel-optimize/references/playbooks/ecommerce.md +30 -0
- package/bundled-skills/vercel-optimize/references/playbooks/marketing.md +30 -0
- package/bundled-skills/vercel-optimize/references/playbooks/saas.md +31 -0
- package/bundled-skills/vercel-optimize/references/playbooks/sveltekit.md +75 -0
- package/bundled-skills/vercel-optimize/references/recommendations.md +203 -0
- package/bundled-skills/vercel-optimize/references/scanner-patterns.md +251 -0
- package/bundled-skills/vercel-optimize/references/scoring.md +205 -0
- package/bundled-skills/vercel-optimize/references/support-topics/README.md +46 -0
- package/bundled-skills/vercel-optimize/references/support-topics/astro-edge-middleware-scope.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/astro-output-mode-and-isr.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/auth-preserving-parallelization.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/bot-protection-product-guardrails.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/build-minutes-monorepo-fanout.md +23 -0
- package/bundled-skills/vercel-optimize/references/support-topics/cache-components-static-shell-boundaries.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/cache-components-suspense-dedupe-pitfall.md +23 -0
- package/bundled-skills/vercel-optimize/references/support-topics/cdn-cache-auth-safety.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/cold-start-initialization-bundle.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/core-web-vitals-client-bottlenecks.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/database-egress-pooling-region.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/dynamic-rendering-traps.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/external-api-critical-path-platform.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/external-api-critical-path.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/fast-data-transfer-payloads.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/fluid-compute-caveats.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/function-duration-io-and-after.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/function-invocation-reduction.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/function-region-misconfiguration-ttfb.md +23 -0
- package/bundled-skills/vercel-optimize/references/support-topics/image-optimization-cost-control.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/isr-revalidation-static-generation.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/middleware-proxy-edge-cost.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/next-fetch-revalidate-floor.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/next-font-cls-self-hosting.md +23 -0
- package/bundled-skills/vercel-optimize/references/support-topics/next-heavy-ui-lazy-load-boundaries.md +23 -0
- package/bundled-skills/vercel-optimize/references/support-topics/next-image-lcp-preload-sizes.md +23 -0
- package/bundled-skills/vercel-optimize/references/support-topics/next-route-handler-get-cache-defaults.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/next-script-third-party-strategy.md +23 -0
- package/bundled-skills/vercel-optimize/references/support-topics/nextjs-version-cache-semantics.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/not-found-catchall-request-waste.md +23 -0
- package/bundled-skills/vercel-optimize/references/support-topics/nuxt-route-rules-cache-isr.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/observability-events-cost-attribution.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/post-response-work-waituntil.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/route-error-durable-offload.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/route-error-runtime-limits.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/runtime-cache-reusable-data.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/sveltekit-isr-prerender-safety.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/sveltekit-split-cold-start-tradeoff.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/usage-spike-triage.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/use-cache-date-stamp-isr-write-amplifier.md +23 -0
- package/bundled-skills/vercel-optimize/references/support-topics/use-cache-remote-shared-origin-data.md +22 -0
- package/bundled-skills/vercel-optimize/references/support-topics/workflow-resumable-stream-routes.md +23 -0
- package/bundled-skills/vercel-optimize/references/verification.md +102 -0
- package/bundled-skills/vercel-optimize/references/voice.md +76 -0
- package/bundled-skills/vercel-optimize/scripts/budget-summary.mjs +56 -0
- package/bundled-skills/vercel-optimize/scripts/build-docs.mjs +74 -0
- package/bundled-skills/vercel-optimize/scripts/check-citations.mjs +81 -0
- package/bundled-skills/vercel-optimize/scripts/check-docs-fresh.mjs +93 -0
- package/bundled-skills/vercel-optimize/scripts/collect-signals.mjs +576 -0
- package/bundled-skills/vercel-optimize/scripts/collect-sub-agent-outputs.mjs +296 -0
- package/bundled-skills/vercel-optimize/scripts/deep-dive.mjs +319 -0
- package/bundled-skills/vercel-optimize/scripts/gate-investigations.mjs +166 -0
- package/bundled-skills/vercel-optimize/scripts/merge-signals.mjs +192 -0
- package/bundled-skills/vercel-optimize/scripts/prepare-investigation-brief.mjs +231 -0
- package/bundled-skills/vercel-optimize/scripts/reconcile-candidates.mjs +62 -0
- package/bundled-skills/vercel-optimize/scripts/render-report.mjs +437 -0
- package/bundled-skills/vercel-optimize/scripts/scan-codebase.mjs +313 -0
- package/bundled-skills/vercel-optimize/scripts/verify-and-regen.mjs +346 -0
- package/bundled-skills/vercel-optimize/scripts/verify-finding.mjs +19 -0
- package/bundled-skills/vercel-react-view-transitions/SKILL.md +327 -0
- package/bundled-skills/vercel-react-view-transitions/references/css-recipes.md +242 -0
- package/bundled-skills/vercel-react-view-transitions/references/implementation.md +182 -0
- package/bundled-skills/vercel-react-view-transitions/references/nextjs.md +176 -0
- package/bundled-skills/vercel-react-view-transitions/references/patterns.md +262 -0
- package/package.json +1 -1
- package/skills_index.json +312 -0
|
@@ -6,7 +6,7 @@ This document keeps the repository's GitHub-facing discovery copy aligned with t
|
|
|
6
6
|
|
|
7
7
|
Preferred positioning:
|
|
8
8
|
|
|
9
|
-
> Installable GitHub library of 1,
|
|
9
|
+
> Installable GitHub library of 1,508+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and other AI coding assistants.
|
|
10
10
|
|
|
11
11
|
Key framing:
|
|
12
12
|
|
|
@@ -20,7 +20,7 @@ Key framing:
|
|
|
20
20
|
|
|
21
21
|
Preferred description:
|
|
22
22
|
|
|
23
|
-
> Installable GitHub library of 1,
|
|
23
|
+
> Installable GitHub library of 1,508+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
|
|
24
24
|
|
|
25
25
|
Preferred homepage:
|
|
26
26
|
|
|
@@ -28,7 +28,7 @@ Preferred homepage:
|
|
|
28
28
|
|
|
29
29
|
Preferred social preview:
|
|
30
30
|
|
|
31
|
-
- use a clean preview image that says `1,
|
|
31
|
+
- use a clean preview image that says `1,508+ Agentic Skills`;
|
|
32
32
|
- mention Claude Code, Cursor, Codex CLI, and Gemini CLI;
|
|
33
33
|
- avoid dense text and tiny logos that disappear in social cards.
|
|
34
34
|
|
|
@@ -81,7 +81,7 @@ Start here:
|
|
|
81
81
|
|
|
82
82
|
- Install: `npx antigravity-awesome-skills`
|
|
83
83
|
- Choose your tool: `README.md#choose-your-tool`
|
|
84
|
-
-
|
|
84
|
+
- Specialized plugins: `README.md#recommended-specialized-plugins`
|
|
85
85
|
- Bundles: `docs/users/bundles.md`
|
|
86
86
|
- Workflows: `docs/users/workflows.md`
|
|
87
87
|
|
|
@@ -72,7 +72,7 @@ The update process refreshes:
|
|
|
72
72
|
- Canonical skills index (`skills_index.json`)
|
|
73
73
|
- Compatibility mirror (`data/skills_index.json`)
|
|
74
74
|
- Web app skills data (`apps\web-app\public\skills.json`)
|
|
75
|
-
- All 1,
|
|
75
|
+
- All 1,508+ skills from the skills directory
|
|
76
76
|
|
|
77
77
|
## When to Update
|
|
78
78
|
|
|
@@ -359,6 +359,250 @@ _For breaking things before users do._
|
|
|
359
359
|
- [`test-fixing`](../../skills/test-fixing/): Fix failing tests systematically.
|
|
360
360
|
|
|
361
361
|
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
## ⭐ Specialized Product Plugins
|
|
365
|
+
|
|
366
|
+
### 🌐 The "AAS Web App Builder" Plugin
|
|
367
|
+
|
|
368
|
+
_Frontend and full-stack developers shipping modern web apps._
|
|
369
|
+
|
|
370
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
371
|
+
|
|
372
|
+
- [`frontend-developer`](../../skills/frontend-developer/): Build production React and Next.js interfaces.
|
|
373
|
+
- [`frontend-design`](../../skills/frontend-design/): Apply strong UI layout and visual design patterns.
|
|
374
|
+
- [`react-best-practices`](../../skills/react-best-practices/): Optimize React performance and maintainability.
|
|
375
|
+
- [`nextjs-app-router-patterns`](../../skills/nextjs-app-router-patterns/): Use Next.js App Router patterns safely.
|
|
376
|
+
- [`nextjs-best-practices`](../../skills/nextjs-best-practices/): Ship high-quality Next.js applications.
|
|
377
|
+
- [`tailwind-patterns`](../../skills/tailwind-patterns/): Style efficiently with Tailwind CSS patterns.
|
|
378
|
+
- [`shadcn`](../../skills/shadcn/): Build polished interfaces with shadcn/ui.
|
|
379
|
+
- [`form-cro`](../../skills/form-cro/): Improve form conversion and usability.
|
|
380
|
+
- [`seo-audit`](../../skills/seo-audit/): Audit technical SEO and discoverability.
|
|
381
|
+
|
|
382
|
+
### 🎨 The "AAS Product Design Studio" Plugin
|
|
383
|
+
|
|
384
|
+
_Builders who want richer UI, brand, portfolio, and visual product work._
|
|
385
|
+
|
|
386
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
387
|
+
|
|
388
|
+
- [`ui-ux-pro-max`](../../skills/ui-ux-pro-max/): Use advanced UI/UX reasoning and design systems.
|
|
389
|
+
- [`high-end-visual-design`](../../skills/high-end-visual-design/): Raise visual polish for premium interfaces.
|
|
390
|
+
- [`frontend-design`](../../skills/frontend-design/): Apply strong UI layout and visual design patterns.
|
|
391
|
+
- [`mobile-design`](../../skills/mobile-design/): Design mobile-first interaction patterns.
|
|
392
|
+
- [`3d-web-experience`](../../skills/3d-web-experience/): Create immersive Three.js web experiences.
|
|
393
|
+
- [`canvas-design`](../../skills/canvas-design/): Generate visual assets, posters, and diagrams.
|
|
394
|
+
- [`scroll-experience`](../../skills/scroll-experience/): Design scroll-driven web experiences.
|
|
395
|
+
- [`interactive-portfolio`](../../skills/interactive-portfolio/): Create compelling interactive portfolios.
|
|
396
|
+
|
|
397
|
+
### 🛡️ The "AAS Security Engineer" Plugin
|
|
398
|
+
|
|
399
|
+
_Authorized security testing, audit, and hardening teams._
|
|
400
|
+
|
|
401
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
402
|
+
|
|
403
|
+
- [`ethical-hacking-methodology`](../../skills/ethical-hacking-methodology/): Follow an authorized pentest methodology.
|
|
404
|
+
- [`burp-suite-testing`](../../skills/burp-suite-testing/): Test web apps with Burp Suite workflows.
|
|
405
|
+
- [`top-web-vulnerabilities`](../../skills/top-web-vulnerabilities/): Cover OWASP-aligned vulnerability classes.
|
|
406
|
+
- [`api-security-testing`](../../skills/api-security-testing/): Test REST and GraphQL API security.
|
|
407
|
+
- [`linux-privilege-escalation`](../../skills/linux-privilege-escalation/): Assess Linux privilege escalation paths.
|
|
408
|
+
- [`cloud-penetration-testing`](../../skills/cloud-penetration-testing/): Assess AWS, Azure, and GCP environments.
|
|
409
|
+
- [`security-auditor`](../../skills/security-auditor/): Run comprehensive security audits.
|
|
410
|
+
- [`vulnerability-scanner`](../../skills/vulnerability-scanner/): Analyze and validate vulnerability findings.
|
|
411
|
+
- [`sast-configuration`](../../skills/sast-configuration/): Configure static application security testing.
|
|
412
|
+
|
|
413
|
+
### 🔐 The "AAS Secure App Builder" Plugin
|
|
414
|
+
|
|
415
|
+
_Application developers who want security embedded while building features._
|
|
416
|
+
|
|
417
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
418
|
+
|
|
419
|
+
- [`api-security-best-practices`](../../skills/api-security-best-practices/): Design secure APIs from the start.
|
|
420
|
+
- [`auth-implementation-patterns`](../../skills/auth-implementation-patterns/): Implement auth, sessions, JWT, and OAuth2 safely.
|
|
421
|
+
- [`backend-security-coder`](../../skills/backend-security-coder/): Apply secure backend coding practices.
|
|
422
|
+
- [`frontend-security-coder`](../../skills/frontend-security-coder/): Prevent XSS and client-side security bugs.
|
|
423
|
+
- [`cc-skill-security-review`](../../skills/cc-skill-security-review/): Review features with a security checklist.
|
|
424
|
+
- [`pci-compliance`](../../skills/pci-compliance/): Handle payment security and PCI expectations.
|
|
425
|
+
- [`sast-configuration`](../../skills/sast-configuration/): Configure static application security testing.
|
|
426
|
+
- [`sql-injection-testing`](../../skills/sql-injection-testing/): Find and validate SQL injection risks.
|
|
427
|
+
|
|
428
|
+
### 📄 The "AAS Documents & Presentations" Plugin
|
|
429
|
+
|
|
430
|
+
_Users creating, editing, converting, and automating office documents._
|
|
431
|
+
|
|
432
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
433
|
+
|
|
434
|
+
- [`office-productivity`](../../skills/office-productivity/): Coordinate document, spreadsheet, and slide workflows.
|
|
435
|
+
- [`docx-official`](../../skills/docx-official/): Create, edit, and inspect Word-compatible documents.
|
|
436
|
+
- [`xlsx-official`](../../skills/xlsx-official/): Create and analyze formula-backed spreadsheets.
|
|
437
|
+
- [`pptx-official`](../../skills/pptx-official/): Create and edit PowerPoint-compatible presentations.
|
|
438
|
+
- [`pdf-official`](../../skills/pdf-official/): Extract, generate, and manipulate PDFs.
|
|
439
|
+
- [`pdf-conversion-router`](../../skills/pdf-conversion-router/): Choose high-fidelity PDF conversion routes.
|
|
440
|
+
- [`google-sheets-automation`](../../skills/google-sheets-automation/): Automate Google Sheets reads and writes.
|
|
441
|
+
- [`google-slides-automation`](../../skills/google-slides-automation/): Automate Google Slides updates.
|
|
442
|
+
|
|
443
|
+
### 📊 The "AAS Data Analytics" Plugin
|
|
444
|
+
|
|
445
|
+
_Operators, analysts, and builders working with product analytics, SQL, dashboards, and experiments._
|
|
446
|
+
|
|
447
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
448
|
+
|
|
449
|
+
- [`analytics-tracking`](../../skills/analytics-tracking/): Set up reliable product analytics.
|
|
450
|
+
- [`sql-pro`](../../skills/sql-pro/): Query and model data with modern SQL.
|
|
451
|
+
- [`postgres-best-practices`](../../skills/postgres-best-practices/): Optimize Postgres schemas and queries.
|
|
452
|
+
- [`database-architect`](../../skills/database-architect/): Design robust database structures.
|
|
453
|
+
- [`dbt-transformation-patterns`](../../skills/dbt-transformation-patterns/): Build dbt transformation pipelines.
|
|
454
|
+
- [`claude-d3js-skill`](../../skills/claude-d3js-skill/): Create custom D3 visualizations.
|
|
455
|
+
- [`kpi-dashboard-design`](../../skills/kpi-dashboard-design/): Design dashboards for decision-making.
|
|
456
|
+
- [`ab-test-setup`](../../skills/ab-test-setup/): Plan and validate experiments.
|
|
457
|
+
|
|
458
|
+
### 🤖 The "AAS Agent & MCP Builder" Plugin
|
|
459
|
+
|
|
460
|
+
_Developers building agentic apps, MCP tools, RAG systems, and evaluation loops._
|
|
461
|
+
|
|
462
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
463
|
+
|
|
464
|
+
- [`ai-agents-architect`](../../skills/ai-agents-architect/): Design autonomous AI agent systems.
|
|
465
|
+
- [`agent-evaluation`](../../skills/agent-evaluation/): Evaluate agent reliability and performance.
|
|
466
|
+
- [`mcp-builder`](../../skills/mcp-builder/): Create MCP interfaces for agents.
|
|
467
|
+
- [`mcp-tool-developer`](../../skills/mcp-tool-developer/): Build MCP servers and tools.
|
|
468
|
+
- [`llm-app-patterns`](../../skills/llm-app-patterns/): Use production LLM application patterns.
|
|
469
|
+
- [`rag-engineer`](../../skills/rag-engineer/): Build retrieval-augmented generation systems.
|
|
470
|
+
- [`langgraph`](../../skills/langgraph/): Implement stateful agent workflows.
|
|
471
|
+
- [`langfuse`](../../skills/langfuse/): Trace, evaluate, and monitor LLM apps.
|
|
472
|
+
- [`context-window-management`](../../skills/context-window-management/): Manage long context effectively.
|
|
473
|
+
|
|
474
|
+
### 🧰 The "AAS OSS Maintainer" Plugin
|
|
475
|
+
|
|
476
|
+
_Open-source maintainers managing PRs, releases, reviews, and contributor handoffs._
|
|
477
|
+
|
|
478
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
479
|
+
|
|
480
|
+
- [`agents-md`](../../skills/agents-md/): Create concise durable agent instructions.
|
|
481
|
+
- [`commit`](../../skills/commit/): Write high-quality conventional commits.
|
|
482
|
+
- [`create-pr`](../../skills/create-pr/): Create review-ready pull requests.
|
|
483
|
+
- [`requesting-code-review`](../../skills/requesting-code-review/): Ask for targeted code reviews.
|
|
484
|
+
- [`receiving-code-review`](../../skills/receiving-code-review/): Apply review feedback rigorously.
|
|
485
|
+
- [`changelog-automation`](../../skills/changelog-automation/): Keep changelogs and release notes consistent.
|
|
486
|
+
- [`git-advanced-workflows`](../../skills/git-advanced-workflows/): Handle advanced Git recovery and history workflows.
|
|
487
|
+
- [`github-actions-advanced`](../../skills/github-actions-advanced/): Build and debug advanced GitHub Actions.
|
|
488
|
+
- [`address-github-comments`](../../skills/address-github-comments/): Address GitHub review comments systematically.
|
|
489
|
+
- [`lint-and-validate`](../../skills/lint-and-validate/): Run validation and quality checks.
|
|
490
|
+
|
|
491
|
+
### 🧪 The "AAS QA & Test Automation" Plugin
|
|
492
|
+
|
|
493
|
+
_Engineers and QA teams writing, debugging, and stabilizing test suites._
|
|
494
|
+
|
|
495
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe · Requires manual setup
|
|
496
|
+
|
|
497
|
+
- [`test-driven-development`](../../skills/test-driven-development/): Use red-green-refactor development loops.
|
|
498
|
+
- [`systematic-debugging`](../../skills/systematic-debugging/): Trace failures to root cause.
|
|
499
|
+
- [`browser-automation`](../../skills/browser-automation/): Automate browsers for testing and scraping.
|
|
500
|
+
- [`e2e-testing-patterns`](../../skills/e2e-testing-patterns/): Build reliable end-to-end suites.
|
|
501
|
+
- [`playwright-skill`](../../skills/playwright-skill/): Use Playwright for browser test automation. _(manual setup)_
|
|
502
|
+
- [`webapp-testing`](../../skills/webapp-testing/): Test local web applications with Playwright.
|
|
503
|
+
- [`k6-load-testing`](../../skills/k6-load-testing/): Run load and scalability tests.
|
|
504
|
+
- [`test-fixing`](../../skills/test-fixing/): Fix failing tests systematically.
|
|
505
|
+
- [`code-review-checklist`](../../skills/code-review-checklist/): Catch common bugs in reviews.
|
|
506
|
+
|
|
507
|
+
### ☁️ The "AAS DevOps & Cloud" Plugin
|
|
508
|
+
|
|
509
|
+
_Teams shipping infrastructure, deployments, and operational workflows._
|
|
510
|
+
|
|
511
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
512
|
+
|
|
513
|
+
- [`docker-expert`](../../skills/docker-expert/): Build and operate containers cleanly.
|
|
514
|
+
- [`aws-serverless`](../../skills/aws-serverless/): Ship serverless workloads on AWS.
|
|
515
|
+
- [`kubernetes-architect`](../../skills/kubernetes-architect/): Design Kubernetes and GitOps systems.
|
|
516
|
+
- [`terraform-specialist`](../../skills/terraform-specialist/): Manage infrastructure as code.
|
|
517
|
+
- [`github-actions-templates`](../../skills/github-actions-templates/): Use production GitHub Actions patterns.
|
|
518
|
+
- [`environment-setup-guide`](../../skills/environment-setup-guide/): Standardize team environments.
|
|
519
|
+
- [`deployment-procedures`](../../skills/deployment-procedures/): Roll out changes safely.
|
|
520
|
+
- [`bash-linux`](../../skills/bash-linux/): Use Linux shell workflows effectively.
|
|
521
|
+
- [`incident-responder`](../../skills/incident-responder/): Respond to incidents with clear procedure.
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
---
|
|
525
|
+
|
|
526
|
+
## 🧩 Specialized Product Plugins - Next Wave
|
|
527
|
+
|
|
528
|
+
### 📈 The "AAS Marketing, SEO & Growth" Plugin
|
|
529
|
+
|
|
530
|
+
_Founders and growth teams creating content, SEO systems, experiments, and email campaigns._
|
|
531
|
+
|
|
532
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
533
|
+
|
|
534
|
+
- [`content-creator`](../../skills/content-creator/): Create SEO-aware marketing content.
|
|
535
|
+
- [`seo-audit`](../../skills/seo-audit/): Audit technical SEO and discoverability.
|
|
536
|
+
- [`seo-fundamentals`](../../skills/seo-fundamentals/): Apply durable SEO principles.
|
|
537
|
+
- [`programmatic-seo`](../../skills/programmatic-seo/): Create scalable SEO page systems.
|
|
538
|
+
- [`analytics-tracking`](../../skills/analytics-tracking/): Set up reliable product analytics.
|
|
539
|
+
- [`ab-test-setup`](../../skills/ab-test-setup/): Plan and validate experiments.
|
|
540
|
+
- [`email-sequence`](../../skills/email-sequence/): Write automated email campaigns.
|
|
541
|
+
- [`copywriting`](../../skills/copywriting/): Write conversion-focused copy.
|
|
542
|
+
- [`schema-markup`](../../skills/schema-markup/): Add structured data for search visibility.
|
|
543
|
+
|
|
544
|
+
### ⚙️ The "AAS Automation Builder" Plugin
|
|
545
|
+
|
|
546
|
+
_Teams designing reliable automations across tools, data stores, and communication platforms._
|
|
547
|
+
|
|
548
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
549
|
+
|
|
550
|
+
- [`workflow-automation`](../../skills/workflow-automation/): Design durable automation workflows.
|
|
551
|
+
- [`mcp-builder`](../../skills/mcp-builder/): Create MCP interfaces for agents.
|
|
552
|
+
- [`make-automation`](../../skills/make-automation/): Build Make/Integromat automations.
|
|
553
|
+
- [`airtable-automation`](../../skills/airtable-automation/): Automate Airtable data and views.
|
|
554
|
+
- [`notion-automation`](../../skills/notion-automation/): Automate Notion pages and databases.
|
|
555
|
+
- [`slack-automation`](../../skills/slack-automation/): Automate Slack workflows.
|
|
556
|
+
- [`googlesheets-automation`](../../skills/googlesheets-automation/): Automate Google Sheets operations.
|
|
557
|
+
- [`github-automation`](../../skills/github-automation/): Automate GitHub issues and repository work.
|
|
558
|
+
|
|
559
|
+
### 📡 The "AAS Observability IR" Plugin
|
|
560
|
+
|
|
561
|
+
_Engineering teams monitoring systems, debugging production issues, and writing postmortems._
|
|
562
|
+
|
|
563
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
564
|
+
|
|
565
|
+
- [`observability-engineer`](../../skills/observability-engineer/): Design monitoring and observability systems.
|
|
566
|
+
- [`distributed-tracing`](../../skills/distributed-tracing/): Trace requests across services.
|
|
567
|
+
- [`slo-implementation`](../../skills/slo-implementation/): Define and operate service level objectives.
|
|
568
|
+
- [`incident-responder`](../../skills/incident-responder/): Respond to incidents with clear procedure.
|
|
569
|
+
- [`postmortem-writing`](../../skills/postmortem-writing/): Write clear blameless postmortems.
|
|
570
|
+
- [`performance-engineer`](../../skills/performance-engineer/): Diagnose and improve application performance.
|
|
571
|
+
- [`grafana-dashboards`](../../skills/grafana-dashboards/): Create useful Grafana dashboards.
|
|
572
|
+
- [`langfuse`](../../skills/langfuse/): Trace, evaluate, and monitor LLM apps.
|
|
573
|
+
|
|
574
|
+
### 🐍 The "AAS Python API Builder" Plugin
|
|
575
|
+
|
|
576
|
+
_Python developers building APIs, services, and tests._
|
|
577
|
+
|
|
578
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
579
|
+
|
|
580
|
+
- [`python-pro`](../../skills/python-pro/): Write modern, idiomatic Python.
|
|
581
|
+
- [`python-patterns`](../../skills/python-patterns/): Apply Python architecture and design patterns.
|
|
582
|
+
- [`fastapi-pro`](../../skills/fastapi-pro/): Build high-performance FastAPI services.
|
|
583
|
+
- [`fastapi-templates`](../../skills/fastapi-templates/): Start production-ready FastAPI projects.
|
|
584
|
+
- [`django-pro`](../../skills/django-pro/): Build robust Django applications.
|
|
585
|
+
- [`python-testing-patterns`](../../skills/python-testing-patterns/): Test Python code with pytest patterns.
|
|
586
|
+
- [`async-python-patterns`](../../skills/async-python-patterns/): Use asyncio and async Python safely.
|
|
587
|
+
- [`api-design-principles`](../../skills/api-design-principles/): Design clear and maintainable APIs.
|
|
588
|
+
|
|
589
|
+
### 📱 The "AAS Mobile App Builder" Plugin
|
|
590
|
+
|
|
591
|
+
_Mobile teams shipping Expo, React Native, Flutter, and iOS apps._
|
|
592
|
+
|
|
593
|
+
**Plugin status:** Codex plugin-safe · Claude plugin-safe
|
|
594
|
+
|
|
595
|
+
- [`mobile-developer`](../../skills/mobile-developer/): Build cross-platform mobile applications.
|
|
596
|
+
- [`react-native-architecture`](../../skills/react-native-architecture/): Structure production React Native apps.
|
|
597
|
+
- [`expo-api-routes`](../../skills/expo-api-routes/): Build Expo Router API routes.
|
|
598
|
+
- [`expo-dev-client`](../../skills/expo-dev-client/): Create Expo development clients.
|
|
599
|
+
- [`expo-cicd-workflows`](../../skills/expo-cicd-workflows/): Automate Expo builds and releases.
|
|
600
|
+
- [`expo-deployment`](../../skills/expo-deployment/): Deploy and release Expo applications.
|
|
601
|
+
- [`flutter-expert`](../../skills/flutter-expert/): Build Flutter multi-platform apps.
|
|
602
|
+
- [`ios-developer`](../../skills/ios-developer/): Develop iOS apps with Swift.
|
|
603
|
+
- [`app-store-optimization`](../../skills/app-store-optimization/): Improve App Store and Play Store visibility.
|
|
604
|
+
|
|
605
|
+
|
|
362
606
|
---
|
|
363
607
|
|
|
364
608
|
## 🔧 Specialized Packs
|
|
@@ -673,4 +917,4 @@ Found a skill that should be in a bundle? Or want to create a new bundle? [Open
|
|
|
673
917
|
|
|
674
918
|
---
|
|
675
919
|
|
|
676
|
-
_Last updated: March 2026 | Total Skills: 1,
|
|
920
|
+
_Last updated: March 2026 | Total Skills: 1,508+ | Total Bundles: 52_
|
|
@@ -12,7 +12,7 @@ Install the library into Claude Code, then invoke focused skills directly in the
|
|
|
12
12
|
|
|
13
13
|
## Why use this repo for Claude Code
|
|
14
14
|
|
|
15
|
-
- It includes 1,
|
|
15
|
+
- It includes 1,508+ skills instead of a narrow single-domain starter pack.
|
|
16
16
|
- It supports the standard `.claude/skills/` path and the Claude Code plugin marketplace flow.
|
|
17
17
|
- It also ships generated bundle plugins so teams can install focused packs like `Essentials` or `Security Developer` from the marketplace metadata.
|
|
18
18
|
- It includes onboarding docs, bundles, and workflows so new users do not need to guess where to begin.
|
|
@@ -12,7 +12,7 @@ Install into the Gemini skills path, then ask Gemini to apply one skill at a tim
|
|
|
12
12
|
|
|
13
13
|
- It installs directly into the expected Gemini skills path.
|
|
14
14
|
- It includes both core software engineering skills and deeper agent/LLM-oriented skills.
|
|
15
|
-
- It helps new users get started with bundles and workflows rather than forcing a cold start from 1,
|
|
15
|
+
- It helps new users get started with bundles and workflows rather than forcing a cold start from 1,508+ files.
|
|
16
16
|
- It is useful whether you want a broad internal skill library or a single repo to test many workflows quickly.
|
|
17
17
|
|
|
18
18
|
## Install Gemini CLI Skills
|
|
@@ -18,7 +18,7 @@ Kiro is AWS's agentic AI IDE that combines:
|
|
|
18
18
|
|
|
19
19
|
Kiro's agentic capabilities are enhanced by skills that provide:
|
|
20
20
|
|
|
21
|
-
- **Domain expertise** across 1,
|
|
21
|
+
- **Domain expertise** across 1,508+ specialized areas
|
|
22
22
|
- **Best practices** from Anthropic, OpenAI, Google, Microsoft, and AWS
|
|
23
23
|
- **Workflow automation** for common development tasks
|
|
24
24
|
- **AWS-specific patterns** for serverless, infrastructure, and cloud architecture
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Release `9.0.0` adds first-class plugin distributions for both **Claude Code** and **Codex**.
|
|
4
4
|
|
|
5
|
-
This page is the canonical explanation of what those plugins are, how they differ from a full library install, and why the repository now ships both a **root plugin** and multiple **
|
|
5
|
+
This page is the canonical explanation of what those plugins are, how they differ from a full library install, and why the repository now ships both a **root plugin** and multiple **specialized plugins**.
|
|
6
6
|
|
|
7
7
|
## What a plugin is in this repo
|
|
8
8
|
|
|
@@ -13,6 +13,7 @@ Plugins are useful when you want:
|
|
|
13
13
|
- a marketplace-style install instead of copying files into `.claude/skills/` or `.codex/skills/`
|
|
14
14
|
- a narrower install surface for a team or role
|
|
15
15
|
- a safer default distribution for plugin ecosystems
|
|
16
|
+
- a stable workflow package that can eventually include skills, app integrations, MCP configuration, hooks, and assets
|
|
16
17
|
|
|
17
18
|
Plugins are **not** different content formats. They still ship `SKILL.md` playbooks. The difference is the packaging, install surface, and filtering.
|
|
18
19
|
|
|
@@ -49,7 +50,7 @@ Choose the plugin route when you want:
|
|
|
49
50
|
- marketplace-friendly installation
|
|
50
51
|
- a cleaner starter surface
|
|
51
52
|
- plugin-safe filtering by default
|
|
52
|
-
-
|
|
53
|
+
- domain-specific installs such as `AAS Web App Builder`, `AAS Security Engineer`, or `AAS Data Analytics`
|
|
53
54
|
|
|
54
55
|
## What `plugin-safe` means
|
|
55
56
|
|
|
@@ -68,7 +69,7 @@ The important rule is:
|
|
|
68
69
|
- the repository remains the source of truth for the complete library
|
|
69
70
|
- plugins publish the hardened subset that is ready for marketplace-style installation
|
|
70
71
|
|
|
71
|
-
## Root
|
|
72
|
+
## Root Plugin Vs Specialized Plugins
|
|
72
73
|
|
|
73
74
|
The repository now ships two plugin shapes.
|
|
74
75
|
|
|
@@ -79,22 +80,25 @@ The root plugin is the broad installable distribution for each host:
|
|
|
79
80
|
- **Claude Code root plugin**: install the plugin-safe Antigravity library through the Claude marketplace entry
|
|
80
81
|
- **Codex root plugin**: expose the plugin-safe Antigravity library through the Codex plugin surface
|
|
81
82
|
|
|
82
|
-
Use the root plugin when you want the widest plugin-safe install without picking a specialty bundle.
|
|
83
|
+
Use the root plugin when you want the widest plugin-safe install without picking a specialty bundle. Treat it as an advanced breadth-first option, not the best default for most users.
|
|
83
84
|
|
|
84
|
-
###
|
|
85
|
+
### Specialized plugins
|
|
85
86
|
|
|
86
|
-
|
|
87
|
+
Specialized plugins are smaller, role-based or workflow-based distributions generated from the same repository. They are the recommended default when a user can name the job they want Claude Code, Codex, or another supported skills host to help with. Examples include:
|
|
87
88
|
|
|
88
|
-
- `
|
|
89
|
-
- `Security Engineer`
|
|
90
|
-
- `
|
|
91
|
-
- `
|
|
89
|
+
- `AAS Web App Builder`
|
|
90
|
+
- `AAS Security Engineer`
|
|
91
|
+
- `AAS Data Analytics`
|
|
92
|
+
- `AAS Documents & Presentations`
|
|
93
|
+
- `AAS OSS Maintainer`
|
|
94
|
+
- `AAS Agent & MCP Builder`
|
|
92
95
|
|
|
93
|
-
Use a
|
|
96
|
+
Use a specialized plugin when you want:
|
|
94
97
|
|
|
95
98
|
- a lighter starting point
|
|
96
99
|
- a team-specific plugin install
|
|
97
100
|
- a curated subset instead of the broad root plugin
|
|
101
|
+
- a plugin with a clear promise, such as building web apps, auditing security, maintaining OSS repos, automating documents, or creating growth content
|
|
98
102
|
|
|
99
103
|
## Claude Code plugin surface
|
|
100
104
|
|
|
@@ -139,13 +143,16 @@ Choose the **root plugin** if:
|
|
|
139
143
|
|
|
140
144
|
- you want the broad installable plugin-safe distribution
|
|
141
145
|
- you prefer marketplace-style installation
|
|
142
|
-
- you
|
|
146
|
+
- you are an advanced user who wants a broad plugin-safe catalog
|
|
143
147
|
|
|
144
|
-
Choose a **
|
|
148
|
+
Choose a **specialized plugin** if:
|
|
145
149
|
|
|
146
150
|
- you want a smaller role-based install
|
|
147
151
|
- you are onboarding a team around one domain
|
|
148
152
|
- you want plugin convenience without the breadth of the root plugin
|
|
153
|
+
- you want the plugin itself to communicate a clear job, audience, and workflow
|
|
154
|
+
|
|
155
|
+
The hosted [specialized plugin landing page](https://sickn33.github.io/antigravity-awesome-skills/plugins) is the quickest way to compare the current AAS plugin packs.
|
|
149
156
|
|
|
150
157
|
## Related guides
|
|
151
158
|
|
|
@@ -154,4 +161,5 @@ Choose a **bundle plugin** if:
|
|
|
154
161
|
- [Claude Code skills](claude-code-skills.md)
|
|
155
162
|
- [Codex CLI skills](codex-cli-skills.md)
|
|
156
163
|
- [Bundles](bundles.md)
|
|
164
|
+
- [Specialized Plugin Roadmap](specialized-plugin-roadmap.md)
|
|
157
165
|
- [Usage](usage.md)
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# Specialized Plugin Roadmap
|
|
2
|
+
|
|
3
|
+
This roadmap shifts Antigravity Awesome Skills from "one giant plugin with every safe skill" toward a smaller set of focused, high-value Codex and Claude plugins.
|
|
4
|
+
|
|
5
|
+
The full catalog remains useful as a repository and installer. The plugin product should be different: clear jobs, narrow install surfaces, strong names, and skill groups that users can trust without browsing 1,494 options.
|
|
6
|
+
|
|
7
|
+
## Official Codex Basis
|
|
8
|
+
|
|
9
|
+
The current Codex manual draws a useful line between skills and plugins:
|
|
10
|
+
|
|
11
|
+
- Skills are the reusable workflow authoring format.
|
|
12
|
+
- Plugins are the installable distribution unit for reusable skills, apps, MCP servers, and stable workflows.
|
|
13
|
+
- Codex uses progressive disclosure for skills, but the initial skills list has a context budget. Very large installed sets can have shortened descriptions or omitted skills.
|
|
14
|
+
- Plugin authors should build a plugin when they want to share a workflow across teams, bundle app integrations or MCP configuration, package hooks, or publish a stable package.
|
|
15
|
+
|
|
16
|
+
That makes specialized plugins the better default product shape. A root plugin can exist for compatibility and advanced users, but it should not be the main recommendation.
|
|
17
|
+
|
|
18
|
+
## Selection Method
|
|
19
|
+
|
|
20
|
+
This pass evaluated the full local catalog in `data/skills_index.json`:
|
|
21
|
+
|
|
22
|
+
- Total skills evaluated: 1,494.
|
|
23
|
+
- Broadest categories: development, cloud, AI/ML, security, business, workflow, content, marketing, automation, and web development.
|
|
24
|
+
- Existing editorial bundles are all small and mostly plugin-compatible, which makes them a good starting point.
|
|
25
|
+
- The stronger opportunity is to turn the best bundles into first-class product plugins with sharper names, richer descriptions, and optional app/MCP extensions.
|
|
26
|
+
|
|
27
|
+
Candidate details live in `data/specialized-plugin-candidates.json`. Each listed skill ID exists in the catalog and was checked as Codex-supported.
|
|
28
|
+
|
|
29
|
+
The candidates are now enabled as editorial bundle plugins. Running `npm run bundles:sync` materializes them under `plugins/antigravity-bundle-aas-*`, adds Codex marketplace entries in `.agents/plugins/marketplace.json`, adds Claude marketplace entries in `.claude-plugin/marketplace.json`, and refreshes `docs/users/bundles.md`.
|
|
30
|
+
|
|
31
|
+
## Tier 1 Plugins
|
|
32
|
+
|
|
33
|
+
These should become the primary marketplace surface.
|
|
34
|
+
|
|
35
|
+
| Plugin | Job | Why it deserves focus |
|
|
36
|
+
| --- | --- | --- |
|
|
37
|
+
| AAS Web App Builder | Build modern React/Next.js web apps. | High-demand, coherent path from UI design to implementation, forms, Tailwind, and SEO. |
|
|
38
|
+
| AAS Product Design Studio | Create richer UI, brand, motion, 3D, and visual assets. | Stronger than a generic design bundle; it has a clear creative/product promise. |
|
|
39
|
+
| AAS Security Engineer | Run authorized testing, audit, and hardening workflows. | Security is deep enough to justify a standalone plugin with explicit boundaries. |
|
|
40
|
+
| AAS Secure App Builder | Build secure application features. | Keeps defensive implementation separate from offensive assessment. |
|
|
41
|
+
| AAS Documents & Presentations | Create, edit, convert, and automate DOCX/XLSX/PPTX/PDF/Google files. | Concrete productivity plugin with obvious user value and room for app integrations. |
|
|
42
|
+
| AAS Data Analytics | Track, query, visualize, dashboard, and experiment. | Data workflows need a repeatable toolchain, not one isolated skill. |
|
|
43
|
+
| AAS Agent & MCP Builder | Build agentic apps, MCP tools, RAG, and eval loops. | Maps directly to plugin-based agent workflows because it can grow into MCP config. |
|
|
44
|
+
| AAS OSS Maintainer | Manage PRs, reviews, releases, changelogs, and repo guidance. | Very useful for this repository's own maintainer workflow. |
|
|
45
|
+
| AAS QA & Test Automation | Write, debug, stabilize, and scale tests. | Testing is a workflow chain: TDD, browser automation, failure diagnosis, and regression prevention. |
|
|
46
|
+
| AAS DevOps & Cloud | Ship infrastructure, deployment, and operational workflows. | Strong fit for scripts, deployment gates, incident practice, and cloud patterns. |
|
|
47
|
+
|
|
48
|
+
## Tier 2 Plugins
|
|
49
|
+
|
|
50
|
+
These are promising and should be hardened after Tier 1.
|
|
51
|
+
|
|
52
|
+
| Plugin | Job | Why it is promising |
|
|
53
|
+
| --- | --- | --- |
|
|
54
|
+
| AAS Marketing, SEO & Growth | Plan, write, measure, and improve acquisition work. | Better as a growth workflow than many isolated copy/SEO skills. |
|
|
55
|
+
| AAS Automation Builder | Design durable automations across tools. | Can become much stronger when paired with apps and MCP configuration. |
|
|
56
|
+
| AAS Observability IR | Monitor systems, debug production, and write postmortems. | Operational work benefits from consistent proof gates. |
|
|
57
|
+
| AAS Python API Builder | Build Python APIs and services with tests. | Language-specialized plugin with practical framework coverage. |
|
|
58
|
+
| AAS Mobile App Builder | Ship Expo, React Native, Flutter, and iOS apps. | Covers architecture, release, CI, native platforms, and store optimization. |
|
|
59
|
+
|
|
60
|
+
## Recommended Product Changes
|
|
61
|
+
|
|
62
|
+
1. Keep the root plugin as an advanced "full plugin-safe library" path.
|
|
63
|
+
2. Make specialized plugins the default recommendation in README, docs, and marketplace ordering.
|
|
64
|
+
3. Rename or reframe bundle plugins as product plugins where the job is clear.
|
|
65
|
+
4. Add richer `interface` metadata to the strongest plugin manifests: display name, short description, brand color, and default prompt.
|
|
66
|
+
5. Add per-plugin quality gates:
|
|
67
|
+
- every skill exists in `data/skills_index.json`;
|
|
68
|
+
- every skill is Codex-supported before Codex publication;
|
|
69
|
+
- every skill is Claude-supported before Claude publication;
|
|
70
|
+
- every plugin has a 5-10 skill target range unless it has a concrete reason to be larger;
|
|
71
|
+
- every plugin description says who it is for, what it helps do, and what it does not cover.
|
|
72
|
+
6. Move social and launch messaging from daily individual skills to plugin stories:
|
|
73
|
+
- "Web App Builder: from design to tested Next.js app";
|
|
74
|
+
- "Documents & Presentations: DOCX/PPTX/XLSX/PDF without manual file surgery";
|
|
75
|
+
- "OSS Maintainer: PR review, changelog, release, and contributor handoff".
|
|
76
|
+
|
|
77
|
+
## What Not To Do
|
|
78
|
+
|
|
79
|
+
- Do not present the root plugin as the best default for new users.
|
|
80
|
+
- Do not create plugin names that are just categories, such as "development" or "cloud".
|
|
81
|
+
- Do not publish large plugins whose only promise is "more skills".
|
|
82
|
+
- Do not mix offensive security, defensive app security, and general code review into one vague security plugin.
|
|
83
|
+
- Do not treat a bundle as good enough merely because all included skills are compatible.
|
|
84
|
+
|
|
85
|
+
## Implementation Status
|
|
86
|
+
|
|
87
|
+
Implemented in the repository:
|
|
88
|
+
|
|
89
|
+
- `data/editorial-bundles.json` includes all 15 specialized plugin candidates.
|
|
90
|
+
- `data/specialized-plugin-candidates.json` remains the source-of-truth shortlist and rationale.
|
|
91
|
+
- `plugins/antigravity-bundle-aas-*` contains the generated plugin folders.
|
|
92
|
+
- `.agents/plugins/marketplace.json` and `.claude-plugin/marketplace.json` expose the generated plugin entries.
|
|
93
|
+
- `docs/users/bundles.md` renders the specialized plugin sections for users.
|
|
94
|
+
|
|
95
|
+
Future improvements should focus on richer per-plugin `interface.defaultPrompt` examples, brand metadata, and optional MCP/app integrations where a plugin naturally needs live tools.
|
|
@@ -14,7 +14,7 @@ If you came in through a **Claude Code** or **Codex** plugin instead of a full l
|
|
|
14
14
|
|
|
15
15
|
When you ran `npx antigravity-awesome-skills` or cloned the repository, you:
|
|
16
16
|
|
|
17
|
-
✅ **Downloaded 1,
|
|
17
|
+
✅ **Downloaded 1,508+ skill files** to your computer (default: `~/.agents/skills/`; or a custom path like `~/.agent/skills/` if you used `--path`)
|
|
18
18
|
✅ **Made them available** to your AI assistant
|
|
19
19
|
❌ **Did NOT enable them all automatically** (they're just sitting there, waiting)
|
|
20
20
|
|
|
@@ -34,7 +34,7 @@ Bundles are **curated groups** of skills organized by role. They help you decide
|
|
|
34
34
|
|
|
35
35
|
**Analogy:**
|
|
36
36
|
|
|
37
|
-
- You installed a toolbox with 1,
|
|
37
|
+
- You installed a toolbox with 1,508+ tools (✅ done)
|
|
38
38
|
- Bundles are like **labeled organizer trays** saying: "If you're a carpenter, start with these 10 tools"
|
|
39
39
|
- You can either **pick skills from the tray** or install that tray as a focused marketplace bundle plugin
|
|
40
40
|
|
|
@@ -212,7 +212,7 @@ Let's actually use a skill right now. Follow these steps:
|
|
|
212
212
|
|
|
213
213
|
## Step 5: Picking Your First Skills (Practical Advice)
|
|
214
214
|
|
|
215
|
-
Don't try to use all 1,
|
|
215
|
+
Don't try to use all 1,508+ skills at once. Here's a sensible approach:
|
|
216
216
|
|
|
217
217
|
If you want a tool-specific starting point before choosing skills, use:
|
|
218
218
|
|
|
@@ -343,7 +343,7 @@ Usually no, but if your AI doesn't recognize a skill:
|
|
|
343
343
|
|
|
344
344
|
### "Can I load all skills into the model at once?"
|
|
345
345
|
|
|
346
|
-
No. Even though you have 1,
|
|
346
|
+
No. Even though you have 1,508+ skills installed locally, you should **not** concatenate every `SKILL.md` into a single system prompt or context block.
|
|
347
347
|
|
|
348
348
|
The intended pattern is:
|
|
349
349
|
|
|
@@ -34,7 +34,7 @@ antigravity-awesome-skills/
|
|
|
34
34
|
├── 📄 CONTRIBUTING.md ← Contributor workflow
|
|
35
35
|
├── 📄 CATALOG.md ← Full generated catalog
|
|
36
36
|
│
|
|
37
|
-
├── 📁 skills/ ← 1,
|
|
37
|
+
├── 📁 skills/ ← 1,508+ skills live here
|
|
38
38
|
│ │
|
|
39
39
|
│ ├── 📁 brainstorming/
|
|
40
40
|
│ │ └── 📄 SKILL.md ← Skill definition
|
|
@@ -47,7 +47,7 @@ antigravity-awesome-skills/
|
|
|
47
47
|
│ │ └── 📁 2d-games/
|
|
48
48
|
│ │ └── 📄 SKILL.md ← Nested skills also supported
|
|
49
49
|
│ │
|
|
50
|
-
│ └── ... (1,
|
|
50
|
+
│ └── ... (1,508+ total)
|
|
51
51
|
│
|
|
52
52
|
├── 📁 apps/
|
|
53
53
|
│ └── 📁 web-app/ ← Interactive browser
|
|
@@ -100,7 +100,7 @@ antigravity-awesome-skills/
|
|
|
100
100
|
|
|
101
101
|
```
|
|
102
102
|
┌─────────────────────────┐
|
|
103
|
-
│ 1,
|
|
103
|
+
│ 1,508+ SKILLS │
|
|
104
104
|
└────────────┬────────────┘
|
|
105
105
|
│
|
|
106
106
|
┌────────────────────────┼────────────────────────┐
|
|
@@ -201,7 +201,7 @@ If you want a workspace-style manual install instead, cloning into `.agent/skill
|
|
|
201
201
|
│ ├── 📁 brainstorming/ │
|
|
202
202
|
│ ├── 📁 stripe-integration/ │
|
|
203
203
|
│ ├── 📁 react-best-practices/ │
|
|
204
|
-
│ └── ... (1,
|
|
204
|
+
│ └── ... (1,508+ total) │
|
|
205
205
|
└─────────────────────────────────────────┘
|
|
206
206
|
```
|
|
207
207
|
|