comic-creator

A full production pipeline where an agent team collaborates to create comics — from storyboarding through dialogue, image generation, and editing — covering 4-panel strips, short-form, and long-form (including webtoon). Use this skill for 'create a comic,' 'draw a 4-panel strip,' 'webtoon production,' 'comic storyboard,' 'comic strip,' 'comic scenario,' 'illustrated comic,' 'comic storyboard,' and all other comic creation tasks. Also supports image generation or editing specification when an existing scenario is provided. Note: actual image editing software (Photoshop, Clip Studio) operation, print production, and webtoon platform uploads are outside this skill's scope.

495 stars

Best use case

comic-creator is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

A full production pipeline where an agent team collaborates to create comics — from storyboarding through dialogue, image generation, and editing — covering 4-panel strips, short-form, and long-form (including webtoon). Use this skill for 'create a comic,' 'draw a 4-panel strip,' 'webtoon production,' 'comic storyboard,' 'comic strip,' 'comic scenario,' 'illustrated comic,' 'comic storyboard,' and all other comic creation tasks. Also supports image generation or editing specification when an existing scenario is provided. Note: actual image editing software (Photoshop, Clip Studio) operation, print production, and webtoon platform uploads are outside this skill's scope.

Teams using comic-creator should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/comic-creator/SKILL.md --create-dirs "https://raw.githubusercontent.com/revfactory/harness-100/main/en/07-comic-creator/.claude/skills/comic-creator/skill.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/comic-creator/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How comic-creator Compares

Feature / Agentcomic-creatorStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

A full production pipeline where an agent team collaborates to create comics — from storyboarding through dialogue, image generation, and editing — covering 4-panel strips, short-form, and long-form (including webtoon). Use this skill for 'create a comic,' 'draw a 4-panel strip,' 'webtoon production,' 'comic storyboard,' 'comic strip,' 'comic scenario,' 'illustrated comic,' 'comic storyboard,' and all other comic creation tasks. Also supports image generation or editing specification when an existing scenario is provided. Note: actual image editing software (Photoshop, Clip Studio) operation, print production, and webtoon platform uploads are outside this skill's scope.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Comic Creator — Full Comic Production Pipeline

Produce comics from storyboard through dialogue, image generation, and editing via an agent team, all in one pass. Supports 4-panel strips, short-form, and long-form (chapter-based) formats.

## Execution Mode

**Agent Team** — Five agents communicate directly via SendMessage and cross-validate each other's work.

## Agent Roster

| Agent | File | Role | Type |
|-------|------|------|------|
| storyboarder | `.claude/agents/storyboarder.md` | Synopsis, storyboard, panel layout design | general-purpose |
| dialogue-writer | `.claude/agents/dialogue-writer.md` | Character dialogue, sound effects, narration | general-purpose |
| image-generator | `.claude/agents/image-generator.md` | Gemini-based panel image generation | general-purpose |
| comic-editor | `.claude/agents/comic-editor.md` | Speech bubble placement, page editing spec | general-purpose |
| quality-reviewer | `.claude/agents/quality-reviewer.md` | Consistency validation, continuity checks | general-purpose |

## Workflow

### Phase 1: Preparation (Performed Directly by the Orchestrator)

1. Extract from user input:
   - **Topic/Story Idea**: The story to turn into a comic
   - **Format**: 4-panel / Short-form (8-16 pages) / Long-form (chapter-based) / Webtoon
   - **Genre**: Comedy, drama, fantasy, slice-of-life, action, etc.
   - **Art Style** (optional): Manga, American comics, webtoon style, etc.
   - **Existing Files** (optional): Scenario, character settings, etc.
2. Create `_workspace/` directory and `_workspace/panels/` subdirectory
3. Organize input and save to `_workspace/00_input.md`
4. If existing files are available, copy to `_workspace/` and skip corresponding phase
5. Determine execution mode based on request scope

### Phase 2: Team Assembly and Execution

| Order | Task | Owner | Dependency | Deliverable |
|-------|------|-------|------------|-------------|
| 1 | Storyboard | storyboarder | None | `_workspace/01_storyboard.md` |
| 2a | Dialogue writing | dialogue-writer | Task 1 | `_workspace/02_dialogue.md` |
| 2b | Panel image generation | image-generator | Task 1 | `_workspace/03_image_prompts.md`, `_workspace/panels/` |
| 3 | Page editing spec | comic-editor | Tasks 1, 2a, 2b | `_workspace/04_layout.md` |
| 4 | Quality review | quality-reviewer | Tasks 2a, 2b, 3 | `_workspace/05_review_report.md` |

Tasks 2a (dialogue) and 2b (images) run **in parallel**. Both depend only on Task 1 (storyboard).

**Inter-agent communication flow:**
- storyboarder completes -> delivers per-panel situations and emotions to dialogue-writer; character sheets and compositions to image-generator
- dialogue-writer completes -> delivers SFX style to image-generator; bubble types and reading order to comic-editor
- image-generator completes -> delivers image files and blank area info to comic-editor
- comic-editor completes -> delivers editing spec to quality-reviewer
- quality-reviewer cross-validates all deliverables. On RED Must Fix findings, sends revision requests -> rework -> re-validate (up to 2 cycles)

### Phase 3: Integration and Final Deliverables

1. Verify all files in `_workspace/`
2. Confirm all RED Must Fix items have been addressed
3. Report final summary to user

## Execution Modes by Scope

| User Request Pattern | Execution Mode | Agents Deployed |
|---------------------|---------------|----------------|
| "Create a comic," "full production" | **Full Pipeline** | All 5 agents |
| "Just create a storyboard" | **Storyboard Mode** | storyboarder + reviewer |
| "Make a comic from this scenario" (existing file) | **Image Mode** | image-generator + comic-editor + reviewer |
| "Just write the dialogue" | **Dialogue Mode** | storyboarder + dialogue-writer + reviewer |
| "Review this comic" | **Review Mode** | reviewer only |

**Using Existing Files**: If the user provides a scenario, storyboard, etc., copy to `_workspace/` and skip that agent's phase.

## Data Transfer Protocol

| Strategy | Method | Use Case |
|----------|--------|----------|
| File-based | `_workspace/` directory | Store and share major deliverables |
| Message-based | SendMessage | Real-time key information delivery, revision requests |
| Task-based | TaskCreate/TaskUpdate | Progress tracking, dependency management |

File naming convention: `{order_number}_{deliverable}.{extension}`

## Error Handling

| Error Type | Strategy |
|-----------|----------|
| Image generation failure | Proceed with text prompts only; user can retry with the prompts |
| Character consistency breaks | Strengthen character descriptions in prompts and regenerate (up to 2 times) |
| Agent failure | Retry once -> if still failing, proceed without that deliverable; note in review report |
| RED found in review | Send revision request -> rework -> re-validate (up to 2 cycles) |
| Content rejected as inappropriate | Modify prompt and retry; note in report |

## Test Scenarios

### Normal Flow
**Prompt**: "Create a 4-panel comic about a programmer's daily life. Comedy genre."
**Expected Result**:
- Storyboard: 4-panel setup-development-twist-punchline storyboard, character sheet
- Dialogue: Character-specific speech, sound effects, punchline
- Images: 4 panel images generated (consistent art style)
- Editing: Speech bubble placement, reading flow specification
- Review: Full consistency matrix verified

### Existing File Flow
**Prompt**: "Create a webtoon from this scenario" + attached scenario file
**Expected Result**:
- Incorporate existing scenario into `_workspace/01_storyboard.md`
- Storyboarder adds panel layout design on top of existing scenario
- Deploy dialogue-writer + image-generator + comic-editor + reviewer

### Error Flow
**Prompt**: "Just create a quick storyboard, any topic"
**Expected Result**:
- Switch to storyboard mode (storyboarder + reviewer)
- Topic is unclear, so storyboarder proposes 3 genre-based synopses
- Review report notes "Dialogue/image/editing not generated"

## Agent Extension Skills

| Agent | Extension Skill | Knowledge Provided |
|-------|----------------|-------------------|
| storyboarder, image-generator | `/panel-composition` | Camera angles, gaze flow, page rhythm, prompt structure |
| dialogue-writer, comic-editor | `/visual-narrative` | Speech bubble systems, SFX typography, Show-Don't-Tell, scene transitions |
| storyboarder, image-generator | `/character-design-system` | Character sheets, silhouette test, expression charts, AI consistency strategy |

Related Skills

sustainability-audit

495
from revfactory/harness-100

Full audit pipeline for ESG/sustainability where an agent team collaborates to generate environmental, social, and governance assessments along with an integrated report and improvement plan. Use this skill for requests such as 'run an ESG audit', 'write a sustainability report', 'ESG assessment', 'carbon emissions calculation', 'ESG rating diagnosis', 'governance review', 'social responsibility assessment', 'GRI report', 'TCFD disclosure', 'ESG improvement plan', and other ESG/sustainability tasks. Also supports assessment of specific pillars (E/S/G) only or improving existing reports. However, actual on-site audit execution, third-party verification certificate issuance, ESG rating agency score changes, and carbon credit trading are outside the scope of this skill.

materiality-assessment

495
from revfactory/harness-100

ESG materiality assessment matrix. Referenced by the esg-reporter and improvement-planner agents when evaluating ESG issue materiality and setting priorities. Use for 'materiality assessment', 'importance analysis', or 'Materiality Matrix' requests. Stakeholder surveys and external certification are out of scope.

ghg-protocol

495
from revfactory/harness-100

GHG Protocol detailed guide. Referenced by the environmental-analyst agent when calculating and reporting greenhouse gas emissions. Use for 'GHG Protocol', 'carbon emissions', 'Scope 1/2/3', or 'carbon footprint' requests. Carbon credit trading and CDM project execution are out of scope.

citation-standards

495
from revfactory/harness-100

Academic citation and reference standards guide. Referenced by the paper-writer and submission-preparer agents when composing citations and references. Use for 'citation format', 'APA', or 'references' requests. Original paper retrieval and professional database access are out of scope.

academic-paper

495
from revfactory/harness-100

Full research pipeline for academic paper writing where an agent team collaborates to generate research design, experiment protocols, analysis, manuscript writing, and submission preparation. Use this skill for requests such as 'write an academic paper', 'research paper writing', 'help me write a paper', 'design a study', 'run statistical analysis', 'prepare journal submission', 'manuscript writing', 'research methodology design', 'hypothesis testing', 'academic writing', and other academic research paper tasks. Also supports analysis, rewriting, and submission preparation when existing data or drafts are available. However, actual data collection execution, official IRB submission, journal system login and upload, and running actual statistical software are outside the scope of this skill.

product-copy-formulas

495
from revfactory/harness-100

Product copy formula library. Referenced by the detail-page-writer and marketing-manager agents when writing purchase-driving copy. Use for 'product copy', 'marketing copy', or 'ad copy' requests. Ad placement and design mockup creation are out of scope.

ecommerce-launcher

495
from revfactory/harness-100

Full launch pipeline for e-commerce products where an agent team collaborates to generate product planning, detail pages, pricing strategy, marketing, and CS setup all at once. Use this skill for requests such as 'launch an e-commerce product', 'prepare a product launch', 'register a product on Naver Smart Store', 'launch on Coupang', 'create a detail page', 'develop a pricing strategy', 'create a marketing plan', 'launch prep', 'product planning brief', 'e-commerce CS manual', and other e-commerce product launch tasks. Also supports supplementing pricing/marketing/CS even when existing briefs or detail pages are provided. However, actual platform API integration (automated product registration), payment system development, logistics system integration, and real-time order management are outside the scope of this skill.

conversion-optimization

495
from revfactory/harness-100

Purchase conversion optimization framework. Referenced by the detail-page-writer and pricing-strategist agents when designing detail pages and pricing with a conversion focus. Use for 'conversion rate optimization', 'CRO', or 'purchase psychology' requests. A/B testing tool setup and funnel automation are out of scope.

real-estate-analyst

495
from revfactory/harness-100

Real estate investment analysis pipeline. An agent team collaborates to produce market research, location analysis, profitability analysis, risk assessment, and investment reports. Use this skill for requests such as 'analyze this real estate', 'apartment investment analysis', 'studio apartment yield', 'real estate market research', 'location analysis', 'real estate investment report', 'buy vs lease', 'reconstruction investment analysis', 'commercial property yield analysis', and other general real estate investment analysis tasks. Actual purchase contracts, brokerage services, interior design, and property management are outside the scope of this skill.

location-scoring

495
from revfactory/harness-100

Location scoring scorecard. Referenced by the location-analyst agent for systematic real estate location evaluation. Use for requests involving 'location analysis', 'location assessment', or 'commercial area analysis'. On-site inspections and surveying are out of scope.

cap-rate-calculator

495
from revfactory/harness-100

Real estate yield calculator. Reference formulas and models used by the profitability-analyst agent for quantitative investment return analysis. Use for requests involving 'Cap Rate', 'yield analysis', 'DCF', or 'cash flow analysis'. Tax advisory and loan underwriting are out of scope.

vendor-scoring

495
from revfactory/harness-100

Vendor evaluation scorecard framework. Referenced by vendor-comparator and evaluation-designer agents when systematically comparing and evaluating vendors. Used for 'vendor evaluation', 'supplier comparison', 'bid evaluation' requests. Note: posting bid announcements and executing contracts are out of scope.