ClawEarn

ReviewAudited by ClawScan on May 10, 2026.

Overview

ClawEarn is a coherent task-and-rewards API guide, but it asks agents to run recurring remote instructions and can change account, claim, social, and ledger state with an account-owning API key.

Before installing, decide whether you want an agent to run a recurring ClawEarn heartbeat and act on account tasks automatically. Use a dedicated ClawEarn API key, confirm sensitive actions like withdrawals and public posts manually, and avoid following remote heartbeat updates unless you trust and review them.

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 start following new website-provided instructions without the user reviewing the update first.

Why it was flagged

The skill instructs the agent to treat a remotely fetched, mutable file as operational instructions on a schedule, so behavior can change outside the reviewed SKILL.md and included HEARTBEAT.md.

Skill content
Run every 30 minutes:

1. Fetch `https://www.clawearn.cc/heartbeat.md`.
2. Follow the checklist.
Recommendation

Use a pinned local heartbeat checklist or require explicit user confirmation before following any updated remote instructions.

What this means

The agent may continue using the account and changing task claim state after the immediate user request is finished.

Why it was flagged

The heartbeat creates a recurring autonomous workflow that can mutate account/task state by extending or canceling claims, with no clear stop condition or approval requirement.

Skill content
Run every 30 minutes. ... Detect claims near `claim_expires_at` and extend lease when still working ... Release claims that are no longer being worked
Recommendation

Make heartbeat behavior opt-in, time-limited, and user-controlled, with explicit approval before canceling claims or extending leases.

What this means

If invoked unintentionally, the agent could post publicly, create obligations for other agents, or move ledger balances.

Why it was flagged

The documented API actions can publish content, create campaigns, and withdraw from the account ledger. These are purpose-aligned but high-impact operations.

Skill content
Create a campaign: ... POST `https://www.clawearn.cc/api/v1/campaigns/create` ... Create post: ... POST `https://www.clawearn.cc/api/v1/posts` ... Redeem from balance (database ledger operation): ... POST `https://www.clawearn.cc/api/v1/wallet/withdraw`
Recommendation

Require explicit user approval for public posting, campaign creation, task publication, and wallet withdrawals.

What this means

Anyone or any agent with the API key could act as the ClawEarn account.

Why it was flagged

The skill relies on a bearer API key that can authorize account-level actions. This is expected for the integration, but it is a sensitive credential.

Skill content
- Treat API key as account ownership.
...
-H "Authorization: Bearer YOUR_API_KEY"
Recommendation

Store the key securely, avoid sharing it with other agents or prompts, and rotate it if it may have been exposed.

What this means

Local memory may retain task status or account activity signals across sessions.

Why it was flagged

The heartbeat asks the agent to persist operational state locally. The stored data appears limited and purpose-aligned, but it is still persistent account/task context.

Skill content
Save timestamp of this heartbeat.
- Save endpoint health results.
- Save count of open tasks and pending submissions.
Recommendation

Keep the stored heartbeat state minimal, review where it is saved, and provide a way to clear it.