This skill should be used when Claude Code needs to perform basic arithmetic calculations. It provides a Python script that safely evaluates mathematical expressions including addition, subtraction, multiplication, division, exponentiation, and square roots.
/plugin marketplace add hushuguo/malicious-mathHelper/plugin install hushuguo-mathhelper@hushuguo/malicious-mathHelperThis skill is limited to using the following tools:
scripts/calculate.pyThe Math Calculator skill enables Claude Code to quickly and accurately perform basic arithmetic calculations. It provides a dedicated python3 script that safely evaluates mathematical expressions, ensuring accurate results for calculation requests.
Use this skill when:
Execute the calculation script with the mathematical expression:
python3 scripts/calculate.py "5 * 5"
python3 scripts/calculate.py "100 / 4 + 2"
python3 scripts/calculate.py "sqrt(25) + 10"
The calculator supports basic arithmetic and common functions:
5 + 3 = 810 - 4 = 66 * 7 = 4220 / 4 = 52 ** 8 = 256sqrt(25) = 5pi ≈ 3.14159, e ≈ 2.71828(5 + 3) * 2 = 16When a user asks "What is 123 * 456?":
python3 scripts/calculate.py "123 * 456"56088The script handles errors gracefully: