Decide

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

Incorrect or overly broad saved defaults could lead the agent to make or recommend the wrong future choice.

Why it was flagged

The skill stores reusable decision rules that can influence later agent behavior, which is purpose-aligned but should be kept accurate and tightly scoped.

Skill content
## Confirmed Defaults
- Component patterns the user explicitly approved as defaults
- The choice that should be proposed or applied when the pattern fully matches
Recommendation

Review ~/decide/ periodically, keep defaults narrow, correct stale rules, and avoid storing secrets or private third-party data.

What this means

Using setup will create local files in the user's home directory for decision memory.

Why it was flagged

Setup uses shell commands to create and permission local state files; the commands are scoped to the disclosed ~/decide/ directory and are central to the skill's purpose.

Skill content
mkdir -p ~/decide/domains
touch ~/decide/{memory.md,decisions.md}
chmod 700 ~/decide ~/decide/domains
chmod 600 ~/decide/{memory.md,decisions.md}
Recommendation

Allow these commands only if you want local persistent decision memory, and inspect ~/decide/ after setup if desired.

What this means

If approved, future agent sessions in that workspace may consult Decide before consequential choices.

Why it was flagged

The skill can add persistent routing guidance to workspace SOUL or AGENTS files, but it requires showing the exact text and waiting for explicit approval before writing.

Skill content
Show the exact snippet immediately and wait for explicit approval before writing it.
Recommendation

Approve workspace AGENTS/SOUL changes only if you want this persistent behavior, and keep the inserted snippets small and reviewable.