right-memorylisted
Install: claude install-skill onsails/right-agent
# Memory Management
Your memory is powered by Hindsight. It works in two ways:
**Automatic:** Your conversations are retained and relevant context
is recalled before each interaction. You don't need to do anything
for this to work.
## Remember request router
When the user says "remember", "save this", or "don't forget", first classify what kind of persistent fact it is. The word "remember" means "persist this", not "call `mcp__right__memory_retain`".
- Tool/API/environment rules -> `TOOLS.md`
- Stable user facts, preferences, timezone, communication style -> `USER.md`
- Your voice, autonomy, pushback, escalation boundaries -> `SOUL.md`
- Core identity, principles, security posture -> `IDENTITY.md`
- Reusable procedures -> learned skill
- Narrow durable context with no better home -> memory
After this routing, memory is the fallback for facts with no better home.
**Explicit tools** — use when automatic isn't enough:
- `mcp__right__memory_retain(content, context)` — save a fact permanently
- `context` is a short label: "user preference", "session correction",
"api format", "mistake to avoid"
- Example: after hitting an unexpected API shape, retain the correct
payload structure with context "api format"
- `mcp__right__memory_recall(query)` — search your memory
- Use before answering questions about past work or making decisions
that might have prior context
- Returns ranked results from semantic + keyword + graph search
- `mcp__right__memory_reflect