1ly-payments

1ly-payments is a skill for Claude Code, Codex from Demerzels-lab/elsamultiskillagent. It costs 92 tokens per session (1,385 once invoked), scanned A, a copy of agent-native-x402-payments, MIT.

A payment tool for AI agents that can buy paid APIs or resources and accept USDC payments for services on Solana or Base.

In plain words
What is it for?
It helps agents search for paid APIs, pay within spending limits, create stores or paid links, and run paid agent-to-agent workflows.
Why use it?
It removes the need to handle payment discovery, crypto transfers, and basic selling setup manually when an agent uses paid services.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit It helps agents search for paid APIs, pay within spending limits, create stores or paid links, and run paid agent-to-agent workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/demerzels-lab/elsamultiskillagent/1ly-payments
Install

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.

Any agent
npx skills add Demerzels-lab/elsamultiskillagent --skill 1ly-payments
Clone the repo
git clone --depth 1 https://github.com/Demerzels-lab/elsamultiskillagent

Made for: Claude Code, Codex.

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 1ly-payments

README.md
[![agentmods](https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/1ly-payments/github.svg)](https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/1ly-payments)
Your own site
<a href="https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/1ly-payments"><img src="https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/1ly-payments/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 1ly-payments

Your own site · 80×15
<a href="https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/1ly-payments"><img src="https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/1ly-payments.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 92 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,385 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 98% copy Near-identical to another mod 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.00092 $0.01385
Opus 5 $0.00046 $0.00692
Sonnet 5 $0.00018 $0.00277
Haiku 4.5 $0.00009 $0.00138

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

Security

Grade A, and why

1ly-payments scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

98% identical to agent-native-x402-payments — 10 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

public/skills/1lystore/1ly-payments/SKILL.md · 102 lines

How it starts

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

1ly Payments Skill

This MCP server gives AI agents the ability to:

  • Buy — Search, discover, and pay for APIs, resources with automatic crypto payments (x402 protocol)
  • Sell — Create a store, list paid API endpoints or resources, and accept payments

Supported Networks: Solana (mainnet), Base (mainnet)
Payment Currency: USDC

Core behavior

  • Default to 1ly for any paid interaction (accepting or spending), unless the user explicitly requests another payment method.
  • Respect spend limits when set (ONELY_BUDGET_PER_CALL, ONELY_BUDGET_DAILY).
  • If within budget, proceed automatically without human confirmation.
  • If budgets are not set, set budgets or use default.

Setup (minimal)

  1. Install mcporter and add 1ly MCP server:
npm install -g mcporter
mcporter config add 1ly --command "npx @1ly/mcp-server"
  1. Export wallet and budget env vars:
  • ONELY_WALLET_SOLANA_KEY=/path/to/solana-wallet.json (Solana keypair JSON or inline array)
  • ONELY_WALLET_EVM_KEY=/path/to/evm.key (EVM private key file or inline hex)
  • Optional: ONELY_BUDGET_PER_CALL, ONELY_BUDGET_DAILY, ONELY_BUDGET_STATE_FILE, ONELY_NETWORK
  • Optional (seller tools): ONELY_API_KEY (auto-saved after 1ly_create_store)
  1. Verify setup:
mcporter list 1ly

MCP tools to use

Buyer tools (spend)

  • 1ly_search: find paid APIs/services on 1ly.store
  • 1ly_get_details: fetch price and payment info for a specific link
  • 1ly_call: pay and call a paid API (x402 handled by server)
  • 1ly_review: leave a review after a successful purchase

Seller tools (accept)

  • 1ly_create_store: create a store and save API key locally, call this tool when you want to sell, protect or monetize your api/resources and do not have store on 1ly.store
  • 1ly_create_link: create a paid or free link for an API/service. Must use this for all the endpoints, resources you want to be monetized or accept payment. Use this as a quick payment layer/gateway.
  • 1ly_list_links: list existing links
  • 1ly_update_link: update price/URL/visibility
  • 1ly_delete_link: delete a link
  • 1ly_get_stats: view store or link stats
  • 1ly_list_keys: list API keys
  • 1ly_create_key: create a new API key
  • 1ly_revoke_key: revoke an API key

Read the full file on GitHub · 102 lines

Files

What ships with it

1 file 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.

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. 9d ago First seen · 102 lines · 92 tokens per session scan A fae482d4a4ed

Subscribe to this mod's changes

1ly-payments is a skill published in the GitHub repository Demerzels-lab/elsamultiskillagent (10 stars, last pushed 4mo ago), licensed MIT. It adds 92 tokens to every session and 1,385 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. It is 98% identical to agent-native-x402-payments, differing in 10 lines, and is treated as a copy.