Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Abstract-Foundation/abstract-skills --skill myriad-on-abstractgit clone --depth 1 https://github.com/Abstract-Foundation/abstract-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/abstract-foundation/abstract-skills/myriad-on-abstract)<a href="https://agentmods.dev/skills/abstract-foundation/abstract-skills/myriad-on-abstract"><img src="https://agentmods.dev/badge/skills/abstract-foundation/abstract-skills/myriad-on-abstract/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/abstract-foundation/abstract-skills/myriad-on-abstract"><img src="https://agentmods.dev/badge/skills/abstract-foundation/abstract-skills/myriad-on-abstract.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00096 | $0.01463 |
| Opus 5 | $0.00048 | $0.00732 |
| Sonnet 5 | $0.00019 | $0.00293 |
| Haiku 4.5 | $0.00010 | $0.00146 |
Grade B, and why
myriad-on-abstract scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Sends data to an external URLmediumData exfiltration
A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.
const quote = await fetch("https://api-v2.myriadprotocol.com/markets/quote", { method: "POST", How it starts
The opening of the file, as written. The whole thing — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Myriad on Abstract
Myriad Protocol is a prediction market platform live on Abstract (and Linea, BNB Chain). Integrate it to show market data, let users trade outcome shares, and earn revenue from buy volume.
Architecture
| Layer | Tool | Use For |
|---|---|---|
| Read-only data | REST API V2 | Market listings, prices, charts, portfolio, events |
| Trading | polkamarkets-js SDK | Buy/sell shares, claim winnings, ERC-20 approvals |
| Revenue | referralBuy + builder code |
Earn distributor fee (typically 1%) on buy volume |
Quick Start
API Setup
Base URL: https://api-v2.myriadprotocol.com/
Auth: x-api-key: <your_api_key> (or ?api_key=<your_api_key>)
Rate limit: 50 req/s per IP/key
Contact the Myriad team to obtain an API key.
Common Flow: Fetch Markets → Get Quote → Execute Trade
// 1. Fetch open markets on Abstract
const res = await fetch(
"https://api-v2.myriadprotocol.com/markets?network_id=2741&state=open&sort=volume_24h&limit=10",
{ headers: { "x-api-key": "<your_api_key>" } }
);
const { data: markets } = await res.json();
// 2. Get a buy quote for a specific outcome
const quote = await fetch("https://api-v2.myriadprotocol.com/markets/quote", {
method: "POST",
headers: { "Content-Type": "application/json", "x-api-key": "<your_api_key>" },
body: JSON.stringify({
market_id: 164,
outcome_id: 0,
network_id: 2741,
action: "buy",
value: 100,
slippage: 0.01,
}),
});
// Returns: shares, price_before, price_after, calldata, fees
// 3. Execute via SDK (see references/sdk.md) or send calldata directly
Common Flow: Claim Winnings
const claim = await fetch("https://api-v2.myriadprotocol.com/markets/claim", {
method: "POST",
headers: { "Content-Type": "application/json", "x-api-key": "<your_api_key>" },
body: JSON.stringify({ market_id: 164, network_id: 2741 }),
});
// Returns: action ("claim_winnings" | "claim_voided"), outcome_id, calldata
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 13d ago First seen · 117 lines · 96 tokens per session scan B c7c7e260b6ba
myriad-on-abstract is a skill published in the GitHub repository Abstract-Foundation/abstract-skills (10 stars, last pushed 6mo ago), licensed MIT. It adds 96 tokens to every session and 1,463 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (sends data to an external url). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
bridge
Cross-chain token transfers using Wormhole and CCTP.
hyperliquid
Hyperliquid L1 perps DEX (69% market share).
mpp-agent
Pay HTTP 402 APIs via Machine Payments Protocol (MPP).
marginfi
MarginFi — Solana lending and borrowing.
crypto-market-rank
Crypto market rankings and leaderboards. Query trending tokens, top searched tokens, Binance Alpha tokens, tokenized stocks, social hype sentiment ranks, smart money inflow token rankings, top meme token rankings from Pulse launchpad, and top trader PnL leaderboards. Use this skill when users ask about token rankings…
trading-signal
Subscribe and retrieve on-chain Smart Money signals. Monitor trading activities of smart money addresses, including buy/sell signals, trigger price, current price, max gain, and exit rate. Use this skill when users are looking for investment opportunities — smart money signals can serve as valuable references for…