# Search Memory

> Search past conversations using semantic search. Use when user asks about previous discussions or wants to recall past information.

- Skill: `couzip/search-memory` (Agent Skill)
- Install (CLI): `npx skillmds@latest add couzip/search-memory`
- Raw SKILL.md: https://api.skillmd.com/api/skills/couzip/search-memory/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: couzip (https://skillmd.com/u/couzip)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/couzip/search-memory

---


# Search Past Conversations

Search past conversations using semantic search.

## Argument Check

If `$ARGUMENTS` is empty, respond: "Please provide a search query."

**Search query:** $ARGUMENTS

## Steps

### 1. Execute Search

Call `mcp__cc-forever-mcp__retrieve_memory`:

```json
{
  "query": "$ARGUMENTS",
  "n_results": 5,
  "threshold": 0.3
}
```

### 2. Format Results

Display results sorted by similarity:

```
Related past conversations:

### 1. (Similarity: 85%)
**Question:** {past question}
**Answer:** {summary of past answer}
**Date:** {timestamp}
**Project:** {project}

---

### 2. (Similarity: 72%)
...
```

### 3. Synthesized Answer

Based on the search results, provide an answer to the user's question:

```
---

Based on past conversations:

{answer to the question}
```

## No Results

If no relevant results found:

```
No past conversations found for "{query}".

Tips:
- Try different keywords
- Use /cc-forever:index to save conversations first
```

