dotfiles/claude-code/skills/session-resume/SKILL.md
Search and load previous Claude Code conversations. Use when user wants to find or resume a past session.
npx skillsauth add jimweller/dotfiles session-resumeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
STARTER_CHARACTER = 🔖
Search past conversations and help user resume them.
Platforms: Linux, macOS, Windows (Git Bash/WSL)
Run the script scripts/claude-search-resume:
# Search in current project
~/.claude/skills/session-resume/scripts/claude-search-resume
# Search globally (all projects)
~/.claude/skills/session-resume/scripts/claude-search-resume --global
# Search by keyword
~/.claude/skills/session-resume/scripts/claude-search-resume "deploy" --global
# Search by date range
~/.claude/skills/session-resume/scripts/claude-search-resume --from "2026-01-13 00:00" --to "2026-01-13 23:59"
```text
## Output
```text
1. [2026-01-14 10:27] /data/alexis/claude-tools (118 msgs)
💬 j'aimerais ajouter au site front une librairie...
▶ claude --resume b8c31c5f-2739-4179-94ea-5b63ef4cabee
```text
## Resume
Tell user to run:
```bash
claude --resume <session-id>
```text
## Examples
| User says | Command |
| -------------------------------- | ----------------------------------------------------------- |
| "find my recent conversations" | `scripts/claude-search-resume` |
| "find conversations about auth" | `scripts/claude-search-resume "auth" --global` |
| "what did we work on yesterday?" | `scripts/claude-search-resume --global --from "2026-01-13"` |
| "find my CRM sessions" | `scripts/claude-search-resume "crm" --global` |
testing
Search saved session transcripts for past decisions, actions, errors, and context that has left the current conversation window.
data-ai
Review a PRD for defects via Claude opus subagent.
development
Markdown authoring guidelines for formatting, code blocks, and structure. Use when writing or editing markdown files.
development
--- name: md-style description: README style guide for concise, direct documentation. Use when writing or editing README files. ß--- <!-- markdownlint-disable-file MD041 --> # README Style Guide Write concise, direct README files for experienced engineers. ## Principles - **No fluff** - Skip tables of contents, verbose explanations, development history - **No roadmaps** - Document current state only, not plans or decisions. Readme is an engineering specification. Not a project plan or chan