mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-22 18:08:04 +00:00
在真实内核二进制(私有 netns + mock LLM + CLI unix socket)上做压力测试时,
下面三个问题**只有跑真二进制才暴露** —— 单元测试里都显式传了参数、没走插件加载,
所以全绿也照样漏。
## ① 根 agent 的 DataDir 没接线 ⇒ 驻留子永远建不出来
现象:模型调用 `resident_agents` 成功,但结果是
`创建驻留子需要 data_dir 或显式 temp_path`。
根因:`cmd/homed/main.go` 构造 AgentConfig 时没有 `DataDir`,
而驻留子的 temp 图库需要 `<data>/residents/<id>/graph.db` 这个锚点。
(单测里 `AgentConfig{DataDir: dir}` 显式给了,所以测不出来。)
修:main.go 接线 `DataDir: cfg.Daemon.DataDir`;并在工具层加**兜底 + 告警** ——
data_dir 为空时从主图库路径反推(`<data>/memory/graph.db` ⇒ `<data>`),
失败才报错。静默失败会让线上表现成"工具能调但永远建不出来"。
## ② 插件通道没登记为 inputch ⇒ "划入 inputch"必然失败
现象:`划入 inputch cli: inputch 未注册`。
根因:`cli` 插件只调 `RegisterOutputChannel("cli", ...)`,却用同一个名字
`InjectTextSync("cli", ...)` 注入输入 —— 内核 inputch 登记表里根本没有它。
(实测审计:内建 6 个插件里只有 0 个登记过入站通道;SDK 示例里只有 qq/weather 是对的。)
修两处:
- **全部内建插件显式登记入站通道**:`cli`/`agentcli`/`timer`/`webui`(+`http`, NoMemory)/
`clawhubadapter`(每个 OC 通道声明处)/`remotedevice`(`device/<id>` 懒登记,幂等)。
- `registry.go` 把隐式兜底改成**留痕的兼容网**:只有当该名字还没登记为 inputch 时
才兜底登记,并打日志说明"建议显式 RegisterInputChannel"。
实测:改完内建插件后,启动日志里兜底告警 **0 次**。
## ③ create 之后子不开工 ⇒ rounds 恒为 0
现象:`[agent] r1 started, waiting for IO interrupts` 之后什么都没有,登记表里 rounds=0。
根因:`TaskPrompt` 只进了子的**系统提示词**,从没作为输入投给子。
修:create 即开工 —— 把任务提示词作为**第一条排队输入**投给子(排队而非中断:
创建是"安排工作",不是"打断它正在做的事")。
## 测试
- `TestResident_InputchTableAutoAndProactive` / `TestLightKernel_TraditionalContextNoTrimming`
随行为更新:create 会多跑一轮(任务提示词那轮也会写处理表),
断言改为"以创建时的表长为基线 + 等待新的一轮"。
- 全量 `go test ./...` = 37 包 ok / 0 FAIL;`-race`(agent/plugin/plugins)干净。
## 真实二进制压力测试结果(修复后)
私有 netns 里跑 mock LLM + 内核,用 CLI socket 驱动多并发连接:
- 密集:16 连接×12 输入 + 4 线程×20 次 L4 中断 → **274 任务 executed=274 / rejected=0 / errors=0**,
峰值排队 15、峰值待处理中断 76;
- 稀疏(中断每 3s 一次,压在排队任务的流式段上)→ **suspended=27 / resumed=27 / preempted=27**;
- 驻留子全链路:父建子(inputchs=["cli"])→ 子开工 → 子 `notify_parent` → 父侧收到
`interrupt from r1/child/r1`(L3,且父被抢占 suspended/resumed=1);
- 优雅退出:SIGTERM 后驻留子 temp 目录被清除、无残留进程。
180 lines
5.9 KiB
Go
180 lines
5.9 KiB
Go
package core
|
||
|
||
// 驻留子的**工具面**(对照设计 §7 控制面与 §8 处理表)。
|
||
//
|
||
// 单工具多动作:父侧一个 `resident_agents`(list/create/send/inspect/compress/reclaim/destroy),
|
||
// 子侧两个小工具:`notify_parent`(L3 主动汇报)与 `inputch_note`(主动写处理表)。
|
||
|
||
import (
|
||
"fmt"
|
||
"log"
|
||
"path/filepath"
|
||
"strings"
|
||
|
||
agentAPI "gitcode.com/JianFeeeee/HomeAgent/internal/agent/api"
|
||
agentIO "gitcode.com/JianFeeeee/HomeAgent/internal/agent/io"
|
||
"gitcode.com/JianFeeeee/HomeAgent/internal/memory"
|
||
)
|
||
|
||
func strArg(tc agentAPI.ToolCall, key string) string {
|
||
s, _ := tc.Arguments[key].(string)
|
||
return strings.TrimSpace(s)
|
||
}
|
||
|
||
func splitArg(s string) []string {
|
||
if strings.TrimSpace(s) == "" {
|
||
return nil
|
||
}
|
||
parts := strings.Split(s, ",")
|
||
out := make([]string, 0, len(parts))
|
||
for _, p := range parts {
|
||
if p = strings.TrimSpace(p); p != "" {
|
||
out = append(out, p)
|
||
}
|
||
}
|
||
return out
|
||
}
|
||
|
||
// executeResidentAgents 是父的驻留子控制面(单工具多动作)。
|
||
func (a *Agent) executeResidentAgents(tc agentAPI.ToolCall) string {
|
||
switch action := strArg(tc, "action"); action {
|
||
case "", "list":
|
||
list := a.Residents()
|
||
if len(list) == 0 {
|
||
return "当前没有驻留子 agent。"
|
||
}
|
||
var b strings.Builder
|
||
fmt.Fprintf(&b, "驻留子 agent(%d 个):", len(list))
|
||
for _, r := range list {
|
||
fmt.Fprintf(&b, "\n - %s [%s] inputch=%v 轮次=%d 处理表=%d",
|
||
r.ID, r.State, r.InputChs, r.Rounds, r.TableSize)
|
||
if r.ContextFull {
|
||
b.WriteString(" ⚠️ contextfull")
|
||
}
|
||
}
|
||
return b.String()
|
||
|
||
case "create":
|
||
id := strArg(tc, "id")
|
||
tempPath := strArg(tc, "temp_path")
|
||
if tempPath == "" {
|
||
anchor := a.dataDir
|
||
if anchor == "" {
|
||
// 兜底:从**主图库路径**推导(<data>/memory/graph.db ⇒ <data>)。
|
||
// 为什么不静默失败:这条路径只在"配置漏接线"时走到,
|
||
// 静默报错会让线上表现为"工具能调但永远建不出来"(实测就是这样)。
|
||
if a.memory != nil && a.memory.Path() != "" {
|
||
anchor = filepath.Dir(filepath.Dir(a.memory.Path()))
|
||
log.Printf("[resident] data_dir 未接线,回退到主图库目录: %s", anchor)
|
||
}
|
||
}
|
||
if anchor == "" {
|
||
return "创建驻留子需要 data_dir 或显式 temp_path(内核未接线 DataDir)"
|
||
}
|
||
tempPath = filepath.Join(anchor, "residents", id, "graph.db")
|
||
}
|
||
info, err := a.SpawnResident(ResidentOptions{
|
||
ID: id,
|
||
TaskPrompt: strArg(tc, "task_prompt"),
|
||
InputChs: splitArg(strArg(tc, "input_chs")),
|
||
AllowedOutputs: splitArg(strArg(tc, "allowed_outputs")),
|
||
Capacity: intArg(tc, "capacity"),
|
||
TempPath: tempPath,
|
||
})
|
||
if err != nil {
|
||
return fmt.Sprintf("创建驻留子失败: %v", err)
|
||
}
|
||
return "已创建驻留子: " + MarshalResidentInfo(info)
|
||
|
||
case "send":
|
||
if err := a.SendToResident(strArg(tc, "id"), strArg(tc, "text")); err != nil {
|
||
return fmt.Sprintf("发送失败: %v", err)
|
||
}
|
||
return "已发送(对子而言是 L4 中断)"
|
||
|
||
case "inspect":
|
||
id := strArg(tc, "id")
|
||
if id == "" {
|
||
return "inspect 需要 id(或先用 action=list)"
|
||
}
|
||
table, err := a.ResidentTable(id)
|
||
if err != nil {
|
||
return fmt.Sprintf("查看失败: %v", err)
|
||
}
|
||
var b strings.Builder
|
||
fmt.Fprintf(&b, "驻留子 %s 的 inputch 处理表(%d 条):", id, len(table))
|
||
for _, r := range table {
|
||
kind := "系统写"
|
||
if r.Proactive {
|
||
kind = "主动写"
|
||
}
|
||
fmt.Fprintf(&b, "\n - [%s][%s] %s", r.InputCh, kind, r.Text)
|
||
}
|
||
if len(table) == 0 {
|
||
b.WriteString("\n (尚无记录)")
|
||
}
|
||
return b.String()
|
||
|
||
case "compress":
|
||
n, err := a.CompressResident(strArg(tc, "id"))
|
||
if err != nil {
|
||
return fmt.Sprintf("压缩失败: %v", err)
|
||
}
|
||
return fmt.Sprintf("已压缩子 agent 上下文(丢弃 %d 条旧事件,并发清理其 inputch 处理表);子继续存在", n)
|
||
|
||
case "reclaim":
|
||
info, err := a.ReclaimResident(strArg(tc, "id"), reclaimKeepAll)
|
||
if err != nil {
|
||
return fmt.Sprintf("回收失败: %v", err)
|
||
}
|
||
return "已回收(temp 中选中的记录已合入主记忆,该驻留子已取消): " + MarshalResidentInfo(info)
|
||
|
||
case "destroy":
|
||
if err := a.DestroyResident(strArg(tc, "id")); err != nil {
|
||
return fmt.Sprintf("销毁失败: %v", err)
|
||
}
|
||
return "已销毁并移除该驻留子"
|
||
|
||
default:
|
||
return fmt.Sprintf("未知 action=%q;可用:list | create | send | inspect | compress | reclaim | destroy", action)
|
||
}
|
||
}
|
||
|
||
// reclaimKeepAll 是回收时的默认策略:把子 temp 的活跃记录全部纳入主记忆
|
||
// ("哪些纳入"由父的模型决定——这里给的是"全要"这一档)。
|
||
func reclaimKeepAll(_ []InputchRecord, triples []memory.Triple) []memory.Triple { return triples }
|
||
|
||
func intArg(tc agentAPI.ToolCall, key string) int {
|
||
switch v := tc.Arguments[key].(type) {
|
||
case float64:
|
||
return int(v)
|
||
case int:
|
||
return v
|
||
}
|
||
return 0
|
||
}
|
||
|
||
// executeNotifyParent 是子的"主动向父发消息"(父侧阶梯 = **L3 中断**)。
|
||
func (a *Agent) executeNotifyParent(tc agentAPI.ToolCall) string {
|
||
return a.notifyParentFrom(strArg(tc, "text"))
|
||
}
|
||
|
||
// executeInputchNote 是子"主动写入本轮 inputch 的处理信息"。
|
||
// 主动写过 ⇒ 本轮系统不再自动写(见 autoRecordInputch)。
|
||
func (a *Agent) executeInputchNote(tc agentAPI.ToolCall) string {
|
||
text := strArg(tc, "text")
|
||
if text == "" {
|
||
return "text 不能为空"
|
||
}
|
||
a.recordInputchNote(text)
|
||
return "已记录本轮 inputch 处理信息(本轮系统不会再自动写)"
|
||
}
|
||
|
||
// childInboundChannelHint 是给子看的"父会怎么把消息投给你"的提示(不参与调度)。
|
||
func childInboundChannelHint(a *Agent) string { return "sub/" + string(a.id) }
|
||
|
||
// residentTempDir 返回某个驻留子 temp 存储所在目录(销毁时连同目录丢弃)。
|
||
func residentTempDir(tempPath string) string { return filepath.Dir(tempPath) }
|
||
|
||
var _ = agentIO.InputChannel{} // 保持 agentIO 依赖(工具面未来会用通道登记)
|