@biggora/claude-plugins 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -4
- package/package.json +1 -1
- package/registry/registry.json +334 -244
- package/specs/coding.md +30 -0
- package/specs/pod.md +2 -0
- package/src/commands/skills/add.js +63 -7
- package/src/commands/skills/list.js +23 -52
- package/src/commands/skills/remove.js +26 -27
- package/src/commands/skills/resolve.js +155 -0
- package/src/commands/skills/update.js +58 -74
- package/src/skills/captcha/README.md +221 -0
- package/src/skills/captcha/SKILL.md +355 -0
- package/src/skills/captcha/references/captcha-types.md +254 -0
- package/src/skills/captcha/references/services.md +172 -0
- package/src/skills/captcha/references/stealth.md +238 -0
- package/src/skills/captcha/scripts/solve_captcha.py +323 -0
- package/src/skills/captcha/scripts/solve_image_grid.py +350 -0
- package/src/skills/google-merchant-api/SKILL.md +581 -0
- package/src/skills/google-merchant-api/references/accounts.md +247 -0
- package/src/skills/google-merchant-api/references/content-api-legacy.md +216 -0
- package/src/skills/google-merchant-api/references/datasources.md +233 -0
- package/src/skills/google-merchant-api/references/inventories.md +201 -0
- package/src/skills/google-merchant-api/references/migration.md +267 -0
- package/src/skills/google-merchant-api/references/products.md +316 -0
- package/src/skills/google-merchant-api/references/promotions.md +201 -0
- package/src/skills/google-merchant-api/references/reports.md +240 -0
- package/src/skills/lv-aggregators-api/SKILL.md +113 -0
- package/src/skills/lv-aggregators-api/references/integration-guide.md +368 -0
- package/src/skills/lv-aggregators-api/references/kurpirkt.md +103 -0
- package/src/skills/lv-aggregators-api/references/salidzini.md +122 -0
- package/src/skills/nest-best-practices/SKILL.md +251 -0
- package/src/skills/nest-best-practices/references/best-practices-request-lifecycle.md +158 -0
- package/src/skills/nest-best-practices/references/cli-monorepo.md +106 -0
- package/src/skills/nest-best-practices/references/cli-overview.md +157 -0
- package/src/skills/nest-best-practices/references/core-controllers.md +165 -0
- package/src/skills/nest-best-practices/references/core-dependency-injection.md +179 -0
- package/src/skills/nest-best-practices/references/core-middleware.md +139 -0
- package/src/skills/nest-best-practices/references/core-modules.md +138 -0
- package/src/skills/nest-best-practices/references/core-providers.md +188 -0
- package/src/skills/nest-best-practices/references/faq-raw-body-hybrid.md +122 -0
- package/src/skills/nest-best-practices/references/fundamentals-circular-dependency.md +89 -0
- package/src/skills/nest-best-practices/references/fundamentals-custom-decorators.md +107 -0
- package/src/skills/nest-best-practices/references/fundamentals-dynamic-modules.md +125 -0
- package/src/skills/nest-best-practices/references/fundamentals-exception-filters.md +202 -0
- package/src/skills/nest-best-practices/references/fundamentals-execution-context.md +107 -0
- package/src/skills/nest-best-practices/references/fundamentals-guards.md +136 -0
- package/src/skills/nest-best-practices/references/fundamentals-interceptors.md +187 -0
- package/src/skills/nest-best-practices/references/fundamentals-lazy-loading.md +89 -0
- package/src/skills/nest-best-practices/references/fundamentals-lifecycle-events.md +87 -0
- package/src/skills/nest-best-practices/references/fundamentals-module-reference.md +107 -0
- package/src/skills/nest-best-practices/references/fundamentals-pipes.md +197 -0
- package/src/skills/nest-best-practices/references/fundamentals-provider-scopes.md +92 -0
- package/src/skills/nest-best-practices/references/fundamentals-testing.md +142 -0
- package/src/skills/nest-best-practices/references/graphql-overview.md +233 -0
- package/src/skills/nest-best-practices/references/graphql-resolvers-mutations.md +199 -0
- package/src/skills/nest-best-practices/references/graphql-scalars-unions-enums.md +180 -0
- package/src/skills/nest-best-practices/references/graphql-subscriptions.md +228 -0
- package/src/skills/nest-best-practices/references/microservices-grpc.md +175 -0
- package/src/skills/nest-best-practices/references/microservices-overview.md +221 -0
- package/src/skills/nest-best-practices/references/microservices-transports.md +119 -0
- package/src/skills/nest-best-practices/references/openapi-swagger.md +207 -0
- package/src/skills/nest-best-practices/references/recipes-authentication.md +97 -0
- package/src/skills/nest-best-practices/references/recipes-cqrs.md +176 -0
- package/src/skills/nest-best-practices/references/recipes-crud-generator.md +87 -0
- package/src/skills/nest-best-practices/references/recipes-documentation.md +93 -0
- package/src/skills/nest-best-practices/references/recipes-mongoose.md +153 -0
- package/src/skills/nest-best-practices/references/recipes-prisma.md +98 -0
- package/src/skills/nest-best-practices/references/recipes-terminus.md +148 -0
- package/src/skills/nest-best-practices/references/recipes-typeorm.md +122 -0
- package/src/skills/nest-best-practices/references/security-authorization.md +196 -0
- package/src/skills/nest-best-practices/references/security-cors-helmet-rate-limiting.md +204 -0
- package/src/skills/nest-best-practices/references/security-encryption-hashing.md +93 -0
- package/src/skills/nest-best-practices/references/techniques-caching.md +142 -0
- package/src/skills/nest-best-practices/references/techniques-compression-streaming-sse.md +194 -0
- package/src/skills/nest-best-practices/references/techniques-configuration.md +132 -0
- package/src/skills/nest-best-practices/references/techniques-database.md +153 -0
- package/src/skills/nest-best-practices/references/techniques-events.md +163 -0
- package/src/skills/nest-best-practices/references/techniques-fastify.md +137 -0
- package/src/skills/nest-best-practices/references/techniques-file-upload.md +140 -0
- package/src/skills/nest-best-practices/references/techniques-http-module.md +176 -0
- package/src/skills/nest-best-practices/references/techniques-logging.md +146 -0
- package/src/skills/nest-best-practices/references/techniques-mvc-serve-static.md +132 -0
- package/src/skills/nest-best-practices/references/techniques-queues.md +162 -0
- package/src/skills/nest-best-practices/references/techniques-serialization.md +158 -0
- package/src/skills/nest-best-practices/references/techniques-sessions-cookies.md +167 -0
- package/src/skills/nest-best-practices/references/techniques-task-scheduling.md +166 -0
- package/src/skills/nest-best-practices/references/techniques-validation.md +126 -0
- package/src/skills/nest-best-practices/references/techniques-versioning.md +153 -0
- package/src/skills/nest-best-practices/references/websockets-advanced.md +96 -0
- package/src/skills/nest-best-practices/references/websockets-gateways.md +215 -0
- package/src/skills/tailwindcss-best-practices/SKILL.md +180 -0
- package/src/skills/tailwindcss-best-practices/references/best-practices-utility-patterns.md +87 -0
- package/src/skills/tailwindcss-best-practices/references/core-installation.md +109 -0
- package/src/skills/tailwindcss-best-practices/references/core-preflight.md +200 -0
- package/src/skills/tailwindcss-best-practices/references/core-responsive.md +163 -0
- package/src/skills/tailwindcss-best-practices/references/core-source-detection.md +114 -0
- package/src/skills/tailwindcss-best-practices/references/core-theme.md +108 -0
- package/src/skills/tailwindcss-best-practices/references/core-utility-classes.md +59 -0
- package/src/skills/tailwindcss-best-practices/references/core-variants.md +204 -0
- package/src/skills/tailwindcss-best-practices/references/effects-form-controls.md +76 -0
- package/src/skills/tailwindcss-best-practices/references/effects-mask.md +91 -0
- package/src/skills/tailwindcss-best-practices/references/effects-scroll-snap.md +59 -0
- package/src/skills/tailwindcss-best-practices/references/effects-text-shadow.md +78 -0
- package/src/skills/tailwindcss-best-practices/references/effects-transition-animation.md +80 -0
- package/src/skills/tailwindcss-best-practices/references/effects-visibility-interactivity.md +82 -0
- package/src/skills/tailwindcss-best-practices/references/features-content-detection.md +175 -0
- package/src/skills/tailwindcss-best-practices/references/features-custom-styles.md +203 -0
- package/src/skills/tailwindcss-best-practices/references/features-dark-mode.md +137 -0
- package/src/skills/tailwindcss-best-practices/references/features-functions-directives.md +241 -0
- package/src/skills/tailwindcss-best-practices/references/features-upgrade.md +160 -0
- package/src/skills/tailwindcss-best-practices/references/layout-aspect-ratio.md +39 -0
- package/src/skills/tailwindcss-best-practices/references/layout-columns.md +80 -0
- package/src/skills/tailwindcss-best-practices/references/layout-display.md +110 -0
- package/src/skills/tailwindcss-best-practices/references/layout-flexbox.md +112 -0
- package/src/skills/tailwindcss-best-practices/references/layout-grid.md +87 -0
- package/src/skills/tailwindcss-best-practices/references/layout-height.md +97 -0
- package/src/skills/tailwindcss-best-practices/references/layout-inset.md +103 -0
- package/src/skills/tailwindcss-best-practices/references/layout-logical-properties.md +92 -0
- package/src/skills/tailwindcss-best-practices/references/layout-margin.md +126 -0
- package/src/skills/tailwindcss-best-practices/references/layout-min-max-sizing.md +63 -0
- package/src/skills/tailwindcss-best-practices/references/layout-object-fit-position.md +64 -0
- package/src/skills/tailwindcss-best-practices/references/layout-overflow.md +57 -0
- package/src/skills/tailwindcss-best-practices/references/layout-padding.md +77 -0
- package/src/skills/tailwindcss-best-practices/references/layout-position.md +85 -0
- package/src/skills/tailwindcss-best-practices/references/layout-tables.md +67 -0
- package/src/skills/tailwindcss-best-practices/references/layout-width.md +102 -0
- package/src/skills/tailwindcss-best-practices/references/transform-base.md +68 -0
- package/src/skills/tailwindcss-best-practices/references/transform-rotate.md +70 -0
- package/src/skills/tailwindcss-best-practices/references/transform-scale.md +83 -0
- package/src/skills/tailwindcss-best-practices/references/transform-skew.md +62 -0
- package/src/skills/tailwindcss-best-practices/references/transform-translate.md +77 -0
- package/src/skills/tailwindcss-best-practices/references/typography-font-text.md +142 -0
- package/src/skills/tailwindcss-best-practices/references/typography-list-style.md +65 -0
- package/src/skills/tailwindcss-best-practices/references/typography-text-align.md +60 -0
- package/src/skills/tailwindcss-best-practices/references/visual-background.md +76 -0
- package/src/skills/tailwindcss-best-practices/references/visual-border.md +108 -0
- package/src/skills/tailwindcss-best-practices/references/visual-effects.md +111 -0
- package/src/skills/tailwindcss-best-practices/references/visual-svg.md +82 -0
- package/src/skills/test-mobile-app/SKILL.md +11 -6
- package/src/skills/test-mobile-app/scripts/analyze_apk.py +15 -4
- package/src/skills/test-mobile-app/scripts/check_environment.py +5 -5
- package/src/skills/test-mobile-app/scripts/run_tests.py +1 -1
- package/src/skills/test-web-ui/SKILL.md +264 -84
- package/src/skills/test-web-ui/scripts/discover.py +25 -12
- package/src/skills/test-web-ui/scripts/run_tests.py +3 -2
- package/src/skills/typescript-expert/SKILL.md +145 -0
- package/src/skills/typescript-expert/commands/typescript-fix.md +65 -0
- package/src/skills/typescript-expert/references/advanced-conditional-types.md +190 -0
- package/src/skills/typescript-expert/references/advanced-decorators.md +243 -0
- package/src/skills/typescript-expert/references/advanced-mapped-types.md +223 -0
- package/src/skills/typescript-expert/references/advanced-template-literals.md +209 -0
- package/src/skills/typescript-expert/references/advanced-type-guards.md +308 -0
- package/src/skills/typescript-expert/references/best-practices-patterns.md +313 -0
- package/src/skills/typescript-expert/references/best-practices-performance.md +185 -0
- package/src/skills/typescript-expert/references/best-practices-tsconfig.md +242 -0
- package/src/skills/typescript-expert/references/core-generics.md +246 -0
- package/src/skills/typescript-expert/references/core-interfaces-types.md +231 -0
- package/src/skills/typescript-expert/references/core-type-system.md +261 -0
- package/src/skills/typescript-expert/references/core-utility-types.md +235 -0
- package/src/skills/typescript-expert/references/features-ts5x.md +370 -0
- package/src/skills/vite-best-practices/SKILL.md +115 -0
- package/src/skills/vite-best-practices/references/build-and-ssr.md +255 -0
- package/src/skills/vite-best-practices/references/core-config.md +231 -0
- package/src/skills/vite-best-practices/references/core-features.md +222 -0
- package/src/skills/vite-best-practices/references/core-plugin-api.md +294 -0
- package/src/skills/vite-best-practices/references/environment-api.md +108 -0
- package/src/skills/vite-best-practices/references/rolldown-migration.md +242 -0
- package/codex-cli-workspace/iteration-1/benchmark.json +0 -122
- package/codex-cli-workspace/iteration-1/eval-1-ci-integration/eval_metadata.json +0 -13
- package/codex-cli-workspace/iteration-1/eval-1-ci-integration/with_skill/grading.json +0 -52
- package/codex-cli-workspace/iteration-1/eval-1-ci-integration/with_skill/outputs/response.md +0 -163
- package/codex-cli-workspace/iteration-1/eval-1-ci-integration/with_skill/timing.json +0 -5
- package/codex-cli-workspace/iteration-1/eval-1-ci-integration/without_skill/grading.json +0 -58
- package/codex-cli-workspace/iteration-1/eval-1-ci-integration/without_skill/outputs/response.md +0 -151
- package/codex-cli-workspace/iteration-1/eval-1-ci-integration/without_skill/timing.json +0 -5
- package/codex-cli-workspace/iteration-1/eval-2-mcp-server-config/eval_metadata.json +0 -13
- package/codex-cli-workspace/iteration-1/eval-2-mcp-server-config/with_skill/grading.json +0 -52
- package/codex-cli-workspace/iteration-1/eval-2-mcp-server-config/with_skill/outputs/response.md +0 -86
- package/codex-cli-workspace/iteration-1/eval-2-mcp-server-config/with_skill/timing.json +0 -5
- package/codex-cli-workspace/iteration-1/eval-2-mcp-server-config/without_skill/grading.json +0 -58
- package/codex-cli-workspace/iteration-1/eval-2-mcp-server-config/without_skill/outputs/response.md +0 -164
- package/codex-cli-workspace/iteration-1/eval-2-mcp-server-config/without_skill/timing.json +0 -5
- package/codex-cli-workspace/iteration-1/eval-3-profiles-troubleshooting/eval_metadata.json +0 -13
- package/codex-cli-workspace/iteration-1/eval-3-profiles-troubleshooting/with_skill/grading.json +0 -52
- package/codex-cli-workspace/iteration-1/eval-3-profiles-troubleshooting/with_skill/outputs/response.md +0 -130
- package/codex-cli-workspace/iteration-1/eval-3-profiles-troubleshooting/with_skill/timing.json +0 -5
- package/codex-cli-workspace/iteration-1/eval-3-profiles-troubleshooting/without_skill/grading.json +0 -64
- package/codex-cli-workspace/iteration-1/eval-3-profiles-troubleshooting/without_skill/outputs/response.md +0 -209
- package/codex-cli-workspace/iteration-1/eval-3-profiles-troubleshooting/without_skill/timing.json +0 -5
- package/codex-cli-workspace/iteration-1/review.html +0 -1325
- package/gemini-cli-workspace/iteration-1/benchmark.json +0 -86
- package/gemini-cli-workspace/iteration-1/eval-1-cicd-setup/eval_metadata.json +0 -37
- package/gemini-cli-workspace/iteration-1/eval-1-cicd-setup/with_skill/grading.json +0 -37
- package/gemini-cli-workspace/iteration-1/eval-1-cicd-setup/with_skill/outputs/response.md +0 -401
- package/gemini-cli-workspace/iteration-1/eval-1-cicd-setup/with_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-1/eval-1-cicd-setup/without_skill/grading.json +0 -37
- package/gemini-cli-workspace/iteration-1/eval-1-cicd-setup/without_skill/outputs/response.md +0 -405
- package/gemini-cli-workspace/iteration-1/eval-1-cicd-setup/without_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-1/eval-2-mcp-server-config/eval_metadata.json +0 -37
- package/gemini-cli-workspace/iteration-1/eval-2-mcp-server-config/with_skill/grading.json +0 -37
- package/gemini-cli-workspace/iteration-1/eval-2-mcp-server-config/with_skill/outputs/response.md +0 -212
- package/gemini-cli-workspace/iteration-1/eval-2-mcp-server-config/with_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-1/eval-2-mcp-server-config/without_skill/grading.json +0 -37
- package/gemini-cli-workspace/iteration-1/eval-2-mcp-server-config/without_skill/outputs/response.md +0 -427
- package/gemini-cli-workspace/iteration-1/eval-2-mcp-server-config/without_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-1/eval-3-custom-slash-command/eval_metadata.json +0 -32
- package/gemini-cli-workspace/iteration-1/eval-3-custom-slash-command/with_skill/grading.json +0 -32
- package/gemini-cli-workspace/iteration-1/eval-3-custom-slash-command/with_skill/outputs/response.md +0 -171
- package/gemini-cli-workspace/iteration-1/eval-3-custom-slash-command/with_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-1/eval-3-custom-slash-command/without_skill/grading.json +0 -32
- package/gemini-cli-workspace/iteration-1/eval-3-custom-slash-command/without_skill/outputs/response.md +0 -199
- package/gemini-cli-workspace/iteration-1/eval-3-custom-slash-command/without_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-1/review.html +0 -1325
- package/gemini-cli-workspace/iteration-2/benchmark.json +0 -173
- package/gemini-cli-workspace/iteration-2/benchmark.md +0 -28
- package/gemini-cli-workspace/iteration-2/eval-1-cicd-setup/eval_metadata.json +0 -37
- package/gemini-cli-workspace/iteration-2/eval-1-cicd-setup/with_skill/grading.json +0 -37
- package/gemini-cli-workspace/iteration-2/eval-1-cicd-setup/with_skill/outputs/response.md +0 -195
- package/gemini-cli-workspace/iteration-2/eval-1-cicd-setup/with_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-2/eval-1-cicd-setup/without_skill/grading.json +0 -37
- package/gemini-cli-workspace/iteration-2/eval-1-cicd-setup/without_skill/outputs/response.md +0 -377
- package/gemini-cli-workspace/iteration-2/eval-1-cicd-setup/without_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-2/eval-2-mcp-server-config/eval_metadata.json +0 -37
- package/gemini-cli-workspace/iteration-2/eval-2-mcp-server-config/with_skill/grading.json +0 -37
- package/gemini-cli-workspace/iteration-2/eval-2-mcp-server-config/with_skill/outputs/response.md +0 -127
- package/gemini-cli-workspace/iteration-2/eval-2-mcp-server-config/with_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-2/eval-2-mcp-server-config/without_skill/grading.json +0 -37
- package/gemini-cli-workspace/iteration-2/eval-2-mcp-server-config/without_skill/outputs/response.md +0 -164
- package/gemini-cli-workspace/iteration-2/eval-2-mcp-server-config/without_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-2/eval-3-custom-slash-command/eval_metadata.json +0 -32
- package/gemini-cli-workspace/iteration-2/eval-3-custom-slash-command/with_skill/grading.json +0 -32
- package/gemini-cli-workspace/iteration-2/eval-3-custom-slash-command/with_skill/outputs/response.md +0 -91
- package/gemini-cli-workspace/iteration-2/eval-3-custom-slash-command/with_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-2/eval-3-custom-slash-command/without_skill/grading.json +0 -32
- package/gemini-cli-workspace/iteration-2/eval-3-custom-slash-command/without_skill/outputs/response.md +0 -112
- package/gemini-cli-workspace/iteration-2/eval-3-custom-slash-command/without_skill/timing.json +0 -5
- package/gemini-cli-workspace/iteration-2/eval-viewer.html +0 -1325
- package/screen-recording-workspace/evals.json +0 -41
- package/screen-recording-workspace/iteration-1/benchmark.json +0 -102
- package/screen-recording-workspace/iteration-1/eval-0-fullscreen/eval_metadata.json +0 -31
- package/screen-recording-workspace/iteration-1/eval-0-fullscreen/with_skill/grading.json +0 -11
- package/screen-recording-workspace/iteration-1/eval-0-fullscreen/with_skill/outputs/demo.mp4 +0 -0
- package/screen-recording-workspace/iteration-1/eval-0-fullscreen/with_skill/timing.json +0 -5
- package/screen-recording-workspace/iteration-1/eval-0-fullscreen/without_skill/grading.json +0 -11
- package/screen-recording-workspace/iteration-1/eval-0-fullscreen/without_skill/outputs/demo.mp4 +0 -0
- package/screen-recording-workspace/iteration-1/eval-0-fullscreen/without_skill/timing.json +0 -5
- package/screen-recording-workspace/iteration-1/eval-1-region-audio/eval_metadata.json +0 -31
- package/screen-recording-workspace/iteration-1/eval-1-region-audio/with_skill/grading.json +0 -11
- package/screen-recording-workspace/iteration-1/eval-1-region-audio/with_skill/outputs/region_capture.mp4 +0 -0
- package/screen-recording-workspace/iteration-1/eval-1-region-audio/with_skill/timing.json +0 -5
- package/screen-recording-workspace/iteration-1/eval-1-region-audio/without_skill/grading.json +0 -11
- package/screen-recording-workspace/iteration-1/eval-1-region-audio/without_skill/outputs/region_capture.mp4 +0 -0
- package/screen-recording-workspace/iteration-1/eval-1-region-audio/without_skill/timing.json +0 -5
- package/screen-recording-workspace/iteration-1/eval-2-python-fallback/eval_metadata.json +0 -31
- package/screen-recording-workspace/iteration-1/eval-2-python-fallback/with_skill/grading.json +0 -11
- package/screen-recording-workspace/iteration-1/eval-2-python-fallback/with_skill/outputs/fallback_recording.mp4 +0 -0
- package/screen-recording-workspace/iteration-1/eval-2-python-fallback/with_skill/timing.json +0 -5
- package/screen-recording-workspace/iteration-1/eval-2-python-fallback/without_skill/grading.json +0 -11
- package/screen-recording-workspace/iteration-1/eval-2-python-fallback/without_skill/outputs/fallback_recording.mp4 +0 -0
- package/screen-recording-workspace/iteration-1/eval-2-python-fallback/without_skill/outputs/record_screen.py +0 -67
- package/screen-recording-workspace/iteration-1/eval-2-python-fallback/without_skill/timing.json +0 -5
- package/screen-recording-workspace/iteration-1/review.html +0 -1325
- package/src/skills/codex-cli/evals/evals.json +0 -47
- package/src/skills/gemini-cli/evals/evals.json +0 -46
- package/src/skills/tm-search/evals/evals.json +0 -23
package/registry/registry.json
CHANGED
|
@@ -1,244 +1,334 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "./schema.json",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"updated": "2026-03-
|
|
5
|
-
"plugins": [
|
|
6
|
-
{
|
|
7
|
-
"name": "code-optimizer",
|
|
8
|
-
"version": "1.0.0",
|
|
9
|
-
"description": "Pragmatic code optimization plugin that finds duplicates, extracts constants, and suggests concise solutions without over-engineering",
|
|
10
|
-
"author": {
|
|
11
|
-
"name": "biggora",
|
|
12
|
-
"url": "https://github.com/biggora"
|
|
13
|
-
},
|
|
14
|
-
"repository": "https://github.com/biggora/code-optimizer",
|
|
15
|
-
"keywords": ["optimization", "refactoring", "duplicates", "constants", "code-quality"],
|
|
16
|
-
"license": "MIT",
|
|
17
|
-
"commands": ["/optimize", "/optimize-project"],
|
|
18
|
-
"category": "code-quality"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"name": "github-issues-solver",
|
|
22
|
-
"version": "1.0.0",
|
|
23
|
-
"description": "Analyze, investigate, and fix GitHub issues with AI assistance. Full workflow from issue to PR.",
|
|
24
|
-
"author": {
|
|
25
|
-
"name": "biggora",
|
|
26
|
-
"url": "https://github.com/biggora"
|
|
27
|
-
},
|
|
28
|
-
"repository": "https://github.com/biggora/github-issues-solver",
|
|
29
|
-
"keywords": ["github", "issues", "bug-fix", "automation", "workflow"],
|
|
30
|
-
"license": "MIT",
|
|
31
|
-
"commands": ["/gh-solve-issue", "/gh-list-issues"],
|
|
32
|
-
"category": "workflow"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"name": "typescript-eslint-fixer",
|
|
36
|
-
"version": "1.0.0",
|
|
37
|
-
"description": "Automatically detect and fix TypeScript type errors and ESLint violations in TypeScript/JavaScript projects",
|
|
38
|
-
"author": {
|
|
39
|
-
"name": "biggora",
|
|
40
|
-
"url": "https://github.com/biggora"
|
|
41
|
-
},
|
|
42
|
-
"repository": "https://github.com/biggora/typescript-eslint-fixer",
|
|
43
|
-
"keywords": ["typescript", "eslint", "linting", "code-quality", "auto-fix"],
|
|
44
|
-
"license": "MIT",
|
|
45
|
-
"commands": ["/fix-typescript-eslint"],
|
|
46
|
-
"category": "code-quality"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"name": "
|
|
50
|
-
"version": "1.0.0",
|
|
51
|
-
"description": "
|
|
52
|
-
"author": {
|
|
53
|
-
"name": "biggora",
|
|
54
|
-
"url": "https://github.com/biggora"
|
|
55
|
-
},
|
|
56
|
-
"repository": "https://github.com/biggora/
|
|
57
|
-
"keywords": ["
|
|
58
|
-
"license": "MIT",
|
|
59
|
-
"commands": [],
|
|
60
|
-
"category": "
|
|
61
|
-
"type": "skill"
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"name": "
|
|
65
|
-
"version": "1.0.0",
|
|
66
|
-
"description": "
|
|
67
|
-
"author": {
|
|
68
|
-
"name": "biggora",
|
|
69
|
-
"url": "https://github.com/biggora"
|
|
70
|
-
},
|
|
71
|
-
"repository": "https://github.com/biggora/
|
|
72
|
-
"keywords": ["
|
|
73
|
-
"license": "MIT",
|
|
74
|
-
"commands": [],
|
|
75
|
-
"category": "
|
|
76
|
-
"type": "skill"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"name": "
|
|
80
|
-
"version": "1.0.0",
|
|
81
|
-
"description": "
|
|
82
|
-
"author": {
|
|
83
|
-
"name": "biggora",
|
|
84
|
-
"url": "https://github.com/biggora"
|
|
85
|
-
},
|
|
86
|
-
"repository": "https://github.com/biggora/
|
|
87
|
-
"keywords": ["
|
|
88
|
-
"license": "MIT",
|
|
89
|
-
"commands": [],
|
|
90
|
-
"category": "
|
|
91
|
-
"type": "skill"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"name": "
|
|
95
|
-
"version": "1.0.0",
|
|
96
|
-
"description": "
|
|
97
|
-
"author": {
|
|
98
|
-
"name": "biggora",
|
|
99
|
-
"url": "https://github.com/biggora"
|
|
100
|
-
},
|
|
101
|
-
"repository": "https://github.com/biggora/
|
|
102
|
-
"keywords": ["
|
|
103
|
-
"license": "MIT",
|
|
104
|
-
"commands": [],
|
|
105
|
-
"category": "
|
|
106
|
-
"type": "skill"
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
"name": "
|
|
110
|
-
"version": "1.0.0",
|
|
111
|
-
"description": "
|
|
112
|
-
"author": {
|
|
113
|
-
"name": "biggora",
|
|
114
|
-
"url": "https://github.com/biggora"
|
|
115
|
-
},
|
|
116
|
-
"repository": "https://github.com/biggora/
|
|
117
|
-
"keywords": ["
|
|
118
|
-
"license": "MIT",
|
|
119
|
-
"commands": [],
|
|
120
|
-
"category": "workflow",
|
|
121
|
-
"type": "skill"
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"name": "notebook-lm",
|
|
125
|
-
"version": "1.0.0",
|
|
126
|
-
"description": "Automate Google NotebookLM — create notebooks, add sources, chat, generate audio/video overviews, quizzes, reports, and mind maps",
|
|
127
|
-
"author": {
|
|
128
|
-
"name": "biggora",
|
|
129
|
-
"url": "https://github.com/biggora"
|
|
130
|
-
},
|
|
131
|
-
"repository": "https://github.com/biggora/
|
|
132
|
-
"keywords": ["notebooklm", "google", "research", "podcast", "audio", "automation"],
|
|
133
|
-
"license": "MIT",
|
|
134
|
-
"commands": [],
|
|
135
|
-
"category": "workflow",
|
|
136
|
-
"type": "skill"
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
"name": "
|
|
140
|
-
"version": "1.0.0",
|
|
141
|
-
"description": "
|
|
142
|
-
"author": {
|
|
143
|
-
"name": "biggora",
|
|
144
|
-
"url": "https://github.com/biggora"
|
|
145
|
-
},
|
|
146
|
-
"repository": "https://github.com/biggora/
|
|
147
|
-
"keywords": ["
|
|
148
|
-
"license": "MIT",
|
|
149
|
-
"commands": [],
|
|
150
|
-
"category": "
|
|
151
|
-
"type": "skill"
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"name": "
|
|
155
|
-
"version": "1.0.0",
|
|
156
|
-
"description": "
|
|
157
|
-
"author": {
|
|
158
|
-
"name": "biggora",
|
|
159
|
-
"url": "https://github.com/biggora"
|
|
160
|
-
},
|
|
161
|
-
"repository": "https://github.com/biggora/
|
|
162
|
-
"keywords": ["
|
|
163
|
-
"license": "MIT",
|
|
164
|
-
"commands": [],
|
|
165
|
-
"category": "
|
|
166
|
-
"type": "skill"
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"name": "
|
|
170
|
-
"version": "1.0.0",
|
|
171
|
-
"description": "
|
|
172
|
-
"author": {
|
|
173
|
-
"name": "biggora",
|
|
174
|
-
"url": "https://github.com/biggora"
|
|
175
|
-
},
|
|
176
|
-
"repository": "https://github.com/biggora/
|
|
177
|
-
"keywords": ["
|
|
178
|
-
"license": "MIT",
|
|
179
|
-
"commands": [],
|
|
180
|
-
"category": "
|
|
181
|
-
"type": "skill"
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"name": "
|
|
185
|
-
"version": "1.0.0",
|
|
186
|
-
"description": "
|
|
187
|
-
"author": {
|
|
188
|
-
"name": "biggora",
|
|
189
|
-
"url": "https://github.com/biggora"
|
|
190
|
-
},
|
|
191
|
-
"repository": "https://github.com/biggora/
|
|
192
|
-
"keywords": ["
|
|
193
|
-
"license": "MIT",
|
|
194
|
-
"commands": [],
|
|
195
|
-
"category": "
|
|
196
|
-
"type": "skill"
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
"name": "
|
|
200
|
-
"version": "1.0.0",
|
|
201
|
-
"description": "
|
|
202
|
-
"author": {
|
|
203
|
-
"name": "biggora",
|
|
204
|
-
"url": "https://github.com/biggora"
|
|
205
|
-
},
|
|
206
|
-
"repository": "https://github.com/biggora/
|
|
207
|
-
"keywords": ["
|
|
208
|
-
"license": "MIT",
|
|
209
|
-
"commands": [],
|
|
210
|
-
"category": "
|
|
211
|
-
"type": "skill"
|
|
212
|
-
},
|
|
213
|
-
{
|
|
214
|
-
"name": "
|
|
215
|
-
"version": "1.0.0",
|
|
216
|
-
"description": "
|
|
217
|
-
"author": {
|
|
218
|
-
"name": "biggora",
|
|
219
|
-
"url": "https://github.com/biggora"
|
|
220
|
-
},
|
|
221
|
-
"repository": "https://github.com/biggora/
|
|
222
|
-
"keywords": ["
|
|
223
|
-
"license": "MIT",
|
|
224
|
-
"commands": [],
|
|
225
|
-
"category": "workflow",
|
|
226
|
-
"type": "skill"
|
|
227
|
-
},
|
|
228
|
-
{
|
|
229
|
-
"name": "
|
|
230
|
-
"version": "1.0.0",
|
|
231
|
-
"description": "
|
|
232
|
-
"author": {
|
|
233
|
-
"name": "biggora",
|
|
234
|
-
"url": "https://github.com/biggora"
|
|
235
|
-
},
|
|
236
|
-
"repository": "https://github.com/biggora/
|
|
237
|
-
"keywords": ["
|
|
238
|
-
"license": "MIT",
|
|
239
|
-
"commands": [],
|
|
240
|
-
"category": "workflow",
|
|
241
|
-
"type": "skill"
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./schema.json",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"updated": "2026-03-28",
|
|
5
|
+
"plugins": [
|
|
6
|
+
{
|
|
7
|
+
"name": "code-optimizer",
|
|
8
|
+
"version": "1.0.0",
|
|
9
|
+
"description": "Pragmatic code optimization plugin that finds duplicates, extracts constants, and suggests concise solutions without over-engineering",
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "biggora",
|
|
12
|
+
"url": "https://github.com/biggora"
|
|
13
|
+
},
|
|
14
|
+
"repository": "https://github.com/biggora/code-optimizer",
|
|
15
|
+
"keywords": ["optimization", "refactoring", "duplicates", "constants", "code-quality"],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"commands": ["/optimize", "/optimize-project"],
|
|
18
|
+
"category": "code-quality"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"name": "github-issues-solver",
|
|
22
|
+
"version": "1.0.0",
|
|
23
|
+
"description": "Analyze, investigate, and fix GitHub issues with AI assistance. Full workflow from issue to PR.",
|
|
24
|
+
"author": {
|
|
25
|
+
"name": "biggora",
|
|
26
|
+
"url": "https://github.com/biggora"
|
|
27
|
+
},
|
|
28
|
+
"repository": "https://github.com/biggora/github-issues-solver",
|
|
29
|
+
"keywords": ["github", "issues", "bug-fix", "automation", "workflow"],
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"commands": ["/gh-solve-issue", "/gh-list-issues"],
|
|
32
|
+
"category": "workflow"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"name": "typescript-eslint-fixer",
|
|
36
|
+
"version": "1.0.0",
|
|
37
|
+
"description": "Automatically detect and fix TypeScript type errors and ESLint violations in TypeScript/JavaScript projects",
|
|
38
|
+
"author": {
|
|
39
|
+
"name": "biggora",
|
|
40
|
+
"url": "https://github.com/biggora"
|
|
41
|
+
},
|
|
42
|
+
"repository": "https://github.com/biggora/typescript-eslint-fixer",
|
|
43
|
+
"keywords": ["typescript", "eslint", "linting", "code-quality", "auto-fix"],
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"commands": ["/fix-typescript-eslint"],
|
|
46
|
+
"category": "code-quality"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "captcha",
|
|
50
|
+
"version": "1.0.0",
|
|
51
|
+
"description": "Solve CAPTCHAs in automated browser sessions — reCAPTCHA v2/v3, hCaptcha, Cloudflare Turnstile via third-party services (2captcha, CapMonster), and image grid challenges via Claude/GPT-4V vision AI",
|
|
52
|
+
"author": {
|
|
53
|
+
"name": "biggora",
|
|
54
|
+
"url": "https://github.com/biggora"
|
|
55
|
+
},
|
|
56
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
57
|
+
"keywords": ["captcha", "recaptcha", "hcaptcha", "turnstile", "playwright", "automation", "web-scraping"],
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"commands": [],
|
|
60
|
+
"category": "automation",
|
|
61
|
+
"type": "skill"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "codex-cli",
|
|
65
|
+
"version": "1.0.0",
|
|
66
|
+
"description": "Install, configure, and automate tasks using OpenAI Codex CLI — approval modes, sandbox policies, MCP servers, and CI integration",
|
|
67
|
+
"author": {
|
|
68
|
+
"name": "biggora",
|
|
69
|
+
"url": "https://github.com/biggora"
|
|
70
|
+
},
|
|
71
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
72
|
+
"keywords": ["openai", "codex", "cli", "automation", "ci-cd", "agent"],
|
|
73
|
+
"license": "MIT",
|
|
74
|
+
"commands": [],
|
|
75
|
+
"category": "devops",
|
|
76
|
+
"type": "skill"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "commafeed-api",
|
|
80
|
+
"version": "1.0.0",
|
|
81
|
+
"description": "Interact with CommaFeed RSS reader via REST API — subscribe, unsubscribe, read, star, tag entries, manage categories, import/export OPML, and manage user settings",
|
|
82
|
+
"author": {
|
|
83
|
+
"name": "biggora",
|
|
84
|
+
"url": "https://github.com/biggora"
|
|
85
|
+
},
|
|
86
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
87
|
+
"keywords": ["rss", "commaFeed", "feed-reader", "opml", "rest-api", "automation"],
|
|
88
|
+
"license": "MIT",
|
|
89
|
+
"commands": [],
|
|
90
|
+
"category": "workflow",
|
|
91
|
+
"type": "skill"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "gemini-cli",
|
|
95
|
+
"version": "1.0.0",
|
|
96
|
+
"description": "Install, configure, and script with Gemini CLI — headless prompts, MCP servers, custom slash commands, extensions, and CI automation",
|
|
97
|
+
"author": {
|
|
98
|
+
"name": "biggora",
|
|
99
|
+
"url": "https://github.com/biggora"
|
|
100
|
+
},
|
|
101
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
102
|
+
"keywords": ["gemini", "google", "cli", "automation", "mcp", "scripting"],
|
|
103
|
+
"license": "MIT",
|
|
104
|
+
"commands": [],
|
|
105
|
+
"category": "devops",
|
|
106
|
+
"type": "skill"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "n8n-api",
|
|
110
|
+
"version": "1.0.0",
|
|
111
|
+
"description": "Interact with n8n automation platform via REST API — manage workflows, executions, credentials, tags, variables, users, and audit logs",
|
|
112
|
+
"author": {
|
|
113
|
+
"name": "biggora",
|
|
114
|
+
"url": "https://github.com/biggora"
|
|
115
|
+
},
|
|
116
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
117
|
+
"keywords": ["n8n", "automation", "workflows", "rest-api", "low-code", "integration"],
|
|
118
|
+
"license": "MIT",
|
|
119
|
+
"commands": [],
|
|
120
|
+
"category": "workflow",
|
|
121
|
+
"type": "skill"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "notebook-lm",
|
|
125
|
+
"version": "1.0.0",
|
|
126
|
+
"description": "Automate Google NotebookLM — create notebooks, add sources, chat, generate audio/video overviews, quizzes, reports, and mind maps",
|
|
127
|
+
"author": {
|
|
128
|
+
"name": "biggora",
|
|
129
|
+
"url": "https://github.com/biggora"
|
|
130
|
+
},
|
|
131
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
132
|
+
"keywords": ["notebooklm", "google", "research", "podcast", "audio", "automation"],
|
|
133
|
+
"license": "MIT",
|
|
134
|
+
"commands": [],
|
|
135
|
+
"category": "workflow",
|
|
136
|
+
"type": "skill"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"name": "screen-recording",
|
|
140
|
+
"version": "1.0.0",
|
|
141
|
+
"description": "Autonomous video creation skill — product demos, presentation videos, UI walkthroughs, and narrated screencasts via Pillow, MoviePy, and pyttsx3",
|
|
142
|
+
"author": {
|
|
143
|
+
"name": "biggora",
|
|
144
|
+
"url": "https://github.com/biggora"
|
|
145
|
+
},
|
|
146
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
147
|
+
"keywords": ["video", "screencast", "demo", "recording", "narration", "moviepy"],
|
|
148
|
+
"license": "MIT",
|
|
149
|
+
"commands": [],
|
|
150
|
+
"category": "other",
|
|
151
|
+
"type": "skill"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"name": "test-mobile-app",
|
|
155
|
+
"version": "1.0.0",
|
|
156
|
+
"description": "Automated mobile app testing — analyzes APK/source, generates use cases, runs Appium tests on emulator, and produces QA reports",
|
|
157
|
+
"author": {
|
|
158
|
+
"name": "biggora",
|
|
159
|
+
"url": "https://github.com/biggora"
|
|
160
|
+
},
|
|
161
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
162
|
+
"keywords": ["mobile", "appium", "android", "qa", "testing", "automation"],
|
|
163
|
+
"license": "MIT",
|
|
164
|
+
"commands": [],
|
|
165
|
+
"category": "testing",
|
|
166
|
+
"type": "skill"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "test-web-ui",
|
|
170
|
+
"version": "1.0.0",
|
|
171
|
+
"description": "Automated web QA — discovers site structure, generates use cases and test plans, runs Playwright tests, and produces HTML reports",
|
|
172
|
+
"author": {
|
|
173
|
+
"name": "biggora",
|
|
174
|
+
"url": "https://github.com/biggora"
|
|
175
|
+
},
|
|
176
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
177
|
+
"keywords": ["qa", "playwright", "web-testing", "automation", "test-report", "e2e"],
|
|
178
|
+
"license": "MIT",
|
|
179
|
+
"commands": [],
|
|
180
|
+
"category": "testing",
|
|
181
|
+
"type": "skill"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "text-to-speech",
|
|
185
|
+
"version": "1.0.0",
|
|
186
|
+
"description": "Converts text to speech audio files autonomously using pyttsx3, espeak-ng, Kokoro ONNX, or cloud TTS engines with multilingual support",
|
|
187
|
+
"author": {
|
|
188
|
+
"name": "biggora",
|
|
189
|
+
"url": "https://github.com/biggora"
|
|
190
|
+
},
|
|
191
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
192
|
+
"keywords": ["tts", "audio", "narration", "speech", "espeak", "voiceover"],
|
|
193
|
+
"license": "MIT",
|
|
194
|
+
"commands": [],
|
|
195
|
+
"category": "other",
|
|
196
|
+
"type": "skill"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "tm-search",
|
|
200
|
+
"version": "1.0.0",
|
|
201
|
+
"description": "Search, validate, and check availability of US trademarks via USPTO APIs — keyword search, batch validation, and status lookup",
|
|
202
|
+
"author": {
|
|
203
|
+
"name": "biggora",
|
|
204
|
+
"url": "https://github.com/biggora"
|
|
205
|
+
},
|
|
206
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
207
|
+
"keywords": ["trademark", "uspto", "brand", "search", "validation", "legal"],
|
|
208
|
+
"license": "MIT",
|
|
209
|
+
"commands": [],
|
|
210
|
+
"category": "workflow",
|
|
211
|
+
"type": "skill"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "wp-rest-api",
|
|
215
|
+
"version": "1.0.0",
|
|
216
|
+
"description": "Build, extend, and debug WordPress REST API endpoints — routes, controllers, schema validation, authentication, and custom fields",
|
|
217
|
+
"author": {
|
|
218
|
+
"name": "biggora",
|
|
219
|
+
"url": "https://github.com/biggora"
|
|
220
|
+
},
|
|
221
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
222
|
+
"keywords": ["wordpress", "rest-api", "php", "endpoints", "wp-cli", "custom-post-types"],
|
|
223
|
+
"license": "MIT",
|
|
224
|
+
"commands": [],
|
|
225
|
+
"category": "workflow",
|
|
226
|
+
"type": "skill"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "youtube-search",
|
|
230
|
+
"version": "1.0.0",
|
|
231
|
+
"description": "Search YouTube for videos, channels, playlists and extract metadata, transcripts, and analytics via multiple API methods",
|
|
232
|
+
"author": {
|
|
233
|
+
"name": "biggora",
|
|
234
|
+
"url": "https://github.com/biggora"
|
|
235
|
+
},
|
|
236
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
237
|
+
"keywords": ["youtube", "search", "video", "metadata", "transcript", "analytics"],
|
|
238
|
+
"license": "MIT",
|
|
239
|
+
"commands": [],
|
|
240
|
+
"category": "workflow",
|
|
241
|
+
"type": "skill"
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"name": "youtube-thumbnail",
|
|
245
|
+
"version": "1.0.0",
|
|
246
|
+
"description": "Generates professional YouTube thumbnails in 11 strategic styles with auto-detection of AI image backends and Pillow compositing",
|
|
247
|
+
"author": {
|
|
248
|
+
"name": "biggora",
|
|
249
|
+
"url": "https://github.com/biggora"
|
|
250
|
+
},
|
|
251
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
252
|
+
"keywords": ["youtube", "thumbnail", "image", "design", "pillow", "ai-image"],
|
|
253
|
+
"license": "MIT",
|
|
254
|
+
"commands": [],
|
|
255
|
+
"category": "other",
|
|
256
|
+
"type": "skill"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"name": "tailwindcss-best-practices",
|
|
260
|
+
"version": "1.0.0",
|
|
261
|
+
"description": "Tailwind CSS v4.x best practices — utility classes, responsive layouts, @theme variables, dark mode, custom utilities with @utility, v3-to-v4 migration, text shadows, masks, logical properties, and source detection",
|
|
262
|
+
"author": {
|
|
263
|
+
"name": "biggora",
|
|
264
|
+
"url": "https://github.com/biggora"
|
|
265
|
+
},
|
|
266
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
267
|
+
"keywords": ["tailwindcss", "css", "utility-first", "responsive", "design-system", "frontend"],
|
|
268
|
+
"license": "MIT",
|
|
269
|
+
"commands": [],
|
|
270
|
+
"category": "frontend",
|
|
271
|
+
"type": "skill"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"name": "vite-best-practices",
|
|
275
|
+
"version": "1.0.0",
|
|
276
|
+
"description": "Vite 8 build tool best practices — configuration, Rolldown/Oxc migration, plugin API with hook filters, SSR, library mode, environment API, and virtual modules",
|
|
277
|
+
"author": {
|
|
278
|
+
"name": "biggora",
|
|
279
|
+
"url": "https://github.com/biggora"
|
|
280
|
+
},
|
|
281
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
282
|
+
"keywords": ["vite", "rolldown", "oxc", "bundler", "ssr", "frontend", "build-tool"],
|
|
283
|
+
"license": "MIT",
|
|
284
|
+
"commands": [],
|
|
285
|
+
"category": "frontend",
|
|
286
|
+
"type": "skill"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"name": "google-merchant-api",
|
|
290
|
+
"version": "1.0.0",
|
|
291
|
+
"description": "Work with Google Merchant Center APIs — Merchant API (v1) and Content API for Shopping (v2.1) for products, inventory, promotions, data sources, reports, and account management",
|
|
292
|
+
"author": {
|
|
293
|
+
"name": "biggora",
|
|
294
|
+
"url": "https://github.com/biggora"
|
|
295
|
+
},
|
|
296
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
297
|
+
"keywords": ["google", "merchant", "shopping", "e-commerce", "products", "inventory", "feeds"],
|
|
298
|
+
"license": "MIT",
|
|
299
|
+
"commands": [],
|
|
300
|
+
"category": "workflow",
|
|
301
|
+
"type": "skill"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"name": "lv-aggregators-api",
|
|
305
|
+
"version": "1.0.0",
|
|
306
|
+
"description": "Generate and manage XML product feeds for Latvian price comparison platforms — Salidzini.lv and KurPirkt.lv integration, feed formats, field mappings, and validation",
|
|
307
|
+
"author": {
|
|
308
|
+
"name": "biggora",
|
|
309
|
+
"url": "https://github.com/biggora"
|
|
310
|
+
},
|
|
311
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
312
|
+
"keywords": ["latvia", "salidzini", "kurpirkt", "price-comparison", "xml-feed", "e-commerce", "aggregator"],
|
|
313
|
+
"license": "MIT",
|
|
314
|
+
"commands": [],
|
|
315
|
+
"category": "workflow",
|
|
316
|
+
"type": "skill"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"name": "typescript-expert",
|
|
320
|
+
"version": "1.0.0",
|
|
321
|
+
"description": "TypeScript language expertise — type system, generics, utility types, advanced type patterns, tsconfig configuration, and TS 5.x features with /typescript-fix slash command for auto-resolving type errors",
|
|
322
|
+
"author": {
|
|
323
|
+
"name": "biggora",
|
|
324
|
+
"url": "https://github.com/biggora"
|
|
325
|
+
},
|
|
326
|
+
"repository": "https://github.com/biggora/claude-plugins-registry",
|
|
327
|
+
"keywords": ["typescript", "types", "generics", "tsconfig", "type-checking", "code-quality"],
|
|
328
|
+
"license": "MIT",
|
|
329
|
+
"commands": ["/typescript-fix"],
|
|
330
|
+
"category": "code-quality",
|
|
331
|
+
"type": "skill"
|
|
332
|
+
}
|
|
333
|
+
]
|
|
334
|
+
}
|
package/specs/coding.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill test-web-ui
|
|
2
|
+
|
|
3
|
+
skills:
|
|
4
|
+
react-vite
|
|
5
|
+
tailwind
|
|
6
|
+
|
|
7
|
+
Google Merchant API
|
|
8
|
+
|
|
9
|
+
yandex shopping
|
|
10
|
+
|
|
11
|
+
salidzini + kurpirkt
|
|
12
|
+
|
|
13
|
+
https://www.salidzini.lv/shops_info.php
|
|
14
|
+
https://www.kurpirkt.lv/veikaliem.php
|
|
15
|
+
|
|
16
|
+
nest--best-practices
|
|
17
|
+
|
|
18
|
+
add vite-best-practices, tailwindcss-best-practices skills to registry/registry.json and README.md
|
|
19
|
+
|
|
20
|
+
create skill google-merchant-api in src/skills/google-merchant-api. The skill should include knowledge of how to work with Google Merchant APIs, how to integrate them into projects, formats and data types, etc.
|
|
21
|
+
|
|
22
|
+
create skill lv-aggregators-api in src/skills/lv-aggregators-api. The skill should include knowledge of how to work with Aggregators APIs, how to integrate them into projects, formats and data types, etc. Aggregators Docs: https://www.salidzini.lv/shops_info.php, https://www.kurpirkt.lv/veikaliem.php
|
|
23
|
+
|
|
24
|
+
create skill typescript-expert src/skills/typescript-expert. The skill should include knowledge of TypeScript language features, best practices, type system, advanced types, generics, utility types, and how to use TypeScript effectively in projects.
|
|
25
|
+
|
|
26
|
+
create skill eslint-expert src/skills/eslint-expert. The skill should include knowledge of ESLint configuration, rules, plugins, and how to use ESLint effectively in projects for code quality and consistency.
|
|
27
|
+
|
|
28
|
+
create slash command typescript-fix for the TypeScript expert (typescript-expert) skill. with some content like this:
|
|
29
|
+
"You are a TypeScript expert with deep knowledge of complex typing patterns, modern JavaScript (ES6+), ESLint configuration, and enterprise-grade development practices. You specialize in building reliable, maintainable, and performant TypeScript solutions for complex business problems, with a solid understanding of JavaScript fundamentals and code quality tools. Read package.json to identify the command to run the linter. Use the `typescript-expert` skill to run `npm run typecheck`, `pnpm run typecheck`, or `tsc --noEmit` in the project directory and resolve TypeScript errors."
|
|
30
|
+
|
package/specs/pod.md
ADDED