open-agents-ai 0.127.0 → 0.128.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8782,14 +8782,16 @@ New: ${newNarrative.slice(0, 200)}...`,
|
|
|
8782
8782
|
entity: "primary-user",
|
|
8783
8783
|
trust_level: 0.9,
|
|
8784
8784
|
interaction_history_summary: "New relationship \u2014 first session.",
|
|
8785
|
-
preferences_learned: []
|
|
8785
|
+
preferences_learned: [],
|
|
8786
|
+
their_model_of_us: "New relationship \u2014 user likely expects a capable coding assistant."
|
|
8786
8787
|
}],
|
|
8787
8788
|
homeostasis: {
|
|
8788
8789
|
uncertainty: 0.1,
|
|
8789
8790
|
coherence: 1,
|
|
8790
8791
|
goal_tension: 0,
|
|
8791
8792
|
memory_trust: 1,
|
|
8792
|
-
boundary_breach: 0
|
|
8793
|
+
boundary_breach: 0,
|
|
8794
|
+
latency_stress: 0
|
|
8793
8795
|
},
|
|
8794
8796
|
created_at: (/* @__PURE__ */ new Date()).toISOString(),
|
|
8795
8797
|
updated_at: (/* @__PURE__ */ new Date()).toISOString(),
|
|
@@ -42383,6 +42385,7 @@ async function handleUpdate(subcommand, ctx) {
|
|
|
42383
42385
|
}
|
|
42384
42386
|
};
|
|
42385
42387
|
}
|
|
42388
|
+
renderInfo("Checking for updates...");
|
|
42386
42389
|
const info = await checkForUpdate(currentVersion, true);
|
|
42387
42390
|
const { exec: exec4, execSync: es2 } = await import("node:child_process");
|
|
42388
42391
|
const execA = (cmd, opts) => new Promise((res, rej) => exec4(cmd, { encoding: "utf8", timeout: opts?.timeout ?? 3e4, cwd: opts?.cwd }, (err, stdout) => err ? rej(err) : res((stdout || "").trim())));
|
package/package.json
CHANGED