{"id":"math-router","name":"math-router","summary":"数学認知スタック用の決定性ルーター - ユーザーの意図を正確なCLIコマンドにマッピングします","body":"# Math Router\n\n**ALWAYS use this router first for math requests.**\n\nInstead of reading individual skill documentation, call the router to get the exact command:\n\n## Usage\n\n```bash\n# Route any math intent to get the CLI command\nuv run python scripts/cc_math/math_router.py route \"<user's math request>\"\n```\n\n## Example Workflow\n\n1. User says: \"integrate sin(x) from 0 to pi\"\n2. You run: `uv run python scripts/cc_math/math_router.py route \"integrate sin(x) from 0 to pi\"`\n3. Router returns:\n   ```json\n   {\n     \"command\": \"uv run python scripts/cc_math/sympy_compute.py integrate \\\"sin(x)\\\" --var x --lower 0 --upper pi\",\n     \"confidence\": 0.95\n   }\n   ```\n4. You execute the returned command\n5. Return result to user\n\n## Why Use The Router\n\n- **Faster**: No need to read skill docs\n- **Deterministic**: Pattern-based, not LLM inference\n- **Accurate**: Extracts arguments correctly\n- **Complete**: Covers 32 routes across 7 scripts\n\n## Available Routes\n\n| Category | Commands |\n|----------|----------|\n| sympy | integrate, diff, solve, simplify, limit, det, eigenvalues, inv, expand, factor, series, laplace, fourier |\n| pint | convert, check |\n| shapely | create, measure, pred, op |\n| z3 | prove, sat, optimize |\n| scratchpad | verify, explain |\n| tutor | hint, steps, generate |\n| plot | plot2d, plot3d, latex |\n\n## List All Commands\n\n```bash\n# List all available routes\nuv run python scripts/cc_math/math_router.py list\n\n# List routes by category\nuv run python scripts/cc_math/math_router.py list --category sympy\n```\n\n## Fallback\n\nIf the router returns `{\"command\": null}`, the intent wasn't recognized. Then:\n1. Ask user to clarify\n2. Or use individual skills: /sympy-compute, /z3-solve, /pint-compute, etc.","author":"@parcadei","ownerProfile":null,"authorContacts":null,"sourceUrl":"https://github.com/parcadei/Continuous-Claude-v3/tree/main/.claude/skills/math-router","license":"MIT","category":"document","lang":"en","tokens":462,"stars":0,"calls30d":0,"claimed":false,"visibility":"public","origin":"crawler","version":"0.1.0","createdAt":"2026-08-22","updatedAt":"2026-08-22","files":[],"requires":{"mcp":[],"tools":[]},"safety":{"flags":[],"scannedAt":"2026-08-22","hasScripts":false,"networkEndpoints":[]}}