← Back to Skills Marketplace
unixlamadev-spec

Aiprox Market Oracle

by unixlamadev-spec · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
296
Downloads
0
Stars
2
Active Installs
2
Versions
Install in OpenClaw
/install aiprox-market-oracle
Description
Get trading signals for single or batch Polymarket markets. Supports timeframe framing ranked by edge.
README (SKILL.md)

Market Oracle

Get trading signals for Polymarket prediction markets. Analyzes market data, news, and sentiment to provide actionable BUY/AVOID/SELL recommendations with edge estimates. Supports batch comparison of up to 5 markets ranked by opportunity, and timeframe framing for short, medium, or long-term analysis.

When to Use

  • Evaluating Polymarket betting opportunities
  • Comparing multiple markets to find the best edge
  • Getting a second opinion on market positions
  • Researching prediction market fundamentals
  • Identifying mispriced markets

Usage Flow

  1. Provide a single market slug or a markets array (up to 5) for batch comparison
  2. Optionally set timeframe: short (days), medium (weeks, default), or long (months)
  3. AIProx routes to the market-oracle agent
  4. Single: returns signal, edge, confidence, reasoning. Batch: returns ranked array with best opportunity first.

Security Manifest

Permission Scope Reason
Network aiprox.dev API calls to orchestration endpoint
Env Read AIPROX_SPEND_TOKEN Authentication for paid API

Make Request — Single

curl -X POST https://aiprox.dev/api/orchestrate \
  -H "Content-Type: application/json" \
  -H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
  -d '{
    "task": "should I bet on this",
    "market": "will-bitcoin-reach-100k-by-end-of-2024",
    "timeframe": "short"
  }'

Response — Single

{
  "mode": "single",
  "signal": "BUY",
  "edge": 12.5,
  "confidence": 68,
  "reasoning": "Current YES price of 0.42 undervalues probability given recent ETF inflows. Fair value estimate: 0.54.",
  "timeframe": "short"
}

Make Request — Batch

curl -X POST https://aiprox.dev/api/orchestrate \
  -H "Content-Type: application/json" \
  -H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
  -d '{
    "task": "compare these markets",
    "markets": ["will-bitcoin-reach-100k-by-end-of-2024", "will-fed-cut-rates-in-q1-2025"],
    "timeframe": "medium"
  }'

Response — Batch

{
  "mode": "batch",
  "timeframe": "medium",
  "best_market": "will-fed-cut-rates-in-q1-2025",
  "ranked": [
    {"rank": 1, "market": "will-fed-cut-rates-in-q1-2025", "signal": "BUY", "edge": 18.2, "confidence": 74},
    {"rank": 2, "market": "will-bitcoin-reach-100k-by-end-of-2024", "signal": "AVOID", "edge": 3.1, "confidence": 45}
  ]
}

Trust Statement

Market Oracle provides analysis for informational purposes only. Not financial advice. Signals are AI-generated estimates and may be wrong. Always do your own research. Your spend token is used for payment only.

Usage Guidance
This skill is internally coherent: it simply sends requests to aiprox.dev and requires one spend token. Before installing, verify you trust aiprox.dev (check their docs, privacy/billing policies and the token's scope). Treat AIPROX_SPEND_TOKEN like a payment credential — use a limited-scope or sandbox token if available, monitor billing/usage, and avoid storing a high-privilege token here. If you don't want the agent to make paid calls autonomously, disable autonomous invocation or only provide the token at call-time.
Capability Analysis
Type: OpenClaw Skill Name: aiprox-market-oracle Version: 1.0.1 The skill is a legitimate wrapper for the AIProx Market Oracle API, providing trading signals for Polymarket. It transparently requests access to the 'AIPROX_SPEND_TOKEN' environment variable and network access to 'aiprox.dev' for its stated functionality, with no evidence of malicious intent, obfuscation, or unauthorized data access in SKILL.md or _meta.json.
Capability Assessment
Purpose & Capability
Name/description (market oracle for Polymarket) align with the runtime instructions: all calls are routed to aiprox.dev and require a single AIPROX_SPEND_TOKEN for authentication/payment. No unrelated env vars, binaries, or system paths are requested.
Instruction Scope
SKILL.md instructs only HTTP POST requests to https://aiprox.dev/api/orchestrate using the declared AIPROX_SPEND_TOKEN header. It does not instruct reading other files, system paths, or unrelated environment variables, nor does it request transmission to other endpoints.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk or installed by the skill itself.
Credentials
Only one env var is required (AIPROX_SPEND_TOKEN), which is coherent for a paid API. However, the token name implies it can authorize spending/charges; supplying it grants the remote service the ability to perform paid actions on your account. Ensure the token's scope and billing implications are understood before providing it.
Persistence & Privilege
always is false and the skill does not request persistent system-wide changes. Note: normal autonomous invocation is allowed (disable-model-invocation is false), so an agent could call the remote API without further user prompts if granted permission — combine that with a spend token could result in automated charges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install aiprox-market-oracle
  3. After installation, invoke the skill by name or use /aiprox-market-oracle
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- Adds support for batch comparison of up to 5 Polymarket markets, with ranked output by edge. - Introduces optional timeframe framing (short, medium, long) for analysis. - Updates usage instructions and response examples to cover single and batch requests. - Clarifies response structure for both single and batch modes. - Expands use cases to include market comparison and timeframe analysis.
v1.0.0
**Major rewrite: skill refocused on Polymarket signals, with previous files and features removed.** - Removed all previously included analyzer and data-fetching tools/scripts. - Now provides BUY/AVOID/SELL signals with edge/confidence for Polymarket prediction markets. - Usage requires a Polymarket slug/URL and spend token. - API endpoint and request/response examples updated in documentation. - Stronger emphasis on concise actionable outputs and relevant disclaimers.
Metadata
Slug aiprox-market-oracle
Version 1.0.1
License MIT-0
All-time Installs 2
Active Installs 2
Total Versions 2
Frequently Asked Questions

What is Aiprox Market Oracle?

Get trading signals for single or batch Polymarket markets. Supports timeframe framing ranked by edge. It is an AI Agent Skill for Claude Code / OpenClaw, with 296 downloads so far.

How do I install Aiprox Market Oracle?

Run "/install aiprox-market-oracle" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Aiprox Market Oracle free?

Yes, Aiprox Market Oracle is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Aiprox Market Oracle support?

Aiprox Market Oracle is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Aiprox Market Oracle?

It is built and maintained by unixlamadev-spec (@unixlamadev-spec); the current version is v1.0.1.

💬 Comments