-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@contextableai/clawg-ui",
"version": "0.7.0",
"description": "AG-UI protocol channel plugin for OpenClaw — connect CopilotKit and AG-UI clients to your OpenClaw gateway",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/contextable/clawg-ui.git"
},
"keywords": [
"openclaw",
"ag-ui",
"copilotkit",
"sse",
"agent",
"channel-plugin"
],
"main": "./dist/index.js",
"files": [
"dist",
"!dist/examples",
"openclaw.plugin.json"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run"
},
"dependencies": {
"@ag-ui/core": "^0.0.52",
"@ag-ui/encoder": "^0.0.52"
},
"peerDependencies": {
"openclaw": "*"
},
"devDependencies": {
"@types/node": "^25.3.5",
"commander": "^14.0.3",
"openclaw": "file:../openclaw",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"channel": {
"id": "clawg-ui",
"label": "CLAWG-UI",
"docsPath": "/channels/clawg-ui",
"docsLabel": "clawg-ui",
"blurb": "AG-UI protocol endpoint for CopilotKit and HttpAgent clients.",
"order": 90,
"defaults": {
"blockStreaming": true,
"chunkMode": "newline",
"surfaceReasoning": true,
"surfaceSteps": true
}
},
"install": {
"npmSpec": "@contextableai/clawg-ui",
"localPath": "extensions/clawg-ui",
"defaultChoice": "npm"
}
}
}