hooks
coderclaw hooks
Section titled “coderclaw hooks”管理智能体钩子(针对 /new、/reset 等命令以及 Gateway 网关启动的事件驱动自动化)。
相关内容:
列出所有钩子
Section titled “列出所有钩子”coderclaw hooks list列出从工作区、托管目录和内置目录中发现的所有钩子。
选项:
--eligible:仅显示符合条件的钩子(满足要求)--json:以 JSON 格式输出-v, --verbose:显示详细信息,包括缺失的要求
示例输出:
Hooks (3/3 ready)
Ready: 🚀 boot-md ✓ - Run BOOT.md on gateway startup 📝 command-logger ✓ - Log all command events to a centralized audit file 💾 session-memory ✓ - Save session context to memory when /new command is issued示例(详细模式):
coderclaw hooks list --verbose显示不符合条件的钩子缺失的要求。
示例(JSON):
coderclaw hooks list --json返回结构化 JSON,供程序化使用。
获取钩子信息
Section titled “获取钩子信息”coderclaw hooks info <name>显示特定钩子的详细信息。
参数:
<name>:钩子名称(例如session-memory)
选项:
--json:以 JSON 格式输出
示例:
coderclaw hooks info session-memory输出:
💾 session-memory ✓ Ready
Save session context to memory when /new command is issued
Details: Source: coderclaw-bundled Path: /path/to/coderclaw/hooks/bundled/session-memory/HOOK.md Handler: /path/to/coderclaw/hooks/bundled/session-memory/handler.ts Homepage: https://docs.coderclaw.ai/automation/hooks#session-memory Events: command:new
Requirements: Config: ✓ workspace.dir检查钩子资格
Section titled “检查钩子资格”coderclaw hooks check显示钩子资格状态摘要(有多少已就绪,有多少未就绪)。
选项:
--json:以 JSON 格式输出
示例输出:
Hooks Status
Total hooks: 4Ready: 4Not ready: 0coderclaw hooks enable <name>通过将特定钩子添加到配置(~/.coderclaw/config.json)来启用它。
注意: 由插件管理的钩子在 coderclaw hooks list 中显示 plugin:<id>,
无法在此处启用/禁用。请改为启用/禁用该插件。
参数:
<name>:钩子名称(例如session-memory)
示例:
coderclaw hooks enable session-memory输出:
✓ Enabled hook: 💾 session-memory执行操作:
- 检查钩子是否存在且符合条件
- 在配置中更新
hooks.internal.entries.<name>.enabled = true - 将配置保存到磁盘
启用后:
- 重启 Gateway 网关以重新加载钩子(macOS 上重启菜单栏应用,或在开发环境中重启 Gateway 网关进程)。
coderclaw hooks disable <name>通过更新配置来禁用特定钩子。
参数:
<name>:钩子名称(例如command-logger)
示例:
coderclaw hooks disable command-logger输出:
⏸ Disabled hook: 📝 command-logger禁用后:
- 重启 Gateway 网关以重新加载钩子
coderclaw hooks install <path-or-spec>从本地文件夹/压缩包或 npm 安装钩子包。
执行操作:
- 将钩子包复制到
~/.coderclaw/hooks/<id> - 在
hooks.internal.entries.*中启用已安装的钩子 - 在
hooks.internal.installs下记录安装信息
选项:
-l, --link:链接本地目录而不是复制(将其添加到hooks.internal.load.extraDirs)
支持的压缩包格式: .zip、.tgz、.tar.gz、.tar
示例:
# 本地目录coderclaw hooks install ./my-hook-pack
# 本地压缩包coderclaw hooks install ./my-hook-pack.zip
# NPM 包coderclaw hooks install @coderclaw/my-hook-pack
# 链接本地目录而不复制coderclaw hooks install -l ./my-hook-packcoderclaw hooks update <id>coderclaw hooks update --all更新已安装的钩子包(仅限 npm 安装)。
选项:
--all:更新所有已跟踪的钩子包--dry-run:显示将要进行的更改,但不写入
session-memory
Section titled “session-memory”在你执行 /new 时将会话上下文保存到记忆中。
启用:
coderclaw hooks enable session-memory输出: ~/.coderclaw/workspace/memory/YYYY-MM-DD-slug.md
command-logger
Section titled “command-logger”将所有命令事件记录到集中的审计文件中。
启用:
coderclaw hooks enable command-logger输出: ~/.coderclaw/logs/commands.log
查看日志:
# 最近的命令tail -n 20 ~/.coderclaw/logs/commands.log
# 格式化输出cat ~/.coderclaw/logs/commands.log | jq .
# 按操作过滤grep '"action":"new"' ~/.coderclaw/logs/commands.log | jq .boot-md
Section titled “boot-md”在 Gateway 网关启动时(渠道启动后)运行 BOOT.md。
事件:gateway:startup
启用:
coderclaw hooks enable boot-md参见: boot-md 文档