smithery/scooter-lacroix

continuity

Problem-solving strategies for continuity in real analysis

Installation

$ npx skills add smithery/scooter-lacroix --skill continuity

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/scooter-lacroix · top by installs.

npx skills add smithery/scooter-lacroix

Browse all from smithery/scooter-lacroix

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash, Read

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,167 B
  • docs SUMMARY.md 76 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Continuity

When to Use

Use this skill when working on continuity problems in real analysis.

Decision Tree

  1. Check Definition

- f(a) exists (function defined at point) - lim{x->a} f(x) exists - lim{x->a} f(x) = f(a)

  1. Use SymPy for Limit Check

- sympy_compute.py limit "f(x)" --var x --at a - Compare with f(a)

  1. Piecewise Functions

- Check left and right limits separately - sympy_compute.py limit "f(x)" --var x --at a --dir left

  1. Verify with Z3

- z3solve.py prove "limitexists implies continuous"

Tool Commands

Sympy_Limit

uv run python -m runtime.harness scripts/sympy_compute.py limit "f(x)" --var x --at a

SympyLimitLeft

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 .maestro/skills/math-mode/SKILL.md for full tool documentation.