agestra 4.3.0 → 4.3.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/README.ko.md +1 -10
- package/README.md +1 -10
- package/agents/agestra-qa.md +1 -1
- package/agents/agestra-team-lead.md +172 -99
- package/dist/bundle.js +95 -92
- package/package.json +2 -2
- package/skills/cancel.md +1 -3
- package/skills/provider-guide.md +4 -4
- /package/dist/{sql-wasm.js → sql-wasm.cjs} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agestra",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.2",
|
|
4
4
|
"description": "Claude Code plugin — orchestrate Ollama, Gemini, and Codex for multi-AI debates, cross-validation, and GraphRAG memory",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "npm@11.11.0",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"dist/bundle.js",
|
|
16
|
-
"dist/sql-wasm.
|
|
16
|
+
"dist/sql-wasm.cjs",
|
|
17
17
|
"dist/sql-wasm.wasm",
|
|
18
18
|
".claude-plugin/",
|
|
19
19
|
"agents/",
|
package/skills/cancel.md
CHANGED
|
@@ -16,9 +16,7 @@ Check for active operations in this order:
|
|
|
16
16
|
|
|
17
17
|
1. **CLI Workers** — Call `cli_worker_status` to check for workers in RUNNING or SPAWNING state
|
|
18
18
|
2. **Debate** — Call `agent_debate_status` to check for active debates
|
|
19
|
-
3. **
|
|
20
|
-
4. **Task** — Call `agent_task_status` for individual running tasks
|
|
21
|
-
5. **Background agents** — Check for any spawned background agents still running
|
|
19
|
+
3. **Background agents** — Check for any spawned background agents still running
|
|
22
20
|
|
|
23
21
|
If nothing is detected as active, inform the user: "No active Agestra operations found."
|
|
24
22
|
|
package/skills/provider-guide.md
CHANGED
|
@@ -42,7 +42,7 @@ Models change frequently. Always call `ollama_models` before assigning tasks.
|
|
|
42
42
|
### Gemini / Codex (Cloud)
|
|
43
43
|
|
|
44
44
|
Full-capability agents. Use for:
|
|
45
|
-
- Complex tasks via `ai_chat`
|
|
45
|
+
- Complex tasks via `ai_chat` (text response)
|
|
46
46
|
- Autonomous coding via `cli_worker_spawn` (file modifications in worktree)
|
|
47
47
|
- Parallel work and as validators
|
|
48
48
|
|
|
@@ -103,13 +103,13 @@ Match by **semantic intent**, not literal keywords. These triggers apply in any
|
|
|
103
103
|
| Code review, review request | `/agestra review` or `workspace_create_review` | User asks to review code, PR, or implementation |
|
|
104
104
|
| Second opinion, other perspectives | `ai_compare` or `/agestra review` (각자 독립) | User wants multiple viewpoints on a decision |
|
|
105
105
|
| Validation, verification, cross-check | `agent_cross_validate` | User wants to confirm correctness of work output |
|
|
106
|
-
| Speed up, parallelize, split work |
|
|
106
|
+
| Speed up, parallelize, split work | Team API or CLI workers | User wants faster execution or has independent tasks |
|
|
107
107
|
| Past experience, history, previous attempts | `memory_search` or `memory_dead_ends` | User asks about prior work or known issues |
|
|
108
108
|
| Remember this, save for later | `memory_store` | User wants to persist knowledge across sessions |
|
|
109
|
-
| Mention a provider by name (Gemini, Codex, Ollama) | `ai_chat` or `
|
|
109
|
+
| Mention a provider by name (Gemini, Codex, Ollama) | `ai_chat` or `cli_worker_spawn` | Route directly to the named provider |
|
|
110
110
|
| Architecture review, design discussion | `/agestra design` | Structured multi-AI architecture exploration |
|
|
111
111
|
| Compare options, which is better | `ai_compare` | Side-by-side comparison from multiple providers |
|
|
112
|
-
| Large refactoring, many files to change | CLI workers or
|
|
112
|
+
| Large refactoring, many files to change | CLI workers or Team API workers | Split by file/module for parallel processing |
|
|
113
113
|
| About to commit, create PR, finalize work | `agent_cross_validate` | Pre-commit validation by other AI providers |
|
|
114
114
|
| Check worker status, manage workers | `worker-manage` skill | User asks about running workers |
|
|
115
115
|
|
|
File without changes
|