/SKILL.md
Search past Claude Code and Codex sessions. Triggers: /memex, "search old conversations", "find a past session", "recall a previous conversation", "search session history", "what did we discuss", "remember when we"
npx skillsauth add awesome-skills/recall memexInstall 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.
Search all past Claude Code and Codex sessions using full-text search with BM25 ranking.
python3 <MEMEX_SKILL_DIR>/scripts/recall.py [QUERY] [--list] [--project PATH] [--days N] [--source claude|codex] [--limit N] [--offset N] [--summary-len N] [--no-summary] [--include-subagents] [--reindex] [--json] [--version] [--doctor] [--fix]
<MEMEX_SKILL_DIR> varies by installation. Common examples:
~/.claude/skills/memex~/.agents/skills/memex# Simple keyword search
python3 <MEMEX_SKILL_DIR>/scripts/recall.py "bufferStore"
# Phrase search (exact match)
python3 <MEMEX_SKILL_DIR>/scripts/recall.py '"ACP protocol"'
# Boolean query
python3 <MEMEX_SKILL_DIR>/scripts/recall.py "rust AND async"
# Prefix search
python3 <MEMEX_SKILL_DIR>/scripts/recall.py "buffer*"
# Filter by project and recency
python3 <MEMEX_SKILL_DIR>/scripts/recall.py "state machine" --project ~/my-project --days 7
# Search only Claude Code sessions
python3 <MEMEX_SKILL_DIR>/scripts/recall.py "buffer" --source claude
# Search only Codex sessions
python3 <MEMEX_SKILL_DIR>/scripts/recall.py "buffer" --source codex
# Force reindex
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --reindex "test"
# List recent sessions
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --list --limit 20
# List mode with optional text filter
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --list "state machine" --limit 20
# Machine-readable JSON output
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --json --source codex --list "auth api"
# Paginate results
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --list --limit 10 --offset 10
# Include subagent sessions (hidden by default)
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --list --include-subagents
# Hide summary lines
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --list --no-summary
# Shorter summaries
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --list --summary-len 80
# Show installed version metadata
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --version
# Run local health checks
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --doctor
# Run doctor with safe auto-fixes
python3 <MEMEX_SKILL_DIR>/scripts/recall.py --doctor --fix
bufferStore — matches stemmed variants (e.g., "discussing" matches "discuss")"ACP protocol" — exact phrase matchrust AND async, tauri OR electron, NOT deprecatedbuffer* — matches bufferStore, bufferMap, etc."state machine" AND testTo resume a session, cd into the project directory and use the appropriate command:
# Claude Code sessions [claude]
cd /path/to/project
claude --resume SESSION_ID
# Codex sessions [codex]
cd /path/to/project
codex resume SESSION_ID
Each result includes a File: path. Use it to read the raw transcript (auto-detects format):
python3 <MEMEX_SKILL_DIR>/scripts/read_session.py <File-path-from-result>
If results are missing File: paths, run --reindex to backfill.
~/.memex.db (SQLite FTS5, auto-migrated from legacy paths)~/.claude/projects/ (Claude Code) and ~/.codex/sessions/ (Codex)--include-subagents to show them--project matches an exact project path or child paths only--fix can be used with --doctor to apply safe automatic fixes (e.g. auto-index when DB is empty)<local-command-caveat>, <system-reminder>, etc.) is filtered[claude] or [codex] tags to indicate the sourcedevelopment
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.