agestra 4.4.1 → 4.4.2
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/agents/agestra-moderator.md +11 -9
- package/commands/review.md +12 -4
- package/dist/bundle.js +149 -148
- package/package.json +13 -13
- package/skills/review.md +8 -0
|
@@ -246,15 +246,17 @@ If after 5 rounds no consensus:
|
|
|
246
246
|
- Let the user decide
|
|
247
247
|
</Consensus_Criteria>
|
|
248
248
|
|
|
249
|
-
<Constraints>
|
|
250
|
-
- No maximum rounds — continue until all participants agree. Every 10 rounds, ask the user whether to continue or stop with the current state.
|
|
251
|
-
- Do NOT express your own opinion on the debate topic. You are a facilitator, not a participant.
|
|
252
|
-
- Do NOT skip Claude's turn. Claude's independent participation (via the specialist agent's perspective) is a core feature.
|
|
253
|
-
-
|
|
254
|
-
-
|
|
255
|
-
-
|
|
256
|
-
-
|
|
257
|
-
|
|
249
|
+
<Constraints>
|
|
250
|
+
- No maximum rounds — continue until all participants agree. Every 10 rounds, ask the user whether to continue or stop with the current state.
|
|
251
|
+
- Do NOT express your own opinion on the debate topic. You are a facilitator, not a participant.
|
|
252
|
+
- Do NOT skip Claude's turn. Claude's independent participation (via the specialist agent's perspective) is a core feature.
|
|
253
|
+
- When a specialist or reviewer agent is running in the background, wait for its actual output. Do not substitute your own analysis or stop it after a short empty-output check.
|
|
254
|
+
- Poll long-running background reviewers at reasonable intervals (about once per minute). Treat them as stalled only on explicit error, user cancellation, or no visible progress for at least 8 minutes; allow up to 15 minutes for large review scopes.
|
|
255
|
+
- Summarize neutrally. Do not favor any provider's position.
|
|
256
|
+
- If only one external provider is available, still run the process (Claude + 1 provider is a valid 2-party discussion).
|
|
257
|
+
- If no external providers are available, inform the user and suggest "Claude only" mode instead.
|
|
258
|
+
- Communicate in the user's language.
|
|
259
|
+
</Constraints>
|
|
258
260
|
|
|
259
261
|
<Tool_Usage>
|
|
260
262
|
- `provider_list` — check available providers at the start
|
package/commands/review.md
CHANGED
|
@@ -61,10 +61,18 @@ Use AskUserQuestion to present these options (in the user's language):
|
|
|
61
61
|
|
|
62
62
|
Only show options whose conditions are met. If no providers are available, skip and run Claude only.
|
|
63
63
|
|
|
64
|
-
## Step 5: Execute based on selection
|
|
65
|
-
|
|
66
|
-
###
|
|
67
|
-
|
|
64
|
+
## Step 5: Execute based on selection
|
|
65
|
+
|
|
66
|
+
### Execution discipline for "각자 독립" and "끝장토론"
|
|
67
|
+
|
|
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
|
+
- 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
|
+
- 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
|
+
- 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
|
+
- 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.
|
|
73
|
+
|
|
74
|
+
### If "Claude only":
|
|
75
|
+
Spawn the `agestra-reviewer` agent with the target and selected focus areas as context.
|
|
68
76
|
|
|
69
77
|
### If "각자 독립":
|
|
70
78
|
|