Agent skill
continuity
Problem-solving strategies for continuity in real analysis
Install this agent skill to your Project
npx add-skill https://github.com/vibeeval/vibecosystem/tree/main/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.
python-testing
Python testing strategies using pytest, TDD methodology, fixtures, mocking, parametrization, and coverage requirements.
golang-patterns
Idiomatic Go patterns, best practices, and conventions for building robust, efficient, and maintainable Go applications.
tdd-migration-pipeline
Orchestrator-only workflow for migrating/rewriting codebases with full TDD and agent delegation
hizir
Hızır'ın kullanım kılavuzu. Tüm komutlar, agent'lar, workflow'lar, sistemler burada. /hizir yaz, her şeyi gör.
secret-patterns
30+ service-specific secret detection regex patterns, entropy-based detection, PEM/JWT/Base64 identification, and false positive filtering.
agentica-prompts
Write reliable prompts for Agentica/REPL agents that avoid LLM instruction ambiguity
Didn't find tool you were looking for?