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>
This commit is contained in:
Liang-Ting Jiang
2026-03-24 21:12:20 +00:00
parent ba0d3b467b
commit ee865bcddc
41 changed files with 5135 additions and 48 deletions

View File

@@ -1,6 +1,39 @@
{
"$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": {
@@ -44,6 +77,16 @@
}
},
"properties": {
"artifacts": {
"anyOf": [
{
"$ref": "#/definitions/BrowserSessionArtifacts"
},
{
"type": "null"
}
]
},
"browserSessionId": {
"type": "string"
},