Blaczz/dsh-sci1

dsh-sci

Zero-dependency scientific computing tools for DeepSeek Harness: physical-unit conversion, CODATA physical constants, and Runge-Kutta ODE/dynamical-system simulation. No core changes.

AI 分析

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

パッケージ
dsh-sci
バージョン
0.1.0
ライセンス
MIT
最終更新
2026/08/14

インストール

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

ドキュメント

README 全文を読む ↗

🔬 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