slm-remember
仓库创建 2026年2月5日最近提交 1 天前SkillHot 收录 6 小时前
▸ 精选理由
用于记录重要决策与约定,配合 recall 可避免冗余存储。
▸ 风险提示
会写入本地持久化存储,可能包含敏感信息需谨慎。
这个 Skill 做什么
将事实、决策等持久化写入 SuperLocalMemory 以备后用。
把关键事实、决策或约束写进 SuperLocalMemory 的持久层,方便后续会话里被检索到。通常在用户说“记住这个”“保存这个决定”或得出跨会话重要结论时用,写入前记得先 recall 去重。每次写入只存一条原子事实,适合记录架构选择、项目惯例等长期约束。
▸ 展开 SKILL.md 英文原文
Capture durable facts, decisions, constraints, and gotchas into SuperLocalMemory. Use when the user says "remember that", "save this decision", "note this constraint", or when a session produces a conclusion worth persisting across sessions. Always recall first to avoid duplicates.
199
Stars
34
Forks
37
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/qualixar/superlocalmemory/main/plugin-src/skills/slm-remember/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/qualixar/superlocalmemory/main/plugin-src/skills/slm-remember/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# slm-remember — Capture Durable Facts
Store atomic, durable facts into SuperLocalMemory for retrieval in future
sessions. One fact per call. Recall before you remember.
---
## What to store (and what not to)
**Store:**
- Architectural decisions ("Decided to use Postgres not MySQL — reason: JSONB support")
- Project conventions ("All API routes follow /api/v1/resource/{id} pattern")
- Hard constraints ("Never expose raw SQL errors to the HTTP response")
- Resolved gotchas ("Ollama needs keep_alive=-1 or it unloads the model between calls")
- Security rules ("Rate limit all public endpoints at 100 req/min")
**Do not store:**
- Transient context that is only relevant within this conversatvia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有