agestra 4.5.6 → 4.5.7

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.5.6",
15
+ "version": "4.5.7",
16
16
  "author": {
17
17
  "name": "mua-vtuber"
18
18
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agestra",
3
- "version": "4.5.6",
3
+ "version": "4.5.7",
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": {
@@ -67,16 +67,18 @@ Only show options whose conditions are met. If no providers are available, skip
67
67
 
68
68
  - Prefer Agestra MCP tools for external providers (`ai_chat`, `ai_analyze_files`, `agent_debate_*`, `workspace_*`, `cli_job_submit` when a direct provider retry is needed).
69
69
  - Do NOT launch raw Bash retries such as `codex exec ...` or `gemini ...` yourself, and do NOT invent provider-specific flags. If a retry is required, use `cli_job_submit` with the provider's default mapping unless you have just verified the current CLI help output in this environment.
70
+ - Exclude `ollama` from review workflows even if it is available. For repository/code reviews, use only review-capable external providers such as `gemini`, `codex`, and registered Claude-backed reviewers.
70
71
  - Treat the Claude reviewer agent as asynchronous work that may legitimately take several minutes. Poll about once per minute; an empty or slowly growing output file is not a failure by itself.
71
72
  - Do NOT stop or replace the Claude reviewer with a duplicate main-thread review unless there is an explicit error, the user asks to cancel, or there has been no visible progress for at least 8 minutes. For large review scopes, allow up to 15 minutes before declaring the reviewer stalled.
72
73
  - If a background reviewer is still running, tell the user you are waiting and continue the orchestration. Do not short-circuit the workflow just because another provider finished earlier.
74
+ - For "끝장토론", do NOT use `agent_debate_moderate` as the primary review path. Use the turn-based flow (`agent_debate_create` + iterative `agent_debate_review` / `agent_debate_turn` + `agent_debate_conclude`) so long-running review rounds do not get cut off by host tool-call time limits.
73
75
 
74
76
  ### If "Claude only":
75
77
  Spawn the `agestra-reviewer` agent with the target and selected focus areas as context.
76
78
 
77
79
  ### If "각자 독립":
78
80
 
79
- **팀 구성:** `agestra-moderator` (리더) + `agestra-reviewer` (Claude) + 사용 가능한 외부 AI (gemini, codex, ollama )
81
+ **팀 구성:** `agestra-moderator` (리더) + `agestra-reviewer` (Claude) + 리뷰용 외부 AI (`gemini`, `codex`, 등록된 Claude-backed reviewer 등; `ollama` 제외)
80
82
 
81
83
  1. In parallel:
82
84
  - Spawn the `agestra-reviewer` agent for Claude's independent analysis.
@@ -111,25 +113,29 @@ Spawn the `agestra-reviewer` agent with the target and selected focus areas as c
111
113
 
112
114
  ### If "끝장토론":
113
115
 
114
- **팀 구성:** `agestra-moderator` (리더) + `agestra-reviewer` (Claude) + 사용 가능한 외부 AI (gemini, codex, ollama )
115
-
116
- 1. Execute "각자 독립" steps 1-3 above (independent work + initial aggregation).
117
- - The moderator's integrated document becomes the starting document.
118
-
119
- 2. Document review rounds (no max until all agree):
120
- a. Moderator sends the current document to each AI for review:
121
- - Claude: spawn `agestra-reviewer` analyze document write section-by-section feedback
122
- - Other providers: `agent_debate_turn` with the document as prompt, requesting agree/disagree per section
123
- b. Moderator collects all feedback.
124
- c. Classify: agree/disagree per section per provider.
125
- d. Revise document incorporating disagreement feedback.
126
- e. If all providers agree on all sections → consensus reached.
127
- f. If not next round with revised document.
128
- g. **Every 10 rounds:** Ask the user via AskUserQuestion whether to continue or stop with current state.
129
-
130
- 3. Present the final document:
131
- - Consensus sections: marked as agreed
132
- - Disputed sections: show split positions with each provider's rationale
116
+ **팀 구성:** `agestra-moderator` (리더) + `agestra-reviewer` (Claude) + 리뷰용 외부 AI (`gemini`, `codex`, 등록된 Claude-backed reviewer 등; `ollama` 제외)
117
+
118
+ 1. Execute "각자 독립" steps 1-3 above (independent work + initial aggregation).
119
+ - The moderator's integrated document becomes the starting document.
120
+
121
+ 2. Start a turn-based debate session with `agent_debate_create`.
122
+ - Use the integrated document's title/topic as the debate topic.
123
+ - Reuse the same reviewer set from step 1, excluding `ollama`.
124
+
125
+ 3. Document review rounds (no max — until all agree):
126
+ a. Moderator sends the current document to Claude reviewer asynchronously.
127
+ b. Moderator sends the same current document to non-Claude providers with `agent_debate_review`.
128
+ c. Moderator collects all feedback and updates the working document.
129
+ d. If a provider needs a follow-up reply to another provider's point, add a targeted `agent_debate_turn` in the same debate session rather than restarting the workflow.
130
+ e. If all providers agree on all sections consensus reached.
131
+ f. If not → next round with the revised document.
132
+ g. **Every 10 rounds:** Ask the user via AskUserQuestion whether to continue or stop with current state.
133
+
134
+ 4. When consensus is reached, record the moderator's final synthesis with `agent_debate_conclude`.
135
+
136
+ 5. Present the final document:
137
+ - Consensus sections: marked as agreed
138
+ - Disputed sections: show split positions with each provider's rationale
133
139
 
134
140
  ### If "Other":
135
141
  Follow the user's specified approach.