├── .gitignore ├── .well-known ├── agent-guide.md ├── agentic-guidance.json ├── agentics-manifest.json ├── asyncapi.json ├── auth-policies.json ├── health.json ├── models.json ├── openapi.json └── peers.json ├── LICENSE ├── README.md ├── docs ├── architecture.md ├── deep-research.md ├── federation.md ├── security.md └── tutorials │ └── getting-started.md ├── js-example └── express │ ├── .dockerignore │ ├── .eslintrc.json │ ├── Dockerfile │ ├── fly.toml │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── public │ ├── .well-known │ ├── agent-guide.md │ ├── agentic-guidance.json │ ├── agentics-manifest.json │ ├── asyncapi.json │ ├── health.json │ ├── models.json │ ├── openapi.json │ ├── peers.json │ └── version-control.json │ ├── index.html │ ├── robots.txt │ └── test.html ├── robots.txt └── wordpress-agent-specification ├── README.md ├── agentics-agent-spec.php ├── assets ├── css │ └── admin.css └── js │ └── admin.js ├── includes ├── class-admin.php ├── class-api.php ├── class-router.php └── class-specs.php ├── plugin-specification.md └── templates └── admin-page.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.gitignore -------------------------------------------------------------------------------- /.well-known/agent-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.well-known/agent-guide.md -------------------------------------------------------------------------------- /.well-known/agentic-guidance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.well-known/agentic-guidance.json -------------------------------------------------------------------------------- /.well-known/agentics-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.well-known/agentics-manifest.json -------------------------------------------------------------------------------- /.well-known/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.well-known/asyncapi.json -------------------------------------------------------------------------------- /.well-known/auth-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.well-known/auth-policies.json -------------------------------------------------------------------------------- /.well-known/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.well-known/health.json -------------------------------------------------------------------------------- /.well-known/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.well-known/models.json -------------------------------------------------------------------------------- /.well-known/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.well-known/openapi.json -------------------------------------------------------------------------------- /.well-known/peers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/.well-known/peers.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/README.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/deep-research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/docs/deep-research.md -------------------------------------------------------------------------------- /docs/federation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/docs/federation.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/tutorials/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/docs/tutorials/getting-started.md -------------------------------------------------------------------------------- /js-example/express/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/.dockerignore -------------------------------------------------------------------------------- /js-example/express/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/.eslintrc.json -------------------------------------------------------------------------------- /js-example/express/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/Dockerfile -------------------------------------------------------------------------------- /js-example/express/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/fly.toml -------------------------------------------------------------------------------- /js-example/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/index.js -------------------------------------------------------------------------------- /js-example/express/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/package-lock.json -------------------------------------------------------------------------------- /js-example/express/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/package.json -------------------------------------------------------------------------------- /js-example/express/public/.well-known/agent-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/.well-known/agent-guide.md -------------------------------------------------------------------------------- /js-example/express/public/.well-known/agentic-guidance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/.well-known/agentic-guidance.json -------------------------------------------------------------------------------- /js-example/express/public/.well-known/agentics-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/.well-known/agentics-manifest.json -------------------------------------------------------------------------------- /js-example/express/public/.well-known/asyncapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/.well-known/asyncapi.json -------------------------------------------------------------------------------- /js-example/express/public/.well-known/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/.well-known/health.json -------------------------------------------------------------------------------- /js-example/express/public/.well-known/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/.well-known/models.json -------------------------------------------------------------------------------- /js-example/express/public/.well-known/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/.well-known/openapi.json -------------------------------------------------------------------------------- /js-example/express/public/.well-known/peers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/.well-known/peers.json -------------------------------------------------------------------------------- /js-example/express/public/.well-known/version-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/.well-known/version-control.json -------------------------------------------------------------------------------- /js-example/express/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/index.html -------------------------------------------------------------------------------- /js-example/express/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/robots.txt -------------------------------------------------------------------------------- /js-example/express/public/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/js-example/express/public/test.html -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/robots.txt -------------------------------------------------------------------------------- /wordpress-agent-specification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/README.md -------------------------------------------------------------------------------- /wordpress-agent-specification/agentics-agent-spec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/agentics-agent-spec.php -------------------------------------------------------------------------------- /wordpress-agent-specification/assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/assets/css/admin.css -------------------------------------------------------------------------------- /wordpress-agent-specification/assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/assets/js/admin.js -------------------------------------------------------------------------------- /wordpress-agent-specification/includes/class-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/includes/class-admin.php -------------------------------------------------------------------------------- /wordpress-agent-specification/includes/class-api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/includes/class-api.php -------------------------------------------------------------------------------- /wordpress-agent-specification/includes/class-router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/includes/class-router.php -------------------------------------------------------------------------------- /wordpress-agent-specification/includes/class-specs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/includes/class-specs.php -------------------------------------------------------------------------------- /wordpress-agent-specification/plugin-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/plugin-specification.md -------------------------------------------------------------------------------- /wordpress-agent-specification/templates/admin-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agenticsorg/agentic-robots-txt/HEAD/wordpress-agent-specification/templates/admin-page.php --------------------------------------------------------------------------------