makaron-cli 0.14.1 → 0.14.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/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.
|