makaron-cli 0.12.1 → 0.12.2
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 +1 -1
- package/bin/makaron.mjs +2 -2
- package/package.json +1 -1
- package/skills/makaron/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -280,7 +280,7 @@ npx makaron-cli edit --image photo.jpg --ref style.jpg "match this style"
|
|
|
280
280
|
npx makaron-cli edit --image photo.jpg --out result.jpg "make it dramatic"
|
|
281
281
|
```
|
|
282
282
|
|
|
283
|
-
Options: `--image`, `--model gemini|qwen|openai|pony|wai`, `--ref <file>` (up to 3), `--aspect <ratio>`, `--out <path>`
|
|
283
|
+
Options: `--image`, `--model gemini|gemini-lite|qwen|openai|pony|wai`, `--ref <file>` (up to 3), `--aspect <ratio>`, `--out <path>`
|
|
284
284
|
|
|
285
285
|
### `video` — Standalone video tools (no project timeline)
|
|
286
286
|
|
package/bin/makaron.mjs
CHANGED
|
@@ -1660,7 +1660,7 @@ Use with chat:
|
|
|
1660
1660
|
composition status <jobId> [--wait] [--json]
|
|
1661
1661
|
`);
|
|
1662
1662
|
} else if (topic === 'edit') {
|
|
1663
|
-
console.log('Usage: makaron edit [--image <file|url>] [--model gemini|qwen|openai] [--skill enhance|creative|wild|captions] [--ref <file>] [--out <file>] "prompt"');
|
|
1663
|
+
console.log('Usage: makaron edit [--image <file|url>] [--model gemini|gemini-lite|qwen|openai|pony|wai] [--skill enhance|creative|wild|captions] [--ref <file>] [--out <file>] "prompt"');
|
|
1664
1664
|
} else if (topic === 'analyze') {
|
|
1665
1665
|
console.log('Usage: makaron analyze --video <file|url> ["question"]');
|
|
1666
1666
|
} else if (topic === 'video') {
|
|
@@ -2249,7 +2249,7 @@ if (!command || command === '--help' || command === '-h' || command === 'help')
|
|
|
2249
2249
|
else promptParts.push(args[i]);
|
|
2250
2250
|
}
|
|
2251
2251
|
editArgs.editPrompt = promptParts.join(' ');
|
|
2252
|
-
if (!editArgs.editPrompt) { console.error('Usage: makaron edit [--image <file|url>] [--model gemini|qwen|openai] [--ref <file>] [--out <file>] "prompt"'); process.exit(1); }
|
|
2252
|
+
if (!editArgs.editPrompt) { console.error('Usage: makaron edit [--image <file|url>] [--model gemini|gemini-lite|qwen|openai|pony|wai] [--ref <file>] [--out <file>] "prompt"'); process.exit(1); }
|
|
2253
2253
|
process.stderr.write('🎨 Generating...\n');
|
|
2254
2254
|
const result = await callMcpTool(baseUrl, headers, 'makaron_edit_image', editArgs);
|
|
2255
2255
|
saveMcpImage(result, outputPath);
|
package/package.json
CHANGED
package/skills/makaron/SKILL.md
CHANGED
|
@@ -238,7 +238,7 @@ npx makaron-cli edit --image photo.jpg --ref style.jpg "match this style"
|
|
|
238
238
|
npx makaron-cli edit --image photo.jpg --out result.jpg "make it dramatic"
|
|
239
239
|
```
|
|
240
240
|
|
|
241
|
-
Options: `--image`, `--model gemini|qwen|openai|pony|wai`, `--ref <file>` (up to 3), `--aspect <ratio>`, `--out <path>`
|
|
241
|
+
Options: `--image`, `--model gemini|gemini-lite|qwen|openai|pony|wai`, `--ref <file>` (up to 3), `--aspect <ratio>`, `--out <path>`
|
|
242
242
|
|
|
243
243
|
### `video` — Standalone video tools (no project timeline)
|
|
244
244
|
|