Agent skill
reawaken
Restore context and momentum via Pratyabhijñā (recognition)
Install this agent skill to your Project
npx add-skill https://github.com/genomewalker/cc-soul/tree/main/skills/reawaken
SKILL.md
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
kriya
Review soul discoveries (fixes, improvements, corrections) one by one, accept or discard each, implement accepted ones, build chitta, and optionally release.
cc-soul-daemon
Start, stop, or check the chittad daemon
ultrathink
First-principles deep thinking for significant problems
long-task
Initialize or resume a long-running task session. Use when starting a complex multi-session task, resuming work from a previous session, or when the user mentions claude-progress.json or long-running work.
shepherd
Autonomous pipeline monitor using sense-think-act loop. Watches snakemake/nextflow jobs, detects errors, applies fixes from memory, restarts on failure.
learn
Didn't find tool you were looking for?