aicomputer 0.1.2
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 +23 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1450 -0
- package/package.json +43 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# `aicomputer`
|
|
2
|
+
|
|
3
|
+
Agent Computer CLI for creating, opening, and managing computers from the terminal.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g aicomputer
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
agentcomputer login
|
|
15
|
+
agentcomputer login --api-key <ac_live_...>
|
|
16
|
+
agentcomputer whoami
|
|
17
|
+
agentcomputer create my-box
|
|
18
|
+
agentcomputer open my-box
|
|
19
|
+
agentcomputer open my-box --terminal
|
|
20
|
+
agentcomputer ssh my-box
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
The package installs the `aicomputer`, `agentcomputer`, and `computer` commands. You can also run it without a global install via `npx aicomputer <command>`.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
#!/usr/bin/env node
|