Agent skill

math-unified

Unified math capabilities - computation, solving, and explanation. I route to the right tool.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill math-unified-carmandale-agent-config --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Allowed tools: BashReadWrite
Path: skills/analysis/math-unified-carmandale-agent-config/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# /math - Unified Math Capabilities **One entry point for all computation and explanation.** I route to the right tool based on your request. For formal proofs, use `/prove` instead. --- ## Quick Examples | You Say | I Use | |---------|-------| | "Solve x² - 4 = 0" | SymPy solve | | "Integrate sin(x) from 0 to π" | SymPy integrate | | "Eigenvalues of [[1,2],[3,4]]" | SymPy eigenvalues | | "Is x² + 1 > 0 for all x?" | Z3 prove | | "Convert 5 miles to km" | Pint | | "Explain what a functor is" | Category theory skill | --- ## Computation Scripts ### SymPy (Symbolic Math) ```bash uv run python "$CLAUDE_PROJECT_DIR/.claude/scripts/math/sympy_compute.py" <command> <args> ``` | Command | Description | Example | |---------|-------------|---------| | `solve` | Solve equations | `solve "x**2 - 4" --var x` | | `integrate` | Definite/indefinite integral | `integrate "sin(x)" --var x --lower 0 --upper pi` | | `diff` | Derivative | `diff "x**3" --var x` | | `simplify` | Simplify expression | `simplify "sin(x)**2 + cos(x)**2"` | | `limit` | Compute limit | `limit "sin(x)/x" --var x --point 0` | | `series` | Taylor expansion | `series "exp(x)" --var x --point 0 --n 5` | | `dsolve` | Solve ODE | `

What's inside
Steps it walks through
  1. Quick Examples
  2. Computation Scripts
  3. SymPy (Symbolic Math)
  4. Z3 (Constraint Solving)
  5. Pint (Units)
  6. Math Router (Auto-Route)
  7. Topic Skills (For Explanation)
  8. Routing Logic
  9. Examples
  10. Solve Equation
  11. Compute Eigenvalues
  12. Prove Inequality
  13. Convert Units
  14. When to Use /prove Instead
Ships with 1 file
  • metadata.json
Commands it runs
uv run python "$CLAUDE_PROJECT_DIR/.claude/scripts/math/sympy_compute.py" <command> <args>
uv run python "$CLAUDE_PROJECT_DIR/.claude/scripts/math/z3_solve.py" <command> <args>
uv run python "$CLAUDE_PROJECT_DIR/.claude/scripts/math/pint_compute.py" convert <value> <from_unit> <to_unit>
uv run python "$CLAUDE_PROJECT_DIR/.claude/scripts/math/math_router.py" route "<natural language request>"
More from claude-skill-registry
All skills →
About this skill
What does the math-unified skill do?

Unified math capabilities - computation, solving, and explanation. I route to the right tool.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill math-unified-carmandale-agent-config --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 majiayu000/claude-skill-registry, a repository with 534 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