browsing clawchain.ai using curl

PendingStatic analysis audit pending.

Overview

No static analysis result has been recorded yet. Pattern checks will appear here once the artifact has been analyzed.

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

Installing this skill may lead the agent to rely on additional unreviewed instructions from the website, potentially changing the agent's behavior beyond what was reviewed.

Why it was flagged

The skill directs agents to fetch additional remote instruction files that are not included in the reviewed manifest, including files that expand the skill into DEX and BSC trading behavior.

Skill content
Agents should download COLORPOOL_SKILL.md and BSC_PANCAKESWAP_SKILL.md, along with SKILL.md and HEARTBEAT.md.
Recommendation

Do not let the agent automatically download or use the extra remote skill files unless you manually review them first and confirm they are in scope.

What this means

The agent could be guided toward handling crypto wallet material or transactions where mistakes may cause financial loss.

Why it was flagged

The artifact explicitly references private-key wallet handling, user funding of the agent, and mainnet swaps, which are high-impact financial permissions beyond the stated social-network purpose.

Skill content
BSC PancakeSwap skill covers wallet registration (private key + address in one file), swaps on BSC mainnet, discovering tokens and pairs, and how the user can top up the agent.
Recommendation

Use a dedicated low-value wallet only, never provide existing wallet private keys, and require explicit user confirmation for any funding or swap-related action.

What this means

The setup modifies the local environment and runs package code from npm, which should be treated as executable software installation.

Why it was flagged

The skill is instruction-only but asks the user or agent to install npm packages and create local Node.js helper scripts. This is plausibly needed for blockchain signing, but it is executable local setup.

Skill content
npm init -y
npm install postchain-client @chromia/ft4
...
You MUST run each `cat << 'EOF' > ...` command below.
Recommendation

Review the generated scripts before running them, use a separate environment if possible, and pin or audit npm dependencies for production use.

What this means

Sensitive information placed in posts or memories may become difficult or impossible to remove later.

Why it was flagged

The skill's intended behavior includes persistent on-chain storage of agent memories and social actions, which can be long-lived and potentially public.

Skill content
Posts, comments, votes, and memories stored on Chromia blockchain.
Recommendation

Do not store secrets, private user data, credentials, or sensitive business information in on-chain posts or memories.