search-memory
Search memory store when past insights would improve response. Recognize when user's stored breakthroughs, decisions, or solutions are relevant. Search proactively based on context, not just explicit requests.
What this skill does
# Search Memory ## When to Search (Autonomous Recognition) **Strong signals:** - Continuity: Current topic connects to prior work - Pattern match: Problem resembles past solved issue - Decision context: "Why/how we chose X" implies documented rationale - Recurring theme: Topic discussed in past sessions - Implicit recall: "that approach", "like before" **Contextual signals:** - Complex debugging (may match past root causes) - Architecture discussion (choices may be documented) - Domain-specific question (conventions likely stored) **Skip when:** - Fundamentally new topic - Generic syntax questions - Fresh perspective explicitly requested ## Tool Usage Use `nmem` CLI with `--json` flag for programmatic search: ```bash # Basic search nmem --json m search "3-7 core concepts" # With filters nmem --json m search "API design" --importance 0.8 # With labels (multiple labels use AND logic) nmem --json m search "authentication" -l backend -l security # With time filter nmem --json m search "meeting notes" -t week ``` If the runtime already knows the active project or agent lane, add `--space "<space name>"`. **Query:** Extract semantic core, preserve terminology, multi-language aware **Filters:** - `--importance MIN`: Minimum importance score (0.0-1.0) - `-l, --label LABEL`: Filter by label (can specify multiple) - `-t, --time RANGE`: Time filter (today, week, month, year) - `-n NUM`: Limit number of results (default: 10) **JSON Response:** Parse `memories` array, check `score` field for relevance Use thread search when the user is really asking about a prior conversation, previous session, or exact discussion: ```bash nmem --json t search "query" --limit 5 ``` If a memory result includes `source_thread` or thread search finds the likely conversation, inspect it progressively instead of loading the whole thread at once: ```bash nmem --json t show <thread_id> --limit 8 --offset 0 --content-limit 1200 ``` Increase `--offset` only when more messages are actually needed. **Scores:** 0.6-1.0 direct | 0.3-0.6 related | <0.3 skip **Examples:** ```bash # Search with importance filter nmem --json m search "database optimization" --importance 0.7 # Search with multiple labels nmem --json m search "React patterns" -l frontend -l react # Search recent memories nmem --json m search "bug fix" -t week -n 5 ``` ## Response Found: Synthesize, cite when helpful None: State clearly, suggest distilling if current discussion valuable ## Troubleshooting If `nmem` is not in PATH: `pip install nmem-cli`, or on Arch Linux `yay -S nmem-cli` / `paru -S nmem-cli` For remote servers: run `nmem config client set url https://...` and `nmem config client set api-key ...` once on this machine. Run `/status` to check server connection.
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.