Initial commit: Kei Design Agent

콘텐츠를 시각적으로 구조화된 슬라이드 HTML로 변환하는 독립 에이전트.

아키텍처 (4단계 파이프라인):
  1. Kei 실장 (Opus) — 콘텐츠 유형 분류 + 블록 배치
  2. 디자인 팀장 (Sonnet) — 레이아웃 컨셉 (블록 배치 + 페이지 수)
  3. 텍스트 편집자 (Sonnet) — 슬롯 텍스트 정리 (핵심 유지)
  4. CSS Grid 렌더러 — HTML 조립

블록 템플릿 7종:
  comparison, card-grid, relationship, process,
  quote-block, conclusion-bar, comparison-table

기술 스택:
  FastAPI + Anthropic API + Jinja2 + CSS Grid
  Pretendard Variable 한국어 폰트

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-24 17:25:47 +09:00
commit c42e65fc7e
28 changed files with 3302 additions and 0 deletions

52
templates/slide-base.html Normal file
View File

@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>{{ slide_title | default('슬라이드') }}</title>
<link rel="stylesheet" href="/static/base.css">
<style>
{% for page in pages %}
.slide-{{ page.page_number }} {
grid-template-areas: {{ page.grid_areas }};
grid-template-columns: {{ page.grid_columns | default('1fr') }};
grid-template-rows: {{ page.grid_rows | default('auto 1fr auto') }};
}
{% for block in page.blocks %}
.slide-{{ page.page_number }} .area-{{ block.area }} {
grid-area: {{ block.area }};
}
{% endfor %}
{% endfor %}
/* 다중 페이지: 페이지 간 간격 */
.slide + .slide {
margin-top: 40px;
}
/* 인쇄 시 페이지 분리 */
@media print {
.slide {
page-break-after: always;
}
.slide + .slide {
margin-top: 0;
}
}
</style>
</head>
<body>
{% for page in pages %}
<div class="slide slide-{{ page.page_number }}">
{% if loop.first and slide_title %}
<div class="slide-title" style="grid-area: header;">{{ slide_title }}</div>
{% endif %}
{% for block in page.blocks %}
<div class="area-{{ block.area }}">
{{ block.html }}
</div>
{% endfor %}
</div>
{% endfor %}
</body>
</html>