Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ jobs:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: tangle-network/agent-eval
ref: 7faa75dda9d1459df3b0a9eb61629aa7cbdd5084 # v0.134.2
ref: 8e4d6c95ca5beb6fc62a7c3c52c9fb581b928795 # v0.135.1
path: .cohort/agent-eval
persist-credentials: false

- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: tangle-network/agent-knowledge
ref: 115f940faeea2cfc7c59175a4a129b8f61807d27 # v6.1.8
ref: 502ef4954c0dc85eb0f629bfb6c062b3508977ef # v6.1.10
path: .cohort/agent-knowledge
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,15 +140,15 @@ jobs:
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: tangle-network/agent-eval
ref: 7faa75dda9d1459df3b0a9eb61629aa7cbdd5084 # v0.134.2
ref: 8e4d6c95ca5beb6fc62a7c3c52c9fb581b928795 # v0.135.1
path: .cohort/agent-eval
persist-credentials: false

- name: Check out exact Knowledge release
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
repository: tangle-network/agent-knowledge
ref: 115f940faeea2cfc7c59175a4a129b8f61807d27 # v6.1.8
ref: 502ef4954c0dc85eb0f629bfb6c062b3508977ef # v6.1.10
path: .cohort/agent-knowledge
persist-credentials: false

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.109.0

- Rename the public `./loops` entrypoint to `./kernel` and remove the old entrypoint.
- Export the kernel's main execution types from the package root for discovery without adding root runtime weight.
- Align Runtime with Eval 0.135.1 and Knowledge 6.1.10.

## 0.108.1

- Align Runtime with Eval 0.134.2 and Knowledge 6.1.8 so every knowledge and runtime evaluation uses complete multishot judge cost accounting.
Expand Down
5 changes: 5 additions & 0 deletions bench/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.4.8

- Consume Runtime 0.109.0 through the canonical `./kernel` entrypoint.
- Align Bench with Eval 0.135.1, Interface 0.36.0, Knowledge 6.1.10, Materialize 0.9.2, and Sandbox 0.15.2.

## 0.4.7

- Consume Runtime 0.108.1 with Eval 0.134.2, Interface 0.36.0, Knowledge 6.1.8, Materialize 0.9.2, and Sandbox 0.15.2.
Expand Down
2 changes: 1 addition & 1 deletion bench/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tangle-network/agent-bench",
"version": "0.4.7",
"version": "0.4.8",
"type": "module",
"description": "Benchmark adapters and execution for agent-runtime across coding, tool-use, RAG, memory, browser, and terminal tasks.",
"repository": {
Expand Down
8 changes: 4 additions & 4 deletions bench/scripts/wait-for-published-dependencies.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ test('collects required published Tangle dependencies from a packed manifest', (
const dependencies = collectRequiredTangleDependencies({
name: '@tangle-network/agent-bench',
dependencies: {
'@tangle-network/agent-runtime': '0.108.1',
'@tangle-network/agent-eval': '0.134.2',
'@tangle-network/agent-runtime': '0.109.0',
'@tangle-network/agent-eval': '0.135.1',
undici: '^7.0.0',
},
peerDependencies: {
Expand All @@ -27,9 +27,9 @@ test('collects required published Tangle dependencies from a packed manifest', (
})

assert.deepEqual(dependencies, [
{ name: '@tangle-network/agent-eval', spec: '0.134.2' },
{ name: '@tangle-network/agent-eval', spec: '0.135.1' },
{ name: '@tangle-network/agent-interface', spec: '>=0.36.0 <0.37.0' },
{ name: '@tangle-network/agent-runtime', spec: '0.108.1' },
{ name: '@tangle-network/agent-runtime', spec: '0.109.0' },
])
})

Expand Down
4 changes: 2 additions & 2 deletions bench/src/sandbox-run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import {
type OutputAdapter,
routerChatWithUsage,
} from '@tangle-network/agent-runtime/kernel'
// `BackendType` is the sandbox SDK's harness union its canonical home. agent-runtime consumes
// it from there too; it is not re-exported from the loops barrel.
// `BackendType` is the sandbox SDK's harness union and its canonical home. agent-runtime consumes
// it from there too; it is not re-exported from the kernel barrel.
import type { BackendType } from '@tangle-network/sandbox'

/** Parse the agent's final answer from the event stream (harness-agnostic).
Expand Down
2 changes: 1 addition & 1 deletion docs/api/primitive-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Primitive catalog — the never-stale anti-reinvention inventory

> **GENERATED** from `@tangle-network/agent-runtime@0.108.1` and `@tangle-network/agent-eval@0.134.2` by `scripts/gen-primitive-catalog.mjs`. Do NOT hand-edit — run `pnpm run docs:api`. This is the mechanical companion to the JUDGMENT in `canonical-api.md` (§2 decision table + §1.5 AgentProfile law): that doc says WHICH primitive to reach for and what NOT to build; this catalog proves WHAT exists. Per-symbol signatures + `file:line` live in the per-module pages under `docs/api/`.
> **GENERATED** from `@tangle-network/agent-runtime@0.109.0` and `@tangle-network/agent-eval@0.135.1` by `scripts/gen-primitive-catalog.mjs`. Do NOT hand-edit — run `pnpm run docs:api`. This is the mechanical companion to the JUDGMENT in `canonical-api.md` (§2 decision table + §1.5 AgentProfile law): that doc says WHICH primitive to reach for and what NOT to build; this catalog proves WHAT exists. Per-symbol signatures + `file:line` live in the per-module pages under `docs/api/`.

## 1. agent-runtime — own public surface

Expand Down
4 changes: 2 additions & 2 deletions docs/canonical-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
Generated signatures and the complete export list live in docs/api/.
Run pnpm docs:freshness after editing this file. -->

> **Version 0.108.1.**
> **Version 0.109.0.**
> [`docs/api/primitive-catalog.md`](./api/primitive-catalog.md) lists every export and import path.
> `agent-eval` must satisfy `>=0.134.2 <0.135.0`.
> `agent-eval` must satisfy `>=0.135.1 <0.136.0`.
> `sandbox` must satisfy `>=0.15.0 <0.16.0`.
> Portable profile and tool-part types come from `@tangle-network/agent-interface` `>=0.36.0 <0.37.0`.
>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tangle-network/agent-runtime",
"version": "0.108.1",
"version": "0.109.0",
"description": "Shared task-lifecycle skeleton for agents: a recursive loop kernel for chat turns, one-shot tasks, and multi-attempt loops, with trace capture and eval-gated self-improvement. Domain behavior lives in adapters; scoring and ship-gates in @tangle-network/agent-eval.",
"homepage": "https://github.com/tangle-network/agent-runtime#readme",
"repository": {
Expand Down Expand Up @@ -151,7 +151,7 @@
"license": "MIT",
"packageManager": "pnpm@11.17.0",
"peerDependencies": {
"@tangle-network/agent-eval": ">=0.134.2 <0.135.0",
"@tangle-network/agent-eval": ">=0.135.1 <0.136.0",
"@tangle-network/agent-interface": ">=0.36.0 <0.37.0",
"@tangle-network/sandbox": ">=0.15.0 <0.16.0",
"playwright": "^1.40.0"
Expand Down
30 changes: 15 additions & 15 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ allowBuilds:
catalog:
'@arethetypeswrong/cli': 0.18.5
'@types/node': 26.1.1
'@tangle-network/agent-eval': 0.134.2
'@tangle-network/agent-eval': 0.135.1
'@tangle-network/agent-interface': 0.36.0
'@tangle-network/agent-knowledge': 6.1.8
'@tangle-network/agent-knowledge': 6.1.10
'@tangle-network/agent-profile-materialize': 0.9.2
'@tangle-network/sandbox': 0.15.2
publint: 0.3.22
Expand Down
Loading