comic-blueprint-author

comic-blueprint-author is a skill for Claude Code, Codex from wanshuiyin/ARIS-Movie-Director. It costs 207 tokens per session (8,413 once invoked), scanned A, original, MIT.

A process that turns one locked comic panel specification into a precise visual blueprint, written as a deterministic content-SVG generator and rendered to an image.

In plain words
What is it for?
Use it between storyboarding and image baking to create and verify a panel blueprint that is supplied alongside a canonical character identity reference.
Why use it?
It gives the image-making step a fixed layout and content reference, helping preserve details such as numbers, composition, and empty speech-bubble space.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Good fit Use it between storyboarding and image baking to create and verify a panel blueprint that is supplied alongside a canonical character identity reference.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wanshuiyin/aris-movie-director/comic-blueprint-author
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add wanshuiyin/ARIS-Movie-Director --skill comic-blueprint-author
Clone the repo
git clone --depth 1 https://github.com/wanshuiyin/ARIS-Movie-Director

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for comic-blueprint-author

README.md
[![agentmods](https://agentmods.dev/badge/skills/wanshuiyin/aris-movie-director/comic-blueprint-author/github.svg)](https://agentmods.dev/skills/wanshuiyin/aris-movie-director/comic-blueprint-author)
Your own site
<a href="https://agentmods.dev/skills/wanshuiyin/aris-movie-director/comic-blueprint-author"><img src="https://agentmods.dev/badge/skills/wanshuiyin/aris-movie-director/comic-blueprint-author/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for comic-blueprint-author

Your own site · 80×15
<a href="https://agentmods.dev/skills/wanshuiyin/aris-movie-director/comic-blueprint-author"><img src="https://agentmods.dev/badge/skills/wanshuiyin/aris-movie-director/comic-blueprint-author.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 207 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,413 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00207 $0.08413
Opus 5 $0.00103 $0.04207
Sonnet 5 $0.00041 $0.01683
Haiku 4.5 $0.00021 $0.00841

Measured 13d ago against content hash efda83a3b19c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

comic-blueprint-author scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/comic-blueprint-author/SKILL.md · 375 lines

How it starts

The opening of the file, as written. The whole thing — 375 lines — stays where its author put it; the contents beside it link to each section on GitHub.

comic-blueprint-author — one panel_spec → a deterministic content-SVG blueprint (S7)

The per-panel condition author of the comic-author Phase-1 suite. It sits between the storyboard (comic-storyboard-creator) and the bake (comic-director): for ONE locked panel_spec it produces ONE deterministic content_svg — the answer-key composition image the bake conditions on. Concretely (the live seam, run_comic.py + pickup_image.build_bake_prompt): the engine renders the SVG to a PNG via headless Chrome, and the agent-side mcp__codex__codex sidecar bake embeds that render as the FIRST of exactly two absolute-path reference images written literally into the bake prompt (ref #1 = the blueprint render, ref #2 = the canonical identity sheet — the mcp schema has NO -i image param, so paths ride in the text), sandbox: workspace-write, and the returned PNG is verified by pickup_image.py --out-existing. Unlike video, the panel IS the deliverable — there is no i2v start-frame residue, no motion, no temporal chaining. The whole job is to LOCK what the panel must contain (numbers, layout, where the empty bubble real-estate lives) so the image model has a precise composition to finalize and the blueprint gate has a ground truth to diff against. You author this by writing a Python generator script — mirroring examples/comic_m3_audit/gen/asset_lib.py + gen_*_blueprints.py — because hand-writing raw SVG coordinates in chat is exactly how LLMs botch a figure (misplaced rects, off-canvas text, collisions). The script is the artifact; the SVG is its deterministic, re-runnable output.

  locked panel_spec ─▶ ⓪ PREFLIGHT  (assert refs status=locked + output_ref present; build input_refs; non-empty)
                            ▼
                       ① TEXT-MODE BIFURCATION  (baked → expected_literals verbatim · scene/no-numbers → html)
                            ▼
                       ② WRITE A PYTHON GENERATOR  (import only from asset_lib · palette pinned to ui_tokens)
                            │   draws characters+scene+figures · leaves negative-space SAFE ZONES · NO bubbles
                            ▼
                       ③ EMIT content_svg  + run check_asset_collisions.py (single-source, mandatory)
                            │   + zero-text assert for no-text panels (constellation etc.)
                            ▼
                       ④ WRITE the blueprint node  (content_svg, expected_literals, safe_zones, html_bubbles,
                            │   crop, negative_space_policy, generator_script, file_sha256)
                            ▼
                       ⑤a PRE-GATE FAN-OUT  (raster→PNG · CC render/lint ‖ Codex xhigh ‖ Gemini → write
                            │   review:* nodes + `reviews` edges → blueprint   ·never call the gate cold·)
                            ▼
                       ⑤b comic-cross-layer-gate <blueprint_id> --gate blueprint   (FUSES the reviews)
                            │   refs_present≥4 ∧ spatial_correctness≥4 ∧ blueprint_renders≥4 (+ text_preservation
                            │   if baked) → approve · safezone_quality<3 → fallback(→HTML) · MAX_REGEN=3
                            │   hard veto: image-bubble text · content_svg:null
                       verdict? ─ revise ─▶ ② (fix the generator, re-emit) ─ fallback ─▶ route text→HTML, re-emit
                            │   approve ─▶ gate flips status=locked

Read the full file on GitHub · 375 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 375 lines · 207 tokens per session scan A efda83a3b19c

Subscribe to this mod's changes

comic-blueprint-author is a skill published in the GitHub repository wanshuiyin/ARIS-Movie-Director (61 stars, last pushed 3d ago), licensed MIT. It adds 207 tokens to every session and 8,413 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

creator-pipeline-supervisor

Orchestrate the entire AI film production — sequence the creative skills, manage shared project state, enforce continuity across character / location / costume / light / color / sound / edit, run QC, and produce the final delivery readiness report. Use when starting a new film project, recovering an existing one, or…

ilkaydemiralay/vision_art_creator · 73 tokens

creator-character-designer

Design characters as integrated wholes — dramatic function, psychology, biography, visual identity, costume, props, casting profile, and FACS-coded expressions. Use when the user needs character development, character sheets, costume design, casting briefs, or AI-ready character references for an AI film project.

ilkaydemiralay/vision_art_creator · 62 tokens

creator-final-cut-editor

Supervise the final assembly of AI-generated shots, audio, music, and graphics into a coherent finished film — rough cut, fine cut, final cut, AI-error triage, delivery formats. Use when AI material has been produced and needs to be assembled into a deliverable cut.

ilkaydemiralay/vision_art_creator · 62 tokens

creator-prompt-engineer

Convert creative-department outputs (script, vision, cinematography, characters, sets, storyboards, shots) into producible, consistent AI image/video prompts — with tool-specific optimization, locked anchors, negative prompts, and safe alternatives. Default image tool priority for storyboard/character sheets is GPT…

ilkaydemiralay/vision_art_creator · 135 tokens

creator-sound-music-designer

Design the film's sonic world — ambient atmosphere, foley, sound effects, silence as drama, score theme, character leitmotifs, scene-by-scene music plan, and AI sound/music prompts. Use when the user needs sound design, music vision, or AI audio prompts for an AI film.

ilkaydemiralay/vision_art_creator · 69 tokens

creator-storyboard-artist

Translate scenes into storyboard panels — shot scales, angles, character blocking, movement direction, composition, and AI image/video prompts. Use when the user needs to visualize a scene panel by panel before production.

ilkaydemiralay/vision_art_creator · 46 tokens