@frockbot/plugin-routines 0.3.18 → 0.3.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frockbot/plugin-routines",
3
- "version": "0.3.18",
3
+ "version": "0.3.20",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -32,12 +32,12 @@
32
32
  "typecheck": "vue-tsc --noEmit -p tsconfig.json"
33
33
  },
34
34
  "dependencies": {
35
- "@frockbot/client-core": "0.3.18",
36
- "@frockbot/client-ui": "0.3.18",
37
- "@frockbot/configuration-core": "0.3.18",
38
- "@frockbot/kernel-agent-loop": "0.3.18",
39
- "@frockbot/kernel-contracts": "0.3.18",
40
- "@frockbot/plugin-shell": "0.3.18",
35
+ "@frockbot/client-core": "0.3.20",
36
+ "@frockbot/client-ui": "0.3.20",
37
+ "@frockbot/configuration-core": "0.3.20",
38
+ "@frockbot/kernel-agent-loop": "0.3.20",
39
+ "@frockbot/kernel-contracts": "0.3.20",
40
+ "@frockbot/plugin-shell": "0.3.20",
41
41
  "cordis": "4.0.0-rc.8",
42
42
  "croner": "10.0.1",
43
43
  "vue": "3.5.41"
package/src/inbox.test.ts CHANGED
@@ -491,6 +491,7 @@ describe("a Turn the User's next message replaced", () => {
491
491
 
492
492
  expect(preamble).toContain("[Superseded]");
493
493
  expect(preamble).toContain("must not be assumed to have happened");
494
+ expect(preamble).toContain("Do not pick the interrupted work back up");
494
495
  expect(preamble).toContain("Subagents that Turn dispatched are still");
495
496
  // With nothing left running the reminder says nothing about subagents.
496
497
  expect(
package/src/inbox.ts CHANGED
@@ -507,6 +507,10 @@ export function pendingBotInputPreambleV1(
507
507
  if (input.kind === "superseded-turn") {
508
508
  lines.push(
509
509
  "[Superseded] Your previous Turn was interrupted because the User sent this message before it finished. What you had already sent and the tool results you had already received are above; anything still in flight was abandoned and must not be assumed to have happened.",
510
+ // A Bot answering "hi" with thirty steps of the interrupted job is
511
+ // what this line prevents (2026-09-04): the new message is the Turn's
512
+ // subject; the old job resumes only when the message asks for it.
513
+ "Answer this message. Do not pick the interrupted work back up unless this message asks you to; if it is unrelated, say in one sentence where that work stopped and ask whether to continue.",
510
514
  ...(input.unfinishedWork
511
515
  ? [
512
516
  "Subagents that Turn dispatched are still running and will report when they finish.",