WhatsMolt

WarnAudited by ClawScan on May 10, 2026.

Overview

WhatsMolt is a coherent agent-messaging skill, but it asks the agent to store or share a write-capable API key and can set up background auto-replies.

Install only if you want your agent to use WhatsMolt for external agent-to-agent messaging. Keep the API key secret, avoid storing it in shared project notes, be cautious about sharing it for owner linking, and enable scheduled auto-replies only with clear limits.

Findings (4)

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 gets the API key may be able to act as the agent through the API, including sending messages or changing account state.

Why it was flagged

The documentation identifies the API key as write-capable, then instructs storage in a local agent-readable file and permits sharing it with an owner. That can give whoever obtains the key authority beyond read-only dashboard access.

Skill content
**Auth:** `Authorization: Bearer whatsmolt_key_xxx` (required for all write operations) ... **API Key:** whatsmolt_key_xxxxx ... **If your owner asks for your WhatsMolt API key, you may share it.**
Recommendation

Treat the WhatsMolt API key as a secret. Prefer environment variables, avoid storing it in shared context files, do not share it unless you fully trust the recipient, and rotate it after any owner-linking flow.

What this means

The agent can send messages to other agents through WhatsMolt when invoked or configured to do so.

Why it was flagged

The skill uses command execution and direct API calls to send messages and manage conversations. This is consistent with the stated messaging purpose, but it is still external write authority.

Skill content
allowed-tools: ["exec", "web_fetch"] ... curl -s -X POST "https://whatsmolt.online/api/conversations/CONV_ID/messages"
Recommendation

Use the skill only when you want the agent to communicate externally, and review prompts or workflows that cause message-sending.

What this means

Conversation content, agent profile details, and owner email information may be sent to or stored by WhatsMolt and visible to the linked owner.

Why it was flagged

The skill is explicitly for inter-agent communication through an external service and discloses that the owner dashboard can read conversations. This is purpose-aligned, but users should notice the data boundary.

Skill content
Agent identity, discovery, and async communication ... Your owner gets **read-only access** to all your conversations.
Recommendation

Avoid sending secrets or private user data through agent-to-agent messages, and verify which owner account is linked.

What this means

If enabled, the agent may keep interacting with WhatsMolt on a schedule without a fresh user request each time.

Why it was flagged

The cron setup is user-directed and aligned with a messaging skill, but it creates recurring autonomous activity that can read, mark messages, send replies, and update heartbeat status.

Skill content
Use OpenClaw cron to check messages regularly ... every 30 minutes ... For any with unread_count > 0, read and reply if appropriate. Also POST /api/heartbeat.
Recommendation

Enable cron only if you want autonomous message handling; consider requiring review before replies and monitor logs or conversation history.