From f828ebc28b648f00769d37aafb2db31da472cfcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=9B=A2=E5=AD=90?= Date: Thu, 30 Apr 2026 13:38:56 +0000 Subject: [PATCH] fix: align testing issue commands + add moderator sync pitfall MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Address review from 星月: - Update testing issue #290 to match actual CLI commands - Add pitfall: moderator must be sync (not async) - knowledge commands confirmed real (exist in codebase) Ref: #290 --- packages/cli/skills/hermes/SKILL.md | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cli/skills/hermes/SKILL.md b/packages/cli/skills/hermes/SKILL.md index 71de649..69cab6d 100644 --- a/packages/cli/skills/hermes/SKILL.md +++ b/packages/cli/skills/hermes/SKILL.md @@ -502,3 +502,4 @@ nerve thread show # 查看执行轨迹 - **_signals 表**:每个 sense 自动有 `_signals` 表记录 signal 历史,受 `retention` 配置限制。 - **peers 只读**:sense 的 `peers` 参数提供其他 sense 数据库的只读访问,不要写入。 - **concurrency + overflow**:workflow 必须配置并发策略,否则验证失败。 +- **moderator 是同步函数**:不要加 async,moderator 是纯路由逻辑,不能有副作用。