-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.38 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.38 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@elizaos/plugin-claude-code-workbench",
"description": "Claude Code companion workflow plugin for Eliza/ElizaOS",
"version": "2.0.0-alpha.536",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"packageType": "plugin",
"platform": "node",
"license": "MIT",
"keywords": [
"plugin",
"elizaos",
"claude-code",
"workflow",
"eliza"
],
"homepage": "https://github.com/eliza-ai/eliza",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"dependencies": {
"@elizaos/core": "alpha",
"zod": "^4.4.2"
},
"devDependencies": {
"dotenv": "^17.2.3",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
},
"scripts": {
"start": "elizaos start",
"dev": "elizaos dev",
"build": "bun run build.ts",
"build:watch": "bun run build.ts --watch",
"test": "bun test",
"format": "prettier --write ./src"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"zod": "4.4.3"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"CLAUDE_CODE_WORKBENCH_WORKSPACE_ROOT": {
"type": "string",
"description": "Workspace root for workflow execution (default: cwd)",
"required": false
},
"CLAUDE_CODE_WORKBENCH_TIMEOUT_MS": {
"type": "number",
"description": "Timeout per workflow run in milliseconds",
"required": false
},
"CLAUDE_CODE_WORKBENCH_MAX_OUTPUT_CHARS": {
"type": "number",
"description": "Maximum stdout/stderr characters captured per run",
"required": false
},
"CLAUDE_CODE_WORKBENCH_MAX_STDIN_BYTES": {
"type": "number",
"description": "Maximum stdin bytes accepted per run",
"required": false
},
"CLAUDE_CODE_WORKBENCH_ALLOWED_WORKFLOWS": {
"type": "string",
"description": "Comma-separated allowlist of workflow ids. Use '*' for all.",
"required": false
},
"CLAUDE_CODE_WORKBENCH_ENABLE_MUTATING_WORKFLOWS": {
"type": "boolean",
"description": "Allow workflows that can change repository files",
"required": false
}
}
}
}