Openai/695bb2a1-727c-800d-bd53-f5b112097616
Appearance
This conversation was exported from ChatGPT[1]
gpt-5-2[edit | edit source]
User: 회의록 서식 줘[edit | edit source]
회의록 서식 줘
Assistant: 아래는 바로 복사해서 쓰기 좋은 회의록 기본 서식입니다.[edit | edit source]
아래는 바로 복사해서 쓰기 좋은 회의록 기본 서식입니다. (일반 회의 / 프로젝트 회의 / 임원 회의 모두 공용으로 사용 가능)
###[edit | edit source]
| | | | --- | --- | | | | | | | | | | | | | | | | | | | | | |
- (이번 회의에서 무엇을 결정하거나 정리하기 위한 회의인지 간단히 작성)[edit | edit source]
1. 안건 1[edit | edit source]
- 안건 2
- 안건 3
####[edit | edit source]
- ## -
- ##
- ## -[edit | edit source]
- ##
| | | | |[edit | edit source]
| --- | --- | --- | --- | | | | | | | | | | |
| | | | | |[edit | edit source]
| --- | --- | --- | --- | --- | | | | | | | | | | | | |
- (논의 중 발견된 문제, 추후 리스크, 추가 검토 필요 사항)[edit | edit source]
| | |[edit | edit source]
| --- | --- | | | | | | |
-[edit | edit source]
원하시면
- 임원 보고용 / 실무용 / AI 회의 요약용
- 표 더 많은 버전 / 한 페이지 요약형 / 워드·PPT 최적화 서식
- 회의 녹취 → 자동 회의록 구조
중에서 바로 맞춰서 다시 만들어드릴게요.
gpt-5-2-thinking[edit | edit source]
User: 업무 생산성 전문가로서, 마케팅 팀장으로서 각 팀원에게 업무를 할당하는 목표의 회의록 서식 줘.[edit | edit source]
업무 생산성 전문가로서, 마케팅 팀장으로서 각 팀원에게 업무를 할당하는 목표의 회의록 서식 줘. 매번 회의를 해도 안건이 둥둥 떠다니고 정리가 안돼. html 형태로 부탁해
Assistant: html[edit | edit source]
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>업무 할당 중심 회의록 (마케팅 팀)</title>
<style>
:root{
--bg:#ffffff;
--ink:#111827;
--muted:#6b7280;
--line:#9ca3af;
--soft:#eef2f7;
--chip:#f3f4f6;
--accent:#111827;
--ok:#065f46;
--warn:#92400e;
--bad:#991b1b;
}
*{box-sizing:border-box;}
body{
margin:0;
font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
background: var(--bg);
color: var(--ink);
line-height:1.5;
}
.page{
max-width: 1100px;
margin: 28px auto;
padding: 0 18px 60px;
}
.title{
border: 2px solid var(--line);
border-radius: 14px;
padding: 18px 18px 14px;
background: #fff;
}
h1{
margin:0 0 10px;
font-size: 28px;
letter-spacing:-0.2px;
}
.subtitle{
display:flex; flex-wrap:wrap; gap:10px;
color: var(--muted);
font-size: 14px;
}
.badge{
display:inline-flex;
align-items:center;
gap:8px;
border:1px solid var(--line);
background: var(--chip);
padding: 6px 10px;
border-radius: 999px;
color: var(--ink);
}
.grid{
display:grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
margin-top: 14px;
}
@media (max-width: 900px){
.grid{grid-template-columns:1fr;}
}
.card{
border: 2px solid var(--line);
border-radius: 14px;
background:#fff;
padding: 14px 14px 12px;
}
.card h2{
margin:0 0 10px;
font-size: 18px;
font-weight: 800;
letter-spacing:-0.2px;
display:flex;
align-items:center;
gap:10px;
}
.icon{
width:26px; height:26px;
border:2px solid var(--line);
border-radius: 8px;
display:flex; align-items:center; justify-content:center;
font-size: 14px;
background: var(--soft);
}
table{
width:100%;
border-collapse: collapse;
table-layout: fixed;
font-size: 14px;
}
th, td{
border: 1px solid var(--line);
padding: 10px 10px;
vertical-align: top;
word-break: break-word;
}
th{
background: var(--soft);
font-weight: 800;
text-align:left;
}
.note{
border:1px dashed var(--line);
background: #fff;
border-radius: 12px;
padding: 12px;
color: var(--muted);
font-size: 13px;
}
.section{
margin-top: 14px;
}
.big{
font-size:16px;
font-weight:700;
color: var(--ink);
}
.pill{
display:inline-block;
padding: 4px 10px;
border-radius: 999px;
border: 1px solid var(--line);
background: var(--chip);
font-size: 12px;
color: var(--ink);
margin-right: 6px;
white-space: nowrap;
}
.status-ok{ color: var(--ok); font-weight: 800;}
.status-warn{ color: var(--warn); font-weight: 800;}
.status-bad{ color: var(--bad); font-weight: 800;}
.footer{
margin-top: 18px;
color: var(--muted);
font-size: 12px;
}
.hr{
height:2px;
background: var(--line);
opacity: 0.35;
margin: 14px 0;
border-radius: 2px;
}
.kpi{
display:grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
}
@media (max-width: 900px){
.kpi{grid-template-columns: repeat(2, 1fr);}
}
.kpiBox{
border:2px solid var(--line);
border-radius: 14px;
padding: 12px;
background:#fff;
}
.kpiLabel{ color: var(--muted); font-size: 12px; }
.kpiValue{ font-size: 18px; font-weight: 900; margin-top: 2px;}
.kpiHint{ color: var(--muted); font-size: 12px; margin-top: 4px;}
.right{ text-align:right; }
.small{ font-size: 12px; color: var(--muted); }
</style>
</head>
<body>
<div class="page">
<!-- ===== 상단 타이틀 ===== -->
<div class="title">
<h1>📌 업무 할당 중심 회의록 (Marketing Execution Minutes)</h1>
<div class="subtitle">
<span class="badge">🗓️ 일시: <b> </b></span>
<span class="badge">📍 장소/채널: <b> </b></span>
<span class="badge">👤 리드(팀장): <b> </b></span>
<span class="badge">✍️ 기록자: <b> </b></span>
</div>
<div class="hr"></div>
<div class="subtitle">
<span class="badge">참석: <b> </b></span>
<span class="badge">불참: <b> </b></span>
<span class="badge">회의 유형: <b>주간 실행 / 캠페인 킥오프 / 이슈 대응 / 회고</b></span>
</div>
</div>
<!-- ===== 이번 회의 1페이지 요약 KPI ===== -->
<div class="section card" style="margin-top:14px;">
<h2><span class="icon">✅</span> 이번 회의 “딱 3줄” 결과 요약</h2>
<table>
<tr>
<th style="width: 22%;">이번 회의 목표 (1문장)</th>
<td class="big"> </td>
</tr>
<tr>
<th>오늘 확정한 결정(Decision) 3개</th>
<td>
<span class="pill">D1</span> <br/><br/>
<span class="pill">D2</span> <br/><br/>
<span class="pill">D3</span>
</td>
</tr>
<tr>
<th>이번 주 핵심 성과지표(숫자)</th>
<td>
예) 신규 리드 <b>__</b>건 / CAC <b>__</b> / ROAS <b>__</b> / 전환 <b>__</b> / 콘텐츠 발행 <b>__</b>개
</td>
</tr>
</table>
<div style="margin-top:12px;" class="kpi">
<div class="kpiBox">
<div class="kpiLabel">이번 주 Top Priority</div>
<div class="kpiValue">#1 </div>
<div class="kpiHint">가장 중요한 “하나”</div>
</div>
<div class="kpiBox">
<div class="kpiLabel">데드라인 가장 임박</div>
<div class="kpiValue">__ / __</div>
<div class="kpiHint">가장 가까운 마감</div>
</div>
<div class="kpiBox">
<div class="kpiLabel">차주 리스크 1순위</div>
<div class="kpiValue">⚠️ ______</div>
<div class="kpiHint">막히는 지점/의존성</div>
</div>
<div class="kpiBox">
<div class="kpiLabel">즉시 제거할 블로커</div>
<div class="kpiValue">🧱 ______</div>
<div class="kpiHint">팀장이 해결/에스컬레이션</div>
</div>
</div>
</div>
<!-- ===== 핵심: 안건이 둥둥 뜨지 않게 만드는 구조 ===== -->
<div class="grid">
<!-- 1) 인풋 정리 -->
<div class="card">
<h2><span class="icon">🎯</span> 1) 회의 인풋 정리 (논의 범위 고정)</h2>
<table>
<tr>
<th style="width: 26%;">다룰 주제 (In-Scope)</th>
<td>
1) ______<br/>
2) ______<br/>
3) ______
</td>
</tr>
<tr>
<th>다루지 않을 것 (Out-of-Scope)</th>
<td>
* ______ (다음 회의/별도 스레드로 이동)<br/>
* ______
</td>
</tr>
<tr>
<th>전제/데이터</th>
<td>
* 최신 성과: ______<br/>
* 참고 링크/대시보드: ______
</td>
</tr>
</table>
<div class="note" style="margin-top:10px;">
<b>사용법:</b> 회의 시작 3분 동안 여기만 채우면 “안건이 떠다니는 문제”가 크게 줄어듭니다.
</div>
</div>
<!-- 2) 결정 프레임 -->
<div class="card">
<h2><span class="icon">🧠</span> 2) 결정 프레임 (결정 없으면 회의 안 끝남)</h2>
<table>
<tr>
<th style="width: 30%;">결정이 필요한 질문</th>
<td>예) “A 캠페인 예산을 ___로 확정할까?”</td>
</tr>
<tr>
<th>선택지 (Options)</th>
<td>
A) ______ (장점/리스크: ___ / ___)<br/>
B) ______ (장점/리스크: ___ / ___)<br/>
C) ______ (장점/리스크: ___ / ___)
</td>
</tr>
<tr>
<th>결정(Decision)</th>
<td class="big">✅ ______ 로 결정</td>
</tr>
<tr>
<th>성공 기준(Exit Criteria)</th>
<td>
예) “7일 내 전환 ___ 이상이면 유지, 아니면 크리에이티브 교체”
</td>
</tr>
</table>
</div>
</div>
<!-- ===== 액션 아이템(핵심) ===== -->
<div class="section card">
<h2><span class="icon">🗂️</span> 3) 액션 아이템 (업무 할당 표) — 회의의 산출물</h2>
<table>
<tr>
<th style="width: 6%;">No</th>
<th style="width: 28%;">할 일 (Deliverable 기준)</th>
<th style="width: 12%;">Owner</th>
<th style="width: 12%;">Due</th>
<th style="width: 14%;">완료 기준 (측정 가능)</th>
<th style="width: 16%;">의존성/블로커</th>
<th style="width: 12%;">상태</th>
</tr>
<tr>
<td>1</td>
<td>
예) 신규 랜딩 A/B 테스트 세팅 완료<br/>
<span class="small">* “착수”가 아니라 “완료물”로 쓰기</span>
</td>
<td>홍길동</td>
<td>01/10</td>
<td>GA 이벤트/태깅 검증 + 테스트 2안 라이브</td>
<td>디자인 리소스 필요</td>
<td class="status-warn">진행</td>
</tr>
<tr>
<td>2</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>3</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>4</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<div class="note" style="margin-top:10px;">
<b>룰(중요):</b> 각 항목은 반드시 <b>Owner 1명</b> + <b>Due</b> + <b>완료 기준</b>이 있어야 “할당 완료”입니다.
없으면 회의 끝나기 전에 채웁니다.
</div>
</div>
<!-- ===== RACI (협업 꼬임 방지) ===== -->
<div class="grid">
<div class="card">
<h2><span class="icon">👥</span> 4) 역할 명확화 (RACI)</h2>
<table>
<tr>
<th style="width: 18%;">업무/결정</th>
<th style="width: 20%;">R (실행)</th>
<th style="width: 20%;">A (최종책임)</th>
<th style="width: 20%;">C (자문)</th>
<th style="width: 22%;">I (공유)</th>
</tr>
<tr>
<td>예) 캠페인 예산 확정</td>
<td>퍼포먼스 담당</td>
<td>마케팅 팀장</td>
<td>재무/영업</td>
<td>경영진/CS</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
<div class="note" style="margin-top:10px;">
<b>사용법:</b> “누가 결정자냐”로 회의가 길어질 때, 이 표 한 줄 추가로 끝냅니다.
</div>
</div>
<div class="card">
<h2><span class="icon">🧱</span> 5) 블로커/에스컬레이션 (팀장이 해결)</h2>
<table>
<tr>
<th style="width: 20%;">블로커</th>
<th style="width: 22%;">영향</th>
<th style="width: 18%;">Owner</th>
<th style="width: 20%;">해결 액션</th>
<th style="width: 20%;">기한</th>
</tr>
<tr>
<td>예) 디자인 리소스 부족</td>
<td>런칭 지연(3일)</td>
<td>팀장</td>
<td>외주/우선순위 조정</td>
<td>01/07</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</div>
</div>
<!-- ===== 안건별 기록(필요 시) ===== -->
<div class="section card">
<h2><span class="icon">🧩</span> 6) 안건별 기록 (필요한 만큼 복제해서 사용)</h2>
<table>
<tr>
<th style="width: 18%;">안건명</th>
<td class="big"> </td>
</tr>
<tr>
<th>현재 상황 (Fact)</th>
<td>
* 데이터/현상: ______<br/>
* 제약조건: ______
</td>
</tr>
<tr>
<th>원인 가설 (Hypothesis)</th>
<td>
* 가설1: ______<br/>
* 가설2: ______
</td>
</tr>
<tr>
<th>결정 (Decision)</th>
<td>✅ ______</td>
</tr>
<tr>
<th>후속 액션</th>
<td>
* (Owner / Due / 완료기준): ______
</td>
</tr>
</table>
</div>
<!-- ===== 다음 회의 아젠다 고정 ===== -->
<div class="section card">
<h2><span class="icon">📅</span> 7) 다음 회의 아젠다 “미리 확정” (둥둥 방지 핵심)</h2>
<table>
<tr>
<th style="width: 18%;">다음 회의 일시</th>
<td> </td>
</tr>
<tr>
<th>다음 회의에서 “결정할 것”</th>
<td>
1) ______ (결정 질문 형태로)<br/>
2) ______<br/>
3) ______
</td>
</tr>
<tr>
<th>사전 준비물 (담당자)</th>
<td>
* 성과 리포트 업데이트: ______<br/>
* 크리에이티브/카피 옵션 준비: ______<br/>
* 일정/리소스 확인: ______
</td>
</tr>
</table>
<div class="note" style="margin-top:10px;">
<b>룰:</b> “다음 회의에서 뭘 할지”를 오늘 확정하지 않으면, 다음 회의도 다시 둥둥 뜹니다.
</div>
</div>
<!-- ===== 회의 종료 체크리스트 ===== -->
<div class="section card">
<h2><span class="icon">🧾</span> 8) 종료 전 60초 체크리스트 (팀장용)</h2>
<table>
<tr>
<th style="width: 8%;">체크</th>
<th>항목</th>
<th style="width: 30%;">확인</th>
</tr>
<tr>
<td class="right">□</td>
<td><b>모든 액션아이템</b>에 Owner/Due/완료기준이 있다</td>
<td>OK / 수정 필요</td>
</tr>
<tr>
<td class="right">□</td>
<td><b>결정 사항</b>이 문장으로 명확히 적혔다</td>
<td>OK / 수정 필요</td>
</tr>
<tr>
<td class="right">□</td>
<td>블로커는 “누가/언제까지” 해결하는지 정해졌다</td>
<td>OK / 수정 필요</td>
</tr>
<tr>
<td class="right">□</td>
<td>다음 회의 아젠다(결정할 것)가 확정됐다</td>
<td>OK / 수정 필요</td>
</tr>
</table>
</div>
<div class="footer">
* 팁: 회의록 제목을 “주간 실행회의(YYYY-MM-DD) - 결정/할당”처럼 저장하면 검색과 회고가 쉬워집니다.
</div>
</div>
</body>
</html>
References[edit | edit source]
- ↑ "회의록 서식 제공". ChatGPT. Retrieved 2026-01-06.