skills/math-router/SKILL.md
Deterministic router for math cognitive stack - maps user intent to exact CLI commands
npx skillsauth add rubicanjr/FinCognis math-routerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
ALWAYS use this router first for math requests.
Instead of reading individual skill documentation, call the router to get the exact command:
# Route any math intent to get the CLI command
uv run python scripts/cc_math/math_router.py route "<user's math request>"
uv run python scripts/cc_math/math_router.py route "integrate sin(x) from 0 to pi"{
"command": "uv run python scripts/cc_math/sympy_compute.py integrate \"sin(x)\" --var x --lower 0 --upper pi",
"confidence": 0.95
}
| 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 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
If the router returns {"command": null}, the intent wasn't recognized. Then:
development
Goal-based workflow orchestration - routes tasks to specialist agents based on user goals
tools
Wiring Verification
development
Connection management, room patterns, reconnection strategies, message buffering, and binary protocol design.
development
Screenshot comparison QA for frontend development. Takes a screenshot of the current implementation, scores it across multiple visual dimensions, and returns a structured PASS/REVISE/FAIL verdict with concrete fixes. Use when implementing UI from a design reference or verifying visual correctness.