agestra 4.3.4 → 4.3.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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.ko.md +6 -6
- package/README.md +6 -6
- package/dist/bundle.js +161 -134
- package/package.json +1 -1
package/README.ko.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
[English](README.md) | [한국어](README.ko.md)
|
|
9
9
|
|
|
10
|
-
Agestra는 Ollama(로컬), Gemini CLI, Codex CLI를 Claude Code에 플러그형으로 연결합니다. 독립 취합, 합의 토론, 자율 CLI 워커, 병렬 작업 분배, 교차 검증, 품질 기반 공급자 라우팅, 지속적 GraphRAG 메모리 시스템을
|
|
10
|
+
Agestra는 Ollama(로컬), Gemini CLI, Codex CLI를 Claude Code에 플러그형으로 연결합니다. 독립 취합, 합의 토론, 자율 CLI 워커, 병렬 작업 분배, 교차 검증, 품질 기반 공급자 라우팅, 지속적 GraphRAG 메모리 시스템을 41개 MCP 도구로 제공합니다.
|
|
11
11
|
|
|
12
12
|
## 빠른 시작
|
|
13
13
|
|
|
@@ -94,11 +94,11 @@ Turborepo 모노레포, 8개 패키지:
|
|
|
94
94
|
| `@agestra/agents` | 합의 검출 토론 엔진, 턴 품질 평가기, 작업 분배기, 교차 검증기, 작업 체인, 자동 QA, 파일 변경 추적기, 세션 관리자 |
|
|
95
95
|
| `@agestra/workspace` | 코드 리뷰 워크플로우용 문서 관리자 |
|
|
96
96
|
| `@agestra/memory` | GraphRAG — FTS5 + 벡터 + 지식 그래프 하이브리드 검색, 실패 추적 |
|
|
97
|
-
| `@agestra/mcp-server` | MCP 프로토콜 레이어,
|
|
97
|
+
| `@agestra/mcp-server` | MCP 프로토콜 레이어, 41개 도구, 환경별 도구 필터링, 디스패치 |
|
|
98
98
|
|
|
99
99
|
### 설계 원칙
|
|
100
100
|
|
|
101
|
-
- **공급자 추상화** — 모든 백엔드가 `AIProvider`(`chat`, `healthCheck`, `getCapabilities`)를 구현.
|
|
101
|
+
- **공급자 추상화** — 모든 백엔드가 `AIProvider`(`chat`, `healthCheck`, `getCapabilities`)를 구현. 새 공급자 추가는 전용 패키지 구현과 팩토리 등록으로 분리됩니다.
|
|
102
102
|
- **제로 설정** — 시작 시 공급자를 자동 감지. 수동 설정 불필요.
|
|
103
103
|
- **플러그인 네이티브** — Claude Code 플러그인으로 설치. Skills, hooks, MCP 서버가 함께 번들.
|
|
104
104
|
- **모듈형 디스패치** — 각 도구 카테고리가 `getTools()` + `handleTool()`을 내보내는 독립 모듈. 서버가 동적으로 수집·디스패치.
|
|
@@ -116,7 +116,7 @@ Turborepo 모노레포, 8개 패키지:
|
|
|
116
116
|
|
|
117
117
|
---
|
|
118
118
|
|
|
119
|
-
## 도구 (
|
|
119
|
+
## 도구 (41개)
|
|
120
120
|
|
|
121
121
|
### AI 채팅 (3개)
|
|
122
122
|
|
|
@@ -297,7 +297,7 @@ agestra/
|
|
|
297
297
|
│ ├── agents/ # 토론 엔진, 분배기, 교차 검증기
|
|
298
298
|
│ ├── workspace/ # 코드 리뷰 문서 관리자
|
|
299
299
|
│ ├── memory/ # GraphRAG: 하이브리드 검색, 실패 추적
|
|
300
|
-
│ └── mcp-server/ # MCP 서버,
|
|
300
|
+
│ └── mcp-server/ # MCP 서버, 41개 도구, 환경별 필터링, 디스패치
|
|
301
301
|
├── package.json # 워크스페이스 루트
|
|
302
302
|
└── turbo.json # Turborepo 파이프라인
|
|
303
303
|
```
|
|
@@ -318,7 +318,7 @@ Claude Code에서:
|
|
|
318
318
|
/plugin uninstall agestra@agestra
|
|
319
319
|
```
|
|
320
320
|
|
|
321
|
-
프로젝트에
|
|
321
|
+
플러그인 자체는 깔끔하게 제거됩니다. 프로젝트에 생성된 데이터까지 지우려면 `.agestra/` 디렉터리를 수동으로 삭제하세요.
|
|
322
322
|
|
|
323
323
|
---
|
|
324
324
|
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
[English](README.md) | [한국어](README.ko.md)
|
|
9
9
|
|
|
10
|
-
Agestra connects Ollama (local), Gemini CLI, and Codex CLI to Claude Code as pluggable providers, enabling multi-agent orchestration with independent aggregation, consensus debates, autonomous CLI workers, parallel task dispatch, cross-validation, quality-based provider routing, and a persistent GraphRAG memory system — all through
|
|
10
|
+
Agestra connects Ollama (local), Gemini CLI, and Codex CLI to Claude Code as pluggable providers, enabling multi-agent orchestration with independent aggregation, consensus debates, autonomous CLI workers, parallel task dispatch, cross-validation, quality-based provider routing, and a persistent GraphRAG memory system — all through 41 MCP tools.
|
|
11
11
|
|
|
12
12
|
## Quick Start
|
|
13
13
|
|
|
@@ -94,11 +94,11 @@ Turborepo monorepo with 8 packages:
|
|
|
94
94
|
| `@agestra/agents` | Debate engine with consensus detection, turn quality evaluator, task dispatcher, cross-validator, task chain, auto-QA, file change tracker, session manager |
|
|
95
95
|
| `@agestra/workspace` | Document manager for code review workflows |
|
|
96
96
|
| `@agestra/memory` | GraphRAG — FTS5 + vector + knowledge graph hybrid search, dead-end tracking |
|
|
97
|
-
| `@agestra/mcp-server` | MCP protocol layer,
|
|
97
|
+
| `@agestra/mcp-server` | MCP protocol layer, 41 tools, environment-aware tool filtering, dispatch |
|
|
98
98
|
|
|
99
99
|
### Design Principles
|
|
100
100
|
|
|
101
|
-
- **Provider abstraction** — All backends implement `AIProvider` (`chat`, `healthCheck`, `getCapabilities`).
|
|
101
|
+
- **Provider abstraction** — All backends implement `AIProvider` (`chat`, `healthCheck`, `getCapabilities`). Adding a new provider is isolated to a provider package plus factory registration.
|
|
102
102
|
- **Zero-config** — Providers are auto-detected at startup. No manual configuration required.
|
|
103
103
|
- **Plugin-native** — Installed as a Claude Code plugin. Skills, hooks, and MCP server are bundled together.
|
|
104
104
|
- **Modular dispatch** — Each tool category is an independent module with `getTools()` + `handleTool()`. The server collects and dispatches dynamically.
|
|
@@ -116,7 +116,7 @@ Turborepo monorepo with 8 packages:
|
|
|
116
116
|
|
|
117
117
|
---
|
|
118
118
|
|
|
119
|
-
## Tools (
|
|
119
|
+
## Tools (41)
|
|
120
120
|
|
|
121
121
|
### AI Chat (3)
|
|
122
122
|
|
|
@@ -297,7 +297,7 @@ agestra/
|
|
|
297
297
|
│ ├── agents/ # Debate engine, dispatcher, cross-validator
|
|
298
298
|
│ ├── workspace/ # Code review document manager
|
|
299
299
|
│ ├── memory/ # GraphRAG: hybrid search, dead-end tracking
|
|
300
|
-
│ └── mcp-server/ # MCP server,
|
|
300
|
+
│ └── mcp-server/ # MCP server, 41 tools, environment-aware filtering, dispatch
|
|
301
301
|
├── package.json # Workspace root
|
|
302
302
|
└── turbo.json # Turborepo pipeline
|
|
303
303
|
```
|
|
@@ -318,7 +318,7 @@ In Claude Code:
|
|
|
318
318
|
/plugin uninstall agestra@agestra
|
|
319
319
|
```
|
|
320
320
|
|
|
321
|
-
|
|
321
|
+
The plugin is removed cleanly. If you want to delete generated project data as well, remove the `.agestra/` directory manually.
|
|
322
322
|
|
|
323
323
|
---
|
|
324
324
|
|