Polymarket Nordic Trader

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill matches its stated trading purpose, but it can execute real prediction-market trades and its credential and runtime requirements are under-declared in the registry metadata.

Treat this as an automated trading bot, not an instruction-only template. Install only if you trust the publisher and the simmer-sdk dependency, use a revocable low-limit API key, run in paper mode first, and do not enable live trading unless you are comfortable with the configured spending limits and lack of per-order confirmation.

Findings (3)

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

If live mode is enabled, the skill can spend funds and change Polymarket positions across multiple markets.

Why it was flagged

This shows that live mode selects the real trading venue and the code programmatically submits trades. It is purpose-aligned and defaults to paper mode, but live mode can still mutate financial positions.

Skill content
live=True   venue="polymarket" (real trades, only with --live flag) ... r = client.trade( market_id=m.id, side=side, amount=size, ... )
Recommendation

Use paper mode first, set conservative position limits, and require explicit user approval before any --live run or live order placement.

What this means

A user may not realize before installation that the skill needs an API key that may authorize trading activity.

Why it was flagged

The registry-facing metadata says no credential is required, but the artifacts also show SIMMER_API_KEY is required and read by the code. For a trading bot, this is a material under-declaration of account authority.

Skill content
Required env vars: none ... Env var declarations: none ... Primary credential: none
Recommendation

Declare SIMMER_API_KEY as a required credential, document what account authority it grants, and use a revocable, least-privilege key with spending limits if available.

What this means

Users may underestimate the code and dependency surface that will run for a financial automation skill.

Why it was flagged

This shows an external pip dependency and runnable automaton entrypoint, despite the registry summary saying there is no install spec and this is an instruction-only skill. The dependency is also unpinned.

Skill content
"requires": { "env": [ "SIMMER_API_KEY" ], "pip": [ "simmer-sdk" ] }, ... "automaton": { "managed": true, "entrypoint": "trader.py" }
Recommendation

Align registry metadata with clawhub.json, pin or otherwise verify the simmer-sdk dependency, and review the full published trader.py before enabling live trading.