Blaczz/dsh-sci1

dsh-sci

适用于 DeepSeek Harness 的无依赖科学计算工具:支持物理单位转换、CODATA 物理常数查询及龙格-库塔常微分方程/动力系统模拟。

AI 分析

核心用途是为智能体提供无需外部重度依赖的物理与数学计算工具。适合需要进行单位换算、常数检索或常微分方程数值模拟的科研与工程任务。必要条件为 Node.js >= 22.19 及 pnpm。

套件
dsh-sci
版本
0.1.0
授權
MIT
最近更新
2026年8月14日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Blaczz/dsh-sci

🔬 Usage

User: simulate the Lotka-Volterra predator-prey model, alpha=1, beta=0.1, gamma=1, delta=0.02, to t=50
agent → ode_solve(model="lotka-volterra", params={...}, tEnd=50)
       → returns the time series + final state [prey, predator]

User: how many joules is 1 electron-volt?
agent → units_convert(value=1, from="eV", to="J") → 1.602176634e-19

User: list all physical constants
agent → physical_constants() → c, h, e, k, G, N_A, … all