Presage

v1.3.1

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· 1k·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for seenfinity/presage.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Presage" (seenfinity/presage) from ClawHub.
Skill page: https://clawhub.ai/seenfinity/presage
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install presage

ClawHub CLI

Package manager switcher

npx clawhub@latest install presage
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description promise (read-only market analysis for Presage/Calshi on Solana) matches the included assets: SKILL.md and a single analysis.js that only fetches presage.market endpoints. There are no unrelated env vars, binaries, or install steps requested.
Instruction Scope
SKILL.md and the runtime instructions limit behavior to fetching public API endpoints and providing analysis. The instructions do not ask the agent to read local files, environment secrets, or post data to third-party endpoints outside presage.market/GitHub.
Install Mechanism
No automated install spec is present (instruction-only). The README suggests cloning the GitHub repo or using ClawHub; pulling code from a GitHub repo is expected and lower risk than arbitrary URL downloads.
Credentials
The skill declares no required environment variables or credentials. The only parameter that may be sensitive is agentId passed to getPortfolio (it identifies an account), but the skill does not request secrets or API keys.
Persistence & Privilege
always is false and the skill does not request permanent agent-level privileges or modify other skills. Autonomous invocation is allowed (platform default) and is not combined with other red flags.
Assessment
This skill appears coherent and read-only, but before installing: (1) verify you trust the presage.market domain and the linked GitHub repo (inspect the repo yourself); (2) be mindful that functions make outbound HTTP requests to https://presage.market/api (network connectivity required); (3) avoid supplying secrets—getPortfolio needs an agentId (an identifier), but you should confirm whether the real API requires authentication before sending any private account identifiers; and (4) if you require stronger assurance, review the GitHub source and confirm there are no hidden calls or later versions that introduce write/trade operations (the code notes that trading execution would need additional implementation).

Like a lobster shell, security has layers — review code before you run it.

latestvk973v0ayqpgsp32edm85y2wt5d816ske
1kdownloads
0stars
7versions
Updated 2mo ago
v1.3.1
MIT-0

📊 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

Available Tools

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


Analyze smart. Trade smarter.

Comments

Loading comments...