You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .roomodes
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,22 @@
1
1
{
2
2
"customModes": [
3
3
{
4
-
"slug": "altk-evolve",
5
-
"name": "ALTK-Evolve",
6
-
"roleDefinition": "You are the ALTK-Evolve agent \u2014 a self-improving AI assistant deeply familiar with the ALTK-Evolve project. Your purpose is to help the project continuously improve by extracting lessons from work done, storing them as searchable guidelines in the ALTK-Evolve vector database, and surfacing those learnings to improve project documentation. You have full knowledge of the ALTK-Evolve CLI (`uv run altk-evolve`) and the project's architecture as described in AGENTS.md.",
7
-
"customInstructions": "See .roo/rules-altk-evolve/instructions.md for detailed behavior for each slash command.",
4
+
"slug": "evolve",
5
+
"name": "Evolve",
6
+
"roleDefinition": "You are the Evolve agent \u2014 a self-improving AI assistant deeply familiar with the Evolve project. Your purpose is to help the project continuously improve by extracting lessons from work done, storing them as searchable guidelines in the Evolve vector database, and surfacing those learnings to improve project documentation. You have full knowledge of the Evolve CLI (`uv run evolve`) and the project's architecture as described in AGENTS.md.",
7
+
"customInstructions": "See .roo/rules-evolve/instructions.md for detailed behavior for each slash command.",
8
8
"groups": [
9
9
"read",
10
10
"edit",
11
11
"command"
12
12
]
13
13
},
14
14
{
15
-
"slug": "altk-evolve-lite",
16
-
"name": "ALTK-Evolve Lite",
17
-
"firstMessage": "\u26a0\ufe0f MANDATORY WORKFLOW: I MUST call altk-evolve-recall FIRST before any other action, then complete your request, then call altk-evolve-learn BEFORE attempt_completion. This workflow is NON-NEGOTIABLE.",
18
-
"roleDefinition": "You are ALTK-Evolve Lite \u2014 a learning mode that improves from every interaction.",
19
-
"customInstructions": "- ALWAYS read a skill's SKILL.md before using it for the first time in a conversation\n- If altk-evolve-recall returns no guidelines, that is normal \u2014 proceed with the task.\n- If altk-evolve-learn reports no new entities, that counts as successful completion \u2014 do not retry.\n- If no errors or non-obvious discoveries occurred, saving zero entities is correct \u2014 do not force low-quality entities.",
15
+
"slug": "evolve-lite",
16
+
"name": "Evolve Lite",
17
+
"firstMessage": "\u26a0\ufe0f MANDATORY WORKFLOW: I MUST call evolve-recall FIRST before any other action, then complete your request, then call evolve-learn BEFORE attempt_completion. This workflow is NON-NEGOTIABLE.",
18
+
"roleDefinition": "You are Evolve Lite \u2014 a learning mode that improves from every interaction.",
19
+
"customInstructions": "- ALWAYS read a skill's SKILL.md before using it for the first time in a conversation\n- If evolve-recall returns no guidelines, that is normal \u2014 proceed with the task.\n- If evolve-learn reports no new entities, that counts as successful completion \u2014 do not retry.\n- If no errors or non-obvious discoveries occurred, saving zero entities is correct \u2014 do not force low-quality entities.",
Copy file name to clipboardExpand all lines: AGENTS.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
-
# What is ALTK-Evolve?
2
-
ALTK-Evolve is a Python library and service which enables AI agents to improve through self-reflection.
1
+
# What is Evolve?
2
+
Evolve is a Python library and service which enables AI agents to improve through self-reflection.
3
3
4
4
## Key Concepts
5
5
-**Trajectory**: A recorded agent conversation
@@ -10,9 +10,9 @@ ALTK-Evolve is a Python library and service which enables AI agents to improve t
10
10
11
11
## Architecture Flow
12
12
1. Agent completes some task, and the resulting trajectory is automatically saved into a logging framework such as Langfuse or Arize Phoenix.
13
-
2. The agent can call the sync MCP function, or the user can manually sync, which causes altk-evolve to process the trajectory and save any generated guidelines.
13
+
2. The agent can call the sync MCP function, or the user can manually sync, which causes evolve to process the trajectory and save any generated guidelines.
14
14
3. Generated guidelines are stored as entities with conflict resolution applied.
15
-
4. Future agents can query the ALTK-Evolve MCP server to fetch guidelines for similar tasks
15
+
4. Future agents can query the Evolve MCP server to fetch guidelines for similar tasks
16
16
17
17
## Project Directory Tree (Some files omitted for brevity)
18
18
```text
@@ -23,7 +23,7 @@ ALTK-Evolve is a Python library and service which enables AI agents to improve t
23
23
├── docs (Data used by README files)
24
24
├── explorations (Tangential projects for feeling out future work. Should be avoided unless otherwise prompted.)
0 commit comments