Leadership Prompts

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a benign leadership prompt library; the only notable behavior is a user-run local Node CLI that reads and prints bundled prompts.

This skill looks reasonable to install if you want leadership prompt templates. When using the prompts, avoid adding unnecessary confidential employee, HR, incident, or company strategy details unless you are comfortable sharing them with your AI assistant or workspace.

Findings (1)

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

If you use the CLI, it runs included JavaScript on your machine, but the provided source only reads the bundled prompt library and prints results.

Why it was flagged

The skill includes a Node CLI that executes local JavaScript and reads the bundled prompts file. This is expected for the documented prompt-browsing functionality and the shown code is limited to local file reading and console output.

Skill content
const PROMPTS_FILE = path.join(__dirname, '..', 'prompts.json'); ... JSON.parse(fs.readFileSync(PROMPTS_FILE, 'utf8'));
Recommendation

Run the CLI only if you are comfortable with the included script; no network, credential, persistence, or destructive behavior is shown.