Higgsfield Anime-Action Skill
What this skill does
Generates anime-style video from a user-supplied anime frame or illustration using Higgsfield.
The skill applies the anime visual language — cel shading, limited animation, impact frames,
speed lines, color psychology — to bring the source image into motion.
A source anime frame is always required. This skill is a mandatory image-to-video (I2V)
skill — it animates a user-supplied image and cannot run without one. Before any generation
call can happen, the user must provide the anime frame and the
higgsfield:media_upload → higgsfield:media_confirm flow must complete successfully.
Model routing
Primary and fallback video models
|
wan2_7 (primary) |
wan2_6 (fallback) |
| Rationale |
Flexible I2V; start_image attach point; wide aspect ratio support |
When wan2_7 unavailable; discrete durations only |
| Resolution |
720p, 1080p |
720p, 1080p |
| Aspect ratios |
16:9, 9:16, 1:1, 4:3, 3:4 |
16:9, 9:16, 1:1 only — no 4:3 or 3:4 |
| Duration |
2–15 s (continuous range) |
5, 10, 15 s — discrete set only |
| Image role |
start_image |
image x1 REQUIRED |
Routing rule: Use wan2_7 by default. Fall back to wan2_6 when wan2_7 is unavailable.
If falling back, inform the user that: (1) duration becomes discrete [5, 10, 15] only —
no 2, 3, 4, 6, 7, 8, 9 etc., (2) 4:3 and 3:4 aspect ratios are not available, and
(3) the image role changes from start_image to image. Never switch models silently.
MODEL-06 directive: If a parameter is rejected at generation time, call
higgsfield:models_explore with the target model name. Full parameter tables:
references/model-specs.md.
Per-platform aspect ratio and duration
Quick rule: 9:16 for TikTok / Reels / Shorts, 16:9 for YouTube, 1:1 for Instagram
feed, 3:4 for portrait/manga format (wan2_7 only). Full per-platform table:
references/model-specs.md.
Prompt-building workflow
Gather intent — Confirm with the user: anime genre (shonen, seinen, magical girl,
mecha, slice-of-life, etc.), target platform, aspect ratio, duration, and any specific
visual effects or effects style.
Select model — Apply the routing table above. wan2_7 by default.
Build the prompt — Use the craft principles in the references below:
- 2-second hook technique from references/hooks.md
- Anime visual language, action choreography, style transfer, camera techniques from
references/anime-craft.md
- Worked example prompts by anime genre from references/examples.md
Present for review — Show the assembled prompt and all parameters to the user
for review and refinement before any upload or generation call.
Opt-in generation
Generation costs Higgsfield credits and requires explicit user confirmation. This skill
never auto-generates.
Full step-by-step flow (confirmation gate, balance/cost surface, generate → poll → display):
../../shared/generation-flow.md
This skill's primary model: wan2_7
Media upload — MANDATORY (not conditional)
This skill always requires a source anime frame. The media branch is not conditional —
it always runs before generation. Do not skip it.
Required sequence:
- Ask the user to provide the anime frame or illustration file (PNG, JPG, or WebP).
- Call
higgsfield:media_upload with the file → receives a pending_id.
- Call
higgsfield:media_confirm with the pending_id → receives a confirmed_id.
- Attach the
confirmed_id to the input_files array before calling
higgsfield:generate_video:
- wan2_7 (primary): role =
start_image
- wan2_6 (fallback): role =
image
// wan2_7 (primary)
input_files: [{ "id": "<confirmed_id>", "role": "start_image" }]
// wan2_6 (fallback)
input_files: [{ "id": "<confirmed_id>", "role": "image" }]
Never pass a pending_id directly to input_files. Never attempt generation without
first completing the upload pair. wan2_6's image role is REQUIRED — a missing or
unconfirmed image will cause the request to be rejected.
See ../../shared/generation-flow.md Step 2b for the
atomic-pair detail and full input_files structure.
Tool signatures: ../../shared/mcp-tools.md
Reference materials
| File |
Contents |
| references/model-specs.md |
Verified parameter tables for wan2_7 (primary) and wan2_6 (fallback, image REQUIRED); routing rationale; re-verify directive |
| references/anime-craft.md |
Anime visual language, action choreography, style-transfer principles, camera techniques, lighting/color theory, genre identity guide, effects library |
| references/hooks.md |
2-second hook framework with 12 anime hook techniques and genre selection guide |
| references/examples.md |
Master prompt template plus 5 worked examples (shonen fight, magical girl, slice-of-life, mecha, emotional drama) |
1---2name: higgsfield-anime-action3description: Generates anime-style video from a user-supplied reference frame using Higgsfield. Routes to wan2_7 (primary, I2V via start_image) or wan2_6 (fallback, I2V via image role). Use whenever the user wants anime, Japanese animation style, shonen action, seinen drama, magical girl, mecha, isekai, slice-of-life anime, or any Japanese animation aesthetic. Triggers on: anime, Japanese animation, shonen, seinen, manga style video, anime fight, anime opening, anime ending, sakura, chibi, kawaii, mecha, isekai, or any anime-style request. Use even for "make it look like anime" or "Japanese cartoon style."4---56# Higgsfield Anime-Action Skill78## What this skill does910Generates anime-style video from a user-supplied anime frame or illustration using Higgsfield.11The skill applies the anime visual language — cel shading, limited animation, impact frames,12speed lines, color psychology — to bring the source image into motion.1314**A source anime frame is always required.** This skill is a mandatory image-to-video (I2V)15skill — it animates a user-supplied image and cannot run without one. Before any generation16call can happen, the user must provide the anime frame and the17`higgsfield:media_upload` → `higgsfield:media_confirm` flow must complete successfully.1819---2021## Model routing2223### Primary and fallback video models2425| | wan2_7 (primary) | wan2_6 (fallback) |26|---|---|---|27| **Rationale** | Flexible I2V; start_image attach point; wide aspect ratio support | When wan2_7 unavailable; discrete durations only |28| **Resolution** | `720p`, `1080p` | `720p`, `1080p` |29| **Aspect ratios** | `16:9`, `9:16`, `1:1`, `4:3`, `3:4` | `16:9`, `9:16`, `1:1` only — **no `4:3` or `3:4`** |30| **Duration** | 2–15 s (continuous range) | `5`, `10`, `15` s — **discrete set only** |31| **Image role** | `start_image` | `image` x1 **REQUIRED** |3233**Routing rule:** Use `wan2_7` by default. Fall back to `wan2_6` when wan2_7 is unavailable.34If falling back, inform the user that: (1) duration becomes discrete `[5, 10, 15]` only —35no 2, 3, 4, 6, 7, 8, 9 etc., (2) `4:3` and `3:4` aspect ratios are not available, and36(3) the image role changes from `start_image` to `image`. Never switch models silently.3738**MODEL-06 directive:** If a parameter is rejected at generation time, call39`higgsfield:models_explore` with the target model name. Full parameter tables:40[references/model-specs.md](references/model-specs.md).4142### Per-platform aspect ratio and duration4344Quick rule: `9:16` for TikTok / Reels / Shorts, `16:9` for YouTube, `1:1` for Instagram45feed, `3:4` for portrait/manga format (wan2_7 only). Full per-platform table:46[references/model-specs.md](references/model-specs.md).4748---4950## Prompt-building workflow51521. **Gather intent** — Confirm with the user: anime genre (shonen, seinen, magical girl,53 mecha, slice-of-life, etc.), target platform, aspect ratio, duration, and any specific54 visual effects or effects style.55562. **Select model** — Apply the routing table above. `wan2_7` by default.57583. **Build the prompt** — Use the craft principles in the references below:59 - 2-second hook technique from [references/hooks.md](references/hooks.md)60 - Anime visual language, action choreography, style transfer, camera techniques from61 [references/anime-craft.md](references/anime-craft.md)62 - Worked example prompts by anime genre from [references/examples.md](references/examples.md)63644. **Present for review** — Show the assembled prompt and all parameters to the user65 for review and refinement before any upload or generation call.6667---6869## Opt-in generation7071Generation costs Higgsfield credits and requires explicit user confirmation. This skill72never auto-generates.7374**Full step-by-step flow** (confirmation gate, balance/cost surface, generate → poll → display):75[`../../shared/generation-flow.md`](../../shared/generation-flow.md)7677**This skill's primary model:** `wan2_7`7879### Media upload — MANDATORY (not conditional)8081This skill always requires a source anime frame. The media branch is **not conditional** —82it always runs before generation. Do not skip it.8384**Required sequence:**85861. Ask the user to provide the anime frame or illustration file (PNG, JPG, or WebP).872. Call `higgsfield:media_upload` with the file → receives a `pending_id`.883. Call `higgsfield:media_confirm` with the `pending_id` → receives a `confirmed_id`.894. Attach the `confirmed_id` to the `input_files` array before calling90 `higgsfield:generate_video`:91 - **wan2_7 (primary):** role = `start_image`92 - **wan2_6 (fallback):** role = `image`9394```json95// wan2_7 (primary)96input_files: [{ "id": "<confirmed_id>", "role": "start_image" }]9798// wan2_6 (fallback)99input_files: [{ "id": "<confirmed_id>", "role": "image" }]100```101102Never pass a `pending_id` directly to `input_files`. Never attempt generation without103first completing the upload pair. wan2_6's `image` role is REQUIRED — a missing or104unconfirmed image will cause the request to be rejected.105106See [`../../shared/generation-flow.md`](../../shared/generation-flow.md) Step 2b for the107atomic-pair detail and full input_files structure.108109**Tool signatures:** [`../../shared/mcp-tools.md`](../../shared/mcp-tools.md)110111---112113## Reference materials114115| File | Contents |116|---|---|117| [references/model-specs.md](references/model-specs.md) | Verified parameter tables for wan2_7 (primary) and wan2_6 (fallback, image REQUIRED); routing rationale; re-verify directive |118| [references/anime-craft.md](references/anime-craft.md) | Anime visual language, action choreography, style-transfer principles, camera techniques, lighting/color theory, genre identity guide, effects library |119| [references/hooks.md](references/hooks.md) | 2-second hook framework with 12 anime hook techniques and genre selection guide |120| [references/examples.md](references/examples.md) | Master prompt template plus 5 worked examples (shonen fight, magical girl, slice-of-life, mecha, emotional drama) |