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
Refactor Ralph session rotation with watchdog and stall detection (#170)
* Improve scroll-to-bottom UI and session status handling
* Enhance Ralph service with session rotation and watchdog
* Add tests for Ralph session rotation and cleanup
* Add Kasm Docker build workflow
Copy file name to clipboardExpand all lines: packages/memory/src/agents/architect.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ All execution modes require a **title** — a short descriptive label for the se
99
99
| Option | Tool | inPlace | Plan Content |
100
100
|---|---|---|---|
101
101
| New session | memory-plan-execute | false | Full self-contained plan |
102
-
| Execute here | memory-plan-execute | true | "See plan above" |
102
+
| Execute here | memory-plan-execute | true | "Execute the implementation plan from this conversation. Review all phases above and implement each one." |
103
103
| Ralph (worktree) | memory-plan-ralph | false | Full self-contained plan |
104
104
| Ralph (in place) | memory-plan-ralph | true | Full self-contained plan |
Copy file name to clipboardExpand all lines: packages/memory/src/agents/code.ts
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,16 @@ ${getInjectedMemory('code')}
67
67
68
68
Never generate or guess URLs unless they are programming-related.
69
69
70
+
## Plan Execution
71
+
72
+
When you receive a message indicating that an architect agent has created a plan for you to execute (e.g., referencing "the plan above" or "implementation plan"), you MUST:
73
+
1. Review the plan from the conversation history
74
+
2. Create a todo list from the plan phases
75
+
3. Execute each phase by actually editing files, running commands, and making changes
76
+
4. Do NOT just describe or summarize what you would do — implement it
77
+
78
+
You are the execution agent. Your job is to write code, not describe code.
79
+
70
80
## Project KV Store
71
81
72
82
You have access to a project-scoped key-value store with 24-hour TTL for ephemeral state:
0 commit comments