Google Keep

ReviewAudited by ClawScan on May 1, 2026.

Overview

This skill appears to do what it says—manage Google Keep notes—but it needs Google account token access and can change or trash notes.

Install this only if you trust it with your Google Keep notes. Use an App Password, keep the token file private, review note-changing actions before they run, and revoke/delete the saved token if access is no longer needed.

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

Anyone who can use the saved token through this skill may be able to read and modify the user's Google Keep notes.

Why it was flagged

The skill authenticates to a Google account and saves a reusable token. This is necessary for Google Keep access, but it is sensitive account authority.

Skill content
password = os.environ.get("GKEEP_PASSWORD") or getpass.getpass("Password (or app password): ") ... "token": keep.getMasterToken()
Recommendation

Use a Google App Password as instructed, protect the local token file, and revoke the app password or delete ~/.config/gkeep/token.json if you no longer want the skill to access Keep.

What this means

An accidental or poorly reviewed command could create, archive, trash, pin, unpin, or edit Google Keep notes.

Why it was flagged

The documented tool surface includes commands that change cloud notes. This matches the stated purpose, but users should notice the mutation authority.

Skill content
Create a note: `gkeep create "Title" "Body text here"` ... Archive: `gkeep archive <note_id>` ... Delete (trash): `gkeep delete <note_id>`
Recommendation

Confirm note IDs and intended changes before allowing archive, delete, add, check, pin, or unpin operations.

What this means

Dependency updates could change behavior or break the unofficial Google Keep integration.

Why it was flagged

The skill relies on an external third-party package with a lower-bound version rather than a pinned exact version. This is common for small CLI tools but means future installs may resolve different package code.

Skill content
gkeepapi>=0.14.0
Recommendation

Prefer installing from a trusted source and consider pinning or locking the gkeepapi dependency version.