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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agestra",
3
- "version": "4.3.0",
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.js",
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. **Task Chain** — Call `agent_task_chain_status` to check for running chains
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
 
@@ -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` or `agent_assign_task` (text response)
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 | `agent_dispatch` or CLI workers | User wants faster execution or has independent tasks |
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 `agent_assign_task` | Route directly to the named provider |
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 `agent_dispatch` | Split by file/module for parallel processing |
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