ワンクリックで
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)sh -lc 'real_home="$(python3 -c "import os,pwd; print(pwd.getpwuid(os.getuid()).pw_dir)")"; config_home="${CLAW_CONFIG_HOME:-$real_home/.claw}"; script=".claw/skills/evolve-lite:subscribe/scripts/subscribe.py"; [ -f "$script" ] || script="$config_home/skills/evolve-lite:subscribe/scripts/subscribe.py"; python3 "$script" --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