context-manager

Orchestrates dynamic context, memory, and retrieval systems for multi-agent AI workflows.

2|Updated Jun 16, 2026
One-click install
npx skills add https://github.com/monang404/lunawave --skill context-manager-monang404
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: context-manager
Source: https://github.com/monang404/lunawave/tree/main/.agent/skills/context-manager
Command: npx skills add https://github.com/monang404/lunawave --skill context-manager-monang404

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI systems often lose track of relevant information across long conversations, multi-agent pipelines, and enterprise knowledge bases. This Skill provides expert guidance for designing context engineering systems that deliver the right information, memory, and tools to AI agents at the right time. ## Core Features & Use Cases - Context Engineering & Orchestration: Design dynamic context assembly, token budget management, and context pruning strategies for multi-agent workflows. - Vector Databases & RAG: Implement semantic search with Pinecone, Weaviate, or Qdrant, plus advanced Retrieval-Augmented Generation pipelines with chunking and hybrid search. - Memory & Knowledge Graphs: Architect long-term, episodic, and working memory systems, and build knowledge graphs with entity linking and semantic reasoning. - Use Case: When building a customer support platform with multiple AI agents, use this Skill to design context handoff protocols, shared memory stores, and retrieval pipelines so each agent receives coherent, relevant state. ## Quick Start Ask the AI to design a context management architecture for your multi-agent workflow, including vector retrieval, memory layers, and token budget optimization.

Frequently Asked Questions about context-manager

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

FAQPage Schema
How do I design a context management system for multi-agent AI workflows?▼

Start by defining agent-to-agent context handoff protocols and shared state requirements. Then implement dynamic context assembly with relevance filtering, token budget management, and a persistent memory layer so each agent receives coherent, task-specific context.

What vector database should I use for RAG retrieval?▼

Pinecone, Weaviate, and Qdrant are common choices for semantic search and similarity-based retrieval. Select based on scale, hybrid search needs combining vector and keyword approaches, and index performance requirements.

How do I optimize context window usage with limited tokens?▼

Apply context pruning and relevance filtering to remove low-value content, use summarization and compression for long documents, and allocate token budgets per task. Monitor relevance scores to continuously improve retrieval quality.

What is the difference between episodic and semantic memory in AI systems?▼

Episodic memory stores conversation and interaction history for recall of past events, while semantic memory holds factual knowledge and entity relationships. Production systems typically combine both with working memory for active context.

When should I use a knowledge graph instead of vector search?▼

Use knowledge graphs when you need explicit relationship modeling, entity resolution across data sources, and graph-based reasoning. Vector search suits unstructured similarity retrieval; many systems combine both for hybrid retrieval.