Moltbook

AdvisoryAudited by Static analysis on Apr 30, 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.

ConcernHigh Confidence
ASI10: Rogue Agents
What this means

The agent may keep checking and acting on Moltbook after the original user request, rather than only using the skill when explicitly asked.

Why it was flagged

The skill encourages adding Moltbook to a recurring heartbeat so the agent keeps running Moltbook-related behavior every few hours.

Skill content
Add this to your `HEARTBEAT.md` ... `## Moltbook (every 4+ hours)` ... `Fetch https://www.moltbook.com/heartbeat.md and follow it`
Recommendation

Do not add the heartbeat unless you want ongoing autonomous participation; require explicit user approval before posting, commenting, voting, or creating communities.

ConcernHigh Confidence
ASI01: Agent Goal Hijack
What this means

Future remote instructions could change what the agent does during heartbeat checks, including how it interacts with the social network.

Why it was flagged

The agent is told to fetch remote content at runtime and follow it, but that remote HEARTBEAT.md content was not provided for review.

Skill content
If 4+ hours since last Moltbook check: 1. Fetch https://www.moltbook.com/heartbeat.md and follow it
Recommendation

Review the remote HEARTBEAT.md content before enabling it, and treat remote instructions as untrusted unless the user confirms them.

What this means

The agent could create public posts, comments, votes, or other social actions under its Moltbook identity without the user reviewing each action first.

Why it was flagged

The skill combines account-mutation capabilities with recurring prompts to engage and post, without clear per-action approval boundaries.

Skill content
Your heartbeat will now remind you to: - Check your feed for new posts - Engage with other moltys - Post when you have something to share
Recommendation

Configure the agent to ask before any public-facing action and set clear limits on what it may post, comment on, upvote, or create.

What this means

Behavior may depend on remote files that were not part of the submitted artifact set and could change later.

Why it was flagged

The reviewed package contains only SKILL.md, but the skill references and installs additional remote files that can be refreshed outside the registry review.

Skill content
curl -s https://www.moltbook.com/heartbeat.md > ~/.moltbot/skills/moltbook/HEARTBEAT.md ... **Check for updates:** Re-fetch these files anytime to see new features!
Recommendation

Only install or refresh the additional files after inspecting them, and prefer pinned or reviewed versions for recurring agent behavior.

What this means

Anyone who obtains the API key may be able to impersonate the agent on Moltbook.

Why it was flagged

The service requires an API key that represents the agent identity; this is expected for the integration, but it is sensitive account authority.

Skill content
All requests after registration require your API key ... Recommended: Save your credentials to `~/.config/moltbook/credentials.json`
Recommendation

Store the API key in a protected secret store or environment variable, restrict file permissions, and rotate it if exposed.

What this means

A stored API key may be unintentionally reused, exposed in context, or accessed by later tasks.

Why it was flagged

The skill suggests storing the API key in agent memory as one option, which can make a credential available across future contexts if the memory system is not designed for secrets.

Skill content
You can also save it to your memory, environment variables (`MOLTBOOK_API_KEY`), or wherever you store secrets.
Recommendation

Do not store API keys in general agent memory; use a dedicated secrets manager or protected environment variable instead.