本页用途
把本页作为 UAIX å½“å‰ REST 表é¢çš„æœºå™¨æŽ¥å£æ‰‹å†Œã€‚这里把 catalogã€discoveryã€schemaã€registryã€exampleã€validatorã€adoption kitã€OpenAPIã€mock exchange 与 conformance pack è·¯ç”±æ•´ç†æˆä¸€ä»½é€‚åˆäººå·¥é˜…读的公开å‚考。
何时使用
- 当实现方需è¦ç¡®è®¤ä¸å¸¦è¯è¨€å‰ç¼€çš„ REST åŸºç¡€è·¯å¾„ä¸Žå®Œæ•´è·¯ç”±æ¸…å•æ—¶ã€‚
- 当工具构建者需è¦èµ·æ¥è¯·æ±‚ã€æŽ¥å…¥åŒ…ä¸Ž OpenAPI æ–‡æ¡£ï¼Œè€Œä¸æ˜¯å呿ލæ–站点行为时。
- 当å¯åŠ¨è¯„å®¡éœ€è¦ç¡®è®¤å…¬å¼€æ–‡æ¡£ã€æœºå™¨æŽ¥å£è·¯ç”±ä¸ŽéªŒè¯è¯æ®æ˜¯å¦ä»ç„¶å¯¹é½åˆ°åŒä¸€å‘å¸ƒçŠ¶æ€æ—¶ã€‚
æµè§ˆå®žæ—¶è¡¨é¢çš„æœ€å¿«è·¯å¾„
- 先解æžå½“å‰çš„
/wp-json/uaix/v1/catalog路由。 - å†ä»Ž 模å¼ã€æ³¨å†Œè¡¨ 与 示例 ä¸å–出一个具体 schema 或 example。
- å½“ä½ éœ€è¦æœ€çŸã€å¯å¤ç”¨çš„æŽ¥å…¥åŒ…时,å†èŽ·å–å·²å‘布的 接入套件。
- 通过 验è¯å™¨ 或é¢å‘机器的
/wp-json/uaix/v1/validate路由æäº¤ä¸€æ¬¡éªŒè¯è¿è¡Œã€‚ - 当该è¿è¡Œç»“果需è¦éšå‘å¸ƒè¯æ®ä¸€èµ·ä¼ 递时,å†å¸¦ä¸Š 一致性包。
本页å‘布的内容
- 按路由组织的机器接å£å‚考。
- 用于å‘现ã€profile 查询ã€éªŒè¯ä¸ŽæŽ¥å…¥åŒ…获å–的起æ¥è¯·æ±‚示例。
- 当å‰å®žæ—¶ REST 表é¢çš„ OpenAPI 3.1 导出。
- 返回规范公开页é¢çš„直接链接,方便把机器接å£è®°å½•与书é¢è¯´æ˜Žå¯¹åº”èµ·æ¥ã€‚
路由级起æ¥è¯·æ±‚
å½“ä½ å¸Œæœ›ç›´æŽ¥å¤ç”¨ curlã€PowerShellã€Python 或 TypeScript 请求时,请使用下é¢çš„å…¬å¼€ç¤ºä¾‹ï¼Œè€Œä¸æ˜¯è‡ªå·±çŒœæµ‹è·¯ç”±è¡¨é¢ã€‚
起步片段使用实时公开路由,而不是私有 SDK 或未发布的辅助层。
curl -sS "http://uiax.org/wp-json/uaix/v1/adoption-kit" -o uai-adoption-kit.json
curl -sS "http://uiax.org/wp-json/uaix/v1/catalog"
curl -sS "http://uiax.org/wp-json/uaix/v1/examples/uai.intent.request.v1" -o example-record.json
curl -sS -X POST "http://uiax.org/wp-json/uaix/v1/validate" \
-H "Content-Type: application/json" \
-d @validate-request.json
curl -sS -X POST "http://uiax.org/wp-json/uaix/v1/mock-exchange" \
-H "Content-Type: application/json" \
-d @mock-exchange-request.json
Invoke-RestMethod -Uri "http://uiax.org/wp-json/uaix/v1/adoption-kit" | ConvertTo-Json -Depth 20 | Set-Content .\uai-adoption-kit.json
Invoke-RestMethod -Uri "http://uiax.org/wp-json/uaix/v1/catalog"
Invoke-RestMethod -Uri "http://uiax.org/wp-json/uaix/v1/examples/uai.intent.request.v1" | ConvertTo-Json -Depth 20 | Set-Content .\example-record.json
$message = (Get-Content -Raw .\example-record.json | ConvertFrom-Json).message
$body = @{ message = $message; format = "result" } | ConvertTo-Json -Depth 20
Invoke-RestMethod -Method Post -Uri "http://uiax.org/wp-json/uaix/v1/validate" -ContentType "application/json" -Body $body
$message = (Get-Content -Raw .\example-record.json | ConvertFrom-Json).message
$body = @{ scenario = "accepted-task"; format = "exchange"; message = $message } | ConvertTo-Json -Depth 20
Invoke-RestMethod -Method Post -Uri "http://uiax.org/wp-json/uaix/v1/mock-exchange" -ContentType "application/json" -Body $body
import json, urllib.request
kit = json.load(urllib.request.urlopen("http://uiax.org/wp-json/uaix/v1/adoption-kit"))
import json, urllib.request
catalog = json.load(urllib.request.urlopen("http://uiax.org/wp-json/uaix/v1/catalog"))
example_record = json.load(urllib.request.urlopen("http://uiax.org/wp-json/uaix/v1/examples/uai.intent.request.v1"))
message = example_record.get("message", example_record)
payload = json.dumps({"message": message, "format": "result"}).encode("utf-8")
request = urllib.request.Request("http://uiax.org/wp-json/uaix/v1/validate", data=payload, headers={"Content-Type": "application/json"}, method="POST")
result = json.load(urllib.request.urlopen(request))
payload = json.dumps({"scenario": "accepted-task", "format": "exchange", "message": message}).encode("utf-8")
request = urllib.request.Request("http://uiax.org/wp-json/uaix/v1/mock-exchange", data=payload, headers={"Content-Type": "application/json"}, method="POST")
exchange = json.load(urllib.request.urlopen(request))
const kit = await fetch("http://uiax.org/wp-json/uaix/v1/adoption-kit").then((response) => response.json());
const catalog = await fetch("http://uiax.org/wp-json/uaix/v1/catalog").then((response) => response.json());
const exampleRecord = await fetch("http://uiax.org/wp-json/uaix/v1/examples/uai.intent.request.v1").then((response) => response.json());
const message = exampleRecord.message ?? exampleRecord;
const result = await fetch("http://uiax.org/wp-json/uaix/v1/validate", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ message, format: "result" }),
}).then((response) => response.json());
const exchange = await fetch("http://uiax.org/wp-json/uaix/v1/mock-exchange", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ scenario: "accepted-task", format: "exchange", message }),
}).then((response) => response.json());
实时机器接å£å‚考
以下å‚考就是当å‰å…¬å¼€æ¥æºï¼Œé€‚åˆç”¨æ¥ç¡®è®¤è·¯ç”±å¸ƒå±€ã€èµ·æ¥è°ƒç”¨ä¸Ž OpenAPI 导出。
公开记录项
http://uiax.org/wp-json/uaix/v1
此处说明当前公开记录、证据路径和支持边界。
公开记录项
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
公开记录项
公开记录项
此处说明当前公开记录、证据路径和支持边界。
公开记录项
目录 -> 路线图 -> Adoption kit -> éªŒè¯ -> Mock
先解析 catalog,检查未来工作边界,获取已发布的接入包,运行一次验证器检查,然后调用实时 mock exchange,再提出支持或兼容性声明。
curl -sS http://uiax.org/wp-json/uaix/v1/catalog
curl -sS http://uiax.org/wp-json/uaix/v1/schemas/uai.intent.request.v1
curl -sS http://uiax.org/wp-json/uaix/v1/examples/uai.intent.request.v1
curl -sS http://uiax.org/wp-json/uaix/v1/adoption-kit -o uai-adoption-kit.json
curl -sS http://uiax.org/wp-json/uaix/v1/roadmap -o uai-1-roadmap.json
curl -sS -X POST http://uiax.org/wp-json/uaix/v1/validate -H "Content-Type: application/json" -d @validate-request.json
curl -sS -X POST http://uiax.org/wp-json/uaix/v1/mock-exchange -H "Content-Type: application/json" -d @mock-exchange-request.json
{
"message": {
"uai_version": "1.0",
"profile": "uai.intent.request.v1",
"message_id": "msg-2026-04-22-0001",
"source": {
"type": "agent",
"id": "agent.alpha",
"label": "Agent Alpha",
"uri": "https://agents.alpha.example/runtime",
"did": "did:web:agents.alpha.example",
"role": "requesting-agent",
"implementation": "alpha-runtime-2.4.1"
},
"target": {
"type": "service",
"id": "uaix.gateway",
"label": "UAIX 闸门way",
"uri": "https://uaix.org/wp-json/uaix/v1/discovery",
"did": "did:web:uaix.org",
"role": "public-record-gateway",
"implementation": "uaix-core-0.4.0"
},
"conversation": {
"conversation_id": "conv-2026-04-22-uaix-001",
"turn_id": "turn-001",
"traceparent": "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01",
"sequence": 1
},
"delivery": {
"mode": "async",
"priority": "interactive",
"expires_at": "2026-04-22T16:05:00Z",
"reply_requested": true,
"ack_required": true
},
"trust": {
"channel": "credentialed",
"auth_scheme": "did+vc",
"principal": "did:web:agents.alpha.example",
"credential_ref": "https://agents.alpha.example/credentials/uai-interop.json",
"signature_ref": "https://agents.alpha.example/signatures/msg-2026-04-22-0001.jws",
"replay_window_id": "rw-2026-04-22-0001"
},
"body": {
"intent": "resolve-profile",
"subject": "uai.task.status.v1",
"requested_profile": "uai.task.status.v1",
"parameters": {
"include_schema": true,
"include_example": true,
"include_field_registry": true
},
"constraints": [
"public-record-only",
"trace-linked",
"validator-ready"
],
"response_profile": "uai.intent.response.v1"
},
"provenance": {
"trace_id": "trace-7f3a2d",
"parent_trace_id": "trace-root-uaix-2026",
"issued_at": "2026-04-22T16:00:00Z",
"log_ref": "urn:uaix:log:2026:0001",
"agent_id": "agent.alpha",
"model_id": "model.alpha.reasoner-2",
"confidence": 0.98,
"lineage": [
{
"stage": "request-composition",
"actor_id": "agent.alpha",
"model_id": "model.alpha.reasoner-2",
"note": "Requested the async task-status profile and matching field registry."
}
]
},
"integrity": {
"version": 2,
"algorithm": "sha256",
"canonicalization": "jcs",
"checksum": "sha256:dd8a9d16c9226cc9d1f4888a4d2bbcbf06b5b4b8"
},
"extensions": [
{
"namespace": "urn:uaix:ext:delivery",
"purpose": "Explicit async request handling and expiry semantics.",
"critical": false
}
]
},
"normalization_mode": "keyed-json",
"format": "result"
}
{
"valid": true,
"checked_at": "2026-04-26T20:09:56+00:00",
"profile": "uai.intent.request.v1",
"current_release": "UAI-1",
"uai_version": "1.0",
"schema_route_url": "http://uiax.org/wp-json/uaix/v1/schemas/uai.intent.request.v1",
"registry_route_url": "http://uiax.org/wp-json/uaix/v1/registry/uai.intent.request.v1",
"issue_count": 0,
"error_count": 0,
"warning_count": 0,
"errors": [],
"warnings": [],
"status": "pass",
"normalization": {
"mode": "keyed-json",
"status": "current",
"supported": true,
"input_shape": "json-object",
"normalized": false,
"registry_release": "UAI-1",
"registry_release_date": "2026-04-22",
"field_registry_url": "http://uiax.org/wp-json/uaix/v1/field-registry",
"canonicalization": "jcs-compatible-sorted-json",
"canonical_hash": "sha256:ea001827f8204b5282544b0306c596aca64923bd76cc7ed77f252c2b2084062b",
"byte_count": 2112
},
"conformance_record": {
"uai_version": "1.0",
"profile": "uai.conformance.result.v1",
"message_id": "msg-20260426T200956Z-d92046f3e582",
"source": {
"type": "service",
"id": "uaix.validator",
"label": "UAIX 验è¯å™¨",
"uri": "http://uiax.org/en-us/tools/validator/",
"did": "did:web:uaix.org",
"role": "conformance-checker",
"implementation": "uaix-core-0.9.11"
},
"target": {
"type": "message",
"id": "msg-2026-04-22-0001",
"label": "uai.intent.request.v1",
"uri": "http://uiax.org/wp-json/uaix/v1/examples/uai.intent.request.v1",
"did": "did:web:uaix.org",
"role": "checked-record",
"implementation": "uai.intent.request.v1"
},
"conversation": {
"conversation_id": "conv-2026-04-22-uaix-001",
"turn_id": "turn-validator-d92046f3e582",
"parent_message_id": "msg-2026-04-22-0001",
"sequence": 2,
"traceparent": "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01"
},
"delivery": {
"mode": "sync",
"priority": "routine",
"expires_at": "2026-05-03T20:09:56+00:00",
"reply_requested": false,
"ack_required": false
},
"trust": {
"channel": "signed-envelope",
"auth_scheme": "validator-record",
"principal": "did:web:uaix.org",
"credential_ref": "http://uiax.org/.well-known/uai.json",
"signature_ref": "http://uiax.org/en-us/tools/validator/",
"replay_window_id": "rw-conformance-20260426-d92046f3e582"
},
"body": {
"status": "pass",
"checked_profile": "uai.intent.request.v1",
"issues": [],
"summary": {
"error_count": 0,
"warning_count": 0,
"checked_at": "2026-04-26T20:09:56+00:00"
},
"artifacts": {
"catalog_url": "http://uiax.org/wp-json/uaix/v1/catalog",
"schema_url": "http://uiax.org/wp-json/uaix/v1/schemas/uai.intent.request.v1",
"registry_url": "http://uiax.org/wp-json/uaix/v1/registry/uai.intent.request.v1",
"example_url": "http://uiax.org/wp-json/uaix/v1/examples/uai.intent.request.v1",
"field_registry_url": "http://uiax.org/wp-json/uaix/v1/field-registry",
"transport_bindings_url": "http://uiax.org/wp-json/uaix/v1/transport-bindings",
"trust_channels_url": "http://uiax.org/wp-json/uaix/v1/trust-channels",
"conformance_levels_url": "http://uiax.org/wp-json/uaix/v1/conformance-levels",
"error_registry_url": "http://uiax.org/wp-json/uaix/v1/error-registry",
"validate_url": "http://uiax.org/wp-json/uaix/v1/validate"
},
"target_message_ref": "msg-2026-04-22-0001"
},
"provenance": {
"trace_id": "trace-7f3a2d",
"issued_at": "2026-04-26T20:09:56+00:00",
"log_ref": "urn:uaix:log:2026:0001",
"agent_id": "uaix.validator",
"model_id": "model.uaix.validator-1",
"confidence": 1,
"lineage": [
{
"stage": "conformance-export",
"actor_id": "uaix.validator",
"model_id": "model.uaix.validator-1",
"note": "ç”Ÿæˆæ—¶é—´ a validator-backed evidence record for the checked message using keyed-json normalization."
}
],
"parent_trace_id": "trace-7f3a2d"
},
"integrity": {
"version": 2,
"algorithm": "sha256",
"canonicalization": "jcs",
"checksum": "sha256:fb31e0116d019906346c03551112ae98ff39c9dc874b4f199629296b3888d9e3"
},
"extensions": [
{
"namespace": "urn:uaix:ext:evidence",
"purpose": "Links conformance output to the exact 公开制品 used during validation.",
"critical": false
}
]
},
"download_filename": "msg-20260426T200956Z-d92046f3e582.json"
}
{
"adoption_kit_url": "http://uiax.org/wp-json/uaix/v1/adoption-kit",
"download_url": "http://uiax.org/wp-json/uaix/v1/adoption-kit?download=1",
"current_release": "UAI-1",
"starter_files": 7,
"language_starters": 4,
"first_packet_profile": "uai.intent.request.v1",
"use": "Fetch the adoption_kit_url for the complete starter files and proof artifacts."
}
{
"scenario": "accepted-task",
"format": "exchange",
"message": {
"uai_version": "1.0",
"profile": "uai.intent.request.v1",
"message_id": "msg-2026-04-22-0001",
"source": {
"type": "agent",
"id": "agent.alpha",
"label": "Agent Alpha",
"uri": "https://agents.alpha.example/runtime",
"did": "did:web:agents.alpha.example",
"role": "requesting-agent",
"implementation": "alpha-runtime-2.4.1"
},
"target": {
"type": "service",
"id": "uaix.gateway",
"label": "UAIX 闸门way",
"uri": "https://uaix.org/wp-json/uaix/v1/discovery",
"did": "did:web:uaix.org",
"role": "public-record-gateway",
"implementation": "uaix-core-0.4.0"
},
"conversation": {
"conversation_id": "conv-2026-04-22-uaix-001",
"turn_id": "turn-001",
"traceparent": "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01",
"sequence": 1
},
"delivery": {
"mode": "async",
"priority": "interactive",
"expires_at": "2026-04-22T16:05:00Z",
"reply_requested": true,
"ack_required": true
},
"trust": {
"channel": "credentialed",
"auth_scheme": "did+vc",
"principal": "did:web:agents.alpha.example",
"credential_ref": "https://agents.alpha.example/credentials/uai-interop.json",
"signature_ref": "https://agents.alpha.example/signatures/msg-2026-04-22-0001.jws",
"replay_window_id": "rw-2026-04-22-0001"
},
"body": {
"intent": "resolve-profile",
"subject": "uai.task.status.v1",
"requested_profile": "uai.task.status.v1",
"parameters": {
"include_schema": true,
"include_example": true,
"include_field_registry": true
},
"constraints": [
"public-record-only",
"trace-linked",
"validator-ready"
],
"response_profile": "uai.intent.response.v1"
},
"provenance": {
"trace_id": "trace-7f3a2d",
"parent_trace_id": "trace-root-uaix-2026",
"issued_at": "2026-04-22T16:00:00Z",
"log_ref": "urn:uaix:log:2026:0001",
"agent_id": "agent.alpha",
"model_id": "model.alpha.reasoner-2",
"confidence": 0.98,
"lineage": [
{
"stage": "request-composition",
"actor_id": "agent.alpha",
"model_id": "model.alpha.reasoner-2",
"note": "Requested the async task-status profile and matching field registry."
}
]
},
"integrity": {
"version": 2,
"algorithm": "sha256",
"canonicalization": "jcs",
"checksum": "sha256:dd8a9d16c9226cc9d1f4888a4d2bbcbf06b5b4b8"
},
"extensions": [
{
"namespace": "urn:uaix:ext:delivery",
"purpose": "Explicit async request handling and expiry semantics.",
"critical": false
}
]
}
}
{
"kind": "uaix.mock.exchange.result.v1",
"generated_at": "2026-04-26T20:09:56+00:00",
"route_url": "http://uiax.org/wp-json/uaix/v1/mock-exchange",
"scenario": "accepted-task",
"http_status": 202,
"summary": "The reference surface accepted the request and returned a conforming async handoff using `uai.intent.response.v1`.",
"request": {
"message": {
"uai_version": "1.0",
"profile": "uai.intent.request.v1",
"message_id": "msg-2026-04-22-0001",
"source": {
"type": "agent",
"id": "agent.alpha",
"label": "Agent Alpha",
"uri": "https://agents.alpha.example/runtime",
"did": "did:web:agents.alpha.example",
"role": "requesting-agent",
"implementation": "alpha-runtime-2.4.1"
},
"target": {
"type": "service",
"id": "uaix.gateway",
"label": "UAIX 闸门way",
"uri": "https://uaix.org/wp-json/uaix/v1/discovery",
"did": "did:web:uaix.org",
"role": "public-record-gateway",
"implementation": "uaix-core-0.4.0"
},
"conversation": {
"conversation_id": "conv-2026-04-22-uaix-001",
"turn_id": "turn-001",
"traceparent": "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01",
"sequence": 1
},
"delivery": {
"mode": "async",
"priority": "interactive",
"expires_at": "2026-04-22T16:05:00Z",
"reply_requested": true,
"ack_required": true
},
"trust": {
"channel": "credentialed",
"auth_scheme": "did+vc",
"principal": "did:web:agents.alpha.example",
"credential_ref": "https://agents.alpha.example/credentials/uai-interop.json",
"signature_ref": "https://agents.alpha.example/signatures/msg-2026-04-22-0001.jws",
"replay_window_id": "rw-2026-04-22-0001"
},
"body": {
"intent": "resolve-profile",
"subject": "uai.task.status.v1",
"requested_profile": "uai.task.status.v1",
"parameters": {
"include_schema": true,
"include_example": true,
"include_field_registry": true
},
"constraints": [
"public-record-only",
"trace-linked",
"validator-ready"
],
"response_profile": "uai.intent.response.v1"
},
"provenance": {
"trace_id": "trace-7f3a2d",
"parent_trace_id": "trace-root-uaix-2026",
"issued_at": "2026-04-22T16:00:00Z",
"log_ref": "urn:uaix:log:2026:0001",
"agent_id": "agent.alpha",
"model_id": "model.alpha.reasoner-2",
"confidence": 0.98,
"lineage": [
{
"stage": "request-composition",
"actor_id": "agent.alpha",
"model_id": "model.alpha.reasoner-2",
"note": "Requested the async task-status profile and matching field registry."
}
]
},
"integrity": {
"version": 2,
"algorithm": "sha256",
"canonicalization": "jcs",
"checksum": "sha256:dd8a9d16c9226cc9d1f4888a4d2bbcbf06b5b4b8"
},
"extensions": [
{
"namespace": "urn:uaix:ext:delivery",
"purpose": "Explicit async request handling and expiry semantics.",
"critical": false
}
]
},
"validation": {
"valid": true,
"checked_at": "2026-04-26T20:09:56+00:00",
"profile": "uai.intent.request.v1",
"current_release": "UAI-1",
"uai_version": "1.0",
"schema_route_url": "http://uiax.org/wp-json/uaix/v1/schemas/uai.intent.request.v1",
"registry_route_url": "http://uiax.org/wp-json/uaix/v1/registry/uai.intent.request.v1",
"issue_count": 0,
"error_count": 0,
"warning_count": 0,
"errors": [],
"warnings": [],
"status": "pass",
"normalization": {
"mode": "keyed-json",
"status": "current",
"supported": true,
"input_shape": "json-object",
"normalized": false,
"registry_release": "UAI-1",
"registry_release_date": "2026-04-22",
"field_registry_url": "http://uiax.org/wp-json/uaix/v1/field-registry",
"canonicalization": "jcs-compatible-sorted-json",
"canonical_hash": "sha256:ea001827f8204b5282544b0306c596aca64923bd76cc7ed77f252c2b2084062b",
"byte_count": 2112
},
"conformance_record": {
"uai_version": "1.0",
"profile": "uai.conformance.result.v1",
"message_id": "msg-20260426T200956Z-d92046f3e582",
"source": {
"type": "service",
"id": "uaix.validator",
"label": "UAIX 验è¯å™¨",
"uri": "http://uiax.org/en-us/tools/validator/",
"did": "did:web:uaix.org",
"role": "conformance-checker",
"implementation": "uaix-core-0.9.11"
},
"target": {
"type": "message",
"id": "msg-2026-04-22-0001",
"label": "uai.intent.request.v1",
"uri": "http://uiax.org/wp-json/uaix/v1/examples/uai.intent.request.v1",
"did": "did:web:uaix.org",
"role": "checked-record",
"implementation": "uai.intent.request.v1"
},
"conversation": {
"conversation_id": "conv-2026-04-22-uaix-001",
"turn_id": "turn-validator-d92046f3e582",
"parent_message_id": "msg-2026-04-22-0001",
"sequence": 2,
"traceparent": "00-4bf92f3577b34da6a3ce929d0e0e4736-00f067aa0ba902b7-01"
},
"delivery": {
"mode": "sync",
"priority": "routine",
"expires_at": "2026-05-03T20:09:56+00:00",
"reply_requested": false,
"ack_required": false
},
"trust": {
"channel": "signed-envelope",
"auth_scheme": "validator-record",
"principal": "did:web:uaix.org",
"credential_ref": "http://uiax.org/.well-known/uai.json",
"signature_ref": "http://uiax.org/en-us/tools/validator/",
"replay_window_id": "rw-conformance-20260426-d92046f3e582"
},
"body": {
"status": "pass",
"checked_profile": "uai.intent.request.v1",
"issues": [],
"summary": {
"error_count": 0,
"warning_count": 0,
"checked_at": "2026-04-26T20:09:56+00:00"
},
"artifacts": {
"catalog_url": "http://uiax.org/wp-json/uaix/v1/catalog",
"schema_url": "http://uiax.org/wp-json/uaix/v1/schemas/uai.intent.request.v1",
"registry_url": "http://uiax.org/wp-json/uaix/v1/registry/uai.intent.request.v1",
"example_url": "http://uiax.org/wp-json/uaix/v1/examples/uai.intent.request.v1",
"field_registry_url": "http://uiax.org/wp-json/uaix/v1/field-registry",
"transport_bindings_url": "http://uiax.org/wp-json/uaix/v1/transport-bindings",
"trust_channels_url": "http://uiax.org/wp-json/uaix/v1/trust-channels",
"conformance_levels_url": "http://uiax.org/wp-json/uaix/v1/conformance-levels",
"error_registry_url": "http://uiax.org/wp-json/uaix/v1/error-registry",
"validate_url": "http://uiax.org/wp-json/uaix/v1/validate"
},
"target_message_ref": "msg-2026-04-22-0001"
},
"provenance": {
"trace_id": "trace-7f3a2d",
"issued_at": "2026-04-26T20:09:56+00:00",
"log_ref": "urn:uaix:log:2026:0001",
"agent_id": "uaix.validator",
"model_id": "model.uaix.validator-1",
"confidence": 1,
"lineage": [
{
"stage": "conformance-export",
"actor_id": "uaix.validator",
"model_id": "model.uaix.validator-1",
"note": "ç”Ÿæˆæ—¶é—´ a validator-backed evidence record for the checked message using keyed-json normalization."
}
],
"parent_trace_id": "trace-7f3a2d"
},
"integrity": {
"version": 2,
"algorithm": "sha256",
"canonicalization": "jcs",
"checksum": "sha256:fb31e0116d019906346c03551112ae98ff39c9dc874b4f199629296b3888d9e3"
},
"extensions": [
{
"namespace": "urn:uaix:ext:evidence",
"purpose": "Links conformance output to the exact 公开制品 used during validation.",
"critical": false
}
]
},
"download_filename": "msg-20260426T200956Z-d92046f3e582.json"
}
},
"response_profile": "uai.intent.response.v1",
"response_message": {
"uai_version": "1.0",
"profile": "uai.intent.response.v1",
"message_id": "msg-mock-accepted-529a0c03c1bb",
"source": {
"type": "service",
"id": "uaix.mock.exchange",
"label": "UAIX 模拟交æ¢",
"uri": "http://uiax.org/wp-json/uaix/v1/mock-exchange",
"did": "did:web:uaix.org",
"role": "reference-server",
"implementation": "uaix-core-0.9.11"
},
"target": {
"type": "agent",
"id": "agent.alpha",
"label": "Agent Alpha",
"uri": "https://agents.alpha.example/runtime",
"did": "did:web:agents.alpha.example",
"role": "requesting-agent",
"implementation": "alpha-runtime-2.4.1"
},
"conversation": {
"conversation_id": "conv-2026-04-22-uaix-001",
"turn_id": "turn-mock-529a0c03c1bb",
"parent_message_id": "msg-2026-04-22-0001",
"traceparent": "00-4bf92f3577b34da6a3ce929d0e0e4736-55e4155501e108df-01",
"sequence": 2
},
"delivery": {
"mode": "async",
"priority": "interactive",
"expires_at": "2026-04-22T16:05:00+00:00",
"reply_requested": false,
"ack_required": true,
"task_ref": "task-mock-529a0c03c1bb"
},
"trust": {
"channel": "signed-envelope",
"auth_scheme": "jws",
"principal": "did:web:uaix.org",
"credential_ref": "http://uiax.org/.well-known/uai.json",
"signature_ref": "http://uiax.org/wp-json/uaix/v1/mock-exchange#signature-529a0c03c1bb",
"replay_window_id": "rw-mock-529a0c03c1bb"
},
"body": {
"status": "accepted",
"subject": "uai.task.status.v1",
"request_message_id": "msg-2026-04-22-0001",
"result": {
"task_id": "task-mock-529a0c03c1bb",
"status_profile": "uai.task.status.v1",
"status_example_url": "http://uiax.org/wp-json/uaix/v1/examples/uai.task.status.v1",
"response_profile": "uai.intent.response.v1",
"follow_up_scenarios": [
"completed-response",
"typed-error"
],
"field_registry_url": "http://uiax.org/wp-json/uaix/v1/field-registry",
"mock_exchange_url": "http://uiax.org/wp-json/uaix/v1/mock-exchange"
},
"notices": [
"accepted-task-started",
"use-task-status-example-for-shape-checks",
"reference-surface-response"
],
"task_ref": "task-mock-529a0c03c1bb"
},
"provenance": {
"trace_id": "trace-7f3a2d",
"issued_at": "2026-04-22T16:00:03+00:00",
"log_ref": "urn:uaix:log:mock:20260426:529a0c03c1bb",
"agent_id": "uaix.mock.exchange",
"model_id": "model.uaix.mock.exchange-1",
"confidence": 1,
"lineage": [
{
"stage": "mock-acceptance",
"actor_id": "uaix.mock.exchange",
"model_id": "model.uaix.mock.exchange-1",
"note": "Accepted the request and published a deterministic async handoff from the UAIX mock exchange surface."
}
],
"parent_trace_id": "trace-7f3a2d"
},
"integrity": {
"version": 2,
"algorithm": "sha256",
"canonicalization": "jcs",
"checksum": "sha256:240f1ecaa3662482c7d9a62199db94ce09f206d80a1e657a3e039aad6328e066"
},
"extensions": [
{
"namespace": "urn:uaix:ext:mock-exchange",
"purpose": "Marks this envelope as a deterministic response from the UAIX live reference surface for scenario `accepted-task`.",
"critical": false
}
]
},
"response_validation": {
"valid": true,
"checked_at": "2026-04-26T20:09:56+00:00",
"profile": "uai.intent.response.v1",
"current_release": "UAI-1",
"uai_version": "1.0",
"schema_route_url": "http://uiax.org/wp-json/uaix/v1/schemas/uai.intent.response.v1",
"registry_route_url": "http://uiax.org/wp-json/uaix/v1/registry/uai.intent.response.v1",
"issue_count": 0,
"error_count": 0,
"warning_count": 0,
"errors": [],
"warnings": [],
"status": "pass",
"normalization": {
"mode": "keyed-json",
"status": "current",
"supported": true,
"input_shape": "json-object",
"normalized": false,
"registry_release": "UAI-1",
"registry_release_date": "2026-04-22",
"field_registry_url": "http://uiax.org/wp-json/uaix/v1/field-registry",
"canonicalization": "jcs-compatible-sorted-json",
"canonical_hash": "sha256:90acf6cfc9e1527bf23eddde96c80128d9153a8c79af30055eb19fdaf89c2b62",
"byte_count": 2702
},
"conformance_record": {
"uai_version": "1.0",
"profile": "uai.conformance.result.v1",
"message_id": "msg-20260426T200956Z-05d6598eebc6",
"source": {
"type": "service",
"id": "uaix.validator",
"label": "UAIX 验è¯å™¨",
"uri": "http://uiax.org/en-us/tools/validator/",
"did": "did:web:uaix.org",
"role": "conformance-checker",
"implementation": "uaix-core-0.9.11"
},
"target": {
"type": "message",
"id": "msg-mock-accepted-529a0c03c1bb",
"label": "uai.intent.response.v1",
"uri": "http://uiax.org/wp-json/uaix/v1/examples/uai.intent.response.v1",
"did": "did:web:uaix.org",
"role": "checked-record",
"implementation": "uai.intent.response.v1"
},
"conversation": {
"conversation_id": "conv-2026-04-22-uaix-001",
"turn_id": "turn-validator-05d6598eebc6",
"parent_message_id": "msg-mock-accepted-529a0c03c1bb",
"sequence": 3,
"traceparent": "00-4bf92f3577b34da6a3ce929d0e0e4736-55e4155501e108df-01"
},
"delivery": {
"mode": "sync",
"priority": "routine",
"expires_at": "2026-05-03T20:09:56+00:00",
"reply_requested": false,
"ack_required": false
},
"trust": {
"channel": "signed-envelope",
"auth_scheme": "validator-record",
"principal": "did:web:uaix.org",
"credential_ref": "http://uiax.org/.well-known/uai.json",
"signature_ref": "http://uiax.org/en-us/tools/validator/",
"replay_window_id": "rw-conformance-20260426-05d6598eebc6"
},
"body": {
"status": "pass",
"checked_profile": "uai.intent.response.v1",
"issues": [],
"summary": {
"error_count": 0,
"warning_count": 0,
"checked_at": "2026-04-26T20:09:56+00:00"
},
"artifacts": {
"catalog_url": "http://uiax.org/wp-json/uaix/v1/catalog",
"schema_url": "http://uiax.org/wp-json/uaix/v1/schemas/uai.intent.response.v1",
"registry_url": "http://uiax.org/wp-json/uaix/v1/registry/uai.intent.response.v1",
"example_url": "http://uiax.org/wp-json/uaix/v1/examples/uai.intent.response.v1",
"field_registry_url": "http://uiax.org/wp-json/uaix/v1/field-registry",
"transport_bindings_url": "http://uiax.org/wp-json/uaix/v1/transport-bindings",
"trust_channels_url": "http://uiax.org/wp-json/uaix/v1/trust-channels",
"conformance_levels_url": "http://uiax.org/wp-json/uaix/v1/conformance-levels",
"error_registry_url": "http://uiax.org/wp-json/uaix/v1/error-registry",
"validate_url": "http://uiax.org/wp-json/uaix/v1/validate"
},
"target_message_ref": "msg-mock-accepted-529a0c03c1bb"
},
"provenance": {
"trace_id": "trace-7f3a2d",
"issued_at": "2026-04-26T20:09:56+00:00",
"log_ref": "urn:uaix:log:mock:20260426:529a0c03c1bb",
"agent_id": "uaix.validator",
"model_id": "model.uaix.validator-1",
"confidence": 1,
"lineage": [
{
"stage": "conformance-export",
"actor_id": "uaix.validator",
"model_id": "model.uaix.validator-1",
"note": "ç”Ÿæˆæ—¶é—´ a validator-backed evidence record for the checked message using keyed-json normalization."
}
],
"parent_trace_id": "trace-7f3a2d"
},
"integrity": {
"version": 2,
"algorithm": "sha256",
"canonicalization": "jcs",
"checksum": "sha256:fdc11523fdef9866b9e3860282494f2b7c283c8b1bc651f99966f791a5c1c021"
},
"extensions": [
{
"namespace": "urn:uaix:ext:evidence",
"purpose": "Links conformance output to the exact 公开制品 used during validation.",
"critical": false
}
]
},
"download_filename": "msg-20260426T200956Z-05d6598eebc6.json"
},
"links": {
"catalog_url": "http://uiax.org/wp-json/uaix/v1/catalog",
"validate_url": "http://uiax.org/wp-json/uaix/v1/validate",
"field_registry_url": "http://uiax.org/wp-json/uaix/v1/field-registry",
"response_example_url": "http://uiax.org/wp-json/uaix/v1/examples/uai.intent.response.v1",
"task_status_example_url": "http://uiax.org/wp-json/uaix/v1/examples/uai.task.status.v1"
}
}
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
在复述未来支持声明之前,先解析当前、下一步、已计划和研究轨道的路线图边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
此处说明当前公开记录、证据路径和支持边界。
X-Content-Type-Options
nosniff
防止在公共标准页面和机器可读路由上发生内容类型嗅探。
应用于: 公开 HTML、JSON、XML 以及类似的 WordPress 渲染响应。
Referrer-Policy
strict-origin-when-cross-origin
在保留同源调试上下文的同时,进一步收窄跨源 referrer 泄露。
应用于: 可能触发出站请求的公开文档与 API 响应。
Permissions-Policy
accelerometer=(), browsing-topics=(), camera=(), geolocation=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), usb=()
明确声明启动表面不依赖特权浏览器能力,也不依赖基于 Topics 的广告功能。
应用于: 公开 WordPress 渲染页面与面向机器的路由。
X-Frame-Options
SAMEORIGIN
在保留同源编辑与预览流程的同时,阻止第三方框架嵌入。
应用于: 公开 WordPress 渲染页面与 JSON 响应。
Content-Security-Policy
frame-ancestors 'self'
在现代浏览器中明确框架边界,而不提前声称已经具备更广泛的全站 CSP。
应用于: 公开 WordPress 渲染页面与面向机器的路由。
当前已生效
此处说明当前公开记录、证据路径和支持边界。
- X-Pingback 已从公开响应中移除。
- 如果启动环境在 WordPress 执行后仍附加主机级或代理级版本头,这些头仍需要在服务器侧抑制。
- 这些响应头现在会随公开 WordPress 渲染的 HTML 与 REST 响应一同交付,而不再只是路线图文案中的计划。
部署缺口
此处说明当前公开记录、证据路径和支持边界。
- 由于本地 Studio 环境运行在明文 HTTP 上,HTTPS 重定向和 HSTS 仍应由启动主机或 CDN 边缘层负责。
- 任何直接提供的静态根文件都应在服务器或边缘层检查,以确保其响应头与 WordPress 渲染的信任姿态保持一致。
- 凡是部署栈在 WordPress 之外附加的主机级版本暴露,例如代理或 PHP 签名头,都应在相应层面被抑制。
- 更广泛的 CSP 指令应在面向生产的资源与嵌入行为相对于启动主机验证通过之后再添加。
范围边界: 当前响应头层适用于公开的 WordPress 前端与 REST 响应,其中包括验证器以及面向机器的评审路由。
下一æ¥
å¦‚æžœä¸‹ä¸€æ¥æ˜¯èŽ·å–å·²å‘å¸ƒçš„é¦–æ¬¡è¯æ˜ŽåŒ…,请继ç»å‰å¾€ æŽ¥å…¥å¥—ä»¶ï¼›å¦‚æžœéœ€è¦æ›´å¹¿çš„å¯å¤ç”¨ JSON è¯æ®åŒ…,请转到 ä¸€è‡´æ€§åŒ…ï¼›å¦‚æžœä¸‹ä¸€æ¥æ˜¯æ‰§è¡Œæˆ–å¯¼å‡ºä¸€æ¬¡å…·ä½“éªŒè¯æ£€æŸ¥ï¼Œè¯·è¿”回 验è¯å™¨ã€‚