From vision
Computes a 1-10 life scorecard per domain using resolution ratio, OKR pace, and milestone count. Useful for monthly life reviews and tracking domain health trends.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vision:flow-build-scorecardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Trigger:** Called by `op-monthly-scorecard`, `op-review-brief`
Trigger: Called by op-monthly-scorecard, op-review-brief
Produces: Structured scorecard data with per-domain scores, trend indicators, and status notes returned to calling op
This flow is the scoring engine for the monthly life scorecard. It collects data from across all installed plugin vaults and computes a 1-10 score for each of the 13 life domains using a three-factor weighted formula.
Factor 1 — Resolution Ratio (50% weight): For each domain, the flow reads vault/{domain}/open-loops.md and counts two things: items that were added this month (new items flagged since the first day of the current month) and items that were resolved this month (items marked complete with - [x] since the first day of the current month). The resolution ratio is resolved / (resolved + added). A domain that resolved 4 items and added 2 this month has a ratio of 4/6 = 0.67. A domain that added 6 items and resolved 0 has a ratio of 0/6 = 0. The ratio is scaled 0-10 for the scoring formula: ratio of 1.0 (all resolved, nothing added) → 10 points; ratio of 0 (nothing resolved, items accumulating) → 0 points. A domain with no open-loops.md or with no activity this month receives a neutral score of 5 on this factor.
Factor 2 — OKR Pace (30% weight): The flow reads vault/vision/00_current/ for the current quarter's Key Results that map to each domain. For quantitative KRs, it reads the relevant domain vault for the current metric value and calculates percentage of target achieved. For qualitative KRs, it looks for completion evidence. The expected completion percentage is calculated as: (days elapsed in quarter / total days in quarter) × 100. If the actual percentage is within 10 points of expected, the domain scores full OKR pace points. If the actual is 11-20 points behind expected, it scores partial OKR pace points. If 21+ points behind, it scores 0 OKR pace points. Domains with no OKRs this quarter receive the median score on this factor (5 points).
Factor 3 — Milestone Count (20% weight): The flow reads vault/vision/00_current/milestones.md and counts milestones logged this month with a domain tag matching the current domain. Zero milestones = 0 points on this factor. One milestone = 7 points. Two milestones = 9 points. Three or more milestones = 10 points.
Score assembly: The three factor scores are combined: (Factor1 × 0.5) + (Factor2 × 0.3) + (Factor3 × 0.2). The result is the raw 1-10 domain score for the month.
Trend calculation: The flow reads the prior month's scorecard from vault/vision/00_current/ and compares scores domain by domain. If the score improved by 1.0 or more points: trend = ↑. If the score declined by 1.0 or more points: trend = ↓. Within 1.0 points: trend = →.
Status note generation: Each domain receives a 1-line plain-language status note generated from the underlying data. The note explains the score rather than restating it: "Resolved 3/5 items; career OKR at 45% (expected 60%)" rather than "Score: 6.1."
~/Documents/aireadylife/vault/vision/01_prior/ — prior period records for trend comparisonReturns structured data to calling op:
[
{ domain: "health", score: 7.2, trend: "↑", status: "Healthy — resolved 3/4 items; OKR on pace (72%)", resolution_ratio: 0.75, okr_pace: 0.72, milestone_count: 1 },
{ domain: "wealth", score: 8.5, trend: "↑", status: "Momentum — savings milestone hit; OKR ahead of pace", resolution_ratio: 0.9, okr_pace: 0.85, milestone_count: 2 },
...
]
Optional in vault/vision/config.md:
scoring_weights — override default 50/30/20 distributiondomain_okr_map — explicit mapping of OKR names to domains (if OKR naming doesn't match domain names)~/Documents/aireadylife/vault/vision/01_prior/ — prior period recordsnpx claudepluginhub fru-dev3/ai-ready-life --plugin visionCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.