clawmoney 0.9.6 → 0.9.7
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/dist/hub/executor.js +1 -1
- package/package.json +1 -1
package/dist/hub/executor.js
CHANGED
|
@@ -22,7 +22,7 @@ function buildPrompt(call, config) {
|
|
|
22
22
|
];
|
|
23
23
|
// Category-specific instructions
|
|
24
24
|
if (call.category?.startsWith("generation/image")) {
|
|
25
|
-
lines.push("IMPORTANT:
|
|
25
|
+
lines.push("IMPORTANT: Use the nano-banana-pro skill (or any image generation tool) to generate a real PNG/JPG image.", "Do NOT write SVG, HTML, or any code to fake an image.", "If no image generation tool is available, return {\"success\": false, \"error\": \"No image generation tool available\"}.", "Save the generated image and include the file path in your output.");
|
|
26
26
|
}
|
|
27
27
|
lines.push("Execute this task and return the result as JSON.", "If you generate any files (images, videos, etc.), save them and include their file paths in the output.", "Return ONLY the JSON result, no other text.");
|
|
28
28
|
return lines.join("\n");
|