🎯

recall

🎯Skill

from parcadei/continuous-claude-v3

VibeIndex|
What it does

Retrieves and surfaces relevant past learnings from semantic memory using vector search and contextual matching.

recall

Installation

Install skill:
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill recall
23
AddedJan 27, 2026

Skill Details

SKILL.md

Query the memory system for relevant learnings from past sessions

Overview

# Recall - Semantic Memory Retrieval

Query the memory system for relevant learnings from past sessions.

Usage

```

/recall

```

Examples

```

/recall hook development patterns

/recall wizard installation

/recall TypeScript errors

```

What It Does

  1. Runs semantic search against stored learnings (PostgreSQL + BGE embeddings)
  2. Returns top 5 results with full content
  3. Shows learning type, confidence, and session context

Execution

When this skill is invoked, run:

```bash

cd $CLAUDE_OPC_DIR && PYTHONPATH=. uv run python scripts/core/recall_learnings.py --query "" --k 5

```

Where is the query provided by the user.

Output Format

Present results as:

```

Memory Recall: "<query>"

1. [TYPE] (confidence: high, id: abc123)

2. [TYPE] (confidence: medium, id: def456)

```

Options

The user can specify options after the query:

  • --k N - Return N results (default: 5)
  • --vector-only - Use pure vector search (higher precision)
  • --text-only - Use text search only (faster)

Example: /recall hook patterns --k 10 --vector-only

More from this repository10

🎯
migrate🎯Skill

Systematically researches, analyzes, plans, implements, and reviews migrations across frameworks, languages, and infrastructure with minimal risk.

🎯
agentica-infrastructure🎯Skill

Provides comprehensive reference and infrastructure for building sophisticated multi-agent coordination patterns and workflows with precise API specifications and tracking mechanisms.

🎯
background-agent-pings🎯Skill

Enables background agent execution with system-triggered progress notifications, avoiding manual polling and context flooding.

🎯
agentica-claude-proxy🎯Skill

Enables seamless integration between Agentica agents and Claude Code CLI by managing proxy configurations, tool permissions, and response formatting.

🎯
system-overview🎯Skill

Generates a comprehensive summary of the current system's configuration, components, and key metrics across skills, agents, hooks, and other core systems.

🎯
git-commits🎯Skill

Manages git commits by removing Claude attribution, generating reasoning documentation, and ensuring clean commit workflows.

🎯
debug-hooks🎯Skill

Systematically diagnose and resolve hook registration, execution, and output issues in Claude Code projects by checking cache, settings, files, and manual testing.

🎯
cli-reference🎯Skill

Provides comprehensive CLI commands and flags for interacting with Claude Code, enabling headless mode, automation, and session management.

🎯
braintrust-tracing🎯Skill

Traces and correlates Claude Code session events across parent and sub-agent interactions using comprehensive Braintrust instrumentation.

🎯
morph-apply🎯Skill

Rapidly edits files using AI-powered Morph Apply API with high accuracy and speed, without requiring full file context.