一键导入
subscribe
Add a shared guidelines repo (read-scope subscription or write-scope publish target) to the unified repos list.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Add a shared guidelines repo (read-scope subscription or write-scope publish target) to the unified repos list.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Convert a saved trajectory into a reusable agent skill (SKILL.md + supporting scripts) that future agents can invoke to skip rediscovered work. Use when a session captured a non-trivial workflow worth promoting from a free-text guideline to an executable skill.
Convert a saved trajectory into a reusable agent skill (SKILL.md + supporting scripts) that future agents can invoke to skip rediscovered work. Use when a session captured a non-trivial workflow worth promoting from a free-text guideline to an executable skill.
Convert a saved trajectory into a reusable agent skill (SKILL.md + supporting scripts) that future agents can invoke to skip rediscovered work. Use when a session captured a non-trivial workflow worth promoting from a free-text guideline to an executable skill.
Convert a saved trajectory into a reusable agent skill (SKILL.md + supporting scripts) that future agents can invoke to skip rediscovered work. Use when a session captured a non-trivial workflow worth promoting from a free-text guideline to an executable skill.
Mirror a just-saved native memory into the shared evolve store so it becomes shareable and auditable
Analyze saved trajectories and recall audit events offline to record whether recalled guidelines influenced completed sessions.
| name | subscribe |
| description | Add a shared guidelines repo (read-scope subscription or write-scope publish target) to the unified repos list. |
Configured guidelines repos are multi-reader / multi-writer git databases,
described in a single unified list in evolve.config.yaml:
repos:
- name: memory
scope: write
remote: git@github.com:alice/evolve.git
branch: main
notes: public memory for foobar project
- name: org-memory
scope: read
remote: git@github.com:acme/org-memory.git
branch: main
notes: private memory shared only within my org
scope: read — download-only. Synced on every run.scope: write — publish target. Synced on every run too, so you see
what you have already published and anything others have pushed.If evolve.config.yaml does not exist, ask the user for a username and
create:
identity:
user: {username}
repos: []
sync:
on_session_start: true
Also ensure .evolve/ is gitignored:
grep -qxF '.evolve/' .gitignore 2>/dev/null || echo '.evolve/' >> .gitignore
Ask the user for:
aliceread (default, subscribe-only) or write (also a publish target)python3 "$(git rev-parse --show-toplevel 2>/dev/null || pwd)/plugins/evolve-lite/skills/evolve-lite/subscribe/scripts/subscribe.py" --name "{name}" --remote "{remote}" --branch main --scope "{scope}" --notes "{notes}"
Tell the user the repo was added and they can run evolve-lite:sync
immediately if they want to pull updates now.
.evolve/entities/subscribed/{name}/,
which doubles as the recall mirror[from: {name}]
annotations