{
  "schemaVersion": "1.0",
  "item": {
    "slug": "simmer-resolution-tracker",
    "name": "Simmer Resolution Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/DjDyll/simmer-resolution-tracker",
    "canonicalUrl": "https://clawhub.ai/DjDyll/simmer-resolution-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/simmer-resolution-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=simmer-resolution-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "clawhub.json",
      "data/live/redeemed_markets.json",
      "data/live/resolved_markets.json",
      "resolution_tracker.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/simmer-resolution-tracker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/simmer-resolution-tracker",
    "agentPageUrl": "https://openagent3.xyz/skills/simmer-resolution-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/simmer-resolution-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/simmer-resolution-tracker/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Simmer Resolution Tracker",
        "body": "Every trade you place either wins or loses. This skill makes sure you find out immediately — logs the outcome, posts the alert, redeems the winnings on-chain — automatically, every 5 minutes. Set it up once and forget it.\n\nThis is a template. Point it at your trade journals, set your Discord webhook, and the skill watches for you. It polls Simmer for resolved positions, matches them back to your journal entries, computes PnL, and handles on-chain redemptions. You bring the trades — it closes the loop."
      },
      {
        "title": "1. Install dependencies",
        "body": "pip install simmer-sdk"
      },
      {
        "title": "2. Set environment variables",
        "body": "export SIMMER_API_KEY=your_api_key\nexport WALLET_PRIVATE_KEY=your_wallet_key\nexport DISCORD_WEBHOOK=https://discord.com/api/webhooks/...  # optional"
      },
      {
        "title": "3. Run it",
        "body": "python resolution_tracker.py\n\nThat's it. Cron handles the rest — every 5 minutes, automatically."
      },
      {
        "title": "Configuration",
        "body": "VariableRequiredDefaultDescriptionSIMMER_API_KEY✅—Your Simmer API keyWALLET_PRIVATE_KEY✅—Polymarket wallet private key for on-chain redemptionsDISCORD_WEBHOOKNo—Discord webhook URL for win/loss alertsPOLY_MODENoliveSet to sim to skip on-chain redemptionsDATA_DIRNo./data/liveOverride data directory path"
      },
      {
        "title": "Quick Commands",
        "body": "# Run once manually\npython resolution_tracker.py\n\n# Dry run (no redemptions)\nPOLY_MODE=sim python resolution_tracker.py\n\n# Custom data directory\nDATA_DIR=./data/backtest python resolution_tracker.py"
      },
      {
        "title": "Example Output",
        "body": "[2026-03-14 04:10 UTC] Checking positions...\nFound 2 newly resolved markets\n\n✅ WIN  btc_momentum — Will BTC close above $85k today?\n        Outcome: YES | Shares: 147.3 | PnL: +$18.42\n        Redeemed on-chain: 0xabc...def\n        Discord alert sent ✓\n\n❌ LOSS eth_midcandle — Will ETH hit $3,800 this week?\n        Outcome: NO | Cost: $12.00 | PnL: -$12.00\n        Discord alert sent ✓\n\nProcessed: 2 resolutions | 1 redeemed | 0 errors"
      },
      {
        "title": "Troubleshooting",
        "body": "Trade not matched in journal — The resolution ran before the trade was logged. Not an error — the tracker will retry on the next run and match it then.\n\nWALLET_PRIVATE_KEY not set — Redemptions will fail. The tracker still logs resolutions and posts Discord alerts — you just won't get automatic on-chain redemptions.\n\nDiscord webhook errors — Check the URL is valid and the webhook hasn't been deleted. Alerts are best-effort — webhook failures don't block resolution processing.\n\nPOLY_MODE=sim — Skips all on-chain redemptions. Use this for testing or when you want resolution tracking without touching the chain."
      }
    ],
    "body": "Simmer Resolution Tracker\n\nEvery trade you place either wins or loses. This skill makes sure you find out immediately — logs the outcome, posts the alert, redeems the winnings on-chain — automatically, every 5 minutes. Set it up once and forget it.\n\nThis is a template. Point it at your trade journals, set your Discord webhook, and the skill watches for you. It polls Simmer for resolved positions, matches them back to your journal entries, computes PnL, and handles on-chain redemptions. You bring the trades — it closes the loop.\n\nSetup\n1. Install dependencies\npip install simmer-sdk\n\n2. Set environment variables\nexport SIMMER_API_KEY=your_api_key\nexport WALLET_PRIVATE_KEY=your_wallet_key\nexport DISCORD_WEBHOOK=https://discord.com/api/webhooks/...  # optional\n\n3. Run it\npython resolution_tracker.py\n\n\nThat's it. Cron handles the rest — every 5 minutes, automatically.\n\nConfiguration\nVariable\tRequired\tDefault\tDescription\nSIMMER_API_KEY\t✅\t—\tYour Simmer API key\nWALLET_PRIVATE_KEY\t✅\t—\tPolymarket wallet private key for on-chain redemptions\nDISCORD_WEBHOOK\tNo\t—\tDiscord webhook URL for win/loss alerts\nPOLY_MODE\tNo\tlive\tSet to sim to skip on-chain redemptions\nDATA_DIR\tNo\t./data/live\tOverride data directory path\nQuick Commands\n# Run once manually\npython resolution_tracker.py\n\n# Dry run (no redemptions)\nPOLY_MODE=sim python resolution_tracker.py\n\n# Custom data directory\nDATA_DIR=./data/backtest python resolution_tracker.py\n\nExample Output\n[2026-03-14 04:10 UTC] Checking positions...\nFound 2 newly resolved markets\n\n✅ WIN  btc_momentum — Will BTC close above $85k today?\n        Outcome: YES | Shares: 147.3 | PnL: +$18.42\n        Redeemed on-chain: 0xabc...def\n        Discord alert sent ✓\n\n❌ LOSS eth_midcandle — Will ETH hit $3,800 this week?\n        Outcome: NO | Cost: $12.00 | PnL: -$12.00\n        Discord alert sent ✓\n\nProcessed: 2 resolutions | 1 redeemed | 0 errors\n\nTroubleshooting\n\nTrade not matched in journal — The resolution ran before the trade was logged. Not an error — the tracker will retry on the next run and match it then.\n\nWALLET_PRIVATE_KEY not set — Redemptions will fail. The tracker still logs resolutions and posts Discord alerts — you just won't get automatic on-chain redemptions.\n\nDiscord webhook errors — Check the URL is valid and the webhook hasn't been deleted. Alerts are best-effort — webhook failures don't block resolution processing.\n\nPOLY_MODE=sim — Skips all on-chain redemptions. Use this for testing or when you want resolution tracking without touching the chain."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/DjDyll/simmer-resolution-tracker",
    "publisherUrl": "https://clawhub.ai/DjDyll/simmer-resolution-tracker",
    "owner": "DjDyll",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/simmer-resolution-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/simmer-resolution-tracker",
    "agentUrl": "https://openagent3.xyz/skills/simmer-resolution-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/simmer-resolution-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/simmer-resolution-tracker/agent.md"
  }
}