open-agents-ai 0.103.2 → 0.103.4
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/README.md +672 -672
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -31456,6 +31456,7 @@ async function handleUpdate(subcommand, ctx) {
|
|
|
31456
31456
|
ctx.contextSave?.();
|
|
31457
31457
|
const hadActiveTask = ctx.savePendingTaskState?.() ?? false;
|
|
31458
31458
|
const resumeFlag = hadActiveTask ? "1" : "update-only";
|
|
31459
|
+
reloadSpinner.stop("Reloading\u2026");
|
|
31459
31460
|
const { execPath, argv } = process;
|
|
31460
31461
|
try {
|
|
31461
31462
|
const { execFileSync } = await import("node:child_process");
|
|
@@ -42053,6 +42054,7 @@ async function startInteractive(config, repoPath) {
|
|
|
42053
42054
|
let carouselLines = 0;
|
|
42054
42055
|
const version = getVersion3();
|
|
42055
42056
|
if (isResumed) {
|
|
42057
|
+
process.stdout.write("\r\x1B[K");
|
|
42056
42058
|
const resumeMsg = hasTaskToResume ? `Updated to v${version} \u2014 picking up where you left off.
|
|
42057
42059
|
` : `Updated to v${version}.
|
|
42058
42060
|
`;
|
package/package.json
CHANGED