Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Disease modeling and epidemiological analysis: SIR/SEIR compartmental models, R0 estimation, outbreak simulation, incidence/prevalence forecasting, and intervention impact modeling.
.claude/skills/mkurman-epidemiology/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -2% | 0% |
| case-02 | ✓→✓ | = Same ✓ | -6% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 43% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 28% | 0% |
| case-05 | ✓→✓ | = Same ✓ | 40% | 0% |
Epidemiological disease modeling with compartmental models (SIR, SEIR), R0 estimation, outbreak simulation, incidence/prevalence forecasting, and intervention impact analysis. Covers the core ODE-based approach used in public health and infectious disease research.
bashuv pip install scipy numpy matplotlib
pythonimport numpy as np from scipy.integrate import solve_ivp def sir(t, y, beta, gamma): S, I, R = y dS = -beta * S * I dI = beta * S * I - gamma * I dR = gamma * I return [dS, dI, dR] beta, gamma = 0.3, 0.1 R0 = beta / gamma print(f"R0 = {R0:.2f}") sol = solve_ivp(sir, [0, 160], [0.99, 0.01, 0], args=(beta, gamma), dense_output=True)
pythondef seir(t, y, beta, sigma, gamma): S, E, I, R = y dS = -beta * S * I dE = beta * S * I - sigma * E dI = sigma * E - gamma * I dR = gamma * I return [dS, dE, dI, dR] sol = solve_ivp(seir, [0, 200], [0.99, 0.005, 0.005, 0], args=(0.3, 0.2, 0.1))
solve_ivp| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 11,288 | 7,785 | -31% | 1 | 1 | 0% | 2,187 | 2,144 | -2% | 0 | 0 | — |
case-02 | pass→pass | 7,851 | 4,638 | -41% | 1 | 1 | 0% | 1,536 | 1,451 | -6% | 0 | 0 | — |
case-03 | pass→pass | 7,962 | 6,452 | -19% | 1 | 1 | 0% | 1,295 | 1,855 | +43% | 0 | 0 | — |
case-04 | pass→pass | 7,100 | 5,771 | -19% | 1 | 1 | 0% | 1,344 | 1,726 | +28% | 0 | 0 | — |
case-05 | pass→pass | 11,764 | 19,112 | +62% | 1 | 1 | 0% | 2,153 | 3,006 | +40% | 0 | 0 | — |
case-06 | pass→pass | 8,788 | 7,365 | -16% | 1 | 1 | 0% | 1,692 | 1,994 | +18% | 0 | 0 | — |
case-07 | pass→pass | 9,437 | 11,867 | +26% | 1 | 1 | 0% | 1,550 | 2,789 | +80% | 0 | 0 | — |
case-08 | pass→pass | 5,314 | 4,838 | -9% | 1 | 1 | 0% | 1,099 | 1,519 | +38% | 0 | 0 | — |
case-09 | pass→pass | 13,024 | 9,080 | -30% | 1 | 1 | 0% | 2,513 | 2,321 | -8% | 0 | 0 | — |
case-10 | pass→pass | 7,901 | 9,437 | +19% | 1 | 1 | 0% | 1,457 | 2,550 | +75% | 0 | 0 | — |
case-11 | pass→pass | 6,433 | 4,956 | -23% | 1 | 1 | 0% | 1,335 | 1,564 | +17% | 0 | 0 | — |
case-12 | pass→pass | 7,360 | 10,258 | +39% | 1 | 1 | 0% | 1,352 | 2,038 | +51% | 0 | 0 | — |
case-13 | pass→pass | 10,830 | 12,120 | +12% | 1 | 1 | 0% | 2,083 | 3,204 | +54% | 0 | 0 | — |
case-14 | pass→pass | 7,249 | 5,601 | -23% | 1 | 1 | 0% | 1,264 | 1,628 | +29% | 0 | 0 | — |
case-15 | pass→pass | 3,728 | 3,769 | +1% | 1 | 1 | 0% | 705 | 1,341 | +90% | 0 | 0 | — |
case-16 | pass→pass | 11,536 | 6,417 | -44% | 1 | 1 | 0% | 2,322 | 1,890 | -19% | 0 | 0 | — |
case-17 | pass→pass | 9,622 | 10,626 | +10% | 1 | 1 | 0% | 1,736 | 2,745 | +58% | 0 | 0 | — |
case-18 | pass→pass | 7,973 | 8,482 | +6% | 1 | 1 | 0% | 1,532 | 2,277 | +49% | 0 | 0 | — |
case-19 | pass→pass | 5,980 | 6,601 | +10% | 1 | 1 | 0% | 1,213 | 2,033 | +68% | 0 | 0 | — |
case-20 | pass→pass | 11,792 | 10,333 | -12% | 1 | 1 | 0% | 2,106 | 2,364 | +12% | 0 | 0 | — |
case-21 | pass→pass | 14,376 | 10,454 | -27% | 1 | 1 | 0% | 2,625 | 2,563 | -2% | 0 | 0 | — |
case-22 | pass→pass | 11,742 | 7,446 | -37% | 1 | 1 | 0% | 1,906 | 1,953 | +2% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +5 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.