Reawaken: Pratyabhijñā
[pratyabhijñā] re-cognition = recognizing what was known | not loading state→becoming aware
process:
1. ledger_load(project?)→soul_state+work_state+continuation
2. environment: git status | git log -5 | git diff --stat
3. soul: soul_context + recall(recent work)
4. semantic: recall(current directory/files) + recall(task type)
recognize thread:
uncommitted changes→work in progress
recent commits→what's next?
ledger todos→pending tasks
ledger next_steps→continuation points
Process
- Load checkpoint - Use
ledger_loadto get most recent state - Check environment - Git status, recent commits, changes
- Query soul - Get soul_context, recall relevant memories
- Synthesize - Combine ledger + environment + memories
- Continue - Resume work from where we left off
Tool Calls
Load checkpoint
chitta ledger_load --project "cc-soul"
Returns structured data:
{
"found": true,
"id": 123,
"session_id": "previous-session",
"project": "cc-soul",
"mood": "confident",
"coherence": 0.85,
"confidence": 0.90,
"todos": [{"content": "...", "status": "..."}],
"active_files": ["path/to/file.cpp"],
"decisions": ["Chose X because Y"],
"next_steps": ["First step", "Second step"],
"blockers": [],
"discoveries": ["Important insight"],
"snapshot": "# Full checkpoint text..."
}
List recent checkpoints
chitta ledger_list --project "cc-soul" --limit 5
Get specific checkpoint
chitta ledger_get --id 123
Output Format
## Pratyabhijñā: Recognition
### From Ledger
- **Session**: [session_id] at [timestamp]
- **Mood**: [mood] (coherence: [N]%, confidence: [N]%)
- **Active files**: [list]
- **Key decisions**: [list]
### Pending Work
[todos with status != done]
### From Environment
- **Git status**: [uncommitted changes summary]
- **Recent commits**: [last 3-5 commits]
- **Current branch**: [branch name]
### Semantic Recognition
[Relevant memories from recall]
### Continuing With
Based on ledger next_steps and current state:
1. [First step]
2. [Second step]
recognition through understanding, not storage
Example
# Load most recent checkpoint for current project
chitta ledger_load --project "cc-soul"
# If no project filter, loads most recent across all projects
chitta ledger_load
# List available checkpoints to choose from
chitta ledger_list --project "cc-soul" --limit 5
Notes
- If no checkpoint found, fall back to git + soul_context analysis
- Ledger data provides structured state; soul provides semantic context
- Recognition = becoming aware of what was known, not just loading data