@holmes-lab/holmes-kit 0.25.0 → 0.25.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 +21 -0
- package/dist/.build-id +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
<!-- @implements A-SPEC-209 -->
|
|
8
|
+
## [0.25.1] - 2026-09-19
|
|
9
|
+
|
|
10
|
+
Test-only. No product behaviour changed; `dist/` behaves exactly as 0.25.0.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **The adopter outcome space is derived from the contract, not from the last observation**
|
|
14
|
+
(A-SPEC-638). A race in which adopters compete with initializers AND with each other sits on two
|
|
15
|
+
axes at once — *is there an identity yet* (`missing-workspace`, `unregistered`) and *is another
|
|
16
|
+
adopter winning* (`active`, `store-busy`, `entity-state-present`, `recovery-required`) — and the
|
|
17
|
+
mixed case had only ever enumerated the first. On Linux it met `store-busy`; widened by one, it
|
|
18
|
+
met `entity-state-present` on the very next run. Every one of those refusals is the product
|
|
19
|
+
behaving correctly and safely: `store-busy` is raised at lock acquisition before any mutation and
|
|
20
|
+
the staging directory is removed in the same catch, and the other two are planning-time refusals
|
|
21
|
+
that never reach a write. The two axes are now named once and shared by both halves of the case,
|
|
22
|
+
so they cannot drift again, and the assertion that a refused adopter left nothing behind covers
|
|
23
|
+
the whole axis rather than the one outcome that happened to be seen.
|
|
24
|
+
|
|
25
|
+
Measured: Linux 3-in-5 failing before the first repair, 1-in-5 after it, **20 in 20 passing**
|
|
26
|
+
after deriving the set from the contract. The CI matrix had been red on 38 of 45 rows since
|
|
27
|
+
2026-09-17 — a matrix that is always red reports nothing, which is the cost this closes.
|
|
28
|
+
|
|
8
29
|
## [0.25.0] - 2026-09-19
|
|
9
30
|
|
|
10
31
|
The semantic layer was dead on this repository and nothing said so. It is alive, it keeps itself
|
package/dist/.build-id
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
6277a6d6-mu7vpg1b
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"//": "@implements A-SPEC-209",
|
|
3
3
|
"name": "@holmes-lab/holmes-kit",
|
|
4
|
-
"version": "0.25.
|
|
4
|
+
"version": "0.25.1",
|
|
5
5
|
"description": "Holmes-Kit — deterministic Agentic Software Engineering (ASE) harness with causal traceability (spec chain + D-CPG + RTM + phase guardrail)",
|
|
6
6
|
"main": "dist/holmes/mcp/server.js",
|
|
7
7
|
"types": "dist/holmes/mcp/server.d.ts",
|