hatter123/dsh-math0

dsh-math

Scientific computing toolkit for DeepSeek Harness: numeric, matrix, units, statistics, plus symbolic calculus (CAS).

AI Analysis

核心用途是为 DSH 注入强大的数学计算能力,使 Agent 能够自动调用 math 工具解决复杂的数学和单位换算问题。适合需要精确数学计算的科研或工程任务。

Package
dsh-math
Version
0.1.0
License
MIT
Last updated
Aug 17, 2026

Install

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:hatter123/dsh-math

Usage

The agent calls the math tool automatically when it needs a computation. Examples of what it can answer:

  • determinant: det([[1,2],[3,4]])-2
  • unit conversion: 5 cm to inch1.9685039370078743 inch
  • big number: 2^1001.2676506002282294e+30
  • derivative: derivative(x^2, x)2*x
  • integral: integral(x^2, x)1/3*x^3
  • solve: roots(x^2 - 3x + 2)[1,2]