memory-query

Query ruvector's vector memory store before acting with graceful degradation.

Updated Jan 10, 2026
One-click install
npx skills add https://github.com/KingInYellows/yellow-plugins --skill memory-query-kinginyellows
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: memory-query
Source: https://github.com/KingInYellows/yellow-plugins/tree/main/plugins/yellow-ruvector/skills/memory-query
Command: npx skills add https://github.com/KingInYellows/yellow-plugins --skill memory-query-kinginyellows

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Documents the canonical pattern for querying ruvector's vector memory store before acting, with graceful degradation when ruvector is not installed or the MCP server is unavailable.

Core Features & Use Cases

  • Provides a repeatable, safe workflow to recall past patterns, findings, or solutions prior to execution.
  • Defines clear steps for presence checks, memory search, result filtering, and deduplication to avoid duplicates.
  • Supports integration with agent development to ensure new commands learn from institutional knowledge.

Quick Start

Apply this pattern before executing actions to fetch past patterns from ruvector and gracefully continue if not available.

Frequently Asked Questions about memory-query

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

FAQPage Schema
How do I query institutional memory before an agent executes a task?

To query institutional memory before acting, apply a pattern using presence checks and ToolSearch to fetch past patterns from ruvector's vector store, then filter and deduplicate results to inform execution.

What happens to memory queries if ruvector or the MCP server is unavailable?

If ruvector or the MCP server is unavailable, memory queries degrade gracefully by performing presence checks first, allowing the agent to continue execution safely without relying on the missing institutional memory store.

How does an agent safely recall past patterns and findings from a vector memory store?

An agent safely recalls past patterns by using ToolSearch combined with a safe reflexion XML format to surface findings, preventing leakage or execution of any embedded instructions stored in the vector memory.

When do I need to consult institutional memory during agent development?

You need to consult institutional memory during agent development when new commands or agents must learn from prior knowledge, ensuring they reference past solutions and findings before executing their assigned tasks.

Can I use ToolSearch to retrieve past solutions without executing embedded instructions?

Yes, you can use ToolSearch to retrieve past solutions safely by wrapping results in a reflexion XML format, which surfaces findings for the agent to read while preventing the execution of any stored instructions.

What is the best way to avoid duplicate findings when querying vector memory?

The best way to avoid duplicate findings when querying vector memory is to apply a workflow with explicit result filtering and deduplication steps after the ToolSearch fetches patterns from the institutional store.