agentlas 0.9.9 → 1.0.1
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 +92 -0
- package/README.md +319 -342
- package/bin/agentlas.cjs +32 -9
- package/engine/agentlas-banner.cjs +24 -3
- package/engine/agentlas-composer.cjs +239 -31
- package/engine/agentlas-config.cjs +103 -7
- package/engine/agentlas-core-harness.cjs +48 -4
- package/engine/agentlas-evolution.cjs +3 -4
- package/engine/agentlas-i18n.cjs +88 -32
- package/engine/agentlas-input.cjs +234 -18
- package/engine/agentlas-memory-governance.cjs +3 -5
- package/engine/agentlas-memory-import.cjs +3 -3
- package/engine/agentlas-native-host.cjs +200 -9
- package/engine/agentlas-onboard.cjs +112 -20
- package/engine/agentlas-permissions.cjs +14 -7
- package/engine/agentlas-sqlite-policy.cjs +34 -0
- package/engine/agentlas-ui.cjs +93 -42
- package/engine/agentlas-workforce.cjs +318 -8
- package/engine/agentlas-workload-routing.cjs +8 -3
- package/engine/agentlas.cjs +140 -12336
- package/engine/agents/files.cjs +61 -0
- package/engine/agents/import-local.cjs +237 -0
- package/engine/agents/registry.cjs +158 -0
- package/engine/agents/router.cjs +565 -0
- package/engine/agents/routes.cjs +43 -0
- package/engine/architecture.data.json +2 -2
- package/engine/automation/daemon.cjs +335 -0
- package/engine/automation/schedule.cjs +181 -0
- package/engine/automation/store.cjs +209 -0
- package/engine/cloud/auth.cjs +279 -0
- package/engine/cloud/hub-client.cjs +239 -0
- package/engine/cloud-assets/cargo.cjs +49 -0
- package/engine/cloud-assets/cas.cjs +235 -0
- package/engine/cloud-assets/commands.cjs +273 -0
- package/engine/cloud-assets/package.cjs +936 -0
- package/engine/cloud-assets/restore.cjs +172 -0
- package/engine/cloud-assets/state.cjs +268 -0
- package/engine/commands/automation.cjs +195 -0
- package/engine/commands/billing.cjs +96 -0
- package/engine/commands/browser.cjs +20 -0
- package/engine/commands/build.cjs +33 -0
- package/engine/commands/call.cjs +24 -0
- package/engine/commands/career-graph.cjs +51 -0
- package/engine/commands/cd.cjs +22 -0
- package/engine/commands/chat.cjs +12 -0
- package/engine/commands/chats.cjs +28 -0
- package/engine/commands/cloud.cjs +17 -0
- package/engine/commands/connect.cjs +20 -0
- package/engine/commands/context.cjs +66 -0
- package/engine/commands/creds.cjs +203 -0
- package/engine/commands/doctor.cjs +68 -0
- package/engine/commands/env.cjs +33 -0
- package/engine/commands/evolve.cjs +23 -0
- package/engine/commands/experience.cjs +34 -0
- package/engine/commands/film.cjs +8 -0
- package/engine/commands/firm.cjs +115 -0
- package/engine/commands/help.cjs +65 -0
- package/engine/commands/hep.cjs +23 -0
- package/engine/commands/import.cjs +35 -0
- package/engine/commands/index.cjs +136 -0
- package/engine/commands/install.cjs +27 -0
- package/engine/commands/journal.cjs +31 -0
- package/engine/commands/legacy-network.cjs +29 -0
- package/engine/commands/list.cjs +49 -0
- package/engine/commands/login.cjs +68 -0
- package/engine/commands/logout.cjs +28 -0
- package/engine/commands/mcp.cjs +91 -0
- package/engine/commands/memory.cjs +21 -0
- package/engine/commands/multimodal.cjs +91 -0
- package/engine/commands/native.cjs +34 -0
- package/engine/commands/netadmin.cjs +31 -0
- package/engine/commands/oberon.cjs +70 -0
- package/engine/commands/ontology.cjs +24 -0
- package/engine/commands/open.cjs +48 -0
- package/engine/commands/plugin.cjs +101 -0
- package/engine/commands/project.cjs +47 -0
- package/engine/commands/research.cjs +36 -0
- package/engine/commands/route.cjs +37 -0
- package/engine/commands/run.cjs +149 -0
- package/engine/commands/search.cjs +55 -0
- package/engine/commands/setup.cjs +45 -0
- package/engine/commands/storm.cjs +75 -0
- package/engine/commands/swarm.cjs +75 -0
- package/engine/commands/telegram.cjs +32 -0
- package/engine/commands/uninstall.cjs +68 -0
- package/engine/commands/update.cjs +54 -0
- package/engine/commands/upload.cjs +18 -0
- package/engine/commands/usage.cjs +35 -0
- package/engine/commands/variant.cjs +25 -0
- package/engine/commands/version.cjs +9 -0
- package/engine/commands/whoami.cjs +38 -0
- package/engine/commands/workforce.cjs +103 -0
- package/engine/core/db.cjs +160 -0
- package/engine/core/paths.cjs +35 -0
- package/engine/experience/build.cjs +181 -0
- package/engine/experience/intents.cjs +492 -0
- package/engine/experience/runtime.cjs +242 -0
- package/engine/experience/variant.cjs +196 -0
- package/engine/firms/orchestrate.cjs +333 -0
- package/engine/hephaestus/runtime.cjs +697 -0
- package/engine/hub/install.cjs +872 -0
- package/engine/hub/plugins.cjs +213 -0
- package/engine/mcp/consent.cjs +289 -0
- package/engine/mcp/contract.cjs +202 -0
- package/engine/mcp/index.cjs +43 -0
- package/engine/mcp/inventory.cjs +322 -0
- package/engine/mcp/plan.cjs +286 -0
- package/engine/mcp/probe.cjs +151 -0
- package/engine/memory-cli/curate.cjs +163 -0
- package/engine/oberon/common.cjs +69 -0
- package/engine/oberon/manifest.cjs +164 -0
- package/engine/oberon/outputs.cjs +70 -0
- package/engine/oberon/render.cjs +164 -0
- package/engine/project/career-graph.cjs +249 -0
- package/engine/project/credentials.cjs +262 -0
- package/engine/project/env-file.cjs +46 -0
- package/engine/project/index.cjs +27 -0
- package/engine/project/memory-context.cjs +453 -0
- package/engine/project/ontology.cjs +467 -0
- package/engine/project/paths.cjs +39 -0
- package/engine/project/seed.cjs +200 -0
- package/engine/project/state.cjs +403 -0
- package/engine/project/super-ontology-seed.json +3288 -0
- package/engine/runtimes/detect.cjs +54 -0
- package/engine/runtimes/overrides.cjs +139 -0
- package/engine/runtimes/resolve.cjs +64 -0
- package/engine/sessions/apply-fences.cjs +188 -0
- package/engine/sessions/fences.cjs +362 -0
- package/engine/sessions/orchestrator.cjs +170 -0
- package/engine/sessions/prompt.cjs +212 -0
- package/engine/sessions/session.cjs +245 -0
- package/engine/sessions/sink.cjs +54 -0
- package/engine/sessions/store.cjs +79 -0
- package/engine/storm/deps.cjs +88 -0
- package/engine/storm/storm.cjs +218 -0
- package/engine/storm/swarm.cjs +422 -0
- package/engine/ui/palette.cjs +105 -0
- package/engine/ui/renderer.cjs +85 -0
- package/engine/ui/repl.cjs +444 -0
- package/engine/workforce/capture.cjs +701 -0
- package/engine/workforce/deps.cjs +472 -0
- package/package.json +3 -7
- package/engine/agentlas-experience-mcp.cjs +0 -1709
- package/engine/agentlas-parity.cjs +0 -1499
- package/engine/agentlas-repl.cjs +0 -1780
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,97 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.1 — 2026-07-27
|
|
4
|
+
|
|
5
|
+
- Fixes the two gates that failed on the v1.0.0 tag (never published):
|
|
6
|
+
project bootstrap no longer applies the context-map minimum-version gate
|
|
7
|
+
when probing Core capability — the real probe is
|
|
8
|
+
`agentlas_cloud/project_bootstrap.py`, and a source checkout without
|
|
9
|
+
version metadata (exactly what CI pins) was being filtered out, skipping
|
|
10
|
+
bootstrap entirely; and the smoke gate now asserts that `doctor` produces
|
|
11
|
+
a report rather than that the machine happens to have an agent CLI
|
|
12
|
+
installed (`doctor` still exits non-zero when it finds problems, which is
|
|
13
|
+
what scripts want).
|
|
14
|
+
|
|
15
|
+
## 1.0.0 — 2026-07-27 (tagged, not published)
|
|
16
|
+
|
|
17
|
+
- The 13,347-line v1 engine monolith is replaced by a modular v2 engine
|
|
18
|
+
(one concern per module: core/ runtimes/ agents/ sessions/ ui/ commands/
|
|
19
|
+
cloud/ hub/ mcp/ automation/ workforce/ storm/ experience/ project/
|
|
20
|
+
hephaestus/ oberon/ cloud-assets/). The full v1 command surface (56
|
|
21
|
+
commands, plus `uninstall` and `billing`) is live; nothing is stubbed and
|
|
22
|
+
there are no facades. The complete v1 engine remains recoverable at git
|
|
23
|
+
tag `legacy-v1-engine-snapshot`.
|
|
24
|
+
- Multi-session subagent orchestration (Orca) is first-class: every run —
|
|
25
|
+
foreground chat, one-shot, storm/swarm worker, automation run — is a
|
|
26
|
+
session owned by one orchestrator. Subagent sessions persist as Desktop
|
|
27
|
+
division sub-chats (`kind='division'` + `parent_chat_id`). In the REPL:
|
|
28
|
+
`/spawn /sessions /tree /s /steer /kill /rm /broadcast`; typing during a
|
|
29
|
+
running turn queues steering on the resume session; ctrl-c interrupts the
|
|
30
|
+
turn. Background turn completions surface as one-line notices.
|
|
31
|
+
- Cross-product contracts preserved and gated: shared Desktop SQLite schema
|
|
32
|
+
(user_version=45) and userData; runtime-doctor 3-product parity
|
|
33
|
+
(sync-runtime-doctor.sh PASS); experience taxonomy checksum;
|
|
34
|
+
desktop-terminal ontology loadout v2; portable Experience Bundle v1;
|
|
35
|
+
workforce ontology digests; mcp-child-launch env boundary; pinned
|
|
36
|
+
Agentlas OS Core harness. The known dev-only Hephaestus root defect and
|
|
37
|
+
the terminal-owned Desktop .app self-updater were removed (the latter
|
|
38
|
+
belongs to Desktop; `agentlas update` is npm-channel only).
|
|
39
|
+
- Product-model parity with the current Desktop, not with v1: the Hub is
|
|
40
|
+
borrow-first, so `install` refuses call-only listings (bookmark or
|
|
41
|
+
`agentlas call`), instruction-less packages, trust grades below A/B, and
|
|
42
|
+
web-only agents, with Desktop's exact wording; `uninstall` mirrors
|
|
43
|
+
Desktop's firm-membership guard. Hub plugins register stdio servers
|
|
44
|
+
disabled and needing approval (the table is shared with Desktop, so an
|
|
45
|
+
auto-enabled row would have bypassed Desktop's own gate); remote MCP
|
|
46
|
+
endpoints must be https and a real `/mcp`|`/sse` path. Automation runs
|
|
47
|
+
execute in Desktop-identical hidden division sessions and skip
|
|
48
|
+
hub/browser/computer-use rows without consuming the lease or the
|
|
49
|
+
scheduled occurrence.
|
|
50
|
+
- New-user protection: an unknown one-word argument is refused with an
|
|
51
|
+
edit-distance suggestion instead of being spent as a model call (a typo
|
|
52
|
+
used to start an agent and run shell); Desktop-only screen names
|
|
53
|
+
(site, trex, prompts, dashboard, marketplace, settings…) stop honestly;
|
|
54
|
+
invalid `--permission` values are refused before any model call instead
|
|
55
|
+
of being silently downgraded to read; `no_runtime` now prints the exact
|
|
56
|
+
CLI install commands.
|
|
57
|
+
- Release validation pins Agentlas Core v1.1.67 commit
|
|
58
|
+
`04258b7541f604479dc04279146a506e363ad85e` (carried from 0.9.10).
|
|
59
|
+
- smoke gate: 54 checks (surface, no-arg guards, fresh bootstrap, 30+
|
|
60
|
+
restored/new contract tests, runtime-doctor 3-product parity) — all
|
|
61
|
+
green. Verified end to end against a packed tarball installed with
|
|
62
|
+
`npm i -g` into a clean prefix and a pristine userData.
|
|
63
|
+
|
|
64
|
+
## 0.9.10 — 2026-07-26
|
|
65
|
+
|
|
66
|
+
- `agentlas context refresh|refs|slice|impact|verify` now invokes the installed
|
|
67
|
+
Agentlas Core module directly. Context commands no longer fall through the
|
|
68
|
+
natural-language Hephaestus command route.
|
|
69
|
+
- Context Slice generation refreshes the project fingerprint before each
|
|
70
|
+
concrete Terminal task, so a long-running Terminal session sees newly added
|
|
71
|
+
or changed CommonJS, ESM, TypeScript, and JavaScript files.
|
|
72
|
+
- Release validation pins Agentlas Core v1.1.67 commit
|
|
73
|
+
`04258b7541f604479dc04279146a506e363ad85e`, including Code Map v2 backlinks,
|
|
74
|
+
functional Sitemap dependencies, and fail-closed impact verification.
|
|
75
|
+
|
|
76
|
+
- Concurrent Terminal work against the Desktop-shared SQLite database now uses
|
|
77
|
+
one bounded lock policy. Every Terminal write transaction acquires writer
|
|
78
|
+
authority before reading mutable shared state, preventing deferred
|
|
79
|
+
read-to-write upgrades from failing with `database is locked` after a
|
|
80
|
+
provider already completed the user's work.
|
|
81
|
+
- One-shot runs now honor the saved read/write boundary across run, firm,
|
|
82
|
+
Stormbreaker, swarm, build, Workforce, and context surfaces; an explicit
|
|
83
|
+
`--permission` remains a session-only override.
|
|
84
|
+
- `agentlas context` invokes the compatible Agentlas Core context-map
|
|
85
|
+
capability directly and fails closed when it is unavailable. Older
|
|
86
|
+
Hephaestus launchers can no longer reinterpret `context verify` as a Hub
|
|
87
|
+
search. When multiple local Core installations coexist, Terminal now checks
|
|
88
|
+
bounded version metadata and skips an earlier runtime that cannot satisfy the
|
|
89
|
+
v1.1.66 context contract.
|
|
90
|
+
- Scheduled automation output now renders only the model's final answer instead
|
|
91
|
+
of leaking Claude or Gemini stream-protocol JSON. The slash palette also
|
|
92
|
+
respects a real 40-column terminal while preserving arrow-key selection.
|
|
93
|
+
- Top-level runtime failures follow the saved Terminal language, including
|
|
94
|
+
unknown runtime names and the no-runtime-available recovery message.
|
|
3
95
|
## 0.9.9 — 2026-07-26
|
|
4
96
|
|
|
5
97
|
- In an explicitly initialized project, ordinary runs, firms, Stormbreaker, and
|