@biggora/claude-plugins 1.1.1 → 1.2.2
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/.claude/settings.local.json +3 -1
- package/README.md +24 -17
- package/package.json +1 -1
- package/registry/registry.json +319 -244
- package/specs/coding.md +24 -0
- package/specs/pod.md +2 -0
- 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/codex-cli/SKILL.md +21 -11
- package/src/skills/gemini-cli/SKILL.md +27 -13
- package/src/skills/gemini-cli/references/commands.md +21 -14
- package/src/skills/gemini-cli/references/configuration.md +23 -18
- package/src/skills/gemini-cli/references/headless-and-scripting.md +7 -17
- package/src/skills/gemini-cli/references/mcp-and-extensions.md +12 -6
- 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/notebook-lm/SKILL.md +1 -1
- package/src/skills/screen-recording/SKILL.md +243 -213
- package/src/skills/screen-recording/references/design-patterns.md +4 -2
- package/src/skills/screen-recording/references/ffmpeg-recording.md +473 -0
- package/src/skills/screen-recording/references/{approach1-programmatic.md → programmatic-generation.md} +45 -22
- package/src/skills/screen-recording/references/python-fallback.md +222 -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/tm-search/SKILL.md +242 -106
- package/src/skills/tm-search/references/scraping-fallback.md +60 -95
- package/src/skills/tm-search/scripts/tm_search.py +453 -375
- 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/src/skills/screen-recording/references/approach2-xvfb.md +0 -232
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
"WebFetch(domain:commafeed.hm.neutron.lv)",
|
|
8
8
|
"WebFetch(domain:raw.githubusercontent.com)",
|
|
9
9
|
"Bash(done)",
|
|
10
|
-
"Bash(npm --version)"
|
|
10
|
+
"Bash(npm --version)",
|
|
11
|
+
"Bash(python \"C:/Users/biggora/.claude/plugins/cache/anthropic-agent-skills/document-skills/b0cbd3df1533/skills/skill-creator/eval-viewer/generate_review.py\" \"codex-cli-workspace/iteration-1\" --skill-name \"codex-cli\" --benchmark \"codex-cli-workspace/iteration-1/benchmark.json\" --static \"codex-cli-workspace/iteration-1/review.html\")",
|
|
12
|
+
"Bash(start \"\" \"E:/Projects/npm/claude-plugins/claude-plugins/codex-cli-workspace/iteration-1/review.html\")"
|
|
11
13
|
]
|
|
12
14
|
}
|
|
13
15
|
}
|
package/README.md
CHANGED
|
@@ -27,10 +27,7 @@ Install a specific skill directly from a Git repository:
|
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
29
|
# Install a single skill from a repository
|
|
30
|
-
npx
|
|
31
|
-
|
|
32
|
-
# Short form
|
|
33
|
-
claude-plugins skills add https://github.com/biggora/claude-plugins-registry --skill n8n-api
|
|
30
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill test-web-ui
|
|
34
31
|
```
|
|
35
32
|
|
|
36
33
|
### Manage Installed Skills
|
|
@@ -53,6 +50,7 @@ claude-plugins skills remove commafeed-api
|
|
|
53
50
|
|
|
54
51
|
| Skill | Category | Description |
|
|
55
52
|
|-------|----------|-------------|
|
|
53
|
+
| `captcha` | automation | Solve reCAPTCHA v2/v3, hCaptcha, Cloudflare Turnstile via 2captcha/CapMonster, and image grid challenges via Claude/GPT-4V vision AI |
|
|
56
54
|
| `codex-cli` | devops | Install, configure, and automate tasks using OpenAI Codex CLI — approval modes, sandbox policies, MCP servers, and CI integration |
|
|
57
55
|
| `commafeed-api` | workflow | Manage CommaFeed RSS reader via REST API — subscriptions, categories, feeds, entries, and OPML import/export |
|
|
58
56
|
| `gemini-cli` | devops | Install, configure, and script with Gemini CLI — headless prompts, MCP servers, custom slash commands, extensions, and CI automation |
|
|
@@ -65,24 +63,33 @@ claude-plugins skills remove commafeed-api
|
|
|
65
63
|
| `tm-search` | workflow | Search, validate, and check availability of US trademarks via USPTO APIs — keyword search, batch validation, and status lookup |
|
|
66
64
|
| `wp-rest-api` | workflow | Build, extend, and debug WordPress REST API endpoints — routes, controllers, schema validation, authentication, and custom fields |
|
|
67
65
|
| `youtube-search` | workflow | Search YouTube for videos, channels, playlists and extract metadata, transcripts, and analytics via multiple API methods |
|
|
66
|
+
| `tailwindcss-best-practices` | frontend | Tailwind CSS v4.x best practices — utility classes, responsive layouts, @theme variables, dark mode, custom utilities, and v3-to-v4 migration |
|
|
67
|
+
| `vite-best-practices` | frontend | Vite 8 build tool best practices — configuration, Rolldown/Oxc migration, plugin API, SSR, library mode, and virtual modules |
|
|
68
|
+
| `google-merchant-api` | workflow | Work with Google Merchant Center APIs — Merchant API (v1) and Content API for Shopping (v2.1) for products, inventory, promotions, and reports |
|
|
69
|
+
| `lv-aggregators-api` | workflow | Generate and manage XML product feeds for Latvian price comparison platforms — Salidzini.lv and KurPirkt.lv integration |
|
|
68
70
|
| `youtube-thumbnail` | other | Generates professional YouTube thumbnails in 11 strategic styles with auto-detection of AI image backends and Pillow compositing |
|
|
69
71
|
|
|
70
72
|
#### Install Examples
|
|
71
73
|
|
|
72
74
|
```bash
|
|
73
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
74
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
75
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
76
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
77
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
78
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
79
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
80
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
81
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
82
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
83
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
84
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
85
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
75
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill captcha
|
|
76
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill codex-cli
|
|
77
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill gemini-cli
|
|
78
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill n8n-api
|
|
79
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill notebook-lm
|
|
80
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill commafeed-api
|
|
81
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill tm-search
|
|
82
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill wp-rest-api
|
|
83
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill youtube-search
|
|
84
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill youtube-thumbnail
|
|
85
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill screen-recording
|
|
86
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill text-to-speech
|
|
87
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill test-web-ui
|
|
88
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill test-mobile-app
|
|
89
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill tailwindcss-best-practices
|
|
90
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill vite-best-practices
|
|
91
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill google-merchant-api
|
|
92
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill lv-aggregators-api
|
|
86
93
|
```
|
|
87
94
|
|
|
88
95
|
## Plugins
|