Add app-server environment registry for exec-server routing

Expose app-server environment register/list RPCs, persist environment selection through thread lifecycle flows, and cover the new routing behavior with app-server tests.

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
starr-openai
2026-04-14 12:54:55 -07:00
parent f3cbe3d385
commit a2e6e19c1e
71 changed files with 1591 additions and 13 deletions

View File

@@ -0,0 +1,35 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"EnvironmentInfo": {
"properties": {
"execServerUrl": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}
},
"properties": {
"data": {
"items": {
"$ref": "#/definitions/EnvironmentInfo"
},
"type": "array"
}
},
"required": [
"data"
],
"title": "EnvironmentListResponse",
"type": "object"
}