From 11303e3ee449027d71f2cde9ef4bc46b33685171 Mon Sep 17 00:00:00 2001 From: JianFeeeee Date: Sun, 13 Sep 2026 14:09:07 +0800 Subject: [PATCH] =?UTF-8?q?chore(example):=20a2a=201.3.0=E2=86=921.3.1?= =?UTF-8?q?=E3=80=81acp=201.2.0=E2=86=921.2.1=EF=BC=88=E8=A1=A5=20Register?= =?UTF-8?q?InputChannel=20=E5=90=8E=E5=8D=87=20patch=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 上一提交(4cb3a0b)给这两个示例补了显式 `RegisterInputChannel`,但没有升版本号, 于是生产上"重装"出来的包与实际安装版本同名(1.3.0/1.2.0),既不好追溯也没法用版本比较升级。 本次只改版本号(`plg.json` 是仓库里的真源;`plugin.json` 由 `hmapdev build` 从它同步,不入库)。 实测:升级并 reload 后,内核启动日志里这两个插件的"只声明了出站通道"告警消失 (它们此前是真实缺口 —— 部署件是 9-11 的旧构建)。 --- example/a2a/plg.json | 2 +- example/acp/plg.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/example/a2a/plg.json b/example/a2a/plg.json index b089e19..403f3c5 100644 --- a/example/a2a/plg.json +++ b/example/a2a/plg.json @@ -2,7 +2,7 @@ "name": "a2a", "name_zh": "A2A 代理通信", "name_en": "A2A Agent Communication", - "version": "1.3.0", + "version": "1.3.1", "description": "Agent-to-Agent 协议通信插件,支持双向 A2A 通信:可查询其他 Agent 并回复其请求。提供 HTTP 服务端暴露本 Agent 能力。", "author": "HomeAgent", "entry": "plugin.so", diff --git a/example/acp/plg.json b/example/acp/plg.json index e9fe3e1..b499e56 100644 --- a/example/acp/plg.json +++ b/example/acp/plg.json @@ -2,7 +2,7 @@ "name": "acp", "name_zh": "ACP 代理通信", "name_en": "ACP Agent Client Protocol", - "version": "1.2.0", + "version": "1.2.1", "description": "Agent Client Protocol 通信插件:充当 ACP 服务端接受其他 Agent 的任务请求,同时提供客户端工具向远程 ACP Agent(如 opencode)发起会话并读取回复", "author": "HomeAgent", "entry": "plugin.so",