clitrigger 0.1.17 → 0.1.19
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 +12 -0
- package/README_KR.md +12 -0
- package/package.json +32 -1
package/README.md
CHANGED
|
@@ -189,6 +189,18 @@ Register frequently-used external tools (executables, shell commands, URLs/folde
|
|
|
189
189
|
|
|
190
190
|
## Quick Start
|
|
191
191
|
|
|
192
|
+
### Option A — Desktop App (recommended for end users)
|
|
193
|
+
|
|
194
|
+
Download the installer for your platform from the [latest GitHub release](https://github.com/HyperAITeam/CLITrigger/releases/latest):
|
|
195
|
+
|
|
196
|
+
- **Windows** — `CLITrigger-Setup-<version>.exe` (NSIS installer) or the portable `.exe`
|
|
197
|
+
- **macOS** — `CLITrigger-<version>.dmg` (Apple Silicon & Intel)
|
|
198
|
+
- **Linux** — `CLITrigger-<version>.AppImage`
|
|
199
|
+
|
|
200
|
+
The desktop app bundles Node.js and the native modules (`better-sqlite3`, `node-pty`, `cloudflared`), so no separate runtime install is needed. On first launch you'll be prompted to set a password, just like the CLI.
|
|
201
|
+
|
|
202
|
+
### Option B — npm (recommended for developers)
|
|
203
|
+
|
|
192
204
|
```bash
|
|
193
205
|
npm i -g clitrigger
|
|
194
206
|
clitrigger
|
package/README_KR.md
CHANGED
|
@@ -189,6 +189,18 @@ Cloudflare Tunnel로 어디서든 폰·노트북으로 제어한다. 작업이
|
|
|
189
189
|
|
|
190
190
|
## 빠른 시작
|
|
191
191
|
|
|
192
|
+
### 옵션 A — 데스크톱 앱 (일반 사용자 권장)
|
|
193
|
+
|
|
194
|
+
[GitHub Releases 최신 페이지](https://github.com/HyperAITeam/CLITrigger/releases/latest)에서 플랫폼별 설치 파일을 다운로드:
|
|
195
|
+
|
|
196
|
+
- **Windows** — `CLITrigger-Setup-<version>.exe` (NSIS 설치 마법사) 또는 portable `.exe`
|
|
197
|
+
- **macOS** — `CLITrigger-<version>.dmg` (Apple Silicon · Intel)
|
|
198
|
+
- **Linux** — `CLITrigger-<version>.AppImage`
|
|
199
|
+
|
|
200
|
+
데스크톱 앱은 Node.js와 네이티브 모듈(`better-sqlite3`, `node-pty`, `cloudflared`)을 모두 번들하므로 별도 런타임 설치가 필요 없다. 첫 실행 시 비밀번호를 설정하라는 프롬프트가 뜨는 건 CLI와 동일.
|
|
201
|
+
|
|
202
|
+
### 옵션 B — npm (개발자 권장)
|
|
203
|
+
|
|
192
204
|
```bash
|
|
193
205
|
npm i -g clitrigger
|
|
194
206
|
clitrigger
|
package/package.json
CHANGED
|
@@ -1,6 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clitrigger",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
|
+
"description": "Spawn isolated git worktrees and orchestrate Claude/Gemini/Codex CLI tasks in parallel from a web UI.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"claude",
|
|
7
|
+
"gemini",
|
|
8
|
+
"codex",
|
|
9
|
+
"cli",
|
|
10
|
+
"ai",
|
|
11
|
+
"orchestration",
|
|
12
|
+
"worktree",
|
|
13
|
+
"automation",
|
|
14
|
+
"electron",
|
|
15
|
+
"tunnel"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://github.com/HyperAITeam/CLITrigger#readme",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/HyperAITeam/CLITrigger.git"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/HyperAITeam/CLITrigger/issues"
|
|
24
|
+
},
|
|
25
|
+
"author": "HyperAI Team",
|
|
26
|
+
"license": "MIT",
|
|
4
27
|
"type": "module",
|
|
5
28
|
"main": "electron/main.cjs",
|
|
6
29
|
"bin": {
|
|
@@ -89,6 +112,14 @@
|
|
|
89
112
|
"directories": {
|
|
90
113
|
"output": "release"
|
|
91
114
|
},
|
|
115
|
+
"publish": [
|
|
116
|
+
{
|
|
117
|
+
"provider": "github",
|
|
118
|
+
"owner": "HyperAITeam",
|
|
119
|
+
"repo": "CLITrigger",
|
|
120
|
+
"releaseType": "release"
|
|
121
|
+
}
|
|
122
|
+
],
|
|
92
123
|
"files": [
|
|
93
124
|
"dist/**/*",
|
|
94
125
|
"electron/**/*",
|