makaron-cli 0.14.1 → 0.14.3
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-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +10 -1
- package/bin/makaron.mjs +9 -2
- package/package.json +1 -1
- package/skills/makaron/SKILL.md +5 -0
- package/skills/makaron/references/nsfw.md +44 -0
package/README.md
CHANGED
|
@@ -98,12 +98,13 @@ npx makaron-cli chat --project auto --image photo.jpg --json -b "make it cinemat
|
|
|
98
98
|
npx makaron-cli chat --project auto --image img1.jpg --image img2.jpg --json -b "combine these"
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
-
`chat` routes image and video models automatically, but you may select the Agent LLM with `--agent-model`. Accepted values are `auto`, the base model IDs (`gpt-5.6-terra`, `gpt-5.6-sol`, `gpt-5.6-luna`, `grok-4.6`, `deepseek-v4-pro`), and the personal-plan routes (`gpt-5.6-terra-codex-subscription`, `gpt-5.6-sol-codex-subscription`, `gpt-5.6-luna-codex-subscription`). For the configured owner, `auto` resolves to GPT-5.6 Terra through the personal Codex plan. Base GPT-5.6 IDs select Azure API; the suffixed IDs select the personal plan explicitly. This flag changes only the reasoning/tool-calling Agent LLM.
|
|
101
|
+
`chat` routes image and video models automatically, but you may select the Agent LLM with `--agent-model`. Accepted values are `auto`, the base model IDs (`gpt-5.6-terra`, `gpt-5.6-sol`, `gpt-5.6-luna`, `grok-4.6`, `deepseek-v4-pro`), and the personal-plan routes (`gpt-5.6-terra-codex-subscription`, `gpt-5.6-sol-codex-subscription`, `gpt-5.6-luna-codex-subscription`, `grok-4.6-grok-subscription`). For the configured owner, `auto` resolves to GPT-5.6 Terra through the personal Codex plan. Base GPT-5.6 IDs select Azure API and base `grok-4.6` selects OpenRouter API; the suffixed IDs select the corresponding personal plan explicitly. This flag changes only the reasoning/tool-calling Agent LLM.
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
104
|
# Explicit lower-cost Agent LLM for a controlled comparison
|
|
105
105
|
npx makaron-cli chat --project auto --agent-model deepseek-v4-pro --json -b "make a 20s badminton video"
|
|
106
106
|
npx makaron-cli chat --project auto --agent-model gpt-5.6-sol-codex-subscription --json -b "reply with the active model"
|
|
107
|
+
npx makaron-cli chat --project auto --agent-model grok-4.6-grok-subscription --json -b "reply with the active model"
|
|
107
108
|
```
|
|
108
109
|
|
|
109
110
|
Returns immediately:
|
|
@@ -259,6 +260,14 @@ REMOTION_EXPORT_INLINE_AFTER=false npm run worker:remotion-export
|
|
|
259
260
|
|
|
260
261
|
Keeping this worker warm avoids paying sandbox cold-start cost on every CLI or service call.
|
|
261
262
|
|
|
263
|
+
Lambda exports are admitted by a shared capacity-weighted queue. The default
|
|
264
|
+
`REMOTION_EXPORT_LAMBDA_CAPACITY=330` preserves the current per-video
|
|
265
|
+
`REMOTION_LAMBDA_FRAMES_PER_LAMBDA=20` chunking while leaving headroom under the
|
|
266
|
+
account concurrency quota. A 30-second 30fps video is estimated as 45 renderer
|
|
267
|
+
Lambdas plus one control slot, so seven such videos can render concurrently and
|
|
268
|
+
the rest remain queued. `REMOTION_EXPORT_CRON_LANES` controls how many queue
|
|
269
|
+
lanes the one-minute rescue cron keeps warm; it does not raise the capacity cap.
|
|
270
|
+
|
|
262
271
|
### With video input (MP4/MOV/WebM)
|
|
263
272
|
|
|
264
273
|
```bash
|
package/bin/makaron.mjs
CHANGED
|
@@ -37,6 +37,7 @@ const CHAT_AGENT_MODELS = [
|
|
|
37
37
|
'gpt-5.6-sol-codex-subscription',
|
|
38
38
|
'gpt-5.6-luna-codex-subscription',
|
|
39
39
|
'grok-4.6',
|
|
40
|
+
'grok-4.6-grok-subscription',
|
|
40
41
|
'deepseek-v4-pro',
|
|
41
42
|
];
|
|
42
43
|
|
|
@@ -462,7 +463,8 @@ Options:
|
|
|
462
463
|
--skill <id|label|name> Use an installed skill or auto-install a matched marketplace skill.
|
|
463
464
|
--agent-model <id> Agent LLM only: auto, gpt-5.6-terra, gpt-5.6-sol,
|
|
464
465
|
gpt-5.6-luna, grok-4.6, deepseek-v4-pro, or a
|
|
465
|
-
gpt-5.6-*-codex-subscription
|
|
466
|
+
gpt-5.6-*-codex-subscription or
|
|
467
|
+
grok-4.6-grok-subscription personal-plan route.
|
|
466
468
|
--background, -b Submit and print a runId.
|
|
467
469
|
--json Output structured JSON.
|
|
468
470
|
--stream Legacy live SSE stream.
|
|
@@ -470,7 +472,9 @@ Options:
|
|
|
470
472
|
|
|
471
473
|
Agent LLM defaults to auto (GPT-5.6 Terra; the account owner uses the personal
|
|
472
474
|
Codex plan). Base GPT-5.6 ids select Azure API; append -codex-subscription to
|
|
473
|
-
select the personal plan explicitly.
|
|
475
|
+
select the personal plan explicitly. Base grok-4.6 selects OpenRouter API;
|
|
476
|
+
grok-4.6-grok-subscription selects the personal SuperGrok plan. Image/video
|
|
477
|
+
model routing stays automatic in chat.
|
|
474
478
|
|
|
475
479
|
What you can ask:
|
|
476
480
|
Image edit
|
|
@@ -505,6 +509,9 @@ What you can ask:
|
|
|
505
509
|
Force the personal Codex plan
|
|
506
510
|
makaron chat --project auto --agent-model gpt-5.6-sol-codex-subscription -b --json "reply with the active model"
|
|
507
511
|
|
|
512
|
+
Force the personal SuperGrok plan
|
|
513
|
+
makaron chat --project auto --agent-model grok-4.6-grok-subscription -b --json "reply with the active model"
|
|
514
|
+
|
|
508
515
|
Music
|
|
509
516
|
makaron chat --project <id> "add calm piano background music"
|
|
510
517
|
|
package/package.json
CHANGED
package/skills/makaron/SKILL.md
CHANGED
|
@@ -70,6 +70,11 @@ npx makaron-cli responses get $RUN_ID --wait --json
|
|
|
70
70
|
|
|
71
71
|
Use `chat` for all creative tasks. Makaron Agent decides how to execute — it can edit images, generate videos, compose music, and create designs in a single conversation.
|
|
72
72
|
|
|
73
|
+
For clearly adult, erotic, or NSFW requests, read `references/nsfw.md`
|
|
74
|
+
([public copy](https://www.makaron.app/.well-known/agent-skills/makaron/references/nsfw.md))
|
|
75
|
+
before submitting the job. It adds per-job routing exceptions only; do not load
|
|
76
|
+
or apply it to ordinary SFW work.
|
|
77
|
+
|
|
73
78
|
```bash
|
|
74
79
|
npx makaron-cli chat --help
|
|
75
80
|
```
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Adult and NSFW routing
|
|
2
|
+
|
|
3
|
+
Read this reference only when the current request is clearly adult, erotic, or
|
|
4
|
+
NSFW. It supplements the official Makaron workflow; it does not change the
|
|
5
|
+
default route for SFW work.
|
|
6
|
+
|
|
7
|
+
If adult intent is ambiguous, ask one short question before choosing this lane.
|
|
8
|
+
|
|
9
|
+
## Route the job
|
|
10
|
+
|
|
11
|
+
| Adult request | Route |
|
|
12
|
+
|---|---|
|
|
13
|
+
| Agent-driven work or a persistent Makaron project | `makaron chat` with Agent model `grok-4.6` |
|
|
14
|
+
| Standalone image generation or editing | `makaron edit` with image model `qwen` |
|
|
15
|
+
| Standalone video generation | `makaron video create` with video model `wan-3.0` |
|
|
16
|
+
|
|
17
|
+
For project-based work, keep the complete request in one `chat` job. Because
|
|
18
|
+
`chat` accepts only the Agent-model flag, put the image/video preferences in the
|
|
19
|
+
brief:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx makaron-cli chat --project <id|auto> --agent-model grok-4.6 --json \
|
|
23
|
+
-b "<complete adult request; use qwen for still images and wan-3.0 for video>"
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
For explicit raw-tool work without a project timeline:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
npx makaron-cli edit --image-model qwen --image <file-or-url> --out <path> "<prompt>"
|
|
30
|
+
npx makaron-cli video create --video-model wan-3.0 --script "<shot script>" --duration <seconds>
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Keep the exception scoped
|
|
34
|
+
|
|
35
|
+
- Do not force SFW jobs onto Grok, Qwen, or Wan 3.0.
|
|
36
|
+
- Never put `qwen` or `wan-3.0` in `--agent-model`.
|
|
37
|
+
- Do not pass `--image-model` or `--video-model` to `makaron chat`; it rejects
|
|
38
|
+
those flags. State those preferences in the chat brief or use the standalone
|
|
39
|
+
commands.
|
|
40
|
+
- Keep this routing for adult follow-ups and rerolls in the same job.
|
|
41
|
+
- Use `wan-3.0-pro` only when the user explicitly asks for Pro,
|
|
42
|
+
super-resolution, 2K, or 4K output.
|
|
43
|
+
- If a selected provider rejects the request, surface the rejection. Do not
|
|
44
|
+
silently remove the adult intent or switch to an unspecified model.
|