clitrigger 0.1.4 → 0.1.5
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 +8 -8
- package/README_EN.md +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
3
|
<picture>
|
|
4
|
-
<source media="(prefers-color-scheme: dark)" srcset="src/client/public/logo.svg">
|
|
5
|
-
<source media="(prefers-color-scheme: light)" srcset="src/client/public/logo.svg">
|
|
6
|
-
<img alt="CLITrigger" src="src/client/public/logo.svg" width="360">
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/src/client/public/logo.svg">
|
|
5
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/src/client/public/logo.svg">
|
|
6
|
+
<img alt="CLITrigger" src="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/src/client/public/logo.svg" width="360">
|
|
7
7
|
</picture>
|
|
8
8
|
|
|
9
9
|
**AI-Powered Parallel Worktree Automation**
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
*Write tasks. Let AI execute them in parallel. Review and merge.*
|
|
12
12
|
|
|
13
13
|
<p align="center">
|
|
14
|
-
<a href="README.md">한국어</a> ·
|
|
15
|
-
<a href="README_EN.md">English</a>
|
|
14
|
+
<a href="https://github.com/OSgoodYZ/CLITrigger/blob/main/README.md">한국어</a> ·
|
|
15
|
+
<a href="https://github.com/OSgoodYZ/CLITrigger/blob/main/README_EN.md">English</a>
|
|
16
16
|
</p>
|
|
17
17
|
|
|
18
18
|
[](LICENSE)
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
> CLITrigger는 AI를 병렬로 돌리면서도, 개발자가 맥락을 잃지 않도록 설계되었다.
|
|
31
31
|
|
|
32
32
|
<div align="center">
|
|
33
|
-
<img src="docs/images/screenshot-tasks.png" alt="Tasks — 병렬 워크트리 실행" width="800">
|
|
33
|
+
<img src="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/docs/images/screenshot-tasks.png" alt="Tasks — 병렬 워크트리 실행" width="800">
|
|
34
34
|
<p><em>병렬 워크트리에서 AI CLI가 동시에 작업을 처리하는 모습</em></p>
|
|
35
35
|
</div>
|
|
36
36
|
|
|
@@ -77,7 +77,7 @@ TODO를 작성하면 각 작업마다 격리된 git worktree가 자동 생성된
|
|
|
77
77
|
아키텍트, 개발자, 리뷰어 등 역할이 다른 AI 에이전트들이 라운드 방식으로 토론한 뒤, 합의된 내용을 바탕으로 자동 구현까지 이어진다. 단일 AI의 판단보다 훨씬 검증된 설계 결과물이 나온다.
|
|
78
78
|
|
|
79
79
|
<div align="center">
|
|
80
|
-
<img src="docs/images/screenshot-discussions.png" alt="Discussions — 다중 AI 토론" width="800">
|
|
80
|
+
<img src="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/docs/images/screenshot-discussions.png" alt="Discussions — 다중 AI 토론" width="800">
|
|
81
81
|
<p><em>여러 AI 에이전트가 역할별로 토론하는 Discussion 화면</em></p>
|
|
82
82
|
</div>
|
|
83
83
|
|
|
@@ -85,7 +85,7 @@ TODO를 작성하면 각 작업마다 격리된 git worktree가 자동 생성된
|
|
|
85
85
|
토큰 한도를 피해 새벽이나 특정 시각에 작업을 예약 실행할 수 있다. cron 기반 반복 스케줄과 일회성 예약 모두 지원한다.
|
|
86
86
|
|
|
87
87
|
<div align="center">
|
|
88
|
-
<img src="docs/images/screenshot-schedules.png" alt="Schedules — 예약 실행" width="800">
|
|
88
|
+
<img src="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/docs/images/screenshot-schedules.png" alt="Schedules — 예약 실행" width="800">
|
|
89
89
|
<p><em>cron 기반 반복·일회성 예약 실행 설정 화면</em></p>
|
|
90
90
|
</div>
|
|
91
91
|
|
package/README_EN.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
3
|
<picture>
|
|
4
|
-
<source media="(prefers-color-scheme: dark)" srcset="src/client/public/logo.svg">
|
|
5
|
-
<source media="(prefers-color-scheme: light)" srcset="src/client/public/logo.svg">
|
|
6
|
-
<img alt="CLITrigger" src="src/client/public/logo.svg" width="360">
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/src/client/public/logo.svg">
|
|
5
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/src/client/public/logo.svg">
|
|
6
|
+
<img alt="CLITrigger" src="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/src/client/public/logo.svg" width="360">
|
|
7
7
|
</picture>
|
|
8
8
|
|
|
9
9
|
**AI-Powered Parallel Worktree Automation**
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
*Write tasks. Let AI execute them in parallel. Review and merge.*
|
|
12
12
|
|
|
13
13
|
<p align="center">
|
|
14
|
-
<a href="README.md">한국어</a> ·
|
|
15
|
-
<a href="README_EN.md">English</a>
|
|
14
|
+
<a href="https://github.com/OSgoodYZ/CLITrigger/blob/main/README.md">한국어</a> ·
|
|
15
|
+
<a href="https://github.com/OSgoodYZ/CLITrigger/blob/main/README_EN.md">English</a>
|
|
16
16
|
</p>
|
|
17
17
|
|
|
18
18
|
[](LICENSE)
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
> CLITrigger lets you run AI in parallel — while keeping you in full context of what's happening.
|
|
31
31
|
|
|
32
32
|
<div align="center">
|
|
33
|
-
<img src="docs/images/screenshot-tasks.png" alt="Tasks — Parallel worktree execution" width="800">
|
|
33
|
+
<img src="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/docs/images/screenshot-tasks.png" alt="Tasks — Parallel worktree execution" width="800">
|
|
34
34
|
<p><em>AI CLIs working simultaneously across isolated git worktrees</em></p>
|
|
35
35
|
</div>
|
|
36
36
|
|
|
@@ -77,7 +77,7 @@ Each TODO automatically gets its own git worktree. Claude / Gemini / Codex CLIs
|
|
|
77
77
|
AI agents with different roles — architect, developer, reviewer — debate in rounds before implementation. The resulting design is far more robust than a single AI working in isolation.
|
|
78
78
|
|
|
79
79
|
<div align="center">
|
|
80
|
-
<img src="docs/images/screenshot-discussions.png" alt="Discussions — Multi-agent debate" width="800">
|
|
80
|
+
<img src="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/docs/images/screenshot-discussions.png" alt="Discussions — Multi-agent debate" width="800">
|
|
81
81
|
<p><em>Multiple AI agents with different roles debating in the Discussion view</em></p>
|
|
82
82
|
</div>
|
|
83
83
|
|
|
@@ -85,7 +85,7 @@ AI agents with different roles — architect, developer, reviewer — debate in
|
|
|
85
85
|
Schedule tasks for off-peak hours to avoid rate limits. Supports both recurring cron schedules and one-time scheduled runs.
|
|
86
86
|
|
|
87
87
|
<div align="center">
|
|
88
|
-
<img src="docs/images/screenshot-schedules.png" alt="Schedules — Scheduled execution" width="800">
|
|
88
|
+
<img src="https://raw.githubusercontent.com/HyperAITeam/CLITrigger/main/docs/images/screenshot-schedules.png" alt="Schedules — Scheduled execution" width="800">
|
|
89
89
|
<p><em>Cron-based recurring and one-time scheduled task execution</em></p>
|
|
90
90
|
</div>
|
|
91
91
|
|