skills/ceos-rocks/SKILL.md
Use when setting, tracking, or scoring quarterly Rocks
npx skillsauth add skinnyandbald/ceos ceos-rocksInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage quarterly Rocks — the 3-7 most important priorities for the next 90 days. Each Rock has one owner, a measurable outcome, and a due date at quarter end.
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/rocks/QUARTER/ | Rock files for each quarter (e.g., data/rocks/2026-Q1/) |
| data/vision.md | V/TO document (1-Year Plan for alignment checks) |
| templates/rock.md | Template for creating new Rock files |
| data/accountability.md | Accountability Chart (seat owners for Rock-owner alignment) |
Each Rock is a markdown file with YAML frontmatter:
id: rock-001
title: "Launch Beta Program"
owner: "brad"
quarter: "2026-Q1"
status: on_track # on_track | off_track | complete | dropped
created: "2026-01-02"
due: "2026-03-31"
Status values:
on_track — progressing as expectedoff_track — behind or at riskcomplete — done (set during end-of-quarter scoring)dropped — no longer a priority (set during end-of-quarter scoring)File naming: rock-NNN-slug.md where NNN is a zero-padded ID and slug is the title slugified (lowercase, hyphens, no special chars).
Milestones: Rocks support two milestone formats:
title, optional due date, and status (todo/in_progress/done). Enables date-based progress tracking and overdue detection.- [ ] / - [x] checklist items in the Milestones section. Simple and human-friendly.Both are valid. Tracking mode prefers frontmatter milestones when present, falls back to markdown checklist parsing otherwise.
Attachments: Optional attachments array in frontmatter references supporting documents. Each attachment has a path (relative to CEOS root) and optional label. The skill displays references but does not manage files.
Quarters follow YYYY-QN format: 2026-Q1, 2026-Q2, 2026-Q3, 2026-Q4.
To determine the current quarter from today's date:
Use when creating new Rocks at the start of a quarter.
Check if the user specified a quarter. If not, use the current quarter. If creating Rocks for a past quarter, warn: "That quarter has already started/ended. Continue anyway?"
Create the quarter directory if it doesn't exist: data/rocks/YYYY-QN/
Before creating Rocks, read and briefly summarize:
data/vision.md (what are we trying to achieve this year?)For each Rock, collect:
YYYY-MM-DD), status (default: todo)milestones array in frontmatterattachments array in frontmatterdata/accountability.md. Flag mismatches if a Rock's subject area doesn't match the owner's seat responsibilities, for example: "This Rock falls under the [Seat] responsibilities. Should [Seat Owner] own it instead?"Read existing Rock files in the quarter directory. Find the highest rock-NNN ID and increment. If no files exist, start at rock-001.
Use templates/rock.md as the template. Substitute:
Write to data/rocks/YYYY-QN/rock-NNN-slug.md.
Show the user the complete file before writing. Ask: "Create this Rock?"
Ask: "Create another Rock, or are we done for now?"
When finished, display a summary table of all Rocks for the quarter:
| Rock | Owner | Due | |------|-------|-----| | Launch Beta Program | brad | 2026-03-31 | | Hire VP Sales | daniel | 2026-03-31 |
Use for weekly or ad-hoc status checks.
Read all Rock files in data/rocks/[current-quarter]/. Parse the frontmatter for status.
Show a status table:
| Rock | Owner | Status | Milestones | Notes | |------|-------|--------|------------|-------| | Launch Beta Program | brad | on_track | 2/3 complete | On schedule | | Hire VP Sales | daniel | off_track | 0/4 complete (1 overdue) | No candidates yet |
Milestone progress computation:
milestones array: Count entries with status: done vs total. Display: "N/M complete". If any milestone has due in the past and status is not done, append "(X overdue)".[x] vs total [ ] and [x]). Display: "N/M done".Attachment display: If frontmatter has attachments array, show after the status table:
Attachments:
• Beta spec (data/rocks/2026-Q1/rock-001-beta-spec.pdf)
• Requirements doc (data/rocks/2026-Q1/requirements.pdf)
If a Rock's status needs to change:
Use at the end of a quarter for the completion review.
Read all Rock files in data/rocks/[quarter]/.
For each Rock, ask: "Complete or incomplete?"
complete or dropped (if the Rock was abandoned or deprioritized)dropped — it can become a new Rock next quarterDisplay the quarter scorecard:
Q1 2026 Rock Scorecard
━━━━━━━━━━━━━━━━━━━━━━
Complete: 4/6 (67%)
Target: 80%+
✓ Launch Beta Program (brad)
✓ Hire VP Sales (daniel)
✓ Implement CRM (daniel)
✗ Redesign Onboarding (brad) — dropped
✓ ISO Certification (sarah)
✗ Partner Program (brad) — dropped
If completion rate is below 80%, flag it: "Below the 80% target. Consider: Were Rocks too ambitious, or were there execution issues? This is a good topic for the next L10."
Setting: Show each Rock file before writing. End with a summary table. Tracking: Status table with milestone progress (from frontmatter milestones if present, else markdown checklist). Overdue milestones flagged. Attachments listed if present. Scoring: Quarter scorecard with completion rate.
todo, in_progress, done for structured milestones. If the user provides another value during creation, show the allowed values.data/rocks/2026-Q1/ belong to Q1. Don't move them between quarters — create new Rocks in the next quarter instead.data/vision.md. Use ceos-vto if deeper vision review is needed.ceos-vto, ceos-l10, and ceos-annual when relevant, but let the user decide when to switch workflows.ceos-rocks reads data/vision.md to check the 1-Year Plan when setting Rocks. Each Rock should connect to a 1-Year Plan goal.ceos-vto to ensure strategic alignment."ceos-l10 reads Rock files during Section 4 (Rock Review) of the L10 meeting. Each Rock owner reports on_track or off_track status.ceos-quarterly references Rock progress during quarterly conversations. Rock ownership and status provide context for individual performance discussions.ceos-annual orchestrates this; ceos-rocks handles the actual Rock creation and scoring.data/todos/ via ceos-todos with source: l10.ceos-rocks reads data/accountability.md when setting Rocks to validate that Rock owners match seat responsibilities. A Rock about sales pipeline should belong to whoever owns the Sales & Marketing seat.Other skills read data/rocks/ for reference. Only ceos-rocks writes to Rock files. This preserves a single source of truth for quarterly priorities.
tools
Use when reviewing or updating the company Vision/Traction Organizer
tools
Use when tracking, creating, completing, or reviewing To-Dos
tools
Use when defining metrics, logging weekly scorecard numbers, or analyzing trends
tools
Enhanced scorecard entry with auto-pull from L10 meetings and available MCP sources (CRM, calendar, email, filesystem). Walks through each metric one at a time with pre-populated suggestions for interactive confirmation.