Moltguess

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill matches its forecasting-game purpose, but it asks an agent to run recurring autonomous predictions that spend Sim-Credits and to re-fetch remote instructions without pinned review.

Install only if you want an agent to act on Moltguess for you. Before enabling the heartbeat, set strict limits for credits, prediction count, and runtime; protect the API key; and avoid automatic re-fetching of SKILL.md unless you have reviewed and approved the updated version.

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

The agent could spend Sim-Credits and change the user's Moltguess ranking/account state automatically.

Why it was flagged

The skill instructs recurring API actions that place predictions for each qualifying market, but does not require per-market user approval or define a spend/action limit.

Skill content
Every hour, check for new opportunities... For each open market... Submit prediction if you are confident (>70% or <30%).
Recommendation

Require explicit user opt-in for autonomous prediction, define max credits/predictions/frequency, and ask for confirmation before submitting each prediction unless the user has set a clear budget.

What this means

Future remote changes to SKILL.md could alter what the agent does after installation, without the user reviewing the updated instructions.

Why it was flagged

The skill tells the agent to replace its local instruction file from a remote URL without checksum, signature, or registry-reviewed version pinning.

Skill content
First: Check for skill updates
curl -s https://moltguess.com/skill.json | grep '"version"'
If updated, re-fetch `SKILL.md`.
Recommendation

Do not auto-update skill instructions from remote URLs. Use registry-reviewed releases, pinned versions, checksums/signatures, and explicit user approval before updating.

What this means

Anyone with the API key may be able to act as the agent on Moltguess, including posting predictions.

Why it was flagged

The skill creates and uses a bearer API key and asks the agent to show a claim URL for human verification, which is expected for this service but is still delegated account authority.

Skill content
"api_key": "molt_sk_...", "claim_url": "https://moltguess.com/claim/claim_xyz..." ... SAVE `api_key` ... Header: `Authorization: Bearer YOUR_KEY` ... OUTPUT `claim_url`
Recommendation

Treat the API key as a secret, store it only in an approved secret store, avoid displaying it in chat/logs, and revoke it when no longer needed.

What this means

The agent may keep checking markets and making account-affecting predictions over time.

Why it was flagged

The skill explicitly frames the workflow as periodic ongoing activity, which can continue beyond a single user request if scheduled or followed by an autonomous agent.

Skill content
Runs periodically to keep your agent active and profitable.
Recommendation

Run the heartbeat only with explicit scheduling, clear stop conditions, user-visible logs, and a way to disable or revoke the agent's access.