@skydiveai/pi-extensions 0.1.0-beta.190 → 0.1.0-beta.1900

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1469 -502
  2. package/package.json +2 -9
package/dist/index.mjs CHANGED
@@ -2,7 +2,7 @@ import { createRequire } from "node:module";
2
2
  import { DefaultExecutionEventBusManager, DefaultRequestHandler, InMemoryTaskStore } from "@a2a-js/sdk/server";
3
3
  import { UserBuilder, restHandler } from "@a2a-js/sdk/server/express";
4
4
  import { buildAgentCard, chainMiddleware, composeHandlers, createAgentExecutor, createProtocolHandlers, getCurrentTraceparent, logger, mountAt, requestHeaders, requestUrl, webHandlerToMiddleware } from "@skydiveai/pi-server";
5
- import { mkdir, open, readFile, readdir, stat, unlink } from "node:fs/promises";
5
+ import { mkdir, open, readFile, readdir, stat, unlink, writeFile } from "node:fs/promises";
6
6
  import { basename, dirname, join, relative, resolve } from "node:path";
7
7
  import { z } from "zod";
8
8
  import { pathToFileURL } from "node:url";
@@ -19,6 +19,9 @@ import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-http";
19
19
  import { Resource } from "@opentelemetry/resources";
20
20
  import { BatchSpanProcessor, NodeTracerProvider } from "@opentelemetry/sdk-trace-node";
21
21
  import { ATTR_SERVICE_NAME } from "@opentelemetry/semantic-conventions";
22
+ import { execFile } from "node:child_process";
23
+ import { availableParallelism } from "node:os";
24
+ import { promisify } from "node:util";
22
25
  import { hc } from "hono/client";
23
26
  import { parse } from "yaml";
24
27
  import { quote } from "shell-quote";
@@ -256,7 +259,7 @@ function createHealthHandler({ metadata }) {
256
259
  * read on the hot path before every LLM call), it falls back to the default
257
260
  * for that knob and logs once.
258
261
  */
259
- const log$13 = logger.child({ module: "context-management-config" });
262
+ const log$15 = logger.child({ module: "context-management-config" });
260
263
  const DEFAULT_CONTEXT_MANAGEMENT_CONFIG = {
261
264
  enabled: false,
262
265
  perResultMaxBytes: 16 * 1024,
@@ -304,7 +307,7 @@ function resolveContextManagementConfig(env = process.env) {
304
307
  maxModelCallsPerTurn: env.SKYDIVE_CTX_MAX_MODEL_CALLS
305
308
  });
306
309
  if (!parsed.success) {
307
- log$13.warn({
310
+ log$15.warn({
308
311
  event: "context_management_config_invalid",
309
312
  err: parsed.error
310
313
  }, "falling back to default context-management config");
@@ -415,6 +418,275 @@ function installIterationCap({ session, log }, configOverride = null) {
415
418
  */
416
419
  const CAPABILITY_SOUL_NUDGE = "New capability gained — once the current task is done, if this changes what you can do for the user, record it in `soul.md` so it carries into future conversations rather than being rediscovered from scratch (then commit and push).";
417
420
  //#endregion
421
+ //#region src/extensions/tool-call-summary.ts
422
+ const log$14 = logger.child({ module: "tool-call-summary-extension" });
423
+ /**
424
+ * The injected parameter name: a namespaced sentinel, so it can never collide
425
+ * with a real tool argument and is unmistakable in transcripts and logs. The
426
+ * frontend renderer (ANY-2723) duplicates this literal — keep the two in sync.
427
+ */
428
+ const TOOL_CALL_SUMMARY_FIELD = "__skydive_summary__";
429
+ /** JSON Schema fragment for the injected parameter. */
430
+ const SUMMARY_PROPERTY = {
431
+ type: "string",
432
+ description: "Required for every tool call. A concise, specific summary (max ~8 words) of what THIS call does and why, written for a person watching the conversation, e.g. \"Searching feedback for billing complaints\" or \"Reading the auth middleware\". Address the user directly in second person: the summary is read by the user, so refer to their things as \"your\", never in third person — \"Reading your emails\", not \"Reading his emails\". Always use the present progressive tense, since it is shown while the call runs: \"Updating your Slack\", never \"Updated your Slack\". Make each summary distinct from your other tool calls; never reuse a generic label like \"Search query\" or \"Running command\"."
433
+ };
434
+ const jsonSchemaObjectSchema = z.object({
435
+ type: z.unknown().optional(),
436
+ properties: z.record(z.string(), z.unknown()).optional(),
437
+ required: z.array(z.string()).optional(),
438
+ additionalProperties: z.unknown().optional()
439
+ }).passthrough();
440
+ const toolEntrySchema = z.object({
441
+ name: z.string().optional(),
442
+ input_schema: jsonSchemaObjectSchema.optional(),
443
+ parameters: jsonSchemaObjectSchema.optional(),
444
+ function: z.object({
445
+ name: z.string().optional(),
446
+ parameters: jsonSchemaObjectSchema.optional()
447
+ }).passthrough().optional()
448
+ }).passthrough();
449
+ const payloadWithToolsSchema = z.object({ tools: z.array(z.unknown()) }).passthrough();
450
+ /**
451
+ * Add the summary property to one JSON Schema object. Returns the augmented
452
+ * copy, or `null` when the tool should be left untouched: a strict schema
453
+ * (`additionalProperties: false`) whose validation would reject the extra
454
+ * field, or one that already declares a `__skydive_summary__` property of its own.
455
+ */
456
+ function augmentSchema(schema) {
457
+ if (schema.additionalProperties === false) return null;
458
+ const properties = schema.properties ?? {};
459
+ if ("__skydive_summary__" in properties) return null;
460
+ const required = schema.required ?? [];
461
+ return {
462
+ ...schema,
463
+ type: schema.type ?? "object",
464
+ properties: {
465
+ [TOOL_CALL_SUMMARY_FIELD]: SUMMARY_PROPERTY,
466
+ ...properties
467
+ },
468
+ required: required.includes("__skydive_summary__") ? required : [...required, TOOL_CALL_SUMMARY_FIELD]
469
+ };
470
+ }
471
+ /**
472
+ * Augment a single tool entry, dispatching on which provider shape it is.
473
+ * Returns the (possibly rebuilt) entry and whether anything changed. Skipped
474
+ * tools — wrong shape, strict, or name in `strictToolNames` — return unchanged.
475
+ */
476
+ function augmentToolEntry(entry, strictToolNames) {
477
+ const parsed = toolEntrySchema.safeParse(entry);
478
+ if (!parsed.success) return {
479
+ entry,
480
+ changed: false
481
+ };
482
+ const tool = parsed.data;
483
+ const name = tool.name ?? tool.function?.name ?? null;
484
+ if (name !== null && strictToolNames.has(name)) return {
485
+ entry,
486
+ changed: false
487
+ };
488
+ if (tool.input_schema) {
489
+ const augmented = augmentSchema(tool.input_schema);
490
+ if (!augmented) return {
491
+ entry,
492
+ changed: false
493
+ };
494
+ return {
495
+ entry: {
496
+ ...tool,
497
+ input_schema: augmented
498
+ },
499
+ changed: true
500
+ };
501
+ }
502
+ if (tool.parameters) {
503
+ const augmented = augmentSchema(tool.parameters);
504
+ if (!augmented) return {
505
+ entry,
506
+ changed: false
507
+ };
508
+ return {
509
+ entry: {
510
+ ...tool,
511
+ parameters: augmented
512
+ },
513
+ changed: true
514
+ };
515
+ }
516
+ if (tool.function?.parameters) {
517
+ const augmented = augmentSchema(tool.function.parameters);
518
+ if (!augmented) return {
519
+ entry,
520
+ changed: false
521
+ };
522
+ return {
523
+ entry: {
524
+ ...tool,
525
+ function: {
526
+ ...tool.function,
527
+ parameters: augmented
528
+ }
529
+ },
530
+ changed: true
531
+ };
532
+ }
533
+ return {
534
+ entry,
535
+ changed: false
536
+ };
537
+ }
538
+ /**
539
+ * Inject the summary field into every eligible tool in a provider payload.
540
+ * Returns a new payload when at least one tool was augmented, or `undefined`
541
+ * to signal "no change" (which keeps the original payload, per the
542
+ * `before_provider_request` contract).
543
+ *
544
+ * @param payload The outgoing provider payload (shape varies by provider).
545
+ * @param strictToolNames Names of tools whose registered schema is strict and
546
+ * must be skipped to avoid validation errors.
547
+ */
548
+ function injectToolCallSummary(payload, strictToolNames) {
549
+ const parsed = payloadWithToolsSchema.safeParse(payload);
550
+ if (!parsed.success || parsed.data.tools.length === 0) return void 0;
551
+ let changed = false;
552
+ const tools = parsed.data.tools.map((entry) => {
553
+ const result = augmentToolEntry(entry, strictToolNames);
554
+ if (result.changed) changed = true;
555
+ return result.entry;
556
+ });
557
+ if (!changed) return void 0;
558
+ return {
559
+ ...parsed.data,
560
+ tools
561
+ };
562
+ }
563
+ /**
564
+ * Names of registered tools whose schema sets `additionalProperties: false`.
565
+ * Pi validates the model's tool args against this registered schema, so the
566
+ * injected field would make a strict tool's call fail validation — skip them.
567
+ */
568
+ function getStrictToolNames(pi) {
569
+ const names = /* @__PURE__ */ new Set();
570
+ for (const tool of pi.getAllTools()) {
571
+ const parsed = jsonSchemaObjectSchema.safeParse(tool.parameters);
572
+ if (parsed.success && parsed.data.additionalProperties === false) names.add(tool.name);
573
+ }
574
+ return names;
575
+ }
576
+ /**
577
+ * Whether a tool's own schema declares a `__skydive_summary__` property. We
578
+ * never inject into such a tool, so any value it carries is a real argument
579
+ * and must be left alone.
580
+ */
581
+ function schemaDeclaresSummary(parameters) {
582
+ const parsed = jsonSchemaObjectSchema.safeParse(parameters);
583
+ return parsed.success && parsed.data.properties != null && "__skydive_summary__" in parsed.data.properties;
584
+ }
585
+ function toolDeclaresSummaryParam(pi, toolName) {
586
+ const tool = pi.getAllTools().find((candidate) => candidate.name === toolName);
587
+ if (!tool) return false;
588
+ return schemaDeclaresSummary(tool.parameters);
589
+ }
590
+ /** A copy of `args` without the injected summary. Never mutates its input. */
591
+ function withoutInjectedSummary(args) {
592
+ if (args == null || typeof args !== "object" || Array.isArray(args)) return args;
593
+ if (!("__skydive_summary__" in args)) return args;
594
+ const { [TOOL_CALL_SUMMARY_FIELD]: _summary, ...rest } = args;
595
+ return rest;
596
+ }
597
+ /**
598
+ * Register a tool so the injected summary is removed *before* pi validates
599
+ * the model's arguments against the tool's schema.
600
+ *
601
+ * Needed because the `tool_call` strip below runs too late. pi-agent-core's
602
+ * `prepareToolCall` goes: `tool.prepareArguments` → `validateToolArguments` →
603
+ * `beforeToolCall` (which is what dispatches `tool_call`). A tool whose schema
604
+ * sets `additionalProperties: false` therefore rejects the summary and errors
605
+ * the call — client-side, before any request reaches the server — while the
606
+ * strip meant to prevent exactly that sits one step further down.
607
+ *
608
+ * `augmentSchema` already skips strict tools, but that only controls what the
609
+ * model is *told*. It still emits the field on those tools, because every
610
+ * other tool in the list declares it as required for every call. So a server
611
+ * can connect, bind its tools, present a healthy inventory, and have every
612
+ * call fail — and it reads as the server's fault when it is ours.
613
+ *
614
+ * Apply to tools registered from schemas we do not author: MCP servers and
615
+ * local `tools/*.ts`. Tools built here with `Type.Object(...)` do not need it
616
+ * (TypeBox emits no `additionalProperties`, so the field validates fine and
617
+ * the `tool_call` strip removes it in time).
618
+ *
619
+ * Fails open, like the rest of this module: if the strip throws, the original
620
+ * arguments are used rather than failing the call.
621
+ */
622
+ function withSummaryStrippedBeforeValidation(tool) {
623
+ if (schemaDeclaresSummary(tool.parameters)) return tool;
624
+ const toolPrepare = tool.prepareArguments;
625
+ const prepareArguments = ((args) => {
626
+ let stripped = args;
627
+ try {
628
+ stripped = withoutInjectedSummary(args);
629
+ } catch (err) {
630
+ log$14.error({
631
+ err,
632
+ event: "tool_call_summary_prepare_strip_failed",
633
+ toolName: tool.name
634
+ }, "tool_call_summary pre-validation strip failed; leaving arguments untouched");
635
+ }
636
+ return toolPrepare ? toolPrepare(stripped) : stripped;
637
+ });
638
+ return {
639
+ ...tool,
640
+ prepareArguments
641
+ };
642
+ }
643
+ /**
644
+ * Remove the injected summary from a tool's execution input. No-op when the
645
+ * field is absent, or when the tool genuinely declares a `__skydive_summary__`
646
+ * parameter of its own (which we never inject into, so its value is real).
647
+ * Mutates `input` in place, matching the `tool_call` contract.
648
+ *
649
+ * Fails open: this runs on the critical path of tool execution, and the
650
+ * `getAllTools()` lookup can throw. On any error we leave `input` untouched
651
+ * (the sentinel may pass through to the tool, but a bug here can never break
652
+ * tool execution).
653
+ */
654
+ function stripInjectedSummary(pi, toolName, input) {
655
+ try {
656
+ if (!("__skydive_summary__" in input)) return;
657
+ if (toolDeclaresSummaryParam(pi, toolName)) return;
658
+ delete input[TOOL_CALL_SUMMARY_FIELD];
659
+ } catch (err) {
660
+ log$14.error({
661
+ err,
662
+ event: "tool_call_summary_strip_failed",
663
+ toolName
664
+ }, "tool_call_summary strip failed; leaving tool input untouched");
665
+ }
666
+ }
667
+ /**
668
+ * Compute the rewritten payload for a `before_provider_request` event, failing
669
+ * open: on any error the original payload is left untouched so a bug here can
670
+ * never break an LLM call.
671
+ */
672
+ function buildInjectedPayload(pi, payload) {
673
+ try {
674
+ return injectToolCallSummary(payload, getStrictToolNames(pi));
675
+ } catch (err) {
676
+ log$14.error({
677
+ err,
678
+ event: "tool_call_summary_injection_failed"
679
+ }, "tool_call_summary injection failed; passing payload through unchanged");
680
+ return;
681
+ }
682
+ }
683
+ const toolCallSummaryExtension = (pi) => {
684
+ pi.on("before_provider_request", (event) => buildInjectedPayload(pi, event.payload));
685
+ pi.on("tool_call", (event) => {
686
+ stripInjectedSummary(pi, event.toolName, event.input);
687
+ });
688
+ };
689
+ //#endregion
418
690
  //#region src/extensions/local-tools.ts
419
691
  /**
420
692
  * Local-tools adapter as a pi extension. Mirrors the mcp.ts hot-reload pattern
@@ -438,7 +710,7 @@ const CAPABILITY_SOUL_NUDGE = "New capability gained — once the current task i
438
710
  * or `ToolDefinition[]`. Files starting with `_` or `.` are skipped, so
439
711
  * `tools/_example.ts` documents the shape without registering.
440
712
  */
441
- const log$12 = logger.child({ module: "local-tools-extension" });
713
+ const log$13 = logger.child({ module: "local-tools-extension" });
442
714
  const TOOLS_DIRNAME = "tools";
443
715
  const fileState = /* @__PURE__ */ new Map();
444
716
  let pendingLocalToolsUpdate = null;
@@ -565,7 +837,7 @@ async function reconcileLocalTools({ pi, dir }) {
565
837
  action = existing ? "refreshed" : "added";
566
838
  }
567
839
  for (const tool of tools) {
568
- pi.registerTool(withDefaultPromptSnippet(tool));
840
+ pi.registerTool(withSummaryStrippedBeforeValidation(withDefaultPromptSnippet(tool)));
569
841
  summary.totalTools++;
570
842
  }
571
843
  if (action === "added") summary.added.push(file);
@@ -582,7 +854,7 @@ async function reconcileAndQueue({ pi, dir, reason }) {
582
854
  dir
583
855
  });
584
856
  if (reason !== "session_start" && summaryHasChanges$1(summary)) pendingLocalToolsUpdate = summary;
585
- log$12.info({
857
+ log$13.info({
586
858
  event: "local_tools_reconcile",
587
859
  reason,
588
860
  total_tools: summary.totalTools,
@@ -604,7 +876,7 @@ const localToolsExtension = (pi) => {
604
876
  reason: "session_start"
605
877
  });
606
878
  } catch (err) {
607
- log$12.error({
879
+ log$13.error({
608
880
  err,
609
881
  event: "local_tools_reconcile_failed"
610
882
  }, "local tools reconcile failed");
@@ -616,7 +888,7 @@ const localToolsExtension = (pi) => {
616
888
  try {
617
889
  current = await listToolFiles(dir);
618
890
  } catch (err) {
619
- log$12.warn({
891
+ log$13.warn({
620
892
  err,
621
893
  event: "local_tools_listing_failed"
622
894
  }, "tools/ listing failed");
@@ -638,7 +910,7 @@ const localToolsExtension = (pi) => {
638
910
  reason: "auto_reload"
639
911
  });
640
912
  } catch (err) {
641
- log$12.error({
913
+ log$13.error({
642
914
  err,
643
915
  event: "local_tools_auto_reload_failed"
644
916
  }, "auto-reload after tools/ change failed");
@@ -692,6 +964,19 @@ const STDERR_BUFFER_BYTES = 4096;
692
964
  * indistinguishable from any other transport problem. Walk the cause
693
965
  * chain so the agent sees the real underlying error.
694
966
  */
967
+ /**
968
+ * True when an error from an http MCP transport (connect, listTools, or a tool
969
+ * call) is an authentication failure. With no authProvider configured the SDK
970
+ * surfaces a 401 as `StreamableHTTPError(401)`; older paths translate it to
971
+ * `UnauthorizedError`. A dead/expired OAuth token (the proxy can no longer
972
+ * mint one) shows up here on the NEXT request against a previously-connected
973
+ * client — not just at connect — so reconcile must re-classify such a failure
974
+ * as `pending_auth` instead of a generic `failed`, keeping the "waiting on
975
+ * auth" report consistent with `platform auth`.
976
+ */
977
+ function isUnauthorizedError(err) {
978
+ return err instanceof UnauthorizedError || err instanceof StreamableHTTPError && err.code === 401;
979
+ }
695
980
  function formatError(err) {
696
981
  if (!(err instanceof Error)) return String(err);
697
982
  const parts = [err.message];
@@ -713,12 +998,12 @@ async function connectHttp(_id, config, client) {
713
998
  stderr: null
714
999
  };
715
1000
  } catch (err) {
716
- if (err instanceof UnauthorizedError || err instanceof StreamableHTTPError && err.code === 401) return {
1001
+ if (isUnauthorizedError(err)) return {
717
1002
  status: "pending_auth",
718
1003
  client,
719
1004
  stderr: "",
720
1005
  stderrBuffer: null,
721
- cliHint: `platform auth mcp ${config.url}`
1006
+ cliHint: `platform auth mcp ${config.url} --service "<Product>"`
722
1007
  };
723
1008
  return {
724
1009
  status: "failed",
@@ -863,7 +1148,7 @@ async function loadMcpConfig(path) {
863
1148
  * Clients are keyed by JSON-stringified config and reused across
864
1149
  * reloads — only changed configs reconnect.
865
1150
  */
866
- const log$11 = logger.child({ module: "mcp-extension" });
1151
+ const log$12 = logger.child({ module: "mcp-extension" });
867
1152
  async function closeConnected(connected) {
868
1153
  try {
869
1154
  await connected.client.close();
@@ -953,7 +1238,7 @@ var McpExtension = class {
953
1238
  const parameters = Type.Unsafe(tool.inputSchema);
954
1239
  const description = tool.description?.trim() ?? "";
955
1240
  const promptSnippet = description.length > 0 ? description : `MCP tool from server "${serverId}".`;
956
- pi.registerTool({
1241
+ pi.registerTool(withSummaryStrippedBeforeValidation({
957
1242
  name,
958
1243
  label: `MCP: ${serverId}/${tool.name}`,
959
1244
  description,
@@ -987,7 +1272,7 @@ var McpExtension = class {
987
1272
  };
988
1273
  }
989
1274
  }
990
- });
1275
+ }));
991
1276
  this.registeredMcpToolNames.add(name);
992
1277
  }
993
1278
  async reconcile({ pi, configPath, connectTimeoutMs }) {
@@ -1190,6 +1475,64 @@ var McpExtension = class {
1190
1475
  try {
1191
1476
  mcpTools = (await connected.client.listTools()).tools;
1192
1477
  } catch (err) {
1478
+ if (isUnauthorizedError(err) && serverConfig.transport === "http") {
1479
+ await closeConnected(connected);
1480
+ const retry = await connectClient(id, serverConfig, { connectTimeoutMs });
1481
+ if (retry.status === "pending_auth") return {
1482
+ id,
1483
+ store: {
1484
+ client: retry.client,
1485
+ configKey,
1486
+ status: "pending_auth",
1487
+ stderrBuffer: null,
1488
+ cliHint: retry.cliHint
1489
+ },
1490
+ serverStatus: {
1491
+ status: "pending_auth",
1492
+ stderr: "",
1493
+ cliHint: retry.cliHint
1494
+ },
1495
+ change: null,
1496
+ error: null,
1497
+ tools: null
1498
+ };
1499
+ if (retry.status === "failed") return {
1500
+ id,
1501
+ store: null,
1502
+ serverStatus: {
1503
+ status: "failed",
1504
+ error: retry.error,
1505
+ stderr: retry.stderr
1506
+ },
1507
+ change: null,
1508
+ error: {
1509
+ serverId: id,
1510
+ message: retry.error
1511
+ },
1512
+ tools: null
1513
+ };
1514
+ if (retry.status === "connected") {
1515
+ connected = {
1516
+ client: retry.client,
1517
+ configKey,
1518
+ status: "connected",
1519
+ stderrBuffer: retry.stderr,
1520
+ cliHint: null
1521
+ };
1522
+ mcpTools = (await connected.client.listTools()).tools;
1523
+ return {
1524
+ id,
1525
+ store: connected,
1526
+ serverStatus: { status: "connected" },
1527
+ change: action === "reused" ? "refreshed" : action,
1528
+ error: null,
1529
+ tools: {
1530
+ client: connected.client,
1531
+ list: mcpTools
1532
+ }
1533
+ };
1534
+ }
1535
+ }
1193
1536
  const message = err instanceof Error ? err.message : String(err);
1194
1537
  const stderr = connected.stderrBuffer?.read() ?? "";
1195
1538
  return {
@@ -1227,7 +1570,7 @@ var McpExtension = class {
1227
1570
  });
1228
1571
  this.lastConfigMtimeMs = await readConfigMtimeMs(configPath);
1229
1572
  if (reason !== "session_start" && summaryHasChanges(summary)) this.pendingMcpUpdate = summary;
1230
- log$11.info({
1573
+ log$12.info({
1231
1574
  event: "mcp_reconcile",
1232
1575
  reason,
1233
1576
  total_tools: summary.totalTools,
@@ -1250,7 +1593,7 @@ var McpExtension = class {
1250
1593
  reason: "session_start"
1251
1594
  });
1252
1595
  } catch (err) {
1253
- log$11.error({
1596
+ log$12.error({
1254
1597
  err,
1255
1598
  event: "mcp_reconcile_failed"
1256
1599
  }, "MCP reconcile failed");
@@ -1262,7 +1605,7 @@ var McpExtension = class {
1262
1605
  try {
1263
1606
  mtime = await readConfigMtimeMs(configPath);
1264
1607
  } catch (err) {
1265
- log$11.warn({
1608
+ log$12.warn({
1266
1609
  err,
1267
1610
  event: "mcp_mtime_check_failed"
1268
1611
  }, "mtime check on mcp.config.json failed");
@@ -1276,7 +1619,7 @@ var McpExtension = class {
1276
1619
  reason: "auto_reload"
1277
1620
  });
1278
1621
  } catch (err) {
1279
- log$11.error({
1622
+ log$12.error({
1280
1623
  err,
1281
1624
  event: "mcp_auto_reload_failed"
1282
1625
  }, "auto-reload after mcp.config.json change failed");
@@ -1639,32 +1982,396 @@ const bashDefaultTimeoutExtension = (pi) => {
1639
1982
  });
1640
1983
  };
1641
1984
  //#endregion
1642
- //#region src/channel-context-ref.ts
1985
+ //#region src/extensions/resource-pressure-warning.ts
1643
1986
  /**
1644
- * The worker injects only a reference — `{ channel, messageId }` — into the
1645
- * sandbox env (`SKYDIVE_CHANNEL_CONTEXT`) rather than the full context.
1987
+ * Mid-run resource-pressure warning to the agent.
1646
1988
  *
1647
- * The canonical `ChannelContextRef` type + `parseChannelContextRef` live in
1648
- * `@createinc/anyone-channels`, but the harness (`@skydiveai/*`) keeps zero
1649
- * `@createinc/*` dependencies importing that package would pull the whole
1650
- * platform channel stack (Slack/email/Linq SDKs, messaging) in just to read
1651
- * two fields. So we validate the (stable) shape locally instead.
1989
+ * The sandbox already detects pressure the boot scripts cap the
1990
+ * user-workload cgroup (memory.high/memory.max) and watchers log warn/crit
1991
+ * edges for memory and disk but nothing told the *agent*, so a turn burned
1992
+ * straight to the OOM kill (or a full disk) and only learned about it from
1993
+ * the post-mortem notice. This extension closes that gap in-process: while a
1994
+ * turn is active it polls the agent cgroup and the root filesystem and, the
1995
+ * first time usage crosses a warn threshold, folds a system notification into
1996
+ * the open turn so the agent can checkpoint, shed work (constrain
1997
+ * parallelism, kill a background hog, clean scratch space), or request a
1998
+ * bigger tier BEFORE the kill.
1999
+ *
2000
+ * The notification is triggered by the two conditions that actually kill
2001
+ * work — memory near the cgroup hard cap, disk near full — and reports a
2002
+ * snapshot of all the relevant stats (memory, CPU utilization, disk) so the
2003
+ * agent can tell which resource is the problem and how much headroom the
2004
+ * others have.
2005
+ *
2006
+ * Edge-triggered, once per trigger per turn: the fired flags reset on
2007
+ * agent_start, so a turn that rides a threshold gets one warning per
2008
+ * resource, not a stream. Polling only runs while the agent is active — an
2009
+ * idle sandbox's resource usage is not the agent's problem and there is no
2010
+ * open turn to deliver into anyway.
2011
+ *
2012
+ * Best-effort throughout: any read failure (cgroup absent, controller not
2013
+ * delegated, non-cgroup-v2 host, df missing) reads as "no signal" for that
2014
+ * stat and the extension warns on what it can see — it must never break a
2015
+ * turn over an observability feature.
1652
2016
  */
1653
- const channelContextRefSchema = z.object({ messageId: z.string().nullable() });
2017
+ const execFileAsync = promisify(execFile);
2018
+ const log$11 = logger.child({ module: "resource-pressure-warning" });
2019
+ const POLL_INTERVAL_MS = 1e4;
2020
+ function envOverride(name) {
2021
+ for (const prefix of ["SKYDIVE_", "ANYONE_"]) {
2022
+ const value = process.env[`${prefix}${name}`];
2023
+ if (value != null && value !== "") return value;
2024
+ }
2025
+ return null;
2026
+ }
2027
+ function cgroupDir() {
2028
+ return envOverride("AGENT_CGROUP") ?? "/sys/fs/cgroup/agent";
2029
+ }
2030
+ function diskRoot() {
2031
+ return envOverride("DISK_ROOT") ?? "/";
2032
+ }
1654
2033
  /**
1655
- * Pull the current turn's message id out of the ref blob. Returns `null`
1656
- * outside a turn (cron / system) or if the blob is missing/malformed.
2034
+ * Read a cgroup v2 scalar file. Returns a number, or null for "max"
2035
+ * (uncapped), an empty/absent file, or any read/parse error an uncapped or
2036
+ * unreadable limit means there is nothing meaningful to warn against.
1657
2037
  */
1658
- function extractMessageId(channelContextJson) {
1659
- if (!channelContextJson) return null;
2038
+ async function readScalar(file) {
1660
2039
  try {
1661
- const parsed = channelContextRefSchema.safeParse(JSON.parse(channelContextJson));
1662
- return parsed.success ? parsed.data.messageId : null;
1663
- } catch {
2040
+ const raw = (await readFile(`${cgroupDir()}/${file}`, "utf8")).trim();
2041
+ if (raw === "" || raw === "max") return null;
2042
+ const n = Number(raw);
2043
+ return Number.isFinite(n) ? n : null;
2044
+ } catch (_error) {
1664
2045
  return null;
1665
2046
  }
1666
2047
  }
1667
- //#endregion
2048
+ /**
2049
+ * Read a cgroup v2 "flat keyed" file (one `key value` pair per line, e.g.
2050
+ * cpu.stat) and return the counter for `key`, or null when absent.
2051
+ */
2052
+ async function readKeyedCounter(file, key) {
2053
+ try {
2054
+ const raw = await readFile(`${cgroupDir()}/${file}`, "utf8");
2055
+ for (const line of raw.split("\n")) {
2056
+ const [k, v] = line.trim().split(/\s+/);
2057
+ if (k === key) {
2058
+ const n = Number(v);
2059
+ return Number.isFinite(n) ? n : null;
2060
+ }
2061
+ }
2062
+ return null;
2063
+ } catch (_error) {
2064
+ return null;
2065
+ }
2066
+ }
2067
+ /**
2068
+ * Live memory usage as an integer percent of the hard cap, or null when
2069
+ * either side is unreadable/uncapped. Exported for tests.
2070
+ */
2071
+ async function readMemUsePct() {
2072
+ const [current, max] = await Promise.all([readScalar("memory.current"), readScalar("memory.max")]);
2073
+ if (current === null || max === null || max <= 0) return null;
2074
+ return {
2075
+ pct: Math.floor(current / max * 100),
2076
+ currentBytes: current,
2077
+ maxBytes: max
2078
+ };
2079
+ }
2080
+ /**
2081
+ * Root filesystem used% (df -P Capacity column), or null on any failure.
2082
+ * Exported for tests.
2083
+ */
2084
+ async function readDiskUsePct() {
2085
+ try {
2086
+ const { stdout } = await execFileAsync("df", ["-P", diskRoot()]);
2087
+ const dataRow = stdout.trim().split("\n")[1];
2088
+ if (dataRow == null) return null;
2089
+ const capacity = dataRow.trim().split(/\s+/)[4];
2090
+ if (capacity == null) return null;
2091
+ const pct = Number(capacity.replace("%", ""));
2092
+ return Number.isFinite(pct) ? pct : null;
2093
+ } catch (_error) {
2094
+ return null;
2095
+ }
2096
+ }
2097
+ /**
2098
+ * CPU utilization sampler. cgroup v2 exposes cumulative CPU time
2099
+ * (cpu.stat usage_usec); utilization is the delta between two samples over
2100
+ * the wall time between them, normalized by core count. The first call after
2101
+ * construction has no previous sample and returns null.
2102
+ */
2103
+ function createCpuSampler() {
2104
+ let prevUsageUsec = null;
2105
+ let prevAtMs = null;
2106
+ return async () => {
2107
+ const usage = await readKeyedCounter("cpu.stat", "usage_usec");
2108
+ const now = Date.now();
2109
+ const prev = prevUsageUsec;
2110
+ const prevAt = prevAtMs;
2111
+ prevUsageUsec = usage;
2112
+ prevAtMs = now;
2113
+ if (usage === null || prev === null || prevAt === null) return null;
2114
+ const wallUsec = (now - prevAt) * 1e3;
2115
+ if (wallUsec <= 0) return null;
2116
+ const cores = availableParallelism();
2117
+ const pct = Math.round((usage - prev) / (wallUsec * cores) * 100);
2118
+ return Math.max(0, Math.min(100, pct));
2119
+ };
2120
+ }
2121
+ function fmtMb(bytes) {
2122
+ return Math.round(bytes / 1024 / 1024);
2123
+ }
2124
+ /** The model-facing warning text. Exported for tests. */
2125
+ function resourcePressureWarningText(trigger, { mem, cpuPct, diskPct }) {
2126
+ const stats = [];
2127
+ if (mem) stats.push(`memory ${mem.pct}% of cap (${fmtMb(mem.currentBytes)}/${fmtMb(mem.maxBytes)} MB)`);
2128
+ if (cpuPct !== null) stats.push(`CPU ${cpuPct}%`);
2129
+ if (diskPct !== null) stats.push(`disk ${diskPct}% full`);
2130
+ const lead = trigger === "memory" ? `Your sandbox is at ${mem?.pct}% of its memory cap. If usage keeps climbing, the kernel will kill the offending process and this turn may die with it.` : `Your sandbox's disk is ${diskPct}% full. If it fills completely, writes will start failing and this turn may die with them.`;
2131
+ const remedy = trigger === "memory" ? "checkpoint in-flight work (commit and push), then reduce the footprint — constrain parallelism, run heavy steps sequentially, or kill background processes you no longer need." : "checkpoint in-flight work (commit and push), then free space — clean build artifacts, caches, and scratch files you no longer need.";
2132
+ return `<system_notification>${lead} Current usage: ${stats.join(", ")}. Act now: ${remedy} If the workload genuinely needs more resources, request a bigger sandbox with \`platform compute request\`. This is an automated resource warning, not a message from the user; continue the task, adjusted.</system_notification>`;
2133
+ }
2134
+ const resourcePressureWarningExtension = (pi) => {
2135
+ let agentActive = false;
2136
+ let warnedMemThisTurn = false;
2137
+ let warnedDiskThisTurn = false;
2138
+ let timer = null;
2139
+ const sampleCpu = createCpuSampler();
2140
+ async function checkOnce() {
2141
+ if (!agentActive || warnedMemThisTurn && warnedDiskThisTurn) return;
2142
+ const [mem, cpuPct, diskPct] = await Promise.all([
2143
+ readMemUsePct(),
2144
+ sampleCpu(),
2145
+ readDiskUsePct()
2146
+ ]);
2147
+ let trigger = null;
2148
+ if (!warnedMemThisTurn && mem !== null && mem.pct >= 80) {
2149
+ trigger = "memory";
2150
+ warnedMemThisTurn = true;
2151
+ } else if (!warnedDiskThisTurn && diskPct !== null && diskPct >= 80) {
2152
+ trigger = "disk";
2153
+ warnedDiskThisTurn = true;
2154
+ }
2155
+ if (trigger === null) return;
2156
+ log$11.warn({
2157
+ trigger,
2158
+ mem,
2159
+ cpuPct,
2160
+ diskPct
2161
+ }, "resource pressure warning delivered to agent");
2162
+ await pi.sendMessage({
2163
+ customType: "anyone-resource-pressure-warning",
2164
+ content: resourcePressureWarningText(trigger, {
2165
+ mem,
2166
+ cpuPct,
2167
+ diskPct
2168
+ }),
2169
+ display: false
2170
+ }, {
2171
+ triggerTurn: true,
2172
+ deliverAs: "followUp"
2173
+ });
2174
+ }
2175
+ pi.on("agent_start", async () => {
2176
+ agentActive = true;
2177
+ warnedMemThisTurn = false;
2178
+ warnedDiskThisTurn = false;
2179
+ if (!timer) {
2180
+ timer = setInterval(() => {
2181
+ checkOnce().catch((err) => {
2182
+ log$11.error({ err }, "resource pressure check failed");
2183
+ });
2184
+ }, POLL_INTERVAL_MS);
2185
+ timer.unref?.();
2186
+ }
2187
+ });
2188
+ pi.on("agent_end", async () => {
2189
+ agentActive = false;
2190
+ if (timer) {
2191
+ clearInterval(timer);
2192
+ timer = null;
2193
+ }
2194
+ });
2195
+ };
2196
+ //#endregion
2197
+ //#region src/extensions/disk-guard.ts
2198
+ const log$10 = logger.child({ module: "disk-guard" });
2199
+ /**
2200
+ * In-band bypass. The guard is a safety net, not a jail: when the agent knows
2201
+ * a flagged command is genuinely safe (writing to a different mount, a tiny
2202
+ * bounded download, a delete-then-clone one-liner, an emergency it accepts the
2203
+ * risk on) it can force the command through by appending this marker as a
2204
+ * trailing shell comment. Kept as a comment so it never changes what the
2205
+ * command does, and matched case-insensitively with flexible spacing so the
2206
+ * agent doesn't have to reproduce it byte-for-byte.
2207
+ */
2208
+ const BYPASS_MARKER = /#\s*disk-guard:\s*allow\b/i;
2209
+ /** The exact marker text the block message tells the agent to append. */
2210
+ const BYPASS_HINT = "# disk-guard: allow";
2211
+ /**
2212
+ * Harness-level kill switch: set DISK_GUARD_DISABLE=1 to turn the guard off
2213
+ * entirely. This is the "I own my harness, let me opt out" knob — an agent
2214
+ * that boots its own harness can disable the guard for its whole process
2215
+ * without a code roll, and it's also the fleet-wide escape hatch if the
2216
+ * classifier ever misfires and blocks real work. The bare name is honored
2217
+ * first; the SKYDIVE_/ANYONE_ prefixes are accepted too for consistency with
2218
+ * the other env overrides. Empty/unset/"0"/"false" leave the guard on.
2219
+ */
2220
+ function guardDisabledByEnv() {
2221
+ for (const name of [
2222
+ "DISK_GUARD_DISABLE",
2223
+ "SKYDIVE_DISK_GUARD_DISABLE",
2224
+ "ANYONE_DISK_GUARD_DISABLE"
2225
+ ]) {
2226
+ const value = process.env[name];
2227
+ if (value != null && value !== "" && value !== "0" && value !== "false") return true;
2228
+ }
2229
+ return false;
2230
+ }
2231
+ /** True when the command carries the in-band bypass marker. */
2232
+ function hasBypassMarker(command) {
2233
+ return BYPASS_MARKER.test(command);
2234
+ }
2235
+ /**
2236
+ * Commands that reclaim space or merely inspect it. If any of these verbs
2237
+ * appears in the command line, we never block — otherwise the guard would trap
2238
+ * the agent by blocking the exact command it needs to dig out. Matched as
2239
+ * whole words so `remove-item` etc. don't accidentally match `rm`.
2240
+ */
2241
+ const RECLAIM_PATTERNS = [
2242
+ /\brm\b/,
2243
+ /\brmdir\b/,
2244
+ /\bdf\b/,
2245
+ /\bdu\b/,
2246
+ /\bncdu\b/,
2247
+ /\bfind\b[^|]*\s-delete\b/,
2248
+ /\btruncate\b/,
2249
+ /\bgit\s+(gc|prune|clean|worktree\s+remove|worktree\s+prune)\b/,
2250
+ /\b(yarn|npm|pnpm|bun)\s+.*\b(cache\s+clean|cache\s+clear|store\s+prune)\b/,
2251
+ /\bcache\s+(clean|clear|prune)\b/,
2252
+ /\b(docker|podman)\s+.*\bprune\b/,
2253
+ /\bapt(-get)?\s+clean\b/,
2254
+ /\bjournalctl\b[^|]*--vacuum/
2255
+ ];
2256
+ /**
2257
+ * File extensions that mean a download is actually LARGE — archives, disk
2258
+ * images, compiled/binary artifacts, model weights, media. A curl/wget is only
2259
+ * gated when it writes one of these; an API/page fetch to a `.json`/`.html`/
2260
+ * `.txt` file is tiny and must not be blocked. Derived from 4,144 real
2261
+ * commands: ~64% of `curl -o` uses were tiny fetches, only ~4% large.
2262
+ */
2263
+ const BIG_DOWNLOAD_EXT = "(?:tar\\.gz|tgz|tar|zip|iso|gz|bz2|xz|zst|deb|rpm|pkg|dmg|whl|jar|7z|img|mp4|mov|avi|mkv|onnx|gguf|safetensors|bin|node)";
2264
+ /**
2265
+ * Commands that consume a meaningful amount of disk. Kept deliberately tight
2266
+ * and high-precision: validated against 4,144 real commands from the last 7
2267
+ * days, the earlier "writes a file" heuristic flagged 82% of everything (a
2268
+ * `curl -o /tmp/x.json` API call is not a disk event). This set flags ~33%,
2269
+ * almost all genuinely large — real installs, clones, big-archive downloads,
2270
+ * extractions. What was DROPPED and why:
2271
+ * - `git fetch` / `git pull` — incremental on an existing clone, usually tiny.
2272
+ * - `git checkout` — overwhelmingly `git checkout <ref> -- <file>` or a
2273
+ * branch switch, ~zero net growth; the rare full materialization isn't
2274
+ * worth the false-positive rate.
2275
+ * - bare `curl -o` / `wget -o` — see BIG_DOWNLOAD_EXT above.
2276
+ * - loose `… build` — matched `--mode=skip-build`, `oxfmt … build`, prose.
2277
+ * The remaining big-disk op in escher is `git clone` and `git worktree add`
2278
+ * (which is really a checkout), both kept.
2279
+ */
2280
+ const SPACE_HUNGRY_PATTERNS = [
2281
+ /\bgit\s+clone\b/,
2282
+ /\bgit\s+worktree\s+add\b/,
2283
+ /\b(yarn|npm|pnpm|bun)\s+(install|add|ci)\b/,
2284
+ /\byarn\s*$/,
2285
+ /\byarn\s+--(?!version|help)\S/,
2286
+ /\bpip3?\s+install\b/,
2287
+ /\bapt(-get)?\s+install\b/,
2288
+ /\bnpm\s+pack\b/,
2289
+ /\bdocker\s+(build|pull)\b/,
2290
+ new RegExp(`\\b(?:curl|wget)\\b[^\\n]*\\s-[a-zA-Z]*[oO]\\b[^\\n]*\\.${BIG_DOWNLOAD_EXT}\\b`, "i"),
2291
+ new RegExp(`\\b(?:curl|wget)\\b[^\\n]*\\.${BIG_DOWNLOAD_EXT}\\b[^\\n]*\\s-[a-zA-Z]*[oO]\\b`, "i"),
2292
+ /\btar\s+[^\n|]*x[^\n|]*f/,
2293
+ /\bunzip\b/,
2294
+ /\bdd\b[^\n|]*\bof=/
2295
+ ];
2296
+ /**
2297
+ * True when the command reclaims or inspects space — these are always allowed,
2298
+ * even on a 100%-full box, so the agent can dig itself out.
2299
+ */
2300
+ function isReclaimCommand(command) {
2301
+ return RECLAIM_PATTERNS.some((re) => re.test(command));
2302
+ }
2303
+ /**
2304
+ * True when the command is likely to consume a meaningful amount of disk.
2305
+ * A reclaim/inspect command is never space-hungry — the reclaim check wins so a
2306
+ * `git worktree remove` or a `yarn cache clean` is never mistaken for growth.
2307
+ */
2308
+ function isSpaceHungryCommand(command) {
2309
+ if (isReclaimCommand(command)) return false;
2310
+ return SPACE_HUNGRY_PATTERNS.some((re) => re.test(command));
2311
+ }
2312
+ /**
2313
+ * The decision, factored out and pure so it's exhaustively testable without a
2314
+ * real filesystem. Block only when we have a disk reading, it's at/above the
2315
+ * critical threshold, the command is space-hungry (and not a reclaim), and the
2316
+ * agent hasn't explicitly opted out with the bypass marker.
2317
+ */
2318
+ function shouldBlockForDisk(command, diskPct) {
2319
+ if (diskPct === null) return false;
2320
+ if (diskPct < 95) return false;
2321
+ if (hasBypassMarker(command)) return false;
2322
+ return isSpaceHungryCommand(command);
2323
+ }
2324
+ /** The agent-facing explanation returned as the blocked tool result. */
2325
+ function diskBlockReason(command, diskPct) {
2326
+ return `Blocked: the sandbox disk is ${diskPct}% full and this command (\`${command.trim().slice(0, 120)}\`) writes a large amount, so it would fail partway with ENOSPC and leave a corrupt result. Reclaim space FIRST, then retry. Free ONLY what THIS conversation created — scratch/build output you wrote this run, downloads you're done with, and worktrees/branches whose work you've already committed and pushed (\`git worktree remove\`, \`yarn cache clean\`, delete your own scratch). Do NOT blindly wipe /tmp or delete a clone/worktree you don't recognize — other conversations share this box. Check headroom with \`df -h /\` and \`du -sh ~/workspace/* 2>/dev/null\`. If you genuinely can't free enough, stop and tell the user you're blocked on disk rather than retrying the write. If you're certain this command is safe anyway (writes elsewhere, tiny bounded size, delete-then-write), force it through by appending \` ${BYPASS_HINT}\` to the command.`;
2327
+ }
2328
+ const diskGuardExtension = (pi) => {
2329
+ pi.on("tool_call", async (event) => {
2330
+ if (event.toolName !== "bash") return;
2331
+ if (guardDisabledByEnv()) return;
2332
+ const command = event.input.command;
2333
+ if (typeof command !== "string" || command.length === 0) return;
2334
+ if (hasBypassMarker(command)) return;
2335
+ if (!isSpaceHungryCommand(command)) return;
2336
+ const diskPct = await readDiskUsePct();
2337
+ if (!shouldBlockForDisk(command, diskPct)) return;
2338
+ log$10.warn({
2339
+ diskPct,
2340
+ command: command.slice(0, 200)
2341
+ }, "blocked space-hungry bash command on near-full disk");
2342
+ return {
2343
+ block: true,
2344
+ reason: diskBlockReason(command, diskPct)
2345
+ };
2346
+ });
2347
+ };
2348
+ //#endregion
2349
+ //#region src/channel-context-ref.ts
2350
+ /**
2351
+ * The worker injects a small reference — `{ channel, messageId, runId }` —
2352
+ * into the sandbox env (`SKYDIVE_CHANNEL_CONTEXT`) rather than the full context.
2353
+ *
2354
+ * The canonical `ChannelContextRef` type + `parseChannelContextRef` live in
2355
+ * `@createinc/anyone-channels`, but the harness (`@skydiveai/*`) keeps zero
2356
+ * `@createinc/*` dependencies — importing that package would pull the whole
2357
+ * platform channel stack (Slack/email/Linq SDKs, messaging) just to read one
2358
+ * field. So we validate the field this consumer needs locally instead.
2359
+ */
2360
+ const channelContextRefSchema = z.object({ messageId: z.string().nullable() });
2361
+ /**
2362
+ * Pull the current turn's message id out of the ref blob. Returns `null`
2363
+ * outside a turn (cron / system) or if the blob is missing/malformed.
2364
+ */
2365
+ function extractMessageId(channelContextJson) {
2366
+ if (!channelContextJson) return null;
2367
+ try {
2368
+ const parsed = channelContextRefSchema.safeParse(JSON.parse(channelContextJson));
2369
+ return parsed.success ? parsed.data.messageId : null;
2370
+ } catch {
2371
+ return null;
2372
+ }
2373
+ }
2374
+ //#endregion
1668
2375
  //#region src/api-url.ts
1669
2376
  /**
1670
2377
  * Resolve the Skydive API base URL from the sandbox env. Newly-provisioned
@@ -1680,20 +2387,84 @@ function apiBaseUrl() {
1680
2387
  }
1681
2388
  //#endregion
1682
2389
  //#region src/extensions/platform.ts
2390
+ /**
2391
+ * Platform extension — bridges the agent harness to the Skydive platform daemon.
2392
+ *
2393
+ * Responsibilities:
2394
+ * - Heartbeat: periodic POST to the API so the sandbox manager knows the
2395
+ * agent is alive. Throttled to once per minute, triggered by tool events.
2396
+ * - Session tracking: registers the session with the daemon on start,
2397
+ * streams tool_call / tool_result events so the daemon can track which
2398
+ * session is actively executing, and signals session end on agent_end.
2399
+ * - Channel context: passes the SKYDIVE_CHANNEL_CONTEXT (containing the
2400
+ * messageId) to the daemon so file writes can be attributed to the
2401
+ * correct conversation.
2402
+ *
2403
+ * All daemon POSTs are fire-and-forget — failures are logged but never
2404
+ * block the agent. The daemon may not be running (e.g. local dev without
2405
+ * a sandbox), and that's fine.
2406
+ */
1683
2407
  const HEARTBEAT_THROTTLE_MS = 6e4;
1684
2408
  const TOOL_HEARTBEAT_INTERVAL_MS = 5e3;
1685
2409
  const MAX_TOOL_HEARTBEATS = 1440 * 60 * 1e3 / TOOL_HEARTBEAT_INTERVAL_MS;
1686
2410
  const DAEMON_URL = "http://localhost:38994";
1687
- const log$10 = logger.child({ module: "platform-ext" });
2411
+ const log$9 = logger.child({ module: "platform-ext" });
1688
2412
  function sandboxClient() {
1689
2413
  const apiUrl = apiBaseUrl();
1690
2414
  if (!apiUrl) return null;
1691
2415
  return hc(`${apiUrl}/api/v1/sandbox`);
1692
2416
  }
1693
2417
  /**
1694
- * Fetch every harness feature flag in one GET (`{ contextManagement, subagent,
1695
- * ... }` see apps/anyone/api/src/routes/sandbox-feature-flags.ts). Returns
1696
- * null when indeterminate (no api url, or the request failed) so the shared
2418
+ * Is this box still an unclaimed warm-pool sandbox? (ANY-6000, the
2419
+ * feature-flags half of the ANY-5184 pool 403 wave.)
2420
+ *
2421
+ * `GET /sandbox/feature-flags` is agent-only, so the shared poller's request
2422
+ * from a pool box can only 403 — a guaranteed-failing GET every 60s for the
2423
+ * life of the pool phase. The discriminator is the sandbox token's `type`
2424
+ * claim, read UNVERIFIED (this box never holds the signing secret): not an
2425
+ * authorization decision, only "should I bother calling?", and the api still
2426
+ * authorizes every request.
2427
+ *
2428
+ * Read per call from the daemon's persisted env file, NOT process.env:
2429
+ * claiming a pool box rebinds the token in place (the daemon rewrites this
2430
+ * file) while the harness's process.env keeps the boot snapshot, so a
2431
+ * process-env gate would leave a claimed box permanently skipping — trading a
2432
+ * wasted request for silently frozen flags, which is strictly worse. "Cannot
2433
+ * tell" (no file, no token, unparseable payload) reports false so the poll
2434
+ * proceeds.
2435
+ */
2436
+ const daemonEnvIdentitySchema = z.object({
2437
+ ANYONE_SANDBOX_TOKEN: z.string().optional(),
2438
+ SKYDIVE_SANDBOX_TOKEN: z.string().optional()
2439
+ }).passthrough();
2440
+ const tokenTypeSchema = z.object({ type: z.string() }).passthrough();
2441
+ async function isPoolIdentity() {
2442
+ try {
2443
+ const override = process.env.ANYONE_DAEMON_ENV_CACHE;
2444
+ const candidates = override ? [override] : ["/run/anyone-system/daemon-env.json", "/tmp/.anyone/daemon-env.json"];
2445
+ let raw = null;
2446
+ for (const file of candidates) {
2447
+ raw = await readFile(file, "utf8").catch(() => null);
2448
+ if (raw !== null) break;
2449
+ }
2450
+ if (raw === null) return false;
2451
+ const env = daemonEnvIdentitySchema.safeParse(JSON.parse(raw));
2452
+ if (!env.success) return false;
2453
+ const token = env.data.ANYONE_SANDBOX_TOKEN ?? env.data.SKYDIVE_SANDBOX_TOKEN;
2454
+ if (typeof token !== "string" || token === "") return false;
2455
+ const payload = token.split(".")[1];
2456
+ if (!payload) return false;
2457
+ const claims = tokenTypeSchema.safeParse(JSON.parse(Buffer.from(payload, "base64url").toString("utf8")));
2458
+ return claims.success && claims.data.type === "onboarding-pool";
2459
+ } catch (_err) {
2460
+ return false;
2461
+ }
2462
+ }
2463
+ /**
2464
+ * Fetch every harness feature flag in one GET (`{ contextManagement, ... }`
2465
+ * — see apps/anyone/api/src/routes/sandbox-feature-flags.ts). Returns
2466
+ * null when indeterminate (no api url, the request failed, or the box is an
2467
+ * unclaimed pool sandbox whose token the route would 403) so the shared
1697
2468
  * poller keeps the last-known values rather than flipping on a transient error.
1698
2469
  * This is the single fetch behind `feature-flags-poll.ts`; extensions read the
1699
2470
  * polled values there instead of issuing their own GET.
@@ -1701,22 +2472,19 @@ function sandboxClient() {
1701
2472
  async function fetchHarnessFlags() {
1702
2473
  const client = sandboxClient();
1703
2474
  if (!client) return null;
2475
+ if (await isPoolIdentity()) return null;
1704
2476
  try {
1705
2477
  const res = await client["feature-flags"].$get();
1706
2478
  if (!res.ok) {
1707
- log$10.debug({
2479
+ log$9.debug({
1708
2480
  status: res.status,
1709
2481
  event: "feature_flags_fetch_failed"
1710
2482
  }, "feature-flags fetch failed");
1711
2483
  return null;
1712
2484
  }
1713
- const body = await res.json();
1714
- return {
1715
- contextManagement: body.contextManagement ?? null,
1716
- subagent: body.subagent ?? null
1717
- };
2485
+ return { contextManagement: (await res.json()).contextManagement ?? null };
1718
2486
  } catch (err) {
1719
- log$10.debug({
2487
+ log$9.debug({
1720
2488
  err,
1721
2489
  event: "feature_flags_fetch_error"
1722
2490
  }, "feature-flags request errored");
@@ -1727,7 +2495,7 @@ function postHeartbeat({ messageId }) {
1727
2495
  const client = sandboxClient();
1728
2496
  if (!client) return;
1729
2497
  client.heartbeat.$post({ json: { messageId } }).catch((err) => {
1730
- log$10.debug({
2498
+ log$9.debug({
1731
2499
  err,
1732
2500
  event: "heartbeat_failed"
1733
2501
  }, "heartbeat failed");
@@ -1739,7 +2507,7 @@ async function resolveConversationFromApi(messageId) {
1739
2507
  try {
1740
2508
  const res = await client["message-conversation"].$get({ query: { messageId } });
1741
2509
  if (!res.ok) {
1742
- log$10.warn({
2510
+ log$9.warn({
1743
2511
  status: res.status,
1744
2512
  messageId,
1745
2513
  event: "resolve_conversation_failed"
@@ -1748,7 +2516,7 @@ async function resolveConversationFromApi(messageId) {
1748
2516
  }
1749
2517
  return (await res.json()).conversationId ?? null;
1750
2518
  } catch (err) {
1751
- log$10.warn({
2519
+ log$9.warn({
1752
2520
  err,
1753
2521
  messageId,
1754
2522
  event: "resolve_conversation_error"
@@ -1765,6 +2533,71 @@ async function postBackgroundTaskDone({ messageId, content }) {
1765
2533
  } });
1766
2534
  if (!res.ok) throw new Error(`bg-task-done POST failed: ${res.status}`);
1767
2535
  }
2536
+ async function putBackgroundTaskJournalSpec({ messageId, spec }) {
2537
+ const client = sandboxClient();
2538
+ if (!client) return;
2539
+ try {
2540
+ const res = await client["bg-task-journal"].$put({ json: {
2541
+ messageId,
2542
+ spec
2543
+ } });
2544
+ if (!res.ok) log$9.warn({
2545
+ status: res.status,
2546
+ taskId: spec.id,
2547
+ event: "bg_journal_put_failed"
2548
+ }, "bg-task journal PUT failed");
2549
+ } catch (err) {
2550
+ log$9.warn({
2551
+ err,
2552
+ taskId: spec.id,
2553
+ event: "bg_journal_put_failed"
2554
+ }, "bg-task journal PUT threw");
2555
+ }
2556
+ }
2557
+ async function deleteBackgroundTaskJournalSpec({ messageId, taskId }) {
2558
+ const client = sandboxClient();
2559
+ if (!client) return;
2560
+ try {
2561
+ await client["bg-task-journal"].$delete({ json: {
2562
+ messageId,
2563
+ taskId
2564
+ } });
2565
+ } catch (err) {
2566
+ log$9.debug({
2567
+ err,
2568
+ taskId,
2569
+ event: "bg_journal_delete_failed"
2570
+ }, "bg-task journal DELETE failed");
2571
+ }
2572
+ }
2573
+ async function listBackgroundTaskJournalSpecs({ messageId }) {
2574
+ const client = sandboxClient();
2575
+ if (!client) return [];
2576
+ try {
2577
+ const res = await client["bg-task-journal"].$get({ query: { messageId } });
2578
+ if (!res.ok) return [];
2579
+ return (await res.json()).specs ?? [];
2580
+ } catch (err) {
2581
+ log$9.debug({
2582
+ err,
2583
+ event: "bg_journal_list_failed"
2584
+ }, "bg-task journal GET failed");
2585
+ return [];
2586
+ }
2587
+ }
2588
+ function postBackgroundTasksSnapshot({ messageId, tasks }) {
2589
+ const client = sandboxClient();
2590
+ if (!client || !messageId) return;
2591
+ client["bg-tasks"].$post({ json: {
2592
+ messageId,
2593
+ tasks
2594
+ } }).catch((err) => {
2595
+ log$9.debug({
2596
+ err,
2597
+ event: "bg_tasks_snapshot_failed"
2598
+ }, "bg-tasks snapshot publish failed");
2599
+ });
2600
+ }
1768
2601
  async function postSubagentSpawn({ messageId, tasks }) {
1769
2602
  const client = sandboxClient();
1770
2603
  if (!client) throw new Error("no api url for subagent-spawn");
@@ -1772,8 +2605,19 @@ async function postSubagentSpawn({ messageId, tasks }) {
1772
2605
  messageId,
1773
2606
  tasks
1774
2607
  } });
1775
- if (!res.ok) throw new Error(`subagent-spawn POST failed: ${res.status}`);
1776
- return { taskIds: (await res.json()).taskIds };
2608
+ if (!res.ok) {
2609
+ let detail = "";
2610
+ try {
2611
+ const errBody = await res.json();
2612
+ if (errBody && typeof errBody.error === "string") detail = `: ${errBody.error}`;
2613
+ } catch {}
2614
+ throw new Error(`subagent-spawn POST failed (${res.status})${detail}`);
2615
+ }
2616
+ const body = await res.json();
2617
+ return {
2618
+ taskIds: body.taskIds,
2619
+ tasks: body.tasks ?? []
2620
+ };
1777
2621
  }
1778
2622
  function createHeartbeatThrottle({ messageId }) {
1779
2623
  let lastAt = 0;
@@ -1822,7 +2666,7 @@ function createToolHeartbeat({ messageId }) {
1822
2666
  }
1823
2667
  heartbeatCount++;
1824
2668
  if (heartbeatCount > MAX_TOOL_HEARTBEATS) {
1825
- log$10.warn({
2669
+ log$9.warn({
1826
2670
  heartbeatCount,
1827
2671
  activeToolCalls: [...activeToolCalls]
1828
2672
  }, "tool heartbeat max reached, stopping");
@@ -1853,7 +2697,7 @@ function postToDaemon(path, body) {
1853
2697
  headers: { "content-type": "application/json" },
1854
2698
  body: JSON.stringify(body)
1855
2699
  }).catch((err) => {
1856
- log$10.debug({
2700
+ log$9.debug({
1857
2701
  err,
1858
2702
  path,
1859
2703
  event: "daemon_post_failed"
@@ -1862,7 +2706,7 @@ function postToDaemon(path, body) {
1862
2706
  }
1863
2707
  function createPlatformExtensions({ sessionId, channelContext }) {
1864
2708
  return (pi) => {
1865
- log$10.info({
2709
+ log$9.info({
1866
2710
  sessionId,
1867
2711
  hasChannelContext: Boolean(channelContext)
1868
2712
  }, "platform extension initialized");
@@ -1911,7 +2755,7 @@ function createPlatformExtensions({ sessionId, channelContext }) {
1911
2755
  });
1912
2756
  });
1913
2757
  pi.on("agent_end", () => {
1914
- log$10.info({ sessionId }, "session ending");
2758
+ log$9.info({ sessionId }, "session ending");
1915
2759
  postToDaemon("/session/end", { sessionId });
1916
2760
  });
1917
2761
  };
@@ -1922,37 +2766,29 @@ function createPlatformExtensions({ sessionId, channelContext }) {
1922
2766
  * Shared harness feature-flag poll.
1923
2767
  *
1924
2768
  * The api exposes one `/feature-flags` GET that returns every harness flag in a
1925
- * single response (`{ contextManagement, subagent, commandFlags }` — see
2769
+ * single response (`{ contextManagement, commandFlags }` — see
1926
2770
  * apps/anyone/api/src/routes/sandbox-feature-flags.ts). Rather than each
1927
2771
  * extension issuing its own GET — and, worse, a *blocking* GET on the
1928
2772
  * pre-first-token `session_start` path — a single background poller fetches
1929
2773
  * that response once per interval and fans the values out to every subscriber.
1930
2774
  *
1931
- * Why one poller: the subagent extension gates its tool registration on the
1932
- * `subagent` flag. If it awaited a fresh GET inside `session_start` the tool
1933
- * schema (part of the prefill) couldn't be finalized until a serial
1934
- * sandbox→api round-trip settled, adding a net-new pre-token network hop on
1935
- * every session, flag on or off. Reading the last-polled value instead keeps
1936
- * the hot path allocation-only. A cold cache reads as `null` (fail-open to
1937
- * unregistered); a newly-flipped flag takes effect on the next poll, matching
1938
- * how context-management already treats its flag.
2775
+ * Why one poller: context-management consumes the `contextManagement` flag
2776
+ * without a blocking GET on the pre-first-token `session_start` path. Reading
2777
+ * the last-polled value keeps the hot path allocation-only; a cold cache reads
2778
+ * as `null` and a newly-flipped flag takes effect on the next poll.
1939
2779
  *
1940
2780
  * The poll is fire-and-forget and self-unref'd — it never keeps the process
1941
2781
  * alive and an indeterminate result (no api url / transient failure) leaves the
1942
2782
  * last-known values untouched so a blip can't silently flip behavior.
1943
2783
  */
1944
- const log$9 = logger.child({ module: "feature-flags-poll" });
2784
+ const log$8 = logger.child({ module: "feature-flags-poll" });
1945
2785
  const FLAG_POLL_INTERVAL_MS = 6e4;
1946
2786
  let contextManagement = null;
1947
- let subagent = null;
1948
- const subscribers = {
1949
- contextManagement: /* @__PURE__ */ new Set(),
1950
- subagent: /* @__PURE__ */ new Set()
1951
- };
2787
+ const subscribers = { contextManagement: /* @__PURE__ */ new Set() };
1952
2788
  let pollerStarted = false;
1953
2789
  let firstPollSettled = false;
1954
2790
  let resolveFirstPoll = null;
1955
- const firstPollPromise = new Promise((resolve) => {
2791
+ new Promise((resolve) => {
1956
2792
  resolveFirstPoll = resolve;
1957
2793
  });
1958
2794
  function markFirstPollSettled() {
@@ -1961,20 +2797,8 @@ function markFirstPollSettled() {
1961
2797
  resolveFirstPoll?.();
1962
2798
  }
1963
2799
  /** Last-polled value of a flag, or `null` if not yet resolved. */
1964
- function getPolledFlag(name) {
1965
- return name === "contextManagement" ? contextManagement : subagent;
1966
- }
1967
- /**
1968
- * Await the first poll already kicked by `startFeatureFlagPoller` (never a new
1969
- * GET). Resolves when that poll settles, immediately if it already has, or
1970
- * immediately when there's no flag source to poll. Callers on the hot path
1971
- * should race this against their own short timeout so a slow/failed flag
1972
- * service cannot delay first-token; a timeout just means the caller reads the
1973
- * still-cold cache and falls back to its default, exactly as before.
1974
- */
1975
- function awaitFirstFlagPoll() {
1976
- if (firstPollSettled || !hasFlagSource()) return Promise.resolve();
1977
- return firstPollPromise;
2800
+ function getPolledFlag(_name) {
2801
+ return contextManagement;
1978
2802
  }
1979
2803
  /**
1980
2804
  * Subscribe to changes of a flag. The callback fires only on a *transition*
@@ -1987,13 +2811,12 @@ function onFlagChange(name, cb) {
1987
2811
  }
1988
2812
  function apply(name, next) {
1989
2813
  if (next === null) return;
1990
- const prev = name === "contextManagement" ? contextManagement : subagent;
1991
- if (name === "contextManagement") contextManagement = next;
1992
- else subagent = next;
2814
+ const prev = contextManagement;
2815
+ contextManagement = next;
1993
2816
  if (next !== prev) for (const cb of subscribers[name]) try {
1994
2817
  cb(next);
1995
2818
  } catch (err) {
1996
- log$9.warn({
2819
+ log$8.warn({
1997
2820
  err,
1998
2821
  flag: name
1999
2822
  }, "flag subscriber threw");
@@ -2004,9 +2827,8 @@ async function pollOnce() {
2004
2827
  const flags = await fetchHarnessFlags();
2005
2828
  if (!flags) return;
2006
2829
  apply("contextManagement", flags.contextManagement ?? null);
2007
- apply("subagent", flags.subagent ?? null);
2008
2830
  } catch (err) {
2009
- log$9.debug({ err }, "feature-flag poll threw");
2831
+ log$8.debug({ err }, "feature-flag poll threw");
2010
2832
  }
2011
2833
  }
2012
2834
  /**
@@ -2113,7 +2935,7 @@ function transformContextMessages(messages, config, now) {
2113
2935
  }
2114
2936
  //#endregion
2115
2937
  //#region src/extensions/context-management.ts
2116
- const log$8 = logger.child({ module: "context-management-extension" });
2938
+ const log$7 = logger.child({ module: "context-management-extension" });
2117
2939
  function isAnthropicMessagesPayload(payload) {
2118
2940
  if (typeof payload !== "object" || payload === null) return false;
2119
2941
  const candidate = payload;
@@ -2178,13 +3000,13 @@ function createContextManagementExtension() {
2178
3000
  setContextManagementFlagOverride(getPolledFlag("contextManagement"));
2179
3001
  onFlagChange("contextManagement", (enabled) => {
2180
3002
  setContextManagementFlagOverride(enabled);
2181
- log$8.info({
3003
+ log$7.info({
2182
3004
  event: "context_management_flag_update",
2183
3005
  enabled
2184
3006
  }, "context-management flag updated from platform");
2185
3007
  });
2186
3008
  startFeatureFlagPoller();
2187
- log$8.info({
3009
+ log$7.info({
2188
3010
  event: "context_management_registered",
2189
3011
  enabled: initial.enabled,
2190
3012
  flagSource: hasFlagSource(),
@@ -2196,13 +3018,13 @@ function createContextManagementExtension() {
2196
3018
  const { messages } = event;
2197
3019
  try {
2198
3020
  const result = transformContextIfEnabled(messages, getContextManagementConfig(), Date.now());
2199
- if (result.stats && (result.stats.clearedResults > 0 || result.stats.trimmedResults > 0)) log$8.info({
3021
+ if (result.stats && (result.stats.clearedResults > 0 || result.stats.trimmedResults > 0)) log$7.info({
2200
3022
  event: "context_management_applied",
2201
3023
  ...result.stats
2202
3024
  }, "trimmed/cleared tool output before LLM call");
2203
3025
  return { messages: result.messages };
2204
3026
  } catch (err) {
2205
- log$8.error({
3027
+ log$7.error({
2206
3028
  err,
2207
3029
  event: "context_management_transform_failed"
2208
3030
  }, "context transform failed; passing messages through unchanged");
@@ -2214,7 +3036,7 @@ function createContextManagementExtension() {
2214
3036
  }
2215
3037
  //#endregion
2216
3038
  //#region src/extensions/current-time.ts
2217
- const log$7 = logger.child({ module: "current-time-extension" });
3039
+ const log$6 = logger.child({ module: "current-time-extension" });
2218
3040
  const PI_DATE_LINE = /^Current date:.*$/m;
2219
3041
  function formatCurrentTimeLine(now) {
2220
3042
  return `Current date: ${now.getUTCFullYear()}-${String(now.getUTCMonth() + 1).padStart(2, "0")}-${String(now.getUTCDate()).padStart(2, "0")} (${new Intl.DateTimeFormat("en-US", {
@@ -2227,7 +3049,7 @@ const currentTimeExtension = (pi) => {
2227
3049
  const line = formatCurrentTimeLine(/* @__PURE__ */ new Date());
2228
3050
  const base = event.systemPrompt;
2229
3051
  if (PI_DATE_LINE.test(base)) {
2230
- log$7.info({ event: "pi_date_line_present" }, "pi base prompt carries its own 'Current date:' line again; replacing it in place (pi prompt format may have changed)");
3052
+ log$6.info({ event: "pi_date_line_present" }, "pi base prompt carries its own 'Current date:' line again; replacing it in place (pi prompt format may have changed)");
2231
3053
  return { systemPrompt: base.replace(PI_DATE_LINE, line) };
2232
3054
  }
2233
3055
  return { systemPrompt: `${base}\n${line}` };
@@ -2236,37 +3058,35 @@ const currentTimeExtension = (pi) => {
2236
3058
  //#endregion
2237
3059
  //#region src/memory.ts
2238
3060
  /**
2239
- * In-harness memory index builder.
2240
- *
2241
- * The agent has an agent-level file-based memory at `<cwd>/.memory/`,
2242
- * organized by directory:
3061
+ * In-harness memory readers.
2243
3062
  *
2244
- * .memory/users/<id>-<name>/<topic>.md
2245
- * .memory/projects/<project_slug>/<topic>.md
2246
- * .memory/feedback/<topic>.md
2247
- * .memory/reference/<topic>.md
3063
+ * The agent has an agent-level file-based memory at `<cwd>/.memory/`, split
3064
+ * into two halves that are surfaced differently:
2248
3065
  *
2249
- * The path encodes type and subject (for `users/`, the subject is the
2250
- * person's stable id with a readable name suffix); each `.md` file's
2251
- * frontmatter only carries `name` and `description`.
3066
+ * 1. Shared knowledge (projects, lessons, external systems) indexed by a
3067
+ * single hand-maintained `<cwd>/.memory/MEMORY.md` that the *agent* writes
3068
+ * and curates, Claude-Code style: one line per fact pointing at the file
3069
+ * that holds it. `readMemoryIndexFile` just reads that file; the agent owns
3070
+ * its contents. This is the whole index for the shared half — there is no
3071
+ * derived walk and no per-directory `MEMORY.md`.
2252
3072
  *
2253
- * `buildMemoryIndex` walks `.memory/` by type directory, reads only the
2254
- * frontmatter of each `.md` (open fd read first ~4KB → close, in
2255
- * parallel), and renders a markdown index grouped by type and (where
2256
- * applicable) by subject. Files outside the four type directories are
2257
- * ignored. Bodies are never read — the agent loads a specific memory's
2258
- * body on demand via the `read` tool when the index entry says it's
2259
- * relevant.
3073
+ * 2. Per-person memory `.memory/users/<id>-<name>/<topic>.md`. This half is
3074
+ * *derived*, not hand-maintained, because it has to be filtered to the one
3075
+ * person on the current turn (a single hand-written index couldn't be
3076
+ * scoped per-user without leaking one person's notes into another's
3077
+ * conversation). `buildMemoryIndex` walks a single user's directory, reads
3078
+ * only the frontmatter of each `.md` (open fd read first ~4KB → close, in
3079
+ * parallel), and renders an index. Each `.md`'s frontmatter carries `name`
3080
+ * and `description`; bodies are never read — the agent loads a specific
3081
+ * memory's body on demand via the `read` tool.
2260
3082
  *
2261
- * Mtime cache keyed by cwd — within the lifetime of a sandbox the cwd
2262
- * is fixed, so this is effectively a single-entry cache. Cache invalidates
2263
- * when any `.md` in the tree is added/modified/deleted; turns where
2264
- * memory didn't change reuse the cached string.
3083
+ * Mtime cache (for the derived per-user half) keyed by cwd — within the
3084
+ * lifetime of a sandbox the cwd is fixed, so this is effectively a single-entry
3085
+ * cache. It invalidates when any `.md` under `users/` is added/modified/
3086
+ * deleted; turns where memory didn't change reuse the cached entries.
2265
3087
  *
2266
- * Frontmatter is parsed as YAML (`yaml` package) and validated with a
2267
- * zod schema — files that don't match the shape are dropped from the
2268
- * index. The same schema can be reused at write time if we want to
2269
- * validate before commit.
3088
+ * Frontmatter is parsed as YAML (`yaml` package) and validated with a zod
3089
+ * schema — files that don't match the shape are dropped from the index.
2270
3090
  */
2271
3091
  const FRONTMATTER_READ_BYTES = 4096;
2272
3092
  const FrontmatterSchema = z.object({
@@ -2274,33 +3094,118 @@ const FrontmatterSchema = z.object({
2274
3094
  description: z.string().min(1)
2275
3095
  }).passthrough();
2276
3096
  const MEMORY_DIRNAME = ".memory";
2277
- const TYPE_DIRS = [
2278
- "users",
2279
- "projects",
2280
- "feedback",
2281
- "reference"
3097
+ const MEMORY_INDEX_FILENAME = "MEMORY.md";
3098
+ const USERS_DIRNAME = "users";
3099
+ /**
3100
+ * The shared-knowledge type dirs from the old frontmatter-indexed layout, used
3101
+ * only to seed a `MEMORY.md` for agents created before it existed (see
3102
+ * `seedMemoryIndexFile`). `users/` is deliberately excluded — per-person memory
3103
+ * stays derived and never lands in the shared, un-scoped `MEMORY.md`.
3104
+ */
3105
+ const LEGACY_SHARED_TYPES = [
3106
+ {
3107
+ dir: "projects",
3108
+ label: "Projects"
3109
+ },
3110
+ {
3111
+ dir: "feedback",
3112
+ label: "Feedback"
3113
+ },
3114
+ {
3115
+ dir: "reference",
3116
+ label: "Reference"
3117
+ }
2282
3118
  ];
2283
- const TYPES_WITH_SUBJECT = new Set(["users", "projects"]);
2284
- const TYPE_LABELS = {
2285
- users: "Users",
2286
- projects: "Projects",
2287
- feedback: "Feedback",
2288
- reference: "Reference"
2289
- };
3119
+ /**
3120
+ * Soft budget for an injected index block. The index is read and injected into
3121
+ * the system prompt on every turn, so every entry costs context for the rest of
3122
+ * the conversation. Past this size we nudge the agent to consolidate and prune
3123
+ * rather than keep appending. Not a hard cap — nothing is truncated.
3124
+ */
3125
+ const MEMORY_INDEX_SOFT_BUDGET_CHARS = 2e4;
3126
+ /**
3127
+ * Hard cap on the injected index — double the soft budget. The soft budget only
3128
+ * warns; this actually bounds what we inject so a runaway index can't consume
3129
+ * unbounded context on every turn. Past this, the index is truncated (on a line
3130
+ * boundary) before injection. It's a backstop, not a normal operating point.
3131
+ */
3132
+ const MEMORY_INDEX_HARD_BUDGET_CHARS = MEMORY_INDEX_SOFT_BUDGET_CHARS * 2;
3133
+ /**
3134
+ * Cheap size summary of a rendered index block, used to surface how much of the
3135
+ * every-turn context budget the index is spending so the agent keeps it lean.
3136
+ * Counts pointer/file lines — both the derived `` - `path` — desc`` form and
3137
+ * the hand-maintained `- [Title](path) — hook` form — not the group headers.
3138
+ */
3139
+ function summarizeIndex(index) {
3140
+ const entryCount = index.split("\n").filter((line) => /^\s*- (?:`|\[)/.test(line)).length;
3141
+ const charCount = index.length;
3142
+ return {
3143
+ entryCount,
3144
+ charCount,
3145
+ overBudget: charCount > MEMORY_INDEX_SOFT_BUDGET_CHARS
3146
+ };
3147
+ }
3148
+ /**
3149
+ * One-line size note for an index block header, e.g. `12 entries, 3187 chars`.
3150
+ */
3151
+ function indexSizeNote(index) {
3152
+ const { entryCount, charCount } = summarizeIndex(index);
3153
+ return `${entryCount} ${entryCount === 1 ? "entry" : "entries"}, ${charCount} chars`;
3154
+ }
3155
+ /**
3156
+ * An explicit warning to surface to the agent when an index has grown past its
3157
+ * budget, or `null` when it's within budget. Extensions render this prominently
3158
+ * above the index so the agent prunes before it keeps appending.
3159
+ */
3160
+ function indexBudgetWarning(index) {
3161
+ const { charCount, overBudget } = summarizeIndex(index);
3162
+ if (!overBudget) return null;
3163
+ return `⚠️ This memory index is ${charCount} chars, over its ${MEMORY_INDEX_SOFT_BUDGET_CHARS}-char budget. It's costing you context on every turn — consolidate duplicate entries and delete stale ones to bring it back under budget before adding anything new.`;
3164
+ }
3165
+ /**
3166
+ * Enforce the hard cap on an index before injection. Under the cap the index is
3167
+ * returned unchanged; over it, the index is truncated on a line boundary and a
3168
+ * notice is appended naming the true size so the agent knows entries are hidden
3169
+ * and must be pruned. This is the actual bound on injected context — callers
3170
+ * still report the true size via {@link indexSizeNote} so nothing is masked.
3171
+ */
3172
+ function enforceMemoryIndexHardBudget(index) {
3173
+ if (index.length <= 4e4) return index;
3174
+ const clipped = index.slice(0, MEMORY_INDEX_HARD_BUDGET_CHARS);
3175
+ const lastNewline = clipped.lastIndexOf("\n");
3176
+ return `${lastNewline > 0 ? clipped.slice(0, lastNewline) : clipped}\n\n⚠️ Memory index truncated at ${MEMORY_INDEX_HARD_BUDGET_CHARS} chars (it is ${index.length}). Entries past this point are NOT shown. Prune the index now — delete stale entries and consolidate duplicates.`;
3177
+ }
3178
+ /**
3179
+ * Read the agent's hand-maintained shared index at `.memory/MEMORY.md`.
3180
+ * Returns the trimmed contents, or `null` when the file is absent or empty —
3181
+ * the agent owns this file, so we surface exactly what it wrote.
3182
+ */
3183
+ async function readMemoryIndexFile({ cwd }) {
3184
+ const path = join(cwd, MEMORY_DIRNAME, MEMORY_INDEX_FILENAME);
3185
+ try {
3186
+ const trimmed = (await readFile(path, "utf-8")).trim();
3187
+ return trimmed.length > 0 ? trimmed : null;
3188
+ } catch {
3189
+ return null;
3190
+ }
3191
+ }
2290
3192
  const cache = /* @__PURE__ */ new Map();
2291
3193
  /**
3194
+ * Build the derived per-person index for a single user.
3195
+ *
2292
3196
  * Returns:
2293
- * - `null` if `.memory/` doesn't exist
2294
- * - `""` if the dir exists but contains nothing in the requested scope
3197
+ * - `null` if `.memory/users/` doesn't exist
3198
+ * - `""` if it exists but this user has no memory
2295
3199
  * - rendered markdown body (no surrounding header — caller wraps)
2296
3200
  *
2297
- * The mtime-keyed cache stores the raw walked entries (the cost is the FS
2298
- * walk); filtering by scope is cheap and runs per call, so two turns with
2299
- * different scopes on the same cwd render correctly from one cached walk.
3201
+ * Scoping by id keeps one person's memory from bleeding into another's
3202
+ * conversation. The mtime-keyed cache stores the raw walked entries (the cost
3203
+ * is the FS walk); filtering by user is cheap and runs per call, so two turns
3204
+ * with different users on the same cwd render correctly from one cached walk.
2300
3205
  */
2301
- async function buildMemoryIndex({ cwd, scope }) {
2302
- const memoryDirAbs = join(cwd, MEMORY_DIRNAME);
2303
- const maxMtimeMs = await maxMtimeAcrossDir(memoryDirAbs);
3206
+ async function buildMemoryIndex({ cwd, userId }) {
3207
+ const usersDirAbs = join(cwd, MEMORY_DIRNAME, USERS_DIRNAME);
3208
+ const maxMtimeMs = await maxMtimeAcrossDir(usersDirAbs);
2304
3209
  if (maxMtimeMs === null) {
2305
3210
  cache.delete(cwd);
2306
3211
  return null;
@@ -2308,13 +3213,13 @@ async function buildMemoryIndex({ cwd, scope }) {
2308
3213
  let cached = cache.get(cwd);
2309
3214
  if (!cached || cached.builtAtMs < maxMtimeMs) {
2310
3215
  cached = {
2311
- entries: await collectEntries(memoryDirAbs, cwd),
3216
+ entries: await collectUserEntries(usersDirAbs, cwd),
2312
3217
  builtAtMs: Date.now()
2313
3218
  };
2314
3219
  cache.set(cwd, cached);
2315
3220
  }
2316
- const visible = cached.entries.filter((entry) => scope.kind === "user" ? entry.type === "users" && entry.subject?.startsWith(scope.userId) === true : entry.type !== "users");
2317
- return visible.length === 0 ? "" : renderIndex(visible);
3221
+ const visible = cached.entries.filter((entry) => entry.subject.startsWith(userId));
3222
+ return visible.length === 0 ? "" : renderUserIndex(visible);
2318
3223
  }
2319
3224
  async function maxMtimeAcrossDir(dir) {
2320
3225
  let dirStat;
@@ -2362,45 +3267,22 @@ async function listSubdirs(dir) {
2362
3267
  }
2363
3268
  return entries.filter((e) => e.isDirectory()).map((e) => join(dir, e.name));
2364
3269
  }
2365
- async function collectEntries(rootDirAbs, cwd) {
2366
- const collected = [];
2367
- await Promise.all(TYPE_DIRS.map(async (type) => {
2368
- const typeDirAbs = join(rootDirAbs, type);
2369
- if (TYPES_WITH_SUBJECT.has(type)) {
2370
- const subjectDirs = await listSubdirs(typeDirAbs);
2371
- await Promise.all(subjectDirs.map(async (subjectDirAbs) => {
2372
- const subject = basename(subjectDirAbs);
2373
- const files = await listMdFilesShallow(subjectDirAbs);
2374
- const parsed = await Promise.all(files.map(async (file) => {
2375
- const fm = await readFrontmatterOnly(file);
2376
- if (!fm?.name || !fm?.description) return null;
2377
- return {
2378
- name: fm.name,
2379
- description: fm.description,
2380
- type,
2381
- subject,
2382
- relPath: relative(cwd, file)
2383
- };
2384
- }));
2385
- for (const e of parsed) if (e) collected.push(e);
2386
- }));
2387
- } else {
2388
- const files = await listMdFilesShallow(typeDirAbs);
2389
- const parsed = await Promise.all(files.map(async (file) => {
2390
- const fm = await readFrontmatterOnly(file);
2391
- if (!fm?.name || !fm?.description) return null;
2392
- return {
2393
- name: fm.name,
2394
- description: fm.description,
2395
- type,
2396
- subject: null,
2397
- relPath: relative(cwd, file)
2398
- };
2399
- }));
2400
- for (const e of parsed) if (e) collected.push(e);
2401
- }
2402
- }));
2403
- return collected;
3270
+ async function collectUserEntries(usersDirAbs, cwd) {
3271
+ const subjectDirs = await listSubdirs(usersDirAbs);
3272
+ return (await Promise.all(subjectDirs.map(async (subjectDirAbs) => {
3273
+ const subject = basename(subjectDirAbs);
3274
+ const files = await listMdFilesShallow(subjectDirAbs);
3275
+ return (await Promise.all(files.map(async (file) => {
3276
+ const fm = await readFrontmatterOnly(file);
3277
+ if (!fm?.name || !fm?.description) return null;
3278
+ return {
3279
+ name: fm.name,
3280
+ description: fm.description,
3281
+ subject,
3282
+ relPath: relative(cwd, file)
3283
+ };
3284
+ }))).filter((e) => e !== null);
3285
+ }))).flat();
2404
3286
  }
2405
3287
  async function readFrontmatterOnly(filePath) {
2406
3288
  let fh;
@@ -2431,77 +3313,189 @@ function parseFrontmatter(text) {
2431
3313
  const result = FrontmatterSchema.safeParse(parsed);
2432
3314
  return result.success ? result.data : null;
2433
3315
  }
2434
- function renderIndex(entries) {
2435
- const byType = {
2436
- users: [],
2437
- projects: [],
2438
- feedback: [],
2439
- reference: []
2440
- };
2441
- for (const e of entries) byType[e.type].push(e);
3316
+ function renderUserIndex(entries) {
3317
+ const bySubject = /* @__PURE__ */ new Map();
3318
+ for (const e of entries) {
3319
+ const list = bySubject.get(e.subject) ?? [];
3320
+ list.push(e);
3321
+ bySubject.set(e.subject, list);
3322
+ }
3323
+ const lines = ["### Users"];
3324
+ for (const subject of [...bySubject.keys()].sort()) {
3325
+ lines.push(`- **${subject}**`);
3326
+ for (const e of bySubject.get(subject) ?? []) lines.push(` - \`${e.relPath}\` — ${e.description}`);
3327
+ }
3328
+ return lines.join("\n");
3329
+ }
3330
+ /**
3331
+ * One-time migration for agents created before `MEMORY.md` existed. If there is
3332
+ * no hand-maintained `.memory/MEMORY.md` yet but the agent has shared memory
3333
+ * files from the old frontmatter-indexed layout (`projects/`, `feedback/`,
3334
+ * `reference/`), derive a `MEMORY.md` from their frontmatter and write it once.
3335
+ * After that the agent owns the file — this never runs again for that agent and
3336
+ * never clobbers an existing index.
3337
+ *
3338
+ * Returns the seeded contents (also written to disk), or `null` when nothing
3339
+ * was seeded (index already present, or no legacy shared files). A write
3340
+ * failure propagates so the caller can log it; the read path then falls back to
3341
+ * whatever is on disk.
3342
+ */
3343
+ async function seedMemoryIndexFile({ cwd }) {
3344
+ const memoryDirAbs = join(cwd, MEMORY_DIRNAME);
3345
+ const indexPath = join(memoryDirAbs, MEMORY_INDEX_FILENAME);
3346
+ if (await stat(indexPath).catch(() => null)) return null;
3347
+ const perType = await Promise.all(LEGACY_SHARED_TYPES.map(async ({ dir, label }) => {
3348
+ const typeDirAbs = join(memoryDirAbs, dir);
3349
+ const files = [];
3350
+ await walkMdFiles(typeDirAbs, files);
3351
+ return {
3352
+ label,
3353
+ entries: (await Promise.all(files.map(async (file) => {
3354
+ const fm = await readFrontmatterOnly(file);
3355
+ if (!fm?.name || !fm?.description) return null;
3356
+ return {
3357
+ name: fm.name,
3358
+ description: fm.description,
3359
+ relPath: relative(cwd, file)
3360
+ };
3361
+ }))).filter((e) => !!e)
3362
+ };
3363
+ }));
3364
+ if (perType.every((group) => group.entries.length === 0)) return null;
3365
+ const content = renderSeededIndex(perType);
3366
+ await writeFile(indexPath, `${content}\n`, "utf-8");
3367
+ return content;
3368
+ }
3369
+ function renderSeededIndex(groups) {
2442
3370
  const sections = [];
2443
- for (const type of TYPE_DIRS) {
2444
- const items = byType[type];
2445
- if (items.length === 0) continue;
2446
- sections.push(`### ${TYPE_LABELS[type]}`);
2447
- if (TYPES_WITH_SUBJECT.has(type)) {
2448
- const bySubject = /* @__PURE__ */ new Map();
2449
- for (const e of items) {
2450
- const subject = e.subject ?? "(unknown)";
2451
- const list = bySubject.get(subject) ?? [];
2452
- list.push(e);
2453
- bySubject.set(subject, list);
2454
- }
2455
- const subjects = [...bySubject.keys()].sort();
2456
- for (const subject of subjects) {
2457
- sections.push(`- **${subject}**`);
2458
- for (const e of bySubject.get(subject) ?? []) sections.push(` - \`${e.relPath}\` — ${e.description}`);
2459
- }
2460
- } else for (const e of items) sections.push(`- \`${e.relPath}\` — ${e.description}`);
3371
+ for (const { label, entries } of groups) {
3372
+ if (entries.length === 0) continue;
3373
+ sections.push(`### ${label}`);
3374
+ const sorted = [...entries].sort((a, b) => a.relPath.localeCompare(b.relPath));
3375
+ for (const e of sorted) sections.push(`- [${e.name}](${e.relPath}) — ${e.description}`);
2461
3376
  sections.push("");
2462
3377
  }
2463
3378
  return sections.join("\n").trimEnd();
2464
3379
  }
3380
+ /**
3381
+ * The version at which the hand-maintained `MEMORY.md` layout was introduced.
3382
+ * Used to classify an unversioned `.memory/`: if it already has a `MEMORY.md`
3383
+ * it's on this layout (not the pre-MEMORY.md v1 frontmatter layout), so it
3384
+ * shouldn't be treated as v1 and re-seeded.
3385
+ */
3386
+ const HAND_MAINTAINED_INDEX_VERSION = 2;
3387
+ const VERSION_FILENAME = ".version";
3388
+ const MEMORY_MIGRATIONS = [{
3389
+ from: 1,
3390
+ to: 2,
3391
+ apply: async ({ cwd }) => {
3392
+ await seedMemoryIndexFile({ cwd });
3393
+ }
3394
+ }];
3395
+ /**
3396
+ * The layout version of an agent's `.memory/`:
3397
+ * - `null` when there's no `.memory/` at all (a fresh agent is current by
3398
+ * construction; nothing to migrate).
3399
+ * - `1` when `.memory/` exists but carries no `.version` marker — i.e. it
3400
+ * predates versioning.
3401
+ * - otherwise the integer in `.memory/.version`.
3402
+ */
3403
+ async function readMemoryVersion(cwd) {
3404
+ const memoryDirAbs = join(cwd, MEMORY_DIRNAME);
3405
+ if (!(await stat(memoryDirAbs).catch(() => null))?.isDirectory()) return null;
3406
+ const raw = await readFile(join(memoryDirAbs, VERSION_FILENAME), "utf-8").catch(() => null);
3407
+ if (raw === null) return await stat(join(memoryDirAbs, MEMORY_INDEX_FILENAME)).then((s) => s.isFile()).catch(() => false) ? HAND_MAINTAINED_INDEX_VERSION : 1;
3408
+ const parsed = Number.parseInt(raw.trim(), 10);
3409
+ return Number.isInteger(parsed) && parsed > 0 ? parsed : 1;
3410
+ }
3411
+ async function writeMemoryVersion(cwd, version) {
3412
+ await writeFile(join(cwd, MEMORY_DIRNAME, VERSION_FILENAME), `${version}\n`, "utf-8");
3413
+ }
3414
+ /**
3415
+ * Bring an agent's `.memory/` up to `CURRENT_MEMORY_VERSION` by applying the
3416
+ * ordered migrations. Runs on session start. No-op when there's no `.memory/`
3417
+ * yet or it's already current. Migrations must be idempotent, so a lost/unwritten
3418
+ * version marker (the file isn't committed by the harness) only costs a repeated
3419
+ * no-op, never corruption. Returns the `{ from, to }` actually applied, or
3420
+ * `null` when nothing ran.
3421
+ */
3422
+ async function migrateMemory({ cwd }) {
3423
+ const from = await readMemoryVersion(cwd);
3424
+ if (from === null || from >= 2) return null;
3425
+ let version = from;
3426
+ while (version < 2) {
3427
+ const migration = MEMORY_MIGRATIONS.find((m) => m.from === version);
3428
+ if (!migration) break;
3429
+ await migration.apply({ cwd });
3430
+ version = migration.to;
3431
+ }
3432
+ await writeMemoryVersion(cwd, version);
3433
+ return {
3434
+ from,
3435
+ to: version
3436
+ };
3437
+ }
2465
3438
  //#endregion
2466
3439
  //#region src/extensions/memory.ts
2467
- const log$6 = logger.child({ module: "memory-extension" });
3440
+ const log$5 = logger.child({ module: "memory-extension" });
2468
3441
  /**
2469
3442
  * The standing instructions for the memory system. Always injected (even with
2470
- * an empty `.memory/`) so the agent knows it can persist notes. `users/` is
3443
+ * no `MEMORY.md`) so the agent knows it can persist notes and how. `users/` is
2471
3444
  * described by the platform memory extension, which is the only thing that can
2472
3445
  * scope it to a person — here we just point at it.
2473
3446
  */
2474
3447
  function memoryInstructions(cwd) {
2475
3448
  return `## Memory across conversations
2476
3449
 
2477
- Persistent notes across conversations live at \`${cwd}/.memory/\` — plain markdown files in your repo. The harness builds and injects an **index** of these files (paths + one-line descriptions) into your system prompt every turn; **bodies are NOT auto-loaded** — when an index entry looks relevant, use your \`read\` tool to load that specific file.
3450
+ Persistent notes across conversations live at \`${cwd}/.memory/\` — plain markdown files in your repo, one fact per file. You maintain a hand-written index of them at \`${cwd}/.memory/MEMORY.md\`, and the harness injects that index into your system prompt every turn. **Bodies are NOT auto-loaded** — when an index line looks relevant, use your \`read\` tool to load that specific file.
2478
3451
 
2479
3452
  Memory records **what happened**: facts you learned, events, investigation findings, project and system details worth carrying forward. It is NOT where behavior goes. A standing rule about how you should act — a "from now on, always/never …", a tone or format preference, a workflow convention a user wants you to follow — belongs in \`soul.md\` (see the Persona / Standing instructions section), not here. When a note is really an instruction about your behavior, write it to \`soul.md\`; when it is a fact or a record of something that occurred, write it here.
2480
3453
 
2481
- Shared knowledge is laid out as \`projects/<slug>/<topic>.md\` for project and system context, \`feedback/<topic>.md\` for concrete lessons learned from something that happened (the event and what it taught you — not a free-floating rule; the rule itself, if durable, goes in \`soul.md\`), and \`reference/<topic>.md\` for how external systems work. (Notes about a specific person live under \`users/\` and are shown separately, scoped to whoever you're talking to.) Each file's frontmatter declares \`name\` and \`description\` (the description is what shows up in the index, so make it a one-line behavior-triggering hook). Commit and push after writing to persist it.`;
3454
+ You own \`MEMORY.md\`. When you learn something durable, write the fact to its own \`.md\` file and add a one-line pointer to \`MEMORY.md\` in the form \`- [Title](relative/path.md) — one-line hook\`, where the hook is what tells future-you when to open the file. \`MEMORY.md\` is an *index*, never a store — put the actual content in the topic file and only a pointer line in \`MEMORY.md\`; do not inline a fact's body into the index even when it seems cheaper. Start each topic file with \`name:\`/\`description:\` frontmatter (the \`description\` is the one-line hook) so the index can be re-seeded, re-derived, or linted from the files themselves. When a fact changes, edit both the file and its line; when it stops being true, delete the file and its line. Shared knowledge is laid out as \`projects/<slug>/<topic>.md\` for project and system context, \`feedback/<topic>.md\` for concrete lessons learned from something that happened (the event and what it taught you — not a free-floating rule; the rule itself, if durable, goes in \`soul.md\`), and \`reference/<topic>.md\` for how external systems work. (Notes about a specific person live under \`users/\` and are indexed for you separately, scoped to whoever you're talking to don't put people's private notes in the shared \`MEMORY.md\`.)
3455
+
3456
+ Keep \`MEMORY.md\` lean. It's re-injected on *every* turn, so a small, high-signal index is worth far more than an exhaustive one — curate it like a tightly-edited table of contents, not a log:
3457
+ - Be selective. Only record something durable that will matter in a *future* conversation. Don't record what only matters right now, what you can re-derive on demand, or what's already obvious from the repo.
3458
+ - Consolidate before you create. Before adding a line, scan \`MEMORY.md\` for one that already covers the topic; if it exists, \`read\` that file and rewrite it with the new facts merged in rather than adding a near-duplicate. One fact per file, but don't fragment a topic across many thin files.
3459
+ - Prune as you go. Delete lines (and their files) that are wrong, stale, or superseded. The index header reports its size — when it's flagged over budget, consolidate and delete before adding anything new.
3460
+ - Write dates absolute, not relative. Resolve "last week" / "yesterday" to a concrete date when you record it (e.g. "on 7/3 Dhruv told me to …"), so the note still reads correctly in a future conversation.
3461
+
3462
+ Commit and push after editing \`.memory/\` to persist it.`;
2482
3463
  }
2483
3464
  function composeBlock$1({ cwd, index }) {
2484
3465
  const instructions = memoryInstructions(cwd);
2485
3466
  if (!index || index.length === 0) return instructions;
2486
- return `${instructions}\n\n## Memory index\n\n${index}`;
3467
+ const header = `## Memory index (${indexSizeNote(index)})`;
3468
+ const warning = indexBudgetWarning(index);
3469
+ const rendered = enforceMemoryIndexHardBudget(index);
3470
+ return `${instructions}\n\n${warning ? `${header}\n\n${warning}\n\n${rendered}` : `${header}\n\n${rendered}`}`;
2487
3471
  }
2488
3472
  const memoryExtension = (pi) => {
2489
3473
  let cachedBlock = null;
2490
3474
  pi.on("session_start", async (_event, ctx) => {
2491
3475
  try {
2492
- const index = await buildMemoryIndex({
2493
- cwd: ctx.cwd,
2494
- scope: { kind: "shared" }
2495
- });
3476
+ const migrated = await migrateMemory({ cwd: ctx.cwd });
3477
+ if (migrated !== null) log$5.info({
3478
+ event: "memory_migrated",
3479
+ from: migrated.from,
3480
+ to: migrated.to
3481
+ }, "migrated memory layout to current version");
3482
+ } catch (err) {
3483
+ log$5.warn({
3484
+ err,
3485
+ event: "memory_migration_failed"
3486
+ }, "memory migration failed; continuing with existing index");
3487
+ }
3488
+ try {
3489
+ const index = await readMemoryIndexFile({ cwd: ctx.cwd });
2496
3490
  cachedBlock = composeBlock$1({
2497
3491
  cwd: ctx.cwd,
2498
3492
  index
2499
3493
  });
2500
3494
  } catch (err) {
2501
- log$6.warn({
3495
+ log$5.warn({
2502
3496
  err,
2503
3497
  event: "memory_index_failed"
2504
- }, "memory index build failed; injecting instructions only");
3498
+ }, "memory index read failed; injecting instructions only");
2505
3499
  cachedBlock = memoryInstructions(ctx.cwd);
2506
3500
  }
2507
3501
  });
@@ -2512,7 +3506,7 @@ const memoryExtension = (pi) => {
2512
3506
  };
2513
3507
  //#endregion
2514
3508
  //#region src/extensions/platform-memory.ts
2515
- const log$5 = logger.child({ module: "platform-memory-extension" });
3509
+ const log$4 = logger.child({ module: "platform-memory-extension" });
2516
3510
  /**
2517
3511
  * Resolve the human on this turn via the API, keyed by the message id.
2518
3512
  * `/sandbox/channel-context` only returns a sender for a platform-known
@@ -2525,13 +3519,13 @@ const log$5 = logger.child({ module: "platform-memory-extension" });
2525
3519
  async function resolveTurnUser(messageId) {
2526
3520
  const client = sandboxClient();
2527
3521
  if (!client) {
2528
- log$5.debug({ event: "resolve_turn_user_no_api_url" }, "no API url in env; withholding user memory");
3522
+ log$4.debug({ event: "resolve_turn_user_no_api_url" }, "no API url in env; withholding user memory");
2529
3523
  return null;
2530
3524
  }
2531
3525
  try {
2532
3526
  const res = await client["channel-context"].$get({ query: { messageId } });
2533
3527
  if (!res.ok) {
2534
- log$5.warn({
3528
+ log$4.warn({
2535
3529
  event: "resolve_turn_user_failed",
2536
3530
  status: res.status
2537
3531
  }, "channel-context returned non-ok; withholding user memory");
@@ -2544,7 +3538,7 @@ async function resolveTurnUser(messageId) {
2544
3538
  displayName: sender.displayName
2545
3539
  };
2546
3540
  } catch (err) {
2547
- log$5.warn({
3541
+ log$4.warn({
2548
3542
  err,
2549
3543
  event: "resolve_turn_user_failed"
2550
3544
  }, "failed to resolve current user; withholding user memory");
@@ -2560,9 +3554,12 @@ function slugifyName(name) {
2560
3554
  function composeBlock({ index, user }) {
2561
3555
  const instructions = `## Current user memory
2562
3556
 
2563
- Notes about the person on this turn — the only \`users/\` memory you can see. Store anything you learn about them under \`${`.memory/users/${user.id}-${slugifyName(user.displayName)}/`}<topic>.md\`, using exactly this directory. Other people's \`users/\` notes are never shown, so never address someone by a name you only find in memory.`;
3557
+ Notes about the person on this turn — the only \`users/\` memory you can see. Store anything you learn about them under \`${`.memory/users/${user.id}-${slugifyName(user.displayName)}/`}<topic>.md\`, using exactly this directory. Other people's \`users/\` notes are never shown, so never address someone by a name you only find in memory. Keep it lean and be selective — this is re-injected every turn; consolidate related facts into one file and delete what's stale rather than piling on near-duplicates.`;
2564
3558
  if (!index || index.length === 0) return instructions;
2565
- return `${instructions}\n\n${index}`;
3559
+ const warning = indexBudgetWarning(index);
3560
+ const header = `Memory index (${indexSizeNote(index)}):`;
3561
+ const rendered = enforceMemoryIndexHardBudget(index);
3562
+ return `${instructions}\n\n${warning ? `${warning}\n\n${header}\n\n${rendered}` : `${header}\n\n${rendered}`}`;
2566
3563
  }
2567
3564
  /**
2568
3565
  * Build the platform memory extension. `channelContext` is the per-turn ref
@@ -2583,15 +3580,12 @@ function createPlatformMemoryExtension({ channelContext }) {
2583
3580
  cachedBlock = composeBlock({
2584
3581
  index: await buildMemoryIndex({
2585
3582
  cwd: ctx.cwd,
2586
- scope: {
2587
- kind: "user",
2588
- userId: user.id
2589
- }
3583
+ userId: user.id
2590
3584
  }),
2591
3585
  user
2592
3586
  });
2593
3587
  } catch (err) {
2594
- log$5.warn({
3588
+ log$4.warn({
2595
3589
  err,
2596
3590
  event: "user_memory_index_failed"
2597
3591
  }, "user memory index build failed; skipping injection");
@@ -2606,7 +3600,7 @@ function createPlatformMemoryExtension({ channelContext }) {
2606
3600
  }
2607
3601
  //#endregion
2608
3602
  //#region src/extensions/self-trace.ts
2609
- const log$4 = logger.child({ module: "self-trace-extension" });
3603
+ const log$3 = logger.child({ module: "self-trace-extension" });
2610
3604
  /**
2611
3605
  * Reports the agent's own execution as OpenTelemetry spans:
2612
3606
  * agent.session → agent.run → agent.turn.N → tool.NAME, with token/cost
@@ -2631,7 +3625,7 @@ const selfTraceExtension = (pi) => {
2631
3625
  sessionSpan = tracer.startSpan("agent.session", { attributes: { "agent.model": modelId } }, remoteCtx);
2632
3626
  sessionCtx = trace.setSpan(remoteCtx, sessionSpan);
2633
3627
  const sc = sessionSpan.spanContext();
2634
- log$4.info({
3628
+ log$3.info({
2635
3629
  event: "self_trace_session_start",
2636
3630
  trace_id: sc.traceId,
2637
3631
  span_id: sc.spanId,
@@ -2743,13 +3737,13 @@ const selfTraceExtension = (pi) => {
2743
3737
  * Lives in the harness package — soul.md is content from the agent's
2744
3738
  * own git repo, not from the platform — so its handling stays here.
2745
3739
  */
2746
- const log$3 = logger.child({ module: "soul-extension" });
3740
+ const log$2 = logger.child({ module: "soul-extension" });
2747
3741
  async function readSoul(cwd) {
2748
3742
  try {
2749
3743
  return (await readFile(join(cwd, "soul.md"), "utf8")).trim() || null;
2750
3744
  } catch (err) {
2751
3745
  if (err?.code === "ENOENT") return null;
2752
- log$3.warn({
3746
+ log$2.warn({
2753
3747
  err,
2754
3748
  event: "soul_read_failed"
2755
3749
  }, "soul.md read failed");
@@ -2781,8 +3775,7 @@ const soulExtension = (pi) => {
2781
3775
  };
2782
3776
  //#endregion
2783
3777
  //#region src/extensions/subagent/index.ts
2784
- const log$2 = logger.child({ module: "subagent-ext" });
2785
- const COLD_START_FLAG_WAIT_MS = 750;
3778
+ const log$1 = logger.child({ module: "subagent-ext" });
2786
3779
  const MAX_TASKS = 8;
2787
3780
  const TaskItem = Type.Object({
2788
3781
  task: Type.String({ description: "The task to delegate to a subagent run." }),
@@ -2791,8 +3784,14 @@ const TaskItem = Type.Object({
2791
3784
  maxLength: 120
2792
3785
  }),
2793
3786
  persona: Type.Optional(Type.String({ description: "Optional extra system prompt / role for this task, applied ON TOP of the child run's own default persona (your full identity and soul are still there underneath). Omit to run with just your default persona." })),
2794
- model: Type.Optional(Type.String({ description: "Optional model id to run this subagent on (e.g. \"anthropic/claude-opus-4-8\"). Must be a real catalogued model. Omit to run on your own model. If you are locked to a Google-compliant model, only compliant models are accepted." }))
3787
+ model: Type.Optional(Type.String({ description: "Optional model id to run this subagent on. PREFER A LOWER-COST, FASTER MODEL when the task is well-scoped and does not need your full reasoning depth — most delegated subtasks (searching, summarizing, mechanical edits, gathering or reformatting data, running a check) run just as well on a lighter model and cost far less. Reserve a top-tier model for subtasks that genuinely need deep reasoning or careful judgment. Must be a real catalogued model id. Omit to inherit your own model. If you are locked to a Google-compliant model, only compliant models are accepted." })),
3788
+ timeoutMinutes: Type.Optional(Type.Integer({
3789
+ description: "Optional wall-clock timeout for this subagent, in minutes. If the run is still going after this long it is ended and you are rewoken with a timeout result, so a hung subagent can never strand you. Omit for the default (30 minutes). Raise it for genuinely long work (a big migration, a large audit); lower it for a quick lookup. Range 1-360.",
3790
+ minimum: 1,
3791
+ maximum: 360
3792
+ }))
2795
3793
  });
3794
+ const DEFAULT_SUBAGENT_TIMEOUT_MS = 30 * 6e4;
2796
3795
  const SubagentParams = Type.Object({ tasks: Type.Array(TaskItem, {
2797
3796
  description: "One or more tasks to delegate. Each spawns an isolated subagent run linked to this conversation; they run in parallel and each rewakes you with its result when it finishes.",
2798
3797
  minItems: 1,
@@ -2807,7 +3806,9 @@ function buildTool(messageId) {
2807
3806
  "Delegate one or more tasks to subagent runs — fresh isolated copies of yourself, each with its own context window, linked to this conversation.",
2808
3807
  "Use it to parallelize independent work, to keep a large or noisy subtask out of your own context, or to run a task under a specialized persona.",
2809
3808
  "Fire-and-forget: this returns immediately after queueing. It does NOT wait for results. Each subagent runs on its own and, when it finishes, sends you its result on this thread — so queue the work, then keep going or end your turn. To chain, re-delegate after a result lands.",
2810
- "Pass tasks: [{ task, title, persona?, model? }]. title is a short 3-6 word name for the task — it is shown to the person in the chat as that subagent's row, so name the work rather than restating the prompt. persona is an optional extra system prompt layered ON TOP of your default persona for that task (it adds to, it does not replace, your identity); omit it to run with just your default persona. model is an optional model id for that task; omit it to run on your own model."
3809
+ "Pass tasks: [{ task, title, persona?, model? }]. title is a short 3-6 word name for the task — it is shown to the person in the chat as that subagent's row, so name the work rather than restating the prompt. persona is an optional extra system prompt layered ON TOP of your default persona for that task (it adds to, it does not replace, your identity); omit it to run with just your default persona. model is an optional model id for that task — prefer a lower-cost, faster model for well-scoped subtasks that don't need deep reasoning, and reserve a top-tier model for the ones that do; omit it to inherit your own model.",
3810
+ "Peering: each queued task comes back with its own conversation id. A subagent is a real linked conversation, so to see what one is doing RIGHT NOW while it runs — its reasoning, the tools it has called and their results, its progress — read that conversation with `platform conversations show <conversationId>` (you are already authorized; it is your own delegated run). Check in that way instead of waiting blind for the final result. The read reflects the child's persisted state, which lags a few seconds behind live (tool results land as they complete; in-progress reasoning can be up to ~5s stale), so peek between checkpoints rather than polling in a tight loop.",
3811
+ "Steering: to add context, correct course, or answer a question a subagent needs mid-run, post to its conversation with `platform conversations post <conversationId> --message \"...\"`. If the subagent is still running, your message lands as a live steer picked up in that same turn; if it has gone idle, it queues as its next turn. This is the same primitive as any conversation message — there is no separate steer channel."
2811
3812
  ].join(" "),
2812
3813
  promptSnippet: "subagent — delegate tasks to isolated subagent runs; each rewakes you with its result when done",
2813
3814
  parameters: SubagentParams,
@@ -2825,28 +3826,39 @@ function buildTool(messageId) {
2825
3826
  task: t.task,
2826
3827
  title: t.title ?? null,
2827
3828
  persona: t.persona ?? null,
2828
- model: t.model ?? null
3829
+ model: t.model ?? null,
3830
+ timeoutMs: t.timeoutMinutes != null ? t.timeoutMinutes * 6e4 : DEFAULT_SUBAGENT_TIMEOUT_MS
2829
3831
  }));
2830
3832
  try {
2831
- const { taskIds } = await postSubagentSpawn({
3833
+ const spawned = await postSubagentSpawn({
2832
3834
  messageId,
2833
3835
  tasks: spawnTasks
2834
3836
  });
2835
- log$2.info({
3837
+ const { taskIds } = spawned;
3838
+ log$1.info({
2836
3839
  event: "subagent_spawned",
2837
3840
  count: taskIds.length
2838
3841
  }, "subagent tasks queued");
2839
- const lines = taskIds.map((id, i) => `- ${id}: ${spawnTasks[i]?.title ?? spawnTasks[i]?.task ?? ""}`).join("\n");
3842
+ const convByTask = new Map(spawned.tasks.map((t) => [t.taskId, t.conversationId]));
3843
+ const lines = taskIds.map((id, i) => {
3844
+ const label = spawnTasks[i]?.title ?? spawnTasks[i]?.task ?? "";
3845
+ const conv = convByTask.get(id);
3846
+ return `- ${id}: ${label}${conv ? ` — conversation ${conv}` : ""}`;
3847
+ }).join("\n");
3848
+ const peerHint = spawned.tasks.length ? "\nEach subagent runs on its own conversation (id shown per task above). To SEE what one is doing while it runs, read it with `platform conversations show <conversationId>`. To STEER one mid-run — add context, correct course, answer a question — post to its conversation with `platform conversations post <conversationId> --message \"...\"`; it lands as a live steer if the subagent is still running, or as its next turn if it has gone idle." : "";
2840
3849
  return {
2841
3850
  content: [{
2842
3851
  type: "text",
2843
- text: `Queued ${taskIds.length} subagent ${taskIds.length === 1 ? "run" : "runs"}. Each runs on its own and will send you its result on this thread when it finishes — keep working or end your turn meanwhile.\n${lines}`
3852
+ text: `Queued ${taskIds.length} subagent ${taskIds.length === 1 ? "run" : "runs"}. Each runs on its own and will send you its result on this thread when it finishes — keep working or end your turn meanwhile.\n${lines}${peerHint}`
2844
3853
  }],
2845
- details: { taskIds }
3854
+ details: {
3855
+ taskIds,
3856
+ tasks: spawned.tasks
3857
+ }
2846
3858
  };
2847
3859
  } catch (err) {
2848
3860
  const message = err instanceof Error ? err.message : String(err);
2849
- log$2.warn({
3861
+ log$1.warn({
2850
3862
  err,
2851
3863
  event: "subagent_spawn_failed"
2852
3864
  }, "subagent spawn failed");
@@ -2863,29 +3875,24 @@ function buildTool(messageId) {
2863
3875
  };
2864
3876
  }
2865
3877
  /**
2866
- * Gated on `harness-subagent-enabled`, read from the shared feature-flag poll.
2867
3878
  * The factory takes the session's channel context to resolve the originating
2868
3879
  * messageId — the api links each spawned run to the conversation that message
2869
3880
  * belongs to and rewakes it on completion (nothing about the parent is piped
2870
- * from the sandbox beyond that id).
3881
+ * from the sandbox beyond that id). The tool is registered unconditionally at
3882
+ * session_start.
2871
3883
  */
2872
3884
  function createSubagentExtension({ channelContext }) {
2873
3885
  return (pi) => {
2874
3886
  const messageId = extractMessageId(channelContext);
2875
- startFeatureFlagPoller();
2876
3887
  let registered = false;
2877
3888
  const registerOnce = () => {
2878
3889
  if (registered) return;
2879
3890
  registered = true;
2880
3891
  pi.registerTool(buildTool(messageId));
2881
- log$2.info({ event: "subagent_enabled" }, "subagent tool registered");
3892
+ log$1.info({ event: "subagent_enabled" }, "subagent tool registered");
2882
3893
  };
2883
- onFlagChange("subagent", (enabled) => {
2884
- if (enabled) registerOnce();
2885
- });
2886
- pi.on("session_start", async () => {
2887
- if (getPolledFlag("subagent") === null) await Promise.race([awaitFirstFlagPoll(), new Promise((resolve) => setTimeout(resolve, COLD_START_FLAG_WAIT_MS).unref?.())]);
2888
- if (getPolledFlag("subagent") === true) registerOnce();
3894
+ pi.on("session_start", () => {
3895
+ registerOnce();
2889
3896
  });
2890
3897
  };
2891
3898
  }
@@ -2916,214 +3923,6 @@ const toolCallEnvExtension = (pi) => {
2916
3923
  });
2917
3924
  };
2918
3925
  //#endregion
2919
- //#region src/extensions/tool-call-summary.ts
2920
- const log$1 = logger.child({ module: "tool-call-summary-extension" });
2921
- /**
2922
- * The injected parameter name: a namespaced sentinel, so it can never collide
2923
- * with a real tool argument and is unmistakable in transcripts and logs. The
2924
- * frontend renderer (ANY-2723) duplicates this literal — keep the two in sync.
2925
- */
2926
- const TOOL_CALL_SUMMARY_FIELD = "__skydive_summary__";
2927
- /** JSON Schema fragment for the injected parameter. */
2928
- const SUMMARY_PROPERTY = {
2929
- type: "string",
2930
- description: "Required for every tool call. A concise, specific summary (max ~8 words) of what THIS call does and why, written for a person watching the conversation, e.g. \"Searching feedback for billing complaints\" or \"Reading the auth middleware\". Address the user directly in second person: the summary is read by the user, so refer to their things as \"your\", never in third person — \"Reading your emails\", not \"Reading his emails\". Always use the present progressive tense, since it is shown while the call runs: \"Updating your Slack\", never \"Updated your Slack\". Make each summary distinct from your other tool calls; never reuse a generic label like \"Search query\" or \"Running command\"."
2931
- };
2932
- const jsonSchemaObjectSchema = z.object({
2933
- type: z.unknown().optional(),
2934
- properties: z.record(z.string(), z.unknown()).optional(),
2935
- required: z.array(z.string()).optional(),
2936
- additionalProperties: z.unknown().optional()
2937
- }).passthrough();
2938
- const toolEntrySchema = z.object({
2939
- name: z.string().optional(),
2940
- input_schema: jsonSchemaObjectSchema.optional(),
2941
- parameters: jsonSchemaObjectSchema.optional(),
2942
- function: z.object({
2943
- name: z.string().optional(),
2944
- parameters: jsonSchemaObjectSchema.optional()
2945
- }).passthrough().optional()
2946
- }).passthrough();
2947
- const payloadWithToolsSchema = z.object({ tools: z.array(z.unknown()) }).passthrough();
2948
- /**
2949
- * Add the summary property to one JSON Schema object. Returns the augmented
2950
- * copy, or `null` when the tool should be left untouched: a strict schema
2951
- * (`additionalProperties: false`) whose validation would reject the extra
2952
- * field, or one that already declares a `__skydive_summary__` property of its own.
2953
- */
2954
- function augmentSchema(schema) {
2955
- if (schema.additionalProperties === false) return null;
2956
- const properties = schema.properties ?? {};
2957
- if ("__skydive_summary__" in properties) return null;
2958
- const required = schema.required ?? [];
2959
- return {
2960
- ...schema,
2961
- type: schema.type ?? "object",
2962
- properties: {
2963
- [TOOL_CALL_SUMMARY_FIELD]: SUMMARY_PROPERTY,
2964
- ...properties
2965
- },
2966
- required: required.includes("__skydive_summary__") ? required : [...required, TOOL_CALL_SUMMARY_FIELD]
2967
- };
2968
- }
2969
- /**
2970
- * Augment a single tool entry, dispatching on which provider shape it is.
2971
- * Returns the (possibly rebuilt) entry and whether anything changed. Skipped
2972
- * tools — wrong shape, strict, or name in `strictToolNames` — return unchanged.
2973
- */
2974
- function augmentToolEntry(entry, strictToolNames) {
2975
- const parsed = toolEntrySchema.safeParse(entry);
2976
- if (!parsed.success) return {
2977
- entry,
2978
- changed: false
2979
- };
2980
- const tool = parsed.data;
2981
- const name = tool.name ?? tool.function?.name ?? null;
2982
- if (name !== null && strictToolNames.has(name)) return {
2983
- entry,
2984
- changed: false
2985
- };
2986
- if (tool.input_schema) {
2987
- const augmented = augmentSchema(tool.input_schema);
2988
- if (!augmented) return {
2989
- entry,
2990
- changed: false
2991
- };
2992
- return {
2993
- entry: {
2994
- ...tool,
2995
- input_schema: augmented
2996
- },
2997
- changed: true
2998
- };
2999
- }
3000
- if (tool.parameters) {
3001
- const augmented = augmentSchema(tool.parameters);
3002
- if (!augmented) return {
3003
- entry,
3004
- changed: false
3005
- };
3006
- return {
3007
- entry: {
3008
- ...tool,
3009
- parameters: augmented
3010
- },
3011
- changed: true
3012
- };
3013
- }
3014
- if (tool.function?.parameters) {
3015
- const augmented = augmentSchema(tool.function.parameters);
3016
- if (!augmented) return {
3017
- entry,
3018
- changed: false
3019
- };
3020
- return {
3021
- entry: {
3022
- ...tool,
3023
- function: {
3024
- ...tool.function,
3025
- parameters: augmented
3026
- }
3027
- },
3028
- changed: true
3029
- };
3030
- }
3031
- return {
3032
- entry,
3033
- changed: false
3034
- };
3035
- }
3036
- /**
3037
- * Inject the summary field into every eligible tool in a provider payload.
3038
- * Returns a new payload when at least one tool was augmented, or `undefined`
3039
- * to signal "no change" (which keeps the original payload, per the
3040
- * `before_provider_request` contract).
3041
- *
3042
- * @param payload The outgoing provider payload (shape varies by provider).
3043
- * @param strictToolNames Names of tools whose registered schema is strict and
3044
- * must be skipped to avoid validation errors.
3045
- */
3046
- function injectToolCallSummary(payload, strictToolNames) {
3047
- const parsed = payloadWithToolsSchema.safeParse(payload);
3048
- if (!parsed.success || parsed.data.tools.length === 0) return void 0;
3049
- let changed = false;
3050
- const tools = parsed.data.tools.map((entry) => {
3051
- const result = augmentToolEntry(entry, strictToolNames);
3052
- if (result.changed) changed = true;
3053
- return result.entry;
3054
- });
3055
- if (!changed) return void 0;
3056
- return {
3057
- ...parsed.data,
3058
- tools
3059
- };
3060
- }
3061
- /**
3062
- * Names of registered tools whose schema sets `additionalProperties: false`.
3063
- * Pi validates the model's tool args against this registered schema, so the
3064
- * injected field would make a strict tool's call fail validation — skip them.
3065
- */
3066
- function getStrictToolNames(pi) {
3067
- const names = /* @__PURE__ */ new Set();
3068
- for (const tool of pi.getAllTools()) {
3069
- const parsed = jsonSchemaObjectSchema.safeParse(tool.parameters);
3070
- if (parsed.success && parsed.data.additionalProperties === false) names.add(tool.name);
3071
- }
3072
- return names;
3073
- }
3074
- function toolDeclaresSummaryParam(pi, toolName) {
3075
- const tool = pi.getAllTools().find((candidate) => candidate.name === toolName);
3076
- if (!tool) return false;
3077
- const parsed = jsonSchemaObjectSchema.safeParse(tool.parameters);
3078
- return parsed.success && parsed.data.properties != null && "__skydive_summary__" in parsed.data.properties;
3079
- }
3080
- /**
3081
- * Remove the injected summary from a tool's execution input. No-op when the
3082
- * field is absent, or when the tool genuinely declares a `__skydive_summary__`
3083
- * parameter of its own (which we never inject into, so its value is real).
3084
- * Mutates `input` in place, matching the `tool_call` contract.
3085
- *
3086
- * Fails open: this runs on the critical path of tool execution, and the
3087
- * `getAllTools()` lookup can throw. On any error we leave `input` untouched
3088
- * (the sentinel may pass through to the tool, but a bug here can never break
3089
- * tool execution).
3090
- */
3091
- function stripInjectedSummary(pi, toolName, input) {
3092
- try {
3093
- if (!("__skydive_summary__" in input)) return;
3094
- if (toolDeclaresSummaryParam(pi, toolName)) return;
3095
- delete input[TOOL_CALL_SUMMARY_FIELD];
3096
- } catch (err) {
3097
- log$1.error({
3098
- err,
3099
- event: "tool_call_summary_strip_failed",
3100
- toolName
3101
- }, "tool_call_summary strip failed; leaving tool input untouched");
3102
- }
3103
- }
3104
- /**
3105
- * Compute the rewritten payload for a `before_provider_request` event, failing
3106
- * open: on any error the original payload is left untouched so a bug here can
3107
- * never break an LLM call.
3108
- */
3109
- function buildInjectedPayload(pi, payload) {
3110
- try {
3111
- return injectToolCallSummary(payload, getStrictToolNames(pi));
3112
- } catch (err) {
3113
- log$1.error({
3114
- err,
3115
- event: "tool_call_summary_injection_failed"
3116
- }, "tool_call_summary injection failed; passing payload through unchanged");
3117
- return;
3118
- }
3119
- }
3120
- const toolCallSummaryExtension = (pi) => {
3121
- pi.on("before_provider_request", (event) => buildInjectedPayload(pi, event.payload));
3122
- pi.on("tool_call", (event) => {
3123
- stripInjectedSummary(pi, event.toolName, event.input);
3124
- });
3125
- };
3126
- //#endregion
3127
3926
  //#region src/extensions/background-tasks.ts
3128
3927
  /**
3129
3928
  * Background bash tasks as a pi extension.
@@ -3163,21 +3962,43 @@ const toolCallSummaryExtension = (pi) => {
3163
3962
  * from the origin messageId in its channel context (`resolveConversationFromApi`)
3164
3963
  * — and every run of the same conversation resolves to the same id, keeping the
3165
3964
  * shared map correctly scoped across turns. `bg_*`, the completion wake, and the
3166
- * next-session injection all filter to the resolved conversationan agent
3167
- * never sees or is woken by a task from a different chat. Only the output log
3965
+ * next-session injection all filter by a **scope key**the resolved
3966
+ * conversation id, or, when a session's conversation is unresolvable (a bare
3967
+ * CLI session, or a run whose channel-context ref carries no messageId), a
3968
+ * sentinel unique to that one session instance. Comparing on the raw
3969
+ * `conversationId` would bucket every unresolvable session together under
3970
+ * `null` and leak one's completion wake / status / next-session injection into
3971
+ * another; the sentinel keeps each isolated so an agent never sees or is woken
3972
+ * by a task from a different chat. Only the output log
3168
3973
  * spills to disk (/home/user/.anyone/bg-tasks/<id>.log) to avoid buffering a chatty job
3169
3974
  * in memory; exit code and run state live on the in-memory task.
3170
3975
  *
3171
- * **No cross-restart survival (v1, deliberate).** Task state lives only in
3172
- * the running harness process. A harness restart (crash supervisord
3173
- * respawn, or `platform harness reload` after the agent edits its own
3174
- * harness) drops the map and pi's exec children are reaped with it. We don't
3175
- * resurrect from disk because the common next-run case cold-provisions a
3176
- * *different* sandbox anyway (warm reuse is the minority in prod), so on-disk
3177
- * state would rarely be the box the next run lands on. The idle-completion wake
3178
- * does cross the sandbox → platform boundary (a fresh run via `bg-task-done`),
3179
- * but a task whose harness dies before it finishes is gone — it is not
3180
- * resurrected, and this stays distinct from the scheduled-run (cron) system.
3976
+ * **Cross-restart survival is OPT-IN, via `bg_run({ resumable: true })`.**
3977
+ * A non-resumable task's state lives only in the running harness process: a
3978
+ * harness restart (crash → supervisord respawn, `platform harness reload`, or
3979
+ * a sandbox recycle on idle timeout / redeploy / template rebuild) drops the
3980
+ * map and pi's exec children are reaped with it, and the task is gone the
3981
+ * right behavior for a one-shot side-effecting command, which must never
3982
+ * silently re-run.
3983
+ *
3984
+ * A RESUMABLE task additionally checkpoints its *spec* (command, cwd, labels,
3985
+ * origin messageId not its live output/exit state) to a durable, api-side
3986
+ * journal keyed by conversation (`/sandbox/bg-task-journal`, redis). On the
3987
+ * NEXT run's `session_start` — which usually lands on a *different*,
3988
+ * cold-provisioned sandbox, which is exactly why the journal is api-side and
3989
+ * not on the sandbox disk — the harness lists the journal and relaunches any
3990
+ * spec it isn't already running, keeping the original id and prepending a
3991
+ * `<resumed-after-restart>` banner so the agent knows it re-ran from scratch,
3992
+ * not continued. The spec is dropped from the journal when the task
3993
+ * finishes/kills. Because relaunch RE-EXECUTES the command, resumable is only
3994
+ * for idempotent, long-lived work (pollers, watchers, retry loops); the tool
3995
+ * description enforces this and the default is false.
3996
+ *
3997
+ * The idle-completion wake (a task finishing while the agent is idle) crosses
3998
+ * the sandbox → platform boundary via a fresh run (`bg-task-done`) for both
3999
+ * resumable and non-resumable tasks; the journal is a separate, additive layer
4000
+ * that only handles a task whose harness dies BEFORE it finishes. This stays
4001
+ * distinct from the scheduled-run (cron) system.
3181
4002
  */
3182
4003
  const log = logger.child({ module: "background-tasks-ext" });
3183
4004
  const ops = createLocalBashOperations();
@@ -3188,6 +4009,7 @@ const WATCHDOG_INTERVAL_MS = 3e4;
3188
4009
  const KEEPALIVE_EVERY_MS = 6e4;
3189
4010
  const KEEPALIVE_MAX_MS = 3600 * 1e3;
3190
4011
  const STALL_HINT_AFTER_MS = 120 * 1e3;
4012
+ const PUBLISH_DEBOUNCE_MS = 300;
3191
4013
  const MAX_LOG_BYTES = 100 * 1024 * 1024;
3192
4014
  const DEFAULT_TAIL_LINES = 30;
3193
4015
  const TAIL_READ_BYTES = 64 * 1024;
@@ -3195,11 +4017,12 @@ function taskLabel(meta) {
3195
4017
  return `${meta.id} "${meta.description ?? meta.command.slice(0, 60)}"`;
3196
4018
  }
3197
4019
  let taskCounter = 0;
4020
+ let sessionScopeCounter = 0;
3198
4021
  const tasks = /* @__PURE__ */ new Map();
3199
4022
  let watchdogInterval = null;
3200
4023
  let lastKeepaliveAt = 0;
3201
- function sameConversation(meta, conversationId) {
3202
- return meta.conversationId === conversationId;
4024
+ function sameScope(meta, scopeKey) {
4025
+ return meta.scopeKey === scopeKey;
3203
4026
  }
3204
4027
  function logPath(id) {
3205
4028
  return join(tasksDir(), `${id}.log`);
@@ -3312,6 +4135,10 @@ function createBackgroundTasksExtension({ channelContext }) {
3312
4135
  return id;
3313
4136
  });
3314
4137
  }
4138
+ const unresolvedScopeSentinel = `unresolved:${process.pid.toString(36)}:${(sessionScopeCounter += 1).toString(36)}`;
4139
+ function scopeKey() {
4140
+ return conversationId ?? unresolvedScopeSentinel;
4141
+ }
3315
4142
  let agentActive = false;
3316
4143
  pi.on("agent_start", async () => {
3317
4144
  agentActive = true;
@@ -3339,13 +4166,16 @@ ${recentOutput}
3339
4166
  </background-task-finished>
3340
4167
  Run bg_logs for the full output.
3341
4168
 
3342
- This is a background-task completion, not a message from the user. If it needs no user-facing response — a routine or expected finish, a leftover or self-killed process, nothing the user must act on or would want to know right now — call \`platform channel suppress-reply\` and output nothing. Only send a message if the outcome changes what the user should do or know, or if you were explicitly waiting to report this result.`,
4169
+ This is a background-task completion, not a message from the user.
4170
+ For a routine or expected completion, output nothing.
4171
+ Only reply if the outcome changes what the user should know or do,
4172
+ or if you were explicitly waiting to report it.`,
3343
4173
  display: false
3344
4174
  };
3345
4175
  }
3346
4176
  async function notifyCompletion(meta) {
3347
4177
  if (meta.notified) return;
3348
- if (agentActive && sameConversation(meta, conversationId)) {
4178
+ if (agentActive && sameScope(meta, scopeKey())) {
3349
4179
  meta.notified = true;
3350
4180
  pi.sendMessage(await taskDoneMessage(meta), {
3351
4181
  triggerTurn: true,
@@ -3376,9 +4206,83 @@ This is a background-task completion, not a message from the user. If it needs n
3376
4206
  });
3377
4207
  } else log.info({ taskId: meta.id }, "bg task completed idle with no origin message; deferring to next session_start");
3378
4208
  }
3379
- async function launchTask({ command, description, cwd }) {
4209
+ const SNAPSHOT_TAIL_LINES = 40;
4210
+ let lastPublishedSignature = null;
4211
+ let publishInFlight = null;
4212
+ let publishQueued = false;
4213
+ function snapshotSignature(snapshot) {
4214
+ return JSON.stringify(snapshot.map((t) => ({
4215
+ id: t.id,
4216
+ state: t.state,
4217
+ exitCode: t.exitCode,
4218
+ killedReason: t.killedReason,
4219
+ outputTail: t.outputTail
4220
+ })));
4221
+ }
4222
+ async function doPublishSnapshot() {
4223
+ if (!messageId) return;
4224
+ const mine = [...tasks.values()].filter((t) => sameScope(t, scopeKey()));
4225
+ try {
4226
+ const snapshot = await Promise.all(mine.map(async (t) => ({
4227
+ id: t.id,
4228
+ command: t.command,
4229
+ description: t.description,
4230
+ startedAt: t.startedAt,
4231
+ state: t.running ? "running" : "finished",
4232
+ exitCode: t.exitCode,
4233
+ killedReason: t.killedReason,
4234
+ outputTail: await tailLog(t.id, SNAPSHOT_TAIL_LINES)
4235
+ })));
4236
+ const signature = snapshotSignature(snapshot);
4237
+ if (signature === lastPublishedSignature) return;
4238
+ lastPublishedSignature = signature;
4239
+ postBackgroundTasksSnapshot({
4240
+ messageId,
4241
+ tasks: snapshot
4242
+ });
4243
+ } catch (err) {
4244
+ log.debug({
4245
+ err,
4246
+ event: "bg_tasks_snapshot_build_failed"
4247
+ }, "building bg-tasks snapshot failed");
4248
+ }
4249
+ }
4250
+ async function publishSnapshotNow() {
4251
+ if (publishInFlight) {
4252
+ publishQueued = true;
4253
+ return;
4254
+ }
4255
+ publishInFlight = (async () => {
4256
+ try {
4257
+ do {
4258
+ publishQueued = false;
4259
+ await doPublishSnapshot();
4260
+ } while (publishQueued);
4261
+ } finally {
4262
+ publishInFlight = null;
4263
+ }
4264
+ })();
4265
+ await publishInFlight;
4266
+ }
4267
+ let publishTimer = null;
4268
+ function schedulePublishSnapshot() {
4269
+ if (publishTimer) return;
4270
+ publishTimer = setTimeout(() => {
4271
+ publishTimer = null;
4272
+ publishSnapshotNow();
4273
+ }, PUBLISH_DEBOUNCE_MS);
4274
+ publishTimer.unref?.();
4275
+ }
4276
+ async function flushPublishSnapshot() {
4277
+ if (publishTimer) {
4278
+ clearTimeout(publishTimer);
4279
+ publishTimer = null;
4280
+ }
4281
+ await publishSnapshotNow();
4282
+ }
4283
+ async function launchTask({ command, description, cwd, resumable = false, resumedFromJournal = false, id: providedId, startedAt: providedStartedAt }) {
3380
4284
  taskCounter += 1;
3381
- const id = `bg-${process.pid.toString(36)}-${taskCounter}`;
4285
+ const id = providedId ?? `bg-${process.pid.toString(36)}-${taskCounter}`;
3382
4286
  try {
3383
4287
  await mkdir(tasksDir(), { recursive: true });
3384
4288
  } catch (err) {
@@ -3394,7 +4298,7 @@ This is a background-task completion, not a message from the user. If it needs n
3394
4298
  taskId: id
3395
4299
  }, "bg task log write failed");
3396
4300
  });
3397
- const startedAt = Date.now();
4301
+ const startedAt = providedStartedAt ?? Date.now();
3398
4302
  const meta = {
3399
4303
  id,
3400
4304
  command: stripPlatformExportsForDisplay(command),
@@ -3402,6 +4306,7 @@ This is a background-task completion, not a message from the user. If it needs n
3402
4306
  logBytes: 0,
3403
4307
  lastOutputAt: startedAt,
3404
4308
  conversationId,
4309
+ scopeKey: scopeKey(),
3405
4310
  messageId,
3406
4311
  description,
3407
4312
  notified: false,
@@ -3409,9 +4314,23 @@ This is a background-task completion, not a message from the user. If it needs n
3409
4314
  controller: new AbortController(),
3410
4315
  running: true,
3411
4316
  exitCode: null,
3412
- error: null
4317
+ error: null,
4318
+ resumable,
4319
+ cwd,
4320
+ resumedFromJournal
3413
4321
  };
3414
4322
  tasks.set(id, meta);
4323
+ if (resumable && messageId) putBackgroundTaskJournalSpec({
4324
+ messageId,
4325
+ spec: {
4326
+ id,
4327
+ command,
4328
+ cwd,
4329
+ description,
4330
+ startedAt,
4331
+ messageId
4332
+ }
4333
+ });
3415
4334
  ops.exec(command, cwd, {
3416
4335
  onData: (chunk) => {
3417
4336
  meta.logBytes += chunk.length;
@@ -3437,6 +4356,11 @@ This is a background-task completion, not a message from the user. If it needs n
3437
4356
  taskId: id,
3438
4357
  exitCode: meta.exitCode
3439
4358
  }, "bg task finished");
4359
+ if (meta.resumable && meta.messageId) deleteBackgroundTaskJournalSpec({
4360
+ messageId: meta.messageId,
4361
+ taskId: id
4362
+ });
4363
+ schedulePublishSnapshot();
3440
4364
  await notifyCompletion(meta);
3441
4365
  });
3442
4366
  ensureWatchdog();
@@ -3444,19 +4368,55 @@ This is a background-task completion, not a message from the user. If it needs n
3444
4368
  taskId: id,
3445
4369
  conversationId
3446
4370
  }, "bg task started");
4371
+ schedulePublishSnapshot();
3447
4372
  return meta;
3448
4373
  }
3449
4374
  function knownTaskIds() {
3450
- return [...tasks.values()].filter((t) => sameConversation(t, conversationId)).map((t) => t.id).join(", ") || "(none)";
4375
+ return [...tasks.values()].filter((t) => sameScope(t, scopeKey())).map((t) => t.id).join(", ") || "(none)";
4376
+ }
4377
+ let journalChecked = false;
4378
+ async function rehydrateJournaledTasks() {
4379
+ if (!messageId || journalChecked) return;
4380
+ journalChecked = true;
4381
+ const specs = await listBackgroundTaskJournalSpecs({ messageId });
4382
+ if (specs.length === 0) return;
4383
+ for (const spec of specs) {
4384
+ const live = tasks.get(spec.id);
4385
+ if (live && sameScope(live, scopeKey())) continue;
4386
+ log.info({
4387
+ taskId: spec.id,
4388
+ conversationId
4389
+ }, "relaunching journaled resumable bg task after restart");
4390
+ const meta = await launchTask({
4391
+ command: spec.command,
4392
+ description: spec.description,
4393
+ cwd: spec.cwd,
4394
+ resumable: true,
4395
+ resumedFromJournal: true,
4396
+ id: spec.id,
4397
+ startedAt: spec.startedAt
4398
+ });
4399
+ try {
4400
+ const stream = createWriteStream(logPath(meta.id), { flags: "a" });
4401
+ stream.write(`<resumed-after-restart>requeued and relaunched on a new sandbox after the previous one was drained; this is a fresh execution of the command from the start, not a continuation</resumed-after-restart>\n`);
4402
+ stream.end();
4403
+ } catch (err) {
4404
+ log.debug({
4405
+ err,
4406
+ taskId: meta.id
4407
+ }, "resume banner write failed");
4408
+ }
4409
+ }
3451
4410
  }
3452
4411
  pi.on("session_start", async () => {
3453
- if (tasks.size === 0) return;
4412
+ if (tasks.size === 0 && (!messageId || journalChecked)) return;
3454
4413
  await ensureConversationId();
3455
- for (const [id, meta] of tasks) if (sameConversation(meta, conversationId) && !meta.running && meta.notified) {
4414
+ await rehydrateJournaledTasks();
4415
+ for (const [id, meta] of tasks) if (sameScope(meta, scopeKey()) && !meta.running && meta.notified) {
3456
4416
  tasks.delete(id);
3457
4417
  await unlink(logPath(id)).catch(() => {});
3458
4418
  }
3459
- const unnotified = [...tasks.values()].filter((t) => sameConversation(t, conversationId) && !t.notified && !t.running);
4419
+ const unnotified = [...tasks.values()].filter((t) => sameScope(t, scopeKey()) && !t.notified && !t.running);
3460
4420
  for (const meta of unnotified) {
3461
4421
  meta.notified = true;
3462
4422
  pi.sendMessage(await taskDoneMessage(meta));
@@ -3465,7 +4425,9 @@ This is a background-task completion, not a message from the user. If it needs n
3465
4425
  conversationId,
3466
4426
  count: unnotified.length
3467
4427
  }, "injected completed bg tasks at session_start");
3468
- if ([...tasks.values()].some((t) => sameConversation(t, conversationId) && t.running)) ensureWatchdog();
4428
+ if ([...tasks.values()].some((t) => sameScope(t, scopeKey()) && t.running)) ensureWatchdog();
4429
+ lastPublishedSignature = null;
4430
+ await flushPublishSnapshot();
3469
4431
  });
3470
4432
  function err(text) {
3471
4433
  return {
@@ -3482,11 +4444,11 @@ This is a background-task completion, not a message from the user. If it needs n
3482
4444
  }
3483
4445
  function resolveTask(taskId) {
3484
4446
  const exact = tasks.get(taskId);
3485
- if (exact && sameConversation(exact, conversationId)) return {
4447
+ if (exact && sameScope(exact, scopeKey())) return {
3486
4448
  error: null,
3487
4449
  meta: exact
3488
4450
  };
3489
- const matches = [...tasks.values()].filter((t) => sameConversation(t, conversationId) && t.id.startsWith(taskId));
4451
+ const matches = [...tasks.values()].filter((t) => sameScope(t, scopeKey()) && t.id.startsWith(taskId));
3490
4452
  if (matches.length === 1) return {
3491
4453
  error: null,
3492
4454
  meta: matches[0]
@@ -3495,7 +4457,7 @@ This is a background-task completion, not a message from the user. If it needs n
3495
4457
  return err(`Unknown task ${taskId}. Known tasks: ${knownTaskIds()}`);
3496
4458
  }
3497
4459
  function listTasks() {
3498
- const mine = [...tasks.values()].filter((t) => sameConversation(t, conversationId));
4460
+ const mine = [...tasks.values()].filter((t) => sameScope(t, scopeKey()));
3499
4461
  if (mine.length === 0) return "No background tasks.";
3500
4462
  return mine.map((t) => {
3501
4463
  const state = t.running ? "running" : t.exitCode !== null ? `exited ${t.exitCode}${t.killedReason ? ` (killed: ${t.killedReason})` : ""}` : t.killedReason ? `killed: ${t.killedReason}` : "ended";
@@ -3508,24 +4470,27 @@ This is a background-task completion, not a message from the user. If it needs n
3508
4470
  const bgRun = {
3509
4471
  name: "bg_run",
3510
4472
  label: "Run in background",
3511
- description: "Run a bash command in the background. Returns immediately with a task id; output streams to a log file. You are sent a message when it finishes — keep working or end your turn meanwhile. Use for anything over a couple of minutes (builds, batch jobs, retry loops, downloads). Inspect with bg_status / bg_logs, stop with bg_kill.",
3512
- promptSnippet: "bg_run — run a long command without blocking; you are notified on completion",
4473
+ description: "Run a bash command in the background. Returns immediately with a task id; output streams to a log file. You are sent a message when it finishes — keep working or end your turn meanwhile. Use for anything over a couple of minutes (builds, batch jobs, retry loops, downloads). Inspect with bg_status / bg_logs, stop with bg_kill. Pass resumable:true ONLY for an idempotent, long-lived command (a poller/watcher/retry loop) that should be requeued and relaunched on your next run if the sandbox goes away before it finishes (a sandbox is drained and replaced with a fresh one, not restarted in place) — the requeue re-runs the command from scratch, so never mark a one-shot side-effecting job (a migration, an apply, a send) resumable.",
4474
+ promptSnippet: "bg_run — run a long command without blocking; you are notified on completion (resumable:true requeues the task onto a fresh sandbox if the current one is drained, idempotent commands only)",
3513
4475
  parameters: Type.Object({
3514
4476
  command: Type.String({ description: "Bash command to execute" }),
3515
- description: Type.Optional(Type.String({ description: "Clear, concise description of what this command does in active voice (2-6 words)." }))
4477
+ description: Type.Optional(Type.String({ description: "Clear, concise description of what this command does in active voice (2-6 words)." })),
4478
+ resumable: Type.Optional(Type.Boolean({ description: "When true, this task is requeued and relaunched on your next run if the sandbox it is running on goes away before it finishes (a sandbox is drained and replaced with a fresh one, rather than restarted in place, so an in-flight task would otherwise be lost). Use ONLY for idempotent, long-lived commands (pollers, watchers, retry loops) — the requeue re-runs the command from scratch on the new sandbox, so never set this on a one-shot side-effecting command." }))
3516
4479
  }),
3517
4480
  async execute(_toolCallId, params, _signal, _onUpdate, ctx) {
3518
4481
  await ensureConversationId();
3519
- const { command, description = null } = params;
4482
+ const { command, description = null, resumable = false } = params;
3520
4483
  const meta = await launchTask({
3521
4484
  command,
3522
4485
  description,
3523
- cwd: ctx.cwd
4486
+ cwd: ctx.cwd,
4487
+ resumable
3524
4488
  });
4489
+ const resumeNote = resumable && meta.messageId ? "\nResumable: if this sandbox is drained before the task finishes, it will be requeued and relaunched from the start on your next run." : resumable ? "\nNote: resumable was requested but this session has no durable conversation, so it will NOT be requeued if the sandbox is drained." : "";
3525
4490
  return {
3526
4491
  content: [{
3527
4492
  type: "text",
3528
- text: `Started background task ${taskLabel(meta)}.\nlog: ${logPath(meta.id)}\nYou will get a message when it finishes. Check on it with bg_status {"taskId":"${meta.id}"}.`
4493
+ text: `Started background task ${taskLabel(meta)}.\nlog: ${logPath(meta.id)}\nYou will get a message when it finishes. Check on it with bg_status {"taskId":"${meta.id}"}.${resumeNote}`
3529
4494
  }],
3530
4495
  details: {}
3531
4496
  };
@@ -3645,6 +4610,7 @@ const all = [
3645
4610
  localToolsExtension,
3646
4611
  toolCallEnvExtension,
3647
4612
  bashDefaultTimeoutExtension,
4613
+ diskGuardExtension,
3648
4614
  toolCallSummaryExtension
3649
4615
  ];
3650
4616
  /**
@@ -3663,7 +4629,8 @@ function platformExtensions({ sessionId, channelContext }) {
3663
4629
  selfTraceExtension,
3664
4630
  createBackgroundTasksExtension({ channelContext }),
3665
4631
  createSubagentExtension({ channelContext }),
3666
- createContextManagementExtension()
4632
+ createContextManagementExtension(),
4633
+ resourcePressureWarningExtension
3667
4634
  ];
3668
4635
  }
3669
4636
  //#endregion