From a62fd841d6933aa907eebc8232eed4fbf9e35d89 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2026 18:05:29 +0000 Subject: [PATCH] Version Packages --- .changeset/agent-author-lineage.md | 13 ------------- packages/agent-interface/CHANGELOG.md | 14 ++++++++++++++ packages/agent-interface/package.json | 2 +- 3 files changed, 15 insertions(+), 14 deletions(-) delete mode 100644 .changeset/agent-author-lineage.md diff --git a/.changeset/agent-author-lineage.md b/.changeset/agent-author-lineage.md deleted file mode 100644 index 72bef81f..00000000 --- a/.changeset/agent-author-lineage.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -"@tangle-network/agent-interface": minor ---- - -feat(agent-interface): `agentCandidateLineageSchema` accepts a frontier-authored candidate - -`AgentCandidateLineage.source` gains `frontier-author`: a profile one agent wrote for another. That is a shipped capability — a supervising agent authors a child's full `AgentProfile` from inside a run and may promote it to a sub-supervisor — and no existing member described it. `optimizer` was the closest and was closed to this caller by its own refinement, which mandates a `developmentSplitDigest`; a run-time author has no held-out split, so the field could only be satisfied by fabricating a digest or by declaring `human`. - -The member is `frontier-author`, the word `AgentProfileDiff.source.kind` already uses for the same actor, so the two enums name one thing with one word rather than two. - -`generatedCandidateSources` and `isGeneratedCandidateSource` are new exports and the single owner of "this candidate was produced from a parent". Three call sites — the lineage refinement and both experiment schemas — branched on `optimizer || compound` independently, so a new generated source was exempt from the "name your baseline" rule in two of them; they now read one list. The development split stays required by `optimizer` and `compound` only. - -Additive: every lineage that parsed before parses unchanged. diff --git a/packages/agent-interface/CHANGELOG.md b/packages/agent-interface/CHANGELOG.md index 9ecd8ecc..f606c399 100644 --- a/packages/agent-interface/CHANGELOG.md +++ b/packages/agent-interface/CHANGELOG.md @@ -1,5 +1,19 @@ # @tangle-network/agent-interface +## 2.6.0 + +### Minor Changes + +- 8491351: feat(agent-interface): `agentCandidateLineageSchema` accepts a frontier-authored candidate + + `AgentCandidateLineage.source` gains `frontier-author`: a profile one agent wrote for another. That is a shipped capability — a supervising agent authors a child's full `AgentProfile` from inside a run and may promote it to a sub-supervisor — and no existing member described it. `optimizer` was the closest and was closed to this caller by its own refinement, which mandates a `developmentSplitDigest`; a run-time author has no held-out split, so the field could only be satisfied by fabricating a digest or by declaring `human`. + + The member is `frontier-author`, the word `AgentProfileDiff.source.kind` already uses for the same actor, so the two enums name one thing with one word rather than two. + + `generatedCandidateSources` and `isGeneratedCandidateSource` are new exports and the single owner of "this candidate was produced from a parent". Three call sites — the lineage refinement and both experiment schemas — branched on `optimizer || compound` independently, so a new generated source was exempt from the "name your baseline" rule in two of them; they now read one list. The development split stays required by `optimizer` and `compound` only. + + Additive: every lineage that parsed before parses unchanged. + ## 2.5.0 ### Minor Changes diff --git a/packages/agent-interface/package.json b/packages/agent-interface/package.json index 63f0114d..bc096edc 100644 --- a/packages/agent-interface/package.json +++ b/packages/agent-interface/package.json @@ -1,6 +1,6 @@ { "name": "@tangle-network/agent-interface", - "version": "2.5.0", + "version": "2.6.0", "type": "module", "sideEffects": false, "license": "MIT",