JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q52700F
  • License MIT

Search and analyze Claude Code session transcripts to recover context after compaction

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (session-recall) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    session-recall

    Claude Code forgets everything after context compaction. This gets it back.

    npx session-recall "the thing you lost"

    The problem

    When Claude Code compacts context, you get a vague summary. Details vanish: decisions, error solutions, specific commands that worked, corrections you gave. You're left grepping through JSON soup in ~/.claude/projects/.

    session-recall parses those JSONL transcripts properly. It extracts human-readable messages, tool calls, errors, and patterns, so you find what you need in seconds.

    Search any past session

    Find exactly what was lost after compaction:

    session-recall search demo

    Analyze your sessions

    --report finds retry loops, errors, user corrections, inflated self-scores, and generates CLAUDE.md rules to prevent the same mistakes:

    session-recall report demo

    Cross-session patterns

    --all analyzes your last N sessions to find recurring problems:

    $ session-recall --all 10
    
    CROSS-SESSION SUMMARY (10 sessions)
      Total tool calls: 4351 | Total errors: 165
    
    RECURRING RETRY PATTERNS
      Bash: retried in 7/10 sessions (avg 4.2x when it happens)
    
    SELF-SCORING ACCURACY
      185 scores across 10 sessions (avg 7.7/10)
      20/185 (11%) had user issues after
    
    RECURRING ERROR TYPES
      COMMAND_FAILED: in 8/10 sessions
      FILE_NOT_FOUND: in 6/10 sessions

    Deep analysis via Gemini

    --deep sends structured session data to Gemini for project-specific insights instead of generic advice:

    $ session-recall --report --deep
    
    DEEP ANALYSIS (via Gemini)
    
    1. PROJECT CONTEXT: Building a video generation pipeline with Remotion.
    
    2. CLAUDE.MD RULES:
       - When ElevenLabs returns 429, wait 30s before retry. Agent wasted 20 calls.
       - Always check ffmpeg output file exists before proceeding to next step.
       - User wants narration synced with visual transitions, not just content.
    
    3. BIGGEST TIME WASTER: 47 minutes retrying a Bash command blocked by a
       pre-commit hook. Switch approach after first hook rejection.

    All commands

    # Search
    session-recall "keyword"              # Find keyword in current session
    session-recall "error" "deploy"       # AND search (both must match)
    session-recall --recent 10            # Last 10 messages (no tool noise)
    session-recall --decisions            # Find decision points
    session-recall --tools "Edit"         # Search tool calls only
    session-recall --list                 # List all sessions
    
    # Pin a session (auto-namespaced per Claude process)
    session-recall --pin-by "project-x"   # Pin session containing keyword
    session-recall --unpin                # Remove pin
    
    # Analyze
    session-recall --report               # Errors, retries, corrections, rules
    session-recall --report --deep        # + Gemini project-specific insights
    session-recall --all                  # Cross-session patterns (last 10)
    session-recall --all 20 --deep        # Cross-session + Gemini

    Setup

    npx session-recall --help

    For deep analysis, add a Gemini key:

    mkdir -p ~/.config/session-recall
    echo "your-gemini-key" > ~/.config/session-recall/gemini-key
    chmod 600 ~/.config/session-recall/gemini-key

    Or set GEMINI_API_KEY as an env var.

    Part of Building Open

    Open-source tools for Claude Code power users:

    License

    MIT