agentlas 1.0.62 → 1.0.63
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/CHANGELOG.md +6 -0
- package/engine/commands/update.cjs +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.63 — 2026-08-29
|
|
4
|
+
|
|
5
|
+
- `agentlas update --json` now reads the centralized output-mode context after
|
|
6
|
+
global flags are consumed, so it emits the promised JSON document instead of
|
|
7
|
+
falling back to human-readable lines.
|
|
8
|
+
|
|
3
9
|
## 1.0.62 — 2026-08-29
|
|
4
10
|
|
|
5
11
|
- Terminal sessions now preserve ACP conversation identity and history across
|
|
@@ -48,9 +48,9 @@ async function checkNpmLatest({ fetch: fetchImpl, timeoutMs = 8_000 } = {}) {
|
|
|
48
48
|
};
|
|
49
49
|
}
|
|
50
50
|
|
|
51
|
-
async function run(ctx, args) {
|
|
52
|
-
const json = args.includes("--json");
|
|
53
|
-
const status = await checkNpmLatest();
|
|
51
|
+
async function run(ctx, args, deps = {}) {
|
|
52
|
+
const json = ctx.output?.format === "json" || args.includes("--json");
|
|
53
|
+
const status = await checkNpmLatest(deps);
|
|
54
54
|
if (json) {
|
|
55
55
|
ctx.out(JSON.stringify(status, null, 2));
|
|
56
56
|
return 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentlas",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.63",
|
|
4
4
|
"description": "Agentlas project terminal — run project controllers and task-scoped agent teams from the terminal. Standalone: no desktop app process required.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"agentlas": "bin/agentlas.cjs"
|