Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Goals

ASecurity

View and manage company OKRs and key results.

85 stars
0 votes
0 copies
0 views
Added 9/19/2026
databasesgobashgit

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add indigoai-us/hq-core --skill goals --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Goals?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Goals
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/indigoai-us-goals/badge)](https://www.skillsdirectory.com/skills/indigoai-us-goals)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: goals
description: View and manage company OKRs and key results.
allowed-tools: Read, Write, Edit, Bash, AskUserQuestion
---

# /goals - OKR Management

View and manage objectives + key results on company boards (board.json v2).

**Input:** $ARGUMENTS

## Step 1: Parse Input

Extract from `$ARGUMENTS`:
- `--company <slug>` or `-c <slug>` — explicit company override
- Subcommand (first non-flag word): `add-objective`, `add-kr`, `update-kr`, `set-status`, `link-linear`, `link-project`
- Subcommand args (remaining positional args after subcommand)

If no subcommand → **view mode** (Step 3).

## Step 2: Resolve Company

**Priority order:**
1. `--company` / `-c` flag → use exact slug
2. cwd inside `companies/{slug}/` → infer from path
3. cwd inside `repos/{pub|priv}/{name}` → look up owning company in `companies/manifest.yaml`
4. Default to asking user

Read `companies/manifest.yaml`. Validate company slug exists.
Read `companies/{co}/board.json`. If `schema_version` is missing or < 2, warn: "Board needs migration. Run `npx tsx core/scripts/migrate-board-v2.ts` first."

## Step 3: View Mode (no subcommand)

Read board.json. Compute metrics:
- Per KR with `source: "derived"`: recompute `current` from linked project statuses (count projects with status in `["done", "completed"]`)
- Per objective: compute overall progress = avg of (KR current/target) across its KRs, or 0% if no KRs

Display OKR tree:

```
OBJECTIVES — {company} [{date}]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

[{status-emoji}] {objective title}  ({timeframe})
  Owner: {owner || "unassigned"}
  {if linear_initiative_id: "Linear: {uuid-short}"}

  KR 1: {kr title}
    {progress-bar}  {pct}%  ({current}/{target} {unit})
    Projects: {proj-id} {status-icon}  {proj-id} {status-icon} ...

  KR 2: ...

---

[{status-emoji}] {next objective} ...

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Unlinked projects: {count}
Total: {obj-count} objectives, {kr-count} KRs, {proj-count} projects
```

**Status emoji mapping:**
- `on_track` → `●` (green context via text)
- `at_risk` → `◐`
- `off_track` → `○`
- `completed` → `✓`
- `paused` → `⏸`

**Progress bar:** Unicode blocks: `████████░░` (10-char bar based on current/target ratio)

## Step 4: add-objective

Ask via AskUserQuestion (batch into 1 call):
1. **Title** — 1-line strategic goal
2. **Description** — optional longer context
3. **Timeframe** — e.g. "2026-H1", "2026-Q2", "2026", "ongoing"
4. **Owner** — free text (person name/slug) or null

After user answers:
1. Read board.json
2. Show existing objectives + existing initiatives. Ask: "Link to existing initiatives?" (multi-select from initiatives list, or "None")
3. If company has `linear` in manifest `services`: ask "Link to Linear initiative UUID?" (text input or skip)
4. Generate ID: `{prefix}-obj-{max+1}` (3-digit zero-padded, same prefix convention as existing objectives)
5. Build objective entry with empty `key_results: []`
6. Append to `objectives[]`, update `updated_at`, write board.json

Print confirmation with the new objective ID.

## Step 5: add-kr {obj-id}

Validate `{obj-id}` exists in objectives[].

Ask via AskUserQuestion (1 call):
1. **Title** — measurable outcome statement
2. **Metric** — machine-readable slug (e.g. "active_users", "revenue_mrr", "features_shipped")
3. **Target** — numeric target value
4. **Current** — numeric current value (default 0)
5. **Unit** — display unit ("users", "%", "$k", "features", etc.)
6. **Direction** — "up" (higher=better) or "down" (lower=better)
7. **Source** — "manual" (you update it) or "derived" (computed from linked project completion)

After user answers:
1. Generate KR ID: `{obj-id}-kr-{N}` where N = existing KR count + 1
2. Set `status` based on current/target ratio: >=70% → on_track, 40-70% → at_risk, <40% → off_track
3. Set `project_ids: []` (link projects separately)
4. Append to objective's `key_results[]`, update `updated_at`, write board.json

If user wants to link projects now, ask: "Link projects to this KR?" Show project list from board, allow multi-select.

## Step 6: update-kr {kr-id} {value}

Parse `{kr-id}` — format is `{obj-id}-kr-{N}`.
Find the objective containing this KR.
Update `current` to `{value}` (parse as number).
Recompute `status`: current/target ratio → on_track/at_risk/off_track/completed.
If current >= target and direction is "up", set status to "completed".
Update `updated_at` on both KR parent objective and board root.
Write board.json.

Print: `Updated {kr-id}: {current}/{target} {unit} ({status})`

## Step 7: set-status {obj-id} {status}

Validate status is one of: `on_track`, `at_risk`, `off_track`, `completed`, `paused`.
Find objective, update its `status` field.
Update `updated_at`, write board.json.

Print: `{obj-id} status → {status}`

## Step 8: link-linear {obj-id} {uuid}

Find objective, set `linear_initiative_id` to `{uuid}`.
Update `updated_at`, write board.json.

If company has `linear` in manifest services, note: "Cross-referenced with Linear initiative {uuid}."
If company does NOT have `linear` in services, warn: "Note: {company} has no Linear integration in manifest."

## Step 9: link-project {kr-id} {proj-id}

Parse `{kr-id}` to find objective + KR.
Validate `{proj-id}` exists in projects[].
Add `{proj-id}` to KR's `project_ids[]` (skip if already present).
Also set `objective_id` on the project entry if not already set (use the KR's parent objective ID).
If KR source is "derived", recompute `current` from linked project statuses.
Update `updated_at`, write board.json.

Print: `Linked {proj-id} to {kr-id} ({project-title})`

## Rules

- **1 AskUserQuestion max per subcommand** — batch all questions
- **board.json is the only file written**
- **Follow existing ID conventions** — prefix from existing entries, zero-padded 3-digit numbers
- **Never block on errors** — if board.json is v1 or malformed, warn and exit gracefully
- **Reindex after writes**: `qmd update 2>/dev/null || true`

## See also

- `/signals` — commitments and decisions feeding goals
- `/strategize` — turn goals into a plan

Attribution

indigoai-usindigoai-us
View sourceMore from indigoai-us →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Mysql Best Practices

MySQL development best practices for schema design, query optimization, and database administration

2481 votes

Jpa Patterns

Spring Boot中的JPA/Hibernate实体设计、关系、查询优化、事务、审计、索引、分页和连接池模式。

2456590 votes

Clickhouse Io

ClickHouse数据库模式、查询优化、分析和数据工程最佳实践,适用于高性能分析工作负载。

2456590 votes

Postgres Patterns

基于Supabase最佳实践的PostgreSQL数据库模式,用于查询优化、架构设计、索引和安全。

2456590 votes

Postgresql

Design a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features

458250 votes
View all in databases →