Session Recap
Systematically document Claude Code sessions into the knowledge bank.
Knowledge Bank Location: Read from ~/.claude/plugins/config/second-brain/config.json. Configure via skills/common/setup_kb_path.sh --configure.
Philosophy: Knowledge Bank = BRAIN, not ARCHIVE. Preserve workflows, edge cases, decisions—not verbose traces. Target 95% size reduction, 100% actionable knowledge.
Invocation
Recommended Workflow
Important: Session recap should run in a new session after the work session ends. This ensures the full transcript is captured.
-
During your work session: Note down the session path displayed at startup
- Claude Code shows:
Session: /path/to/.claude/projects/.../session-id.jsonl - Save this path for later
- Claude Code shows:
-
Exit the work session: The final transcript is automatically saved
-
Start a new session: Begin fresh to run the recap
claude -
Invoke session-recap with the path:
Recap the session at /path/to/session-id.jsonlOr:
/second-brain:session-recap /path/to/session-id.jsonl
Why a New Session?
Running session-recap in the same session would miss the final conversation context. The transcript must be fully saved before knowledge extraction can begin.
Manual Invocation
- Slash command:
/second-brain:session-recap - Skill tool:
Skill({ skill: "second-brain:session-recap" })
Visibility Settings
| Setting | Value | Effect |
|---|---|---|
user-invocable | true | Visible in slash menu, Skill tool allowed |
Quick Reference
| Input | Output |
|---|---|
| Session folder path | Daily log + extracted docs |
| Current conversation | Daily log + extracted docs |
| Document Type | Cross-Refs Required |
|---|---|
| Technical docs | 10-15 (MUST) |
| Reflections | 5-8 (MUST) |
RFC 2119 Keywords
This skill uses RFC 2119 keywords:
- MUST: Absolute requirement, cannot be skipped
- SHOULD: Valid exceptions may exist but require conscious weighing
- MAY: Truly optional
Workflow
Phase 1: ANALYZE
Goal: Load session data and extract facts.
1.1 Load Session Data
If session folder provided:
# Find latest segment
LATEST_SEGMENT=$(ls -d "$SESSION_FOLDER"/segment-* 2>/dev/null | grep -v 'segment-final' | sort -t- -k2 -n | tail -1)
[ -z "$LATEST_SEGMENT" ] && [ -d "$SESSION_FOLDER/segment-final" ] && LATEST_SEGMENT="$SESSION_FOLDER/segment-final"
# Read transcript
TRANSCRIPT="$LATEST_SEGMENT/transcript.jsonl"
If no folder: Analyze current conversation context.
1.2 Detect Project
./scripts/parse_transcript.sh "$TRANSCRIPT" project
| Path Pattern | Project | KB Location |
|---|---|---|
/.claude/ | cc | projects/cc/ |
1.3 Extract Session Facts
./scripts/parse_transcript.sh "$TRANSCRIPT" all
Extracts: user requests, files read, files modified, commands, errors, subagents, insights.
Phase 2: PLAN
Goal: Determine what to document and whether reflection is required.
2.1 Reflection Decision Gate (MUST complete)
Answer these questions:
| Question | Answer |
|---|---|
| 1. Did this session involve debugging or problem-solving? | YES / NO |
| 2. Did this session discover a workflow pattern? | YES / NO |
| 3. Did this session encounter tool/process friction? | YES / NO |
Decision:
- If ANY answer is YES → MUST create at least 1 reflection
- If ALL answers are NO → MAY skip reflections
Record decision for Phase 4 verification.
2.2 Search Cross-References (MUST complete before Phase 3)
./scripts/search_cross_references.sh "keyword"
Target 10-15 cross-references distributed across:
- Concepts (3-5)
- Components (3-5)
- Best Practices (1-2)
- Recent Sessions (1-2)
- MOCs (1-2)
See cross-reference-guide.md for methodology.
2.3 External Document Distillation (MUST complete when investigation docs exist)
If external investigation documents exist (100+ KB):
- MUST detect documents for distillation:
./scripts/detect_external_docs.sh "$SESSION_FOLDER"
- MUST analyze distillation requirements:
./scripts/analyze_for_distillation.sh "$DOC_PATH"
See distillation-guide.md for detailed methodology.
2.4 Insight Classification (SHOULD complete when insights exist)
If insights were extracted in Phase 1.3, classify each:
| Insight Content | Classification | Action |
|---|---|---|
| Reveals architectural pattern | Concept | SHOULD create concept doc |
| Describes component behavior | Component | SHOULD update/create component doc |
| Documents methodology | Best Practice | SHOULD create best practice doc |
| Reveals workflow pattern | Reflection | SHOULD create reflection |
| Identifies anti-pattern | Reflection | SHOULD create reflection |
| General educational context | Daily Log | MUST include in daily log |
Record classifications for Phase 3.
Phase 3: CREATE
Goal: Write documentation in priority order.
Priority Order
- Concept docs - MUST if patterns discovered OR insight reveals architecture
- Component docs - MUST if components modified OR insight describes behavior
- Best practice docs - SHOULD if methodology identified OR insight documents technique
- Process reflections - MUST if Phase 2.1 decision = required OR insight reveals workflow/anti-pattern
- Daily session log - MUST (always required, includes all insights)
Document Locations
| Type | Location | Template |
|---|---|---|
| Concept | {KB}/projects/{project}/concepts/ | concept-template.md |
| Component | {KB}/projects/{project}/components/ | component-template.md |
| Best Practice | {KB}/projects/{project}/best-practices/ | best-practice-template.md |
| Reflection | {KB}/reflections/{category}/ | process-reflection-template.md |
| Daily Log | {KB}/daily-log/YYYY-MM-DD [Topic].md | daily-log-template.md |
Reflection Categories
| Category | Folder | Trigger |
|---|---|---|
| Architecture Patterns | architecture-patterns/ | Threading, state, design patterns |
| Development Workflow | development-workflow/ | Utility discovery, test-first, deps |
| Anti-Patterns | anti-patterns/ | Wrong approaches, confusion |
| DX Improvements | dx-improvements/ | Search gaps, missing docs, tools |
Note: These are example categories. The system discovers reflection categories dynamically from subdirectories in
{KB}/reflections/. Create any category folders that fit your workflow.
Cross-Reference Requirements
Every document MUST include:
- Technical docs: 10-15 WikiLinks (minimum 10)
- Reflections: 5-8 WikiLinks (minimum 5)
Verify with:
./scripts/count_wikilinks.sh document.md
YAML Frontmatter (MUST include)
---
title: Document Title
aliases: [Alt 1, Alt 2]
tags: [category, topic]
type: concept|component|best-practice|daily-log|reflection
created: YYYY-MM-DD
modified: YYYY-MM-DD
project: Claude Code
---
Obsidian Syntax (MUST invoke when obsidian skills installed)
When obsidian skills are available, MUST invoke before creating knowledge bank documents:
/obsidian:obsidian-markdown
This ensures proper Obsidian Flavored Markdown syntax for:
- WikiLinks:
[[Note]],[[Note#Heading]],[[Note|Display]] - Callouts:
> [!note],> [!warning],> [!tip], etc. - Properties (YAML frontmatter)
- Tags:
#tag,#nested/tag - Embeds:
![[Note]],![[image.png]] - Block references: `[