diff --git a/package.json b/package.json index 38342e7..844eb4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@tangle-network/agent-runtime", - "version": "0.70.0", + "version": "0.70.1", "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": { @@ -44,6 +44,11 @@ "import": "./dist/profiles.js", "default": "./dist/profiles.js" }, + "./platform": { + "types": "./dist/platform.d.ts", + "import": "./dist/platform.js", + "default": "./dist/platform.js" + }, "./mcp": { "types": "./dist/mcp/index.d.ts", "import": "./dist/mcp/index.js", diff --git a/tsup.config.ts b/tsup.config.ts index 1673e27..8cad7d8 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -8,6 +8,7 @@ export default defineConfig({ loops: 'src/runtime/index.ts', // the loop kernel + recursive atom surface (the runtime/ directory) 'analyst-loop': 'src/analyst-loop/index.ts', profiles: 'src/profiles/index.ts', + platform: 'src/platform/index.ts', 'mcp/index': 'src/mcp/index.ts', 'mcp/bin': 'src/mcp/bin.ts', 'loop-runner-bin': 'src/loop-runner-bin.ts',