| name | math-router |
| description | Deterministic router for math cognitive stack - maps user intent to exact CLI commands |
| triggers | ["math","calculate","compute","solve","integrate","derivative","plot","convert","prove"] |
| priority | high |
| user-invocable | false |
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
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"