ab79a2a72b
- Replace static pipeline diagram with self-driving loop (check memory → decide → execute → repeat) - Remove detailed memory structure JSON schemas from all files - Remove honcho-specific storage strategy from skill (storage is caller's responsibility) - Add auto_repeat section to config.yaml (enabled, max_sessions_per_chat, stop_conditions) - Add rule 8 (auto-repeat) and rule 9 (termination conditions) to execution rules - Add session transition logic to adaptation.md (due cards → review, incomplete → study)
45 lines
933 B
Markdown
45 lines
933 B
Markdown
# Step 5: 세션 리포트
|
|
|
|
## 리포트 형식
|
|
|
|
```markdown
|
|
## 학습 세션: {topic.title}
|
|
|
|
### 소스 정보
|
|
| # | 소스 | 유형 | 신뢰도 |
|
|
|---|------|------|--------|
|
|
| 1 | {title} | {type} | {score} |
|
|
|
|
### 추출된 지식
|
|
- **개념**: {count}개
|
|
- **팩트**: {count}개
|
|
- **절차**: {count}개
|
|
- **코드 패턴**: {count}개
|
|
|
|
### 핵심 개념
|
|
1. **{concept.title}**: {concept.definition}
|
|
2. ...
|
|
|
|
### 개념 연결
|
|
- {개념A} → (전제) → {개념B}
|
|
- {개념C} → (예시) → {개념D}
|
|
- ...
|
|
|
|
### 학습 목표
|
|
- [ ] {학습 목표1}
|
|
- [ ] {학습 목표2}
|
|
- ...
|
|
|
|
### 복습 질문 (미리보기)
|
|
1. {question1}
|
|
2. {question3}
|
|
3. ...
|
|
|
|
### 다음 단계 (자동)
|
|
- 복습 예정 카드: {count}개 → 복습 세션 자동 시작
|
|
- 또는 미완료 주제: {topic} → 새 학습 세션 자동 시작
|
|
- 또는 모든 완료 → 새 주제 탐색
|
|
```
|
|
|
|
리포트와 세션 결과를 메모리에 저장합니다.
|