slm-scope
仓库创建 2026年2月5日最近提交 1 天前SkillHot 收录 6 小时前
▸ 精选理由
精细化共享策略可避免默认泄露信息,适合多项目并存的环境。
▸ 风险提示
修改共享范围会改变数据可见性,需谨慎授权
这个 Skill 做什么
控制记忆在个人、共享和全局三种范围间的可见性与共享策略。
管理 SuperLocalMemory(SLM)里记忆的可见性:默认是个人私有,也可按需把记忆设为共享(选定 profile)或全局(同机所有 profile)。只有你明确要求才会扩大共享范围,避免无意泄露。配合 remember/recall 的读写标记使用,能在不同会话间有选择地共享状态。
▸ 展开 SKILL.md 英文原文
Controls memory visibility across profiles — personal (private, default), shared (selected profiles), or global (all profiles on this machine). Default is always personal. Only change scope when the user explicitly asks to share a memory across workspaces. Works with both remember (write scope) and recall (read scope flags).
199
Stars
34
Forks
37
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/qualixar/superlocalmemory/main/plugin/skills/slm-scope/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/qualixar/superlocalmemory/main/plugin/skills/slm-scope/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# slm-scope — Memory Scope and Sharing Model SuperLocalMemory is profile-isolated by default. Every profile is a fully independent memory namespace. The scope model adds controlled, opt-in sharing between profiles on the same machine — it is never active unless you explicitly set it. --- ## The Three Scopes | Scope | Visibility | When to use | |-------|-----------|-------------| | `personal` | Active profile only | Default — all facts. Never set explicitly. | | `shared` | Active profile + `shared_with` profiles | Team handoffs, shared project context | | `global` | Every profile on this machine | Machine-wide conventions, org-wide rules | **The default is always `personal`.** A fact sto
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有