@tangle-network/agent-app 0.16.1 → 0.19.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/{mcp-eZCmkgCF.d.ts → auth-BlS9GWfL.d.ts} +1 -51
- package/dist/chunk-KOG473C4.js +132 -0
- package/dist/chunk-KOG473C4.js.map +1 -0
- package/dist/design-canvas/index.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +100 -100
- package/dist/mcp-BShTlESm.d.ts +54 -0
- package/dist/model-resolution/index.d.ts +83 -0
- package/dist/model-resolution/index.js +123 -0
- package/dist/model-resolution/index.js.map +1 -0
- package/dist/platform/index.d.ts +71 -1
- package/dist/platform/index.js +55 -0
- package/dist/platform/index.js.map +1 -1
- package/dist/profile/index.d.ts +145 -0
- package/dist/profile/index.js +63 -0
- package/dist/profile/index.js.map +1 -0
- package/dist/prompt/index.d.ts +77 -0
- package/dist/prompt/index.js +22 -0
- package/dist/prompt/index.js.map +1 -0
- package/dist/run/index.d.ts +64 -0
- package/dist/run/index.js +30 -0
- package/dist/run/index.js.map +1 -0
- package/dist/runtime/index.d.ts +2 -1
- package/dist/sandbox/index.d.ts +146 -0
- package/dist/sandbox/index.js +304 -0
- package/dist/sandbox/index.js.map +1 -0
- package/dist/sequences/index.d.ts +2 -1
- package/dist/skills/index.d.ts +136 -0
- package/dist/skills/index.js +15 -0
- package/dist/skills/index.js.map +1 -0
- package/dist/tools/index.d.ts +3 -2
- package/dist/web-react/index.d.ts +37 -1
- package/dist/web-react/index.js +199 -122
- package/dist/web-react/index.js.map +1 -1
- package/package.json +37 -2
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tangle-network/agent-app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"packageManager": "pnpm@10.33.4",
|
|
5
|
-
"description": "Application-shell framework for Tangle agent products: a bounded tool loop, the structured agent
|
|
5
|
+
"description": "Application-shell framework for Tangle agent products: a bounded tool loop, the structured agent→app tool side channel, integration-hub client, per-workspace billing, and crypto — composed over the Tangle agent substrate through typed seams.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"tangle",
|
|
8
8
|
"ai-agent",
|
|
@@ -77,6 +77,36 @@
|
|
|
77
77
|
"import": "./dist/knowledge/index.js",
|
|
78
78
|
"default": "./dist/knowledge/index.js"
|
|
79
79
|
},
|
|
80
|
+
"./skills": {
|
|
81
|
+
"types": "./dist/skills/index.d.ts",
|
|
82
|
+
"import": "./dist/skills/index.js",
|
|
83
|
+
"default": "./dist/skills/index.js"
|
|
84
|
+
},
|
|
85
|
+
"./profile": {
|
|
86
|
+
"types": "./dist/profile/index.d.ts",
|
|
87
|
+
"import": "./dist/profile/index.js",
|
|
88
|
+
"default": "./dist/profile/index.js"
|
|
89
|
+
},
|
|
90
|
+
"./prompt": {
|
|
91
|
+
"types": "./dist/prompt/index.d.ts",
|
|
92
|
+
"import": "./dist/prompt/index.js",
|
|
93
|
+
"default": "./dist/prompt/index.js"
|
|
94
|
+
},
|
|
95
|
+
"./model-resolution": {
|
|
96
|
+
"types": "./dist/model-resolution/index.d.ts",
|
|
97
|
+
"import": "./dist/model-resolution/index.js",
|
|
98
|
+
"default": "./dist/model-resolution/index.js"
|
|
99
|
+
},
|
|
100
|
+
"./sandbox": {
|
|
101
|
+
"types": "./dist/sandbox/index.d.ts",
|
|
102
|
+
"import": "./dist/sandbox/index.js",
|
|
103
|
+
"default": "./dist/sandbox/index.js"
|
|
104
|
+
},
|
|
105
|
+
"./run": {
|
|
106
|
+
"types": "./dist/run/index.d.ts",
|
|
107
|
+
"import": "./dist/run/index.js",
|
|
108
|
+
"default": "./dist/run/index.js"
|
|
109
|
+
},
|
|
80
110
|
"./config": {
|
|
81
111
|
"types": "./dist/config/index.d.ts",
|
|
82
112
|
"import": "./dist/config/index.js",
|
|
@@ -196,6 +226,7 @@
|
|
|
196
226
|
"@tangle-network/agent-integrations": "^0.32.0",
|
|
197
227
|
"@tangle-network/agent-runtime": "^0.52.0",
|
|
198
228
|
"@tangle-network/agent-knowledge": "^1.5.2",
|
|
229
|
+
"@tangle-network/sandbox": "^0.4.4",
|
|
199
230
|
"@testing-library/dom": "^10.4.1",
|
|
200
231
|
"@testing-library/react": "^16.3.2",
|
|
201
232
|
"@types/better-sqlite3": "^7.6.13",
|
|
@@ -219,6 +250,7 @@
|
|
|
219
250
|
"@tangle-network/agent-integrations": ">=0.32.0",
|
|
220
251
|
"@tangle-network/agent-knowledge": ">=1.5.0",
|
|
221
252
|
"@tangle-network/agent-runtime": ">=0.52.0",
|
|
253
|
+
"@tangle-network/sandbox": ">=0.4",
|
|
222
254
|
"drizzle-orm": ">=0.36",
|
|
223
255
|
"react": ">=18",
|
|
224
256
|
"konva": ">=9",
|
|
@@ -234,6 +266,9 @@
|
|
|
234
266
|
"@tangle-network/agent-runtime": {
|
|
235
267
|
"optional": true
|
|
236
268
|
},
|
|
269
|
+
"@tangle-network/sandbox": {
|
|
270
|
+
"optional": true
|
|
271
|
+
},
|
|
237
272
|
"drizzle-orm": {
|
|
238
273
|
"optional": true
|
|
239
274
|
},
|