SE

session-navigation

Organizes and retrieves past session conversations and settings from the local Droid storage.

Install

mkdir -p .claude/skills/session-navigation && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16397" && unzip -o skill.zip -d .claude/skills/session-navigation && rm skill.zip

Installs to .claude/skills/session-navigation

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Navigate, search, and manage Droid sessions. Use when the user wants to: - List recent sessions - Search session history for specific topics or patterns - Resume a previous session - Get details about what was accomplished in a session - Find sessions by project, date, or content
280 chars✓ has a “when” triggerlonger than Claude Code's old 250-char listing cap (fine on current versions)
Beginner

Key capabilities

  • List recent Droid sessions
  • Search session history by content
  • Find sessions by project or date
  • Read session metadata and stats
  • Identify tool calls and user/assistant messages

How it works

The skill navigates the `~/.factory/sessions/` directory, which stores session conversations and settings, to list, search, and retrieve details about past Droid interactions.

Inputs & outputs

You give it
User query about past Droid sessions or content
You get back
List of sessions, search results, or details of a specific session (conversation, settings)

When to use session-navigation

  • Listing recent project sessions
  • Searching session history for previous tasks
  • Resuming interrupted development sessions
  • Auditing past project accomplishments

About this skill

Session navigation

Find your way around past Droid sessions. Maybe you want to pick up where you left off, find that thing you did last week, or just see what's been happening in a project.

Where sessions live

Sessions are in ~/.factory/sessions/, organized by project folder. Each project gets its own directory with the path encoded (slashes become dashes):

~/.factory/sessions/
├── -Users-enoreyes-code-work-myapp/
│   ├── <uuid>.jsonl
│   └── <uuid>.settings.json
├── -Users-enoreyes-code-projects-api/
│   ├── <uuid>.jsonl
│   └── <uuid>.settings.json
└── ...

Two files per session:

The conversation (.jsonl): Each line is a JSON object. First line has metadata (session id, title, working directory). Rest is the back-and-forth: user messages, assistant responses, tool calls.

The settings (.settings.json): Stats about the session. Which model, how long it ran, token counts, autonomy mode.

Finding sessions

List project folders

# See all project folders with sessions
ls ~/.factory/sessions/

# Find folders for a specific project (partial match)
ls ~/.factory/sessions/ | grep "myapp"

Recent sessions in a project

# List sessions by date for a project
ls -lt ~/.factory/sessions/-Users-enoreyes-code-work-myapp/

# Get titles of recent sessions
for f in $(ls -t ~/.factory/sessions/-Users-enoreyes-code-work-myapp/*.jsonl | head -10); do
  echo "=== $f ==="
  head -1 "$f" | jq -r '.title // "Untitled"'
done

Search by content

# Search across ALL sessions
rg "authentication" ~/.factory/sessions/

# Search within a specific project
rg "bug fix" ~/.factory/sessions/-Users-enoreyes-code-work-myapp/

# See matches in context
rg -C 2 "login" ~/.factory/sessions/-Users-enoreyes-code-projects-api/

Find which project has sessions about something

# Which projects have sessions mentioning "redis"?
rg -l "redis" ~/.factory/sessions/ | cut -d'/' -f1-5 | sort -u

Reading a session

Once you've found a session file:

# The metadata (title, working directory)
head -1 ~/.factory/sessions/-Users-enoreyes-code-work-myapp/<uuid>.jsonl | jq .

# Session stats (model, tokens, duration)
cat ~/.factory/sessions/-Users-enoreyes-code-work-myapp/<uuid>.settings.json | jq .

# How long was this conversation?
wc -l ~/.factory/sessions/-Users-enoreyes-code-work-myapp/<uuid>.jsonl

User messages have "role": "user", assistant responses have "role": "assistant". Tool calls show what commands ran and what files got touched.

Common situations

"What did I work on in this project?" List that project's session folder, check dates, read through the conversation files.

"Find that session where we fixed the login bug" Search for "login" or "auth" across sessions. Once you find it, read the conversation.

"Resume what I was doing" Find the session, read through what happened, summarize the key decisions before continuing.

"How much have I been using Droid?" The settings files have token counts and active time. Sum across sessions if needed.

Tips

Use rg (ripgrep) instead of grep. It's faster and handles nested folders better.

Project paths have slashes replaced with dashes. /Users/me/code/app becomes -Users-me-code-app.

The session title isn't always helpful. Sometimes you need to read the conversation to know what it was about.

Sessions can contain sensitive stuff. Be careful about what you surface.

When not to use it

  • When not working with Droid sessions
  • When sessions are not stored in the `~/.factory/sessions/` directory
  • When not needing to analyze past interactions or resume work

Limitations

  • Sessions are stored locally in `~/.factory/sessions/`.
  • Session titles are not always helpful for content identification.
  • Sessions can contain sensitive information.

How it compares

This skill provides direct access and search capabilities for Droid's structured session history, enabling specific retrieval and analysis, unlike general file system browsing.

Compared to similar skills

session-navigation side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
session-navigation (this skill)02moReviewBeginner
notion-meeting-intelligence66moNo flagsIntermediate
resume-handoff36moNo flagsIntermediate
meeting-briefing26moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

notion-meeting-intelligence

openai

Prepare meeting materials with Notion context and Codex research; use when gathering context, drafting agendas/pre-reads, and tailoring materials to attendees.

656

resume-handoff

parcadei

Resume work from handoff document with context analysis and validation

333

meeting-briefing

anthropics

Prepare structured briefings for meetings with legal relevance and track resulting action items. Use when preparing for contract negotiations, board meetings, compliance reviews, or any meeting where legal context, background research, or action tracking is needed.

213

personal-assistant

ailabs-393

This skill should be used whenever users request personal assistance tasks such as schedule management, task tracking, reminder setting, habit monitoring, productivity advice, time management, or any query requiring personalized responses based on user preferences and context. On first use, collects comprehensive user information including schedule, working habits, preferences, goals, and routines. Maintains an intelligent database that automatically organizes and prioritizes information, keeping relevant data and discarding outdated context.

36

digital-brain

muratcankoylan

This skill should be used when the user asks to "write a post", "check my voice", "look up contact", "prepare for meeting", "weekly review", "track goals", or mentions personal brand, content creation, network management, or voice consistency.

15

meeting-sync

amanaiproduct

Sync new Granola meetings to local Knowledge folder. Use during morning planning, when user asks "what should I do today", or asks to review/sync meetings.

13

Search skills

Search the agent skills registry