From learn-quest
Save current work's learning points for later study. Use when completing a task or when you want to bookmark something to learn later.
How this skill is triggered — by the user, by Claude, or both
Slash command
/learn-quest:skills/stashThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The user wants to save learning points from the current work for later study.
The user wants to save learning points from the current work for later study.
When users are busy working, they don't have time to learn deeply. Stash allows them to:
Read settings from ~/.learn-quest/config.json:
If config doesn't exist, use defaults.
Save to: ~/.learn-quest/stash/
Filename format: {date}_{id}.json (e.g., 2025-01-28_abc123.json)
{
"id": "abc123",
"date": "2025-01-28",
"title": "Auto-generated title from summary",
"memo": "User's optional memo",
"summary": "Brief summary of what was done",
"learning_points": [
{
"topic": "Main concept",
"context": "Why this was used/done",
"tags": ["tag1", "tag2"]
}
],
"code_snippets": [
{
"description": "What this code does",
"code": "// code here",
"language": "javascript"
}
],
"learned": false,
"learned_at": null
}
/learn-quest:stash <memo>Example: /learn-quest:stash 로그인 기능 완료
/learn-quest:stashWhen stashing, analyze the conversation for:
🎮 LEARN QUEST - Stash
━━━━━━━━━━━━━━━━━━━━━
✅ 저장 완료!
📦 [Auto-generated title]
[Summary of what was captured]
💡 학습 포인트 [N]개 저장됨
• [point 1]
• [point 2]
나중에 /learn-quest:study 로 학습하세요!
🎮 LEARN QUEST - Stash
━━━━━━━━━━━━━━━━━━━━━
✅ Saved!
📦 [Auto-generated title]
[Summary of what was captured]
💡 [N] learning points saved
• [point 1]
• [point 2]
Study later with /learn-quest:study
When completion is detected and stash.prompt_on_complete is true, the hook will display:
🎮 LEARN QUEST - Stash
━━━━━━━━━━━━━━━━━━━━━
📦 지금은 바쁘시죠?
학습 포인트만 저장해두고, 나중에 천천히 공부하세요.
1) 저장해두기
2) 괜찮아, 넘어갈게
If user selects 1, proceed with stash. If 2, skip.
~/.learn-quest/stash/ doesn't exist📦 저장할 학습 포인트가 없어요.
코드 작성이나 기술적인 작업을 한 후에 시도해보세요!
❌ 저장 실패: 파일 권한 오류
~/.learn-quest/stash/ 디렉토리 권한을 확인해주세요.
npx claudepluginhub gilverse-icn/learn-quest --plugin learn-questGenerates learning notes from conversations: Classic mode for concise recaps, Mastery for detailed rules, misconceptions, and Core Loop code history. Supports Korean/English with beginner-friendly terms.
Persists learnings into a 5-layer memory hierarchy (CLAUDE.md files, memory/MEMORY.md) and consolidates by pruning outdated entries and promoting recurring patterns. Triggers on 'extract learnings', 'remember', 'dream'.
Saves, searches, recalls, digests, and prunes project learnings that persist across sessions. Use when the user wants to record knowledge or load prior learnings before starting work.