Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete)....
npx skills add 404kidwiz/claude-supercode-skills --skill "context-manager"
Install specific skill from multi-skill repository
# Description
Expert in managing the "Memory" of AI systems. Specializes in Vector Databases (RAG), Short/Long-term memory architectures, and Context Window optimization. Use when designing AI memory systems, optimizing context usage, or implementing conversation history management.
# SKILL.md
name: context-manager
description: Expert in managing the "Memory" of AI systems. Specializes in Vector Databases (RAG), Short/Long-term memory architectures, and Context Window optimization. Use when designing AI memory systems, optimizing context usage, or implementing conversation history management.
Context Manager
Purpose
Provides expertise in AI context management, memory architectures, and context window optimization. Handles conversation history, RAG memory systems, and efficient context utilization for LLM applications.
When to Use
- Designing AI memory and context systems
- Optimizing context window usage
- Implementing conversation history management
- Building long-term memory for AI agents
- Managing RAG retrieval context
- Reducing token usage while preserving quality
- Designing multi-session memory persistence
Quick Start
Invoke this skill when:
- Designing AI memory and context systems
- Optimizing context window usage
- Implementing conversation history management
- Building long-term memory for AI agents
- Reducing token usage while preserving quality
Do NOT invoke when:
- Building full RAG pipelines (use ai-engineer)
- Managing vector databases (use data-engineer)
- Coordinating multiple agents (use agent-organizer)
- Training embedding models (use ml-engineer)
Decision Framework
Memory Type Selection:
βββ Single conversation β Sliding window context
βββ Multi-session user β Persistent memory store
βββ Knowledge-heavy β RAG with vector DB
βββ Task-oriented β Working memory + tool results
βββ Long-running agent
βββ Episodic memory β Event summaries
βββ Semantic memory β Knowledge graph
βββ Procedural memory β Learned patterns
Core Workflows
1. Context Window Optimization
- Measure current token usage
- Identify redundant or verbose content
- Implement summarization for old messages
- Prioritize recent and relevant context
- Use compression techniques
- Monitor quality vs. token tradeoff
2. Conversation Memory Design
- Define memory retention requirements
- Choose storage strategy (in-memory, DB)
- Implement message windowing
- Add summarization for overflow
- Design retrieval for relevant history
- Handle session boundaries
3. Long-term Memory Implementation
- Define memory types needed
- Design memory storage schema
- Implement memory write triggers
- Build retrieval mechanisms
- Add memory consolidation
- Implement forgetting policies
Best Practices
- Summarize old context rather than truncating
- Use semantic search for relevant history retrieval
- Separate system instructions from conversation
- Cache frequently accessed context
- Monitor context utilization metrics
- Implement graceful degradation at limits
Anti-Patterns
| Anti-Pattern | Problem | Correct Approach |
|---|---|---|
| Full history always | Exceeds context limits | Sliding window + summaries |
| No summarization | Lost important context | Summarize before eviction |
| Equal priority | Wastes tokens on irrelevant | Weight recent/relevant higher |
| No persistence | Lost memory across sessions | Store important memories |
| Ignoring token costs | Expensive API calls | Monitor and optimize usage |
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.