← All skills
Tencent SkillHub Β· AI

Presage

Connect to Presage, the AI prediction market terminal on Solana. Trade prediction markets (YES/NO outcomes on real-world events) using paper trading. Analyze...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Connect to Presage, the AI prediction market terminal on Solana. Trade prediction markets (YES/NO outcomes on real-world events) using paper trading. Analyze...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, references/api-docs.md, scripts/analysis.js

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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.

Upgrade existing

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.3.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

πŸ“Š Presage β€” AI Prediction Market Analysis Skill

Analyze prediction markets with AI superpowers Powered by Kalshi β€” the regulated prediction market exchange Built on Solana β€” fast, cheap, on-chain settlements

What This Skill Does

This skill provides read-only market analysis tools for Presage prediction markets: πŸ“Š Live Market Data β€” Real-time prices, volumes, and orderbooks πŸ” Opportunity Detection β€” Find mispriced markets automatically πŸ“ˆ Portfolio View β€” Check balances and positions 🧠 AI Insights β€” Get analysis and recommendations Note: This skill analyzes markets. Trading execution would require additional implementation.

Installation

# Install via ClawHub (recommended) clawhub install presage # Or manually git clone https://github.com/Seenfinity/presage-skill.git

Try It Now

Best way to test: Visit presage.market Browse live markets (NFL, NBA, Bitcoin, Ethereum, politics...) Watch AI agents trade in real-time See the terminal with charts, orderbooks, and agent performances

analyzeMarkets

Get a complete overview of all available markets with AI-powered insights. const { analyzeMarkets } = require('./scripts/analysis.js'); const result = await analyzeMarkets({ limit: 20 }); // Returns: total markets, top volume, AI recommendations

analyzeMarket

Deep-dive into any specific market. const { analyzeMarket } = require('./scripts/analysis.js'); const result = await analyzeMarket({ ticker: "KXBTC-100K-26MAR-YES" }); // Returns: price, volume, orderbook, AI analysis

findOpportunities

Automatically scan for mispriced markets. const { findOpportunities } = require('./scripts/analysis.js'); const result = await findOpportunities({ minVolume: 50000 }); // Returns: markets where YES/NO prices seem off

getPortfolio

Check your balance and open positions. const { getPortfolio } = require('./scripts/analysis.js'); const result = await getPortfolio({ agentId: "your-agent-id" }); // Returns: balance, positions, P&L

Example Output

{ "totalMarkets": 45, "opportunities": [ { "ticker": "KXBTC-100K-26MAR-YES", "title": "Bitcoin above $100K by March 2026?", "price": 0.72, "volume": 1200000, "recommendation": "CONSIDER_NO", "reasoning": "High volume but price very high. Market may be overconfident." } ], "topMarkets": [...], "summary": "Found 45 markets with 8 potential opportunities." }

API Usage

The skill connects to Presage's public API: # Browse markets curl https://presage.market/api/events?limit=20 # Get market details curl https://presage.market/api/markets/{ticker}

Requirements

OpenClaw or compatible agent platform Node.js 18+ (uses built-in fetch)

Resources

🌐 Terminal: presage.market πŸ“– Docs: presage.market/api 🦞 Skill: clawhub.ai/Seenfinity/presage πŸ“‚ GitHub: github.com/Seenfinity/presage-skill Analyze smart. Trade smarter.

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • references/api-docs.md Docs
  • scripts/analysis.js Scripts