memory-recall
Searches the Obsidian vault for prior knowledge, past decisions, and accumulated learnings — and finds unexpected connections between domains. Make sure to use this skill whenever the user asks "do I have notes on", "what did I write about", "find in my vault", "check my notes about", "have I learned about", "what did I decide about", "connect [A] and [B]", "find bridges between", or any phrasing that implies consulting personal vault knowledge rather than answering from general knowledge. Also fires when user references prior sessions or wants to know what they already know about a topic.
What this skill does
# Memory Recall Surface what the user already knows from their vault before answering from training data. The vault is the source of truth for personal decisions, accumulated learnings, and prior context. ## Recall Flow Run steps in order — stop as soon as you have strong results. ### Step 1 — Search Resources first (for concepts and reference knowledge) ```bash obsidian search query="<topic>" ``` For concepts, wiki pages, and reference material, check `3 - Resources/` first: ```bash obsidian files folder="3 - Resources/" format=json ``` ### Step 2 — Check TIL for past learnings ```bash obsidian files folder="3 - Resources/TIL/" format=json ``` Filter by date range if the user specified a time window. Read the most relevant TIL notes directly. ### Step 3 — Check Projects for project-specific context ```bash obsidian files folder="1 - Projects/" format=json ``` Read the relevant project note if the topic is project-specific. ### Step 4 — Keyword fallback If the above searches miss, try a context search for surrounding lines: ```bash obsidian search:context query="<topic>" limit=10 ``` ### Step 5 — Scan recent daily notes (last resort) If the topic is recent and might only live in daily notes: ```bash obsidian read path="2 - Areas/Daily Ops/2026/YYYY-MM-DD.md" ``` ## How to Report Findings **Always cite the source** — include the file path so the user can navigate to the note: `3 - Resources/TIL/til-2026-03-12.md` **Synthesize, don't dump.** If multiple notes cover the topic, summarize what they collectively say. Paste full content only if explicitly requested. **Be honest about gaps.** If the vault doesn't cover the topic, say so explicitly. Then offer to answer from general knowledge. **Distinguish note types:** - TIL notes (`3 - Resources/TIL/`) = first-person learning captures - Resource notes (`3 - Resources/`) = reference and wiki material - Project notes (`1 - Projects/`) = project-specific context and decisions ## Connection Discovery Mode When the user asks to connect two domains (e.g., "connect design and engineering"): ### Step 1 — Map Each Domain ```bash obsidian search query="<domain A>" format=json obsidian search query="<domain B>" format=json ``` Read key notes. Follow backlinks 2–3 hops from hub notes in each domain. If one domain has significantly fewer notes, go 3–4 hops deep on the sparse one — the less-explored side is where surprises are. ### Step 2 — Find Overlaps - **Shared references**: notes in both domains' backlink chains - **Shared themes**: same concept appearing in both, even if notes aren't linked - **Shared patterns**: both domains facing the same problem or stuck on the same question ### Step 3 — Synthesize For each bridge found: ``` Bridge [#]: [Title] In Domain A: [how it appears] In Domain B: [how it appears differently] The connection: [what links them] Depth: Surface / Structural / Foundational Implication: [what this suggests for either domain] ``` Surface the strongest bridge and any **missing links** — connections that should exist but haven't been made. Suggest specific notes to link or create. **The test**: the best output makes you see both domains differently. Don't force connections — if domains genuinely don't connect, say so. ## What NOT to do - Don't write or modify notes — recall is strictly read-only - Don't hallucinate citations — if you can't find a note, say "no match found" - Don't dump full notes unless explicitly asked
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.