Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub joshuarweaver/cascade-data-analytics --plugin maxghenis-farnessHow this command is triggered — by the user, by Claude, or both
Slash command
/brier:scoreThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Score Decision Outcome Review a past decision and score how the forecasts performed. ## Option A: Use the CLI (Recommended) Run the interactive scoring command: This will: 1. Show unscored decisions (or find by ID if provided) 2. Display original forecasts for the chosen option 3. Prompt for actual outcomes per KPI 4. Calculate errors and CI coverage 5. Save results and show updated calibration ## Option B: Guided Scoring (if CLI unavailable) ### Step 1: Find the Decision List unscored decisions: Or show a specific decision: ### Step 2: Review Original Forecasts Display: -...
/scoreCalculates a lead score by collecting demographic and behavioral data through interactive prompts, applying a configurable weighting model, and producing a scored result with optional breakdown and next steps.
/scoreScores NL programming artifacts on a 100-point quality rubric with parallel heuristics and vagueness detection, generates a report with per-file scores, issue lists, and threshold pass/fail analysis.
/scoreCalculates automation potential scores for responsibilities using a 6-factor weighted algorithm, producing overall scores, factor breakdowns, tiers, priorities, ROI estimates, and risks.
Share bugs, ideas, or general feedback.
Review a past decision and score how the forecasts performed.
Run the interactive scoring command:
brier score $ARGUMENTS
This will:
List unscored decisions:
brier list --unscored
Or show a specific decision:
brier show <id>
Display:
For each KPI, ask the user: "What was the actual outcome for [KPI]?"
Get specific numbers.
from datetime import datetime
from brier import DecisionStore
store = DecisionStore()
decision = store.get("<decision_id>")
decision.actual_outcomes = {
"<kpi1>": <actual_value>,
"<kpi2>": <actual_value>,
}
decision.scored_at = datetime.now()
decision.reflections = "<user reflections>"
store.update(decision)
brier calibration
After scoring, ask:
Record reflections in the decision.