@assemblyline-agents/computer-use 0.1.0

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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 OpenEve contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,55 @@
1
+ # @assemblyline-agents/computer-use
2
+
3
+ Official Assembly Line connection plugin for controlling a paired Mac from a remotely
4
+ hosted agent. It is intended for Railway, Fly, Docker, and other deployments
5
+ that cannot run Peekaboo on the same host.
6
+
7
+ The Mac runs Assembly Line Computer Host (installed by Assembly Line Builder) and
8
+ makes an outbound authenticated WebSocket connection to an Assembly Line-compatible
9
+ relay. Agent requests and host responses are application-layer encrypted; the
10
+ relay routes opaque envelopes and cannot read tool arguments or results.
11
+
12
+ ## Setup
13
+
14
+ 1. Install Assembly Line Builder on a Mac running macOS 15 or newer.
15
+ 2. Enable Computer Host, grant Accessibility and Screen Recording, and pair the
16
+ intended deployment.
17
+ 3. Store the generated binding as `ASSEMBLY_LINE_COMPUTER_USE_BINDING` on the agent
18
+ host. Optionally set `ASSEMBLY_LINE_COMPUTER_USE_RELAY_URL` for a self-hosted relay.
19
+ 4. Add the plugin:
20
+
21
+ ```sh
22
+ assembly-line add computer-use agent
23
+ ```
24
+
25
+ The generated connection starts read-only:
26
+
27
+ ```ts
28
+ import { defineComputerUseConnection } from "@assemblyline-agents/computer-use";
29
+
30
+ export default defineComputerUseConnection({
31
+ access: { read: true, write: false }
32
+ });
33
+ ```
34
+
35
+ Enable mutations cautiously:
36
+
37
+ ```ts
38
+ access: {
39
+ read: true,
40
+ write: { approval: "always" }
41
+ }
42
+ ```
43
+
44
+ Use `approval: "never"` only when both the remote agent and the local macOS
45
+ account are appropriate for unattended control. Local Computer Host policy can
46
+ still require approval or deny individual applications and actions.
47
+
48
+ The binding carries a raw P-256 agent private scalar and the Mac's uncompressed
49
+ X9.63 P-256 public key, encoded inside an opaque base64url JSON value. It must
50
+ be treated as a secret and is never sent to the relay as part of a request.
51
+
52
+ The first release is accessibility-first. It excludes screenshots/vision,
53
+ recording, shell, clipboard/paste, browser-specific tools, and nested agents.
54
+ Use `@assemblyline-agents/peekaboo` instead when the Assembly Line runtime itself is running on
55
+ the Mac being controlled.
@@ -0,0 +1,5 @@
1
+ import { type RelayMcpPluginConnectionOptions } from "@assemblyline-agents/core";
2
+ export type ComputerUseConnectionOptions = RelayMcpPluginConnectionOptions;
3
+ export declare function defineComputerUseConnection(options: ComputerUseConnectionOptions): import("@assemblyline-agents/core").McpRelayClientConnectionDefinition;
4
+ export declare const openevePlugin: import("@assemblyline-agents/core").PluginModule;
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAIL,KAAK,+BAA+B,EACrC,MAAM,2BAA2B,CAAC;AAInC,MAAM,MAAM,4BAA4B,GAAG,+BAA+B,CAAC;AAE3E,wBAAgB,2BAA2B,CAAC,OAAO,EAAE,4BAA4B,0EAEhF;AAED,eAAO,MAAM,aAAa,kDAA0C,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,7 @@
1
+ import { connectionPluginMetadata, definePlugin, defineRelayMcpPluginConnection } from "@assemblyline-agents/core";
2
+ const PLUGIN = connectionPluginMetadata("computer-use");
3
+ export function defineComputerUseConnection(options) {
4
+ return defineRelayMcpPluginConnection(PLUGIN, options);
5
+ }
6
+ export const openevePlugin = definePlugin({ connections: [PLUGIN] });
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,wBAAwB,EACxB,YAAY,EACZ,8BAA8B,EAE/B,MAAM,2BAA2B,CAAC;AAEnC,MAAM,MAAM,GAAG,wBAAwB,CAAC,cAAc,CAAE,CAAC;AAIzD,MAAM,UAAU,2BAA2B,CAAC,OAAqC;IAC/E,OAAO,8BAA8B,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AACzD,CAAC;AAED,MAAM,CAAC,MAAM,aAAa,GAAG,YAAY,CAAC,EAAE,WAAW,EAAE,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC"}
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@assemblyline-agents/computer-use",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "exports": {
6
+ ".": {
7
+ "types": "./dist/index.d.ts",
8
+ "default": "./dist/index.js"
9
+ }
10
+ },
11
+ "dependencies": {
12
+ "@assemblyline-agents/core": "0.1.0"
13
+ },
14
+ "description": "Official OpenEve remote macOS computer-use connection plugin.",
15
+ "files": [
16
+ "dist",
17
+ "skills"
18
+ ],
19
+ "engines": {
20
+ "node": ">=22.19.0"
21
+ },
22
+ "license": "MIT",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/jasonbadeaux/openeve.git",
26
+ "directory": "packages/computer-use"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/jasonbadeaux/openeve/issues"
30
+ },
31
+ "homepage": "https://github.com/jasonbadeaux/openeve#readme",
32
+ "author": "OpenEve contributors",
33
+ "keywords": [
34
+ "openeve",
35
+ "ai",
36
+ "agents",
37
+ "computer-use",
38
+ "macos",
39
+ "automation",
40
+ "plugin"
41
+ ],
42
+ "publishConfig": {
43
+ "access": "public"
44
+ },
45
+ "scripts": {
46
+ "build": "tsc -p tsconfig.json",
47
+ "check": "tsc -p tsconfig.json --noEmit"
48
+ }
49
+ }
@@ -0,0 +1,36 @@
1
+ ---
2
+ name: computer-use
3
+ description: Inspect and control a developer-paired remote Mac through the encrypted Assembly Line Computer Host connection.
4
+ ---
5
+ # Assembly Line remote computer use
6
+
7
+ This connection controls a specific paired Mac through Assembly Line Computer Host.
8
+ The agent may be hosted remotely; the Mac host must be online, unlocked, and
9
+ permitted by its local policy. A device-offline, locked, expired, revoked, or
10
+ approval-denied response is a terminal result for that action. Do not work
11
+ around it by requesting shell, clipboard, screenshot, or other excluded tools.
12
+
13
+ Inspect before acting. Use `inspect_ui` to obtain an accessibility UI map and
14
+ stable element identifiers. Prefer identifiers, labels, `set_value`, and
15
+ `perform_action` over screen coordinates. Re-inspect after navigation, window
16
+ changes, dialogs, or any action that can invalidate UI state.
17
+
18
+ Use the narrowest action that completes the task. Confirm the intended app and
19
+ window before typing, clicking, invoking menus, moving windows, switching
20
+ Spaces, or interacting with dialogs. Never place passwords, API keys, pairing
21
+ bindings, recovery codes, or other credentials in tool arguments unless the
22
+ user has explicitly chosen a trusted local credential workflow.
23
+
24
+ The plugin exposes only accessibility inspection, app/window/menu control, and
25
+ direct input. Screenshot/vision, recording, nested agents, configuration,
26
+ cleanup, shell, clipboard/paste, and browser-specific Peekaboo tools are not
27
+ available in v1.
28
+
29
+ The scaffold is read-only. Desktop mutations require the developer to set:
30
+
31
+ ```ts
32
+ write: { approval: "always" }
33
+ ```
34
+
35
+ `write: { approval: "never" }` is appropriate only for a trusted autonomous
36
+ agent and a Mac account intentionally provisioned for unattended control.