一键导入
elizawc-worldcup-read
Turn one Polymarket market's live facts into a single grounded read through the EconomyOS compute endpoint.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Turn one Polymarket market's live facts into a single grounded read through the EconomyOS compute endpoint.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Commission creative deliverables (images, music) from ACP seller agents as a BUYER, with hard spending caps. Discover online sellers, place a job by offering name, fund the escrow on budget.set, retrieve the deliverable URL, complete the job on Base. Includes the money guards and marketplace traps learned from a production robot that buys her own art.
Monetize a gated signal or data API as an autonomous agent over two rails — an ACP Provider poller (escrowed per-job sales) and an x402-gated MCP server (zero-value holder-proof free tier plus 1-USDC pay-per-call) — sharing one signed deliverable contract. Use when you have a working data/signal endpoint and want to sell its outputs agent-to-agent on Base.
Hire a real human through ACP for any subjective call — cultural fit, tone, quality gates, audience reaction, dispute arbitration. Use before publishing, committing, or spending whenever the call is subjective and being wrong is costly, or when your instructions require human sign-off. Covers the full buyer loop with acp-cli: browse for Taste, create and fund a job, chat with the human mid-job over memos, accept the deliverable, and verify the onchain certificate naming your agent's wallet.
Turn saved travel inspiration into a reviewable trip plan with extracted places, map-first sequencing, visible evidence, and an approval gate before any booking-style action.
Make an AI agent's outputs verifiable and tamper-evident by giving the agent an on-chain identity, having it EIP-712 sign a structured assessment of each output, and recording that signature on-chain in the same transaction as the action it justifies. Use when a skeptic should be able to confirm the agent authored a specific output and that the record cannot be edited afterward.
Decompose one engineering request into subtasks, rank ACP providers per subtask, create approval-ready job plans, track each escrow independently, verify deliverables, and assemble one final artifact bundle.
| name | elizawc-worldcup-read |
| description | Turn one Polymarket market's live facts into a single grounded read through the EconomyOS compute endpoint. |
| version | 1.0.0 |
Use this skill when you already have the live facts for one prediction market (mid, last, spread, 24h change, 7-day range, a signal label, a backtest hit rate, and a confidence tier) and you want a single, grounded, human sentence that explains the edge or the risk.
Do not use it to fetch market data, to place or size trades, to manage a wallet, or to make a prediction about the real-world outcome. It reads the numbers you give it; it does not forecast results.
VIRTUALS_API_KEY available in the environment. Never place the key in
prompts, logs, proof files, or committed code.https://compute.virtuals.io/v1 (OpenAI-compatible Chat Completions).A single JSON object of real numbers for one market outcome:
{
"outcome": "7+ matches",
"event": "No. of Matches Decided by Penalty Shootout",
"mid_cents": 14.2,
"last_cents": 14.0,
"spread_cents": 0.5,
"chg_24h_cents": 10.7,
"vol_24h_usd": 2000,
"liquidity_usd": 8500,
"week_range_cents": "3.7-39.0c",
"signal": "MOMENTUM UP",
"backtest": { "setups": 8, "outcome": "held", "hit_pct": 0, "avg_move_cents": -7.9 },
"confidence": "LOW"
}
Every field must come from real data. Do not fill gaps with guesses; pass
null for anything you do not have.
curl https://compute.virtuals.io/v1/chat/completions \
-H "Authorization: Bearer $VIRTUALS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "moonshotai/kimi-k2",
"max_tokens": 200,
"temperature": 0.4,
"venice_parameters": { "disable_thinking": true, "strip_thinking_response": true },
"messages": [
{ "role": "system", "content": "You are a sharp Polymarket World Cup analyst. You get REAL live data for ONE market outcome. Write ONE tight sentence (max 34 words) on what is happening and the edge or risk for a trader. STRICT: use ONLY the numbers given; never invent prices, news, injuries, form, or results; no financial advice; plain text, no markdown, no emojis." },
{ "role": "user", "content": "<the JSON object above>" }
]
}'
venice_parameters keeps the model's chain-of-thought out of the answer so the
content field is a clean one-liner.
VIRTUALS_API_KEY is missing or the compute balance is exhausted
(HTTP 402): fall back to a deterministic template built from the same numbers,
do not block the card.content is empty: fall back, do not ship a blank read.Return a single plain-text sentence (<= 34 words) grounded in the input numbers,
plus the model and cost from the response for accounting. On any failure,
return the deterministic fallback instead of an error.