By anomie7
Instagram toon generation pipeline plugin. Supports content preparation (toon-prep), image generation (toon-gen), and reels conversion (toon-reels) with dedicated sub-agents (story-writer, reference-explorer, interviewer, doc-generator).
interview-result.json과 템플릿을 기반으로 인스타툰 콘텐츠 문서를 자동 생성하는 에이전트. 캐릭터 시트, 아트 디렉션, 에피소드 설계, 콘티 등 8종 문서를 content/ 디렉토리에 출력한다.
doc-generator가 생성한 콘텐츠 문서의 품질을 검수하는 에이전트. 언어 일관성, 문서간 교차 검증, 금지 요소 위반, TODO 마커 탐지를 수행한다.
소크라테스식 인터뷰로 인스타툰 기획에 필요한 핵심 정보를 수집하는 에이전트. 5단계 질문을 통해 프로젝트 목적, 캐릭터, 서사, 비주얼 방향을 파악하고 interview-result.json을 출력한다.
슬라이드별 요소 정의를 입력받아 적합한 레퍼런스 이미지를 탐색하고 요소별(배경/인물/사물) 매핑으로 추천하는 에이전트.
콘티와 에피소드 설계를 기반으로 이미지 프롬프트 JSON을 생성하는 웹툰 스토리 작가 겸 프롬프트 엔지니어. 에피소드 번호를 지정하면 해당 에피소드의 슬라이드 프롬프트 JSON을 output/prompts/에 생성한다.
인스타툰 콘텐츠 준비 스킬. 소크라테스식 인터뷰로 기획 정보를 수집하고, 콘텐츠 문서(캐릭터 시트/아트 디렉션/콘티 등)를 자동 생성하며, 레퍼런스 이미지(캐릭터/배경/톤마스터)까지 만든다.
인스타툰 슬라이드 이미지를 릴스(MP4) 영상으로 변환. ffmpeg 기반으로 슬라이드 전환, BGM 합성, 4:5/9:16 비율을 지원한다.
인스타툰 전체 파이프라인 통합 스킬. /toon-run로 실행하면 콘텐츠 준비(toon-prep) -> 이미지 생성(toon-slide) -> 릴스 변환(toon-reels)까지 전체 워크플로우를 순차 실행한다.
인스타툰 이미지 생성 파이프라인. 콘텐츠 문서(콘티/에피소드 설계/아트 디렉션)를 입력받아 story-writer -> ref 탐색 -> pipeline-slide(검수+생성)까지 전체 워크플로우를 실행한다.
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.

인스타툰 제작의 전체 파이프라인을 자동화하는 Claude Code 플러그인
참고: 아래 GIF는 미리보기용으로 화질이 낮습니다. 실제 결과물은 MP4(고화질) 로 출력됩니다.
toon-prep toon-slide toon-reels
(기획 준비) --> (이미지 생성) --> (릴스 영상)
AI 인터뷰 레퍼런스 탐색 슬라이드 조합
| | |
문서 자동 생성 품질 검수 BGM 합성
| | |
참고 이미지 생성 Gemini로 그리기 MP4 출력
또는 /toon-run 으로 전체 파이프라인을 한 번에 실행
| 스킬 | 한 줄 설명 |
|---|---|
| toon-run | 전체 파이프라인 오케스트레이터 (prep -> slide -> reels) |
| toon-prep | AI 인터뷰로 기획 수집 -> 문서 자동 생성 -> 품질 검수 -> 참고 이미지 생성 |
| toon-slide | 참고 이미지 탐색 -> 품질 검수 -> Gemini API로 슬라이드 이미지 생성 |
| toon-reels | 슬라이드 이미지 -> 페이드 전환 + BGM -> 인스타 릴스 MP4 |
| 에이전트 | 소속 스킬 | 역할 |
|---|---|---|
| story-writer | toon-slide | 콘티/에피소드 설계 기반 이미지 프롬프트 JSON 생성 |
| reference-explorer | toon-slide | 슬라이드별 참고 이미지 탐색/추천 |
| interviewer | toon-prep | 소크라테스식 인터뷰로 기획 정보 수집 |
| doc-generator | toon-prep | 인터뷰 결과 기반 콘텐츠 문서 자동 생성 |
| doc-inspector | toon-prep | 생성된 문서 품질 검수 (90점 이상 통과) |
# Claude Code에서 마켓플레이스 추가 후 설치
/plugin marketplace add anomie7/toon-generator
/plugin install toon-generator
설치 후 Claude Code가 자동으로 4개 스킬과 5개 에이전트를 인식합니다.
스크립트 실행 시 zod, @google/genai 패키지가 필요하며, 없으면 Claude Code가 자동으로 설치를 안내합니다.
이 저장소의 원본은 Claude Code 플러그인 구조입니다. Codex에서는 npm run convert:codex로 self-contained Codex wrapper 플러그인을 생성한 뒤, 프로젝트의 로컬 marketplace에 등록해서 사용합니다.
빈 프로젝트에 추가하는 예시는 다음과 같습니다:
# 1) 작업할 빈 프로젝트 생성
mkdir my-toon-project
cd my-toon-project
# 2) toon-generator 소스 클론
mkdir -p .vendor
git clone https://github.com/anomie7/toon-generator.git .vendor/toon-generator
# 3) 의존성 설치
cd .vendor/toon-generator
npm install
# 4) 현재 빈 프로젝트 루트에 Codex 플러그인과 marketplace 생성
npm run convert:codex -- --output-root ../.. --force
# 5) 생성된 Codex runtime 의존성 설치
cd ../../plugins/toon-generator/runtime
npm install
위 명령을 실행하면 빈 프로젝트 루트에 아래 파일들이 생성됩니다:
my-toon-project/
.agents/
plugins/
marketplace.json
plugins/
toon-generator/
.codex-plugin/
plugin.json
skills/
toon-prep/SKILL.md
toon-slide/SKILL.md
toon-reels/SKILL.md
toon-run/SKILL.md
runtime/
package.json
skills/
agents/
Codex는 .agents/plugins/marketplace.json을 읽고 ./plugins/toon-generator를 로컬 플러그인으로 인식합니다. 프로젝트를 Codex에서 다시 열거나 reload하면 Toon Generator 플러그인과 toon-prep, toon-slide, toon-reels, toon-run 스킬을 사용할 수 있습니다.
생성된 Codex 플러그인은 plugins/toon-generator/runtime 안에 실행 스크립트와 템플릿을 함께 포함합니다. 따라서 변환과 runtime 의존성 설치가 끝난 뒤에는 .vendor/toon-generator 원본 checkout을 삭제해도 됩니다. 다른 머신에서 프로젝트를 다시 클론했다면, 해당 환경에서 위 변환 명령과 runtime npm install을 한 번 더 실행하는 것을 권장합니다.
모든 프로젝트에서 공통으로 쓰고 싶다면 home-local marketplace에 설치할 수도 있습니다:
git clone https://github.com/anomie7/toon-generator.git ~/Dev/toon-generator
cd ~/Dev/toon-generator
npm install
npm run convert:codex -- --output-root "$HOME" --force
cd ~/plugins/toon-generator/runtime
npm install
이 경우 ~/plugins/toon-generator와 ~/.agents/plugins/marketplace.json이 생성됩니다.
GEMINI_API_KEY: Google AI Studio에서 발급받을 수 있습니다
export GEMINI_API_KEY="your-key-here"
OPENAI_API_KEY (선택): gpt-image-2로 이미지를 생성할 때 필요합니다
export OPENAI_API_KEY="your-key-here"
Node.js >= 18
ffmpeg (toon-reels 사용 시):
brew install ffmpeg # macOS
# 인터뷰부터 시작 (전체 파이프라인)
/toon-prep --content-dir ./content
# 이미 기획이 있으면 문서 생성부터
/toon-prep --content-dir ./content --skip-interview
# 레퍼런스 이미지만 생성
/toon-prep --content-dir ./content --skip-interview --skip-docs
toon-prep이 완료되면 다음이 생성됩니다:
content/
interview-result.json # 인터뷰 결과
character-sheet.md # 캐릭터 시트
character-concept.md # 인물 컨셉
visual/
art-direction.md # 아트 디렉션
character-sheet-detailed.md # 상세 캐릭터 시트
references/ # 레퍼런스 이미지 (7종)
episode-design/EP1.md # 에피소드 설계
conti/EP1.md # 콘티
npx claudepluginhub anomie7/toon-generator --plugin toon-generatorOriginal editorial illustrations where a recurring mascot performs the idea — ten bundled print looks, custom characters via a built-in character builder, palettes derived from your own site's colors. Ships the illo Agent Skill and its dual-backend image engine: free generation through your Codex CLI subscription (gpt-image-2) when available, OpenRouter otherwise.
Business research, company intelligence, and dashboard skills
AI UGC video production primitives + composed skills. Generate photoreal portraits, magazine-style character sheets, lip-synced talking-head videos, and burned-in TikTok/Hormozi captions — all via one Bearer token and a single MCP server.
The creative suite for AI agents — motion graphics, asset generation, and video rendering via Remotion + @oanim/core
Pika Creative Suite — give any AI agent a face, a voice, and a full creative studio. 9 curated /pika:* skills backed by 58 atomic media tools at mcp.pika.me.
Full video production pipeline for Remotion — gives Claude eyes (video analysis), voice (TTS/voiceover), ears (music/SFX), stock footage, AI image/video generation, TikTok captions, 3D content, and more. By Dojo Coding Labs.