Scores items against quarterly rocks from rocks.yaml. Activates during triage, task ranking, meeting prep, and scheduling. Flags drift when time allocation mismatches stated priorities.
npx claudepluginhub weorbitant/orbitant-os --plugin orbitant-chief-of-staffThis skill uses the workspace's default tool permissions.
This skill scores any work item against the user's quarterly rocks (strategic objectives) defined in `rocks.yaml`. Each item receives a weighted alignment score from 0.0 to 1.0, with a rationale explaining which rocks it advances and why. When patterns of misalignment emerge — time drifting toward low-leverage work, calendar not matching rock weights — the skill pushes back constructively to pr...
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
This skill scores any work item against the user's quarterly rocks (strategic objectives) defined in rocks.yaml. Each item receives a weighted alignment score from 0.0 to 1.0, with a rationale explaining which rocks it advances and why. When patterns of misalignment emerge — time drifting toward low-leverage work, calendar not matching rock weights — the skill pushes back constructively to protect the user's strategic focus.
This skill is called as a subroutine during any prioritization workflow:
/triage — scoring inbound emails by strategic relevance/today — ranking today's tasks and calendar by alignment/week — evaluating the weekly plan against rock weights/prep — assessing meeting value before the user walks inIt does NOT run standalone. Other commands and skills invoke it when they need alignment data.
./rocks.yaml (project root)~/.claude/rocks.yaml (global)Use the first file found. Parse the YAML and extract:
quarter — the active quarter labelrocks[] — each rock with name, weight, and key_results[]Do NOT block the calling command. Instead:
~/.claude/rocks.yaml with your quarterly rocks to enable prioritization. See rocks.example.yaml for the format."name and weightkey_results is acceptable — score against the rock name/theme insteadFor each item being scored (email, task, meeting, decision):
For each rock, determine an alignment score on a 0–1 scale:
| Score | Meaning |
|---|---|
| 0.0 | Completely unrelated to this rock |
| 0.25 | Loosely related — same domain but no direct impact |
| 0.5 | Tangentially related — supports but doesn't directly advance a key result |
| 0.75 | Strongly related — clearly advances the rock's theme |
| 1.0 | Directly advances a specific key result |
final_score = Σ (alignment_i × weight_i) for each rock_i
The result is a value between 0.0 and 1.0.
| Category | Range | Meaning |
|---|---|---|
| HIGH | > 0.7 | Directly advances top priorities |
| MEDIUM | 0.3 – 0.7 | Supports priorities or has indirect value |
| LOW | < 0.3 | Minimal strategic value |
Always explain the score. Name the rock(s) that drive it and why. Never present a bare number without context.
Push back when patterns indicate strategic drift. Be constructive, not nagging.
Time drift — More than 50% of the user's time (tasks or calendar) is going to LOW-alignment items. Flag: "Based on your stated priorities, over half your time today is on low-alignment work."
Weight mismatch — A high-weight rock is getting disproportionately little time. Example: a rock with 0.35 weight getting less than 15% of scheduled time. Flag: "Revenue Acceleration carries 35% weight but only 10% of your calendar this week."
Low-value commitment — The user is about to spend significant time on a LOW item. Suggest: "This scores LOW (0.18) against your rocks. Consider deferring or delegating."
When presenting alignment scores, use this format:
📊 Goal Alignment: {CATEGORY} ({score})
└─ {Rock Name} ({weight}w): {alignment} — {one-line rationale}
└─ {Rock Name} ({weight}w): {alignment} — {one-line rationale}
└─ {Rock Name} ({weight}w): {alignment} — {one-line rationale}
└─ {Rock Name} ({weight}w): {alignment} — {one-line rationale}
Example:
📊 Goal Alignment: HIGH (0.82)
└─ Revenue Acceleration (0.35w): 0.9 — directly advances "close enterprise contracts"
└─ Platform GA (0.30w): 0.7 — unblocks beta partner onboarding
└─ Team & Culture (0.20w): 0.0
└─ Partnerships (0.15w): 0.0
For batch scoring (e.g., triage lists), show the abbreviated inline format:
[HIGH 0.82] Email subject or task name
[MED 0.45] Another item
[LOW 0.12] Low-priority item
Calling commands may reformat this output to fit their own layout.
If rocks.yaml is not found on the filesystem but the user has shared their rocks in the conversation context (pasted text, linked doc, prior discussion), extract and use that data. Apply the exact same scoring algorithm. Note in the output that scoring is based on conversation context rather than rocks.yaml.
rocks.yaml is missing — skip scoring and let the command proceed