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.
@@ -12,7 +12,7 @@
12
12
  "name": "agestra",
13
13
  "source": "./",
14
14
  "description": "Orchestrate Ollama, Gemini, and Codex for multi-AI debates, cross-validation, and GraphRAG memory",
15
- "version": "4.3.4",
15
+ "version": "4.3.5",
16
16
  "author": {
17
17
  "name": "mua-vtuber"
18
18
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agestra",
3
- "version": "4.3.4",
3
+ "version": "4.3.5",
4
4
  "description": "Claude Code plugin — orchestrate Ollama, Gemini, and Codex for multi-AI debates, cross-validation, and GraphRAG memory",
5
5
  "mcpServers": {
6
6
  "agestra": {
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 메모리 시스템을 40개 MCP 도구로 제공합니다.
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 프로토콜 레이어, 40개 도구, 디스패치 |
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
- ## 도구 (40개)
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 서버, 49개 도구, 디스패치
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 40 MCP tools.
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, 40 tools, dispatch |
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`). New providers require no existing code changes.
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 (40)
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, 49 tools, dispatch
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
- No residual files in your project. Clean removal.
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