From b00t
Applies Bayesian reasoning to update beliefs proportionally to evidence. Useful for debugging triage, risk assessment, and avoiding base rate neglect.
How this skill is triggered — by the user, by Claude, or both
Slash command
/b00t:bayesianThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Bayesian reasoning treats beliefs as probabilities that are updated proportionally as new evidence arrives. The core formula — P(H|E) = P(E|H) × P(H) / P(E) — in plain terms means: posterior = likelihood × prior / normalizer. You start with a prior (what you believed before), observe evidence, and update. Strong evidence produces large updates; weak evidence produces small updates; confirming n...
Bayesian reasoning treats beliefs as probabilities that are updated proportionally as new evidence arrives. The core formula — P(H|E) = P(E|H) × P(H) / P(E) — in plain terms means: posterior = likelihood × prior / normalizer. You start with a prior (what you believed before), observe evidence, and update. Strong evidence produces large updates; weak evidence produces small updates; confirming noise produces tiny updates.
The key insight is that you must have a prior. "I have no opinion" is still a 50/50 prior — state it explicitly. A common error is base rate neglect — ignoring P(H) and overweighting P(E|H). In debugging, ask "what is my prior that this module has a bug vs that module?" and start there. In decision-making, each new data point is an update, not a verdict.
Apply Bayesian reasoning whenever you need to update a belief based on new information, assess probabilities under uncertainty, or avoid base rate neglect. Use it in debugging triage, risk assessment, and any situation where evidence quality varies.
npx claudepluginhub elasticdotventures/_b00t_ --plugin skill-document-understandingApplies Bayes' Theorem to update beliefs given a specific prior and new evidence. Use when interpreting test results, metrics, or diagnostic signals to avoid overreacting.
Updates prior beliefs with new evidence via Bayes' theorem to produce calibrated probabilities for inference and decision-making under uncertainty.
Applies Bayesian reasoning to update probability estimates with new evidence, helping make better forecasts, avoid overconfidence, and calibrate judgments under uncertainty.