用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vibeeval/vibecosystem --skill first-order-odes命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Claude Code CLI commands, flags, headless mode, and automation patterns
OpenAI Codex CLI + Claude Code (Hizir) birlikte kullanim rehberi. Is dagitim pattern'leri, GitHub Actions workflow ornekleri, review dongusu ve iki AI yazilim asistaninin guclu yanlarini birlestiren orchestration stratejileri.
Meta-skill for internal codebase exploration at varying depths (quick/deep/architecture)
基于 SOC 职业分类
正在显示 SKILL.md
| name | first-order-odes |
| description | Problem-solving strategies for first order odes in odes pdes |
| allowed-tools | ["Bash","Read"] |
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 .claude/skills/math-mode/SKILL.md for full tool documentation.