mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-21 17:38:10 +00:00
- 创建 docs/zh/ 和 docs/en/ 目录结构 - 迁移文档至多语言目录,添加中英文切换链接 - 创建 README_EN.md 英文版本 - 更新 README.md 添加语言切换链接 - 删除旧文档和临时文件
348 lines
14 KiB
Markdown
348 lines
14 KiB
Markdown
**中文** | [English](../zh/ARCHITECTURE.md)
|
||
|
||
# HomeAgent Architecture
|
||
|
||
The kernel performs zero IO; all external interaction comes from plugins.
|
||
|
||
## Message Processing Flow
|
||
|
||
### Full Pipeline
|
||
|
||
```
|
||
External input (via plugin InjectInput)
|
||
│
|
||
▼
|
||
eventLoop() → processTextInput()
|
||
│
|
||
├── on_input stage Plugins can intercept/rewrite/short-circuit
|
||
├── Context.Append Record to context window
|
||
├── Context.Prune Low-relevance events archived to Document
|
||
├── buildMemoryContext() Indexer recall → GraphDB BFS traversal
|
||
│
|
||
├── pre_action stage Plugins can inject system messages
|
||
│
|
||
├── [Tool Loop] process()
|
||
│ ├── buildSystemPrompt Persona + Memory + Knowledge + Context
|
||
│ ├── buildToolDefs Built-in tools + Plugin tools
|
||
│ ├── provider.Chat() LLM call
|
||
│ ├── post_action stage Plugins see LLM output + tool list
|
||
│ ├── Has tools?
|
||
│ │ ├── before_toolcall Plugins can reject/modify params
|
||
│ │ ├── executeToolCall Route to plugin/built-in
|
||
│ │ ├── after_toolcall Plugins can modify results
|
||
│ │ └── → back to post_action
|
||
│ └── No tools → exit loop
|
||
│
|
||
├── Context.Append(response)
|
||
├── before_output stage Plugins can modify final text
|
||
├── emitResponse() Send via output_send
|
||
└── after_output stage Read-only, cleanup
|
||
```
|
||
|
||
Code: `internal/agent/core/agent.go` — `process()` is the main tool loop
|
||
|
||
### 7 Stage Hooks
|
||
|
||
| Stage | Trigger | Plugin Capabilities |
|
||
|-------|---------|---------------------|
|
||
| `on_input` | Message arrives at Agent, zero processing | Blacklist/rate-limit/short-circuit reply |
|
||
| `pre_action` | Context ready, before LLM call | Inject external data into context |
|
||
| `post_action` | LLM returns text + tool list | Sensitive word filter/forced redirect |
|
||
| `before_toolcall` | Before single tool execution | Audit/reject/modify params |
|
||
| `after_toolcall` | After single tool execution | Desensitize/sort results |
|
||
| `before_output` | Final text ready, before sending | Format adaptation |
|
||
| `after_output` | Already sent | Statistics/logging |
|
||
|
||
Code: `internal/agent/core/stages.go` — `StageHost` orchestration
|
||
|
||
### Loop Rules
|
||
|
||
`post_action → [before_toolcall → execute → after_toolcall] → post_action` forms the inner loop.
|
||
Exit conditions: LLM has no tool calls / all rejected / exceeded limit.
|
||
|
||
### Short-Circuit Rules
|
||
|
||
Setting `ctx.Response` at any stage jumps to `after_output`.
|
||
|
||
## Three-Layer Memory
|
||
|
||
### Memory Flow
|
||
|
||
```
|
||
① Context (Working Window)
|
||
RelevanceContext — In-memory events[] + JSON persistence
|
||
Append: Each input, Vectorize(char 1-2gram TF-IDF)
|
||
Prune: TF-IDF CosineSimilarity, keep topK + last 10
|
||
├── Keep → timeline → system prompt (sorted by time)
|
||
└── Low score → Document layer archive (ContextToDoc)
|
||
Save: 5s debounce write to disk
|
||
|
||
↓ Prune archive ↑ LLM active recall
|
||
|
||
② Document (File Memory)
|
||
DocStore — JSON files + TF-IDF InvertedIndex
|
||
Write: Prune archive / doc_commit / Graph snapshot (syncGraphToDocs)
|
||
Read:
|
||
├── Auto-inject: Query(input, top3) → [Related Memory Docs] → system prompt (read-only, update AccessCount)
|
||
└── LLM active: doc_query → Consume(read and delete)
|
||
→ context.Append{Timestamp: d.CreatedAt, Source: "cold_storage"} per doc
|
||
→ Docs written to context timeline with original timestamps, deleted from docStore
|
||
Cold: FindColdDocs(72h, ≤2 accesses) → docToTriples → Graph
|
||
|
||
↓ Cold doc distillation ↑ Auto recall
|
||
|
||
③ Graph (Graph Database)
|
||
SQLite — entities + relations tables
|
||
Write: memory_commit / cold doc distillation / Pipeline rule distillation
|
||
Read:
|
||
├── Auto recall: Indexer.BuildContext(input)
|
||
│ → TF-IDF entity name search → BFS depth=2
|
||
│ → [Memory Index] → system prompt
|
||
└── LLM active: memory_recall / doc_query
|
||
Social: person_query / set_trait / relate (wraps GraphDB)
|
||
|
||
④ Distillation Pipeline (30min heartbeat)
|
||
distillContext → window > 2×maxSize → force Prune
|
||
syncGraphToDocs → Graph snapshot to Document (cross-layer searchable)
|
||
reorgGraph:
|
||
Step1: indexer.Sync — rebuild entity TF-IDF vector index
|
||
Step2: docStore.Reindex — rebuild document TF-IDF vector index
|
||
Step3: Cold docs → docToTriples → GraphDB.Commit
|
||
Step4: Entity similarity (Bigram Jaccard > 0.75) → consolidation → LLM decides merge
|
||
Step5: evaluateGraphQuality → LLM decides keep/delete
|
||
|
||
⑤ Pipeline Rule Distiller (every heartbeat)
|
||
distillOnce → regex match personal info:
|
||
我叫X / 我住在X / 我喜欢X / 我X岁 / 我的工作是X
|
||
→ triples → GraphDB.Commit
|
||
```
|
||
|
||
### TF-IDF Vectorization (char 1-2 gram)
|
||
|
||
TF-IDF is the core algorithm running through all three memory layers, used in 4 independent locations:
|
||
|
||
| Location | File | Purpose | Algorithm |
|
||
|----------|------|---------|-----------|
|
||
| Context Prune | `context.go:162` | Trim low-relevance context events | CosineSimilarity(queryVec, evt.Vector) |
|
||
| DocStore Query | `document.go:205` | Recall related content from document memory | InvertedIndex + CosineSimilarity |
|
||
| Indexer Entity Search | `indexer.go:149` | Recall related entities from Graph | InvertedIndex + CosineSimilarity |
|
||
| Entity Similarity Detection | `agent.go:2297` | Detect similar entities in Graph | Bigram Jaccard (>0.75 → consolidation) |
|
||
|
||
### Context Layer
|
||
|
||
`internal/agent/core/context.go` — `RelevanceContext`
|
||
- Maintains recent event list, writes JSON on each Append/Prune to prevent data loss
|
||
- TF-IDF relevance scoring on user input, keeps topK
|
||
|
||
### Document Layer
|
||
|
||
`internal/memory/document/doc.go` — `Store`
|
||
- Consume-on-read mode: deleted after `doc_query` retrieval
|
||
- TF-IDF index with character bigram + inverted index
|
||
|
||
### Graph Layer
|
||
|
||
`internal/memory/graph.go` — `GraphDB`
|
||
- SQLite WAL mode, two tables
|
||
- `Commit(triples)` — UPSERT entities + INSERT relations
|
||
- `Recall(keywords, depth)` — Keyword LIKE search + BFS traversal
|
||
|
||
### Memory Tools (LLM-callable)
|
||
|
||
| Tool | Purpose |
|
||
|------|---------|
|
||
| `memory_recall` | Recall from Graph |
|
||
| `memory_commit` | Write triples to Graph |
|
||
| `memory_introspect` | View memory statistics |
|
||
| `doc_query` | Search from Document |
|
||
| `doc_commit` | Write to Document |
|
||
|
||
### Other Memory Layers
|
||
|
||
- **Social** (`internal/memory/social/social.go`) — Persona traits and relationship network, wraps GraphDB entity types
|
||
- **Text Memory** (`internal/memory/text/text.go`) — Raw conversation JSONL logs, rotation strategy
|
||
- **Memory Indexer** (`internal/memory/indexer.go`) — Entity vectorization, auto-inject into system prompt
|
||
|
||
### Distillation Pipeline
|
||
|
||
`internal/memory/pipeline/pipeline.go`
|
||
- 10-minute tick, 7-day retention
|
||
- Rule-based triple extraction (name / location / likes / age / job patterns)
|
||
- Writes to GraphDB
|
||
|
||
### Context Pruning
|
||
|
||
```
|
||
Heartbeat 30min:
|
||
├── distillContext() — Distill current context
|
||
├── syncGraphToDocs() — Graph → Document sync
|
||
└── reorgGraph()
|
||
├── Indexer.Sync()
|
||
├── DocStore.Reindex()
|
||
├── Cold docs → Graph
|
||
└── Entity conflicts → enqueueConsolidationTask()
|
||
│
|
||
selfInputCh → LLM decides merge/skip
|
||
```
|
||
|
||
Entity conflict detection heuristic (bigram Jaccard > 0.5), routed through `selfInputCh` internal channel, LLM makes the final merge decision.
|
||
|
||
## Knowledge Base
|
||
|
||
`internal/knowledge/knowledge.go`
|
||
- File directory `knowledge/<name>/content.md`
|
||
- Independent TF-IDF index, separate from memory system
|
||
- `knowledge_search` / `knowledge_create` / `knowledge_list`
|
||
|
||
## Provider & Lua Adapter Layer
|
||
|
||
```
|
||
Agent
|
||
│
|
||
▼
|
||
Provider Interface (Name / Chat / ChatStream)
|
||
│
|
||
├── OpenAIProvider — Standard OpenAI API
|
||
├── OllamaProvider — Local Ollama
|
||
└── LuaAdaptedProvider (primary)
|
||
├── Serialize CompletionRequest → JSON
|
||
├── adapter.transform_request() → API format
|
||
├── HTTP request + adapter.headers
|
||
├── adapter.transform_response() → unified format
|
||
└── Deserialize
|
||
```
|
||
|
||
Code: `internal/agent/api/provider.go`
|
||
|
||
ProviderManager manages multiple sources, fallback in registration order. Lua adapters at `internal/lua/adapters/`, each `.lua` script defines `transform_request` / `transform_response` / `transform_stream_chunk`.
|
||
|
||
VM built-ins: `json.encode` / `json.decode` / `log` / `http_get` / `http_post`.
|
||
|
||
## Plugin System
|
||
|
||
### Three Loading Methods
|
||
|
||
| Method | Registration Mechanism | Compilation | Usage |
|
||
|--------|----------------------|-------------|-------|
|
||
| Built-in | `init()` → `RegisterFactory` | `internal/plugins/` compiled into kernel | webui/cli/timer/mcp etc. |
|
||
| External `.so`/`.dll` | `plugin.Open` dynamic loading | `-buildmode=plugin` | qq/files/web/memo etc. |
|
||
| Lua script plugin | Parse `main.lua` to register tools | No compilation, hot-reload | luaplugintest/testlua etc. |
|
||
| SKILL plugin | Parse `SKILL.md` | Markdown definition | OpenClaw compatible |
|
||
|
||
Built-in plugin registration: `internal/plugins/all.go` blank imports → each plugin `init()` → `Registry.Load()` scans directory to match factory.
|
||
External plugin loading: `internal/plugin/dynamic.go` → copy to SHA256 temp path (bypass `plugin.Open` path cache) → `Open` + `Lookup("NewPlugin")`.
|
||
Lua script plugin loading: `internal/lua/` → parse `main.lua` via Lua VM, call `start()` to register tools.
|
||
|
||
### PluginSDK Three Channels
|
||
|
||
```
|
||
Plugin ──→ Kernel
|
||
|
||
RegisterTool(name, fn) ──→ buildToolDefs() / executeToolCall()
|
||
RegisterStage(stage, fn) ──→ runStage() called at corresponding phase
|
||
Subscribe(event, fn) ──→ Publish() notify all subscribers
|
||
```
|
||
|
||
`internal/sdk/` bridges external SDK interface to kernel, defines complete PluginSDK:
|
||
|
||
```go
|
||
sdk.RegisterTool(name, def, handler)
|
||
sdk.RegisterStage(stage, handler)
|
||
sdk.Publish(event)
|
||
sdk.InjectInput(source, channel, payload)
|
||
sdk.InjectInterrupt(source, channel, payload)
|
||
sdk.Memory().Recall/Commit
|
||
sdk.Knowledge().Search/Create
|
||
sdk.Settings().Get/Set/List
|
||
```
|
||
|
||
### Plugin Interface
|
||
|
||
```go
|
||
type Plugin interface {
|
||
Name() string
|
||
Start(sdk *PluginSDK) error
|
||
Stop() error
|
||
}
|
||
```
|
||
|
||
## Interrupt Mechanism
|
||
|
||
```
|
||
interceptLoop (goroutine)
|
||
├── InputInterruptChan() ← Timer/message notifications
|
||
├── (a) cancelLLM() → Cancel Provider HTTP request
|
||
├── (b) interceptCh → process() pre-loop read [interrupt message]
|
||
└── (c) InjectInput() → Trigger new processing when idle
|
||
```
|
||
|
||
Three delivery paths:
|
||
|
||
| Path | Effect | Timing |
|
||
|------|--------|--------|
|
||
| cancelLLM | Cancel current HTTP request | On context.Canceled |
|
||
| interceptCh | Insert `[interrupt message]` in process() | Before each LLM call |
|
||
| InjectInput | Trigger new processing when eventLoop is idle | No ongoing request |
|
||
|
||
Code: `internal/agent/core/agent.go` — `interceptLoop` / `drainInterrupt`
|
||
|
||
## Configuration System
|
||
|
||
`internal/config/registry.go` — ConfigRegistry
|
||
|
||
- SQLite storage, `config` table + `config_<plugin>` independent tables
|
||
- Namespaces: `core.*` / `plugin.<name>.*`
|
||
- `RegisterDefault` inserts ~80 default keys (seeds for 8 LLM sources)
|
||
- WebUI settings page `/api/v1/settings` for read/write
|
||
|
||
## Code Structure
|
||
|
||
```
|
||
cmd/homed/main.go — Entry: assembles all subsystems
|
||
cmd/waiter/main.go — CLI client (Unix socket)
|
||
internal/
|
||
├── agent/
|
||
│ ├── core/ — Agent core (eventLoop/process/stages/context)
|
||
│ ├── api/ — Provider interface + LuaAdaptedProvider
|
||
│ ├── io/ — IOManager (queue/interrupt/output)
|
||
│ └── personal.go — Persona loading
|
||
├── plugin/
|
||
│ ├── registry.go — Registry + lifecycle
|
||
│ ├── dynamic.go — .so dynamic loader
|
||
│ └── manifest.go — plugin.json metadata
|
||
├── plugins/ — Built-in plugin implementations
|
||
│ ├── all.go — Blank imports
|
||
│ ├── webui/ — HTTP server + embedded SPA
|
||
│ ├── cli/ — Unix socket CLI
|
||
│ ├── timer/ — Timer
|
||
│ ├── cmd/ — Command execution
|
||
│ ├── mcp/ — MCP protocol
|
||
│ ├── openclaw/ — OpenClaw compatible
|
||
│ ├── agentcli/ — PTY terminal
|
||
│ ├── healthcheck/ — Health check
|
||
│ └── pluginmgr/ — Plugin manager
|
||
├── internal/sdk/ — PluginSDK definitions
|
||
│ ├── plugin.go — Plugin interface + PluginSDK
|
||
│ ├── memory.go — MemoryAPI
|
||
│ ├── knowledge.go — KnowledgeAPI
|
||
│ ├── settings.go — SettingsAPI
|
||
│ └── llm.go — LLMAPI
|
||
├── memory/
|
||
│ ├── graph.go — SQLite graph database
|
||
│ ├── indexer.go — Graph → vector index
|
||
│ ├── vector/store.go — TF-IDF vector engine
|
||
│ ├── document/doc.go — Document memory
|
||
│ ├── text/text.go — Text logs
|
||
│ └── pipeline/ — Distiller
|
||
├── knowledge/knowledge.go — Knowledge base
|
||
├── lua/
|
||
│ ├── vm.go — Lua VM (json/log/http)
|
||
│ └── adapters/ — 8 LLM adapter scripts
|
||
├── config/registry.go — SQLite config center
|
||
├── events/bus.go — Event bus
|
||
├── tracker/ — OverlayFS change tracking
|
||
├── supervisor/ — Daemon management
|
||
├── snapshot/ — Snapshots
|
||
└── tokenizer/ — Chinese tokenization (jieba wrapper)
|
||
```
|