agentgui 1.0.800 → 1.0.801
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.md +4 -2
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -39,7 +39,7 @@ lib/oauth-codex.js Codex CLI OAuth flow (PKCE S256, token exchange, callback
|
|
|
39
39
|
lib/plugin-interface.js Plugin interface contract definition
|
|
40
40
|
lib/plugin-loader.js Plugin discovery and loading (EventEmitter-based)
|
|
41
41
|
lib/pm2-manager.js PM2 process management wrapper
|
|
42
|
-
lib/speech.js Speech-to-text and text-to-speech via
|
|
42
|
+
lib/speech.js Speech-to-text and text-to-speech via webtalk (lazy-loaded, on-demand install)
|
|
43
43
|
lib/speech-manager.js TTS orchestration (eager TTS, voice cache, model download, broadcastModelProgress)
|
|
44
44
|
lib/tool-install-machine.js XState v5 machine per tool: unchecked/checking/idle/installing/installed/updating/needs_update/failed states
|
|
45
45
|
lib/tool-manager.js Tool facade - re-exports from tool-version, tool-spawner, tool-provisioner
|
|
@@ -223,11 +223,13 @@ Tool updates are managed through a complete pipeline:
|
|
|
223
223
|
|
|
224
224
|
## Tool Detection System
|
|
225
225
|
|
|
226
|
-
TOOLS array in `lib/tool-manager.js` —
|
|
226
|
+
TOOLS array in `lib/tool-manager.js` — three categories:
|
|
227
227
|
- **`cli`**: `{ id, name, pkg, category: 'cli' }` — detected via `which <bin>` + `<bin> --version`
|
|
228
228
|
- **`plugin`**: `{ id, name, pkg, installPkg, pluginId, category: 'plugin', frameWork }` — detected via plugin.json files
|
|
229
|
+
- **`npm-local`**: `{ id, name, pkg, category: 'npm-local' }` — detected via `node_modules/<pkg>/package.json`, installed via `npm install --save` in project root
|
|
229
230
|
|
|
230
231
|
Current tools:
|
|
232
|
+
- `speech-engine`: pkg=`webtalk`, category=`npm-local` — STT/TTS (Whisper + ONNX), not a hard npm dep; install from tools tab
|
|
231
233
|
- `cli-claude`: bin=`claude`, pkg=`@anthropic-ai/claude-code`
|
|
232
234
|
- `cli-opencode`: bin=`opencode`, pkg=`opencode-ai`
|
|
233
235
|
- `cli-gemini`: bin=`gemini`, pkg=`@google/gemini-cli`
|