math-router▌
parcadei/continuous-claude-v3 · updated Apr 8, 2026
ALWAYS use this router first for math requests.
Math Router
ALWAYS use this router first for math requests.
Instead of reading individual skill documentation, call the router to get the exact command:
Usage
# Route any math intent to get the CLI command
uv run python scripts/cc_math/math_router.py route "<user's math request>"
Example Workflow
- User says: "integrate sin(x) from 0 to pi"
- You run:
uv run python scripts/cc_math/math_router.py route "integrate sin(x) from 0 to pi" - Router returns:
{ "command": "uv run python scripts/cc_math/sympy_compute.py integrate \"sin(x)\" --var x --lower 0 --upper pi", "confidence": 0.95 } - You execute the returned command
- Return result to user
Why Use The Router
- Faster: No need to read skill docs
- Deterministic: Pattern-based, not LLM inference
- Accurate: Extracts arguments correctly
- Complete: Covers 32 routes across 7 scripts
Available Routes
| Category | Commands |
|---|---|
| sympy | integrate, diff, solve, simplify, limit, det, eigenvalues, inv, expand, factor, series, laplace, fourier |
| pint | convert, check |
| shapely | create, measure, pred, op |
| z3 | prove, sat, optimize |
| scratchpad | verify, explain |
| tutor | hint, steps, generate |
| plot | plot2d, plot3d, latex |
List All Commands
# List all available routes
uv run python scripts/cc_math/math_router.py list
# List routes by category
uv run python scripts/cc_math/math_router.py list --category sympy
Fallback
If the router returns {"command": null}, the intent wasn't recognized. Then:
- Ask user to clarify
- Or use individual skills: /sympy-compute, /z3-solve, /pint-compute, etc.
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★43 reviews- ★★★★★Dev Okafor· Dec 20, 2024
Registry listing for math-router matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Mia Flores· Dec 16, 2024
math-router reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Lucas Shah· Dec 16, 2024
Solid pick for teams standardizing on skills: math-router is focused, and the summary matches what you get after install.
- ★★★★★William Taylor· Nov 23, 2024
We added math-router from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★William Brown· Nov 11, 2024
math-router reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Lucas Ramirez· Nov 7, 2024
Registry listing for math-router matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Yuki Menon· Nov 3, 2024
Solid pick for teams standardizing on skills: math-router is focused, and the summary matches what you get after install.
- ★★★★★Benjamin Sethi· Oct 26, 2024
math-router fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Hiroshi Chawla· Oct 22, 2024
We added math-router from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Dev Perez· Oct 14, 2024
Solid pick for teams standardizing on skills: math-router is focused, and the summary matches what you get after install.
showing 1-10 of 43