Agent skill

contour-integrals

Problem-solving strategies for contour integrals in complex analysis

parcadei3,879★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill contour-integrals --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: BashRead
Path: .claude/skills/math/complex-analysis/contour-integrals/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Contour Integrals ## When to Use Use this skill when working on contour-integrals problems in complex analysis. ## Decision Tree 1. **Integral Type Selection** - For integral_{-inf}^{inf} f(x)dx where f decays like 1/x^a, a > 1: * Use semicircular contour (upper or lower half-plane) - For integral involving e^{ix} or trigonometric functions: * Close in upper half-plane for e^{ix} (Jordan's lemma) * Close in lower half-plane for e^{-ix} - For integral_0^{2pi} f(cos theta, sin theta)d theta: * Substitute z = e^{i theta}, use unit circle contour - For integrand with branch cuts: * Use keyhole or dogbone contour around cuts 2. **Contour Setup** - Identify singularities and their locations - Choose contour that encloses desired singularities - `sympy_compute.py solve "f(z) = inf"` to find poles 3. **Jordan's Lemma** - For integral over semicircle of radius R: - If |f(z)| -> 0 as |z| -> inf, semicircular contribution vanishes 4. **Compute with Residue Theorem** - oint_C f(z)dz = 2*pi*i * (sum of residues inside C) - `sympy_compute.py residue "f(z)" --var z --at z0` ## Tool Commands ### Sympy_Residue ```bash uv run python -m runtime.harness scripts/sympy_compute.py residue "1/(z**2 + 1)

What's inside
Steps it walks through
  1. When to Use
  2. Decision Tree
  3. Tool Commands
  4. SympyResidue
  5. SympyPoles
  6. SympyIntegrate
  7. Key Techniques
  8. Cognitive Tools Reference
Commands it runs
uv run python -m runtime.harness scripts/sympy_compute.py residue "1/(z**2 + 1)" --var z --at I
uv run python -m runtime.harness scripts/sympy_compute.py solve "z**2 + 1" --var z
uv run python -m runtime.harness scripts/sympy_compute.py integrate "1/(x**2 + 1)" --var x --from "-oo" --to "oo"
More from Continuous-Claude-v3
All skills →
About this skill
What does the contour-integrals skill do?

Problem-solving strategies for contour integrals in complex analysis

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill contour-integrals --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going