From ceos
Use when defining metrics, logging weekly scorecard numbers, or analyzing trends
How this skill is triggered — by the user, by Claude, or both
Slash command
/ceos:ceos-scorecardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage the weekly Scorecard — the 5-15 numbers that tell you the health of your business at a glance. Define metrics, log weekly values, and spot trends before they become problems.
Manage the weekly Scorecard — the 5-15 numbers that tell you the health of your business at a glance. Define metrics, log weekly values, and spot trends before they become problems.
Search upward from the current directory for the .ceos marker file. This file marks the root of the CEOS repository.
If .ceos is not found, stop and tell the user: "Not in a CEOS repository. Clone your CEOS repo and run setup.sh first."
Sync before use: Once you find the CEOS root, run git -C <ceos_root> pull --ff-only --quiet 2>/dev/null to get the latest data from teammates. If it fails (conflict or offline), continue silently with local data.
| File | Purpose |
|---|---|
data/scorecard/metrics.md | Metric definitions (names, owners, goals, thresholds) |
data/scorecard/weeks/YYYY-WNN.md | Weekly scorecard entries |
templates/scorecard-metrics.md | Template for metrics definition file |
templates/scorecard-week.md | Template for weekly entries |
Weeks follow ISO 8601: YYYY-WNN (e.g., 2026-W07). Week 1 is the week containing the first Thursday of the year.
Each metric value is compared against its goal:
The thresholds are defined in data/scorecard/metrics.md.
Use when setting up the Scorecard or adding new metrics.
Read data/scorecard/metrics.md. If the file doesn't exist, tell the user to run setup.sh init first.
Display the current metrics table.
For each new metric, collect:
Add the new metric row to the table in data/scorecard/metrics.md. Show the diff before writing.
Use to record this week's numbers.
If the user specified a week, use it. Otherwise, calculate the current ISO week.
Check if data/scorecard/weeks/YYYY-WNN.md already exists. If so, ask: "Week NN already has entries. Update it, or is this a different week?"
Read data/scorecard/metrics.md to get the list of metrics, their goals, and thresholds.
For each metric, ask: "What's the value for [Metric Name] this week?"
Accept the value and auto-calculate status:
on_track or off_trackUse templates/scorecard-week.md as the template. Write to data/scorecard/weeks/YYYY-WNN.md.
Show the complete entry before writing:
| Metric | Owner | Goal | Actual | Status |
|---|---|---|---|---|
| Weekly Revenue | brad | $50K | $52K | on_track |
| New Customers | daniel | 10 | 7 | off_track |
Ask: "Save this week's scorecard?"
For any off_track metric, note: "Off-track items should be discussed during the L10 meeting. Consider adding to the Issues list if consistently off track."
Use to review metrics over time and spot patterns.
Read all files in data/scorecard/weeks/, sorted by week number. Focus on the most recent 13 weeks (one quarter).
For each metric, show the last 13 weeks:
Weekly Revenue (brad) — Goal: $50K
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
W01: $48K ✗ W02: $51K ✓ W03: $49K ✗ W04: $55K ✓
W05: $52K ✓ W06: $47K ✗ W07: $53K ✓ W08: $50K ✓
W09: $54K ✓ W10: $51K ✓ W11: $48K ✗ W12: $52K ✓
W13: $55K ✓
On track: 9/13 weeks (69%)
Current streak: 1 week on track
ceos-ids."If any metric has been off-track 3+ consecutive weeks:
"Metric '[Name]' has been off-track for [N] consecutive weeks. This pattern suggests a systemic issue rather than a one-time miss. Consider:
ceos-ids)Define Metrics: Updated metrics table with diff. Log Weekly: Completed scorecard table for the week. Trend Analysis: 13-week trend per metric with pattern flags.
YYYY-WNN is valid (NN between 01-53).ceos-l10), focus on the latest week's status. Save trend analysis for dedicated review sessions.ceos-l10, ceos-ids, and ceos-annual when relevant, but let the user decide when to switch workflows.ceos-l10 reads the latest weekly scorecard during Section 3 (Scorecard Review) of the L10 meeting. Each metric owner reports their number and the team discusses any off-track items.ceos-ids.ceos-ids to investigate the root cause."ceos-annual reviews Scorecard metrics during the annual planning session. The team evaluates whether existing metrics are still the right numbers to track and adds or removes metrics for the new year.Other skills read data/scorecard/ for reference. Only ceos-scorecard writes to scorecard files. This preserves a single source of truth for business metrics.
npx claudepluginhub blueorangedigital/ceosGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.