원클릭으로
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 ${CLAUDE_PLUGIN_ROOT}/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