dsh-blast-radius
Reports the semantic blast radius of agent code edits: which symbols changed, who calls them, and which of those callers have no covering test.
报告 agent 代码修改的语义波及面:哪些符号变了、谁在调用它们、其中哪些调用方没有测试覆盖。
How to install
dsh plugin add dsh-blast-radius About
dsh-blast-radius DeepSeek Harness 插件:**agent 改了代码,这次改动会波及什么?** diff 告诉你改了 5 行。它不会告诉你这 5 行在一个被另外 3 个文件调用的函数里, 而那些调用点**一个测试都没有**。前者是文本视角,后者是风险视角。 用真实的 TypeScript 语义分析(tsserver)回答后者:改动落在哪个符号上、谁依赖这个 符号、那些依赖里有多少受测试保护。 [高] applyDiscount src/money.ts 3 处生产调用点,且该符号没有任何测试引用 影响 2 个其他文件:src/cart.ts、src/pricing.ts ↳ src/cart.ts:6 const total = applyDiscount(subtotal, discountPct) ↳ src/pricing.ts:10 return applyDiscount(cents, 10) ↳ src/pricing.ts:19 return applyDiscount(this.cents, pct) 两条不会妥协的原则 这两条决定了插件的所有行为,也决定了默认配置: **1. 分析失败永不阻断 agent。** TypeScript 没装、tsserver 崩了、查询超时 —— 全部放行。 即使 enforce: true 也一样。一…
Recommendation signals
Meta
- License
- MIT
- Language
- TypeScript
- GitHub stars
- 1
- mo. downloads
- –
- Last push
- 2026-08-20
- Created
- 2026-08-20
Basic safety check
- Findings
- None
- Sources
- curated:awesome-dsh-plugin.com, curated:awesome-dsh-plugin/awesome-dsh-plugin
- Topics
- code-review, deepseek-harness, dsh, dsh-plugin, impact-analysis, lsp, test-coverage, typescript
Related plugins
dsh-web
zhu1090093659/dsh-web-ui/tree/main/packages/dsh-git-graph
Git branch selector and Git graph for the dsh web GUI: switch branches and explore branch-lane and commit history from the conversation header.
dsh-web
zhu1090093659/dsh-web/tree/main/packages/dsh-git-graph
Git branch selector and Git graph for the dsh web GUI: switch branches and explore branch-lane and commit history from the conversation header.
dsh-git-worktree
wloops/dsh-git-worktree
Git worktree Session Targets with isolated task sessions, Ready for Review, reversible Local Preview, human-confirmed delivery, environment retention and recovery, and same-session iteration.
dsh-github
PerryLink/dsh-github
Official-grade GitHub CI integration: a composite action.yml, a polling PR review bot with idempotent inline comments and a status-check gate, plus PR/issues tools with every write gated by human approval.