🎯

math-router

🎯Skill

from parcadei/continuous-claude-v3

VibeIndex|
What it does

Routes math intents to precise CLI commands across multiple computational domains with high accuracy and deterministic mapping.

math-router

Installation

Install skill:
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill math-router
11
Last UpdatedJan 26, 2026

Skill Details

SKILL.md

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

Overview

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

```

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

}

```

  1. You execute the returned command
  2. 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 list --category sympy

```

Fallback

If the router returns {"command": null}, the intent wasn't recognized. Then:

  1. Ask user to clarify
  2. Or use individual skills: /sympy-compute, /z3-solve, /pint-compute, etc.

More from this repository10

🎯
agentica-claude-proxy🎯Skill

Enables seamless integration between Agentica agents and Claude Code CLI by managing proxy configurations, tool permissions, and response formatting.

🎯
git-commits🎯Skill

Manages git commits by removing Claude attribution, generating reasoning documentation, and ensuring clean commit workflows.

🎯
system-overview🎯Skill

Generates a comprehensive summary of the current system's configuration, components, and key metrics across skills, agents, hooks, and other core systems.

🎯
debug-hooks🎯Skill

Systematically diagnose and resolve hook registration, execution, and output issues in Claude Code projects by checking cache, settings, files, and manual testing.

🎯
migrate🎯Skill

Systematically researches, analyzes, plans, implements, and reviews migrations across frameworks, languages, and infrastructure with minimal risk.

🎯
background-agent-pings🎯Skill

Enables background agent execution with system-triggered progress notifications, avoiding manual polling and context flooding.

🎯
agentica-infrastructure🎯Skill

Provides comprehensive reference and infrastructure for building sophisticated multi-agent coordination patterns and workflows with precise API specifications and tracking mechanisms.

🎯
cli-reference🎯Skill

Provides comprehensive CLI commands and flags for interacting with Claude Code, enabling headless mode, automation, and session management.

🎯
braintrust-tracing🎯Skill

Traces and correlates Claude Code session events across parent and sub-agent interactions using comprehensive Braintrust instrumentation.

🎯
morph-apply🎯Skill

Rapidly edits files using AI-powered Morph Apply API with high accuracy and speed, without requiring full file context.