@biggora/claude-plugins 1.1.0 → 1.1.1
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 +16 -31
- package/package.json +1 -1
- package/registry/registry.json +31 -1
- package/src/skills/youtube-thumbnail/SKILL.md +11 -1
package/README.md
CHANGED
|
@@ -27,22 +27,10 @@ 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 skills add https://github.com/biggora/claude-plugins-registry --skill commafeed-api
|
|
30
|
+
npx @biggora/claude-plugins skills add https://github.com/biggora/claude-plugins-registry --skill commafeed-api
|
|
31
31
|
|
|
32
|
-
#
|
|
33
|
-
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
Install a skill from a single-skill repository:
|
|
37
|
-
|
|
38
|
-
```bash
|
|
39
|
-
claude-plugins skills add https://github.com/biggora/screen-recording
|
|
40
|
-
```
|
|
41
|
-
|
|
42
|
-
Install a skill by registry name:
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
claude-plugins skills add youtube-search
|
|
32
|
+
# Short form
|
|
33
|
+
claude-plugins skills add https://github.com/biggora/claude-plugins-registry --skill n8n-api
|
|
46
34
|
```
|
|
47
35
|
|
|
48
36
|
### Manage Installed Skills
|
|
@@ -82,22 +70,19 @@ claude-plugins skills remove commafeed-api
|
|
|
82
70
|
#### Install Examples
|
|
83
71
|
|
|
84
72
|
```bash
|
|
85
|
-
|
|
86
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
87
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
88
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
89
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
90
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
91
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
92
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
93
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill youtube-
|
|
94
|
-
npx skills add https://github.com/biggora/claude-plugins-registry --skill
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
claude-plugins skills add https://github.com/biggora/text-to-speech
|
|
99
|
-
claude-plugins skills add https://github.com/biggora/test-web-ui
|
|
100
|
-
claude-plugins skills add https://github.com/biggora/test-mobile-app
|
|
73
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill codex-cli
|
|
74
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill gemini-cli
|
|
75
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill n8n-api
|
|
76
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill notebook-lm
|
|
77
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill commafeed-api
|
|
78
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill tm-search
|
|
79
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill wp-rest-api
|
|
80
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill youtube-search
|
|
81
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill youtube-thumbnail
|
|
82
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill screen-recording
|
|
83
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill text-to-speech
|
|
84
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill test-web-ui
|
|
85
|
+
npx skills add https://github.com/biggora/claude-plugins-registry --skill --skill test-mobile-app
|
|
101
86
|
```
|
|
102
87
|
|
|
103
88
|
## Plugins
|
package/package.json
CHANGED
package/registry/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./schema.json",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"updated": "2026-03-
|
|
4
|
+
"updated": "2026-03-10",
|
|
5
5
|
"plugins": [
|
|
6
6
|
{
|
|
7
7
|
"name": "code-optimizer",
|
|
@@ -209,6 +209,36 @@
|
|
|
209
209
|
"commands": [],
|
|
210
210
|
"category": "testing",
|
|
211
211
|
"type": "skill"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "commafeed-api",
|
|
215
|
+
"version": "1.0.0",
|
|
216
|
+
"description": "Interact with CommaFeed RSS reader via REST API — subscribe, unsubscribe, read, star, tag entries, manage categories, import/export OPML, and manage user settings",
|
|
217
|
+
"author": {
|
|
218
|
+
"name": "biggora",
|
|
219
|
+
"url": "https://github.com/biggora"
|
|
220
|
+
},
|
|
221
|
+
"repository": "https://github.com/biggora/commafeed-api",
|
|
222
|
+
"keywords": ["rss", "commaFeed", "feed-reader", "opml", "rest-api", "automation"],
|
|
223
|
+
"license": "MIT",
|
|
224
|
+
"commands": [],
|
|
225
|
+
"category": "workflow",
|
|
226
|
+
"type": "skill"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"name": "n8n-api",
|
|
230
|
+
"version": "1.0.0",
|
|
231
|
+
"description": "Interact with n8n automation platform via REST API — manage workflows, executions, credentials, tags, variables, users, and audit logs",
|
|
232
|
+
"author": {
|
|
233
|
+
"name": "biggora",
|
|
234
|
+
"url": "https://github.com/biggora"
|
|
235
|
+
},
|
|
236
|
+
"repository": "https://github.com/biggora/n8n-api",
|
|
237
|
+
"keywords": ["n8n", "automation", "workflows", "rest-api", "low-code", "integration"],
|
|
238
|
+
"license": "MIT",
|
|
239
|
+
"commands": [],
|
|
240
|
+
"category": "workflow",
|
|
241
|
+
"type": "skill"
|
|
212
242
|
}
|
|
213
243
|
]
|
|
214
244
|
}
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
|
+
name: youtube-thumbnail
|
|
3
|
+
description: >
|
|
4
|
+
Generates professional YouTube thumbnails in 11 strategic styles with auto-detection
|
|
5
|
+
of AI image backends (A1111, ComfyUI, MCP Imagen 4, Gemini API, fal.ai FLUX, OpenAI
|
|
6
|
+
gpt-image-1) and Pillow compositing. Trigger when the user asks to create, generate,
|
|
7
|
+
or design a YouTube thumbnail, video cover, channel art, or presentation title slide.
|
|
8
|
+
Also trigger for batch thumbnail creation or YouTube visual workflow automation.
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
# YouTube Thumbnail Generation Skill (2026 Edition)
|
|
2
12
|
|
|
3
13
|
## Overview
|
|
4
14
|
|