{ "name": "@elizaos/plugin-coding-tools", "version": "2.0.3-beta.7", "description": "Native Claude-Code-style coding tools (Read, Write, Edit, Bash, Grep, Glob, etc.) for the Eliza agent.", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "sideEffects": false, "repository": { "type": "git", "url": "https://github.com/elizaos/eliza.git" }, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "eliza-source": { "types": "./src/index.ts", "import": "./src/index.ts", "default": "./src/index.ts" }, "import": "./dist/index.js", "default": "./dist/index.js" }, "./*.css": "./dist/*.css", "./*": { "types": "./dist/*.d.ts", "eliza-source": { "types": "./src/*.ts", "import": "./src/*.ts", "default": "./src/*.ts" }, "import": "./dist/*.js", "default": "./dist/*.js" } }, "files": [ "registry-entry.json", "dist", "auto-enable.ts" ], "elizaos": { "plugin": { "autoEnableModule": "./auto-enable.ts", "capabilities": [ "coding-tools" ] }, "scripts": { "coreBuild": true } }, "keywords": [ "eliza", "plugin", "coding", "tools", "claude-code", "agent" ], "author": "elizaOS", "license": "MIT", "dependencies": { "@elizaos/core": "workspace:*", "@elizaos/shared": "workspace:*", "@vscode/ripgrep": "^1.15.9", "zod": "^4.4.3" }, "devDependencies": { "@types/node": "^25.0.3", "typescript": "^6.0.3", "vitest": "^4.0.0" }, "scripts": { "build": "bun run build.ts", "dev": "bun --hot build.ts", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist .turbo", "test": "vitest run", "typecheck": "tsgo --noEmit -p tsconfig.json", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format .", "check": "bun run typecheck && bun run test" }, "publishConfig": { "access": "public" }, "agentConfig": { "pluginType": "elizaos:plugin:1.0.0", "pluginParameters": { "CODING_TOOLS_WORKSPACE_ROOTS": { "type": "string", "description": "Comma-separated absolute paths the coding tools may read/write under. Defaults to the runtime's process.cwd() when unset.", "required": false, "sensitive": false }, "CODING_TOOLS_DENY_COMMANDS": { "type": "string", "description": "Comma-separated command-prefix patterns the SHELL action must refuse (e.g. 'rm -rf /,sudo,curl|wget'). Combined with built-in denylist.", "required": false, "sensitive": false }, "CODING_TOOLS_SHELL_TIMEOUT_MS": { "type": "number", "description": "Default SHELL timeout in milliseconds. Hard ceiling enforced before backgrounding kicks in.", "required": false, "default": 120000, "sensitive": false }, "CODING_TOOLS_SHELL_BG_BUDGET_MS": { "type": "number", "description": "Foreground budget. Shell invocations exceeding this auto-background and return a task_id (matches Claude's 15s ASSISTANT_BLOCKING_BUDGET_MS).", "required": false, "default": 15000, "sensitive": false }, "CODING_TOOLS_MAX_READ_LINES": { "type": "number", "description": "Max lines returned by FILE action=read in a single call before truncation. Mirrors Claude's MAX_LINES_TO_READ.", "required": false, "default": 2000, "sensitive": false }, "CODING_TOOLS_MAX_FILE_SIZE_BYTES": { "type": "number", "description": "Pre-stat byte cap on FILE action=read. Files larger than this are rejected with a message instructing the agent to read in chunks.", "required": false, "default": 262144, "sensitive": false }, "CODING_TOOLS_GREP_HEAD_LIMIT": { "type": "number", "description": "Default head_limit for GREP. Set to 0 to disable.", "required": false, "default": 250, "sensitive": false } } }, "eliza": { "platforms": [ "node" ], "runtime": "node", "platformDetails": { "node": "Default export (Node.js)" } } }