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.
Files changed (114) hide show
  1. package/README.md +6 -4
  2. package/dist/index.js +55183 -0
  3. package/package.json +1 -1
  4. package/src/agent/delegate.ts +7 -2
  5. package/src/agent/loop.ts +5 -5
  6. package/src/agent/prompts.ts +8 -0
  7. package/src/agent/workflow-executor.ts +5 -1
  8. package/src/channels/dashboard.html.ts +763 -4
  9. package/src/channels/webchat.ts +368 -0
  10. package/src/config/schema.ts +10 -1
  11. package/src/index.ts +6 -0
  12. package/src/llm/claude-code.ts +58 -17
  13. package/src/llm/codex.ts +59 -18
  14. package/src/memory/document-parser.ts +82 -0
  15. package/src/scheduler/visual-workflows.ts +16 -2
  16. package/src/start.ts +2 -0
  17. package/src/tools/builtin/diagnose.ts +19 -5
  18. package/src/tools/builtin/memory-prune.ts +221 -0
  19. package/src/tools/builtin-skills/code-interpreter/SKILL.md +33 -6
  20. package/src/tools/builtin-skills/code-interpreter/handler.ts +219 -48
  21. package/src/tools/builtin-skills/web-search/SKILL.md +13 -1
  22. package/src/tools/builtin-skills/web-search/handler.ts +83 -7
  23. package/src/tools/mcp-client.ts +8 -0
  24. package/src/tools/mcp-registry.ts +36 -6
  25. package/src/tools/permissions.ts +1 -0
  26. package/src/types/optional-deps.d.ts +35 -0
  27. package/src/voice/cli.ts +167 -0
  28. package/src/voice/conversation.ts +357 -0
  29. package/src/voice/local-stt.ts +155 -0
  30. package/src/voice/stt.ts +27 -3
  31. package/.github/workflows/ci.yml +0 -35
  32. package/.github/workflows/pages.yml +0 -31
  33. package/CONTRIBUTING.md +0 -52
  34. package/Dockerfile +0 -24
  35. package/Dockerfile.registry +0 -17
  36. package/bun.lock +0 -216
  37. package/desktop/README.md +0 -57
  38. package/desktop/package.json +0 -12
  39. package/desktop/src-tauri/Cargo.toml +0 -25
  40. package/desktop/src-tauri/build.rs +0 -3
  41. package/desktop/src-tauri/icons/README.md +0 -17
  42. package/desktop/src-tauri/icons/icon.png +0 -0
  43. package/desktop/src-tauri/src/main.rs +0 -189
  44. package/desktop/src-tauri/tauri.conf.json +0 -68
  45. package/docker-compose.yml +0 -20
  46. package/docs/ROADMAP.md +0 -490
  47. package/site/404.html +0 -156
  48. package/site/CNAME +0 -1
  49. package/site/admin.html +0 -1379
  50. package/site/docs/agents.html +0 -375
  51. package/site/docs/api.html +0 -1336
  52. package/site/docs/channels.html +0 -412
  53. package/site/docs/cli.html +0 -274
  54. package/site/docs/config.html +0 -1360
  55. package/site/docs/conversations.html +0 -296
  56. package/site/docs/index.html +0 -685
  57. package/site/docs/integrations.html +0 -572
  58. package/site/docs/marketplace.html +0 -299
  59. package/site/docs/memory.html +0 -306
  60. package/site/docs/security.html +0 -376
  61. package/site/docs/skills.html +0 -465
  62. package/site/docs/webhooks.html +0 -379
  63. package/site/docs/workflows.html +0 -406
  64. package/site/docs.css +0 -412
  65. package/site/index.html +0 -780
  66. package/site/install.sh +0 -104
  67. package/site/logo.svg +0 -1
  68. package/site/og-image.png +0 -0
  69. package/site/robots.txt +0 -4
  70. package/site/script.js +0 -497
  71. package/site/sitemap.xml +0 -63
  72. package/site/skills.html +0 -1076
  73. package/site/style.css +0 -2599
  74. package/tests/agent/session.test.ts +0 -107
  75. package/tests/agent-loop.test.ts +0 -54
  76. package/tests/auth.test.ts +0 -89
  77. package/tests/channels.test.ts +0 -67
  78. package/tests/code-interpreter.test.ts +0 -229
  79. package/tests/compaction.test.ts +0 -44
  80. package/tests/config-schema.test.ts +0 -557
  81. package/tests/config.test.ts +0 -51
  82. package/tests/costs.test.ts +0 -19
  83. package/tests/cron.test.ts +0 -55
  84. package/tests/digest.test.ts +0 -261
  85. package/tests/email.test.ts +0 -122
  86. package/tests/executor.test.ts +0 -158
  87. package/tests/export.test.ts +0 -137
  88. package/tests/helpers/mock-llm.ts +0 -34
  89. package/tests/helpers/test-db.ts +0 -74
  90. package/tests/history.test.ts +0 -254
  91. package/tests/image-generate.test.ts +0 -156
  92. package/tests/integration/chat-flow.test.ts +0 -48
  93. package/tests/integrations.test.ts +0 -97
  94. package/tests/knowledge-graph.test.ts +0 -553
  95. package/tests/mcp-client.test.ts +0 -428
  96. package/tests/mcp-registry.test.ts +0 -341
  97. package/tests/memory/engine.test.ts +0 -114
  98. package/tests/memory-engine.test.ts +0 -57
  99. package/tests/permissions.test.ts +0 -21
  100. package/tests/personal-features.test.ts +0 -1251
  101. package/tests/rate-limiter.test.ts +0 -70
  102. package/tests/registry.test.ts +0 -67
  103. package/tests/router.test.ts +0 -36
  104. package/tests/skill-loader.test.ts +0 -44
  105. package/tests/skill-registry.test.ts +0 -625
  106. package/tests/tokens.test.ts +0 -30
  107. package/tests/util/auth.test.ts +0 -75
  108. package/tests/util/rate-limiter.test.ts +0 -73
  109. package/tests/visual-workflows.test.ts +0 -575
  110. package/tests/voice.test.ts +0 -60
  111. package/tests/webchat.test.ts +0 -88
  112. package/tests/webhook-manage.test.ts +0 -234
  113. package/tests/webhooks-enhanced.test.ts +0 -340
  114. 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) and text-to-speech (OpenAI, ElevenLabs)
38
- - **Dashboard** — Built-in web UI with analytics, memory management, and settings
39
- - **Document ingestion** — Upload PDF, DOCX, TXT, CSV, JSON, and more
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
  ```