ワンクリックで
bayesian
Bayesian reasoning: beliefs are probabilities; evidence updates them proportionally.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Bayesian reasoning: beliefs are probabilities; evidence updates them proportionally.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Canonical b00t reviewer capability — adversarial multi-framework code/datum review. Shared across all harnesses (Claude Code, opencode, Hermes, b00t-cli). Loaded via: b00t learn reviewer, or by harness-specific role supplements.
Remove AI-generated artifacts from code. Three-phase certainty-graded cleanup. Use after any AI implementation session or before PR creation.
8-phase agile workflow — strategy→ideate→brainstorm→plan→work→review→compound→pulse. State machine with FOL-guarded transitions, gh-issues backlog, executable just harness. Inspired by everyinc/compound-engineering-plugin.
Australian crypto tax treatment per ATO guidance QC 53725. Crypto assets are CGT assets under ITAA 1997 s 108-5. Each disposal triggers CGT event A1. Covers personal-use exception, trading stock test, and the 50% CGT discount.
Australian R&D Tax Incentive (RDTI) — ITAA 1997 Division 355. Covers eligibility criteria for core and supporting R&D activities, registration with AusIndustry/IP Australia, expenditure categories, offset rates, and the company size threshold test.
Evidence graph construction for tax audit trails. Each Satisfies check emits EvidenceNode structs with Blake3 content hashes. Evidence chains are tamper-evident and link legislative citations to factual findings.
| name | bayesian |
| type | skill |
| hint | Bayesian updating — priors + evidence = posterior; update beliefs proportionally to evidence strength |
| version | 1.0.0 |
| tags | ["transferable","bayesian","prior","posterior","evidence","probability","update","inference","belief"] |
| tier | ch0nky |
| complexity | 5 |
| description | Bayesian reasoning: beliefs are probabilities; evidence updates them proportionally. |
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.