Weekly Planner

PassAudited by ClawScan on May 1, 2026.

Overview

This looks like a coherent weekly-planning skill; the main things to notice are local planner files and optional, guarded Google Calendar syncing.

Before installing, decide whether you want only local planning or calendar sync too. For calendar sync, use a separate Planner calendar, run validation and dry-run first, and only enable write_enabled when you are ready. Treat planner files as personal data and avoid storing secrets in task or review notes.

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

If the user enables sync, the skill can create, update, or delete managed events on the configured planner calendar.

Why it was flagged

The skill can invoke an external calendar CLI to make Google Calendar changes, but the documented defaults require an explicit apply flag and a config safety latch.

Skill content
Sync planner week TOML -> Google Calendar (via gog). ... Default is dry-run; use --apply to make changes. ... requires calendar.write_enabled = true
Recommendation

Use dry-run first, validate the week file, keep write_enabled false until ready, and use a dedicated Planner calendar rather than a primary calendar.

What this means

Calendar changes will be made with the permissions of the user’s configured Google Calendar account.

Why it was flagged

Direct Google Calendar sync depends on an authenticated gogcli setup, so calendar access occurs under the Google account configured for that tool.

Skill content
Optional: gog (steipete/gogcli) for direct Google Calendar sync; otherwise export .ics.
Recommendation

Confirm which Google account gogcli uses, limit sync to a dedicated planner calendar, and avoid granting broader calendar access than needed.

What this means

Private planning details may remain in the workspace and be readable by future agents, tools, or anyone with access to those files.

Why it was flagged

The skill intentionally stores personal tasks, goals, schedules, and reviews as persistent local plain-text files.

Skill content
A lightweight, file-based weekly planner that lives in a workspace folder as plain text (.toml). It supports: Inbox capture ... Weekly plans ... an end-of-week review
Recommendation

Keep the planner in a private workspace, avoid putting secrets or highly sensitive details in planner notes, and review files before sharing or syncing them.