Okr Planner

PassAudited by ClawScan on May 10, 2026.

Overview

The skill is mostly a local OKR prompt/template helper, with the main caveat that it also includes a lightly documented local task-manager script that can store user-entered data.

This appears safe to install for OKR planning, but be aware that one bundled script is a generic local task manager and can save entered information under ~/.local/share/okr-planner or a configured OKR_PLANNER_DIR. Do not enter sensitive company goals unless that local storage is acceptable.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user may not be able to tell from the metadata which bundled script would actually run, although no unsafe installer or remote code source is shown.

Why it was flagged

The package contains runnable scripts even though the install metadata does not explain how they are installed or bound to the documented okr-planner command.

Skill content
No install spec — this is an instruction-only skill. Code file presence: 2 code file(s): scripts/okr.sh; scripts/script.sh
Recommendation

Before relying on the CLI command, confirm which script is invoked and prefer explicit installation metadata in future releases.

What this means

If this script is the command that runs, the behavior may be confusing or broader than the OKR-only description suggests.

Why it was flagged

This bundled script presents itself as a generic productivity/task-management tool, while SKILL.md advertises OKR-specific commands such as create, review, align, score, template, and cascade.

Skill content
# okr-planner - Productivity and task management tool
Recommendation

Treat the extra task-management CLI as separate local functionality and verify the intended command before using it for important OKR data.

What this means

OKRs, task names, or other business details entered through this script may remain on disk and be shown later via list/export behavior.

Why it was flagged

The script creates a local data directory and stores user-entered items plus command history, which is persistent local state.

Skill content
DATA_DIR="${OKR_PLANNER_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/okr-planner}"; DB="$DATA_DIR/data.log"; _log() { echo "$(date '+%m-%d %H:%M') $1: $2" >> "$DATA_DIR/history.log"; }
Recommendation

Avoid entering sensitive business information unless local persistence is acceptable, or set OKR_PLANNER_DIR to a controlled location and delete the directory when no longer needed.