Skip to content

hubos-ai/HubOS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

81 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

HubOS Logo

HubOS

Multi-User AI Employee Management Platform
ๅคš็”จๆˆท AI ๅ‘˜ๅทฅ็ฎก็†ๅนณๅฐ

License Python TypeScript 9 Agents 24 Skills 14+ Channels

English ยท ไธญๆ–‡ ยท Contributing ยท Issues


๐ŸŒŸ What is HubOS?

HubOS is an open-source, self-hosted AI employee management platform. It transforms large language models into a team of specialized digital employees that communicate through your existing messaging tools.

It's not a chatbot โ€” it's an AI workforce.

Each agent has its own identity, skills, memory, and job responsibilities, coordinated by a central dispatcher (General Manager agent). You talk to them through Feishu, WeChat, Discord, or any of 14+ supported channels.

Why HubOS?

Problem HubOS Solution
ChatGPT/Claude are single-agent, general-purpose 9 specialized agents with division of labor
SaaS AI tools store your data in the cloud Everything runs locally, data never leaves your machine
One chatbot can't handle complex business workflows Multi-agent orchestration with parallel/pipeline/DAG modes
AI doesn't learn from experience Self-evolving memory system extracts lessons automatically
Every AI tool is a separate subscription One platform, 24 built-in skills, 18 tools

Key Numbers

Metric Value
Code 150,000+ lines (Python + TypeScript)
API Endpoints 170+
Built-in Tools 18
Skills 24
Messaging Channels 14+
Agent Roles 9
Frontend Pages 28
Languages 4 (EN / ZH / JA / RU)

โœจ Features

๐Ÿ”ฅ What Makes HubOS Different

Most AI platforms are single-agent chatbots. HubOS is fundamentally different:

Feature Description
Multi-Task Concurrency Multiple users can chat simultaneously โ€” each request spawns an independent agent session via FastAPI async. No queuing, no blocking.
Agent Instance Pooling LRU cache reuses initialized agent instances across requests. Second request for the same agent is ~200ร— faster (no skill/MCP re-registration).
Sub-Agent Spawning Any agent can independently spawn child agents (spawn_subagents) for parallel work โ€” and those children can spawn their own children (up to configurable depth).
DAG Orchestration Complex multi-step workflows with dependencies: step B uses step A's output, step C+D run in parallel after B. Full pipeline coordination.
Self-Evolving Memory After each task, the system automatically reflects on what happened, extracts lessons, and merges them into reusable methodology cards. The more you use it, the smarter it gets.
Multi-User Isolation Each user gets independent workspaces, sessions, and memory. File locks (fcntl.flock) prevent write conflicts. Agent sandboxing prevents cross-user access.
Hot-Swappable Models Per-agent model configuration โ€” assign GPT-4o for complex reasoning, Claude for writing, Gemini for multimodal tasks, or local Ollama models for privacy. Switch models without restarting.
Channel Multiplexing One agent team serves all channels simultaneously. A message on WeChat and a message on Discord go to the same agent with the same memory.

๐Ÿค– Multi-Agent Team

9 specialized agents, each with its own personality, skills, and model configuration:

Agent Department Role
HubOS General Manager Task dispatch, coordination, decision-making
Sam Sales Lead generation, outreach, quotations
Mavis Marketing Content creation, competitive analysis, branding
Iris Research Market research, data analysis, industry reports
Rex R&D Development, system maintenance, automation
Felix Finance Billing, financial reports, cost analysis
Harper HR Documentation, scheduling, process management
Clara Customer Success Support, feedback handling, FAQ maintenance
Oscar Operations Task tracking, scheduled jobs, monitoring

๐Ÿ’ก Fully Customizable: The 9 built-in agents are just a starting point. You can create any number of agents with custom roles, personalities, skills, and model configurations to match your specific business needs โ€” from a solo assistant to a 50-person digital company.

Three orchestration modes:

  • Parallel Delegation (spawn_subagents) โ€” Independent tasks run simultaneously
  • Pipeline Coordination (coordinate_workflow) โ€” Sequential DAG with dependencies
  • Background Tasks (delegate_task) โ€” Long-running jobs with progress tracking

๐Ÿ“ก 14+ Messaging Channels

All channels use a unified message format. One agent serves multiple channels simultaneously:

Console (built-in web UI) ยท Feishu ยท WeChat ยท DingTalk ยท Discord ยท Telegram ยท WeCom ยท QQ ยท Matrix ยท Mattermost ยท iMessage ยท MQTT ยท XiaoYi ยท Voice

๐Ÿง  Three-Layer Memory System

Layer Loading Purpose
Long-term Memory (MEMORY.md) Auto-loaded every session Persistent knowledge, tool configs, lessons learned
Work Experience v4 Auto-retrieved by task type Methodology cards โ€” one card per workflow
Daily Notes (memory/) On-demand search Detailed session logs, troubleshooting records

Work Experience v4 โ€” Self-Evolving Engine:

  • Automatically reflects after task completion โ†’ extracts lessons โ†’ merges into cards
  • LLM semantic matching replaces keyword matching for higher accuracy
  • Promotion pipeline: candidate โ†’ approved โ†’ mature
  • Users choose their own reflection model via the UI

๐Ÿ› ๏ธ 24 Built-in Skills

Category Skills
Document Processing PDF ยท Word (.docx) ยท Excel (.xlsx) ยท PowerPoint (.pptx)
Web & Search Web crawling ยท Tavily search ยท Browser automation
Communication Channel messaging ยท Email (himalaya) ยท Multi-agent collaboration
Business E-commerce price search ยท News aggregation ยท Cron scheduling
System HubOS setup guide ยท Frontend design ยท File reading
Platform Integration Feishu (Bitable/Doc/Wiki/Drive) ยท DingTalk channel setup

๐Ÿ”’ Security

Feature Description
File Locking fcntl.flock per-file granularity, 30s timeout โ€” prevents write conflicts
Agent Sandbox Each agent can only write to its own workspace
Write Whitelist Configurable external directory access (e.g., R&D agent โ†’ project dir)
Tool Guard Risk-level tool control with human-in-the-loop approval
RBAC Role-based access control (admin / user / viewer)
JWT Auth Web API and WebSocket authentication

โšก Performance

Feature Implementation
Async Architecture FastAPI + Uvicorn, each request as independent asyncio.Task
Agent Instance Pooling LRU cache with concurrency-safe borrowing, ~200ร— speedup on repeat requests
200K Context Window GLM-5.1 supports 200K tokens; auto-compression when exceeded
SSE Heartbeat 15s ping intervals to prevent proxy timeouts

๐Ÿ†• What's New in v1.1.0

Feature Description
๐ŸŽฎ Real-Time Run Guidance Interrupt and redirect agents mid-task โ€” type guidance while they work and they pivot immediately
๐Ÿ“Š Task Workflow Visualization Watch multi-agent tasks execute in real-time with a full-page monitor and chat-side panel
๐Ÿ”ง Status Messages Context understanding & experience matching now shown as ๐Ÿ”ง tool-call indicators before each response
โŒจ๏ธ Slash Commands 24 built-in commands with EN/ZH labels, accessible via / in chat input
โšก Faster Response WE card generation moved to background thread, context compression uses dedicated compact model
๐Ÿ›ก๏ธ Reliability Fixed async await bug, timeout floor guarantee, instant SSE release, friendly cancel prompts
๐Ÿ“‹ Full Changelog

New Modules: RunControl API ยท TaskMonitor (backend + frontend) ยท TaskPlan (plan/autogen/executor/risk) ยท Slash Commands ยท UI Language

Improvements: Compact model config ยท WE async fire-and-forget ยท Retriever fuzzy matching ยท Reflection prompt rewrite ยท Timeout max() semantics ยท MCP Streamable HTTP ยท Absolute stdio paths ยท Desktop port-based restart

Fixes: memory_compaction AttributeError ยท memory.add() missing await ยท AGENT_ERROR on cancel ยท Dark mode text ยท delegate_task timeout override ยท SSE heartbeat blocking


๐Ÿ“ธ Screenshots

Coming soon โ€” screenshots of the Web Console, Agent Management, and Chat interfaces.


๐Ÿš€ Quick Start

Prerequisites

  • Python 3.10 - 3.13
  • Node.js 18+ (for frontend build)
  • At least one LLM API key (Zhipu GLM, MiniMax, OpenAI, Anthropic, etc.)

From Source

# Clone
git clone https://github.com/hubos-ai/HubOS.git
cd HubOS

# Set up virtual environment
python -m venv .venv
source .venv/bin/activate  # Windows: .venv\Scripts\activate

# Install Python dependencies
pip install -e .

# Build frontend
cd console
npm ci
npm run build
cd ..

# Initialize (creates ~/.hubos/ directory)
hubos init

# Start the server
hubos app

Open http://localhost:8088 and start chatting.

First-Time Setup

  1. Open http://localhost:8088
  2. Register an account
  3. Go to Settings โ†’ Models and configure your LLM provider (API key + model)
  4. Go to Settings โ†’ Agents and verify agent configurations
  5. Start chatting with your AI team!

๐Ÿ—๏ธ Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                    User Interface                        โ”‚
โ”‚  Web UI โ”‚ Electron Desktop โ”‚ Feishu โ”‚ WeChat โ”‚ ...      โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                       โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚               FastAPI Backend (Async)                    โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
โ”‚  โ”‚ Auth/RBAC โ”‚  โ”‚ Sessions  โ”‚  โ”‚ Tracker  โ”‚  โ”‚ Locks  โ”‚ โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                       โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚              Agent Dispatch Layer (GM)                   โ”‚
โ”‚  โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚
โ”‚  โ”‚ Agent Instance Pool (LRU + concurrency-safe)       โ”‚ โ”‚
โ”‚  โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚
โ”‚  Parallel โ”‚ Pipeline โ”‚ Background   โ† Task Modes       โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                       โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚              9 Specialized Agents                        โ”‚
โ”‚  Sales โ”‚ Marketing โ”‚ Research โ”‚ R&D โ”‚ Finance โ”‚ ...     โ”‚
โ”‚  Each has: Identity + Skills + Memory + Model Config    โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                       โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚              Infrastructure                              โ”‚
โ”‚  Skills โ”‚ LLM Router โ”‚ Memory โ”‚ WE v4 โ”‚ MCP โ”‚ Cron     โ”‚
โ”‚  Security โ”‚ DAG Engine โ”‚ Tool Guard โ”‚ File Guard        โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Directory Structure

src/hubos/
โ”œโ”€โ”€ app/                    # Application layer
โ”‚   โ”œโ”€โ”€ runner/             # Agent runners (with instance pooling)
โ”‚   โ”œโ”€โ”€ routers/            # 22 API router modules
โ”‚   โ”œโ”€โ”€ channels/           # 14+ channel adapters
โ”‚   โ”œโ”€โ”€ mcp/                # MCP client management
โ”‚   โ””โ”€โ”€ workspace/          # Workspace lifecycle
โ”œโ”€โ”€ agents/                 # Agent core
โ”‚   โ”œโ”€โ”€ react_agent.py     # HubOSAgent (ReAct reasoning)
โ”‚   โ”œโ”€โ”€ tools/              # 18 built-in tools
โ”‚   โ”œโ”€โ”€ skills/             # 24 skill definitions
โ”‚   โ”œโ”€โ”€ hooks/              # Agent lifecycle hooks
โ”‚   โ””โ”€โ”€ memory/             # Memory managers
โ”œโ”€โ”€ config/                 # Configuration system (45+ classes)
โ”œโ”€โ”€ core/                   # Core engine
โ”‚   โ”œโ”€โ”€ llm/                # LLM provider routing
โ”‚   โ”œโ”€โ”€ memory/             # Memory storage (ChromaDB)
โ”‚   โ”œโ”€โ”€ work_experience/    # Experience system (v4)
โ”‚   โ”œโ”€โ”€ execution/          # Task execution engine
โ”‚   โ”œโ”€โ”€ dag/                # DAG scheduling engine
โ”‚   โ””โ”€โ”€ infra/              # RBAC, feature flags, metrics
โ”œโ”€โ”€ security/               # Tool guard, skill scanner
โ””โ”€โ”€ cli/                    # CLI commands

console/                    # React frontend (28 pages)
desktop/                    # Electron desktop app

Tech Stack

Component Technology
Backend Python 3.10+ ยท FastAPI ยท Uvicorn
Agent Framework AgentScope 1.0.18
Frontend React 18 ยท Vite ยท TypeScript ยท Ant Design 5
Desktop Electron
Vector Store ChromaDB (SQLite backend)
UI Components @agentscope-ai/chat ยท @agentscope-ai/design

๐Ÿค Supported LLM Providers

HubOS supports multiple LLM providers with per-agent model configuration:

Provider Models Best For
Zhipu (ๆ™บ่ฐฑ) GLM-4, GLM-5.1 Complex reasoning, long context (200K)
MiniMax M2.7-highspeed Fast structured tasks
OpenAI GPT-4o, GPT-4-turbo General purpose
Anthropic Claude 3.5/4 Analysis, writing
Google Gemini 1.5/2.0 Multimodal tasks
DeepSeek DeepSeek-V3 Cost-effective reasoning
Qwen (้€šไน‰ๅƒ้—ฎ) Qwen 2.5/3 Chinese language tasks
Ollama Local models Privacy-first, no API needed

๐Ÿ”Œ MCP (Model Context Protocol)

HubOS supports MCP client integration with hot-reload:

  • Configure MCP servers via Web UI or config files
  • Each skill can define its own MCP dependencies
  • Built-in support for Zhipu MCP Server (Vision, Search, webReader, ZRead)

๐Ÿ“‹ CLI Reference

hubos app          # Start FastAPI server
hubos init         # Initialize working directory
hubos agent        # Agent management & communication
hubos cron         # Cron job management
hubos channel      # Channel configuration
hubos models       # Model provider configuration
hubos skills       # Skill management
hubos auth         # Authentication management
hubos shutdown     # Stop all services

๐Ÿ—บ๏ธ Roadmap

  • Plugin marketplace for community skills
  • Multi-language agent templates (DE, FR, ES, AR)
  • GPU-accelerated local model support (MLX, llama.cpp)
  • Collaborative workspaces for teams
  • Mobile companion app
  • REST API playground / Swagger UI

๐Ÿค Contributing

We welcome contributions! Please see CONTRIBUTING.md for:

  • Development environment setup
  • Code style guidelines
  • PR submission process
  • How to add new skills, channels, and tools

๐Ÿ“„ License

HubOS is released under the Apache License 2.0.


๐Ÿ™ Acknowledgments

HubOS builds upon the following excellent open-source projects:

Project Usage License
AgentScope Core agent framework, model routing, MCP integration Apache-2.0
AgentScope Runtime Frontend UI components (@agentscope-ai/chat, @agentscope-ai/design) Apache-2.0
FastAPI Async web framework MIT
React Frontend UI library MIT
Ant Design UI component library MIT
Playwright Browser automation Apache-2.0
ChromaDB Vector storage Apache-2.0
ReMe Long-term memory management MIT
Uvicorn ASGI server BSD-3-Clause
Electron Desktop application framework MIT

Special thanks to the open-source community and everyone who contributes to making AI more accessible.


๐ŸŒŸ HubOS ๆ˜ฏไป€ไนˆ๏ผŸ

HubOS ๆ˜ฏไธ€ไธชๅผ€ๆบใ€่‡ชๆ‰˜็ฎก็š„ AI ๅ‘˜ๅทฅ็ฎก็†ๅนณๅฐใ€‚ๅฎƒๅฐ†ๅคง่ฏญ่จ€ๆจกๅž‹่ฝฌๅŒ–ไธบไธ€ๆ”ฏไธ“ไธš็š„ๆ•ฐๅญ—ๅ‘˜ๅทฅๅ›ข้˜Ÿ๏ผŒ้€š่ฟ‡ไฝ ๅทฒๆœ‰็š„ๆฒŸ้€šๅทฅๅ…ทไธŽไฝ ๅไฝœใ€‚

ๅฎƒไธๆ˜ฏ่Šๅคฉๆœบๅ™จไบบ โ€” ๅฎƒๆ˜ฏ AI ๅŠณๅŠจๅŠ›ใ€‚

ๆฏไธช Agent ๆœ‰่‡ชๅทฑ็š„่บซไปฝใ€ๆŠ€่ƒฝใ€่ฎฐๅฟ†ๅ’Œๅทฅไฝœ่Œ่ดฃ๏ผŒ็”ฑๆ€ป็ป็† Agent ็ปŸไธ€่ฐƒๅบฆใ€‚ไฝ ๅฏไปฅ้€š่ฟ‡้ฃžไนฆใ€ๅพฎไฟกใ€้’‰้’‰็ญ‰ 14+ ๆธ ้“ไธŽๅ›ข้˜ŸๆฒŸ้€šใ€‚

ไธบไป€ไนˆ้œ€่ฆ HubOS๏ผŸ

้—ฎ้ข˜ HubOS ็š„่งฃๅ†ณๆ–นๆกˆ
ChatGPT/Claude ๆ˜ฏๅ• Agentใ€้€š็”จๅž‹ 9 ไธชไธ“ไธš Agent๏ผŒๅˆ†ๅทฅๆ˜Ž็กฎ
SaaS AI ๅทฅๅ…ทๆŠŠๆ•ฐๆฎๅญ˜ๅœจไบ‘็ซฏ ๅฎŒๅ…จๆœฌๅœฐ่ฟ่กŒ๏ผŒๆ•ฐๆฎไธ็ฆปๅผ€ไฝ ็š„ๆœบๅ™จ
ๅ•ไธช่Šๅคฉๆœบๅ™จไบบๆ— ๆณ•ๅค„็†ๅคๆ‚ไธšๅŠกๆต็จ‹ ๅคš Agent ็ผ–ๆŽ’๏ผšๅนถ่กŒ/ๆตๆฐด็บฟ/DAG ไธ‰็งๆจกๅผ
AI ไธไผšไปŽ็ป้ชŒไธญๅญฆไน  ่‡ช่ฟ›ๅŒ–่ฎฐๅฟ†็ณป็ปŸ๏ผŒ่‡ชๅŠจๆๅ–ๆ•™่ฎญ
ๆฏไธช AI ๅทฅๅ…ท้ƒฝๆ˜ฏ็‹ฌ็ซ‹่ฎข้˜… ไธ€ไธชๅนณๅฐ๏ผŒ24 ไธชๅ†…็ฝฎๆŠ€่ƒฝ๏ผŒ18 ไธชๅทฅๅ…ท

โœจ ๆ ธๅฟƒ็‰นๆ€ง

๐Ÿ”ฅ HubOS ็š„็‹ฌ็‰นไน‹ๅค„

ๅคงๅคšๆ•ฐ AI ๅนณๅฐๆ˜ฏๅ• Agent ่Šๅคฉๆœบๅ™จไบบใ€‚HubOS ไปŽๆ นๆœฌไธŠไธๅŒ๏ผš

็‰นๆ€ง ่ฏดๆ˜Ž
ๅคšไปปๅŠกๅนถๅ‘ ๅคšไธช็”จๆˆทๅฏไปฅๅŒๆ—ถๅฏน่ฏ โ€” ๆฏไธช่ฏทๆฑ‚้€š่ฟ‡ FastAPI ๅผ‚ๆญฅๆœบๅˆถๅˆ›ๅปบ็‹ฌ็ซ‹็š„ Agent ไผš่ฏใ€‚ๆ— ้œ€ๆŽ’้˜Ÿ๏ผŒไบ’ไธ้˜ปๅกžใ€‚
Agent ๅฎžไพ‹ๆฑ ๅŒ– LRU ็ผ“ๅญ˜ๅค็”จๅทฒๅˆๅง‹ๅŒ–็š„ Agent ๅฎžไพ‹ใ€‚ๅŒไธ€ Agent ็š„็ฌฌไบŒๆฌก่ฏทๆฑ‚ๅฟซ ~200 ๅ€๏ผˆๆ— ้œ€้‡ๆ–ฐๆณจๅ†Œ skill/MCP๏ผ‰ใ€‚
ๅญ Agent ๆดพ็”Ÿ ไปปไฝ• Agent ้ƒฝๅฏไปฅ็‹ฌ็ซ‹ๆดพ็”Ÿๅญ Agent๏ผˆspawn_subagents๏ผ‰ๅนถ่กŒๅทฅไฝœ โ€” ๅญ Agent ่ฟ˜ๅฏไปฅ็ปง็ปญๆดพ็”Ÿ่‡ชๅทฑ็š„ๅญ Agent๏ผˆๆทฑๅบฆๅฏ้…็ฝฎ๏ผ‰ใ€‚
DAG ๅทฅไฝœๆต็ผ–ๆŽ’ ๅคๆ‚็š„ๅคšๆญฅ้ชคไพ่ต–ๅทฅไฝœๆต๏ผšๆญฅ้ชค B ไฝฟ็”จๆญฅ้ชค A ็š„่พ“ๅ‡บ๏ผŒๆญฅ้ชค C+D ๅœจ B ๅฎŒๆˆๅŽๅนถ่กŒๆ‰ง่กŒใ€‚ๅฎŒๆ•ด็š„ๆตๆฐด็บฟๅ่ฐƒใ€‚
่‡ช่ฟ›ๅŒ–่ฎฐๅฟ† ๆฏๆฌกไปปๅŠกๅฎŒๆˆๅŽ๏ผŒ็ณป็ปŸ่‡ชๅŠจๅๆ€ใ€ๆๅ–ๆ•™่ฎญ๏ผŒๅˆๅนถไธบๅฏๅค็”จ็š„ๆ–นๆณ•่ฎบๅก็‰‡ใ€‚่ถŠ็”จ่ถŠ่ชๆ˜Žใ€‚
ๅคš็”จๆˆท้š”็ฆป ๆฏไธช็”จๆˆทๆ‹ฅๆœ‰็‹ฌ็ซ‹็š„ workspaceใ€ไผš่ฏๅ’Œ่ฎฐๅฟ†ใ€‚ๆ–‡ไปถ้”๏ผˆfcntl.flock๏ผ‰้˜ฒๆญขๅ†™ๅ…ฅๅ†ฒ็ชใ€‚Agent ๆฒ™็ฎฑ้˜ฒๆญข่ทจ็”จๆˆท่ฎฟ้—ฎใ€‚
ๆจกๅž‹็ƒญๅˆ‡ๆข ๆŒ‰ Agent ้…็ฝฎๆจกๅž‹ โ€” ๅคๆ‚ๆŽจ็†็”จ GPT-4o๏ผŒๅ†™ไฝœ็”จ Claude๏ผŒๅคšๆจกๆ€็”จ Gemini๏ผŒ้š็งๅœบๆ™ฏ็”จ Ollama ๆœฌๅœฐๆจกๅž‹ใ€‚็”จๆˆท่‡ช็”ฑ้€‰ๆ‹ฉไพ›ๅบ”ๅ•†ๅ’Œๆจกๅž‹๏ผŒๆ— ้œ€้‡ๅฏๅณๅฏๅˆ‡ๆขใ€‚
ๆธ ้“ๅคš่ทฏๅค็”จ ไธ€ไธช Agent ๅ›ข้˜ŸๅŒๆ—ถๆœๅŠกๆ‰€ๆœ‰ๆธ ้“ใ€‚ๅพฎไฟกๅ’Œ Discord ไธŠ็š„ๆถˆๆฏ่ฎฟ้—ฎๅŒไธ€ไธช Agent ๅ’ŒๅŒไธ€ๅฅ—่ฎฐๅฟ†ใ€‚

๐Ÿค– ๅคš Agent ๅ›ข้˜Ÿๅไฝœ

9 ไธชไธ“ไธš Agent๏ผŒๅ„ๆœ‰่‡ชๅทฑ็š„ไบบๆ ผใ€ๆŠ€่ƒฝๅ’Œๆจกๅž‹้…็ฝฎ๏ผš

Agent ้ƒจ้—จ ่Œ่ดฃ
HubOS ๆ€ป็ป็† ไปปๅŠก่ฐƒๅบฆใ€ๅ่ฐƒใ€ๅ†ณ็ญ–
Sam ๅผ  ้”€ๅ”ฎ ๅฎขๆˆทๅผ€ๅ‘ใ€ๆŠฅไปทใ€ๅˆๅŒๆŽจ่ฟ›
Mavis ็Ž‹ ๅธ‚ๅœบ ๅ†…ๅฎนๅˆ›ไฝœใ€็ซžๅ“ๅˆ†ๆžใ€ๅ“็‰Œไผ ๆ’ญ
Iris ๅ‘จ ่ฐƒ็ ” ๅธ‚ๅœบ่ฐƒ็ ”ใ€ๆ•ฐๆฎๅˆ†ๆžใ€่กŒไธšๆŠฅๅ‘Š
Rex ้™ˆ ๆŠ€ๆœฏ ๅผ€ๅ‘ใ€็ณป็ปŸ็ปดๆŠคใ€่‡ชๅŠจๅŒ–
Felix ๅˆ˜ ่ดขๅŠก ่ดฆๅ•ใ€่ดขๅŠกๆŠฅ่กจใ€ๆˆๆœฌๅˆ†ๆž
Harper ่ตต ไบบๅŠ› ๆ–‡ๆกฃ็ฎก็†ใ€ๆ—ฅ็จ‹ๅ่ฐƒใ€ๆต็จ‹่ง„่Œƒ
Clara ๅญ™ ๅฎขๆœ ๅ”ฎๅŽๆ”ฏๆŒใ€ๅ้ฆˆๅค„็†ใ€FAQ ็ปดๆŠค
Oscar ๅด ่ฟ็ปด ไปปๅŠก่ฟฝ่ธชใ€ๅฎšๆ—ถไฝœไธšใ€็›‘ๆŽง

๐Ÿ’ก ๅฎŒๅ…จๅฏๅฎšๅˆถ๏ผšๅ†…็ฝฎ็š„ 9 ไธช Agent ๅชๆ˜ฏ่ตท็‚นใ€‚ไฝ ๅฏไปฅๅˆ›ๅปบไปปๆ„ๆ•ฐ้‡็š„ Agent๏ผŒ่‡ชๅฎšไน‰่ง’่‰ฒใ€ไบบๆ ผใ€ๆŠ€่ƒฝๅ’Œๆจกๅž‹้…็ฝฎ๏ผŒๅŒน้…ไฝ ็š„ไธšๅŠก้œ€ๆฑ‚ โ€” ไปŽๅ•ไบบๅŠฉๆ‰‹ๅˆฐ 50 ไบบ็š„ๆ•ฐๅญ—ๅ…ฌๅธ้ƒฝๅฏไปฅใ€‚

ไธ‰็งๅไฝœๆจกๅผ๏ผš

  • ๅนถ่กŒๅง”ๆดพ๏ผˆspawn_subagents๏ผ‰โ€” ็‹ฌ็ซ‹ไปปๅŠกๅŒๆ—ถๆ‰ง่กŒ
  • ๆตๆฐด็บฟๅไฝœ๏ผˆcoordinate_workflow๏ผ‰โ€” ๆœ‰ไพ่ต–็š„ไธฒ่กŒ DAG ๅทฅไฝœๆต
  • ๅŽๅฐไปปๅŠก๏ผˆdelegate_task๏ผ‰โ€” ้•ฟๆ—ถ้—ด่ฟ่กŒ็š„ไปปๅŠก๏ผŒๅธฆ่ฟ›ๅบฆ่ฟฝ่ธช

๐Ÿ“ก 14+ ๆธ ้“ๆŽฅๅ…ฅ

ๆ‰€ๆœ‰ๆธ ้“็ปŸไธ€ๆถˆๆฏๆ ผๅผ๏ผŒๅŒไธ€ไธช Agent ๅŒๆ—ถๆœๅŠกๅคšไธชๆธ ้“๏ผš

Web ๆŽงๅˆถๅฐ๏ผˆๅ†…็ฝฎ๏ผ‰ยท ้ฃžไนฆ ยท ๅพฎไฟก ยท ้’‰้’‰ ยท Discord ยท Telegram ยท ไผไธšๅพฎไฟก ยท QQ ยท Matrix ยท Mattermost ยท iMessage ยท MQTT ยท ๅฐ่š ยท ่ฏญ้Ÿณ

๐Ÿง  ไธ‰ๅฑ‚่ฎฐๅฟ†็ณป็ปŸ

ๅฑ‚ ๅŠ ่ฝฝๆ–นๅผ ็”จ้€”
้•ฟๆœŸ่ฎฐๅฟ†๏ผˆMEMORY.md๏ผ‰ ๆฏๆฌก่‡ชๅŠจๅŠ ่ฝฝ ๆŒไน…ๅŒ–็Ÿฅ่ฏ†ใ€ๅทฅๅ…ท้…็ฝฎใ€็ป้ชŒๆ•™่ฎญ
็ป้ชŒๆŠ€ๅทง๏ผˆWork Experience v4๏ผ‰ ๆŒ‰ไปปๅŠก็ฑปๅž‹่‡ชๅŠจๆฃ€็ดข ๆ–นๆณ•่ฎบๅก็‰‡ โ€” ไธ€ๅกไธ€ๆต็จ‹
ๆฏๆ—ฅ็ฌ”่ฎฐ๏ผˆmemory/๏ผ‰ ๆŒ‰้œ€ๆœ็ดข ่ฏฆ็ป†ไผš่ฏๆ—ฅๅฟ—ใ€่ธฉๅ‘่ฎฐๅฝ•

Work Experience v4 โ€” ่‡ช่ฟ›ๅŒ–ๅผ•ๆ“Ž๏ผš

  • ไปปๅŠกๅฎŒๆˆๅŽ่‡ชๅŠจๅๆ€ โ†’ ๆๅ–ๆ•™่ฎญ โ†’ ๅˆๅนถๅŽป้‡ๅˆฐ็Žฐๆœ‰ๅก็‰‡
  • LLM ่ฏญไน‰ๅŒน้…ๆ›ฟไปฃๅ…ณ้”ฎ่ฏๅŒน้…๏ผŒๅ‡†็กฎๅบฆๅคงๅน…ๆๅ‡
  • ๆ™‹ๅ‡็ฎก็บฟ๏ผšcandidate โ†’ approved โ†’ mature
  • ็”จๆˆทๅฏๅœจๅ‰็ซฏ่‡ช้€‰ๅๆ€ๆจกๅž‹

๐Ÿ› ๏ธ 24 ไธชๅ†…็ฝฎๆŠ€่ƒฝ

็ฑปๅˆซ ๆŠ€่ƒฝ
ๆ–‡ๆกฃๅค„็† PDF ยท Word ยท Excel ยท PowerPoint
็ฝ‘็ปœๆœ็ดข ็ฝ‘้กตๆŠ“ๅ– ยท Tavily ๆœ็ดข ยท ๆต่งˆๅ™จ่‡ชๅŠจๅŒ–
ๆฒŸ้€šๅไฝœ ๆธ ้“ๆถˆๆฏ ยท ้‚ฎไปถ ยท ๅคš Agent ๅไฝœ
ไธšๅŠกๅทฅๅ…ท ็”ตๅ•†ๆฏ”ไปท ยท ๆ–ฐ้—ป่šๅˆ ยท ๅฎšๆ—ถไปปๅŠก
็ณป็ปŸ็ฎก็† ๅฎ‰่ฃ…ๆŒ‡ๅ— ยท ๅ‰็ซฏ่ฎพ่ฎก ยท ๆ–‡ไปถ่ฏปๅ–
ๅนณๅฐ้›†ๆˆ ้ฃžไนฆ๏ผˆๅคš็ปด่กจๆ ผ/ๆ–‡ๆกฃ/็Ÿฅ่ฏ†ๅบ“/ไบ‘็›˜๏ผ‰ยท ้’‰้’‰ๆŽฅๅ…ฅ

๐Ÿ”’ ๅฎ‰ๅ…จไฝ“็ณป

็‰นๆ€ง ่ฏดๆ˜Ž
ๆ–‡ไปถๅ†™้” fcntl.flock per-file ็ฒ’ๅบฆ๏ผŒ้˜ฒๆญขๅคš็”จๆˆทๅ†™ๅ…ฅๅ†ฒ็ช
Agent ๆฒ™็ฎฑ ๆฏไธช Agent ๅช่ƒฝๅ†™่‡ชๅทฑ็š„ workspace
ๅทฅๅ…ท้˜ฒๆŠค ๆŒ‰้ฃŽ้™ฉ็บงๅˆซๆŽงๅˆถๅทฅๅ…ท่ฐƒ็”จ๏ผŒๆ”ฏๆŒไบบๆœบๅๅŒๅฎกๆ‰น
RBAC ๅŸบไบŽ่ง’่‰ฒ็š„่ฎฟ้—ฎๆŽงๅˆถ๏ผˆadmin / user / viewer๏ผ‰
JWT ่ฎค่ฏ Web API ๅ’Œ WebSocket ่ฎค่ฏ

๐Ÿ†• v1.1.0 ๆ›ดๆ–ฐ

ๅŠŸ่ƒฝ ่ฏดๆ˜Ž
๐ŸŽฎ ๅฎžๆ—ถๅผ•ๅฏผๆ‰“ๆ–ญ ไปปๅŠกๆ‰ง่กŒไธญ้šๆ—ถๅ‘ๆŒ‡ไปค๏ผŒAgent ็ซ‹ๅณ่ฝฌๅ‘ โ€” ๅƒๅ’Œ็œŸไบบๅŒไบ‹ๅไฝœไธ€ๆ ท
๐Ÿ“Š ไปปๅŠกๆต็จ‹ๅฏ่ง†ๅŒ– ๅ…จ้กตไปปๅŠก็›‘ๆŽง + ่Šๅคฉๅ†…ไพง่พน้ขๆฟ๏ผŒๅคš Agent ๅไฝœ่ฟ›ๅบฆๅฎžๆ—ถๅฏ่ง
๐Ÿ”ง ็Šถๆ€ๆถˆๆฏ ไธŠไธ‹ๆ–‡็†่งฃใ€็ป้ชŒๅŒน้…ไปฅ ๐Ÿ”ง ๅทฅๅ…ท่ฐƒ็”จๆ ทๅผๆ˜พ็คบๅœจๆฏๆฌกๅ“ๅบ”ๅ‰
โŒจ๏ธ ๅฟซๆทๅ‘ฝไปค 24 ไธชๅ†…็ฝฎๅ‘ฝไปค๏ผŒไธญ่‹ฑๅŒ่ฏญ๏ผŒ่พ“ๅ…ฅ / ๅณๅฏๅ‘ผๅ‡บ
โšก ๅ“ๅบ”ๆ›ดๅฟซ ็ป้ชŒๅก็‰‡ๅŽๅฐๅผ‚ๆญฅ็”Ÿๆˆ๏ผŒไธŠไธ‹ๆ–‡ๅŽ‹็ผฉไฝฟ็”จ็‹ฌ็ซ‹่ฝป้‡ๆจกๅž‹
๐Ÿ›ก๏ธ ็จณๅฎšๆ€งๆๅ‡ ไฟฎๅค async await ไธขๅคฑใ€่ถ…ๆ—ถ่ฆ†็›–ใ€ๅ–ๆถˆๆŠฅ้”™็ญ‰ๅ…ณ้”ฎ bug
๐Ÿ“‹ ๅฎŒๆ•ดๆ›ดๆ–ฐๆ—ฅๅฟ—

ๆ–ฐๆจกๅ—๏ผš่ฟ่กŒๆŽงๅˆถ API ยท ไปปๅŠก็›‘ๆŽง๏ผˆๅŽ็ซฏ+ๅ‰็ซฏ๏ผ‰ยท ไปปๅŠก่ฎกๅˆ’๏ผˆ็”Ÿๆˆ/่‡ชๅŠจ/ๆ‰ง่กŒ/้ฃŽๆŽง๏ผ‰ยท ๅฟซๆทๅ‘ฝไปค ยท UI ่ฏญ่จ€ๆจกๅ—

ๆ”น่ฟ›๏ผšๅŽ‹็ผฉๆจกๅž‹็‹ฌ็ซ‹้…็ฝฎ ยท ็ป้ชŒๅก็‰‡ๅผ‚ๆญฅ็”Ÿๆˆ ยท ๆฃ€็ดขๅ™จๆจก็ณŠๅŒน้… ยท ๅๆ€ prompt ้‡ๅ†™ ยท ่ถ…ๆ—ถ max() ่ฏญไน‰ ยท MCP Streamable HTTP ยท stdio ็ปๅฏน่ทฏๅพ„ ยท ๆกŒ้ข็ซฏๆŒ‰็ซฏๅฃ้‡ๅฏ

ไฟฎๅค๏ผšmemory_compaction AttributeError ยท memory.add() ๆผ await ยท ๅ–ๆถˆๅผ•ๅฏผๆ˜พ็คบ AGENT_ERROR ยท ๆทฑ่‰ฒๆจกๅผๆ–‡ๅญ—ไธๅฏ่ง ยท delegate_task ่ถ…ๆ—ถ่ฆ†็›– ยท SSE ๅฟƒ่ทณ้˜ปๅกž


๐Ÿš€ ๅฟซ้€Ÿๅผ€ๅง‹

ๅ‰ๆๆกไปถ

  • Python 3.10 - 3.13
  • Node.js 18+๏ผˆๅ‰็ซฏๆž„ๅปบ้œ€่ฆ๏ผ‰
  • ่‡ณๅฐ‘ไธ€ไธช LLM API key๏ผˆๆ™บ่ฐฑ GLMใ€MiniMaxใ€OpenAIใ€Anthropic ็ญ‰๏ผ‰

ไปŽๆบ็ ๅฎ‰่ฃ…

git clone https://github.com/hubos-ai/HubOS.git
cd HubOS

python -m venv .venv
source .venv/bin/activate  # Windows: .venv\Scripts\activate

pip install -e .

cd console
npm ci
npm run build
cd ..

hubos init
hubos app

ๆ‰“ๅผ€ http://localhost:8088 ๅผ€ๅง‹ไฝฟ็”จใ€‚

้ฆ–ๆฌก้…็ฝฎ

  1. ๆ‰“ๅผ€ http://localhost:8088
  2. ๆณจๅ†Œ่ดฆๅท
  3. ่ฟ›ๅ…ฅ ่ฎพ็ฝฎ โ†’ ๆจกๅž‹๏ผŒ้…็ฝฎ LLM ไพ›ๅบ”ๅ•†๏ผˆAPI key + ๆจกๅž‹๏ผ‰
  4. ่ฟ›ๅ…ฅ ่ฎพ็ฝฎ โ†’ Agent๏ผŒ็กฎ่ฎค Agent ้…็ฝฎ
  5. ๅผ€ๅง‹ๅ’Œไฝ ็š„ AI ๅ›ข้˜Ÿๅฏน่ฏ๏ผ

๐Ÿค ๆ”ฏๆŒ็š„ LLM ไพ›ๅบ”ๅ•†

HubOS ๆ”ฏๆŒๅคš็ง LLM ไพ›ๅบ”ๅ•†๏ผŒๆฏไธช Agent ๅฏ็‹ฌ็ซ‹้…็ฝฎๆจกๅž‹๏ผš

ไพ›ๅบ”ๅ•† ๆจกๅž‹ ้€‚็”จๅœบๆ™ฏ
ๆ™บ่ฐฑ๏ผˆZhipu๏ผ‰ GLM-4, GLM-5.1 ๅคๆ‚ๆŽจ็†ใ€้•ฟไธŠไธ‹ๆ–‡๏ผˆ200K๏ผ‰
MiniMax M2.7-highspeed ๅฟซ้€Ÿ็ป“ๆž„ๅŒ–ไปปๅŠก
OpenAI GPT-4o, GPT-4-turbo ้€š็”จๅœบๆ™ฏ
Anthropic Claude 3.5/4 ๅˆ†ๆžใ€ๅ†™ไฝœ
Google Gemini 1.5/2.0 ๅคšๆจกๆ€ไปปๅŠก
DeepSeek DeepSeek-V3 ้ซ˜ๆ€งไปทๆฏ”ๆŽจ็†
้€šไน‰ๅƒ้—ฎ Qwen 2.5/3 ไธญๆ–‡ๅœบๆ™ฏ
Ollama ๆœฌๅœฐๆจกๅž‹ ้š็งไผ˜ๅ…ˆ๏ผŒๆ— ้œ€ API

๐Ÿ—๏ธ ็ณป็ปŸๆžถๆž„

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                    ็”จๆˆทๆŽฅๅ…ฅๅฑ‚                              โ”‚
โ”‚  Web ๆŽงๅˆถๅฐ โ”‚ ๆกŒ้ขๅบ”็”จ โ”‚ ้ฃžไนฆ โ”‚ ๅพฎไฟก โ”‚ ้’‰้’‰ โ”‚ 14+ ๆธ ้“    โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                       โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚               FastAPI ๅŽ็ซฏ (ๅผ‚ๆญฅ)                         โ”‚
โ”‚  ่ฎค่ฏ/ๆƒ้™ โ”‚ ไผš่ฏ็ฎก็† โ”‚ ไปปๅŠก่ฟฝ่ธช โ”‚ ๆ–‡ไปถ้”                 โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                       โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚              Agent ่ฐƒๅบฆๅฑ‚ (ๆ€ป็ป็†)                         โ”‚
โ”‚  Agent ๅฎžไพ‹ๆฑ  (LRU ็ผ“ๅญ˜ + ๅนถๅ‘ๅฎ‰ๅ…จ)                       โ”‚
โ”‚  ๅนถ่กŒๅง”ๆดพ โ”‚ ๆตๆฐด็บฟๅไฝœ โ”‚ ๅŽๅฐไปปๅŠก                          โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                       โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚              9 ไธชไธ“ไธš Agent (ๆ•ฐๅญ—ๅ‘˜ๅทฅ)                      โ”‚
โ”‚  ๆฏไธช Agent: ่บซไปฝ + ๆŠ€่ƒฝ + ่ฎฐๅฟ† + ๆจกๅž‹้…็ฝฎ                 โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                       โ”‚
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ–ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚              ๅŸบ็ก€่ฎพๆ–ฝๅฑ‚                                    โ”‚
โ”‚  ๆŠ€่ƒฝ โ”‚ LLM ่ทฏ็”ฑ โ”‚ ่ฎฐๅฟ†็ณป็ปŸ โ”‚ ่‡ช่ฟ›ๅŒ– โ”‚ MCP โ”‚ ๅฎšๆ—ถไปปๅŠก     โ”‚
โ”‚  ๅฎ‰ๅ…จ้˜ฒๆŠค โ”‚ DAG ๅผ•ๆ“Ž โ”‚ ๅทฅๅ…ท้˜ฒๆŠค โ”‚ ๆ–‡ไปถ้˜ฒๆŠค                 โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

ๆŠ€ๆœฏๆ ˆ

็ป„ไปถ ๆŠ€ๆœฏ
ๅŽ็ซฏ Python 3.10+ ยท FastAPI ยท Uvicorn
Agent ๆก†ๆžถ AgentScope 1.0.18
ๅ‰็ซฏ React 18 ยท Vite ยท TypeScript ยท Ant Design 5
ๆกŒ้ข็ซฏ Electron
ๅ‘้‡ๅญ˜ๅ‚จ ChromaDB (SQLite)
UI ็ป„ไปถ @agentscope-ai/chat ยท @agentscope-ai/design

๐Ÿ“„ ่ฎธๅฏ่ฏ

HubOS ๅŸบไบŽ Apache License 2.0 ๅผ€ๆบใ€‚


๐Ÿ™ ่‡ด่ฐข

HubOS ๅŸบไบŽไปฅไธ‹ไผ˜็ง€ๅผ€ๆบ้กน็›ฎๆž„ๅปบ๏ผš

้กน็›ฎ ็”จ้€” ่ฎธๅฏ่ฏ
AgentScope ๆ ธๅฟƒ Agent ๆก†ๆžถใ€ๆจกๅž‹่ทฏ็”ฑใ€MCP ้›†ๆˆ Apache-2.0
AgentScope Runtime ๅ‰็ซฏ UI ็ป„ไปถ (@agentscope-ai/chat, @agentscape-ai/design) Apache-2.0
FastAPI ๅผ‚ๆญฅ Web ๆก†ๆžถ MIT
React ๅ‰็ซฏ UI ๅบ“ MIT
Ant Design UI ็ป„ไปถๅบ“ MIT
Playwright ๆต่งˆๅ™จ่‡ชๅŠจๅŒ– Apache-2.0
ChromaDB ๅ‘้‡ๅญ˜ๅ‚จ Apache-2.0
ReMe ้•ฟๆœŸ่ฎฐๅฟ†็ฎก็† MIT
Uvicorn ASGI ๆœๅŠกๅ™จ BSD-3-Clause
Electron ๆกŒ้ขๅบ”็”จๆก†ๆžถ MIT

็‰นๅˆซๆ„Ÿ่ฐขๅผ€ๆบ็คพๅŒบ็š„ๆฏไธ€ไฝ่ดก็Œฎ่€…๏ผŒๆ˜ฏไฝ ไปฌ่ฎฉ AI ๅ˜ๅพ—ๆ›ดๅŠ ๆ™ฎๆƒ ใ€‚