Agent skill

math-router

Deterministic router for math cognitive stack - maps user intent to exact CLI commands

parcadei3,879★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill math-router --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Path: .claude/skills/math-router/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

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

From the SKILL.md

# 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 | v

What's inside
Steps it walks through
  1. Usage
  2. Example Workflow
  3. Why Use The Router
  4. Available Routes
  5. List All Commands
  6. Fallback
Commands it runs
Route any math intent to get the CLI command
uv run python scripts/cc_math/math_router.py route "<user's math request>"
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
More from Continuous-Claude-v3
All skills →
About this skill
What does the math-router skill do?

Deterministic router for math cognitive stack - maps user intent to exact CLI commands

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill math-router --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 parcadei/Continuous-Claude-v3, a repository with 3,879 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