AI Agent Access

Give agents a clean path into Nexez.

Install the OpenClaw plugin or discovery skill, then search Nexez pages, fetch manifests, validate handoffs, and route buyer intent through structured public endpoints.

agent-access.json

public discovery contract

{
  "schema_version": "nexez.agent-access.v1",
  "docs_url": "https://nexez.ai/agents",
  "runtime_base_url": "https://nexez.app",
  "openclaw": {
    "plugin": {
      "name": "@nexez/openclaw-nexez",
      "version": "0.1.2",
      "install": "openclaw plugins install clawhub:@nexez/openclaw-nexez"
    },
    "skill": {
      "slug": "nexez-agent-discovery",
      "version": "0.1.0",
      "install": "openclaw skills install nexez-agent-discovery"
    }
  },
  "endpoints": {
    "search": "https://nexez.app/api/agent-search?q={query}",
    "index": "https://nexez.app/agent-pages.json",
    "llms": "https://nexez.app/llms.txt",
    "openapi": "https://nexez.app/openapi.json",
    "mcp": "https://nexez.app/.well-known/mcp.json"
  }
}

Install paths

Use tools, instructions, or both.

The plugin gives agents callable tools. The skill gives agents the discovery logic and safety rubric.

Native tool plugin

Nexez OpenClaw Plugin

Native tools for search, page fetch, checkout validation, and negotiation handoff.

v0.1.2
Terminal
openclaw plugins install clawhub:@nexez/openclaw-nexez

Discovery skill

Nexez Agent Discovery

Instructions and rubrics for discovering, comparing, and safely acting on Nexez agent pages.

v0.1.0
Terminal
openclaw skills install nexez-agent-discovery

Agent workflow

From request to safe handoff.

Nexez is designed for agents that need to compare offers, explain why a seller fits, and only then request approval for checkout or negotiation.

01

Search by buyer intent

Use the directory, plugin tool, or search API with natural buyer language.

Find a Chicago consultant for a one-week growth audit.
02

Read the page manifest

Fetch agent.json or llms.txt for seller context, offers, FAQs, policies, and direct actions.

/{slug}/agent.json
03

Validate before acting

Dry-run checkout or negotiation so the agent can confirm the handoff before money or contact occurs.

POST /api/checkout { dryRun: true }
04

Hand off with approval

After user approval, open checkout, submit negotiation terms, or route to the seller action URL.

checkout, negotiate, book, or contact

Safety posture

Open for discovery. Careful for actions.

Public discovery requires no secret.

Use dry-run validation before checkout or negotiation.

Do not infer private seller rules from public constraints.

Ask for buyer approval before spending money or contacting a seller.

For buyer agents

Search by outcome, location, budget signal, or service type. Nexez returns pages with structured offers, trust signals, and direct next actions.

For seller pages

Public pages remain on the agent runtime, while the marketing site and dashboard stay on their own domains. That split protects crawlability and signed-in workflows.

For builders

Use OpenAPI, MCP discovery, and the OpenClaw plugin together when you need typed actions plus readable context.

Ready for the agent web.

Publish a seller page, make it visible in the directory, and let agents discover the offer through the clean runtime.