account-research
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
\"Model viral spread dynamics using SIR/SIS/SEIR compartmental models. Use this skill when the user needs to predict content spread patterns, estimate viral thresholds, or model information cascades in social networks — even if they say 'will this go viral', 'epidemic model for
$ npx -y skills add charlieviettq/awesome-agent-skill --skill algo-social-virality --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/algo-social-viralityContext preview
The summary Claude sees to decide when to auto-load this skill.
\"Model viral spread dynamics using SIR/SIS/SEIR compartmental models. Use this skill when the user needs to predict content spread patterns, estimate viral thresholds, or model information cascades in social networks — even if they say 'will this go viral', 'epidemic model for
name: "\"algo-social-virality\"" description: "\"Model viral spread dynamics using SIR/SIS/SEIR compartmental models. Use this skill when the user needs to predict content spread patterns, estimate viral thresholds, or model information cascades in social networks — even if they say 'will this go viral', 'epidemic model for content', or 'spread prediction'.\"." allowed-tools: Read, Glob, Grep
Compartmental models (SIR, SIS, SEIR) model how content/information spreads through populations. Susceptible → Infected → Recovered mirrors unaware → sharing → stopped sharing. Key metric: R0 (basic reproduction number). Solves as ODEs in O(T × N) for T timesteps, N compartments.
**Trigger conditions:**
**When NOT to use:**
IRON LAW: Viral Spread Occurs ONLY When R0 > 1 R0 = transmission rate (β) / recovery rate (γ). Below R0 = 1, content dies out regardless of initial seed size. Above R0 = 1, exponential growth phase begins before saturation. Design interventions (seeding, incentives) to push R0 above threshold.
Define: population size (N), initial seed size (I₀), transmission rate (β — probability of sharing upon exposure), recovery rate (γ — rate of losing interest). **Gate:** Parameters non-negative, β and γ estimated from historical data or assumed.
**SIR Model:** dS/dt = -βSI/N, dI/dt = βSI/N - γI, dR/dt = γI 1. Initialize: S=N-I₀, I=I₀, R=0 2. Iterate using Euler method or RK4 at discrete timesteps 3. Track peak infected (maximum simultaneous sharers) and total ever-infected
**SIS variant:** No recovery to immune state — recovered become susceptible again (recurring content).
Check: S+I+R = N at all timesteps (conservation). Peak and final sizes plausible for given R0. **Gate:** Population conserved, dynamics consistent with R0.
Return time series of compartments and summary metrics.
{
"time_series": [{"t": 0, "S": 9900, "I": 100, "R": 0}],
"summary": {"R0": 2.5, "peak_infected": 3200, "peak_day": 12, "total_infected": 8500},
"metadata": {"model": "SIR", "beta": 0.5, "gamma": 0.2, "population": 10000}
}**Input:** N=10000, I₀=10, β=0.3, γ=0.1 (R0=3.0) **Expected:** Exponential growth, peak ~4000 at day ~15, total infected ~9500
| Input | Expected | Why | |-------|----------|-----| | R0 = 0.8 | Rapid decay | Below threshold, dies out | | I₀ = 1 | Slower start but same eventual dynamics | Single seed takes longer to ignite | | β = γ (R0=1) | Linear, no growth | Critical threshold, endemic equilibrium |
Curated skill pack for LLM agents in engineer and science workflow (Cursor & Claude ready).
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
Evaluate LLM agents and tool-using workflows—task success, tool accuracy, latency/cost, safety, and regression suites. Use when shipping agent features,…
Design agent tools and CLI surfaces—schemas, naming, errors, idempotency, and discoverability for LLM callers. Use when defining tools for agents, SDKs, or…
\"Implement and select ad bidding strategies from manual CPC to automated target-CPA and target-ROAS. Use this skill when the user needs to choose a bidding…
\"Optimize advertising budget allocation across campaigns using marginal returns analysis. Use this skill when the user needs to distribute budget across…
\"Build CTR prediction models for estimating ad click-through rates from features. Use this skill when the user needs to predict click probability, build an ad…