simmer-wallet-setup

simmer-wallet-setup is a skill for Claude Code, Codex from SpartanLabsXyz/simmer-sdk. It costs 67 tokens per session (3,168 once invoked), scanned C, original, MIT.

A setup guide for connecting a self-custody wallet—one whose private key you control—to an agent trading on Polymarket or Kalshi.

In plain words
What is it for?
Use it when configuring local wallet signing for real-money trades on supported prediction markets.
Why use it?
It explains how to use your own key, import a funded Polymarket wallet, or connect an existing agent wallet, while clarifying that managed wallets use a dashboard instead.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it when configuring local wallet signing for real-money trades on supported prediction markets.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/spartanlabsxyz/simmer-sdk/simmer-wallet-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add SpartanLabsXyz/simmer-sdk --skill simmer-wallet-setup
Clone the repo
git clone --depth 1 https://github.com/SpartanLabsXyz/simmer-sdk

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for simmer-wallet-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/spartanlabsxyz/simmer-sdk/simmer-wallet-setup/github.svg)](https://agentmods.dev/skills/spartanlabsxyz/simmer-sdk/simmer-wallet-setup)
Your own site
<a href="https://agentmods.dev/skills/spartanlabsxyz/simmer-sdk/simmer-wallet-setup"><img src="https://agentmods.dev/badge/skills/spartanlabsxyz/simmer-sdk/simmer-wallet-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for simmer-wallet-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/spartanlabsxyz/simmer-sdk/simmer-wallet-setup"><img src="https://agentmods.dev/badge/skills/spartanlabsxyz/simmer-sdk/simmer-wallet-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,168 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe. ⚑ AI security review Sonnet 5 · 7 Sept 2026 📄 Read the review
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.03168
Opus 5 $0.00034 $0.01584
Sonnet 5 $0.00013 $0.00634
Haiku 4.5 $0.00007 $0.00317

Measured 11d ago against content hash 6a759e1ae5b3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade C, and why

simmer-wallet-setup scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://docs.openwallet.sh/install.sh | bash # one-time OWS install

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://docs.openwallet.sh/install.sh | bash # one-time OWS install
mcp/bundled-skills/simmer-wallet-setup/SKILL.md · 186 lines

How it starts

The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Simmer Wallet Setup

Self-custody wallet setup for an agent that signs its own real-money trades on Polymarket or Kalshi. Three paths:

Mode Who signs When to choose
External key (default) Local SDK with WALLET_PRIVATE_KEY env — or an OWS key store via OWS_WALLET Any self-custody setup: your own wallet, your key, your machine.
Import a Polymarket wallet Same local signing — key exported from polymarket.com Fund with card/exchange via Polymarket's onramps; the wallet arrives at Simmer already funded and approved.
Connect existing agent Same local signing, wallet already registered in the dashboard You already activated a dedicated per-agent wallet in the dashboard and want to wire your runtime to it.

Already on a managed wallet? You don't need this skill — managed setup is a dashboard flow, not an agent task. Open simmer.markets/dashboard, go to your agent's Wallet tab, and click Fund & activate trading. The wizard opens a multi-chain bridge that accepts USDC, USDT, or USDC.e on Ethereum / Polygon / Base / Arbitrum / Solana — funds land as pUSD on your Polymarket Deposit Wallet, contracts auto-approve. Do not tell the user to send funds directly to their agent wallet's EOA expecting them to sweep — only legacy USDC.e on Polygon is recognized on the direct path; native USDC, USDT, and cross-chain tokens must go through the bridge wizard.

Key safety (read this first)

The private key goes in exactly one place: the agent host's environment, or a local key store.

  • Use read -s to set it — never paste a key into a pipe, a chat, a ticket, a shared config file, or a second browser extension "just to sign" (per SIM-2118):
    read -s -p 'WALLET_PRIVATE_KEY: ' K && export WALLET_PRIVATE_KEY=$K
    
  • Prefer a key store over a bare env var. OWS (Open Wallet Standard) keeps the key encrypted at rest (AES-256-GCM); the SDK picks it up via OWS_WALLET and signs through the vault. Its policy engine can scope the agent's signing token to Polymarket orders only.
    curl -fsSL https://docs.openwallet.sh/install.sh | bash   # one-time OWS install
    pip install 'simmer-sdk[ows]'
    ows wallet import --name "my-agent-wallet" --private-key "$WALLET_PRIVATE_KEY"
    unset WALLET_PRIVATE_KEY
    export OWS_WALLET=my-agent-wallet   # SDK signs via the vault from here
    
  • If a key ever touches a chat or shared surface, treat it as compromised: withdraw to a fresh wallet and start over.

Read the full file on GitHub · 186 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 186 lines · 67 tokens per session scan E 6a759e1ae5b3

Subscribe to this mod's changes

simmer-wallet-setup is a skill published in the GitHub repository SpartanLabsXyz/simmer-sdk (48 stars, last pushed yesterday), licensed MIT. It adds 67 tokens to every session and 3,168 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.