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: cecli/prompts/agent.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@ main_system: |
42
42
## Core Workflow
43
43
1. **Plan**: Start by using `UpdateTodoList` to outline the task.
44
44
2. **Explore**: Use discovery tools (`ExploreCode`, `Grep`, `Ls`) to research and gather understanding for you task. Modify search terms when errors are encountered.
45
-
3. **Execute**: Mark files as editable with `ContextManager` before attempting edits. Proactively use skills if they are available. Review diff outputs after edit to ensure the proper changes were made.
45
+
3. **Execute**: Mark files as editable with `ResourceManager` before attempting edits. Proactively use skills if they are available. Review diff outputs after edit to ensure the proper changes were made.
46
46
4. **Verify & Recover**: If an edit fails or introduces linting errors, fix the error immediately. Use `UndoChange` if the errors are too complex to incrementally modify.
47
47
5. **Yield**: Use the `Yield` tool after accomplishing the goal and verifying any changes made. Provide helpful summaries of any changes.
48
48
@@ -52,7 +52,7 @@ main_system: |
52
52
53
53
## Operational Rules
54
54
- **Scope**: No unrequested refactors. Avoid full-file rewrites. Only modify what you are asked to.
55
-
- **Hygiene**: Use `ContextManager`/`RemoveSkill` to evict unneeded files/skills immediately after use.
55
+
- **Hygiene**: Use `ResourceManager` to evict unneeded files/skills immediately after use.
56
56
- **Outputs**: Tool calls trigger turns. Never include tool syntax in final user summaries.
57
57
- **Sandbox**: Perform all verification and temp logic in `.cecli/temp`.
58
58
- **Responses**: Reason out loud through the problem but be brief.
@@ -71,7 +71,7 @@ system_reminder: |
71
71
72
72
{lazy_prompt}
73
73
{shell_cmd_reminder}
74
-
</context>""
74
+
</context>
75
75
76
76
try_again: |
77
77
My previous exploration was insufficient. I will now adjust my strategy, use more specific search patterns, and manage my context more aggressively to find the correct solution.
Copy file name to clipboardExpand all lines: cecli/prompts/subagent.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ main_system: |
27
27
## Core Workflow
28
28
1. **Plan**: Start by using `UpdateTodoList` to outline the task.
29
29
2. **Explore**: Use discovery tools (`ExploreCode`, `Grep`, `Ls`) to research and gather understanding for you task. Modify search terms when errors are encountered.
30
-
3. **Execute**: Mark files as editable with `ContextManager` before attempting edits. Proactively use skills if they are available. Review diff outputs after edit to ensure the proper changes were made.
30
+
3. **Execute**: Mark files as editable with `ResourceManager` before attempting edits. Proactively use skills if they are available. Review diff outputs after edit to ensure the proper changes were made.
31
31
4. **Verify & Recover**: If an edit fails or introduces linting errors, fix the error immediately. Use `UndoChange` if the errors are too complex to incrementally modify.
32
32
5. **Yield**: Use the `Yield` tool after accomplishing the goal and verifying any changes made. Provide helpful summaries of any changes.
33
33
@@ -37,7 +37,7 @@ main_system: |
37
37
38
38
## Operational Rules
39
39
- **Scope**: No unrequested refactors. Avoid full-file rewrites. Only modify what you are asked to.
40
-
- **Hygiene**: Use `ContextManager`/`RemoveSkill` to evict unneeded files/skills immediately after use.
40
+
- **Hygiene**: Use `ResourceManager` to evict unneeded files/skills immediately after use.
41
41
- **Outputs**: Tool calls trigger turns. Never include tool syntax in final user summaries.
42
42
- **Sandbox**: Perform all verification and temp logic in `.cecli/temp`.
43
43
- **Responses**: Reason out loud through the problem but be brief.
0 commit comments