comic-json-compiler

comic-json-compiler is a skill for Claude Code, Codex from wanshuiyin/ARIS-Movie-Director. It costs 308 tokens per session (11,935 once invoked), scanned A, original, MIT.

A final assembly step that combines a locked comic storyboard and panel plans into one validated JSON file for the comic rendering process.

In plain words
What is it for?
Use it to compile page order, panel conditions, and rendering details into the required comic data format before rendering.
Why use it?
It catches whole-comic consistency problems, such as panels missing from the page order, that checks on individual pages may miss.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 skills/comic-director/scripts/run_comic.py --project examples/comic_m3_audit --page P02_b08 --panels S12,S13,S14,S15 --dry-run.

Good fit Use it to compile page order, panel conditions, and rendering details into the required comic data format before rendering.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/wanshuiyin/ARIS-Movie-Director
agentmods
npx agentmods add skills/wanshuiyin/aris-movie-director/comic-json-compiler

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-json-compiler

README.md
[![agentmods](https://agentmods.dev/badge/skills/wanshuiyin/aris-movie-director/comic-json-compiler/github.svg)](https://agentmods.dev/skills/wanshuiyin/aris-movie-director/comic-json-compiler)
Your own site
<a href="https://agentmods.dev/skills/wanshuiyin/aris-movie-director/comic-json-compiler"><img src="https://agentmods.dev/badge/skills/wanshuiyin/aris-movie-director/comic-json-compiler/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-json-compiler

Your own site · 80×15
<a href="https://agentmods.dev/skills/wanshuiyin/aris-movie-director/comic-json-compiler"><img src="https://agentmods.dev/badge/skills/wanshuiyin/aris-movie-director/comic-json-compiler.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 308 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 11,935 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.00308 $0.11935
Opus 5 $0.00154 $0.05967
Sonnet 5 $0.00062 $0.02387
Haiku 4.5 $0.00031 $0.01193

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

Security

Grade A, and why

comic-json-compiler 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 12d 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-json-compiler/SKILL.md · 503 lines

How it starts

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

comic-json-compiler — locked storyboard + blueprints → one schema-valid comic.json (S9)

The last node of the left third of Figure 1: take the locked storyboard_spec (the authoritative page order + the MOTIF STATE TABLE) and the locked per-panel blueprint nodes and compile them into the single comic.json (comic-ir/1.0) that is the contract boundary to comic-director (Phase 2/3). You don't hand-write this file panel-by-panel — that already happened upstream; this step is the deterministic projection + reconciliation that turns the authoring nodes into the IR and catches the integrity bugs that only show up once everything is assembled — chiefly the page-count / orphan-panel mismatch (the orphan-panel class). The two deterministic scripts the compile gate runs are per-page (run_comic.py needs --page/--panels) and the JSON schema leaves condition/content_svg OPTIONAL — so neither of them sees the whole pages[]/panels{} set and neither catches an orphan. That whole-comic reconciliation against the storyboard authority is THIS skill's own inline job (the ~7-line set diff below), run before the gate; the gate then certifies the per-page + wiki-conformance floor.

  locked storyboard_spec (page_order = AUTHORITY)            ┐
  locked motif_ledger    (per-panel ground-truth)           │
  locked panel_spec × N  (the 9-field specs)                 ├─▶ ① ASSEMBLE  pages[] + panels{}  per comic.schema.json
  locked blueprint × N   (content_svg + expected_literals)   │        (author ONLY authored fields; engine fields EMPTY)
  locked prompt_bundle × N (optional, identity refs)         ┘        ▼
                                                                ② RECONCILE page-count integrity  ── INLINE python (this skill; no phantom script)
                                                                   (orphans · dangling refs · page_count vs page_order · grid2x2==4 · recap legitimacy)
                                                                      ▼
                                                                ③ VALIDATE  jsonschema(comic.schema.json) — SHAPE only (it does NOT enforce content_svg/literals)
                                                                      ▼
                                                                ④ FAIL-CLOSED contracts  (every panel a content_svg · baked figure ⇒ expected_literals)  ← THIS skill asserts; schema won't
                                                                      ▼
                                                                ⑤ comic-cross-layer-gate decision:compile_<slug> --gate compile  (DETERMINISTIC: run_comic.py --dry-run per page AND cli/validate_wiki.py both exit 0)
                                                                      ▼
                                                            approve? ─ revise ─▶ fix the OFFENDING node upstream, recompile  (you don't invent content)
                                                                      │ approve
                                                                      ▼
                                                                ⑥ EMIT comic.json (output-versioning) + movie.project.json pointer-hub + asset-copy manifest

Read the full file on GitHub · 503 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. 12d ago First seen · 503 lines · 308 tokens per session scan A c4525ff5e764

Subscribe to this mod's changes

comic-json-compiler is a skill published in the GitHub repository wanshuiyin/ARIS-Movie-Director (61 stars, last pushed 3d ago), licensed MIT. It adds 308 tokens to every session and 11,935 once invoked, about $0.0015 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