Npjames Apple Reminders

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: npjames-apple-reminders Version: 1.0.0 The skill bundle provides documentation and installation instructions for a legitimate macOS CLI tool, 'remindctl', used to manage Apple Reminders. It utilizes a standard Homebrew tap (steipete/tap/remindctl) for installation and contains no evidence of malicious code, data exfiltration, or prompt injection.

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

An agent using this skill could complete, edit, or delete reminders if the user asks it to manage them, and forced deletion may skip normal confirmation safeguards.

Why it was flagged

The skill documents commands that can permanently remove lists or reminders, including a force-delete example. This is aligned with the stated purpose, but it is a destructive capability.

Skill content
- Delete list: `remindctl list Work --delete` ... - Delete by id: `remindctl delete 4A83 --force`
Recommendation

Use explicit requests for destructive actions and require confirmation before deleting lists, deleting reminders, or using `--force`.

What this means

Granting permission allows the CLI, and therefore the agent using it, to view and modify Apple Reminders available on that Mac.

Why it was flagged

The skill requires macOS Reminders permission so the CLI can access the user’s Reminders data. This is expected for the integration, but it is still privileged local data access.

Skill content
macOS-only; grant Reminders permission when prompted.
Recommendation

Only grant Reminders permission if you trust the remindctl tool and want the agent to manage those reminders.

What this means

Installing the skill’s dependency means running an external CLI on the Mac with Reminders access.

Why it was flagged

The skill relies on an external Homebrew tap to provide the executable. This is normal for a CLI-wrapper skill, but users are trusting that upstream package.

Skill content
brew | formula: steipete/tap/remindctl | creates binaries: remindctl
Recommendation

Verify the Homebrew formula and upstream project before installation, especially on a Mac with sensitive Reminders data.