@mindstudio-ai/remy 0.1.312 → 0.1.314
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/headless.d.ts +3 -2
- package/dist/headless.js +443 -277
- package/dist/index.js +502 -328
- package/dist/prompt/compiled/platform.md +1 -1
- package/dist/prompt/skills/realtimeEvents.md +32 -6
- package/dist/prompt/static/coding.md +1 -1
- package/dist/prompt/static/intake.md +1 -1
- package/dist/prompt/static/team.md +8 -0
- package/dist/subagents/codeSanityCheck/prompt.md +2 -0
- package/dist/subagents/research/prompt.md +25 -0
- package/package.json +1 -1
package/dist/headless.d.ts
CHANGED
|
@@ -122,8 +122,9 @@ declare class HeadlessSession {
|
|
|
122
122
|
/** Apply queued tool block updates to state.messages. Safe to call any time. */
|
|
123
123
|
private applyPendingBlockUpdates;
|
|
124
124
|
/**
|
|
125
|
-
* Forced compaction gate. If lastContextSize exceeds the
|
|
126
|
-
*
|
|
125
|
+
* Forced compaction gate. If lastContextSize exceeds the upcoming turn's
|
|
126
|
+
* model threshold (per-model — see ModelContextLimits in models/surfaces),
|
|
127
|
+
* compact before letting the turn run. Coalesces with any in-flight
|
|
127
128
|
* compaction (e.g., one already started by /compact or a tool call). No
|
|
128
129
|
* timeout — compaction takes as long as it takes.
|
|
129
130
|
*
|