Agent skill

integration-theory

Problem-solving strategies for integration theory in measure theory

parcadei3,879★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill integration-theory --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/measure-theory/integration-theory/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,885
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

# Integration Theory ## When to Use Use this skill when working on integration-theory problems in measure theory. ## Decision Tree 1. **Simple function integration** - For s = sum(a_i * chi_{E_i}): integral s dmu = sum(a_i * mu(E_i)) - `sympy_compute.py simplify "simple_integral"` 2. **Monotone Convergence Theorem (MCT)** - If 0 <= f_n <= f_{n+1} and f_n -> f: - lim integral(f_n) = integral(lim f_n) - Use for increasing sequences 3. **Dominated Convergence Theorem (DCT)** - If |f_n| <= g (integrable) and f_n -> f pointwise: - lim integral(f_n) = integral(f) - `z3_solve.py prove "dominated_convergence"` 4. **Fatou's Lemma** - integral(liminf f_n) <= liminf(integral f_n) - Use as lower bound when MCT/DCT don't apply 5. **Fubini-Tonelli** - For product measures: switch order of integration - Tonelli: non-negative functions (always valid) - Fubini: integrable functions ## Tool Commands ### Sympy_Simple_Integral ```bash uv run python -m runtime.harness scripts/sympy_compute.py integrate "sum(a_i * chi_E_i)" --var mu ``` ### Z3_Mct ```bash uv run python -m runtime.harness scripts/z3_solve.py prove "f_n_increasing implies lim_integral_equals_integral_lim" ``` ### Z3_Dct ```bash uv run pyt

What's inside
Steps it walks through
  1. When to Use
  2. Decision Tree
  3. Tool Commands
  4. SympySimpleIntegral
  5. Z3Mct
  6. Z3Dct
  7. SympyFatou
  8. Key Techniques
  9. Cognitive Tools Reference
Commands it runs
uv run python -m runtime.harness scripts/sympy_compute.py integrate "sum(a_i * chi_E_i)" --var mu
uv run python -m runtime.harness scripts/z3_solve.py prove "f_n_increasing implies lim_integral_equals_integral_lim"
uv run python -m runtime.harness scripts/z3_solve.py prove "abs(f_n) <= g and g_integrable implies limit_exchange"
uv run python -m runtime.harness scripts/sympy_compute.py limit "liminf(integral_f_n)" --comparison "integral_liminf_f_n"
More from Continuous-Claude-v3
All skills →
About this skill
What does the integration-theory skill do?

Problem-solving strategies for integration theory in measure theory

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill integration-theory --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,885 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