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: 81/100
Skill Content
Details
- Author
- onebrain-ai
- Repository
- onebrain-ai/onebrain
- Created
- 4 months ago
- Last Updated
- 5 days ago
- Language
- Shell
- License
- Apache-2.0
Similar Skills
Semantically similar based on skill content — not just same category
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.
long-term-user-memory
Persist facts about a user across sessions with provenance, correction, and expiry, so an assistant improves rather than accumulating stale assumptions. Use when an assistant should remember a user between conversations.