agestra 4.13.2 → 4.13.4
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 +10 -4
- package/.claude-plugin/plugin.json +2 -2
- package/README.ja.md +102 -59
- package/README.ko.md +74 -20
- package/README.md +70 -16
- package/README.zh.md +105 -62
- package/agents/agestra-moderator.md +8 -8
- package/agents/agestra-team-lead.md +90 -35
- package/commands/design.md +1 -1
- package/commands/idea.md +2 -2
- package/commands/implement.md +5 -4
- package/commands/qa.md +3 -2
- package/commands/review.md +4 -2
- package/commands/security.md +2 -1
- package/dist/bundle.js +189 -180
- package/hooks/user-prompt-submit.js +2 -2
- package/package.json +9 -3
- package/skills/design.md +1 -1
- package/skills/idea.md +1 -1
- package/skills/provider-guide.md +8 -8
- package/skills/review.md +1 -1
|
@@ -212,8 +212,8 @@ process.stdin.on("end", () => {
|
|
|
212
212
|
" 1. Call `setup_status`, `environment_check`, and `provider_list`",
|
|
213
213
|
" 2. Follow `commands/implement.md`",
|
|
214
214
|
" 3. Present a task-to-provider routing table before spawning workers",
|
|
215
|
-
" 4.
|
|
216
|
-
" 5. Use `agestra-implementer
|
|
215
|
+
" 4. Distribute work according to detected model capability, including frontier and local models",
|
|
216
|
+
" 5. Use safe edit-capable paths for actual code edits: `agestra-implementer`, Codex/Gemini CLI workers, or write-enabled local/tool models when policy and capability qualify",
|
|
217
217
|
"",
|
|
218
218
|
"If user selects NO:",
|
|
219
219
|
" Proceed without Agestra task distribution. Handle the task directly.",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agestra",
|
|
3
|
-
"version": "4.13.
|
|
4
|
-
"description": "Multi-host
|
|
3
|
+
"version": "4.13.4",
|
|
4
|
+
"description": "Multi-host MCP orchestration for Claude Code, Codex CLI, Gemini CLI, and local models",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "npm@11.11.0",
|
|
7
7
|
"workspaces": [
|
|
@@ -56,14 +56,20 @@
|
|
|
56
56
|
},
|
|
57
57
|
"keywords": [
|
|
58
58
|
"claude-code-plugin",
|
|
59
|
+
"mcp-server",
|
|
59
60
|
"codex-cli",
|
|
60
61
|
"gemini-cli",
|
|
61
62
|
"mcp",
|
|
63
|
+
"multi-agent",
|
|
62
64
|
"multi-ai",
|
|
63
65
|
"ollama",
|
|
66
|
+
"local-llm",
|
|
64
67
|
"gemini",
|
|
65
68
|
"codex",
|
|
66
|
-
"ai-orchestration"
|
|
69
|
+
"ai-orchestration",
|
|
70
|
+
"agent-orchestration",
|
|
71
|
+
"code-review",
|
|
72
|
+
"cross-validation"
|
|
67
73
|
],
|
|
68
74
|
"repository": {
|
|
69
75
|
"type": "git",
|
package/skills/design.md
CHANGED
|
@@ -127,7 +127,7 @@ Team-lead owns:
|
|
|
127
127
|
- Spawn `agestra:agestra-moderator` or `agestra:agestra-designer` directly when external providers are involved
|
|
128
128
|
- Build individual documents or hand-edit generated debate/synthesis Markdown
|
|
129
129
|
|
|
130
|
-
Direct execution from this skill bypasses team-lead's
|
|
130
|
+
Direct execution from this skill bypasses team-lead's capability-based routing and optional trace-assisted signals (`trace_summary`), task design, and consistency enforcement. Always go through team-lead in Branch B.
|
|
131
131
|
|
|
132
132
|
When team-lead returns, present the synthesis to the user in the user's language. Preserve each provider's rationale on disputed positions.
|
|
133
133
|
|
package/skills/idea.md
CHANGED
|
@@ -118,7 +118,7 @@ Team-lead owns:
|
|
|
118
118
|
- Spawn `agestra:agestra-moderator` or `agestra:agestra-ideator` directly when external providers are involved
|
|
119
119
|
- Build individual documents or hand-edit generated debate/synthesis Markdown
|
|
120
120
|
|
|
121
|
-
Direct execution from this skill bypasses team-lead's
|
|
121
|
+
Direct execution from this skill bypasses team-lead's capability-based routing and optional trace-assisted signals (`trace_summary`), task design, and consistency enforcement. Always go through team-lead in Branch B.
|
|
122
122
|
|
|
123
123
|
When team-lead returns, present the synthesis to the user in the user's language. Preserve each provider's rationale on disputed positions. Treat `.agestra/workspace/` as the internal research/debate workspace; the user-facing decision record belongs under `docs/ideas/`.
|
|
124
124
|
|
package/skills/provider-guide.md
CHANGED
|
@@ -68,9 +68,9 @@ Two modes available via team-lead orchestration:
|
|
|
68
68
|
| **Leader-host only** | `agestra-implementer` applies scoped code changes; reviewer/QA verify | Simple or risky tasks that should stay under the current host |
|
|
69
69
|
| **Suggested AI distribution** | Team lead proposes which enabled AIs should do which work, asks for approval, then dispatches | Complex, repetitive, or parallelizable tasks |
|
|
70
70
|
|
|
71
|
-
Small is not the same as simple:
|
|
71
|
+
Small is not the same as simple. Distribute work according to detected model capability, including frontier and local models:
|
|
72
72
|
- **Small but hard/risky:** one-line auth, security, concurrency, data-loss, or release logic. Keep with `agestra-implementer` or a high-capability CLI worker plus QA.
|
|
73
|
-
- **Large but simple:** repeated safe pattern across many files. Prefer
|
|
73
|
+
- **Large but simple:** repeated safe pattern across many files. Prefer a capability-matched local/tool model for a patch plan, candidate transform, or scoped edit when execution policy allows; otherwise have `agestra-implementer` apply it.
|
|
74
74
|
|
|
75
75
|
## CLI Workers
|
|
76
76
|
|
|
@@ -91,10 +91,10 @@ Use the `worker-manage` skill for user-friendly worker operations.
|
|
|
91
91
|
|
|
92
92
|
| Task Complexity | Route To |
|
|
93
93
|
|---|---|
|
|
94
|
-
| Simple repetitive proposal work (formatting, pattern matching) |
|
|
95
|
-
| Moderate (code review, summarization) |
|
|
96
|
-
| Complex implementation (multi-file, multi-step) | CLI worker (Codex/Gemini) |
|
|
97
|
-
| Complex analysis (architecture, refactoring) |
|
|
94
|
+
| Simple repetitive proposal work (formatting, pattern matching) | Capability-matched local/tool model or host implementer |
|
|
95
|
+
| Moderate (code review, summarization) | Local model tier that qualifies, or a frontier provider |
|
|
96
|
+
| Complex implementation (multi-file, multi-step) | High-capability CLI worker (for example Codex/Gemini) or host implementer |
|
|
97
|
+
| Complex analysis (architecture, refactoring) | Highest-capability detected model, usually a frontier provider |
|
|
98
98
|
| No providers available | Handle directly — do not suggest agestra tools |
|
|
99
99
|
|
|
100
100
|
## When to Suggest Agestra Tools
|
|
@@ -176,7 +176,7 @@ When team-lead orchestrates multi-AI work, the full pipeline is:
|
|
|
176
176
|
Phase 0: Clarity Gate (designer — ambiguity scoring, skip if request is clear)
|
|
177
177
|
Phase 1: Situation Assessment (team-lead — environment_check, providers, design doc)
|
|
178
178
|
Phase 2: Task Design (team-lead — work mode selection, decompose, route by AI capability)
|
|
179
|
-
Phase 3: Parallel Execution (team-lead — implementer + CLI workers +
|
|
179
|
+
Phase 3: Parallel Execution (team-lead — implementer + CLI workers + capability-matched local/tool model work, monitor loop)
|
|
180
180
|
Phase 4: Result Inspection (team-lead — review diffs, check consistency, merge)
|
|
181
181
|
Phase 5: QA Cycle (qa — spec-to-code map, verify, classify failures → team-lead auto-fixes, max 5 cycles) [host-local mode]
|
|
182
182
|
Phase 5M: Structured QA Debate (mode:"review", cross-validation across providers) [multi-AI mode]
|
|
@@ -190,7 +190,7 @@ Phase 7: Report
|
|
|
190
190
|
|
|
191
191
|
**Work modes:**
|
|
192
192
|
- `Leader-host only`: `agestra-implementer` implements, no external workers
|
|
193
|
-
- `Multi-AI`: CLI workers +
|
|
193
|
+
- `Multi-AI`: CLI workers + capability-matched local/tool model work for parallelized execution; team lead supervises and merges
|
|
194
194
|
|
|
195
195
|
**QA domain:**
|
|
196
196
|
- `/agestra qa` verifies existing work without code changes. It asks Standard vs Full E2E depth, writes a QA report under `docs/reports/qa/`, then runs host-local QA or multi-AI QA debate. It never spawns implementer or CLI workers for product fixes. If QA decides persistent E2E tests are needed, team-lead asks the user and routes only the approved test work to `agestra-e2e-writer`.
|
package/skills/review.md
CHANGED
|
@@ -105,7 +105,7 @@ Team-lead owns:
|
|
|
105
105
|
- Spawn `agestra:agestra-moderator` or `agestra:agestra-reviewer` directly when external providers are involved
|
|
106
106
|
- Build individual documents or aggregate them yourself
|
|
107
107
|
|
|
108
|
-
Direct execution from this skill bypasses team-lead's task design,
|
|
108
|
+
Direct execution from this skill bypasses team-lead's task design, capability-based routing with optional trace-assisted signals (`trace_summary`), and consistency enforcement. Always go through team-lead in Branch B.
|
|
109
109
|
|
|
110
110
|
### Phase 4: Review Verdict
|
|
111
111
|
|