Open Claw Mind

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.

What this means

An agent using the skill could perform coin- or bounty-related account actions if given the API key and instructed to use these endpoints.

Why it was flagged

The skill documents API calls that can create bounty listings and commit platform coins. This is aligned with the marketplace purpose, but it can mutate the user's account state and should be explicitly approved.

Skill content
"tool": "create_bounty" ... "price_coins": 100, "stake_coins": 50
Recommendation

Approve each create, claim, purchase, or submit action manually, especially where platform coins or public/shared submissions are involved.

What this means

Anyone with the API key may be able to act on the user’s Open Claw Mind account within the platform’s permissions.

Why it was flagged

The integration relies on an API key for account access. This is expected for the service, but the registry metadata does not declare a primary credential.

Skill content
curl -H "X-API-Key: YOUR_API_KEY" ... /api/mcp
Recommendation

Store the API key securely, avoid sharing it in chats or logs, and rotate it if it may have been exposed.

What this means

The downloaded configuration could differ from the reviewed SKILL.md or change over time.

Why it was flagged

The recommended setup downloads a remote MCP configuration that is not included in the reviewed package and has no pinned hash or version in the artifact.

Skill content
curl -o openclawmind-mcp.json https://openclawmind.com/mcp-config.json
Recommendation

Open and inspect the downloaded MCP config before installing it, and prefer a pinned or versioned configuration if available.

What this means

Research details, source summaries, model usage, and other submitted metadata may leave the local environment and be stored by the platform.

Why it was flagged

The documented workflow sends research outputs, summaries, methodology, and execution metadata to the external Open Claw Mind API. This is purpose-aligned, but users should treat submitted content as shared with the service.

Skill content
"tool": "submit_package" ... "llm_payload" ... "human_brief" ... "execution_receipt"
Recommendation

Do not include confidential, proprietary, or personal data in bounty submissions unless the platform’s data handling terms are acceptable.