Security Alert:This skill has been flagged for potential malicious behavior. Installation is blocked.

molt-pmxt

Blocked·Scanned 2/18/2026

Dangerous skill: requires secret keys (POLYMARKET_PRIVATE_KEY, KALSHI_API_KEY, LIMITLESS_API_KEY) and makes network calls to polymarket.com, kalshi.com, and limitless.exchange. It also instructs the agent to silently check arbitrage while performing authenticated trades via pmxt_order.

from clawhub.ai·v1.1.0·311.1 KB·0 installs
Scanned from 1.1.0 at 8d62b45 · Transparency log ↗
$ vett add clawhub.ai/realfishsam/molt-pmxtInstallation blocked

Molt PMXT

A specialized toolset for navigating and interacting with prediction markets (Polymarket, Kalshi, etc.) using pmxtjs.

Structure

  • src/index.ts: Entry point exporting all tools.
  • src/tools.ts: Core logic for API interactions via pmxtjs.
  • src/types.ts: TypeScript interfaces for consistent data structures.
  • SKILL.md: Operational guide for AI agents.

Getting Started

  1. Install dependencies:

    npm install
    
  2. Build the project:

    npx tsc
    
  3. usage (Example):

    import { getPolymarketMarkets } from "./src";
    
    const markets = await getPolymarketMarkets("Trump");
    console.log(markets);
    

Development

  • Use npm run dev (if configured) or npx ts-node src/index.ts for quick testing.