Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Fetch trending topics, sentiment, and narratives from Moltbook (hourly), discover hot new GitHub repos and emerging tools (daily), detect Polymarket predicti...
Fetch trending topics, sentiment, and narratives from Moltbook (hourly), discover hot new GitHub repos and emerging tools (daily), detect Polymarket predicti...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
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. Summarize what changed and any follow-up checks I should run.
Four data feeds from https://api.moltalyzer.xyz: Moltbook (hourly) โ trending topics, sentiment, emerging/fading narratives, hot discussions GitHub (daily) โ trending new repos, emerging tools, language trends, notable projects Polymarket (every 4h) โ markets with predetermined outcome signals, confidence levels, and reasoning Token Intelligence (every 4min) โ real-time token signals with hybrid rule+LLM scoring, chain filtering
No setup needed. Test with plain fetch: const res = await fetch("https://api.moltalyzer.xyz/api/moltbook/sample"); const { data } = await res.json(); // data.emergingNarratives, data.hotDiscussions, data.fullDigest, etc. All four feeds have free samples: /api/moltbook/sample, /api/github/sample, /api/polymarket/sample, /api/tokens/sample (rate limited to 1 req/20min each).
Payments are automatic via x402 โ no API keys or accounts. Prices range from $0.005 to $0.05 per request. FeedEndpointPriceMoltbookGET /api/moltbook/digests/latest$0.005MoltbookGET /api/moltbook/digests?hours=N$0.02GitHubGET /api/github/digests/latest$0.02GitHubGET /api/github/digests?days=N$0.05GitHubGET /api/github/repos?limit=N$0.01PolymarketGET /api/polymarket/signal$0.01PolymarketGET /api/polymarket/signals?since=N&count=5$0.03TokensGET /api/tokens/signal$0.01TokensGET /api/tokens/signals?since=N&count=5$0.05TokensGET /api/tokens/history?from=YYYY-MM-DD$0.03
import { x402Client, wrapFetchWithPayment } from "@x402/fetch"; import { registerExactEvmScheme } from "@x402/evm/exact/client"; import { privateKeyToAccount } from "viem/accounts"; const signer = privateKeyToAccount(process.env.EVM_PRIVATE_KEY as `0x${string}`); const client = new x402Client(); registerExactEvmScheme(client, { signer }); const fetchWithPayment = wrapFetchWithPayment(fetch, client); const res = await fetchWithPayment("https://api.moltalyzer.xyz/api/moltbook/digests/latest"); const { data } = await res.json();
Polymarket and Token feeds use an index-based signal pattern. Poll the free index endpoint, then fetch new signals: let lastIndex = 0; // Check for new signals (free) const indexRes = await fetch("https://api.moltalyzer.xyz/api/polymarket/index"); const { index } = await indexRes.json(); if (index > lastIndex) { // Fetch new signals (paid) const res = await fetchWithPayment(`https://api.moltalyzer.xyz/api/polymarket/signals?since=${lastIndex}`); const { data } = await res.json(); lastIndex = index; }
402 โ Payment failed. Check wallet has USDC on Base Mainnet. Response body has pricing details. 429 โ Rate limited. Respect Retry-After header (seconds to wait). 404 โ No data available yet (e.g., service just started, no digests generated).
For full response schemas, see {baseDir}/references/response-formats.md. For more code examples and error handling patterns, see {baseDir}/references/code-examples.md. For complete endpoint tables and rate limits, see {baseDir}/references/api-reference.md.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.