agentlas 1.0.4 → 1.0.5
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 +8 -0
- package/engine/agentlas-workforce.cjs +6 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.5 — 2026-07-27
|
|
4
|
+
|
|
5
|
+
- A verifier that reports "no issues" as `[""]` instead of `[]` no longer
|
|
6
|
+
fails the run on a contract error. An empty string is a mis-spelling of
|
|
7
|
+
absence, not content, so it is normalized away before the issue contract
|
|
8
|
+
is checked — a passing verification stopped the last step of a real run
|
|
9
|
+
this way.
|
|
10
|
+
|
|
3
11
|
## 1.0.4 — 2026-07-27
|
|
4
12
|
|
|
5
13
|
**The hub boundary stops guessing.** Owner decision after live runs: rules
|
|
@@ -1487,7 +1487,12 @@ function validateVerifierResult(value) {
|
|
|
1487
1487
|
if (!["passed", "failed"].includes(check.status)) fail("verifier_invalid", "verifier check status is invalid");
|
|
1488
1488
|
assertString(check.evidence, "verifier.evidence", 2_000);
|
|
1489
1489
|
}
|
|
1490
|
-
|
|
1490
|
+
// 모델은 "지적 없음"을 []가 아니라 [""]로 쓰기도 한다(합격 판정 실측). 빈 문자열은
|
|
1491
|
+
// 내용이 아니라 부재의 오표기이므로 정규화해서 버린다 — 남은 항목만 계약 검사.
|
|
1492
|
+
const issues = assertArray(result.issues, "verifier.issues", 64)
|
|
1493
|
+
.filter((item) => !(typeof item === "string" && !item.trim()));
|
|
1494
|
+
issues.forEach((item, index) => assertString(item, `verifier.issues[${index}]`, 2_000));
|
|
1495
|
+
result.issues = issues;
|
|
1491
1496
|
return result;
|
|
1492
1497
|
}
|
|
1493
1498
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentlas",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
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"
|