zubo 0.1.22 → 0.1.24
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/README.md +6 -4
- package/dist/index.js +55183 -0
- package/package.json +1 -1
- package/src/agent/delegate.ts +7 -2
- package/src/agent/loop.ts +5 -5
- package/src/agent/prompts.ts +8 -0
- package/src/agent/workflow-executor.ts +5 -1
- package/src/channels/dashboard.html.ts +763 -4
- package/src/channels/webchat.ts +368 -0
- package/src/config/schema.ts +10 -1
- package/src/index.ts +6 -0
- package/src/llm/claude-code.ts +58 -17
- package/src/llm/codex.ts +59 -18
- package/src/memory/document-parser.ts +82 -0
- package/src/scheduler/visual-workflows.ts +16 -2
- package/src/start.ts +2 -0
- package/src/tools/builtin/diagnose.ts +19 -5
- package/src/tools/builtin/memory-prune.ts +221 -0
- package/src/tools/builtin-skills/code-interpreter/SKILL.md +33 -6
- package/src/tools/builtin-skills/code-interpreter/handler.ts +219 -48
- package/src/tools/builtin-skills/web-search/SKILL.md +13 -1
- package/src/tools/builtin-skills/web-search/handler.ts +83 -7
- package/src/tools/mcp-client.ts +8 -0
- package/src/tools/mcp-registry.ts +36 -6
- package/src/tools/permissions.ts +1 -0
- package/src/types/optional-deps.d.ts +35 -0
- package/src/voice/cli.ts +167 -0
- package/src/voice/conversation.ts +357 -0
- package/src/voice/local-stt.ts +155 -0
- package/src/voice/stt.ts +27 -3
- package/.github/workflows/ci.yml +0 -35
- package/.github/workflows/pages.yml +0 -31
- package/CONTRIBUTING.md +0 -52
- package/Dockerfile +0 -24
- package/Dockerfile.registry +0 -17
- package/bun.lock +0 -216
- package/desktop/README.md +0 -57
- package/desktop/package.json +0 -12
- package/desktop/src-tauri/Cargo.toml +0 -25
- package/desktop/src-tauri/build.rs +0 -3
- package/desktop/src-tauri/icons/README.md +0 -17
- package/desktop/src-tauri/icons/icon.png +0 -0
- package/desktop/src-tauri/src/main.rs +0 -189
- package/desktop/src-tauri/tauri.conf.json +0 -68
- package/docker-compose.yml +0 -20
- package/docs/ROADMAP.md +0 -490
- package/site/404.html +0 -156
- package/site/CNAME +0 -1
- package/site/admin.html +0 -1379
- package/site/docs/agents.html +0 -375
- package/site/docs/api.html +0 -1336
- package/site/docs/channels.html +0 -412
- package/site/docs/cli.html +0 -274
- package/site/docs/config.html +0 -1360
- package/site/docs/conversations.html +0 -296
- package/site/docs/index.html +0 -685
- package/site/docs/integrations.html +0 -572
- package/site/docs/marketplace.html +0 -299
- package/site/docs/memory.html +0 -306
- package/site/docs/security.html +0 -376
- package/site/docs/skills.html +0 -465
- package/site/docs/webhooks.html +0 -379
- package/site/docs/workflows.html +0 -406
- package/site/docs.css +0 -412
- package/site/index.html +0 -780
- package/site/install.sh +0 -104
- package/site/logo.svg +0 -1
- package/site/og-image.png +0 -0
- package/site/robots.txt +0 -4
- package/site/script.js +0 -497
- package/site/sitemap.xml +0 -63
- package/site/skills.html +0 -1076
- package/site/style.css +0 -2599
- package/tests/agent/session.test.ts +0 -107
- package/tests/agent-loop.test.ts +0 -54
- package/tests/auth.test.ts +0 -89
- package/tests/channels.test.ts +0 -67
- package/tests/code-interpreter.test.ts +0 -229
- package/tests/compaction.test.ts +0 -44
- package/tests/config-schema.test.ts +0 -557
- package/tests/config.test.ts +0 -51
- package/tests/costs.test.ts +0 -19
- package/tests/cron.test.ts +0 -55
- package/tests/digest.test.ts +0 -261
- package/tests/email.test.ts +0 -122
- package/tests/executor.test.ts +0 -158
- package/tests/export.test.ts +0 -137
- package/tests/helpers/mock-llm.ts +0 -34
- package/tests/helpers/test-db.ts +0 -74
- package/tests/history.test.ts +0 -254
- package/tests/image-generate.test.ts +0 -156
- package/tests/integration/chat-flow.test.ts +0 -48
- package/tests/integrations.test.ts +0 -97
- package/tests/knowledge-graph.test.ts +0 -553
- package/tests/mcp-client.test.ts +0 -428
- package/tests/mcp-registry.test.ts +0 -341
- package/tests/memory/engine.test.ts +0 -114
- package/tests/memory-engine.test.ts +0 -57
- package/tests/permissions.test.ts +0 -21
- package/tests/personal-features.test.ts +0 -1251
- package/tests/rate-limiter.test.ts +0 -70
- package/tests/registry.test.ts +0 -67
- package/tests/router.test.ts +0 -36
- package/tests/skill-loader.test.ts +0 -44
- package/tests/skill-registry.test.ts +0 -625
- package/tests/tokens.test.ts +0 -30
- package/tests/util/auth.test.ts +0 -75
- package/tests/util/rate-limiter.test.ts +0 -73
- package/tests/visual-workflows.test.ts +0 -575
- package/tests/voice.test.ts +0 -60
- package/tests/webchat.test.ts +0 -88
- package/tests/webhook-manage.test.ts +0 -234
- package/tests/webhooks-enhanced.test.ts +0 -340
- package/tests/workflow.test.ts +0 -38
package/README.md
CHANGED
|
@@ -29,14 +29,15 @@
|
|
|
29
29
|
- **11+ LLM providers** — Anthropic, OpenAI, Google Gemini, Ollama, Groq, Together, OpenRouter, DeepSeek, xAI, Fireworks, LM Studio, and any OpenAI-compatible endpoint. Smart routing sends simple queries to fast models automatically.
|
|
30
30
|
- **7 channels** — Telegram, Discord, Slack, WhatsApp, Signal, Email, Web Chat
|
|
31
31
|
- **Persistent memory** — Vector + full-text hybrid search with ONNX embeddings and FTS5. Remembers every conversation, preference, and fact — forever.
|
|
32
|
-
- **25+ built-in tools** — Web search, file ops, code execution, APIs, sub-agent delegation, knowledge graph, reminders, and automatic failover between providers.
|
|
32
|
+
- **25+ built-in tools** — Web search (Brave + DuckDuckGo), file ops, code execution, APIs, sub-agent delegation, knowledge graph, memory pruning, reminders, and automatic failover between providers.
|
|
33
33
|
- **Extensible skills** — Build custom skills in TypeScript. Share them on the registry. Install community skills with one command.
|
|
34
34
|
- **9 integrations** — GitHub, Google (Gmail, Calendar, Docs, Drive, Sheets), Notion, Linear, Jira, Slack, Twitter + Claude Code and MCP
|
|
35
35
|
- **Workflows** — Multi-agent pipelines with delegation
|
|
36
36
|
- **Natural language scheduling** — "Every weekday at 9am" just works. Cron jobs, heartbeat, proactive tasks.
|
|
37
|
-
- **Voice** — Speech-to-text (Whisper)
|
|
38
|
-
- **
|
|
39
|
-
- **
|
|
37
|
+
- **Voice** — Speech-to-text (Whisper, local whisper.cpp), text-to-speech (OpenAI, ElevenLabs), and continuous voice conversation mode
|
|
38
|
+
- **Personal tools** — Todos, notes, preferences, topics, and follow-ups — all manageable from the dashboard or via chat
|
|
39
|
+
- **Dashboard** — Built-in web UI with analytics, memory management, Ollama model manager, personal tools, and settings
|
|
40
|
+
- **Document ingestion** — Upload PDF, DOCX, XLSX, PPTX, TXT, CSV, JSON, and more
|
|
40
41
|
- **Budget controls** — Daily/monthly spending limits with per-model cost tracking
|
|
41
42
|
- **100% local** — SQLite database, local vector store. Your data never leaves your machine.
|
|
42
43
|
|
|
@@ -127,6 +128,7 @@ zubo model [provider/model] Show or switch LLM
|
|
|
127
128
|
zubo skills Manage skills
|
|
128
129
|
zubo install <name> Install from registry
|
|
129
130
|
zubo search <query> Search the registry
|
|
131
|
+
zubo voice Continuous voice conversation mode
|
|
130
132
|
zubo auth create-key Create an API key
|
|
131
133
|
zubo export / import Backup and restore
|
|
132
134
|
```
|