agent-wiki-compare-out…
Compare successful and failed normalized agent trajectories to derive evidence-backed agent-wiki guidelines. Use when Codex has multiple runs for the same or…
Add a shared guidelines repo (read-scope subscription or write-scope publish target) to the unified repos list.
$ npx -y skills add AgentToolkit/altk-evolve --skill evolve-lite-subscribe --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/evolve-lite-subscribeContext preview
The summary Claude sees to decide when to auto-load this skill.
Add a shared guidelines repo (read-scope subscription or write-scope publish target) to the unified repos list.
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 orgwhat 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: trueAlso ensure `.evolve/` is gitignored:
grep -qxF '.evolve/' .gitignore 2>/dev/null || echo '.evolve/' >> .gitignore
Ask the user for:
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.
which doubles as the recall mirror
annotations
clone so publish commits can be rebased and pushed cleanly
Coding agents repeat the same mistakes because they start fresh every session. Evolve gives agents memory — they learn from what worked and what didn't, so each session is better than the last.
Repo: AgentToolkit/altk-evolve
Compare successful and failed normalized agent trajectories to derive evidence-backed agent-wiki guidelines. Use when Codex has multiple runs for the same or…
Read all atomic guidelines in wiki-twobatch/guidelines/ and propose themed clusters that group near-duplicates. Writes cluster pages and updates _config.yaml;…
Consult an agent-wiki for guidelines relevant to the task at hand. The wiki itself documents how to retrieve from it (AGENTS.md). Use this skill once you know…
Read a normalized Claude Code trajectory JSON and extract reusable guidelines into wiki-twobatch/guidelines/. Use when mining saved trajectories for reusable…
Ingest one or more agent trajectories (raw bob/claude traces or normalized JSON) into an agent-wiki end-to-end — convert, summarize, extract guidelines,…
Read a normalized Claude Code trajectory JSON and write an episodic summary page to wiki-twobatch/summaries/. Use when summarizing one or more saved…