From rulake-memory
Use ruLake as the agent's working memory. Auto-invoke /rulake-memory:memory-recall when the agent needs to look up something it might already know; auto-invoke /rulake-memory:memory-remember after the agent learns or decides something worth pinning. Closes the self-learning loop without requiring the agent author to wire it explicitly.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rulake-memory:memoryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill turns ruLake into the agent's working memory transparently. Without an explicit slash command, the agent should call `memory-recall` before answering questions about facts it might already know, and call `memory-remember` after learning new facts or making decisions.
This skill turns ruLake into the agent's working memory transparently. Without an explicit slash command, the agent should call memory-recall before answering questions about facts it might already know, and call memory-remember after learning new facts or making decisions.
Before answering, ask:
/rulake-memory:memory-recall/rulake-memory:memory-recall/rulake-memory:memory-recall (cached tool results)/rulake-memory:memory-recall with the topicIf memory-recall returns a hit with decision_trace.witness.match: true, use the cached answer. Skip the redundant work. Cite the witness in the response so the user knows it came from memory.
After completing work, ask:
/rulake-memory:memory-remember/rulake-memory:memory-remember key=user-prefs/.../rulake-memory:memory-remember key=tool-results/<call-hash>/rulake-memory:memory-remember memory_class=semanticPick the memory_class honestly:
working — current task scratchpad (TTL-able)episodic — "this happened at time T in session S"semantic — general facts the agent should know foreverprocedural — "how to do X" — recipes / patternsDon't pin things that change frequently — the witness will refuse on next recall and the cache churn defeats the purpose. Use Eventual{ttl_ms} consistency or skip remembering for:
Every recall feeds /memory-status. Every refusal feeds /memory-tune. Every drift feeds /memory-replay. The agent doesn't need to invoke those manually — the operator can wire them as /loop-driven workers, but the recall/remember pair is enough to make ruLake function as the agent's memory.
The whole point: memory that gets faster the more it's used, and refuses to make things up when it can't be sure.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub ruvnet/rulake --plugin rulake-memory