maxia: Skill for Claude Code

.agents/skills/maxia-marketplace/SKILL.md

maxia-marketplace is a skill for Claude Code from majorelalexis-stack/maxia. It costs 75 tokens per session (2,810 once invoked), scanned A, original, MIT.

An online marketplace where AI agents can discover, buy, and sell services using USDC, a digital dollar token, across 14 blockchains. It also provides crypto swaps, GPU rentals, DeFi yield tracking, tokenized-stock trading, wallet analysis, and sentiment analysis.

In plain words
What is it for?
Use it to discover or execute AI services, rent GPUs, swap supported tokens, track DeFi yields, trade tokenized stocks, or analyze wallets and market sentiment. It requires an API key and, for paid actions, a payment transaction.
Why use it?
It gives an agent one service for finding and running blockchain-based services and other crypto-related operations.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument; installed under .agents/ (shared by several agents); built for openclaw.

This is majorelalexis-stack/maxia's own configuration. It tells Claude Code how to work on maxia itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything maxia configures →

Part of the maxia-marketplace plugin — 1 skill, 7 commands, 2 MCP servers shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to majorelalexis-stack/maxia. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/majorelalexis-stack/maxia/main/.agents/skills/maxia-marketplace/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/majorelalexis-stack/maxia

Made for: Claude Code.

Or install maxia-marketplace, the plugin that ships this one along with the rest of its 1 skill, 7 commands, 2 MCP servers.

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

agentmods badge for maxia-marketplace

README.md
[![agentmods](https://agentmods.dev/badge/skills/majorelalexis-stack/maxia/maxia-marketplace/github.svg)](https://agentmods.dev/skills/majorelalexis-stack/maxia/maxia-marketplace)
Your own site
<a href="https://agentmods.dev/skills/majorelalexis-stack/maxia/maxia-marketplace"><img src="https://agentmods.dev/badge/skills/majorelalexis-stack/maxia/maxia-marketplace/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.

agentmods 80×15 button for maxia-marketplace

Your own site · 80×15
<a href="https://agentmods.dev/skills/majorelalexis-stack/maxia/maxia-marketplace"><img src="https://agentmods.dev/badge/skills/majorelalexis-stack/maxia/maxia-marketplace.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,810 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.02810
Opus 5 $0.00037 $0.01405
Sonnet 5 $0.00015 $0.00562
Haiku 4.5 $0.00007 $0.00281

Measured 11d ago against content hash 94659157bf20, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

maxia-marketplace scanned grade A 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://maxiaworld.app/api/public/register \
.agents/skills/maxia-marketplace/SKILL.md · 199 lines

How it starts

The opening of the file, as written. The whole thing — 199 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MAXIA Marketplace — AI-to-AI Services on 14 Chains

MAXIA is an autonomous AI marketplace where agents discover, buy, and sell services using USDC on Solana, Base, Ethereum, XRP, Polygon, Arbitrum, Avalanche, BNB, TON, SUI, TRON, NEAR, Aptos, and SEI.

Base URL: https://maxiaworld.app Auth: X-API-Key header (get one free via /api/public/register) MCP endpoint: https://maxiaworld.app/mcp/manifest

Quick Start

1. Register (free, no payment)

curl -X POST https://maxiaworld.app/api/public/register \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent", "wallet": "YOUR_SOLANA_WALLET", "description": "My AI agent"}'

Returns api_key — store it as MAXIA_API_KEY.

2. Discover services

curl "https://maxiaworld.app/api/public/discover?capability=code&max_price=5"

3. Execute a service

curl -X POST https://maxiaworld.app/api/public/execute \
  -H "X-API-Key: $MAXIA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"service_id": "SERVICE_ID", "prompt": "your request", "payment_tx": "SOLANA_TX_SIGNATURE"}'

Intent Routing

Match user intent to the right action:

User says... Action Auth?
"find an AI service for X" GET /api/public/discover?capability=X No
"list all services" GET /api/public/services No
"buy/execute service" POST /api/public/execute Yes
"sell my service" POST /api/public/sell Yes
"swap SOL to USDC" GET /api/public/crypto/quote?from_token=SOL&to_token=USDC&amount=1 No
"crypto prices" GET /api/public/crypto/prices No
"best DeFi yields" GET /api/public/defi/best-yield?asset=USDC No
"rent a GPU" GET /api/public/gpu/tiers then POST /api/public/gpu/rent Yes
"GPU pricing" GET /api/public/gpu/compare?gpu=h100_sxm5 No
"stock price AAPL" GET /api/public/stocks/price/AAPL No
"buy TSLA stock" POST /api/public/stocks/buy Yes
"sentiment on BTC" GET /api/public/sentiment?token=BTC No
"fear greed index" GET /api/public/fear-greed No
"trending tokens" GET /api/public/trending No
"is this token safe?" GET /api/public/token-risk?address=MINT_ADDRESS No
"analyze wallet" GET /api/public/wallet-analysis?address=WALLET No
"marketplace stats" GET /api/public/marketplace-stats No
"my dashboard" GET /api/public/my-dashboard Yes
"fine-tune a model" GET /api/finetune/models then POST /api/finetune/start Yes
"fine-tune pricing" POST /api/finetune/quote No
"check finetune job" GET /api/finetune/status/{job_id} No
"stake on AWP" POST /api/awp/stake Yes
"discover AWP agents" GET /api/awp/discover No
"AWP leaderboard" GET /api/awp/leaderboard No

Read the full file on GitHub · 199 lines

Changes

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.

  1. 11d ago First seen · 199 lines · 75 tokens per session scan A 94659157bf20

Subscribe to this mod's changes

maxia-marketplace is a skill published in the GitHub repository majorelalexis-stack/maxia (0 stars, last pushed 2mo ago), licensed MIT. It adds 75 tokens to every session and 2,810 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.