feat: add comic-creator skill documentation, workspace guidelines, an…#3
Open
robertchoi wants to merge 2 commits into
Open
feat: add comic-creator skill documentation, workspace guidelines, an…#3robertchoi wants to merge 2 commits into
robertchoi wants to merge 2 commits into
Conversation
…d reference materials
There was a problem hiding this comment.
Pull request overview
Adds a new Codex harness under ko/07-comic-creator/.codex/ to support a “comic-creator” workflow that turns a user idea/script into a standardized set of comic production artifacts (brief → storyboard → dialogue → image prompts/images → layout → review), plus supporting reference docs and an agent config.
Changes:
- Introduces the
comic-creatorCodex skill with an explicit output contract and end-to-end workflow. - Adds specialist reference guides (roles, panel composition, visual narrative, character design) to standardize artifact formats.
- Adds an OpenAI agent config for implicit invocation, and ignores the comic module’s
_workspace/outputs in.gitignore.
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
ko/07-comic-creator/.codex/skills/comic-creator/SKILL.md |
Defines the Codex skill contract/workflow and artifact expectations for comic production. |
ko/07-comic-creator/.codex/skills/comic-creator/references/visual-narrative.md |
Reference guidance for speech bubbles, SFX, and visual storytelling rules. |
ko/07-comic-creator/.codex/skills/comic-creator/references/role-guides.md |
Role-based templates and expected file structures for each production phase. |
ko/07-comic-creator/.codex/skills/comic-creator/references/panel-composition.md |
Reference for panel patterns, camera angles, reading flow, and prompt skeletons. |
ko/07-comic-creator/.codex/skills/comic-creator/references/character-design-system.md |
Reference for character sheet requirements and consistency rules. |
ko/07-comic-creator/.codex/skills/comic-creator/agents/openai.yaml |
Adds agent UI metadata and enables implicit invocation. |
ko/07-comic-creator/.codex/AGENTS.md |
Documents the new Codex harness structure and usage examples. |
.gitignore |
Ignores ko/07-comic-creator/_workspace/ outputs. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| |-- AGENTS.md | ||
| `-- skills/ | ||
| `-- comic-creator/ | ||
| |-- SKILL.md |
Comment on lines
+64
to
+66
| 2. Invoke the `imagegen` skill before calling image tools. | ||
| - Use built-in `image_gen` by default. | ||
| - Do not use the CLI/API fallback unless the user explicitly requests it or confirms a fallback path required by the `imagegen` skill. |
Comment on lines
+75
to
+77
| 5. Update artifacts after generation. | ||
| - In `03_image_prompts.md`, change each generated panel's status from prompt-only to generated and record the saved filename. | ||
| - In `04_layout.md`, reference the actual saved panel filenames. |
| ### 페이지 1 - 패널 1 | ||
| - 프롬프트: | ||
| - 파일: `panels/page1_panel1.png` | ||
| - 생성 상태: 성공/실패/프롬프트만 작성 |
| interface: | ||
| display_name: "Comic Creator" | ||
| short_description: "만화 콘티, 대사, 이미지 프롬프트, 편집 지시서 제작" | ||
| default_prompt: "Use $comic-creator to turn this idea into a 4-panel Korean comic production package." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
4컷 만화 만들기 코덱스 스킬을 만들었습니다.