learn
SolidTeach the agent a new fact or behavioral preference and save it to memory/ for future recall. Use when the user says 'remember that', 'from now on', 'always do X', or corrects agent behavior they want persisted. Do NOT use for: capturing a general note or idea (use capture), saving a session summary (use wrapup), or promoting recurring patterns from many sessions (use recap).
Install
Quality Score: 83/100
Skill Content
Details
- Author
- onebrain-ai
- Repository
- onebrain-ai/onebrain
- Created
- 5 months ago
- Last Updated
- 1 weeks ago
- Language
- Shell
- License
- Apache-2.0
Similar Skills
Semantically similar based on skill content — not just same category
memory
Durable memory across sessions that ages correctly. Stores one fact per file with a validity window, and when something changes it closes the old fact rather than deleting it, so a change is distinguishable from a mistake. Use when the user says "remember this", "what do you know about", "/memory", when a fact learned in one session needs to survive into the next, or when something previously recorded turns out to be out of date.
using-memory
Use whenever you READ FROM or WRITE TO the agent-memory layer — recall a remembered fact, persist a durable fact about how the user wants to work, pin a hard rule, or correct a stored memory. READ via /ultra-memory:memory-recall (trusted CLI) or the type-scoped knowledge MCP; WRITE only through the memory verbs (/ultra-memory:memory-save, /ultra-memory:memory-pin, /ultra-memory:memory-verify, /ultra-memory:memory-edit, /ultra-memory:memory-inbox) — NEVER raw SQLite. Trigger before any memory read or write.
agent-memory
Use when an agent needs state that survives a session or a context compaction. Covers what to persist, file-based memory, structuring notes for retrieval, and preventing memory from becoming stale.