Agent Market
Analysis
Review before installing because this skill can use a wallet private key to sign on-chain prediction-market transactions that spend or lock USDC.
Findings (2)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
market_buy_yes({ marketAddress, amount: 5 }) — Bet 5 USDC on YES ... market_propose_outcome({ marketAddress, outcome: true }) — Propose YES won (posts bond)The documented tools perform on-chain financial actions, including bets and bonded oracle proposals. The provided artifacts do not show hard limits, reversibility, or explicit approval requirements for these high-impact actions.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
const PRIVATE_KEY = process.env.WALLET_PRIVATE_KEY as `0x${string}`; ... const account = PRIVATE_KEY ? privateKeyToAccount(PRIVATE_KEY) : undefined;The skill directly consumes a wallet private key and turns it into a signing account, granting transaction authority over that wallet. This is especially sensitive because the registry metadata declares no required env vars or primary credential.
