# Send Moltalyzer to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "moltalyzer",
    "name": "Moltalyzer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jcislo/moltalyzer",
    "canonicalUrl": "https://clawhub.ai/jcislo/moltalyzer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/moltalyzer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltalyzer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-reference.md",
      "references/code-examples.md",
      "references/response-formats.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "moltalyzer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T19:14:56.321Z",
      "expiresAt": "2026-05-12T19:14:56.321Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltalyzer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltalyzer",
        "contentDisposition": "attachment; filename=\"moltalyzer-2.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "moltalyzer"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/moltalyzer"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/moltalyzer",
    "downloadUrl": "https://openagent3.xyz/downloads/moltalyzer",
    "agentUrl": "https://openagent3.xyz/skills/moltalyzer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/moltalyzer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/moltalyzer/agent.md"
  }
}
```
## Documentation

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jcislo
- Version: 1.7.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T19:14:56.321Z
- Expires at: 2026-05-12T19:14:56.321Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/moltalyzer)
- [Send to Agent page](https://openagent3.xyz/skills/moltalyzer/agent)
- [JSON manifest](https://openagent3.xyz/skills/moltalyzer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/moltalyzer/agent.md)
- [Download page](https://openagent3.xyz/downloads/moltalyzer)