Forecasting as a harness for decision-making.
Instead of asking "Is X good?" or "Should I do Y?", brier helps you:
- Define what success looks like (KPIs)
- Expand your options (including ones you didn't consider)
- Make explicit forecasts (with confidence intervals and resolution rules)
- Track outcomes to improve calibration over time
python -m pip install 'brier[mcp]'brier setup codex
brier doctor codexThen restart Codex and use $brier when a decision prompt appears.
brier setup claude
brier doctor claudeThen restart Claude Code.
brier new "Should we rewrite the auth layer?" --context "3 incidents this quarter"
brier list
brier calibrationThe CLI is local-only and does not call an LLM or require an API key.
from brier import Decision, KPI, Option, Forecast, DecisionStore
from datetime import datetime, timedelta
# Create a decision
decision = Decision(
question="Should I take the new job offer?",
kpis=[
KPI(name="income", description="Total comp after 2 years", unit="$"),
KPI(
name="satisfaction",
description="Job satisfaction 1-10",
outcome_type="score",
resolution_date=datetime.now() + timedelta(days=365),
resolution_rule="Ask for a 1-10 retrospective self-rating 12 months after starting.",
data_source="Follow-up self-review",
),
],
options=[
Option(
name="Take new job",
description="Accept the offer at Company X",
forecasts={
"income": Forecast(
point_estimate=300000,
confidence_interval=(250000, 400000),
reasoning="Base + equity, assuming normal vesting",
),
"satisfaction": Forecast(
point_estimate=7.5,
confidence_interval=(6, 9),
reasoning="Interesting work, but unknown team",
),
}
),
Option(
name="Stay at current job",
description="Decline and stay",
forecasts={
"income": Forecast(
point_estimate=250000,
confidence_interval=(230000, 280000),
reasoning="Known trajectory, likely promotion",
),
"satisfaction": Forecast(
point_estimate=6.5,
confidence_interval=(6, 7),
reasoning="Comfortable but plateauing",
),
}
),
],
review_date=datetime.now() + timedelta(days=180),
)
# Save it
store = DecisionStore()
store.save(decision)brier new "Should we launch now?"
brier show abc123
brier pending
brier calibrationbrier can turn a stored decision forecast or standalone policy question into
Manifold-ready forecast question drafts. This is draft-only: it does not publish
questions, place a bet, or require a Manifold API key.
brier forecast-draft "Will Waymo be legally permitted to offer fully driverless paid robotaxi rides in Washington, DC by 2026-12-31?" \
--initial-prob 52 \
--resolution-date 2026-12-31 \
--resolution-rule "Resolve YES if official DC law, regulation, or permit approval allows Waymo to offer fully driverless paid public rides in DC by 2026-12-31." \
--source "Waymo DC announcement|https://waymo.com/blog/2025/03/next-stop-for-waymo-one-washingtondc/" \
--source "DC AV testing law|https://code.dccouncil.gov/us/dc/council/laws/23-156" \
--tag waymo \
--tag dc \
--output waymo-dc-forecast-pack.jsonFor a stored decision with options and forecasts:
brier forecast-draft abc123 --output forecast-pack.jsonAn example Waymo/DC draft pack lives at
examples/waymo_dc_market_pack.json. It
uses an existing Manifold public-service question as the gate, then drafts
conditional aggregate 2027 safety forecasts for DC traffic fatalities and serious
injuries. These resolve N/A when the linked gate question resolves the opposite
way.
brier is not tied to Claude. The Claude Code plugin is the most integrated path today, but the framework also works with Codex and other coding agents that can follow structured instructions or run shell commands.
For agent-agnostic setup and prompt guidance, see docs/agent-workflows.md.
The default builder path is package-first:
python -m pip install 'brier[mcp]'
brier setup codex
brier doctor codexFor source installs during development:
python -m pip install -e /path/to/brierIf you want a native tool interface instead of prompt copy-paste, install the package and run the MCP server locally:
python -m pip install 'brier[mcp]'
brier-mcpIt exposes tools for creating, listing, retrieving, saving, and scoring decisions, plus resources/prompts for the brier workflow.
To register it in Codex as a local MCP server:
brier setup codex
brier doctor codexThis installs the packaged Codex skill and registers the MCP server with the same Python interpreter that launched brier.
Claude Code can use the same local MCP server and a local skill wrapper:
python -m pip install 'brier[mcp]'
brier setup claude
brier doctor claudeThis installs the packaged Claude skill and registers the MCP server in user scope.
The plugin path still works if you prefer the slash-command workflow:
claude plugin marketplace add MaxGhenis/brier
claude plugin install brier@maxghenis-pluginsThen either use the local brier skill or /brier:decide if you installed the plugin.
If setup drifted or a skill was modified locally:
brier doctor codex --fix
brier doctor claude --fixIf you want to remove the local integration and start over:
brier uninstall codex
brier setup codexor:
brier uninstall claude
brier setup claudeBrier implements a structured decision process:
-
KPI Definition - What outcomes actually matter? Make them measurable. Add outcome type, resolution date, resolution rule, and data source when possible.
-
Option Expansion - Don't just compare A vs B. What about C? What about waiting? What about hybrid approaches?
-
Reference Class - Start with a relevant outside view or base rate before adjusting for specifics.
-
Mechanism / Decomposition - Break forecasts into estimable components and causal drivers.
-
Disconfirming Evidence - Surface the strongest failure modes, traps, and reasons the leading option could be wrong.
-
Confidence Intervals - Point estimates aren't enough. How uncertain are you?
-
Tracking - Log decisions and review outcomes to calibrate over time.
- Reduces sycophancy - Harder to just agree when making numeric predictions
- Forces mechanism thinking - Must reason about cause and effect
- Creates accountability - Predictions can be scored later
- Separates values from facts - You pick KPIs (values), forecasts are facts
- Builds calibration - Track predictions over time to improve
git clone https://github.com/MaxGhenis/brier
cd brier
pip install -e ".[dev,experiments]"
pytest
python -m build
python scripts/smoke_packaged_install.py dist/*.whl
python scripts/generate_demo_video.pyPaper build:
python3 paper/render_paper.py # Regenerates figures, HTML, Markdown, and site/public/paper-raw
python3 paper/run_strongest_validation.py # Runs the strongest reviewer-facing validation on Claude Opus 4.6 and GPT-5.2
python3 paper/run_study1_rerun.py --models gpt-5.4 # Reruns the original Study 1 design with legacy prompt wording
python3 -m brier.experiments stability --strongest-validation --model gpt-5.2 # Single-model equivalentThe package is published to PyPI from GitHub Releases using PyPI Trusted Publishing.
Setup (one-time):
- In PyPI, open the
brierproject publishing settings:https://pypi.org/manage/project/brier/settings/publishing/
- Add a GitHub Actions trusted publisher with:
- Owner:
MaxGhenis - Repository name:
brier - Workflow name:
publish.yml - Environment name: leave blank unless you later add a GitHub environment
- Owner:
To publish a new version:
- Update version in
pyproject.toml - Create a new release on GitHub with a tag (e.g.,
v0.2.0) - The GitHub Actions workflow will automatically build and publish to PyPI
The repo no longer needs a stored PYPI_API_TOKEN once Trusted Publishing is configured.
MIT