What problem does it solve?
This Skill acts as a deterministic router, translating natural language math requests into precise command-line instructions for specialized math tools. It eliminates the need to memorize or look up specific commands for various mathematical operations.
Core Features & Use Cases
- Intent Mapping: Accurately maps user intents like "integrate", "solve", "plot", or "convert" to the correct underlying script and arguments.
- Argument Extraction: Parses user requests to extract necessary parameters for mathematical functions (e.g., equations, variables, bounds).
- Use Case: A user asks "plot sin(x) from 0 to 2pi". The router identifies this as a plotting task, determines the
plot2d command is appropriate, and generates the exact execution string: uv run python scripts/plot.py plot2d "sin(x)" --lower 0 --upper "2*pi".
Quick Start
Use the math-router skill to get the CLI command for integrating sin(x) from 0 to pi.