dsh-stream-rules
Inject rules when needed, without wasting context. DSH port of opencode-stream-rules.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:jiesou/dsh-stream-rules说明文档
阅读完整 README ↗dsh-stream-rules
按需注入规则,不浪费上下文。
你可以为 agent 编写自定义的流式规则(streaming rules)。
规则只在模式匹配后作为一条 steering notice 注入,然后 agent 会从同一个位置重试。 这样你就能控制 agent 的行为边界,同时不浪费上下文。
由我的 jiesou/opencode-stream-rules 移植到 DSH。 与 oh-my-pi 的 "Time-traveling stream rules" 类似,但代码实现非常简单紧凑。
工作原理
当规则在某个工具调用(工具名 + 序列化后的参数)上 match 返回 true 时,该规则触发:
- 默认 — 通过
agent.inject()向 agent 注入一条SYSTEM NOTICEsteering 消息(DSH 的"非唤醒"机制,为下一次 pre-step 排队模型可见上下文)。agent 会从同一位置重试,此时它已经知道了这条规则。 reject: true— 拒绝第一次工具调用({ kind: 'deny' });之后的尝试会被放行。在不至于过度限制的前提下进行 steering,例如在容器内已经允许pip install通过时。
每条规则在每个会话(每个 agent)中最多触发一次,与原始版本的 notified 去重逻辑一致。
安装
dsh plugin --profile add github:jiesou/dsh-stream-rules
或者在你 profile 的 cordis.patch.yml 中添加一行:
- id: stream-rules
name: dsh-stream-rules
安装之后
你需要自己编写 .js 规则文件。在编辑之前,这个插件默认不会做任何事。
- 找到插件的路径:
$DSH_HOME/profiles//node_modules/dsh-stream-rules
$DSH_HOME 默认是 ~/.dsh。
- 编写规则:
mv rules/rules.example.js rules/rules.local.js
- 以
_开头的文件会被跳过。 - 可以用
config.rules指向其他规则目录:
- id: stream-rules
name: dsh-stream-rules
config:
rules: /path/to/your/rules
- 带
reject: true的规则只在第一次工具调用时拒绝;之后 agent 重试会被放行。既做了引导又不过度限制(例如在容器里时允许pip install)。
编写规则
// rules/rules.local.js
export default [
{
match: (v) =>
v.includes('pip') &&
v.includes('install') &&
!v.includes('uv pip') &&
!v.includes('uvx'),
reject: true,
prompt: 'Use `uvx` or `uv venv` + `uv pip` instead of `pip install` directly',
},
{
match: (v) => v.includes('curl') && v.includes('api.github.com'),
prompt: 'Prefer using `gh` cli over `curl https://api.github.com/...`. gh offers more requests limits.',
},
{
match: (v) => v.includes('pdf'),
prompt: 'Use the `markitdown` skill to read PDF files.',
},
// add your rules here
]