aicomputer 0.1.3 → 0.1.5
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 +21 -8
- package/dist/index.js +1193 -128
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,14 +10,27 @@ npm install -g aicomputer
|
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
|
+
After installing, use the `computer` command:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
computer login
|
|
17
|
+
computer login --api-key <ac_live_...>
|
|
18
|
+
computer whoami
|
|
19
|
+
computer create my-box
|
|
20
|
+
computer open my-box
|
|
21
|
+
computer open my-box --terminal
|
|
22
|
+
computer ssh
|
|
23
|
+
computer ssh my-box
|
|
24
|
+
computer ssh --setup
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Run `computer ssh` without a handle in an interactive terminal to pick from your available machines.
|
|
28
|
+
|
|
29
|
+
Run `computer ssh --setup` once to register your SSH key and add a global alias:
|
|
30
|
+
|
|
13
31
|
```bash
|
|
14
|
-
agentcomputer
|
|
15
|
-
|
|
16
|
-
agentcomputer whoami
|
|
17
|
-
agentcomputer create my-box
|
|
18
|
-
agentcomputer open my-box
|
|
19
|
-
agentcomputer open my-box --terminal
|
|
20
|
-
agentcomputer ssh my-box
|
|
32
|
+
ssh agentcomputer.ai
|
|
33
|
+
ssh my-box@agentcomputer.ai
|
|
21
34
|
```
|
|
22
35
|
|
|
23
|
-
|
|
36
|
+
You can also run without a global install via `npx aicomputer <command>`.
|