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: lib/prompts/compress.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,8 +58,14 @@ PARALLEL COMPRESS EXECUTION
58
58
When multiple independent ranges are ready and their boundaries do not overlap, launch MULTIPLE `compress` calls in parallel in a single response. Run compression sequentially only when ranges overlap or when a later range depends on the result of an earlier compression.
59
59
60
60
THE FORMAT OF COMPRESS
61
-
`topic`: Short label (3-5 words) for display - e.g., "Auth System Exploration"
62
-
`content`: Object containing:
63
-
`startString`: Unique text string marking the beginning of the range
64
-
`endString`: Unique text string marking the end of the range
65
-
`summary`: Complete technical summary replacing all content in the range
61
+
62
+
```
63
+
{
64
+
topic: string, // Short label (3-5 words) - e.g., "Auth System Exploration"
65
+
content: {
66
+
startString: string, // Unique text string marking the beginning of the range
67
+
endString: string, // Unique text string marking the end of the range
68
+
summary: string // Complete technical summary replacing all content in the range
0 commit comments