runtape 0.7.1 → 0.8.0

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/index.js CHANGED
@@ -579,7 +579,7 @@ async function readNewAssistantTurns(sessionId, transcriptPath) {
579
579
  }
580
580
  return { turns, seen };
581
581
  }
582
- var CURSOR_KEEP = 200;
582
+ var CURSOR_KEEP = 1e5;
583
583
  async function readCursor(sessionId) {
584
584
  try {
585
585
  const raw = await readFile5(paths.transcriptCursorFile(sessionId), "utf8");
@@ -727,7 +727,7 @@ async function readNewSubagentEvents(parentSessionId, agentToolUseId, transcript
727
727
  }
728
728
  return { emits, seen };
729
729
  }
730
- var CURSOR_KEEP2 = 500;
730
+ var CURSOR_KEEP2 = 1e5;
731
731
  async function readCursor2(parentSessionId, agentToolUseId) {
732
732
  try {
733
733
  const raw = await readFile6(cursorFile(parentSessionId, agentToolUseId), "utf8");