@cloudcli-ai/cloudcli 1.28.1 → 1.29.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.de.md +11 -0
- package/README.ja.md +11 -0
- package/README.ko.md +13 -1
- package/README.md +31 -21
- package/README.ru.md +12 -1
- package/README.zh-CN.md +13 -1
- package/dist/assets/{index-_9VG3czA.js → index-BOWaxSnV.js} +234 -234
- package/dist/index.html +1 -1
- package/package.json +3 -2
- package/server/cli.js +360 -3
- package/server/index.js +12 -5
package/README.de.md
CHANGED
|
@@ -76,6 +76,8 @@ Der schnellste Einstieg – keine lokale Einrichtung erforderlich. Erhalte eine
|
|
|
76
76
|
|
|
77
77
|
### Self-Hosted (Open Source)
|
|
78
78
|
|
|
79
|
+
#### npm
|
|
80
|
+
|
|
79
81
|
CloudCLI UI sofort mit **npx** ausprobieren (erfordert **Node.js** v22+):
|
|
80
82
|
|
|
81
83
|
```bash
|
|
@@ -93,6 +95,15 @@ cloudcli
|
|
|
93
95
|
|
|
94
96
|
Die **[Dokumentation →](https://cloudcli.ai/docs)** enthält weitere Konfigurationsoptionen, PM2, Remote-Server-Einrichtung und mehr.
|
|
95
97
|
|
|
98
|
+
#### Docker Sandboxes (Experimentell)
|
|
99
|
+
|
|
100
|
+
Agents in isolierten Sandboxes mit Hypervisor-Isolation ausführen. Standardmäßig wird Claude Code gestartet. Erfordert die [`sbx` CLI](https://docs.docker.com/ai/sandboxes/get-started/).
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
npx @cloudcli-ai/cloudcli@latest sandbox ~/my-project
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
Unterstützt Claude Code, Codex und Gemini CLI. Weitere Details in der [Sandbox-Dokumentation](docker/).
|
|
96
107
|
|
|
97
108
|
---
|
|
98
109
|
|
package/README.ja.md
CHANGED
|
@@ -72,6 +72,8 @@
|
|
|
72
72
|
|
|
73
73
|
### セルフホスト(オープンソース)
|
|
74
74
|
|
|
75
|
+
#### npm
|
|
76
|
+
|
|
75
77
|
**npx** で今すぐ CloudCLI UI を試せます(**Node.js** v22+ が必要):
|
|
76
78
|
|
|
77
79
|
```bash
|
|
@@ -89,6 +91,15 @@ cloudcli
|
|
|
89
91
|
|
|
90
92
|
より詳細な設定オプション、PM2、リモートサーバー設定などについては **[ドキュメントはこちら →](https://cloudcli.ai/docs)** を参照してください。
|
|
91
93
|
|
|
94
|
+
#### Docker Sandboxes(実験的)
|
|
95
|
+
|
|
96
|
+
ハイパーバイザーレベルの分離でエージェントをサンドボックスで実行します。デフォルトでは Claude Code が起動します。[`sbx` CLI](https://docs.docker.com/ai/sandboxes/get-started/) が必要です。
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
npx @cloudcli-ai/cloudcli@latest sandbox ~/my-project
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Claude Code、Codex、Gemini CLI に対応。詳細は[サンドボックスのドキュメント](docker/)をご覧ください。
|
|
92
103
|
|
|
93
104
|
---
|
|
94
105
|
|
package/README.ko.md
CHANGED
|
@@ -72,6 +72,8 @@
|
|
|
72
72
|
|
|
73
73
|
### 셀프 호스트 (오픈 소스)
|
|
74
74
|
|
|
75
|
+
#### npm
|
|
76
|
+
|
|
75
77
|
**npx**로 즉시 CloudCLI UI를 실행하세요 (Node.js v22+ 필요):
|
|
76
78
|
|
|
77
79
|
```bash
|
|
@@ -87,7 +89,17 @@ cloudcli
|
|
|
87
89
|
|
|
88
90
|
`http://localhost:3001`을 열면 기존 세션이 자동으로 발견됩니다.
|
|
89
91
|
|
|
90
|
-
자세한 구성 옵션, PM2, 원격 서버 설정 등은 **[문서 →](https://cloudcli.ai/docs)**를
|
|
92
|
+
자세한 구성 옵션, PM2, 원격 서버 설정 등은 **[문서 →](https://cloudcli.ai/docs)**를 참고하세요.
|
|
93
|
+
|
|
94
|
+
#### Docker Sandboxes (실험적)
|
|
95
|
+
|
|
96
|
+
하이퍼바이저 수준 격리로 에이전트를 샌드박스에서 실행합니다. 기본 에이전트는 Claude Code입니다. [`sbx` CLI](https://docs.docker.com/ai/sandboxes/get-started/)가 필요합니다.
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
npx @cloudcli-ai/cloudcli@latest sandbox ~/my-project
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
Claude Code, Codex, Gemini CLI를 지원합니다. 자세한 내용은 [샌드박스 문서](docker/)를 참고하세요.
|
|
91
103
|
|
|
92
104
|
---
|
|
93
105
|
|
package/README.md
CHANGED
|
@@ -76,6 +76,8 @@ The fastest way to get started — no local setup required. Get a fully managed,
|
|
|
76
76
|
|
|
77
77
|
### Self-Hosted (Open source)
|
|
78
78
|
|
|
79
|
+
#### npm
|
|
80
|
+
|
|
79
81
|
Try CloudCLI UI instantly with **npx** (requires **Node.js** v22+):
|
|
80
82
|
|
|
81
83
|
```
|
|
@@ -91,33 +93,41 @@ cloudcli
|
|
|
91
93
|
|
|
92
94
|
Open `http://localhost:3001` — all your existing sessions are discovered automatically.
|
|
93
95
|
|
|
94
|
-
Visit the **[documentation →](https://cloudcli.ai/docs)** for
|
|
96
|
+
Visit the **[documentation →](https://cloudcli.ai/docs)** for full configuration options, PM2, remote server setup and more.
|
|
97
|
+
|
|
98
|
+
#### Docker Sandboxes (Experimental)
|
|
99
|
+
|
|
100
|
+
Run agents in isolated sandboxes with hypervisor-level isolation. Starts Claude Code by default. Requires the [`sbx` CLI](https://docs.docker.com/ai/sandboxes/get-started/).
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
npx @cloudcli-ai/cloudcli@latest sandbox ~/my-project
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
Supports Claude Code, Codex, and Gemini CLI. See the [sandbox docs](docker/) for setup and advanced options.
|
|
95
107
|
|
|
96
108
|
|
|
97
109
|
---
|
|
98
110
|
|
|
99
111
|
## Which option is right for you?
|
|
100
112
|
|
|
101
|
-
CloudCLI UI is the open source UI layer that powers CloudCLI Cloud. You can self-host it on your own machine,
|
|
102
|
-
|
|
103
|
-
| |
|
|
104
|
-
|
|
105
|
-
| **Best for** |
|
|
106
|
-
| **How you access it** | Browser via `[yourip]:port` | Browser, any IDE, REST API, n8n |
|
|
107
|
-
| **Setup** | `npx @cloudcli-ai/cloudcli` | No setup required |
|
|
108
|
-
| **
|
|
109
|
-
| **
|
|
110
|
-
| **
|
|
111
|
-
| **Agents supported** | Claude Code, Cursor CLI, Codex, Gemini CLI | Claude Code, Cursor CLI, Codex, Gemini CLI |
|
|
112
|
-
| **File explorer and Git** | Yes
|
|
113
|
-
| **MCP configuration** |
|
|
114
|
-
| **
|
|
115
|
-
| **
|
|
116
|
-
| **
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
> Both options use your own AI subscriptions (Claude, Cursor, etc.) — CloudCLI provides the environment, not the AI.
|
|
113
|
+
CloudCLI UI is the open source UI layer that powers CloudCLI Cloud. You can self-host it on your own machine, run it in a Docker sandbox for isolation, or use CloudCLI Cloud for a fully managed environment.
|
|
114
|
+
|
|
115
|
+
| | Self-Hosted (npm) | Self-Hosted (Docker Sandbox) *(Experimental)* | CloudCLI Cloud |
|
|
116
|
+
|---|---|---|---|
|
|
117
|
+
| **Best for** | Local agent sessions on your own machine | Isolated agents with web/mobile IDE | Teams who want agents in the cloud |
|
|
118
|
+
| **How you access it** | Browser via `[yourip]:port` | Browser via `localhost:port` | Browser, any IDE, REST API, n8n |
|
|
119
|
+
| **Setup** | `npx @cloudcli-ai/cloudcli` | `npx @cloudcli-ai/cloudcli@latest sandbox ~/project` | No setup required |
|
|
120
|
+
| **Isolation** | Runs on your host | Hypervisor-level sandbox (microVM) | Full cloud isolation |
|
|
121
|
+
| **Machine needs to stay on** | Yes | Yes | No |
|
|
122
|
+
| **Mobile access** | Any browser on your network | Any browser on your network | Any device, native app coming |
|
|
123
|
+
| **Agents supported** | Claude Code, Cursor CLI, Codex, Gemini CLI | Claude Code, Codex, Gemini CLI | Claude Code, Cursor CLI, Codex, Gemini CLI |
|
|
124
|
+
| **File explorer and Git** | Yes | Yes | Yes |
|
|
125
|
+
| **MCP configuration** | Synced with `~/.claude` | Managed via UI | Managed via UI |
|
|
126
|
+
| **REST API** | Yes | Yes | Yes |
|
|
127
|
+
| **Team sharing** | No | No | Yes |
|
|
128
|
+
| **Platform cost** | Free, open source | Free, open source | Starts at $7/month |
|
|
129
|
+
|
|
130
|
+
> All options use your own AI subscriptions (Claude, Cursor, etc.) — CloudCLI provides the environment, not the AI.
|
|
121
131
|
|
|
122
132
|
---
|
|
123
133
|
|
package/README.ru.md
CHANGED
|
@@ -76,6 +76,8 @@
|
|
|
76
76
|
|
|
77
77
|
### Self-Hosted (Open source)
|
|
78
78
|
|
|
79
|
+
#### npm
|
|
80
|
+
|
|
79
81
|
Попробовать CloudCLI UI можно сразу через **npx** (требуется **Node.js** v22+):
|
|
80
82
|
|
|
81
83
|
```bash
|
|
@@ -91,8 +93,17 @@ cloudcli
|
|
|
91
93
|
|
|
92
94
|
Откройте `http://localhost:3001` — все ваши существующие сессии будут обнаружены автоматически.
|
|
93
95
|
|
|
94
|
-
Посетите **[документацию →](https://cloudcli.ai/docs)**, чтобы узнать про дополнительные варианты конфигурации, PM2, настройку удалённого сервера и многое
|
|
96
|
+
Посетите **[документацию →](https://cloudcli.ai/docs)**, чтобы узнать про дополнительные варианты конфигурации, PM2, настройку удалённого сервера и многое другое.
|
|
97
|
+
|
|
98
|
+
#### Docker Sandboxes (Экспериментально)
|
|
99
|
+
|
|
100
|
+
Запускайте агентов в изолированных песочницах с гипервизорной изоляцией. По умолчанию запускается Claude Code. Требуется [`sbx` CLI](https://docs.docker.com/ai/sandboxes/get-started/).
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
npx @cloudcli-ai/cloudcli@latest sandbox ~/my-project
|
|
104
|
+
```
|
|
95
105
|
|
|
106
|
+
Поддерживаются Claude Code, Codex и Gemini CLI. Подробнее в [документации sandbox](docker/).
|
|
96
107
|
|
|
97
108
|
---
|
|
98
109
|
|
package/README.zh-CN.md
CHANGED
|
@@ -72,6 +72,8 @@
|
|
|
72
72
|
|
|
73
73
|
### 自托管(开源)
|
|
74
74
|
|
|
75
|
+
#### npm
|
|
76
|
+
|
|
75
77
|
启动 CloudCLI UI,只需一行 `npx`(需要 Node.js v22+):
|
|
76
78
|
|
|
77
79
|
```bash
|
|
@@ -87,7 +89,17 @@ cloudcli
|
|
|
87
89
|
|
|
88
90
|
打开 `http://localhost:3001`,系统会自动发现所有现有会话。
|
|
89
91
|
|
|
90
|
-
更多配置选项、PM2、远程服务器设置等,请参阅 **[文档 →](https://cloudcli.ai/docs)
|
|
92
|
+
更多配置选项、PM2、远程服务器设置等,请参阅 **[文档 →](https://cloudcli.ai/docs)**。
|
|
93
|
+
|
|
94
|
+
#### Docker Sandboxes(实验性)
|
|
95
|
+
|
|
96
|
+
在隔离的沙箱中运行代理,具有虚拟机管理程序级别的隔离。默认启动 Claude Code。需要 [`sbx` CLI](https://docs.docker.com/ai/sandboxes/get-started/)。
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
npx @cloudcli-ai/cloudcli@latest sandbox ~/my-project
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
支持 Claude Code、Codex 和 Gemini CLI。详情请参阅 [沙箱文档](docker/)。
|
|
91
103
|
|
|
92
104
|
---
|
|
93
105
|
|