d8a80f6272
이름만 다른(표기 변형) [[위키링크]]를 대상 문서의 canonical 제목으로 치환해 끊겼던 1,200개 링크를 연결. 제목/파일명 정규화 일치만 적용하고 별칭 매칭은 과병합 위험으로 제외(애매성 가드). 원본은 _link_reconcile_backup/ 에 백업. 도구: Datacollect/scripts/link_reconcile_apply.mjs Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
169 lines
5.1 KiB
Markdown
169 lines
5.1 KiB
Markdown
---
|
|
id: wiki-2026-0508-adr-0001-project-chronicle-indep
|
|
title: 'ADR-0001: Project Chronicle as Independent Module'
|
|
category: 10_Wiki/Topics
|
|
status: verified
|
|
canonical_id: self
|
|
aliases: [ADR-0001, Project Chronicle Guard, src/features/projectChronicle]
|
|
duplicate_of: none
|
|
source_trust_level: A
|
|
confidence_score: 0.9
|
|
verification_status: applied
|
|
tags: [adr, architecture-decision, modular-design, project-chronicle, antigravity, soc]
|
|
raw_sources: []
|
|
last_reinforced: 2026-05-09
|
|
github_commit: pending
|
|
inferred_by: Claude Opus 4.7 (manual cleanup 2026-05-09)
|
|
tech_stack:
|
|
language: TypeScript
|
|
framework: VS Code Extension API
|
|
applied_in: [Antigravity, ConnectAI]
|
|
---
|
|
|
|
# ADR-0001: Project Chronicle as Independent Module
|
|
|
|
## 📌 한 줄 통찰 (The Karpathy Summary)
|
|
> **Project Chronicle (planning / decision / log / bug / retro 의 record) 의 chat / agent 와 분리 module 로 implement**. SoC 의 적용 — 매 chat / agent 의 regression 의 risk 의 감소.
|
|
|
|
## 📖 구조화된 지식 (Synthesized Content)
|
|
|
|
### Status
|
|
**Accepted** (2026-05-02).
|
|
|
|
### Context
|
|
- 매 새 feature: project planning, Q, decision, dev log, bug, retro 의 record.
|
|
- 매 existing chat / agent system 의 model interaction + agent skill manage.
|
|
- 매 새 feature 의 mix vs separate 의 결정.
|
|
|
|
### Decision
|
|
**Project Chronicle Guard 의 separate module** under `src/features/projectChronicle`.
|
|
|
|
### Reason (왜 separate?)
|
|
1. **Regression risk ↓**: chat / agent 의 active code path 의 untouched.
|
|
2. **Independent test**: 매 module 의 own test suite.
|
|
3. **Independent deploy**: 매 module 의 disable 가능.
|
|
4. **Clear ownership**: 매 team 의 own area.
|
|
5. **DDD bounded context**: chronicle 의 own model / vocabulary.
|
|
6. **Future evolution**: 매 module 의 self-contained → easier extract / refactor.
|
|
|
|
### Alternatives considered
|
|
- **Embed in agent**: chat 의 agent skill 의 추가. **Reject**: regression 위험 + complexity ↑.
|
|
- **External service**: separate process / container. **Reject**: deployment overhead.
|
|
- **Plugin**: dynamic load. **Reject**: complexity premature.
|
|
|
|
### Consequences
|
|
|
|
**Positive**:
|
|
- Chat / agent 의 stable.
|
|
- 매 chronicle 의 independent iterate.
|
|
- Test isolation.
|
|
|
|
**Negative**:
|
|
- Cross-module communication 의 explicit.
|
|
- 매 boundary 의 maintain cost.
|
|
- 매 user 의 module-aware.
|
|
|
|
### Implementation
|
|
```
|
|
src/features/projectChronicle/
|
|
├── domain/ # Plan, Decision, Log, Bug, Retro
|
|
├── application/ # ChronicleService
|
|
├── infrastructure/ # File / DB
|
|
├── api/ # Webview / command
|
|
└── index.ts # Public API
|
|
```
|
|
|
|
→ Hexagonal-ish 의 매 boundary.
|
|
|
|
### Module 의 public API
|
|
```ts
|
|
// src/features/projectChronicle/index.ts
|
|
export { ChronicleService } from './application/ChronicleService';
|
|
export { Plan, Decision, Log } from './domain';
|
|
|
|
// 매 다른 module 의 use:
|
|
import { ChronicleService } from '@/features/projectChronicle';
|
|
```
|
|
|
|
## 💻 패턴 (Code)
|
|
|
|
### Domain model
|
|
```ts
|
|
// domain/Plan.ts
|
|
export class Plan {
|
|
constructor(
|
|
public id: string,
|
|
public title: string,
|
|
public goals: string[],
|
|
public createdAt: Date,
|
|
public status: 'draft' | 'active' | 'done'
|
|
) {}
|
|
}
|
|
```
|
|
|
|
### Service
|
|
```ts
|
|
// application/ChronicleService.ts
|
|
export class ChronicleService {
|
|
constructor(private store: ChronicleStore) {}
|
|
|
|
async createPlan(input: PlanInput): Promise<Plan> {
|
|
const plan = new Plan(uuid(), input.title, input.goals, new Date(), 'draft');
|
|
await this.store.savePlan(plan);
|
|
return plan;
|
|
}
|
|
}
|
|
```
|
|
|
|
### Wire-up (extension.ts)
|
|
```ts
|
|
import { ChronicleService } from './features/projectChronicle';
|
|
|
|
export function activate(context: vscode.ExtensionContext) {
|
|
const chronicleService = new ChronicleService(new FileChronicleStore(context));
|
|
|
|
context.subscriptions.push(
|
|
vscode.commands.registerCommand('chronicle.createPlan', async () => {
|
|
const plan = await chronicleService.createPlan({...});
|
|
vscode.window.showInformationMessage(`Plan ${plan.id} created`);
|
|
})
|
|
);
|
|
}
|
|
```
|
|
|
|
## 🤔 의사결정 기준 (Decision Criteria)
|
|
|
|
| 새 feature 의 추가 시 | 추천 |
|
|
|---|---|
|
|
| 매 existing module 의 minor extension | Embed |
|
|
| 매 distinct domain | Separate module |
|
|
| 매 risk of regression | Separate |
|
|
| 매 independent lifecycle | Separate |
|
|
| 매 team boundary | Separate |
|
|
|
|
**기본값**: 매 distinct domain = separate module.
|
|
|
|
## 🔗 지식 연결 (Graph)
|
|
- 부모: [[ADR (Architecture Decision Record)]] · [[Modular-Design]] · [[Separation of Concerns]]
|
|
|
|
## 🤖 LLM 활용 힌트
|
|
**언제 사용**: 매 새 feature 의 architecture 의 결정. 매 modular boundary 의 example.
|
|
|
|
**언제 X**: 매 small bugfix. 매 prototype.
|
|
|
|
## ❌ 안티패턴
|
|
- **Embed everything**: monolith 의 regression.
|
|
- **Module 의 cross-private access**: SoC violation.
|
|
- **Module 의 own DB without need**: over-engineer.
|
|
|
|
## 🧪 검증 / 중복
|
|
- **Verified** (applied to Antigravity).
|
|
- 신뢰도 A (project's own ADR).
|
|
- Related: ADR-0002+ (다른 module).
|
|
|
|
## 🕓 Changelog
|
|
| 날짜 | 변경 | 처리 | 신뢰도 |
|
|
|---|---|---|---|
|
|
| 2026-05-08 | Phase 1 정규화 | UPDATE | A |
|
|
| 2026-05-09 | Manual cleanup — 매 ADR section + code + 결정 기준 | UPDATE | A |
|