peek

Searches mem0 memories and displays compact one-line results or single memory lookups by ID.

1|Updated Jan 13, 2022
One-click install
npx skills add https://github.com/jayho-k/TIL --skill peek-jayho-k
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: peek
Source: https://github.com/jayho-k/TIL/tree/main/AI/mem0/code/mem0_code_analize/mem0/integrations/mem0-plugin/skills/peek
Command: npx skills add https://github.com/jayho-k/TIL --skill peek-jayho-k

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When working with a mem0 memory store, you often need a fast answer to questions like "did we record that decision?" without loading full category detail. This Skill performs lightweight memory searches and direct ID lookups, returning compact one-line summaries instead of verbose output. ## Core Features & Use Cases - Quick Memory Search: Runs parallel broad and decision-targeted search_memories queries with reranking, then deduplicates results. - Direct ID Lookup: Detects bare hex IDs, full UUIDs, and [mem0:<id>] citation references to fetch a specific memory via get_memory. - Compact Display: Formats results as one-liners with type, truncated content, date, and short citation ID. - Use Case: While reviewing a pull request, you see a [mem0:a3f8b2c1] citation and want to verify the recorded decision. Run a peek lookup to instantly retrieve that memory's summary without browsing the full memory tour. ## Quick Start Ask the assistant to peek at mem0 memories for "auth middleware" to see compact matching results.

Frequently Asked Questions about peek

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I quickly search mem0 memories for a topic?

Provide a search query such as "auth middleware" and the Skill runs two parallel search_memories calls: one broad search and one filtered to decision-type memories. Results are deduplicated and shown as compact one-line summaries with dates and citation IDs.

How do I look up a mem0 memory by its ID?

Pass a bare hex short ID, a full UUID, or a citation reference like [mem0:a3f8b2c1] as the query. The Skill detects the ID pattern and calls get_memory directly, falling back to a text search if the ID is not found.

What is the difference between mem0 peek and mem0 tour?

Peek is a lighter-weight lookup that returns compact one-line results for quick searches and ID resolution. Tour provides full category detail for in-depth browsing of the memory store.

Why does my mem0 peek search return no results?

No results appear when no memories match the query for the given user_id and app_id filters. Try broadening the query terms, or verify you are searching the correct project scope.

Can mem0 peek resolve citation references in code reviews?

Yes. Paste the citation in the form [mem0:<hex>] and the Skill extracts the hex portion, looks up the memory by ID, and displays the single matching result with its type, content, and date.