Agent skill

math-help

Guide to the math cognitive stack - what tools exist and when to use each

parcadei3,879★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill math-help --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 10 KB
Bundled scripts: none
Path: .claude/skills/math-help/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Math Cognitive Stack Guide Cognitive prosthetics for exact mathematical computation. This guide helps you choose the right tool for your math task. ## Quick Reference | I want to... | Use this | Example | |--------------|----------|---------| | Solve equations | sympy_compute.py solve | `solve "x**2 - 4 = 0" --var x` | | Integrate/differentiate | sympy_compute.py | `integrate "sin(x)" --var x` | | Compute limits | sympy_compute.py limit | `limit "sin(x)/x" --var x --to 0` | | Matrix operations | sympy_compute.py / numpy_compute.py | `det "[[1,2],[3,4]]"` | | Verify a reasoning step | math_scratchpad.py verify | `verify "x = 2 implies x^2 = 4"` | | Check a proof chain | math_scratchpad.py chain | `chain --steps '[...]'` | | Get progressive hints | math_tutor.py hint | `hint "Solve x^2 - 4 = 0" --level 2` | | Generate practice problems | math_tutor.py generate | `generate --topic algebra --difficulty 2` | | Prove a theorem (constraints) | z3_solve.py prove | `prove "x + y == y + x" --vars x y` | | Check satisfiability | z3_solve.py sat | `sat "x > 0, x < 10, x*x == 49"` | | Optimize with constraints | z3_solve.py optimize | `optimize "x + y" --constraints "..."` | | Plot 2D/3D func

What's inside
Steps it walks through
  1. Quick Reference
  2. The Five Layers
  3. Layer 1: SymPy (Symbolic Algebra)
  4. Layer 2: Z3 (Constraint Solving & Theorem Proving)
  5. Layer 3: Math Scratchpad (Reasoning Verification)
  6. Layer 4: Math Tutor (Educational)
  7. Layer 5: Lean 4 (Formal Proofs)
  8. Numerical Tools
  9. NumPy (160 functions)
  10. SciPy (289 functions)
  11. mpmath (153 functions, arbitrary precision)
  12. Visualization
  13. mathplot.py
  14. Educational Features
Commands it runs
Solve equation
uv run python -m runtime.harness scripts/sympy_compute.py \
solve "x**2 - 5*x + 6 = 0" --var x --domain real
Integrate
integrate "sin(x)" --var x
Definite integral
integrate "x**2" --var x --bounds 0 1
Differentiate (2nd order)
diff "x**3" --var x --order 2
Simplify (trig strategy)
More from Continuous-Claude-v3
All skills →
About this skill
What does the math-help skill do?

Guide to the math cognitive stack - what tools exist and when to use each

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill math-help --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going