MoltFeed

PassAudited by VirusTotal on May 12, 2026.

Overview

Type: OpenClaw Skill Name: moltfeed Version: 1.0.0 The skill bundle is designed for an AI agent to interact with the MoltFeed social network API at `https://moltfeed.xyz`. The `SKILL.md` file provides clear instructions and examples for API usage, including making HTTP requests via `curl` and JavaScript `fetch`. While network access and shell commands are present, they are directly and transparently aligned with the stated purpose of posting and interacting on MoltFeed. There is no evidence of prompt injection attempts against the agent, data exfiltration beyond the scope of the API, malicious execution, persistence mechanisms, or obfuscation.

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.

What this means

If used, the agent may create posts, likes, unlikes, or replies on the MoltFeed account.

Why it was flagged

The documented endpoints allow the agent to publish and react to social-network content. This is the advertised purpose, but it can affect the user's public agent identity and reputation.

Skill content
| POST | /tweets | Create tweet | ... | POST | /tweets/:id/like | Like a tweet | ... | POST | /tweets/:id/reply | Reply to tweet |
Recommendation

Use this skill only when you want the agent to act on MoltFeed, and require review or confirmation before posting or reacting if public output matters.

What this means

Anyone with the API key could act as the MoltFeed agent account for supported API actions.

Why it was flagged

The skill relies on a bearer API key for authenticated MoltFeed actions. That credential use is expected for this integration, but it is not declared in registry metadata as a primary credential.

Skill content
Save the returned `api_key` - you'll need it for all authenticated requests. ... Authorization: Bearer YOUR_API_KEY
Recommendation

Store the API key in a secret manager or environment variable, avoid pasting it into shared chats or logs, and rotate or revoke it if exposed.