@terminal-code/cli 0.1.3 → 0.2.1
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 +35 -9
- package/binaries/terminal-code-linux-x86_64 +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,9 +5,22 @@ Single binary distribution for CloudIDE Pro - like `claude-code` but for termina
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g @
|
|
8
|
+
npm install -g @terminal-code/cli
|
|
9
|
+
terminal-code
|
|
9
10
|
```
|
|
10
11
|
|
|
12
|
+
That's it! No complex setup, no dependencies to manage.
|
|
13
|
+
|
|
14
|
+
## ✨ What You Get
|
|
15
|
+
|
|
16
|
+
- 🖥️ **Full VS Code IDE** in your browser
|
|
17
|
+
- 👥 **Multi-workspace management** - isolated development environments
|
|
18
|
+
- 🔐 **User authentication** - secure workspace isolation
|
|
19
|
+
- 📊 **Workspace analytics** - track usage and activity
|
|
20
|
+
- 🔄 **Git integration** - clone repos directly into workspaces
|
|
21
|
+
- 🌐 **Flexible access** - ngrok tunneling or direct domain
|
|
22
|
+
- 📦 **Download-on-first-run** - downloads runtime (~590MB) on first use, then works offline
|
|
23
|
+
|
|
11
24
|
## Usage
|
|
12
25
|
|
|
13
26
|
```bash
|
|
@@ -17,20 +30,33 @@ terminal-code
|
|
|
17
30
|
# Use custom config
|
|
18
31
|
terminal-code --config config/dev.yaml
|
|
19
32
|
|
|
33
|
+
# Download runtime dependencies manually
|
|
34
|
+
terminal-code --setup
|
|
35
|
+
|
|
20
36
|
# Show help
|
|
21
37
|
terminal-code --help
|
|
22
38
|
```
|
|
23
39
|
|
|
40
|
+
## 🔧 How It Works
|
|
41
|
+
|
|
42
|
+
1. **Install**: `npm install -g @terminal-code/cli` (downloads ~10MB orchestrator)
|
|
43
|
+
2. **First Run**: Downloads runtime components from GitHub releases (~590MB VS Code + ~27MB backend)
|
|
44
|
+
3. **Subsequent Runs**: Instant startup, everything cached locally at `~/.terminal-code/`
|
|
45
|
+
4. **Workspace Creation**: Each workspace gets dedicated VS Code server
|
|
46
|
+
5. **Access**: Open browser to your configured URL
|
|
47
|
+
|
|
24
48
|
## Features
|
|
25
49
|
|
|
26
|
-
- ✅
|
|
27
|
-
- ✅
|
|
28
|
-
- ✅ VS Code server
|
|
29
|
-
- ✅
|
|
30
|
-
- ✅
|
|
31
|
-
- ✅
|
|
50
|
+
- ✅ **Download-on-first-run** - like Claude Code, downloads runtime from GitHub releases
|
|
51
|
+
- ✅ **No external dependencies** after first run
|
|
52
|
+
- ✅ **Custom CloudIDE Pro VS Code** implementation (not generic code-server)
|
|
53
|
+
- ✅ **Multi-workspace support** with process isolation
|
|
54
|
+
- ✅ **Cross-platform** (Linux, macOS, Windows)
|
|
55
|
+
- ✅ **Works offline** after initial setup
|
|
32
56
|
|
|
33
57
|
## Requirements
|
|
34
58
|
|
|
35
|
-
-
|
|
36
|
-
-
|
|
59
|
+
- **OS**: Linux, macOS, or Windows
|
|
60
|
+
- **Memory**: 2GB+ recommended (scales with number of workspaces)
|
|
61
|
+
- **Disk**: 600MB for runtime + workspace storage
|
|
62
|
+
- **Network**: Internet connection for initial setup only
|
|
Binary file
|