You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .claude-plugin/marketplace.json
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@
4
4
"name": "Pengfei Ni"
5
5
},
6
6
"metadata": {
7
-
"version": "2.1.6",
7
+
"version": "2.1.7",
8
8
"description": "Claude Code settings and skills for spec-driven development workflows"
9
9
},
10
10
"plugins": [
11
11
{
12
12
"name": "claude-code-settings",
13
13
"source": "./",
14
14
"description": "Claude Code settings, commands, agent and skills (all in one)",
15
-
"version": "2.1.6",
15
+
"version": "2.1.7",
16
16
"author": {
17
17
"name": "Pengfei Ni"
18
18
}
@@ -21,7 +21,7 @@
21
21
"name": "kiro-skill",
22
22
"source": "./plugins/kiro-skill",
23
23
"description": "Interactive feature development workflow from idea to implementation (Requirements → Design → Tasks → Execute)",
24
-
"version": "1.0.2",
24
+
"version": "1.0.3",
25
25
"author": {
26
26
"name": "Pengfei Ni"
27
27
}
@@ -30,7 +30,7 @@
30
30
"name": "spec-kit-skill",
31
31
"source": "./plugins/spec-kit-skill",
32
32
"description": "GitHub Spec-Kit integration for constitution-based spec-driven development (7-phase workflow)",
33
-
"version": "1.0.2",
33
+
"version": "1.0.3",
34
34
"author": {
35
35
"name": "Pengfei Ni"
36
36
}
@@ -39,7 +39,7 @@
39
39
"name": "codex-skill",
40
40
"source": "./plugins/codex-skill",
41
41
"description": "Leverage OpenAI Codex (GPT-5/GPT-5.1) for non-interactive automation mode and hands-off task execution",
42
-
"version": "1.0.2",
42
+
"version": "1.0.3",
43
43
"author": {
44
44
"name": "Pengfei Ni"
45
45
}
@@ -48,7 +48,7 @@
48
48
"name": "nanobanana-skill",
49
49
"source": "./plugins/nanobanana-skill",
50
50
"description": "Generate or edit images using Google Gemini API via nanobanana",
51
-
"version": "1.0.2",
51
+
"version": "1.0.3",
52
52
"author": {
53
53
"name": "Pengfei Ni"
54
54
}
@@ -57,7 +57,7 @@
57
57
"name": "youtube-transcribe-skill",
58
58
"source": "./plugins/youtube-transcribe-skill",
59
59
"description": "Extract subtitles/transcripts from YouTube videos via CLI or browser automation",
60
-
"version": "1.0.2",
60
+
"version": "1.0.3",
61
61
"author": {
62
62
"name": "Pengfei Ni"
63
63
}
@@ -66,7 +66,7 @@
66
66
"name": "autonomous-skill",
67
67
"source": "./plugins/autonomous-skill",
68
68
"description": "Use when user wants to execute long-running tasks that require multiple sessions to complete. This skill manages task decomposition, progress tracking, and autonomous execution using Claude Code headless mode with auto-continuation. Trigger phrases: autonomous, long-running task, multi-session, 自主执行, 长时任务, autonomous skill.",
Copy file name to clipboardExpand all lines: plugins/nanobanana-skill/skills/nanobanana-skill/SKILL.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@ Generate or edit images using Google Gemini API through the nanobanana tool.
11
11
## Requirements
12
12
13
13
1.**GEMINI_API_KEY**: Must be configured in `~/.nanobanana.env` or `export GEMINI_API_KEY=<your-api-key>`
14
-
2.**Python3 with dependent packages installed**: google-genai, Pillow, python-dotenv. They could be installed via `python3 -m pip install -r ${CLAUDE_PLUGIN_ROOT}/skills/nanobanana-skill/requirements.txt` if not installed yet.
2.**Python3 with dependent packages installed**: google-genai, Pillow, python-dotenv. They could be installed via `python3 -m pip install -r ./requirements.txt` if not installed yet.
15
+
3.**Executable**: `./nanobanana.py`
16
16
17
17
## Instructions
18
18
@@ -28,7 +28,7 @@ Generate or edit images using Google Gemini API through the nanobanana tool.
28
28
2. Run the nanobanana script with appropriate parameters:
29
29
30
30
```bash
31
-
python3 ${CLAUDE_PLUGIN_ROOT}/skills/nanobanana-skill/nanobanana.py --prompt "description of image" --output "filename.png"
31
+
python3 ./nanobanana.py --prompt "description of image" --output "filename.png"
32
32
```
33
33
34
34
3. Show the user the saved image path when complete
@@ -43,7 +43,7 @@ Generate or edit images using Google Gemini API through the nanobanana tool.
0 commit comments