Get Reflex Score
get_reflex_scoreRetrieve the latest decision's Reflex Score and machine-readable metrics, including success probability, strategy, and evidence. Use when your program needs inspectable decision numbers without parsing prose.
Instructions
Return the latest decision's Reflex Score and machine-readable components. Returns: structured fields for availability, Reflex Score (0-100 recommendation strength, not success probability), success probability, confidence, strategy, next-best strategy, route advantage, evidence, context cost, budget use, component signals and policy version. If no decision exists, available=false and reason explains why. Use when: a program or agent needs decision numbers it can inspect without parsing prose. Not for: a readable explanation (use explain_decision) or the full decision timeline (use get_execution_trace). Side effects: none; read-only. Errors: an MCP error is returned until the project is approved.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| reason | No | Why no score is available, when available is false. | |
| signals | No | Normalised component signals used to compute the Reflex Score. | |
| strategy | No | Recommended strategy for the latest decision. | |
| available | Yes | Whether a decision snapshot is available for the most recent decided task. | |
| budget_used | No | Largest fraction of the task budget consumed across time, calls and context. | |
| reflex_score | No | Strength of the recommendation on a 0-100 scale; not success probability. | |
| context_tokens | No | Estimated tokens injected from prior experience for this task. | |
| evidence_count | No | Number of relevant prior experiences supporting the decision. | |
| policy_version | No | OpenReflex decision-policy version used for the score. | |
| route_advantage | No | Normalised advantage of the recommended route over the next best route. | |
| next_best_strategy | No | Highest-ranked alternative strategy, if any. | |
| decision_confidence | No | Confidence in the recommendation from the available evidence. | |
| success_probability | No | Estimated probability of success for the recommended strategy. |