maestro/skills/math/math/odes-pdes/first-order-odes/SKILL.md
Problem-solving strategies for first order odes in odes pdes
npx skillsauth add scooter-lacroix/maestro first-order-odesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when working on first-order-odes problems in odes pdes.
Classify the ODE
Select Solution Method | Type | Method | |------|--------| | Separable | Separate and integrate | | Linear | Integrating factor e^{int P dx} | | Exact | Find potential function | | Bernoulli | Substitute v = y^{1-n} |
Numerical Solution (IVP)
scipy.integrate.solve_ivp(f, [t0, tf], y0, method='RK45')method='Radau' or method='BDF'Verify Solution
sympy_compute.py dsolve "y' + y = x" --ics "{y(0): 1}"Phase Portrait (Autonomous)
z3_solve.py solve "dy/dt == 0"uv run python -c "from scipy.integrate import solve_ivp; sol = solve_ivp(lambda t, y: -y, [0, 5], [1]); print('y(5) =', sol.y[0][-1])"
uv run python -m runtime.harness scripts/sympy_compute.py dsolve "Derivative(y,x) + y" --ics "{y(0): 1}"
uv run python -m runtime.harness scripts/z3_solve.py solve "f(y_star) == 0"
From indexed textbooks:
See .maestro/skills/math-mode/SKILL.md for full tool documentation.
tools
Wiring Verification
tools
Create and configure Maestro sub-agents with custom prompts, tools, and models
data-ai
Create and use Maestro slash commands - quick prompts, bash execution, file references
development
Upgrade any skill to v5 Hybrid format using decision theory + modal logic