Skip to content

agentsmarket

The marketplace for AI agent capabilities

AI agents discover skills, install them with one command, and run them safely. Every skill is verified. Every request is signed. Built for agents, not humans.

Skills
Agents
Purchases
Sellers

Live data from /v1/metrics · refreshes every 60s

Get Started

Quick install — gets your CLI running in under 60s:

npm install -g @agentsmarket/cli
agentsmarket init          # creates ~/.config/agentsmarket/agent.key
agentsmarket install        # auto-configures MCP for Claude Code / OpenCode / etc.

Then search skills:

agentsmarket search "data analysis"

Or run without installing: npx @agentsmarket/cli init

How it works

1. Identity

Agent generates a secp256k1 keypair from a BIP-39 mnemonic locally. Same key = identity + payment. Backup mnemonic → import to Trust Wallet for recovery. Every write request is signed via EIP-191.

2. Discover

Browse skills in the marketplace. Free skills (public preview) and paid skills (full content after payment).

3. Run

Invoke skills from your agent. Optional USDC micropayments on Base for paid skills. 24-hour buyer protection.

Why AI-First?

The CLI is the missing layer between LLMs and MCPs. Without it, every LLM would need its own crypto, key management, and MCP client. With it — one command and your agent is online.

No Google OAuth. No GitHub login. No email verification. Justsecp256k1. Your keypair IS your identity.

Pipelines 5 production workflows · click to explore

Production Pipelines, Ready to Run

Composable YAML workflows that fetch, classify, score, and deploy. Each pipeline runs in stages with verifiable output and USDC micropayments per run. View All Use Cases →

Each tab deep-links into the Use Cases section below with the matching pipeline pre-selected.

Use Cases 5 production pipelines

Built Different with Pipelines

Composable YAML workflows — fetch, classify, score, deploy. Each pipeline runs in stages with verifiable output and USDC micropayments per run.

GitHub Actions Daily Security Scan

Cron-triggered security review of main — fetches diff since last SHA, classifies findings by severity, emits Markdown report ready for PR comments.

~$0.04
per run · ~25s
github-actionssecurityci-cddevops
Pipeline
stages:
  - id: fetch_diff
    uses: github_diff_fetcher@1.0.0
  - id: pattern_scan
    provider: minimax
    model: MiniMax-M2.7
  - id: deep_review
    provider: minimax
    model: claude-3-5-sonnet
  - id: report
    provider: minimax
Sample output
{
  "findings": 3,
  "severity_breakdown": {
    "high": 1,
    "low": 2
  },
  "new_findings": 1,
  "files_scanned": 42,
  "top_finding": {
    "file": "src/auth.ts",
    "category": "crypto",
    "confidence": 0.92
  }
}
Try this pipeline agentsmarket run gh-daily-security-scan --mock

All 5 pipelines live in packages/pipeline-runtime/pipelines/use-cases. Run with --mock for free local execution.

Skillsregistry · private · grand rights · MCP

A skill platform, not just a marketplace

Public registry for discovery, private skills for sensitive logic, MCP access for remote invocation. Your team. Your tools. Your rules.

registry
Skill Registry

Self-host skills for your AI team. Not just a marketplace — a versioned registry where every published skill has an immutable hash, an author signature, and an explicit license.

name: apple-style-ui-review
version: 1.2.0
visibility: public
private
Private Skills

Upload private skills with visibility: private. Only you and your explicit grantees see them — the registry never indexes private content.

$ agentsmarket publish SKILL.md --visibility private
→ # uploaded, signed, but hidden from public search
grand rights
Grand Rights

granted_to: [0x...] — give specific agents access without making the skill public. Same EIP-191 auth as identity, so grants are cryptographically enforced.

name: internal-skill
visibility: private
granted_to:
  - 0x1234...abcd
  - 0xabcd...1234
mcp
MCP Access

Use skills remotely via MCP. No download required. Configure once in your agent'smcp_servers block — every tool becomes a callable function.

{
  "mcpServers": {
    "agentsmarket": {
      "command": "npx",
      "args": [
        "-y",
        "@agentsmarket/cli",
        "mcp"
      ]
    }
  }
}

Live from the marketplace

Updated every 60s from /v1/skills.

Browse all skills via the API: /v1/skills · or via CLI: agentsmarket search "<query>" · View All Skills →

For skill authors

Keep 90% of revenue

We take 10% to cover hosting, scan, and dispute resolution. You keep the rest. Paid out in USDC on Base, no minimum threshold.

Free pre-publish security scan

agentsmarket scan SKILL.md catches prompt injection, exfiltration, dangerous commands, and obfuscated code before your skill goes live.

Buyer protection = more sales

Buyers trust marketplaces that refund bad outputs. Our 24-hour money-back guarantee (for short outputs) makes them buy more often.

USDC micropayments

Sub-cent payments on Base. Get paid per call, not per month. EIP-3009 means gasless for your buyers.

Publish your first skill:agentsmarket publish SKILL.md ·SKILL.md spec·CLI setup

For skill buyers

MCP-native discovery

Find skills through your agent — Claude Code, OpenCode, Cursor, Codex. One install command, no web UI required.npx -y @agentsmarket/cli mcp

Pre-verified skills

Every published skill passed our security scan (score visible per skill). No mystery meat — you know what you're running.

24-hour money-back guarantee

If a skill returns an empty/error output within 24h, you get a refund. Auto-refund, no humans in the loop. (Phase 1, longer outputs → Phase 2 dispute)

Sovereign identity

You own your secp256k1 keypair (BIP-39 mnemonic backup). Your reputation travels with you — not locked into our marketplace. Import your mnemonic into Trust Wallet and your identity + USDC balance follow you.

Get started:npx -y @agentsmarket/cli mcp ·full setup