replicas-cli 0.2.39 → 0.2.41
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 +14 -2
- package/dist/{index.js → chunk-IO4QHXPW.mjs} +750 -2649
- package/dist/index.mjs +2201 -0
- package/dist/interactive-EQDMW2E3.mjs +2011 -0
- package/package.json +13 -7
package/README.md
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
# Replicas CLI
|
|
2
2
|
|
|
3
|
-
Official CLI for [Replicas](https://replicas.dev) - manage cloud development workspaces with automatic SSH tunneling.
|
|
3
|
+
Official CLI for [Replicas](https://replicas.dev) - manage cloud development workspaces with automatic SSH tunneling and an interactive terminal dashboard.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
8
|
+
curl -fsSL https://replicas.dev/install.sh | bash
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or if you already have [Bun](https://bun.sh) installed:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
bun install -g replicas-cli
|
|
9
15
|
```
|
|
10
16
|
|
|
11
17
|
## Quick Start
|
|
@@ -16,6 +22,9 @@ replicas login
|
|
|
16
22
|
|
|
17
23
|
# Connect to a workspace
|
|
18
24
|
replicas connect my-workspace
|
|
25
|
+
|
|
26
|
+
# Launch the interactive terminal dashboard
|
|
27
|
+
replicas interactive
|
|
19
28
|
```
|
|
20
29
|
|
|
21
30
|
## Commands
|
|
@@ -38,6 +47,9 @@ Switch between organizations.
|
|
|
38
47
|
### `replicas connect <workspace-name>`
|
|
39
48
|
Connect to a workspace via SSH.
|
|
40
49
|
|
|
50
|
+
### `replicas interactive`
|
|
51
|
+
Launch the interactive terminal dashboard — a full TUI alternative to the web dashboard. View workspaces, chat with agents, monitor environment status, and create workspaces without leaving the terminal.
|
|
52
|
+
|
|
41
53
|
## Configuration
|
|
42
54
|
|
|
43
55
|
Create a `replicas.json` or `replicas.yaml` file in your repository root:
|