trace-claude-code
Automatically trace Claude Code conversations to Braintrust for observability. Captures sessions, conversation turns, and tool calls as hierarchical traces.
Problem-solving strategies for root finding in numerical methods
$ npx -y skills add parcadei/Continuous-Claude-v3 --skill root-finding --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/root-findingContext preview
The summary Claude sees to decide when to auto-load this skill.
Problem-solving strategies for root finding in numerical methods
name: root-finding description: "Problem-solving strategies for root finding in numerical methods" allowed-tools: [Bash, Read]
Use this skill when working on root-finding problems in numerical methods.
1. **Characterize the Problem**
2. **Method Selection** | Situation | Method | Implementation | |-----------|--------|----------------| | Bracketed, no derivatives | Bisection, Brent | `scipy.optimize.brentq` | | Derivatives available | Newton-Raphson | `scipy.optimize.newton` | | No derivatives | Secant method | `scipy.optimize.newton` (no fprime) | | System of equations | `scipy.optimize.fsolve` | Requires Jacobian ideally |
3. **Implement Root Finding**
4. **Handle Multiple Roots**
5. **Verify Solutions**
uv run python -c "from scipy.optimize import brentq; root = brentq(lambda x: x**2 - 2, 0, 2); print('Root:', root)"uv run python -c "from scipy.optimize import newton; root = newton(lambda x: x**2 - 2, 1.0, fprime=lambda x: 2*x); print('Root:', root)"uv run python -m runtime.harness scripts/sympy_compute.py solve "x**3 - x - 1" --var x
*From indexed textbooks:*
See `.claude/skills/math-mode/SKILL.md` for full tool documentation.
A persistent, learning, multi-agent development environment built on Claude Code Continuous Claude transforms Claude Code into a continuously learning system that maintains context across sessions, orchestrates specialized agents, and eliminates wasting
Repo: parcadei/Continuous-Claude-v3
Automatically trace Claude Code conversations to Braintrust for observability. Captures sessions, conversation turns, and tool calls as hierarchical traces.
Guide for integrating Agentica SDK with Claude Code CLI proxy
Reference guide for Agentica multi-agent infrastructure APIs