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
- The paths of these entries can be found in {{ base_path }}/MEMORY.md or {{ base_path }}/rollout_summaries/ as `rollout_path`
34
71
- These files are append-only `jsonl`: `session_meta.payload.id` identifies the session, `turn_context` marks turn boundaries, `event_msg` is the lightweight status stream, and `response_item` contains actual messages, tool calls, and tool outputs.
35
72
- For efficient lookup, prefer matching the filename suffix or `session_meta.payload.id`; avoid broad full-content scans unless needed.
36
73
37
74
Quick memory pass (when applicable):
38
75
39
-
1. Skim the MEMORY_SUMMARY below and extract task-relevant keywords.
40
-
2. Search {{ base_path }}/MEMORY.md using those keywords.
41
-
3. Only if MEMORY.md directly points to rollout summaries/skills, open the 1-2
76
+
1. If you need a broad overview, use `memory_read` to get the index, top
77
+
topics, and notepad priority in one call.
78
+
2. If you need specific information, use `memory_search` with targeted keywords
79
+
to find relevant topics with relevance scoring.
80
+
3. Only if the built-in tools are insufficient, search
81
+
{{ base_path }}/MEMORY.md directly using those keywords.
82
+
4. Only if MEMORY.md directly points to rollout summaries/skills, open the 1-2
42
83
most relevant files under {{ base_path }}/rollout_summaries/ or
43
84
{{ base_path }}/skills/.
44
-
4. If above are not clear and you need exact commands, error text, or precise evidence, search over `rollout_path` for more evidence.
45
85
5. If there are no relevant hits, stop memory lookup and continue normally.
0 commit comments