mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-25 08:02:04 +00:00
fix: improve compaction summary instructions to preserve active work (#8903)
fix: improve compaction summary instructions to preserve active work Expand staged-summary merge instructions to preserve active task status, batch progress, latest user request, and follow-up commitments so compaction handoffs retain in-flight work context. Co-authored-by: joetomasone <56984887+joetomasone@users.noreply.github.com> Co-authored-by: Josh Lehman <josh@martian.engineering>
This commit is contained in:
@@ -14,9 +14,20 @@ export const MIN_CHUNK_RATIO = 0.15;
|
||||
export const SAFETY_MARGIN = 1.2; // 20% buffer for estimateTokens() inaccuracy
|
||||
const DEFAULT_SUMMARY_FALLBACK = "No prior history.";
|
||||
const DEFAULT_PARTS = 2;
|
||||
const MERGE_SUMMARIES_INSTRUCTIONS =
|
||||
"Merge these partial summaries into a single cohesive summary. Preserve decisions," +
|
||||
" TODOs, open questions, and any constraints.";
|
||||
const MERGE_SUMMARIES_INSTRUCTIONS = [
|
||||
"Merge these partial summaries into a single cohesive summary.",
|
||||
"",
|
||||
"MUST PRESERVE:",
|
||||
"- Active tasks and their current status (in-progress, blocked, pending)",
|
||||
"- Batch operation progress (e.g., '5/17 items completed')",
|
||||
"- The last thing the user requested and what was being done about it",
|
||||
"- Decisions made and their rationale",
|
||||
"- TODOs, open questions, and constraints",
|
||||
"- Any commitments or follow-ups promised",
|
||||
"",
|
||||
"PRIORITIZE recent context over older history. The agent needs to know",
|
||||
"what it was doing, not just what was discussed.",
|
||||
].join("\n");
|
||||
const IDENTIFIER_PRESERVATION_INSTRUCTIONS =
|
||||
"Preserve all opaque identifiers exactly as written (no shortening or reconstruction), " +
|
||||
"including UUIDs, hashes, IDs, tokens, API keys, hostnames, IPs, ports, URLs, and file names.";
|
||||
|
||||
Reference in New Issue
Block a user