agentlas 1.0.16 → 1.0.18

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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.18 — 2026-07-31
4
+
5
+ - **Private Agent Cloud inventory is readable by default.** `agentlas cloud
6
+ list` now identifies the owner-private scope, shows how many rows are
7
+ displayed, and labels slug, kind, callability, update date, and name instead
8
+ of dumping an unlabeled TSV stream.
9
+ - The inventory ends with exact next actions for machine-readable revision
10
+ inspection and restoring one selected package. `--json` remains the stable
11
+ full-fidelity contract.
12
+
13
+ ## 1.0.17 — 2026-07-31
14
+
15
+ - **Terminal requires the verification-aware Context Map engine.** Context
16
+ commands now select Agentlas OS 1.1.86 or newer, whose impact graph connects
17
+ code changes to tests, test commands, CI workflows, and product-version
18
+ contracts, including local test files intentionally excluded from Git.
19
+ - A stale Core can no longer satisfy the Terminal context capability merely by
20
+ exposing the old module path; the version gate fails closed before execution.
21
+
3
22
  ## 1.0.16 — 2026-07-30
4
23
 
5
24
  - **Project-scoped plugin listing now fails closed.** A missing, unsafe, or
@@ -10,7 +10,7 @@ const { compareSemVer, normalizeSemVer } = require("./semver.cjs");
10
10
  const HARNESS_SCHEMA_VERSION = "agentlas.stormbreaker.goal-ultracode-harness.v1";
11
11
  const HARNESS_ID = "agentlas-core/stormbreaker-goal-ultracode";
12
12
  const HARNESS_MODE = "stormbreaker-goal-ultracode";
13
- const CONTEXT_MAP_MIN_CORE_VERSION = "1.1.66";
13
+ const CONTEXT_MAP_MIN_CORE_VERSION = "1.1.86";
14
14
  const CORE_MANIFEST_MAX_BYTES = 64 * 1024;
15
15
  const CORE_RUNTIME_MARKERS = [
16
16
  ["agentlas_cloud", "__main__.py"],
@@ -303,7 +303,32 @@ async function runCloud(ctx, args) {
303
303
  if (flags.json) { ctx.out(JSON.stringify(result, null, 2)); return 0; }
304
304
  const agents = Array.isArray(result.results) ? result.results : [];
305
305
  if (!agents.length) { ctx.out("No agents are stored in Private Agent Cloud."); return 0; }
306
- for (const agent of agents) ctx.out(`${agent.slug}\t${agent.name || agent.nameEn || agent.slug}\t${agent.entityKind || "agent"}`);
306
+ const total = Number.isSafeInteger(result.total) ? result.total : agents.length;
307
+ ctx.out(`Private Agent Cloud · ${agents.length} shown${total > agents.length ? ` of ${total}` : ""} · owner-private`);
308
+ ctx.out("");
309
+ ctx.out("SLUG KIND CALLABLE UPDATED NAME");
310
+ for (const agent of agents) {
311
+ const slug = String(agent.slug || "?").slice(0, 34).padEnd(34);
312
+ const kind = String(agent.entityKind || agent.agentKind || "agent").slice(0, 6).padEnd(6);
313
+ const callable = agent.callable === true
314
+ ? "yes"
315
+ : agent.callable === false
316
+ ? "no"
317
+ : agent.routingStatus === "routing_ready"
318
+ ? "yes"
319
+ : "unknown";
320
+ const updated = typeof agent.updatedAt === "string" && /^\d{4}-\d{2}-\d{2}/.test(agent.updatedAt)
321
+ ? agent.updatedAt.slice(0, 10)
322
+ : "unknown";
323
+ const name = String(agent.name || agent.nameEn || agent.slug || "?").replace(/\s+/g, " ").slice(0, 48);
324
+ ctx.out(`${slug} ${kind} ${callable.padEnd(8)} ${updated} ${name}`);
325
+ }
326
+ ctx.out("");
327
+ if (total > agents.length) {
328
+ ctx.out(`Showing ${agents.length} of ${total}. Use --limit <n> to request more.`);
329
+ }
330
+ ctx.out("Inspect machine-readable source, revision, and package identity with: agentlas cloud list --json");
331
+ ctx.out("Restore one exact owner-private revision with: agentlas cloud restore <slug>");
307
332
  return 0;
308
333
  }
309
334
  if (sub === "restore") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentlas",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "description": "Agentlas agent terminal — chat with your installed AI agents and teams from the terminal, Claude Code style. Standalone: no desktop app required.",
5
5
  "bin": {
6
6
  "agentlas": "bin/agentlas.cjs"