Notion Template

PassAudited by ClawScan on May 1, 2026.

Overview

This looks like a Notion template generator with no evidence of credential use, network exfiltration, or destructive actions; the main things to notice are local script execution and optional local history/data files.

This skill appears safe for generating Notion template Markdown. Before installing, be aware that it may run local bash scripts and that the generic utility script can save entries/history locally; avoid passing secrets or sensitive account data to those commands.

Findings (2)

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

Using the skill may run a local shell script, but the shown script primarily prints Notion template Markdown and does not request credentials or modify a Notion workspace.

Why it was flagged

The skill directs use of a local bash script to produce the template output. This is disclosed and aligned with the stated template-generation purpose.

Skill content
Run: `bash scripts/notion.sh <command> [use_case] [team_size]`
Recommendation

Review the command before running it and keep usage to the documented template commands unless you intentionally inspect and use the helper scripts.

What this means

If you use the generic add/search/export commands, entered data or command arguments may remain on your machine in local files.

Why it was flagged

This generic helper creates persistent local storage and a command history log if invoked.

Skill content
DATA_DIR="${NOTION_TEMPLATE_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/notion-template}"; DB="$DATA_DIR/data.log"; mkdir -p "$DATA_DIR" ... _log() { ... >> "$DATA_DIR/history.log"; }
Recommendation

Do not enter secrets, tokens, or sensitive personal/business data into the generic utility commands unless you are comfortable with that information being stored locally.