Back to skills
SkillHub ClubShip Full StackFull Stack

session-search

Imported from https://github.com/atondwal/config.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
0
Hot score
74
Updated
March 19, 2026
Overall rating
C2.0
Composite score
2.0
Best-practice grade
C60.0

Install command

npx @skill-hub/cli install atondwal-config-session-search

Repository

atondwal/config

Skill path: .claude/skills/session-search

Imported from https://github.com/atondwal/config.

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: atondwal.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install session-search into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/atondwal/config before adding session-search to shared team environments
  • Use session-search for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: session-search
description: Search through historical Claude sessions for code, conversations, and commands. Use when user asks about previous sessions, past conversations, "did I ever", "find in history", or wants to retrieve code/info from earlier chats.
---

# Session Search

Search through your Claude session history stored in `~/.claude/projects/`.

## Usage

Run the search script with a regex or keyword pattern:

```bash
python ~/.claude/skills/session-search/search.py "pattern" [max_results]
```

## Examples

```bash
# Find sessions mentioning a specific function
python ~/.claude/skills/session-search/search.py "def parse_config"

# Find discussions about a topic
python ~/.claude/skills/session-search/search.py "kubernetes|docker"

# Find code with specific imports
python ~/.claude/skills/session-search/search.py "from fastapi import"

# Limit results
python ~/.claude/skills/session-search/search.py "error" 10
```

## Output

Returns matches with:
- Session slug/ID and project path
- Timestamp
- Role (user/assistant)
- Matching content with surrounding context
- 1 message before/after for context

Results are sorted by recency (newest first), limited to 20 by default.
session-search | SkillHub