npx skills add smithery/parcadei --skill math-router
parcadei/continuous-claude-v3
math-router
Deterministic router for math cognitive stack - maps user intent to exact CLI commands
Installation
npx skills add parcadei/continuous-claude-v3 --skill math-router
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Framework (OSS). Navigation and routing for Expo Router. Covers file-based routes, groups and d…
14.7K installsReact Router v7/v8 patterns with Clerk — rootAuthLoader, getAuth in loaders, clerkMiddleware, p…
12.7K installsGenerate or edit images via OpenRouter with the Gemini 3 Pro Image model. Use for prompt-only i…
9.9K installsUse when the user asks about WordPress codebases (plugins, themes, block themes, Gutenberg bloc…
4.2K installsStart or patch Dynamo router modes and run router endpoint smoke checks. Use for round-robin, K…
1.9K installsFull Sentry SDK setup for React Router Framework mode. Use when asked to "add Sentry to React R…
1.6K installsAlso in this package
Other skills from parcadei/continuous-claude-v3 · top by installs.
npx skills add parcadei/continuous-claude-v3
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,986 B -
docs
SUMMARY.md102 B
History
- First seen on skills.sh
- First recorded snapshot · 487 installs
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
# 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/ccmath/mathrouter.py route "integrate sin(x) from 0 to pi" - Router returns:
``json { "command": "uv run python scripts/ccmath/sympycompute.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.