ワンクリックで
evolve-lite-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 ページを確認してインストールできます。
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.
SOC 職業分類に基づく
| name | evolve-lite: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 .bob/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