agentlas 1.0.17 → 1.0.19
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 +29 -0
- package/README.md +188 -279
- package/engine/agents/router.cjs +111 -490
- package/engine/bootstrap-schema.sql +23 -21
- package/engine/cloud-assets/commands.cjs +26 -1
- package/engine/commands/run.cjs +23 -34
- package/engine/project/controller.cjs +113 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.19 — 2026-08-01
|
|
4
|
+
|
|
5
|
+
- **Ordinary runs now honor Desktop Work project ownership.** From a connected
|
|
6
|
+
project folder, the first member of the saved ordered agent pool is the task
|
|
7
|
+
controller and the remaining members are task-scoped sub-agent candidates.
|
|
8
|
+
Missing projects, empty teams, remote-only controllers, and unavailable
|
|
9
|
+
controller releases stop without silently selecting a default agent.
|
|
10
|
+
- Exact-agent invocation remains available as an explicit advanced path. The
|
|
11
|
+
separate route preview is judged by the connected model against the installed
|
|
12
|
+
roster and remains unresolved when the evidence or model is unavailable;
|
|
13
|
+
regex intent gates, keyword dictionaries, and lexical fallback selection were
|
|
14
|
+
removed.
|
|
15
|
+
- The fresh Terminal schema now matches Desktop project-first schema v85,
|
|
16
|
+
including ordered project pools and AutomationSession transcript ownership.
|
|
17
|
+
- The npm publication gate now verifies against the exact Agentlas OS v1.1.92
|
|
18
|
+
source commit used by Desktop instead of an older Core snapshot.
|
|
19
|
+
- Documentation now distinguishes verified macOS behavior, Linux CI coverage,
|
|
20
|
+
and the provided but not independently end-to-end verified Windows launcher.
|
|
21
|
+
|
|
22
|
+
## 1.0.18 — 2026-07-31
|
|
23
|
+
|
|
24
|
+
- **Private Agent Cloud inventory is readable by default.** `agentlas cloud
|
|
25
|
+
list` now identifies the owner-private scope, shows how many rows are
|
|
26
|
+
displayed, and labels slug, kind, callability, update date, and name instead
|
|
27
|
+
of dumping an unlabeled TSV stream.
|
|
28
|
+
- The inventory ends with exact next actions for machine-readable revision
|
|
29
|
+
inspection and restoring one selected package. `--json` remains the stable
|
|
30
|
+
full-fidelity contract.
|
|
31
|
+
|
|
3
32
|
## 1.0.17 — 2026-07-31
|
|
4
33
|
|
|
5
34
|
- **Terminal requires the verification-aware Context Map engine.** Context
|