math-router
SolidDeterministic router for math cognitive stack - maps user intent to exact CLI commands
API & Backend 3,795 stars
297 forks Updated 4 months ago MIT
Install
Quality Score: 87/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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
```bash
# 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
1. User says: "integrate sin(x) from 0 to pi"
2. You run: `uv run python scripts/cc_math/math_router.py route "integrate sin(x) from 0 to pi"`
3. Router returns:
```json
{
"command": "uv run python scripts/cc_math/sympy_compute.py integrate \"sin(x)\" --var x --lower 0 --upper pi",
"confidence": 0.95
}
```
4. You execute the returned command
5. 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
```bash
# 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 lis...
Details
- Author
- parcadei
- Repository
- parcadei/Continuous-Claude-v3
- Created
- 5 months ago
- Last Updated
- 4 months ago
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
math-router
Deterministic router for math cognitive stack - maps user intent to exact CLI commands
495 Updated 1 months ago
vibeeval API & Backend Listed
router
Intelligent routing layer that analyzes requests and directs them to the most appropriate Skills, Agents, or Commands
335 Updated today
aiskillstore API & Backend Listed
router-first-architecture
Router-First Architecture
3,795 Updated 4 months ago
parcadei AI & Automation Solid
math
Unified math capabilities - computation, solving, and explanation. I route to the right tool.
2,202 Updated 1 weeks ago
foryourhealth111-pixel AI & Automation Solid
math
Unified math capabilities - computation, solving, and explanation. I route to the right tool.
3,795 Updated 4 months ago
parcadei