context-retrieval

Installation
SKILL.md

Context Retrieval

Retrieve relevant episodic context from memory for informed decision-making.

Retrieval Methods

Semantic Search (Preferred)

When embeddings available:

let context = memory
    .retrieve_relevant_context(
        "implement async batch updates",
        task_context,
        limit: 5
    )
    .await?;

Advantages: Finds semantically similar tasks, captures intent

Related skills

More from d-o-hub/rust-self-learning-memory

Installs
44
GitHub Stars
7
First Seen
Feb 21, 2026