Agent skill
continuity
Problem-solving strategies for continuity in real analysis
Install this agent skill to your Project
npx add-skill https://github.com/parcadei/Continuous-Claude-v3/tree/main/.claude/skills/math/real-analysis/continuity
SKILL.md
Continuity
When to Use
Use this skill when working on continuity problems in real analysis.
Decision Tree
-
Check Definition
- f(a) exists (function defined at point)
- lim_{x->a} f(x) exists
- lim_{x->a} f(x) = f(a)
-
Use SymPy for Limit Check
sympy_compute.py limit "f(x)" --var x --at a- Compare with f(a)
-
Piecewise Functions
- Check left and right limits separately
sympy_compute.py limit "f(x)" --var x --at a --dir left
-
Verify with Z3
z3_solve.py prove "limit_exists implies continuous"
Tool Commands
Sympy_Limit
uv run python -m runtime.harness scripts/sympy_compute.py limit "f(x)" --var x --at a
Sympy_Limit_Left
uv run python -m runtime.harness scripts/sympy_compute.py limit "f(x)" --var x --at a --dir left
Z3_Prove
uv run python -m runtime.harness scripts/z3_solve.py prove "continuous_at_a"
Cognitive Tools Reference
See .claude/skills/math-mode/SKILL.md for full tool documentation.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
tdd-migration-pipeline
Orchestrator-only workflow for migrating/rewriting codebases with full TDD and agent delegation
agentica-prompts
Write reliable prompts for Agentica/REPL agents that avoid LLM instruction ambiguity
planning-agent
Planning agent that creates implementation plans and handoffs from conversation context
recall
Query the memory system for relevant learnings from past sessions
implement_task
Implementation agent that executes a single task and creates handoff on completion
braintrust-tracing
Braintrust tracing for Claude Code - hook architecture, sub-agent correlation, debugging
Didn't find tool you were looking for?