Your Organization's Front Door to the Agentic Web
Version: 1.0.0
Status: Stable
Last Updated: February 2026
Repository: https://github.com/agenticweb-md/agenticweb.md
agenticweb.md is a single discovery file that organizations publish at
their domain root. It gives AI agents and marketplaces a predictable entry
point for organization identity and capability links.
The file is intentionally minimal. It links to authoritative sources (SKILL.md, MCP, OpenAPI, A2A Agent Cards, llms.txt) instead of duplicating them.
AI capability discovery is fragmented:
- Marketplaces need verification.
- Agents must scrape and guess.
- Every platform uses different onboarding requirements.
Organizations need a single, authoritative place to say who they are and where their agent capabilities live.
agenticweb.md is a minimal, frontmatter-only discovery index with:
- Organization metadata — marketplace-ready identity
- Trust signals — verified listings and allowed origins
- Capability index — one list of capability links
- Single file per domain
- Frontmatter-only parsing for machines
- No duplication of existing standards
- Short descriptions for discovery ranking
agenticweb.md sits alongside established files:
robots.txt— crawler permissionsllms.txt— documentation indexAGENTS.md— internal coding instructionsSKILL.md— skill-level instructionsOpenAPI— API schemasA2A Agent Card— agent-to-agent discovery
agenticweb.md links to these; it does not replace them.
---
agenticweb: "1"
description: "APIs and skills for payment processing."
organization:
name: "Example Org"
legal_name: "Example Org, Inc."
website: "https://example.com"
trust:
marketplaces:
- platform: "openai-gpts"
url: "https://chat.openai.com/g/g-abc123"
listing_type: "agent"
capabilities:
- kind: api
id: payments
description: "Payments REST API."
url: "https://api.example.com/v1"
schema: "https://api.example.com/openapi.json"
---Capabilities are listed in a single array, each with kind, id,
description, and a canonical url.
Supported kinds:
skillmcpa2aapidocsdatauicommerce
trust.marketplaces lists external listings that corroborate identity.
Agents can treat these as verification hints, while the domain itself remains the root of authority.
- v1 (now): single-file discovery index
- v2 (future): optional signatures or integrity metadata if needed
We welcome feedback and PRs: