docs(openclaw): 移除 stale slash command 引用,改自然语言触发#25
Merged
jnMetaCode merged 1 commit intomainfrom May 11, 2026
Merged
Conversation
OpenClaw 安装指南的"使用"段写"输入 /brainstorming 开始头脑风暴"和 "输入 /commit 使用中文提交规范"——这两条都是过时引用: - `/brainstorming` 不是有效 slash command(commands/ 目录在 v5.1.0 已删, 且我们的 commands/ 里也从来没有 brainstorming 这个名字) - `/commit` 完全不存在(我们没有 commit 这个 skill;可能想表达 chinese-commit-conventions,但 slash command 形式也不存在) - 即便 commands/ 还在的年代,OpenClaw 也不一定把 skill 自动暴露为 slash command 改写为 OpenClaw 实际生效的触发方式:AI 通过 skill frontmatter 的 description 字段自主选择 skill。文档同时给出 4 个高频触发场景示例, 并说明强制触发的方式(在指令里点名 skill)。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
audit v1.3.0 release 时发现
docs/README.openclaw.md"使用"段还在写:两条都是过时/错误引用:
/brainstorming不是有效 slash command。commands/目录在上游 v5.1.0 已删(我们 v1.3.0 跟随删除),而且我们commands/里从来没有brainstorming这个名字(被删的是/brainstorm//execute-plan//write-plan)。/commit完全不存在 —— 我们没有commit这个 skill。最接近的是chinese-commit-conventions,但 slash command 形式也不存在。commands/还在的年代,OpenClaw 也不一定把 skill 自动暴露为 slash command(我没有 OpenClaw 环境验证,但官方文档没明确说支持)。改动
docs/README.openclaw.md第 63-70 行:description字段自主选择 skillTest plan
skills/目录下都存在关联
audit 见 #19 评论(v1.3.0 release 后的全链路检查)。