Sendook Email (Restricted)
ReviewAudited by ClawScan on May 10, 2026.
Overview
This appears to be a legitimate, scoped Sendook email skill, but it lets an agent read and send messages from the configured inbox using your Sendook API key.
Install this only if you want the agent to access the configured Sendook inbox. Use a least-privileged API key, restrict it to the intended inbox, review outbound emails before sending, and only allow attachments that you explicitly selected.
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.
If installed with a broad API key, the agent may be able to read or send more email than intended.
The skill requires a Sendook API key and inbox ID, which gives the agent delegated access to the configured email inbox.
requires": { "env": ["SENDOOK_API_KEY", "SENDOOK_INBOX_ID"] }, "primaryEnv": "SENDOOK_API_KEY"Use a least-privileged Sendook API key scoped only to the intended inbox, store it securely, and rotate or revoke it if no longer needed.
The agent could send an incorrect or unintended email from the configured inbox if a workflow invokes it too freely.
The documented operations include sending new emails and replying to messages, which is purpose-aligned but can have external consequences if used without review.
await client.inbox.message.send({ ... to: ["recipient@example.com"], subject: "Hello from Sendook" ... }); ... await client.inbox.message.reply({ inboxId: INBOX_ID, messageId: "msg_def456" ... });Require explicit user approval for recipients, subject, body, and reply target before sending or replying.
A future package version change could affect behavior if installed without a lockfile or version pin.
The setup relies on an external npm SDK and does not pin a package version; this is normal for SDK setup but is still a supply-chain consideration.
npm install @sendook/node
Install from the trusted npm source, consider pinning a known-good version, and use a lockfile in production workspaces.
