agentlas 1.0.16 → 1.0.17
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 +9 -0
- package/engine/agentlas-core-harness.cjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.17 — 2026-07-31
|
|
4
|
+
|
|
5
|
+
- **Terminal requires the verification-aware Context Map engine.** Context
|
|
6
|
+
commands now select Agentlas OS 1.1.86 or newer, whose impact graph connects
|
|
7
|
+
code changes to tests, test commands, CI workflows, and product-version
|
|
8
|
+
contracts, including local test files intentionally excluded from Git.
|
|
9
|
+
- A stale Core can no longer satisfy the Terminal context capability merely by
|
|
10
|
+
exposing the old module path; the version gate fails closed before execution.
|
|
11
|
+
|
|
3
12
|
## 1.0.16 — 2026-07-30
|
|
4
13
|
|
|
5
14
|
- **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.
|
|
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"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentlas",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
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"
|