Spaces:
Running
auth.md
You are an agent. This site is a static, public, read-only deployment of the PRISM benchmark. Agentic registration is not supported. There is no user account, no API key, and no token to issue.
This file tells you what is available, what is not, and where to look next.
What this site is
PRISM (Peer Review Intelligence via Structured Multi-dimensional assessment) is a benchmark for evaluating LLM-generated and human peer reviews of machine learning papers. The site publishes:
- The paper (read-only HTML at
/). - An interactive demo explorer (read-only HTML at
/demo) backed by static JSON fixtures underdata_demo/. - A machine-readable capability descriptor at
/.well-known/agent-card.json. - A resource catalog at
/.well-known/api-catalog. - A documentation-only DNS-AID zone file at
/.well-known/dns-aid.zone.
Current state
This site does not support agentic registration. There is no /agent/identity
endpoint, no token endpoint, no revocation endpoint, and no claim ceremony.
Every URL on the site is publicly fetchable without credentials.
Do not attempt to register. Do not poll for a token. Do not expect a
WWW-Authenticate: Bearer resource_metadata="..." header on a 401 — the site
does not return 401, because there is nothing to gate.
What you can do
- Read the capability descriptor.
GET /.well-known/agent-card.jsonreturns the full A2A agent-card with the four benchmark capabilities (constructiveness, flaws, depth, novelty), their inputs, metrics, and links to the demo. This is the authoritative description of what the site offers. - Browse the resource catalog.
GET /.well-known/api-catalogreturns a JSON-LDDataCatalogof the public resources. - Read the documentation-only DNS-AID zone file.
GET /.well-known/dns-aid.zonereturns the zone file the maintainers intend to publish at a custom domain once one is registered. It is not authoritative on the currentprism-benchmark.github.iohost because the project does not own thegithub.iozone — the in-file comment block explains the migration path. - Run the demo.
GET /demoreturns the interactive read-only demo page. The JSON fixtures it loads are public. - Cite the paper. The arXiv link is in the capability descriptor.
Discovery (for completeness)
The standard auth.md discovery documents are published but intentionally empty, so an agent deciding whether to register gets a clean negative answer:
GET /.well-known/oauth-protected-resource— RFC 9728 Protected Resource Metadata with an emptyauthorization_serversarray, signalling that none of the public resources require authorization.GET /.well-known/oauth-authorization-server— RFC 8414 Authorization Server Metadata with anagent_authblock whoseidentity_types_supportedandcredential_types_supportedarrays are empty, signalling that no registration surface is offered.register_uri,claim_url, and therevocation_endpointare explicitlynull(not applicable).
Errors you may encounter
| Status | Meaning | What to do |
|---|---|---|
| Any non-2xx on a public resource | The page or fixture is missing or has moved. | Re-read the capability descriptor; do not retry the same URL. |
404 on /.well-known/oauth-authorization-server |
The AS metadata is intentionally not published in some deployments (see above). | Treat the site as not offering agentic registration. |