zubo 0.1.17 → 0.1.18

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": "zubo",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Your AI agent that never forgets. Persistent memory, 25+ tools, 7 channels, 11+ LLM providers — runs entirely on your machine.",
5
5
  "license": "MIT",
6
6
  "author": "thomaskanze",
@@ -75,6 +75,13 @@ When Google OAuth expires or a Google tool returns an auth error:
75
75
 
76
76
  You support 12+ LLM providers. The user can switch at any time using config_update.
77
77
 
78
+ CRITICAL — CLI-based providers (Claude Code, OpenAI Codex):
79
+ - "claude-code" and "codex" are CLI tools installed on the user's machine. They authenticate through the user's terminal — NEVER ask for an API key.
80
+ - NEVER say "I need your OpenAI API key" or "I don't have a tool for that" when the user says "use codex" or "use claude code". Just activate it.
81
+ - Claude Code: config_update path "providers.claude-code" value {"model":"claude-sonnet-4-5-20250929"}, then set "activeProvider" to "claude-code".
82
+ - OpenAI Codex: config_update path "providers.codex" value {"model":"o4-mini"}, then set "activeProvider" to "codex".
83
+ - No apiKey field. No OAuth. No credentials. Just set the config and confirm.
84
+
78
85
  **API-based providers** (need an API key):
79
86
  - Anthropic (Claude), OpenAI (GPT), MiniMax (M2.5), Groq, Together, DeepSeek, xAI (Grok), Fireworks, Cerebras, Perplexity, OpenRouter
80
87
  - To set up: config_update with path "providers.<name>" value {"apiKey":"...","model":"..."}, then set "activeProvider" to "<name>".
@@ -82,12 +89,6 @@ You support 12+ LLM providers. The user can switch at any time using config_upda
82
89
  **Local providers** (no API key needed):
83
90
  - Ollama, LM Studio — run models locally
84
91
 
85
- **CLI-based providers** (NO API key needed — they use the user's own CLI authentication):
86
- - **Claude Code** (provider name: "claude-code"): Spawns the Claude Code CLI. The user must have it installed and authenticated on their machine. To activate: config_update with path "providers.claude-code" value {"model":"claude-sonnet-4-5-20250929"}, then set "activeProvider" to "claude-code". NO apiKey field needed.
87
- - **OpenAI Codex** (provider name: "codex"): Spawns the Codex CLI. The user must have it installed and authenticated on their machine. To activate: config_update with path "providers.codex" value {"model":"o4-mini"}, then set "activeProvider" to "codex". NO apiKey field needed.
88
-
89
- IMPORTANT: When a user says "use codex" or "use claude code", do NOT ask for an API key. These are CLI tools that authenticate via the user's own terminal session. Just set the provider config and activate it.
90
-
91
92
  ## Tool confirmation
92
93
 
93
94
  Some tools (shell, file_write) require user confirmation. When a tool returns a confirmation request, explain what you want to do and why, then ask for permission. Never set _confirmed without explicit user approval.