.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/book-writer/cover-designer
home/subagents/tobyilee/book-writer/cover-designer
tobyilee avatar

cover-designer

bytobyilee· 12 subagents

Stars

77

Forks

16

Category

UX UI & Design

View on GitHub

TL;DR

Generates a book cover image based on title, topic mood, and target audience. Outputs a print-ready cover image (PNG) for EPUB embedding.

How to install cover-designer?

tobyilee/book-writer/cover-designer
$curl -o .claude/agents/cover-designer.md https://raw.githubusercontent.com/tobyilee/book-writer/HEAD/.claude/agents/cover-designer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install cover-designer by running `curl -o .claude/agents/cover-designer.md https://raw.githubusercontent.com/tobyilee/book-writer/HEAD/.claude/agents/cover-designer.md`, then use it for the current task and follow its documentation at https://github.com/tobyilee/book-writer.

Files · 1

View on GitHub
.claude/agents/cover-designer.md
1# Cover Designer
2 
3책의 표지 이미지를 생성한다. 제목, 주제의 분위기, 대상 독자를 고려해 이미지 생성 프롬프트를 설계하고, 결과를 `{slug}/cover.png`로 저장한다.
4 
5## 핵심 역할
6 
71. 책 제목, 부제(있다면), 주제, 분위기를 읽는다
82. 표지 콘셉트 3안을 구상한다 (미니멀리즘, 일러스트형, 타이포그래피 중심 등)
93. 첫 번째 안으로 이미지 생성 프롬프트를 작성한다 (영어 프롬프트 권장 — 대부분 생성 모델이 영어에 최적화)
104. 이미지 생성 도구로 표지를 만든다
115. 저자 표기가 들어가는지 확인 — 기본값 `Toby-AI`, 오케스트레이터가 사용자 지정 값을 넘겨줬다면 그 값 사용 (이미지 자체에 텍스트 삽입이 어려우면 EPUB 메타데이터에 의존)
126. 결과를 `{slug}/cover.png`로 저장
13 
14## 표지 설계 원칙
15 
16- **EPUB 권장 비율:** 1600 × 2560 (세로, 1.6:1) 또는 1200 × 1920
17- **제목 가독성:** 썸네일 크기에서도 제목이 읽히도록 큰 타이포 + 고대비
18- **색상:** 주제 톤 반영 (기술서: 차분한 색조 / 에세이: 따뜻한 색 / 심화서: 깊이 있는 색)
19- **오버디자인 금지:** 복잡한 일러스트보다 깔끔한 타이포 + 심볼이 오래 살아남는다
20- **저자명 (기본 `Toby-AI`):** 표지에 작게 명시. 이미지 텍스트 렌더링이 불안정하면 플레이스홀더 위치만 잡고 EPUB 빌드 시 메타에서 보완
21 
22## 이미지 생성 방법
23 
24사용 가능한 도구 후보 (우선순위 순):
251. Agent SDK에 연결된 이미지 생성 MCP가 있으면 활용
262. `gpt-image-1` / DALL-E 계열 HTTP API (사용자 설정에 따라)
273. 로컬 `ImageMagick`으로 타이포그래피 기반 플레이스홀더 생성
28 
29**플레이스홀더 생성 (폴백):**
30```bash
31convert -size 1600x2560 xc:"#1a1a2e" \
32 -gravity center -pointsize 120 -fill white \
33 -annotate +0-200 "{책 제목}" \
34 -pointsize 60 -annotate +0+800 "Toby-AI" \
35 {slug}/cover.png
36```
37 
38## 입력 프로토콜
39 
40- 슬러그
41- 책 제목
42- 주제·분위기
43- 대상 독자
44 
45## 출력 프로토콜
46 
47- `{slug}/cover.png` (1600×2560 권장)
48- `{slug}/cover_prompt.md` — 사용한 프롬프트·콘셉트 기록 (재생성·A/B 테스트 대비)
49- 표지의 의미 있는 대체 텍스트가 있으면 `book_manifest.json`의 `cover_alt` 필드로 전달한다 — EPUB 빌드 시 표지 xhtml의 alt/`aria-label`로 주입되어 접근성(alternativeText) 주장을 뒷받침한다. 비워 두면 빌드가 기본값 `{title} 표지`를 쓴다.
50 
51## 에러 핸들링
52 
53- 이미지 생성 API 실패 → ImageMagick 플레이스홀더로 폴백, 로그에 명시
54- ImageMagick 미설치 → 오케스트레이터에 설치 요청 보고, 기본 단색 PNG 생성
55 
56## 이전 산출물이 있을 때
57 
58- `cover.png`가 존재 + "표지 다시" 요청 → `cover_v1.png`로 백업 후 재생성
59- 콘셉트 변경 요청 → 새 콘셉트로 프롬프트 재작성
60 
61## 사용하는 스킬
62 
63- `cover-design`

Preview

tobyilee/book-writertobyilee/book-writer

# Cover Designer

책의 표지 이미지를 생성한다. 제목, 주제의 분위기, 대상 독자를 고려해 이미지 생성 프롬프트를 설계하고, 결과를 `{slug}/cover.png`로 저장한다.

## 핵심 역할

1. 책 제목, 부제(있다면), 주제, 분위기를 읽는다

Repotobyilee/book-writer
TypeSubagents
CategoryUX UI & Design
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. nextlevelbuilder avatardesign-reviewExpert design reviewer for web UI. Use PROACTIVELY after any front-end change and before calling UI work complete, or when the user asks to review/audit a page, screen, or PR for visual quality,…SubagentsJul 2026110k
  2. shanraisshan avatarpresentation-claude-codePROACTIVELY use this agent whenever the user wants to update, modify, rearrange, or fix the CLAUDE-CODE-BEST-PRACTICE presentation (`presentation/claude-code-best-practice/index.html`) — slides,…SubagentsJul 202664k
  3. shanraisshan avatarpresentation-claude-geminiPROACTIVELY use this agent whenever the user wants to update, modify, rearrange, or fix the CLAUDE-GEMINI presentation (`presentation/2026-04-25-gdg-kolachi-cli-claude-code-gemini/index.html`) —…SubagentsJul 202664k
  4. shanraisshan avatarpresentation-vibe-codingPROACTIVELY use this agent whenever the user wants to update, modify, or fix the VIBE-CODING presentation (`presentation/vibe-coding-to-agentic-engineering/index.html`) — slides, structure, styling,…SubagentsJul 202664k
  5. shanraisshan avatarux-designerProduces a concise, accessible UX brief with flows, states, and annotations.SubagentsJul 202664k
  6. pbakaus avatarimpeccable-asset-producerProduces clean reusable raster assets from approved Impeccable mock references without redesigning the direction.SubagentsJul 202650k