aicomputer 0.1.4 → 0.1.6
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/README.md +15 -0
- package/dist/index.js +1201 -145
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,8 +21,23 @@ computer open my-box
|
|
|
21
21
|
computer open my-box --terminal
|
|
22
22
|
computer ssh
|
|
23
23
|
computer ssh my-box
|
|
24
|
+
computer ssh --setup
|
|
25
|
+
computer agent agents my-box
|
|
26
|
+
computer agent sessions list my-box
|
|
27
|
+
computer agent prompt my-box "inspect /workspace" --agent codex
|
|
28
|
+
computer fleet status
|
|
29
|
+
computer acp serve my-box --agent codex
|
|
24
30
|
```
|
|
25
31
|
|
|
26
32
|
Run `computer ssh` without a handle in an interactive terminal to pick from your available machines.
|
|
27
33
|
|
|
34
|
+
Run `computer ssh --setup` once to register your SSH key and add a global alias:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
ssh agentcomputer.ai
|
|
38
|
+
ssh my-box@agentcomputer.ai
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Use `computer agent` to inspect agents on one machine and manage remote sessions. Use `computer fleet status` to see active agent work across every machine in your fleet.
|
|
42
|
+
|
|
28
43
|
You can also run without a global install via `npx aicomputer <command>`.
|