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.
openclaw plugins install clawhub:@nexez/openclaw-nexezDiscovery skill
Nexez Agent Discovery
Instructions and rubrics for discovering, comparing, and safely acting on Nexez agent pages.
openclaw skills install nexez-agent-discoveryAgent 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.
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.Read the page manifest
Fetch agent.json or llms.txt for seller context, offers, FAQs, policies, and direct actions.
/{slug}/agent.jsonValidate before acting
Dry-run checkout or negotiation so the agent can confirm the handoff before money or contact occurs.
POST /api/checkout { dryRun: true }Hand off with approval
After user approval, open checkout, submit negotiation terms, or route to the seller action URL.
checkout, negotiate, book, or contactPublic machine surfaces
Everything points to one source of truth.
These endpoints stay on the public agent runtime so pages remain fast, crawlable, and separate from the authenticated app.
Search
Find matching pages and offer-level actions from a buyer request.
https://nexez.app/api/agent-search?q={query}Index
List published pages, manifests, readiness, offers, and checkout URLs.
https://nexez.app/agent-pages.jsonLLM guide
Plain-text global context for agents that read llms.txt first.
https://nexez.app/llms.txtOpenAPI
Schemas and operation IDs for agent builders and action catalogs.
https://nexez.app/openapi.jsonMCP catalog
Discovery catalog for pages exposing MCP-compatible resources.
https://nexez.app/.well-known/mcp.jsonCapabilities
Compact manifest describing Nexez endpoints, safety posture, and distribution.
https://nexez.app/.well-known/nexez.jsonSafety 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.