@elizaos/plugin-computeruse 2.0.0-alpha.8 → 2.0.0-alpha.9

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.
Files changed (49) hide show
  1. package/dist/actions/click-coordinates.d.ts.map +1 -1
  2. package/dist/actions/click-coordinates.js +61 -3
  3. package/dist/actions/click-coordinates.js.map +1 -1
  4. package/dist/actions/click.d.ts.map +1 -1
  5. package/dist/actions/click.js +75 -7
  6. package/dist/actions/click.js.map +1 -1
  7. package/dist/actions/drag.d.ts.map +1 -1
  8. package/dist/actions/drag.js +61 -3
  9. package/dist/actions/drag.js.map +1 -1
  10. package/dist/actions/get-applications.d.ts.map +1 -1
  11. package/dist/actions/get-applications.js +69 -6
  12. package/dist/actions/get-applications.js.map +1 -1
  13. package/dist/actions/get-window-tree.d.ts.map +1 -1
  14. package/dist/actions/get-window-tree.js +65 -5
  15. package/dist/actions/get-window-tree.js.map +1 -1
  16. package/dist/actions/open-application.d.ts.map +1 -1
  17. package/dist/actions/open-application.js +65 -5
  18. package/dist/actions/open-application.js.map +1 -1
  19. package/dist/actions/press-key.d.ts.map +1 -1
  20. package/dist/actions/press-key.js +61 -3
  21. package/dist/actions/press-key.js.map +1 -1
  22. package/dist/actions/screenshot.d.ts.map +1 -1
  23. package/dist/actions/screenshot.js +62 -4
  24. package/dist/actions/screenshot.js.map +1 -1
  25. package/dist/actions/scroll.d.ts.map +1 -1
  26. package/dist/actions/scroll.js +61 -3
  27. package/dist/actions/scroll.js.map +1 -1
  28. package/dist/actions/type.d.ts.map +1 -1
  29. package/dist/actions/type.js +66 -6
  30. package/dist/actions/type.js.map +1 -1
  31. package/dist/index.d.ts.map +1 -1
  32. package/dist/index.js +4 -1
  33. package/dist/index.js.map +1 -1
  34. package/dist/providers/available-apps.d.ts.map +1 -1
  35. package/dist/providers/available-apps.js +8 -2
  36. package/dist/providers/available-apps.js.map +1 -1
  37. package/dist/providers/computeruse-state.d.ts.map +1 -1
  38. package/dist/providers/computeruse-state.js +1 -0
  39. package/dist/providers/computeruse-state.js.map +1 -1
  40. package/dist/service-registry.d.ts.map +1 -1
  41. package/dist/service-registry.js.map +1 -1
  42. package/dist/services/computeruse-service.d.ts.map +1 -1
  43. package/dist/services/computeruse-service.js +7 -2
  44. package/dist/services/computeruse-service.js.map +1 -1
  45. package/dist/types.d.ts.map +1 -1
  46. package/dist/types.js.map +1 -1
  47. package/dist/utils/params.d.ts.map +1 -1
  48. package/dist/utils/params.js.map +1 -1
  49. package/package.json +103 -103
package/package.json CHANGED
@@ -1,105 +1,105 @@
1
1
  {
2
- "name": "@elizaos/plugin-computeruse",
3
- "description": "Computer automation plugin for ElizaOS - enables AI agents to control the local machine (when supported) or a remote ComputerUse MCP server",
4
- "version": "2.0.0-alpha.8",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "module": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "packageType": "plugin",
10
- "platform": "node",
11
- "license": "MIT",
12
- "keywords": [
13
- "plugin",
14
- "elizaos",
15
- "computeruse",
16
- "automation",
17
- "desktop",
18
- "gui",
19
- "mcp"
20
- ],
21
- "repository": {
22
- "type": "git",
23
- "url": "https://github.com/elizaos/eliza"
24
- },
25
- "homepage": "https://elizaos.ai",
26
- "exports": {
27
- "./package.json": "./package.json",
28
- ".": {
29
- "import": {
30
- "types": "./dist/index.d.ts",
31
- "default": "./dist/index.js"
32
- }
33
- }
34
- },
35
- "files": [
36
- "dist",
37
- "README.md",
38
- "package.json"
39
- ],
40
- "dependencies": {
41
- "@modelcontextprotocol/sdk": "^1.21.0",
42
- "zod": "^4.3.6"
43
- },
44
- "peerDependencies": {
45
- "@elizaos/computeruse": "2.0.0-alpha.3",
46
- "@elizaos/core": "2.0.0-alpha.3"
47
- },
48
- "peerDependenciesMeta": {
49
- "@elizaos/computeruse": {
50
- "optional": true
51
- }
52
- },
53
- "devDependencies": {
54
- "@biomejs/biome": "^2.3.11",
55
- "@elizaos/plugin-eliza-classic": "2.0.0-alpha.3",
56
- "@elizaos/plugin-inmemorydb": "2.0.0-alpha.3",
57
- "@elizaos/plugin-mcp": "2.0.0-alpha.3",
58
- "typescript": "^5.9.3",
59
- "vitest": "^4.0.17"
60
- },
61
- "scripts": {
62
- "dev": "bun --hot build.ts",
63
- "test": "vitest run || echo 'TypeScript tests skipped - no tests found'",
64
- "lint": "bunx @biomejs/biome check --write --unsafe .",
65
- "typecheck": "tsc --noEmit",
66
- "clean": "rm -rf dist .turbo",
67
- "lint:check": "bunx @biomejs/biome check .",
68
- "build": "bun run build.ts",
69
- "build:ts": "bun run build.ts",
70
- "format": "bunx @biomejs/biome format --write .",
71
- "format:check": "bunx @biomejs/biome format ."
72
- },
73
- "agentConfig": {
74
- "pluginType": "elizaos:plugin:1.0.0",
75
- "pluginParameters": {
76
- "COMPUTERUSE_ENABLED": {
77
- "type": "boolean",
78
- "description": "Enable ComputerUse actions/providers (default: false)",
79
- "required": false
80
- },
81
- "COMPUTERUSE_MODE": {
82
- "type": "string",
83
- "description": "Execution mode: auto | local | mcp (default: auto)",
84
- "required": false
85
- },
86
- "COMPUTERUSE_MCP_SERVER": {
87
- "type": "string",
88
- "description": "MCP server name to use for remote control (default: computeruse)",
89
- "required": false
90
- }
91
- }
92
- },
93
- "publishConfig": {
94
- "access": "public"
95
- },
96
- "milaidy": {
97
- "platforms": [
98
- "node"
99
- ],
100
- "runtime": "node",
101
- "platformDetails": {
102
- "node": "Node.js only (platform: node)"
103
- }
104
- }
2
+ "name": "@elizaos/plugin-computeruse",
3
+ "description": "Computer automation plugin for ElizaOS - enables AI agents to control the local machine (when supported) or a remote ComputerUse MCP server",
4
+ "version": "2.0.0-alpha.9",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "packageType": "plugin",
10
+ "platform": "node",
11
+ "license": "MIT",
12
+ "keywords": [
13
+ "plugin",
14
+ "elizaos",
15
+ "computeruse",
16
+ "automation",
17
+ "desktop",
18
+ "gui",
19
+ "mcp"
20
+ ],
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/elizaos/eliza"
24
+ },
25
+ "homepage": "https://elizaos.ai",
26
+ "exports": {
27
+ "./package.json": "./package.json",
28
+ ".": {
29
+ "import": {
30
+ "types": "./dist/index.d.ts",
31
+ "default": "./dist/index.js"
32
+ }
33
+ }
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "README.md",
38
+ "package.json"
39
+ ],
40
+ "dependencies": {
41
+ "@modelcontextprotocol/sdk": "^1.21.0",
42
+ "zod": "^4.3.6"
43
+ },
44
+ "peerDependencies": {
45
+ "@elizaos/computeruse": "2.0.0-alpha.3",
46
+ "@elizaos/core": "2.0.0-alpha.3"
47
+ },
48
+ "peerDependenciesMeta": {
49
+ "@elizaos/computeruse": {
50
+ "optional": true
51
+ }
52
+ },
53
+ "devDependencies": {
54
+ "@biomejs/biome": "^2.3.11",
55
+ "@elizaos/plugin-eliza-classic": "2.0.0-alpha.3",
56
+ "@elizaos/plugin-inmemorydb": "2.0.0-alpha.3",
57
+ "@elizaos/plugin-mcp": "2.0.0-alpha.3",
58
+ "typescript": "^5.9.3",
59
+ "vitest": "^4.0.17"
60
+ },
61
+ "scripts": {
62
+ "dev": "bun --hot build.ts",
63
+ "test": "vitest run --passWithNoTests",
64
+ "lint": "bunx @biomejs/biome check --write --unsafe .",
65
+ "typecheck": "tsc --noEmit",
66
+ "clean": "rm -rf dist .turbo",
67
+ "lint:check": "bunx @biomejs/biome check .",
68
+ "build": "bun run build.ts",
69
+ "build:ts": "bun run build.ts",
70
+ "format": "bunx @biomejs/biome format --write .",
71
+ "format:check": "bunx @biomejs/biome format ."
72
+ },
73
+ "agentConfig": {
74
+ "pluginType": "elizaos:plugin:1.0.0",
75
+ "pluginParameters": {
76
+ "COMPUTERUSE_ENABLED": {
77
+ "type": "boolean",
78
+ "description": "Enable ComputerUse actions/providers (default: false)",
79
+ "required": false
80
+ },
81
+ "COMPUTERUSE_MODE": {
82
+ "type": "string",
83
+ "description": "Execution mode: auto | local | mcp (default: auto)",
84
+ "required": false
85
+ },
86
+ "COMPUTERUSE_MCP_SERVER": {
87
+ "type": "string",
88
+ "description": "MCP server name to use for remote control (default: computeruse)",
89
+ "required": false
90
+ }
91
+ }
92
+ },
93
+ "publishConfig": {
94
+ "access": "public"
95
+ },
96
+ "milady": {
97
+ "platforms": [
98
+ "node"
99
+ ],
100
+ "runtime": "node",
101
+ "platformDetails": {
102
+ "node": "Node.js only (platform: node)"
103
+ }
104
+ }
105
105
  }