@agentproto/runtime 0.8.0 → 1.0.0
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/dist/index.d.ts +1038 -95
- package/dist/index.mjs +2014 -338
- package/dist/index.mjs.map +1 -1
- package/dist/resume-strategies.mjs +42 -13
- package/dist/resume-strategies.mjs.map +1 -1
- package/package.json +14 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentproto/runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "@agentproto/runtime — long-running gateway that turns an agentproto workspace into a live runtime. Composes @agentproto/mcp-server (CRUD verbs) with HTTP transport, HEARTBEAT.md autonomy loop, and append-only conversation persistence. Drop a workspace dir, point your MCP client at it, and the agent ticks on its own.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agentproto",
|
|
@@ -91,25 +91,27 @@
|
|
|
91
91
|
"gray-matter": "^4.0.3",
|
|
92
92
|
"ws": "^8.18.0",
|
|
93
93
|
"zod": "^4.4.3",
|
|
94
|
-
"@agentproto/acp": "0.
|
|
94
|
+
"@agentproto/acp": "0.6.0",
|
|
95
|
+
"@agentproto/auth": "0.1.1",
|
|
96
|
+
"@agentproto/driver-agent-cli": "2.0.0",
|
|
95
97
|
"@agentproto/workflow": "0.1.0",
|
|
96
98
|
"@agentproto/workflow-loader": "0.1.0",
|
|
97
|
-
"@agentproto/workflow-runtime": "0.
|
|
99
|
+
"@agentproto/workflow-runtime": "0.5.0",
|
|
98
100
|
"@agentproto/provider-kit": "0.3.0",
|
|
99
|
-
"@agentproto/provider-presets": "0.4.
|
|
100
|
-
"@agentproto/eval-reporters": "0.2.
|
|
101
|
+
"@agentproto/provider-presets": "0.4.1",
|
|
102
|
+
"@agentproto/eval-reporters": "0.2.3",
|
|
101
103
|
"@agentproto/agent": "0.2.1",
|
|
102
104
|
"@agentproto/manifest": "0.2.1",
|
|
103
|
-
"@agentproto/
|
|
104
|
-
"@agentproto/
|
|
105
|
+
"@agentproto/mcp-server": "0.2.3",
|
|
106
|
+
"@agentproto/model-catalog": "0.6.0",
|
|
107
|
+
"@agentproto/providers-store": "0.3.1",
|
|
105
108
|
"@agentproto/redaction": "0.2.1",
|
|
106
|
-
"@agentproto/sandbox": "0.1.
|
|
107
|
-
"@agentproto/providers-store": "0.3.0",
|
|
109
|
+
"@agentproto/sandbox": "0.1.4",
|
|
108
110
|
"@agentproto/secrets": "0.2.0",
|
|
109
|
-
"@agentproto/telemetry-langfuse": "0.2.
|
|
111
|
+
"@agentproto/telemetry-langfuse": "0.2.2"
|
|
110
112
|
},
|
|
111
113
|
"optionalDependencies": {
|
|
112
|
-
"@agentproto/sandbox-e2b": "0.
|
|
114
|
+
"@agentproto/sandbox-e2b": "0.2.0"
|
|
113
115
|
},
|
|
114
116
|
"devDependencies": {
|
|
115
117
|
"@types/node": "^25.6.2",
|
|
@@ -118,8 +120,8 @@
|
|
|
118
120
|
"typescript": "^5.9.3",
|
|
119
121
|
"vitest": "^3.2.4",
|
|
120
122
|
"@agentproto/driver": "0.1.3",
|
|
121
|
-
"@agentproto/tool": "0.2.1",
|
|
122
123
|
"@agentproto/rendezvous": "0.2.0",
|
|
124
|
+
"@agentproto/tool": "0.2.1",
|
|
123
125
|
"@agentproto/tooling": "0.1.0-alpha.0"
|
|
124
126
|
},
|
|
125
127
|
"scripts": {
|