mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
feat: refactor User/Bot architecture and implement multi-channel gateway
Major changes: 1. Core Architecture: Decoupled Bots from Users. Bots now have independent lifecycles, member management (bot_members), and dedicated configurations. 2. Channel Gateway: - Implemented a unified Channel Manager supporting Feishu, Telegram, and Local (Web/CLI) adapters. - Added message processing pipeline to normalize interactions across different platforms. - Introduced a Contact system for identity binding and guest access policies. 3. Database & Tooling: - Consolidated all migrations into 0001_init with updated schema for bots, channels, and contacts. - Optimized sqlc.yaml to automatically track the migrations directory. 4. Agent Enhancements: - Introduced ToolContext to provide Agents with platform-aware execution capabilities (e.g., messaging, contact lookups). - Added tool logging and fallback mechanisms for toolChoice execution. 5. UI & Docs: Updated frontend stores, UI components, and Swagger documentation to align with the new Bot-centric model.
This commit is contained in:
@@ -2,13 +2,13 @@ experimental_monorepo_root = true
|
||||
|
||||
[tools]
|
||||
# Go version from go.mod
|
||||
go = "1.25.2"
|
||||
go = "1.25.6"
|
||||
# Node.js for frontend packages
|
||||
node = "22"
|
||||
node = "25"
|
||||
# Bun for agent gateway
|
||||
bun = "latest"
|
||||
# pnpm for workspace management
|
||||
pnpm = "9"
|
||||
pnpm = "10"
|
||||
|
||||
[task_config]
|
||||
dir = "{{cwd}}"
|
||||
|
||||
Reference in New Issue
Block a user