aicomputer 0.1.14 → 0.1.16
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 +9 -2
- package/dist/chunk-5IEWKH52.js +883 -0
- package/dist/chunk-KXLTHWW3.js +184 -0
- package/dist/chunk-OWK5N76S.js +70 -0
- package/dist/index.js +735 -644
- package/dist/lib/mount-config.d.ts +72 -0
- package/dist/lib/mount-config.js +40 -0
- package/dist/lib/mount-host.d.ts +14 -0
- package/dist/lib/mount-host.js +10 -0
- package/dist/lib/mount-reconcile.d.ts +44 -0
- package/dist/lib/mount-reconcile.js +13 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -91,13 +91,14 @@ computer codex-login
|
|
|
91
91
|
computer whoami
|
|
92
92
|
computer create my-box
|
|
93
93
|
computer open my-box
|
|
94
|
-
computer open my-box --terminal
|
|
95
94
|
computer ssh
|
|
96
95
|
computer ssh my-box
|
|
97
96
|
computer ssh --setup
|
|
97
|
+
computer mount
|
|
98
|
+
computer mount status
|
|
98
99
|
computer agent agents my-box
|
|
99
100
|
computer agent sessions list my-box
|
|
100
|
-
computer agent prompt my-box "inspect /home/node
|
|
101
|
+
computer agent prompt my-box "inspect /home/node" --agent codex
|
|
101
102
|
computer acp serve my-box --agent codex
|
|
102
103
|
```
|
|
103
104
|
|
|
@@ -116,6 +117,12 @@ ssh agentcomputer.ai
|
|
|
116
117
|
ssh my-box@agentcomputer.ai
|
|
117
118
|
```
|
|
118
119
|
|
|
120
|
+
Run `computer mount` to start a foreground controller that mirrors all SSH-ready
|
|
121
|
+
machine homes under `~/agentcomputer/<handle>` while the command is running.
|
|
122
|
+
This uses the same SSH setup as `computer ssh --setup` and requires Mutagen plus
|
|
123
|
+
OpenSSH client tools (`ssh` and `scp`) to already be installed locally. The
|
|
124
|
+
temporary `~/agentcomputer` root is removed when the command exits.
|
|
125
|
+
|
|
119
126
|
Use `computer agent` to inspect agents on one machine and manage remote sessions. Use `computer acp serve` when you want to expose one remote session through a local ACP bridge.
|
|
120
127
|
|
|
121
128
|
You can also run without a global install via `npx aicomputer <command>`.
|