Loading...
Loading...
Saves learning notes from the current conversation as a markdown file. Use after a study session to record what you learned.
npx skill4agent add itlearning/study-ios study-summaryquestions:
- question: "Which language do you prefer? / 어떤 언어로 진행할까요?"
header: "Language"
options:
- label: "한국어"
description: "한국어로 노트를 작성합니다"
- label: "English"
description: "Write notes in English"
multiSelect: falsequestions:
- question: "오늘 학습한 내용을 정리할까요? 포함할 주제를 선택하세요."
header: "정리할 주제"
options:
- label: "전체 정리"
description: "이 대화에서 학습한 모든 내용을 정리"
- label: "마지막 주제만"
description: "가장 최근에 다룬 주제만 정리"
multiSelect: falsequestions:
- question: "Ready to organize today's notes? Choose what to include."
header: "Scope"
options:
- label: "Everything"
description: "Summarize all topics from this conversation"
- label: "Last topic only"
description: "Only the most recent topic"
multiSelect: falsestudy-ios/notes/YYYY-MM-DD-<topic-in-english>.md# <Topic Title / 주제 제목>
> Date / 학습일: YYYY-MM-DD
## Key Concepts / 핵심 개념
1. **Concept 1**: one-line explanation
2. **Concept 2**: one-line explanation
3. **Concept 3**: one-line explanation
## Diagrams / 다이어그램
(Include ASCII diagrams used during the session, if any)
## Code Examples / 코드 예제
(Key code examples from the session)
```swift
// example code
### Step 4: Save Note
Use the Write tool to save the note to the `study-ios/notes/` directory.
(Write tool을 사용하여 `study-ios/notes/` 디렉토리에 노트를 저장한다.)
### Step 5: Update Learning Progress
Record learning progress in memory using `mcp__plugin_everything-claude-code-ios_memory__create_entities` or `mcp__plugin_everything-claude-code-ios_memory__add_observations`:
(memory에 학습 진도를 기록한다)
- Entity: "SwiftLearningProgress"
- Observations: topic studied, date, level, weak areas
(학습한 주제, 날짜, 수준, 취약 영역)
Example / 예시:
### Step 6: Wrap Up
After saving, inform the user:
(저장 완료 후 안내)
### Rules
1. **Use the selected language** - from Step 0. Only code in English. (선택한 언어로 작성)
2. **Keep it concise** - core ideas only, no long-winded explanations (간결하게, 핵심만)
3. **Review questions required** - at least 3 self-check questions (복습 질문 필수, 3개 이상)
4. **Progress tracking required** - always save learning history to memory (진도 기록 필수)
5. **No emojis** - clean Markdown only (이모지 사용 금지)