Agent skill

residues

Problem-solving strategies for residues in complex analysis

parcadeigithub.com/parcadeiGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill residues --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: BashRead
Path: .claude/skills/math/complex-analysis/residues/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

# Residues ## When to Use Use this skill when working on residues problems in complex analysis. ## Decision Tree 1. **Computing Residues** - Simple pole at z0: * Res(f, z0) = lim_{z->z0} (z - z0)f(z) * `sympy_compute.py limit "(z - z0)*f(z)" --var z --at z0` - Pole of order n: * Res(f, z0) = (1/(n-1)!) * lim d^{n-1}/dz^{n-1}[(z-z0)^n f(z)] * `sympy_compute.py diff "((z-z0)**n)*f(z)" --var z --order n-1` - L'Hopital shortcut for f = g/h with simple pole: * Res(f, z0) = g(z0)/h'(z0) 2. **Identify Pole Order** - Simple pole: (z - z0)f(z) has finite limit - Order n: (z - z0)^n f(z) has finite limit, but (z - z0)^{n-1} f(z) doesn't - `sympy_compute.py limit "(z - z0)**n * f(z)" --var z --at z0` 3. **Essential Singularities** - Neither pole nor removable (e.g., e^{1/z} at z=0) - Compute residue via Laurent series - `sympy_compute.py series "exp(1/z)" --var z --at 0` 4. **Apply Residue Theorem** - oint_C f(z)dz = 2*pi*i * (sum of residues inside C) - Count only poles INSIDE the contour - `z3_solve.py prove "pole_inside_contour"` ## Tool Commands ### Sympy_Residue ```bash uv run python -m runtime.harness scripts/sympy_compute.py residue "1/((z-1)*(z-2))" --var z --at 1 ``` ### Sympy_Limit

What's inside
Steps it walks through
  1. When to Use
  2. Decision Tree
  3. Tool Commands
  4. SympyResidue
  5. SympyLimit
  6. SympyLaurent
  7. Z3PoleInside
  8. Key Techniques
  9. Cognitive Tools Reference
Ships with 1 file
  • SKILL.v6.md
Commands it runs
uv run python -m runtime.harness scripts/sympy_compute.py residue "1/((z-1)*(z-2))" --var z --at 1
uv run python -m runtime.harness scripts/sympy_compute.py limit "(z - z0)*f(z)" --var z --at z0
uv run python -m runtime.harness scripts/sympy_compute.py series "exp(1/z)" --var z --at 0
uv run python -m runtime.harness scripts/z3_solve.py prove "abs(z0) < R"
More from Continuous-Claude-v3
All skills →
About this skill
What does the residues skill do?

Problem-solving strategies for residues in complex analysis

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill residues --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