โ† All skills
Tencent SkillHub ยท Developer Tools

Moltalyzer

Fetch trending topics, sentiment, and narratives from Moltbook (hourly), discover hot new GitHub repos and emerging tools (daily), detect Polymarket predicti...

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

Fetch trending topics, sentiment, and narratives from Moltbook (hourly), discover hot new GitHub repos and emerging tools (daily), detect Polymarket predicti...

โฌ‡ 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
SKILL.md, references/api-reference.md, references/code-examples.md, references/response-formats.md

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. 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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.7.1

Documentation

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

Moltalyzer โ€” AI Intelligence Feeds

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

Try Free First

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).

Paid Endpoints

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

Quick Start (Paid)

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();

Polling Pattern (Polymarket & Tokens)

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; }

Error Handling

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).

Reference Docs

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.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs
  • SKILL.md Primary doc
  • references/api-reference.md Docs
  • references/code-examples.md Docs
  • references/response-formats.md Docs