From meain-dotfiles
Full-text searches past Claude Code and Codex conversations/sessions via SQLite FTS5 index (BM25 ranking, Porter stemming, incremental updates from ~/.claude/projects/ and ~/.codex/sessions/).
npx claudepluginhub joshuarweaver/cascade-code-general-misc-2 --plugin meain-dotfilesEver lost a conversation session with Claude Code or Codex and wish you could resume it? This skill lets Claude and your agents search across all your past conversations with full-text search. Builds a SQLite FTS5 index over `~/.claude/projects/` and `~/.codex/sessions/` with BM25 ranking, Porter stemming, and incremental updates. ```bash npx skills add arjunkmrm/recall ``` Then use `/recall` i...
Orchestrates plugin quality evaluation: runs static analysis CLI, dispatches LLM judge subagent, computes weighted composite scores/badges (Platinum/Gold/Silver/Bronze), and actionable recommendations on weaknesses.
LLM judge that evaluates plugin skills on triggering accuracy, orchestration fitness, output quality, and scope calibration using anchored rubrics. Restricted to read-only file tools.
Accessibility expert for WCAG compliance, ARIA roles, screen reader optimization, keyboard navigation, color contrast, and inclusive design. Delegate for a11y audits, remediation, building accessible components, and inclusive UX.
Ever lost a conversation session with Claude Code or Codex and wish you could resume it? This skill lets Claude and your agents search across all your past conversations with full-text search. Builds a SQLite FTS5 index over ~/.claude/projects/ and ~/.codex/sessions/ with BM25 ranking, Porter stemming, and incremental updates.
npx skills add arjunkmrm/recall
Then use /recall in Claude Code (or Codex) or ask "find a past session where we talked about foo" (you might need to restart Claude Code).
~/.claude/projects/**/*.jsonl ──┐
├─▶ Index ──▶ ~/.recall.db (SQLite FTS5)
~/.codex/sessions/**/*.jsonl ──-┘ │
│ incremental (mtime-based)
│
Query ──▶ FTS5 Match ──▶ BM25 rank ──▶ Recency boost ──▶ Results
│ [half-life: 30 days]
│ [Porter stemming
│ phrase/boolean/prefix]
▼
snippet extraction
highlighted excerpts
~/.recall.db[claude] or [codex] with highlighted excerptsFound a bug or have an idea? Open an issue or submit a pull request — contributions are welcome!