-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "agent-assistant-sdk-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/traits",
"packages/core",
"packages/vfs",
"packages/harness",
"packages/memory",
"packages/inbox",
"packages/continuation",
"packages/turn-context",
"packages/sessions",
"packages/surfaces",
"packages/routing",
"packages/connectivity",
"packages/coordination",
"packages/proactive",
"packages/policy",
"packages/integration",
"packages/sdk",
"packages/specialists",
"packages/telemetry",
"packages/examples",
"packages/cloudflare-runtime",
"packages/webhook-runtime"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:sdk": "npm run build -w @agent-assistant/sdk",
"pretest": "npm run build",
"test": "npm run test --workspaces --if-present",
"agent": "RELAY_AUTO_SPAWN=false RELAY_CHANNEL=specialists RELAY_WORKER=specialist-worker RELAY_CLI=claude RELAY_MODEL=claude-sonnet-4-6 npm run cli -w @agent-assistant/webhook-runtime",
"worker": "npm run worker -w @agent-assistant/webhook-runtime --"
},
"devDependencies": {
"@agentworkforce/workload-router": "^0.2.0"
},
"dependencies": {
"@agent-relay/sdk": "^4.0.22"
}
}