Files
codex/codex-rs/app-server-protocol/schema/json/v2/BrowserSessionUpdatedNotification.json
Liang-Ting Jiang ee865bcddc Wire Atlas browser bridge into app-server
Add the AgentLib js_repl bridge, persist browser replay items in thread history, and surface remote browser artifacts through turn/start.

Co-authored-by: Codex <noreply@openai.com>
2026-03-24 21:12:20 +00:00

103 lines
1.9 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"BrowserSessionArtifacts": {
"properties": {
"replayFrameCount": {
"format": "uint32",
"minimum": 0.0,
"type": [
"integer",
"null"
]
},
"replayFrameDurationMs": {
"format": "uint32",
"minimum": 0.0,
"type": [
"integer",
"null"
]
},
"replayGifImageUrl": {
"type": [
"string",
"null"
]
},
"screenshotImageUrl": {
"type": [
"string",
"null"
]
}
},
"type": "object"
},
"BrowserSessionState": {
"properties": {
"selectedTabId": {
"type": "string"
},
"tabs": {
"items": {
"$ref": "#/definitions/BrowserTabState"
},
"type": "array"
}
},
"required": [
"selectedTabId",
"tabs"
],
"type": "object"
},
"BrowserTabState": {
"properties": {
"id": {
"type": "string"
},
"selected": {
"type": "boolean"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"id",
"selected",
"title",
"url"
],
"type": "object"
}
},
"properties": {
"artifacts": {
"anyOf": [
{
"$ref": "#/definitions/BrowserSessionArtifacts"
},
{
"type": "null"
}
]
},
"browserSessionId": {
"type": "string"
},
"browserState": {
"$ref": "#/definitions/BrowserSessionState"
}
},
"required": [
"browserSessionId",
"browserState"
],
"title": "BrowserSessionUpdatedNotification",
"type": "object"
}