@su-record/vibe 2.6.32 → 2.6.33
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/commands/vibe.utils.md +7 -7
- package/package.json +1 -1
package/commands/vibe.utils.md
CHANGED
|
@@ -92,12 +92,12 @@ Generate images using Gemini Image API (Nano Banana model).
|
|
|
92
92
|
|
|
93
93
|
**General image generation:**
|
|
94
94
|
```bash
|
|
95
|
-
node hooks/scripts/llm-orchestrate.js gemini image "IMAGE_DESCRIPTION" --output "OUTPUT_PATH"
|
|
95
|
+
node "$(node -p "process.env.APPDATA || require('os').homedir() + '/.config'")/vibe/hooks/scripts/llm-orchestrate.js" gemini image "IMAGE_DESCRIPTION" --output "OUTPUT_PATH"
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
**With size option:**
|
|
99
99
|
```bash
|
|
100
|
-
node hooks/scripts/llm-orchestrate.js gemini image "IMAGE_DESCRIPTION" --size "1920x1080" --output "OUTPUT_PATH"
|
|
100
|
+
node "$(node -p "process.env.APPDATA || require('os').homedir() + '/.config'")/vibe/hooks/scripts/llm-orchestrate.js" gemini image "IMAGE_DESCRIPTION" --size "1920x1080" --output "OUTPUT_PATH"
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
### How to Parse User Request
|
|
@@ -111,11 +111,11 @@ node hooks/scripts/llm-orchestrate.js gemini image "IMAGE_DESCRIPTION" --size "1
|
|
|
111
111
|
### Examples
|
|
112
112
|
|
|
113
113
|
```bash
|
|
114
|
-
node hooks/scripts/llm-orchestrate.js gemini image "A cute Gemini AI character mascot, colorful, friendly" --output "./gemini-character.png"
|
|
114
|
+
node "$(node -p "process.env.APPDATA || require('os').homedir() + '/.config'")/vibe/hooks/scripts/llm-orchestrate.js" gemini image "A cute Gemini AI character mascot, colorful, friendly" --output "./gemini-character.png"
|
|
115
115
|
|
|
116
|
-
node hooks/scripts/llm-orchestrate.js gemini image "Professional website banner, modern design" --size "1920x400" --output "./banner.png"
|
|
116
|
+
node "$(node -p "process.env.APPDATA || require('os').homedir() + '/.config'")/vibe/hooks/scripts/llm-orchestrate.js" gemini image "Professional website banner, modern design" --size "1920x400" --output "./banner.png"
|
|
117
117
|
|
|
118
|
-
node hooks/scripts/llm-orchestrate.js gemini image "Modern minimal logo design" --output "./public/logo.png"
|
|
118
|
+
node "$(node -p "process.env.APPDATA || require('os').homedir() + '/.config'")/vibe/hooks/scripts/llm-orchestrate.js" gemini image "Modern minimal logo design" --output "./public/logo.png"
|
|
119
119
|
```
|
|
120
120
|
|
|
121
121
|
### Output Format
|
|
@@ -138,10 +138,10 @@ Use the same command with a pre-built icon prompt template:
|
|
|
138
138
|
|
|
139
139
|
```bash
|
|
140
140
|
# --icon "MyApp"
|
|
141
|
-
node hooks/scripts/llm-orchestrate.js gemini image "App icon for MyApp, square format 1:1, simple recognizable design, works well at small sizes, no text or letters, solid or gradient background, modern minimalist" --output "./public/app-icon.png"
|
|
141
|
+
node "$(node -p "process.env.APPDATA || require('os').homedir() + '/.config'")/vibe/hooks/scripts/llm-orchestrate.js" gemini image "App icon for MyApp, square format 1:1, simple recognizable design, works well at small sizes, no text or letters, solid or gradient background, modern minimalist" --output "./public/app-icon.png"
|
|
142
142
|
|
|
143
143
|
# --icon "MyApp" --color "#2F6BFF"
|
|
144
|
-
node hooks/scripts/llm-orchestrate.js gemini image "App icon for MyApp, primary color #2F6BFF, square format 1:1, simple recognizable design, works well at small sizes, no text or letters, solid or gradient background, modern minimalist" --output "./public/app-icon.png"
|
|
144
|
+
node "$(node -p "process.env.APPDATA || require('os').homedir() + '/.config'")/vibe/hooks/scripts/llm-orchestrate.js" gemini image "App icon for MyApp, primary color #2F6BFF, square format 1:1, simple recognizable design, works well at small sizes, no text or letters, solid or gradient background, modern minimalist" --output "./public/app-icon.png"
|
|
145
145
|
```
|
|
146
146
|
|
|
147
147
|
### Prerequisites
|