938eb9dc0e
- Added final finalize prompt for session summary generation with required XML fields. - Introduced recommended prompt flow with structured observation format and hierarchical storage principles. - Created final init prompt for processing tool executions with clear guidelines on when to store observations. - Developed final observation prompt for analyzing tool outputs and generating structured observations. - Migrated old prompt flow to a new system with improved clarity and structured data handling. - Updated parser and storage mechanisms to accommodate new observation formats and fields. - Enhanced documentation for new prompts and their usage in memory processing sessions.
22 lines
399 B
Markdown
22 lines
399 B
Markdown
# Draft Observation Prompt
|
|
|
|
```
|
|
TOOL OBSERVATION
|
|
================
|
|
Tool: {tool_name}
|
|
Time: {timestamp}
|
|
Prompt: {prompt_number}
|
|
|
|
Input:
|
|
{tool_input JSON}
|
|
|
|
Output:
|
|
{tool_output JSON}
|
|
|
|
TASK
|
|
----
|
|
Analyze this tool output. If it contains significant information about the codebase, generate an observation using the XML format from the init prompt.
|
|
|
|
If this is routine or repetitive, you can skip it.
|
|
```
|