agestra 4.5.4 → 4.5.6
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.ja.md +1 -1
- package/README.ko.md +46 -5
- package/README.md +46 -5
- package/README.zh.md +1 -1
- package/dist/bundle.js +158 -157
- package/package.json +6 -2
- package/scripts/install-host-mcp.mjs +104 -17
- package/scripts/uninstall-host-mcp.mjs +28 -4
package/README.ja.md
CHANGED
package/README.ko.md
CHANGED
|
@@ -22,20 +22,50 @@ Claude는 기존 플러그인 설치 UX를 그대로 유지합니다. Agestra가
|
|
|
22
22
|
|
|
23
23
|
### Codex CLI
|
|
24
24
|
|
|
25
|
+
저장소 체크아웃 기준:
|
|
26
|
+
|
|
25
27
|
```
|
|
26
28
|
npm run bundle
|
|
27
29
|
npm run install:codex
|
|
28
30
|
```
|
|
29
31
|
|
|
32
|
+
전역 npm 패키지 기준:
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
npm install -g agestra
|
|
36
|
+
agestra-install codex
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
저장소에서 작업 중이지만 등록 대상은 전역 npm 패키지로 하고 싶다면:
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
npm run install:codex:global
|
|
43
|
+
```
|
|
44
|
+
|
|
30
45
|
Codex는 저장소 루트의 [AGENTS.md](AGENTS.md)와 등록된 `agestra` MCP 서버를 함께 사용합니다.
|
|
31
46
|
|
|
32
47
|
### Gemini CLI
|
|
33
48
|
|
|
49
|
+
저장소 체크아웃 기준:
|
|
50
|
+
|
|
34
51
|
```
|
|
35
52
|
npm run bundle
|
|
36
53
|
npm run install:gemini
|
|
37
54
|
```
|
|
38
55
|
|
|
56
|
+
전역 npm 패키지 기준:
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
npm install -g agestra
|
|
60
|
+
agestra-install gemini
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
저장소에서 작업 중이지만 등록 대상은 전역 npm 패키지로 하고 싶다면:
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
npm run install:gemini:global
|
|
67
|
+
```
|
|
68
|
+
|
|
39
69
|
Gemini는 저장소 루트의 [GEMINI.md](GEMINI.md)와 [`.gemini/commands/agestra/`](.gemini/commands/agestra) 프로젝트 커맨드를 함께 사용합니다.
|
|
40
70
|
|
|
41
71
|
설치 후 Gemini에서 사용할 수 있는 명령:
|
|
@@ -55,10 +85,21 @@ Gemini는 저장소 루트의 [GEMINI.md](GEMINI.md)와 [`.gemini/commands/agest
|
|
|
55
85
|
| [Gemini CLI](https://github.com/google-gemini/gemini-cli) | `npm install -g @google/gemini-cli` | 클라우드 |
|
|
56
86
|
| [Codex CLI](https://github.com/openai/codex) | `npm install -g @openai/codex` | 클라우드 |
|
|
57
87
|
|
|
58
|
-
선택 사항이지만 권장:
|
|
59
|
-
- **tmux** — 자율 실행 중 CLI 워커 패인을 시각적으로 확인 가능
|
|
60
|
-
|
|
61
|
-
|
|
88
|
+
선택 사항이지만 권장:
|
|
89
|
+
- **tmux** — 자율 실행 중 CLI 워커 패인을 시각적으로 확인 가능
|
|
90
|
+
- **Windows의 ripgrep (`rg`)** — Codex가 Store 앱 번들 경로의 `rg`를 잡아서 `Access is denied` 오류가 나면, 별도 ripgrep를 설치해 정상 `rg.exe`가 `PATH`에서 먼저 잡히게 하세요:
|
|
91
|
+
|
|
92
|
+
```
|
|
93
|
+
cargo install ripgrep
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
대안:
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
winget install BurntSushi.ripgrep.MSVC
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
---
|
|
62
103
|
|
|
63
104
|
## 철학
|
|
64
105
|
|
|
@@ -118,7 +159,7 @@ Gemini는 저장소 루트의 [GEMINI.md](GEMINI.md)와 [`.gemini/commands/agest
|
|
|
118
159
|
|
|
119
160
|
## 아키텍처
|
|
120
161
|
|
|
121
|
-
Turborepo 모노레포,
|
|
162
|
+
Turborepo 모노레포, 9개 패키지:
|
|
122
163
|
|
|
123
164
|
| 패키지 | 설명 |
|
|
124
165
|
|--------|------|
|
package/README.md
CHANGED
|
@@ -22,20 +22,50 @@ Claude keeps the existing plugin UX. Agestra auto-detects available providers (C
|
|
|
22
22
|
|
|
23
23
|
### Codex CLI
|
|
24
24
|
|
|
25
|
+
Repository checkout:
|
|
26
|
+
|
|
25
27
|
```
|
|
26
28
|
npm run bundle
|
|
27
29
|
npm run install:codex
|
|
28
30
|
```
|
|
29
31
|
|
|
32
|
+
Global npm package:
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
npm install -g agestra
|
|
36
|
+
agestra-install codex
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
If you want to register the global package while working from a repo checkout, use:
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
npm run install:codex:global
|
|
43
|
+
```
|
|
44
|
+
|
|
30
45
|
Codex uses the repository-level [AGENTS.md](AGENTS.md) instructions plus the registered `agestra` MCP server.
|
|
31
46
|
|
|
32
47
|
### Gemini CLI
|
|
33
48
|
|
|
49
|
+
Repository checkout:
|
|
50
|
+
|
|
34
51
|
```
|
|
35
52
|
npm run bundle
|
|
36
53
|
npm run install:gemini
|
|
37
54
|
```
|
|
38
55
|
|
|
56
|
+
Global npm package:
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
npm install -g agestra
|
|
60
|
+
agestra-install gemini
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
If you want to register the global package while working from a repo checkout, use:
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
npm run install:gemini:global
|
|
67
|
+
```
|
|
68
|
+
|
|
39
69
|
Gemini uses the repository-level [GEMINI.md](GEMINI.md) context file plus project commands under [`.gemini/commands/agestra/`](.gemini/commands/agestra).
|
|
40
70
|
|
|
41
71
|
Available Gemini commands after setup:
|
|
@@ -55,10 +85,21 @@ At least one AI provider must be installed:
|
|
|
55
85
|
| [Gemini CLI](https://github.com/google-gemini/gemini-cli) | `npm install -g @google/gemini-cli` | Cloud |
|
|
56
86
|
| [Codex CLI](https://github.com/openai/codex) | `npm install -g @openai/codex` | Cloud |
|
|
57
87
|
|
|
58
|
-
Optional but recommended:
|
|
59
|
-
- **tmux** — enables visible CLI worker panes during autonomous execution
|
|
60
|
-
|
|
61
|
-
|
|
88
|
+
Optional but recommended:
|
|
89
|
+
- **tmux** — enables visible CLI worker panes during autonomous execution
|
|
90
|
+
- **ripgrep (`rg`)** on Windows — if Codex resolves `rg` to its bundled Store-app path and fails with an "Access is denied" error, install ripgrep separately so a normal `rg.exe` is found first in `PATH`:
|
|
91
|
+
|
|
92
|
+
```
|
|
93
|
+
cargo install ripgrep
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Alternative:
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
winget install BurntSushi.ripgrep.MSVC
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
---
|
|
62
103
|
|
|
63
104
|
## Philosophy
|
|
64
105
|
|
|
@@ -118,7 +159,7 @@ Each command presents a choice:
|
|
|
118
159
|
|
|
119
160
|
## Architecture
|
|
120
161
|
|
|
121
|
-
Turborepo monorepo with
|
|
162
|
+
Turborepo monorepo with 9 packages:
|
|
122
163
|
|
|
123
164
|
| Package | Description |
|
|
124
165
|
|---------|-------------|
|