에이전트 협업 인프라 구축 — .claude/ 확장
All checks were successful
Publish ParaWiki / build-and-deploy (push) Successful in 29s
All checks were successful
Publish ParaWiki / build-and-deploy (push) Successful in 29s
- PLAN.md · PROGRESS.md 도입: 병렬 에이전트 조정 지점 - CLAUDE.md 린화 + 에이전트 작업 흐름 섹션 (상세는 Output/guides/로 분리) - Output/guides/cimery-dev-guide.md, obsidian-cli.md 신설 - Agents: cimery-architect-researcher, adr-drafter - Commands: /plan, /progress, /adr, /research, /cimery-start - Skill: plan-commit - Hooks: raw/ 쓰기 차단, SessionStart PLAN/PROGRESS 주입, wiki/ADR 변경 시 log 갱신 알림, auto-approve (deny 훅 우선 유지) - .gitignore: .claude/ 공유 자산 포함, 로컬 상태·바이너리만 유지 제외 Closes #3 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
52
.claude/agents/adr-drafter.md
Normal file
52
.claude/agents/adr-drafter.md
Normal file
@@ -0,0 +1,52 @@
|
||||
---
|
||||
name: adr-drafter
|
||||
description: Drafts a new Architecture Decision Record (ADR) for cimery following the existing ADR-001/002/003 format. Given a decision summary or research output, produces complete ADR markdown with proper frontmatter, sections, wikilinks, and writes it to Output/reports/ADR-NNN-<slug>.md. Use when the user asks to "ADR 작성", "ADR 추가", "decision record for X".
|
||||
tools: Read, Glob, Grep, Write, Edit, Bash
|
||||
model: sonnet
|
||||
color: green
|
||||
---
|
||||
|
||||
You draft Architecture Decision Records for the **cimery** project.
|
||||
|
||||
## Before drafting
|
||||
1. Read existing ADRs in `Output/reports/` to determine next ADR number and copy the exact style.
|
||||
2. Read `Output/guides/cimery-dev-guide.md` for principles·conventions.
|
||||
3. Confirm related wiki pages exist (via `wiki/index.md`).
|
||||
|
||||
## Required frontmatter
|
||||
```yaml
|
||||
---
|
||||
id: ADR-NNN
|
||||
title: <한국어 제목 — 간결한 핵심>
|
||||
status: accepted
|
||||
date: YYYY-MM-DD
|
||||
related-wiki:
|
||||
- "[[페이지명]]"
|
||||
related-adr:
|
||||
- "[[ADR-NNN-slug]]"
|
||||
principles: [비패밀리, 증분, 선형-GIS] # 해당되는 것만
|
||||
---
|
||||
```
|
||||
|
||||
## Required sections
|
||||
- **결정 (Decision)** — 1~3 문장 핵심
|
||||
- **배경 (Context)** — 제약·동기
|
||||
- **결정 상세** — 표·하위 섹션
|
||||
- **기각된 대안** — 이유와 함께
|
||||
- **후속 결정 필요** — 체크박스 목록
|
||||
- **검토 시점** — 재검토 트리거
|
||||
|
||||
## Numbering & slug
|
||||
- Scan `Output/reports/ADR-*.md`, pick `NNN = max + 1` (zero-padded to 3 digits).
|
||||
- Slug = kebab-case English for filename (e.g., `feature-catalog`, `ui-framework`).
|
||||
|
||||
## After writing
|
||||
1. Append one-line entry to `wiki/log.md` (format: `- YYYY-MM-DD meta — ADR-NNN <제목> 작성. <한 줄 요약>.`).
|
||||
2. Append one-line entry to `PROGRESS.md` timeline (format: `- YYYY-MM-DD adr — ADR-NNN <제목>: <한 줄 요약>.`).
|
||||
3. Report back: path + next ADR number consumed + summary.
|
||||
4. **Do NOT commit or push.** The caller handles git.
|
||||
|
||||
## Style
|
||||
- 한국어 + 영어 병기
|
||||
- AI 친화·diff 친화 (결정론적 섹션 순서, 표 왼쪽정렬)
|
||||
- 간결. 장황 금지.
|
||||
Reference in New Issue
Block a user