Iris Lite — Inbox Intelligence (Free)
ReviewAudited by ClawScan on May 10, 2026.
Overview
The skill appears to be a coherent Gmail inbox triage helper, but it requires a Gmail app password and a local Python package install, so users should review those setup risks.
Before installing, make sure you are comfortable giving the skill a Gmail app password and allowing it to read recent inbox subjects and snippets. Consider using a revocable app password and installing Python dependencies in a virtual environment.
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.
Anyone installing this must provide a Gmail app password, which could grant mailbox access if mishandled outside the intended workflow.
The skill requires Gmail account credentials and uses them to log in to Gmail. This is expected for inbox triage, but the credential is sensitive.
requires:\n env: [GMAIL_ADDRESS, GMAIL_APP_PASSWORD]\n...\nmail.login(GMAIL_ADDR, GMAIL_PASS)
Use a dedicated Gmail app password, revoke it when no longer needed, and avoid sharing the configured environment with untrusted tools.
Private email subjects and snippets may be shown to the agent/session, and email text can contain untrusted instructions or sensitive personal information.
The skill reads snippets of recent email bodies and stores them in the in-session email data used for triage output.
mail.fetch(uid, "(BODY[TEXT]<0.150>)")
Run it only when you are comfortable exposing recent email snippets to the agent context, and do not treat instructions found inside emails as trusted commands.
This could change the local Python environment and depends on the current PyPI package version at install time.
The setup asks the user to install an unpinned package from PyPI and disables system-package protection for that install.
pip3 install rich --break-system-packages --quiet
Prefer installing in a virtual environment and pinning a known-good version of 'rich' instead of using '--break-system-packages'.
