OKR Brainstorming Expert
The agent generates and validates outcome-focused OKR sets using Christina Wodtke's Radical Focus methodology. It produces inspirational objectives with measurable key results, applies counter-metric tests, and scores quality against proven criteria.
Core Capabilities
- Theme-anchored generation — one theme per team per quarter; every OKR connects back to it
- 3 distinct OKR sets — each with a qualitative objective, 3 key results (primary, secondary dimension, counter-metric), and rationale
- Counter-metric testing — guards against gaming KRs by doing something harmful
- Automated validation —
okr_validator.py scores sets and flags disguised tasks, missing metrics, output-framed KRs, and missing counter-metrics
When to Use
- Setting quarterly OKRs from a single team theme
- Validating existing OKRs against quality criteria before committing
- Aligning team goals to company objectives
- Teaching teams the difference between outputs and outcomes
Clarify First
Before generating the OKR sets, confirm these inputs. If any is unknown or vague, ASK — do not assume:
Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
Quick Start
python scripts/okr_validator.py --input okrs.json # validate & score
python scripts/okr_validator.py --demo # built-in good/bad demo
Any OKR set scoring below 70% must be revised before committing. See the references for the full workflow and input schema.
References
Load the reference that matches the task — keep this file lean and pull detail on demand:
- references/okr-workflow-and-examples.md — full step-by-step workflow, a worked quarterly OKR example, mistakes/KPI tables, troubleshooting, success criteria, and the
okr_validator.py flag + JSON-schema reference. Read when generating OKRs or wiring up the validator.
- references/okr-best-practices.md — comprehensive OKR anatomy, scoring, and management guide using Radical Focus. Read for the deeper "why" behind the rules.
- references/red-flags.md — concrete bad-vs-good examples of common OKR failure modes and how to fix them. Read before sharing a draft OKR set.
- assets/okr_template.md — OKR document template and quarterly review format. Use when writing up the committed set.
Scope & Limitations
In Scope:
- OKR brainstorming using Christina Wodtke's Radical Focus methodology
- Generating 3 distinct OKR sets per theme with counter-metric testing
- Automated validation and scoring of OKR quality (output detection, metric presence, structural checks)
- Guidance on OKR vs. KPI vs. North Star Metric distinctions
- Common OKR mistake identification and remediation
Out of Scope:
- OKR tracking and progress monitoring over the quarter (use dedicated OKR platforms)
- Company-level OKR cascade and alignment across teams (see
senior-pm/ for portfolio alignment)
- Individual performance-linked OKRs (OKRs should be team goals, not performance reviews)
- Metric instrumentation or analytics setup for measuring key results
Important Caveats:
- OKRs work best when combined with weekly check-ins. Teams that review OKRs only at quarter end see 30-45% lower completion rates.
- The validator catches structural issues but cannot assess strategic quality. A perfectly scored OKR can still be the wrong goal.
- OKRs should be aligned top-down (strategic direction) and bottom-up (team insight). Pure top-down OKRs reduce team ownership.
Integration Points
| Integration |
Direction |
Description |
scrum-master/ |
Receives from |
Sprint velocity and capacity data inform realistic KR target-setting |
senior-pm/ |
Receives from |
Portfolio strategic priorities shape quarterly OKR themes |
execution/outcome-roadmap/ |
Feeds into |
OKR key results become success metrics for roadmap Now/Next items |
execution/prioritization-frameworks/ |
Complements |
Prioritized initiatives inform which OKR theme to focus on |
discovery/identify-assumptions/ |
Receives from |
Validated assumptions increase confidence in OKR target feasibility |
discovery/brainstorm-experiments/ |
Feeds into |
Experiment metrics may become OKR key results when validated |
1---2name: brainstorm-okrs3description: OKR brainstorming and validation using the Radical Focus framework — outcome objectives, measurable key results, counter-metrics. Use for setting or validating quarterly OKRs, aligning team goals, or teaching outcomes vs outputs.4license: MIT + Commons Clause5---6# OKR Brainstorming Expert
7
8The agent generates and validates outcome-focused OKR sets using Christina Wodtke's Radical Focus methodology. It produces inspirational objectives with measurable key results, applies counter-metric tests, and scores quality against proven criteria.
9
10## Core Capabilities
11
12- **Theme-anchored generation** — one theme per team per quarter; every OKR connects back to it
13- **3 distinct OKR sets** — each with a qualitative objective, 3 key results (primary, secondary dimension, counter-metric), and rationale
14- **Counter-metric testing** — guards against gaming KRs by doing something harmful
15- **Automated validation** — `okr_validator.py` scores sets and flags disguised tasks, missing metrics, output-framed KRs, and missing counter-metrics
16
17## When to Use
18
19- Setting quarterly OKRs from a single team theme
20- Validating existing OKRs against quality criteria before committing
21- Aligning team goals to company objectives
22- Teaching teams the difference between outputs and outcomes
23
24## Clarify First
25
26Before generating the OKR sets, confirm these inputs. If any is unknown or vague, ASK — do not assume:
27
28- [ ] **Quarterly theme** — the single team theme for the quarter (every objective and KR must connect back to it; without it the sets are unfocused)
29- [ ] **Parent / company objective** — the higher-level priority this team supports (sets the objective framing and the top-down alignment)
30- [ ] **Current baselines** — today's values for the candidate metrics (turns KRs from aspirational guesses into measurable, gradeable targets)
31
32Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
33
34## Quick Start
35
36```bash
37python scripts/okr_validator.py --input okrs.json # validate & score
38python scripts/okr_validator.py --demo # built-in good/bad demo
39```
40
41Any OKR set scoring below 70% must be revised before committing. See the references for the full workflow and input schema.
42
43## References
44
45Load the reference that matches the task — keep this file lean and pull detail on demand:
46
47- **[references/okr-workflow-and-examples.md](references/okr-workflow-and-examples.md)** — full step-by-step workflow, a worked quarterly OKR example, mistakes/KPI tables, troubleshooting, success criteria, and the `okr_validator.py` flag + JSON-schema reference. Read when generating OKRs or wiring up the validator.
48- **[references/okr-best-practices.md](references/okr-best-practices.md)** — comprehensive OKR anatomy, scoring, and management guide using Radical Focus. Read for the deeper "why" behind the rules.
49- **[references/red-flags.md](references/red-flags.md)** — concrete bad-vs-good examples of common OKR failure modes and how to fix them. Read before sharing a draft OKR set.
50- **[assets/okr_template.md](assets/okr_template.md)** — OKR document template and quarterly review format. Use when writing up the committed set.
51
52## Scope & Limitations
53
54**In Scope:**
55- OKR brainstorming using Christina Wodtke's Radical Focus methodology
56- Generating 3 distinct OKR sets per theme with counter-metric testing
57- Automated validation and scoring of OKR quality (output detection, metric presence, structural checks)
58- Guidance on OKR vs. KPI vs. North Star Metric distinctions
59- Common OKR mistake identification and remediation
60
61**Out of Scope:**
62- OKR tracking and progress monitoring over the quarter (use dedicated OKR platforms)
63- Company-level OKR cascade and alignment across teams (see `senior-pm/` for portfolio alignment)
64- Individual performance-linked OKRs (OKRs should be team goals, not performance reviews)
65- Metric instrumentation or analytics setup for measuring key results
66
67**Important Caveats:**
68- OKRs work best when combined with weekly check-ins. Teams that review OKRs only at quarter end see 30-45% lower completion rates.
69- The validator catches structural issues but cannot assess strategic quality. A perfectly scored OKR can still be the wrong goal.
70- OKRs should be aligned top-down (strategic direction) and bottom-up (team insight). Pure top-down OKRs reduce team ownership.
71
72## Integration Points
73
74| Integration | Direction | Description |
75|------------|-----------|-------------|
76| `scrum-master/` | Receives from | Sprint velocity and capacity data inform realistic KR target-setting |
77| `senior-pm/` | Receives from | Portfolio strategic priorities shape quarterly OKR themes |
78| `execution/outcome-roadmap/` | Feeds into | OKR key results become success metrics for roadmap Now/Next items |
79| `execution/prioritization-frameworks/` | Complements | Prioritized initiatives inform which OKR theme to focus on |
80| `discovery/identify-assumptions/` | Receives from | Validated assumptions increase confidence in OKR target feasibility |
81| `discovery/brainstorm-experiments/` | Feeds into | Experiment metrics may become OKR key results when validated |