@su-record/vibe 2.5.19 → 2.5.21
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.md +523 -519
- package/commands/vibe.spec.md +49 -169
- package/commands/vibe.spec.review.md +300 -0
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +3 -5
- package/dist/cli/index.js.map +1 -1
- package/hooks/scripts/generate-brand-assets.js +3 -1
- package/package.json +1 -1
|
@@ -52,7 +52,9 @@ function getGeminiApiKey() {
|
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
async function generateImageWithGemini(prompt, apiKey) {
|
|
55
|
-
|
|
55
|
+
// Nano Banana (Gemini 2.5 Flash Image) - fast image generation for icons/logos
|
|
56
|
+
// For professional assets, use gemini-3-pro-image-preview (Nano Banana Pro)
|
|
57
|
+
const url = `https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash-image:generateContent?key=${apiKey}`;
|
|
56
58
|
|
|
57
59
|
const requestBody = {
|
|
58
60
|
contents: [{
|