@tangle-network/agent-eval 0.115.0 → 0.115.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 +10 -0
- package/dist/benchmarks/index.js +1 -1
- package/dist/campaign/index.d.ts +1 -0
- package/dist/campaign/index.js +1 -1
- package/dist/{chunk-MNR6ZW4P.js → chunk-KDCMEZDI.js} +2 -2
- package/dist/chunk-KDCMEZDI.js.map +1 -0
- package/dist/index.js +1 -1
- package/dist/openapi.json +1 -1
- package/package.json +1 -1
- package/dist/chunk-MNR6ZW4P.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to `@tangle-network/agent-eval` and its sibling `agent-eval-
|
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
+
## [0.115.1] — 2026-07-11 — fair cross-surface baseline selection
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- `analyzeCrossSurfaceInteractions()` now builds the naive stack only from single-surface candidates that satisfy individual eligibility.
|
|
12
|
+
Complete, non-regressing neutral constituents remain available exclusively to interaction-aware search, preserving pure-synergy discovery without weakening the naive comparison.
|
|
13
|
+
|
|
14
|
+
This patch corrects selection semantics without changing the report schema.
|
|
15
|
+
Consumers comparing naive and interaction-aware compositions should update.
|
|
16
|
+
|
|
7
17
|
## [0.115.0] — 2026-07-11 — auditable cross-surface improvement search
|
|
8
18
|
|
|
9
19
|
### Added
|
package/dist/benchmarks/index.js
CHANGED
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
runBenchmarkAdapter,
|
|
18
18
|
summarizeBenchmarkCampaign
|
|
19
19
|
} from "../chunk-3LXTCTWL.js";
|
|
20
|
-
import "../chunk-
|
|
20
|
+
import "../chunk-KDCMEZDI.js";
|
|
21
21
|
import "../chunk-N6MTC3GK.js";
|
|
22
22
|
import "../chunk-VI2UW6B6.js";
|
|
23
23
|
import "../chunk-FAOEFFRT.js";
|
package/dist/campaign/index.d.ts
CHANGED
|
@@ -572,6 +572,7 @@ interface CrossSurfaceBestSingleSelection {
|
|
|
572
572
|
ranking: CrossSurfaceRankedSingle[];
|
|
573
573
|
}
|
|
574
574
|
interface CrossSurfaceNaiveStackSelection {
|
|
575
|
+
/** Every individually eligible single, stacked in canonical component order. */
|
|
575
576
|
candidateId: string;
|
|
576
577
|
componentIds: string[];
|
|
577
578
|
}
|
package/dist/campaign/index.js
CHANGED
|
@@ -1769,7 +1769,7 @@ function selectCandidates(context, summaryById, eligibleSingles, interactionRead
|
|
|
1769
1769
|
componentId: best.candidate.componentIds[0],
|
|
1770
1770
|
ranking
|
|
1771
1771
|
} : null;
|
|
1772
|
-
const naiveStack = selectNaiveStack(context,
|
|
1772
|
+
const naiveStack = selectNaiveStack(context, eligibleSingles);
|
|
1773
1773
|
const interactionAware = selectInteractionAware(
|
|
1774
1774
|
context,
|
|
1775
1775
|
summaryById,
|
|
@@ -7316,4 +7316,4 @@ export {
|
|
|
7316
7316
|
verifyCodeSurface,
|
|
7317
7317
|
resolveWorktreePath
|
|
7318
7318
|
};
|
|
7319
|
-
//# sourceMappingURL=chunk-
|
|
7319
|
+
//# sourceMappingURL=chunk-KDCMEZDI.js.map
|