用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/study8677/memobox --skill curate命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | curate |
| description | Use when the user asks to curate, deduplicate, merge, pin, archive, mark stale, promote, or clean up MemoBox memories. |
Use curation commands to keep an opted-in .memobox useful and lightweight. Review .memobox/index.json directly before modifying records. MemoBox may expose duplicate candidates, but the model or user makes every merge, stale, pin, archive, and promotion decision.
Do not initialize a missing store. Do not curate during simple or sensitive tasks unless the user explicitly asks. A weekly review during dogfooding is usually enough.
.memobox/index.json first.needs_review records created by the PreCompact(auto) safety net; keep their durable content in a deliberate Memory Mail or archive/stale-mark the checkpoint.source_refs such as memobox:<id> because they make real reuse measurable.Find likely duplicates:
memobox --store .memobox curate duplicates --json
Merge duplicates and archive the source memories:
memobox --store .memobox curate merge <id-a> <id-b> \
--subject "<merged subject>" \
--summary "<merged index summary>" \
--json
Mark exact memory ids as stale after reviewing the index:
memobox --store .memobox status <id-a> stale
memobox --store .memobox status <id-b> stale
Pin exact memory ids after reviewing the index:
memobox --store .memobox status <id-a> pinned
memobox --store .memobox status <id-b> pinned
Promote reusable project memory into global memory only after confirming that the body is verified, portable beyond the current workspace, understandable without private repository context, and free of sensitive data:
memobox --store .memobox promote <memory-id> \
--global-store "${MEMOBOX_GLOBAL_STORE:-$HOME/.memobox-global}" \
--tag "<reusable-pattern>" \
--json
Before merging, stale-marking, pinning, or promoting, read .memobox/index.json and summarize the exact ids you selected unless the user already gave exact ids and intent. The duplicates command is only a candidate list; it is not a relevance or merge decision.
Keep the global index intentionally small. Do not promote one-off project status, repository-specific paths, speculative conclusions, secrets, personal data, or confidential raw traces. When global knowledge is reused in a project, preserve it with --source-ref "memobox-global:<id>".