toolkit-recall
Search past decisions, prior research, conversation history, monorepo docs, and fetched web pages. Use toolkit recall search to find context from previous work, and toolkit fetch to save web pages for future search.
What this skill does
# Toolkit Recall Skill Local RAG system for searching across Claude plans, research, memories, fetched docs, and monorepo docs. ## When to Use - **Before answering knowledge questions**: run `toolkit recall search "<query>"` to check if relevant context exists in plans, research, or previously fetched docs - **When fetching docs or web pages**: use `toolkit fetch <url>` instead of raw `lightpanda fetch` — it saves and indexes the content for future search - **When the user creates an important document**: run `toolkit recall add <path>` to index it - **Periodically**: run `toolkit recall reindex` to pick up new files in watched directories ## Commands ### Fetch Web Pages ```bash # Fetch a page (lightpanda, fast, handles SPAs) toolkit fetch <url> # Fetch with PinchTab (real Chrome, for sites that block lightpanda) toolkit fetch <url> --browser # Verbose output (shows timing, engine, save path) toolkit fetch <url> --verbose # Crawl a docs site (coming soon) toolkit fetch <url> --crawl --depth 2 ``` Fetched pages are saved to `~/.recall/fetched/<domain>/<slug>.md` with YAML frontmatter. ### Search ```bash # Hybrid semantic + keyword search toolkit recall search "vector database embedding" # Limit results toolkit recall search "deployment" --limit 5 # Search mode: hybrid (default), semantic, keyword toolkit recall search "query" --mode keyword ``` ### Index Management ```bash # Index a file or directory toolkit recall add ~/Documents/notes/ # Remove from index toolkit recall remove ~/Documents/notes/old-file.md # Re-scan all watched directories toolkit recall reindex # Full re-index (re-embed everything, ignore content hashes) toolkit recall reindex --full ``` ### Status & Debugging ```bash # Full dashboard: index stats, daemon health, performance toolkit recall status # Performance deep-dive (latency histograms, throughput) toolkit recall status --perf # Full diagnostic check toolkit recall debug # View logs toolkit recall logs toolkit recall logs --follow toolkit recall logs --level error --since 1h ``` ### Daemon ```bash # Manage background watcher (auto-indexes on file changes) toolkit recall daemon start toolkit recall daemon stop toolkit recall daemon status # Run watcher in foreground (for testing) toolkit recall watch ``` ## Watched Directories These are automatically indexed by the daemon and `toolkit recall reindex`: | Directory | Source | | ---------------------------------- | ------------------- | | `~/.claude/plans/` | claude-plan | | `~/.claude-extra/**` | claude-extra | | `~/.claude-extra/research/` | claude-research | | `~/.claude/projects/*/memory/` | claude-memory | | `~/.recall/fetched/**` | fetched | | `~/.claude/projects/**` (\*.jsonl) | claude-conversation | | `~/git/monorepo/packages/docs/` | monorepo-docs | ## Troubleshooting ### "toolkit: command not found" Install the binary: ```bash cd ~/git/monorepo/packages/toolkit && ./install.sh ``` ### Search returns no results Check if the index has been built: ```bash toolkit recall status toolkit recall reindex ``` ### Fetch returns empty content Try PinchTab for sites that block lightpanda: ```bash toolkit fetch <url> --browser ```
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.