Iris — Inbox Intelligence

AdvisoryAudited by Static analysis on May 9, 2026.

Overview

No suspicious patterns detected.

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

Anyone running the skill must provide mail-account credentials that allow access to Gmail messages.

Why it was flagged

The skill requires a Gmail address and app password so it can access the user's Gmail inbox.

Skill content
requires:\n      env: [GMAIL_ADDRESS, GMAIL_APP_PASSWORD]
Recommendation

Use a Gmail app password rather than your main password, keep it private, and revoke it from your Google Account when you stop using the skill.

What this means

Sensitive email summaries or action items may remain on the local machine after the skill runs.

Why it was flagged

The skill reads recent email content and says it persists a daily report, which may contain private message details or draft replies.

Skill content
Read your last 50 emails ... Daily report saved to markdown
Recommendation

Run it only on a trusted device, review where reports are saved, and delete or protect generated markdown files if they contain private information.

What this means

Installing this dependency may modify the system Python environment and depends on the integrity of the package retrieved at install time.

Why it was flagged

The install step pulls an unpinned package from the Python package ecosystem and bypasses system-package protections.

Skill content
pip3 install rich --break-system-packages --quiet
Recommendation

Prefer installing in a virtual environment and pinning a known-good version of rich instead of using --break-system-packages globally.