用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bdambrosio/Cognitive_workbench --skill persist命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | persist |
| type | primitive |
| description | Mark a Note or Collection as persistent so it survives goal-completion cleanup |
target (required): $variable, resource ID (Note_123, Collection_456, Relation_7), or named resourcename (optional): Stable name to register for later load(target="my-name")out (optional): $variable aliased to the persisted resourceREQUIREMENTS:
Marks the resource as persistent on disk so it is not swept by the transient-resource cleanup that runs after goal completion. Persistence is in-place — the same resource ID before and after. If name is given, the resource is also registered for load-by-name. If out is given, the variable is aliased to the same resource ID (equivalent to bind after persist).
Use persist for any output a subsequent goal will need to read.
{"type": "persist", "target": "$matches", "name": "transformer_attention_matches"}
{"type": "persist", "target": "Collection_17", "name": "weather_report", "out": "$report"}
Returns success with the persisted resource's ID in resource_id.
targetmark_persistent failed (e.g. disk write error)persist copies or clones — it flips a flag on the existing resource. Both pre- and post-persist variables point to the same ID.out= expecting a new resource. The binding points to the same resource; use bind explicitly if that is clearer at the call site.