polymarket-trading — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited polymarket-trading (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Access Polymarket's prediction market platform via the Polymarket API. Browse markets and events, inspect order books and balances, preview and place orders, and manage positions.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Polymarket API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Polymarket |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Polymarket |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Polymarket API │
│ (User Chat) │ │ (API Key) │ │ │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│1. Install Plugin │ │
│ 2. Pair Device │ │
│3. Connect Polymarket │ │
│ │ 4. Secure Proxy │
│ │ 5. API Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Polymarket│
│ File │ │ Auth │ │ Markets │
└──────────┘ └──────────┘ └──────────┘Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restartThen tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Polymarket again."
# Search markets
clawlink_call_tool --tool "polymarket_search_markets" --params '{"query": "election2024"}'
# Get market order book
clawlink_call_tool --tool "polymarket_get_market_order_book" --params '{"market_id": "MARKET_ID"}'
# Get account balances
clawlink_call_tool --tool "polymarket_get_account_balances" --params '{}'All Polymarket tool calls are authenticated automatically by ClawLink using the user's Polymarket account.
No API key is required in chat. ClawLink stores the API key securely and injects it into every Polymarket API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrationsResponse: Returns all connected integrations. Look for polymarket in the list.
clawlink_list_tools --integration polymarketResponse: Returns the live tool catalog for Polymarket.
If Polymarket tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration polymarketclawlink_list_integrations to confirm Polymarket is connected.clawlink_list_tools --integration polymarket to see the live catalog.clawlink_search_tools with a short query and integration polymarket.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: Search markets → Get order book → Show prices │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview order → User approves │
│ → Execute order │
└─────────────────────────────────────────────────────────────┘clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.clawlink_call_tool --tool "polymarket_search_markets" \
--params '{
"query": "US election winner",
"limit": 10
}'clawlink_call_tool --tool "polymarket_get_market" \
--params '{
"market_id": "MARKET_ID"
}'clawlink_call_tool --tool "polymarket_get_market_order_book" \
--params '{
"market_id": "MARKET_ID"
}'clawlink_call_tool --tool "polymarket_place_order" \
--params '{
"market_id": "MARKET_ID",
"side": "buy",
"price": 0.65,
"size": 100
}'clawlink_call_tool --tool "polymarket_cancel_order" \
--params '{
"order_id": "ORDER_ID"
}'| Status / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration polymarket. |
| Missing connection | Polymarket is not connected. Direct the user to https://claw-link.dev/dashboard?add=polymarket. |
not_found | Market or order does not exist. Check the ID. |
insufficient_balance | Not enough funds to place the order. Deposit funds or reduce order size. |
validation_error | Invalid parameter or missing required field. Review the tool schema with clawlink_describe_tool. |
| Rate limited | Too many requests. Wait and retry with exponential backoff. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
openclaw plugins list/new as a standalone message to reload the catalog. openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart/new again and retry.polymarket.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by [ClawLink](https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=polymarket-trading) — an integration hub for OpenClaw

~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.