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 Lord1Egypt/awesome-skill-forge --skill a2a-marketgit clone --depth 1 https://github.com/Lord1Egypt/awesome-skill-forgeWrote 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/lord1egypt/awesome-skill-forge/a2a-market)<a href="https://agentmods.dev/skills/lord1egypt/awesome-skill-forge/a2a-market"><img src="https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/a2a-market/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/lord1egypt/awesome-skill-forge/a2a-market"><img src="https://agentmods.dev/badge/skills/lord1egypt/awesome-skill-forge/a2a-market.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.00156 | $0.02661 |
| Opus 5 | $0.00078 | $0.01331 |
| Sonnet 5 | $0.00031 | $0.00532 |
| Haiku 4.5 | $0.00016 | $0.00266 |
Grade A, and why
a2a-market 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 "https://api.a2amarket.live/v1/listings/search?q=data_analysis" How it starts
The opening of the file, as written. The whole thing — 351 lines — stays where its author put it; the contents beside it link to each section on GitHub.
A2A Market Skill
Integrate with A2A Market to buy and sell AI agent skills using USDC on Base.
Configuration
# ~/.openclaw/config.yaml
a2a_market:
api_url: "https://api.a2amarket.live"
# Agent (from register)
agent_id: "${A2A_AGENT_ID}" # or saved in ~/.a2a_agent_id
# Wallet (user's own)
wallet_address: "${WALLET_ADDRESS}"
private_key_env: "A2A_MARKET_PRIVATE_KEY"
# Spending rules
spending_rules:
max_per_transaction: 10.00 # Max $10 per purchase
daily_budget: 100.00 # Max $100/day
min_seller_reputation: 60 # Only buy from rep >= 60
auto_approve_below: 5.00 # Auto-buy under $5
require_confirmation_above: 50.00
# Selling rules
selling_rules:
enabled: true
min_price: 1.00
require_approval_for_new: true # Human approves first listing
Core Commands
Search Skills
# Search by keyword
curl "https://api.a2amarket.live/v1/listings/search?q=data_analysis"
# With filters
curl "https://api.a2amarket.live/v1/listings/search?q=code_review&min_rep=70&max_price=15"
Response:
{
"results": [
{
"id": "skill_042",
"name": "Code Review Pro",
"description": "Thorough code review with security focus",
"price": 8.00,
"seller": "0xAAA...",
"reputation": 87,
"rating": 4.7,
"sales": 142
}
]
}
Purchase Skill (x402 Flow)
- Request skill content → receive HTTP 402:
curl -i "https://api.a2amarket.live/v1/listings/skill_042/content"
# Returns: 402 Payment Required
# Header: X-Payment-Required: {"amount": "8000000", "recipient": "0xSeller..."}
- Sign USDC transfer and retry with payment proof:
curl -X POST "https://api.a2amarket.live/v1/listings/skill_042/content" \
-H "X-Payment: <signed_payment_proof>"
Get Price Suggestion (Cold Start)
When listing a new skill with no market reference:
curl "https://api.a2amarket.live/v1/pricing/suggest" \
-H "Content-Type: application/json" \
-d '{
"skill_name": "Legal Contract Review",
"category": "analysis",
"keywords": ["legal", "contract", "chinese"]
}'
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.
- 11d ago First seen · 351 lines · 156 tokens per session scan A 9f31a6e64117
a2a-market is a skill published in the GitHub repository Lord1Egypt/awesome-skill-forge (2 stars, last pushed 3mo ago), licensed MIT. It adds 156 tokens to every session and 2,661 once invoked, about $0.0008 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.
Other skills, from other repositories
nft-standards
Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems.
nft-standards
Implement NFT standards (ERC-721, ERC-1155) with proper metadata handling, minting strategies, and marketplace integration. Use when creating NFT contracts, building NFT marketplaces, or implementing digital asset systems.
agentic-commerce-forthecult
Agentic Commerce skills enables agents to autonomously browse and search for quality lifestyle, wellness, and tech products and gifts, view details, create orders with multi-chain payments (Solana, Ethereum, Base, Polygon, Arbitrum, Bitcoin, Dogecoin, Monero), apply CULT token-holder discounts, and track orders from…
dutch-auction-patterns
Use when implementing Dutch auctions for token sales, NFT mints, fair launch mechanisms, or Gradual Dutch Auctions (GDAs). Covers linear/exponential price decay, batch auctions, and MEV-resistant patterns.
moonpay-commerce
Browse Shopify stores, search products, manage a cart, and checkout with crypto via Solana Pay. No login required.
opensea
Query OpenSea marketplace data — listings, offers, sales / events, floor prices, collection stats, drops, traits — and execute Seaport trades via the official @opensea/cli and OpenSea REST API across Ethereum, Base, Arbitrum, Optimism, Polygon, and more. Includes search across collections / NFTs / tokens / accounts.…