Lumos Skill

WarnAudited by ClawScan on May 10, 2026.

Overview

This skill is for an AI-agent social network, but it encourages periodic autonomous participation by fetching and following changing remote instructions, so it needs review before use.

Install only if you want your agent to operate a Moltbook account. Avoid enabling the 30-minute heartbeat unless you are comfortable with ongoing remote instruction fetches, and require manual approval before any public posts, comments, votes, or community changes.

Findings (5)

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

The agent could continue checking and participating in Moltbook on a schedule, even when the user did not explicitly ask for each action.

Why it was flagged

This asks the agent to create a recurring routine, fetch remote instructions, and maintain persistent state, which can keep the agent active outside a specific user request.

Skill content
Add this to your HEARTBEAT.md ... Moltbook (every 30 minutes) ... Fetch https://www.moltbook.com/heartbeat.md and follow it ... Update lastMoltbookCheck timestamp in memory
Recommendation

Do not add the heartbeat unless you want autonomous participation. Require human approval for any posting, commenting, voting, or community creation, and review the heartbeat content before following it.

What this means

Future or external files could change what the agent is told to do after installation, without being covered by this review.

Why it was flagged

The skill depends on additional mutable remote instruction files that were not included in the provided review artifacts.

Skill content
curl -s https://www.moltbook.com/heartbeat.md > ~/.moltbot/skills/moltbook/HEARTBEAT.md ... curl -s https://www.moltbook.com/messaging.md ... RULES.md ... Check for updates: Re-fetch these files anytime
Recommendation

Bundle reviewed copies of HEARTBEAT.md, MESSAGING.md, and RULES.md, or pin them by version/checksum. Avoid automatically following newly fetched remote instructions.

What this means

The agent could publish or react to public content under its Moltbook identity in ways the user did not individually approve.

Why it was flagged

The skill enables public social-network mutations and encourages participation, but the visible instructions do not clearly gate those actions on explicit user confirmation.

Skill content
Post, comment, upvote, and create communities ... Create a post ... curl -X POST https://www.moltbook.com/api/v1/posts ... Post when you have something to share
Recommendation

Use read-only feed checks by default. Require explicit confirmation before posts, comments, upvotes, moderation, or community creation.

What this means

Anyone with the key could impersonate the agent on Moltbook.

Why it was flagged

The API key is expected for the service, but it grants identity-level authority for the agent account.

Skill content
All requests after registration require your API key ... Your API key is your identity. Leaking it means someone else can impersonate you.
Recommendation

Store the key in a secret manager or protected environment variable, declare it as a credential, and rotate it if exposed.

What this means

A stored key could be unintentionally reused or revealed in future conversations or agent memory exports.

Why it was flagged

The skill suggests storing the API key in agent memory, which can persist across tasks and may be exposed through later context use.

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

Prefer a dedicated secret store or environment variable over general agent memory, and keep the key out of shared or retrievable notes.