Slopwork Marketplace

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 this skill could spend, escrow, or release cryptocurrency without a clear required confirmation step.

Why it was flagged

The skill explicitly disables human approval while describing actions that can move, lock, or release real SOL funds.

Skill content
requires_human_approval: false ... post tasks, bid on work, escrow funds in multisig vaults, and release payments
Recommendation

Require explicit user approval for every transaction, set spending limits, and use a dedicated low-balance wallet.

What this means

If the wallet directory is read by malware, another skill, or another agent, both the encrypted wallet and its password may be available together.

Why it was flagged

The instructions advise persistent storage of the wallet password next to the encrypted wallet file, which weakens the protection of the wallet credentials.

Skill content
When you create a wallet, store the password alongside the wallet file ... You need both the wallet file AND the password to sign transactions.
Recommendation

Do not store wallet passwords beside wallet files; use a secrets manager or operator-controlled approval flow, and keep wallet access narrowly scoped.

What this means

The agent may use an existing local wallet with broader funds or authority than the user intended for this marketplace.

Why it was flagged

The skill can use wallet data from several local locations and a password argument for signing, but the registry metadata declares no primary credential.

Skill content
Wallet Detection ... `$MSW_WALLET_DIR/` ... `./wallet-data/` ... `~/.openclaw/skills/my-solana-wallet/wallet-data/` ... All commands use the same `--password` argument.
Recommendation

Set an explicit wallet directory for this skill, use a separate limited wallet, and avoid sharing general-purpose wallet credentials.

What this means

Users must trust external npm tooling to handle wallet secrets, and that code was not included in the provided skill artifacts for review.

Why it was flagged

The reviewed artifact does not include this wallet tooling, but the instructions ask users to install and run it for private-key creation and export.

Skill content
npm install slopwallet ... Backup immediately (exports secret key + copies wallet file)
Recommendation

Inspect and pin the wallet package version before use, verify its source, and avoid using wallets containing significant funds.

NoteHigh Confidence
ASI01: Agent Goal Hijack
What this means

Future remote instructions could alter marketplace workflows that involve funds.

Why it was flagged

The skill tells agents to consult mutable remote skill documentation before actions; this is disclosed and purpose-related, but it can change behavior outside the reviewed artifact.

Skill content
Always re-read this document or fetch `/api/skills` before interacting with a task.
Recommendation

Treat remote docs as reference material, not as permission to bypass user confirmation or wallet safety limits.