@bluefly/openstandardagents 0.4.9 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.version.json +3 -3
- package/CHANGELOG.md +8 -8
- package/README.md +68 -58
- package/bin/postinstall +0 -0
- package/dist/.version.json +3 -3
- package/dist/adapters/claude-code/adapter.js +2 -2
- package/dist/adapters/docker/generators.js +19 -19
- package/dist/adapters/drupal/generator.js +76 -76
- package/dist/adapters/openai-agents/adapter.js +2 -2
- package/dist/cli/schema-driven/schema-loader.js +5 -5
- package/dist/mcp-server/__tests__/mcp-server.spec.js +20 -11
- package/dist/mcp-server/index.js +0 -0
- package/dist/package.json +24 -11
- package/dist/services/export/langchain/langchain-exporter.js +2 -2
- package/dist/services/export/langchain/memory-generator.js +2 -2
- package/dist/services/export/testing/test-generator.js +1 -1
- package/dist/services/taxonomy-service.d.ts +3 -3
- package/dist/skills/test-skill/package.json +1 -1
- package/dist/spec/extensions/role-manifest.md +188 -0
- package/dist/spec/v0.4/extensions/mcp/README.md +1 -1
- package/dist/spec/v0.5/agent.schema.json +2 -1
- package/dist/spec/v0.5/extensions/mcp/README.md +1 -1
- package/dist/spec/v0.5/role.schema.json +268 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.js +2 -0
- package/dist/types/role.d.ts +126 -0
- package/dist/types/role.js +38 -0
- package/dist/validation/validator.js +1 -1
- package/examples/agents/01-customer-support-bot/agent.ossa.yaml +24 -31
- package/examples/agents/05-sales-assistant/agent.ossa.yaml +35 -23
- package/examples/agents/07-research-assistant/agent.ossa.yaml +27 -21
- package/examples/agents/10-meeting-assistant/agent.ossa.yaml +27 -35
- package/examples/agents/security-audit-agent.ossa.yaml +234 -0
- package/examples/agentscope/react-assistant/agent.ossa.yaml +36 -32
- package/examples/drupal/content-moderator.ossa.yaml +2 -2
- package/examples/drupal/drupal-contributor.ossa.yaml +247 -0
- package/examples/export/langchain/production-agent-with-memory/README.md +1 -1
- package/examples/export/langchain/production-agent-with-memory/agent.ossa.yaml +13 -23
- package/examples/export/langchain/production-agent-with-streaming/agent.ossa.yaml +1 -15
- package/examples/export/langchain/production-agent-with-tools/agent.ossa.yaml +28 -29
- package/examples/getting-started/01-minimal-agent.ossa.yaml +1 -1
- package/examples/getting-started/02-agent-with-tools.ossa.yaml +1 -1
- package/examples/getting-started/03-agent-with-safety.ossa.yaml +1 -1
- package/examples/getting-started/04-agent-with-messaging.ossa.yaml +1 -1
- package/examples/getting-started/05-workflow-composition.ossa.yaml +1 -1
- package/examples/getting-started/README.md +3 -3
- package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
- package/examples/gitlab-agents/gitlab-ci-agent.ossa.yaml +221 -0
- package/examples/hierarchical-agent.ossa.yaml +10 -53
- package/examples/kagent/ossa-kagent-anthropic.ossa.yaml +2 -25
- package/examples/kagent/ossa-kagent-mcp-tools.ossa.yaml +2 -30
- package/examples/kagent/ossa-kagent-multi-tool.ossa.yaml +2 -18
- package/examples/kagent/ossa-kagent-poc.ossa.yaml +2 -16
- package/examples/pipeline-agent.ossa.yaml +3 -3
- package/examples/platform-specific/claude-code-subagent.yaml +1 -1
- package/examples/platform-specific/cursor-coding-agent.yaml +1 -1
- package/examples/platform-specific/warp-terminal-agent.yaml +1 -1
- package/examples/production-ready/01-customer-support-bot/agent.ossa.yaml +24 -31
- package/examples/production-ready/05-sales-assistant/agent.ossa.yaml +35 -23
- package/examples/production-ready/07-research-assistant/agent.ossa.yaml +27 -19
- package/examples/production-ready/10-meeting-assistant/agent.ossa.yaml +27 -35
- package/examples/reference-implementations/python-client/examples/basic_usage.py +0 -0
- package/examples/reference-implementations/python-client/examples/publish_agent.py +0 -0
- package/examples/roles/drupal-developer.role.yaml +37 -0
- package/examples/roles/platform-operator.role.yaml +28 -0
- package/examples/roles/security-auditor.role.yaml +27 -0
- package/examples/swarm-agent.ossa.yaml +13 -51
- package/examples/team-agent.ossa.yaml +12 -61
- package/examples/team-lead-teammate.ossa.yaml +12 -17
- package/openapi/agent-communication.yaml +260 -212
- package/openapi/agent-crud.yaml +217 -187
- package/openapi/agent-discovery.yaml +119 -81
- package/openapi/agent-identity.yaml +219 -187
- package/openapi/agent-taxonomy.yaml +95 -38
- package/openapi/agents-md-service.yaml +103 -30
- package/openapi/cli/openapi.yaml +147 -40
- package/openapi/core/ossa-core-api.openapi.yaml +327 -271
- package/openapi/core/ossa-registry-api.openapi.yaml +298 -235
- package/openapi/core/ossa-registry.openapi.yaml +299 -159
- package/openapi/core/unified-agent-gateway.openapi.yaml +234 -170
- package/openapi/daemon-api.openapi.yaml +323 -181
- package/openapi/dev-cli/openapi.yaml +137 -113
- package/openapi/github-sync.yaml +62 -19
- package/openapi/marketplace-plugin.openapi.yaml +539 -466
- package/openapi/ossa-api.openapi.yaml +354 -213
- package/openapi/ossa-cli-enhancements.openapi.yaml +108 -89
- package/openapi/ossa-cli.yaml +260 -184
- package/openapi/protocols/sse-streams.yaml +66 -74
- package/openapi/protocols/websocket-events.yaml +61 -54
- package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +37 -20
- package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +35 -23
- package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +29 -18
- package/openapi/reference-implementations/critic-agent-api.openapi.yaml +45 -19
- package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +30 -24
- package/openapi/reference-implementations/drupal-agent-api.openapi.yaml +101 -50
- package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +33 -22
- package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +20 -16
- package/openapi/reference-implementations/governor-agent-api.openapi.yaml +41 -23
- package/openapi/reference-implementations/helm-generator.openapi.yaml +88 -46
- package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +30 -20
- package/openapi/reference-implementations/judge-agent-api.openapi.yaml +22 -16
- package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +32 -18
- package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +32 -21
- package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +34 -21
- package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +49 -27
- package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +27 -19
- package/openapi/reference-implementations/self-evolving-ecosystem.openapi.yaml +427 -293
- package/openapi/reference-implementations/worker-agent-api.openapi.yaml +34 -23
- package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +35 -21
- package/openapi/release-automation.openapi.yaml +47 -13
- package/openapi/schemas/common/agent.yaml +30 -29
- package/openapi/schemas/common/errors.yaml +13 -3
- package/openapi/schemas/common/metadata.yaml +22 -7
- package/openapi/schemas/common/pagination.yaml +18 -6
- package/openapi/schemas/common/security.yaml +13 -5
- package/openapi/schemas/index.yaml +49 -42
- package/openapi/uadp-asyncapi.yaml +4 -2
- package/openapi/uadp-openapi.yaml +243 -165
- package/openapi/version-management.openapi.yaml +142 -135
- package/package.json +114 -103
- package/spec/extensions/role-manifest.md +188 -0
- package/spec/v0.4/extensions/mcp/README.md +1 -1
- package/spec/v0.5/agent.schema.json +2 -1
- package/spec/v0.5/extensions/mcp/README.md +1 -1
- package/spec/v0.5/role.schema.json +268 -0
|
@@ -5,22 +5,18 @@ info:
|
|
|
5
5
|
description: |
|
|
6
6
|
OpenAPI extension for Server-Sent Events streams in OSSA.
|
|
7
7
|
Defines SSE endpoints for unidirectional server-to-client event streaming.
|
|
8
|
-
|
|
9
8
|
contact:
|
|
10
9
|
name: OSSA Standards Team
|
|
11
10
|
url: https://openstandardagents.org
|
|
12
|
-
|
|
13
11
|
servers:
|
|
14
12
|
- url: https://agent.example.com
|
|
15
13
|
description: SSE server endpoint
|
|
16
|
-
|
|
17
14
|
x-sse-config:
|
|
18
15
|
heartbeat_interval_seconds: 30
|
|
19
16
|
reconnect_time_ms: 3000
|
|
20
17
|
max_event_buffer_size: 100
|
|
21
18
|
event_retention_seconds: 300
|
|
22
19
|
max_connections_per_client: 6
|
|
23
|
-
|
|
24
20
|
paths:
|
|
25
21
|
/events:
|
|
26
22
|
get:
|
|
@@ -28,9 +24,7 @@ paths:
|
|
|
28
24
|
description: |
|
|
29
25
|
Subscribe to server-sent events from agent.
|
|
30
26
|
Returns text/event-stream with continuous event delivery.
|
|
31
|
-
|
|
32
27
|
operationId: subscribeToEvents
|
|
33
|
-
|
|
34
28
|
parameters:
|
|
35
29
|
- name: channels
|
|
36
30
|
in: query
|
|
@@ -39,22 +33,21 @@ paths:
|
|
|
39
33
|
type: string
|
|
40
34
|
description: Comma-separated list of channels to subscribe to
|
|
41
35
|
example: content.published,user.login,agent.status
|
|
42
|
-
|
|
43
36
|
- name: last-event-id
|
|
44
37
|
in: header
|
|
45
38
|
required: false
|
|
46
39
|
schema:
|
|
47
40
|
type: string
|
|
48
41
|
description: Resume from this event ID (for reconnection)
|
|
49
|
-
|
|
50
42
|
responses:
|
|
51
|
-
|
|
43
|
+
"200":
|
|
52
44
|
description: Event stream established
|
|
53
45
|
headers:
|
|
54
46
|
Content-Type:
|
|
55
47
|
schema:
|
|
56
48
|
type: string
|
|
57
|
-
enum:
|
|
49
|
+
enum:
|
|
50
|
+
- text/event-stream
|
|
58
51
|
Cache-Control:
|
|
59
52
|
schema:
|
|
60
53
|
type: string
|
|
@@ -62,18 +55,18 @@ paths:
|
|
|
62
55
|
Connection:
|
|
63
56
|
schema:
|
|
64
57
|
type: string
|
|
65
|
-
enum:
|
|
58
|
+
enum:
|
|
59
|
+
- keep-alive
|
|
66
60
|
X-Accel-Buffering:
|
|
67
61
|
schema:
|
|
68
62
|
type: string
|
|
69
|
-
enum:
|
|
63
|
+
enum:
|
|
64
|
+
- no
|
|
70
65
|
description: Disable buffering for real-time delivery
|
|
71
|
-
|
|
72
66
|
content:
|
|
73
67
|
text/event-stream:
|
|
74
68
|
schema:
|
|
75
|
-
$ref:
|
|
76
|
-
|
|
69
|
+
$ref: "#/components/schemas/EventStream"
|
|
77
70
|
examples:
|
|
78
71
|
message_event:
|
|
79
72
|
summary: Standard message event
|
|
@@ -81,47 +74,42 @@ paths:
|
|
|
81
74
|
event: message
|
|
82
75
|
id: msg-123e4567-e89b-12d3-a456-426614174000
|
|
83
76
|
data: {"type":"message","timestamp":"2025-12-18T14:00:00Z","payload":{"channel":"content.published","data":{"contentId":"node-123"}},"metadata":{"agentId":"uadp://example.com/publisher"}}
|
|
84
|
-
|
|
85
77
|
status_event:
|
|
86
78
|
summary: Status update event
|
|
87
79
|
value: |
|
|
88
80
|
event: status
|
|
89
81
|
id: status-456e7890-a12b-34c5-d678-901234567890
|
|
90
82
|
data: {"type":"status","timestamp":"2025-12-18T14:00:00Z","payload":{"status":"healthy","load":0.45},"metadata":{"agentId":"uadp://example.com/agent"}}
|
|
91
|
-
|
|
92
|
-
'401':
|
|
83
|
+
"401":
|
|
93
84
|
description: Unauthorized - Invalid authentication
|
|
94
85
|
content:
|
|
95
86
|
application/json:
|
|
96
87
|
schema:
|
|
97
|
-
$ref:
|
|
98
|
-
|
|
99
|
-
'429':
|
|
88
|
+
$ref: "#/components/schemas/Error"
|
|
89
|
+
"429":
|
|
100
90
|
description: Too Many Requests - Connection limit exceeded
|
|
101
91
|
content:
|
|
102
92
|
application/json:
|
|
103
93
|
schema:
|
|
104
|
-
$ref:
|
|
105
|
-
|
|
94
|
+
$ref: "#/components/schemas/Error"
|
|
106
95
|
security:
|
|
107
96
|
- bearerAuth: []
|
|
108
97
|
- cookieAuth: []
|
|
109
98
|
- queryToken: []
|
|
110
|
-
|
|
111
99
|
x-sse-events:
|
|
112
|
-
- $ref:
|
|
113
|
-
- $ref:
|
|
114
|
-
- $ref:
|
|
115
|
-
- $ref:
|
|
116
|
-
|
|
100
|
+
- $ref: "#/components/x-sse-events/Message"
|
|
101
|
+
- $ref: "#/components/x-sse-events/Status"
|
|
102
|
+
- $ref: "#/components/x-sse-events/CapabilityResponse"
|
|
103
|
+
- $ref: "#/components/x-sse-events/Error"
|
|
104
|
+
x-ossa-capability: protocol-subscribe-to-events
|
|
105
|
+
tags:
|
|
106
|
+
- SSE
|
|
117
107
|
/events/stream/{streamId}:
|
|
118
108
|
get:
|
|
119
109
|
summary: Dedicated stream endpoint
|
|
120
110
|
description: |
|
|
121
111
|
Subscribe to a specific event stream (e.g., for a long-running capability execution).
|
|
122
|
-
|
|
123
112
|
operationId: subscribeToStream
|
|
124
|
-
|
|
125
113
|
parameters:
|
|
126
114
|
- name: streamId
|
|
127
115
|
in: path
|
|
@@ -130,34 +118,31 @@ paths:
|
|
|
130
118
|
type: string
|
|
131
119
|
format: uuid
|
|
132
120
|
description: Stream identifier from initiating request
|
|
133
|
-
|
|
134
121
|
responses:
|
|
135
|
-
|
|
122
|
+
"200":
|
|
136
123
|
description: Stream established
|
|
137
124
|
content:
|
|
138
125
|
text/event-stream:
|
|
139
126
|
schema:
|
|
140
|
-
$ref:
|
|
141
|
-
|
|
142
|
-
'404':
|
|
127
|
+
$ref: "#/components/schemas/EventStream"
|
|
128
|
+
"404":
|
|
143
129
|
description: Stream not found
|
|
144
130
|
content:
|
|
145
131
|
application/json:
|
|
146
132
|
schema:
|
|
147
|
-
$ref:
|
|
148
|
-
|
|
133
|
+
$ref: "#/components/schemas/Error"
|
|
149
134
|
security:
|
|
150
135
|
- bearerAuth: []
|
|
151
|
-
|
|
136
|
+
x-ossa-capability: protocol-subscribe-to-stream
|
|
137
|
+
tags:
|
|
138
|
+
- SSE
|
|
152
139
|
/capabilities/{capability}/invoke:
|
|
153
140
|
post:
|
|
154
141
|
summary: Invoke capability with streaming response
|
|
155
142
|
description: |
|
|
156
143
|
Invoke a capability that returns streaming results via SSE.
|
|
157
144
|
Response includes streamId to connect to SSE endpoint.
|
|
158
|
-
|
|
159
145
|
operationId: invokeCapabilityStreaming
|
|
160
|
-
|
|
161
146
|
parameters:
|
|
162
147
|
- name: capability
|
|
163
148
|
in: path
|
|
@@ -166,7 +151,6 @@ paths:
|
|
|
166
151
|
type: string
|
|
167
152
|
description: Capability name to invoke
|
|
168
153
|
example: analyze_content
|
|
169
|
-
|
|
170
154
|
requestBody:
|
|
171
155
|
required: true
|
|
172
156
|
content:
|
|
@@ -185,10 +169,13 @@ paths:
|
|
|
185
169
|
minimum: 1
|
|
186
170
|
priority:
|
|
187
171
|
type: string
|
|
188
|
-
enum:
|
|
189
|
-
|
|
172
|
+
enum:
|
|
173
|
+
- low
|
|
174
|
+
- normal
|
|
175
|
+
- high
|
|
176
|
+
- critical
|
|
190
177
|
responses:
|
|
191
|
-
|
|
178
|
+
"202":
|
|
192
179
|
description: Capability invocation accepted, streaming in progress
|
|
193
180
|
content:
|
|
194
181
|
application/json:
|
|
@@ -205,17 +192,20 @@ paths:
|
|
|
205
192
|
type: string
|
|
206
193
|
format: uri
|
|
207
194
|
example: https://agent.example.com/events/stream/abc-123
|
|
208
|
-
|
|
209
|
-
'400':
|
|
195
|
+
"400":
|
|
210
196
|
description: Invalid request
|
|
211
197
|
content:
|
|
212
198
|
application/json:
|
|
213
199
|
schema:
|
|
214
|
-
$ref:
|
|
215
|
-
|
|
200
|
+
$ref: "#/components/schemas/Error"
|
|
216
201
|
security:
|
|
217
202
|
- bearerAuth: []
|
|
218
|
-
|
|
203
|
+
x-ossa-capability: protocol-invoke-capability-streaming
|
|
204
|
+
x-ossa-autonomy:
|
|
205
|
+
level: supervised
|
|
206
|
+
approval_required: true
|
|
207
|
+
tags:
|
|
208
|
+
- SSE
|
|
219
209
|
components:
|
|
220
210
|
x-sse-events:
|
|
221
211
|
Message:
|
|
@@ -224,8 +214,7 @@ components:
|
|
|
224
214
|
event:
|
|
225
215
|
name: message
|
|
226
216
|
schema:
|
|
227
|
-
$ref:
|
|
228
|
-
|
|
217
|
+
$ref: "#/components/schemas/SSEEvent"
|
|
229
218
|
Status:
|
|
230
219
|
summary: Agent status update
|
|
231
220
|
description: Periodic health and status broadcasts
|
|
@@ -233,7 +222,7 @@ components:
|
|
|
233
222
|
name: status
|
|
234
223
|
schema:
|
|
235
224
|
allOf:
|
|
236
|
-
- $ref:
|
|
225
|
+
- $ref: "#/components/schemas/SSEEvent"
|
|
237
226
|
- type: object
|
|
238
227
|
required:
|
|
239
228
|
- payload
|
|
@@ -245,7 +234,11 @@ components:
|
|
|
245
234
|
properties:
|
|
246
235
|
status:
|
|
247
236
|
type: string
|
|
248
|
-
enum:
|
|
237
|
+
enum:
|
|
238
|
+
- healthy
|
|
239
|
+
- degraded
|
|
240
|
+
- unhealthy
|
|
241
|
+
- offline
|
|
249
242
|
load:
|
|
250
243
|
type: number
|
|
251
244
|
minimum: 0
|
|
@@ -257,7 +250,6 @@ components:
|
|
|
257
250
|
metrics:
|
|
258
251
|
type: object
|
|
259
252
|
additionalProperties: true
|
|
260
|
-
|
|
261
253
|
CapabilityResponse:
|
|
262
254
|
summary: Streaming capability response
|
|
263
255
|
description: Response chunks from capability execution
|
|
@@ -265,7 +257,7 @@ components:
|
|
|
265
257
|
name: capability_response
|
|
266
258
|
schema:
|
|
267
259
|
allOf:
|
|
268
|
-
- $ref:
|
|
260
|
+
- $ref: "#/components/schemas/SSEEvent"
|
|
269
261
|
- type: object
|
|
270
262
|
required:
|
|
271
263
|
- payload
|
|
@@ -295,14 +287,13 @@ components:
|
|
|
295
287
|
type: integer
|
|
296
288
|
metadata:
|
|
297
289
|
allOf:
|
|
298
|
-
- $ref:
|
|
290
|
+
- $ref: "#/components/schemas/EventMetadata"
|
|
299
291
|
- type: object
|
|
300
292
|
properties:
|
|
301
293
|
final:
|
|
302
294
|
type: boolean
|
|
303
295
|
description: True if this is the last event
|
|
304
296
|
default: false
|
|
305
|
-
|
|
306
297
|
Error:
|
|
307
298
|
summary: Error event
|
|
308
299
|
description: Error notification
|
|
@@ -310,7 +301,7 @@ components:
|
|
|
310
301
|
name: error
|
|
311
302
|
schema:
|
|
312
303
|
allOf:
|
|
313
|
-
- $ref:
|
|
304
|
+
- $ref: "#/components/schemas/SSEEvent"
|
|
314
305
|
- type: object
|
|
315
306
|
required:
|
|
316
307
|
- payload
|
|
@@ -333,7 +324,6 @@ components:
|
|
|
333
324
|
retryable:
|
|
334
325
|
type: boolean
|
|
335
326
|
default: false
|
|
336
|
-
|
|
337
327
|
schemas:
|
|
338
328
|
EventStream:
|
|
339
329
|
type: string
|
|
@@ -347,7 +337,6 @@ components:
|
|
|
347
337
|
retry: <reconnect-time-ms>
|
|
348
338
|
data: <json-payload>
|
|
349
339
|
(blank line)
|
|
350
|
-
|
|
351
340
|
example: |
|
|
352
341
|
event: message
|
|
353
342
|
id: msg-123
|
|
@@ -359,8 +348,6 @@ components:
|
|
|
359
348
|
event: status
|
|
360
349
|
id: status-456
|
|
361
350
|
data: {"type":"status","payload":{...}}
|
|
362
|
-
|
|
363
|
-
|
|
364
351
|
SSEEvent:
|
|
365
352
|
type: object
|
|
366
353
|
required:
|
|
@@ -390,8 +377,7 @@ components:
|
|
|
390
377
|
type: object
|
|
391
378
|
description: Event-specific payload
|
|
392
379
|
metadata:
|
|
393
|
-
$ref:
|
|
394
|
-
|
|
380
|
+
$ref: "#/components/schemas/EventMetadata"
|
|
395
381
|
EventMetadata:
|
|
396
382
|
type: object
|
|
397
383
|
required:
|
|
@@ -418,7 +404,6 @@ components:
|
|
|
418
404
|
type: boolean
|
|
419
405
|
description: Indicates last event in sequence
|
|
420
406
|
default: false
|
|
421
|
-
|
|
422
407
|
Error:
|
|
423
408
|
type: object
|
|
424
409
|
required:
|
|
@@ -432,44 +417,36 @@ components:
|
|
|
432
417
|
details:
|
|
433
418
|
type: object
|
|
434
419
|
additionalProperties: true
|
|
435
|
-
|
|
436
420
|
securitySchemes:
|
|
437
421
|
bearerAuth:
|
|
438
422
|
type: http
|
|
439
423
|
scheme: bearer
|
|
440
424
|
bearerFormat: JWT
|
|
441
|
-
|
|
442
425
|
cookieAuth:
|
|
443
426
|
type: apiKey
|
|
444
427
|
in: cookie
|
|
445
428
|
name: session
|
|
446
|
-
|
|
447
429
|
queryToken:
|
|
448
430
|
type: apiKey
|
|
449
431
|
in: query
|
|
450
432
|
name: token
|
|
451
|
-
|
|
452
433
|
security:
|
|
453
434
|
- bearerAuth: []
|
|
454
435
|
- cookieAuth: []
|
|
455
|
-
|
|
456
436
|
x-rate-limits:
|
|
457
437
|
events_per_second: 50
|
|
458
438
|
max_connections_per_client: 6
|
|
459
439
|
max_event_size_bytes: 65536
|
|
460
|
-
|
|
461
440
|
x-reliability:
|
|
462
441
|
event_buffer_size: 100
|
|
463
442
|
event_retention_seconds: 300
|
|
464
443
|
heartbeat_interval_seconds: 30
|
|
465
444
|
auto_reconnect: true
|
|
466
445
|
reconnect_time_ms: 3000
|
|
467
|
-
|
|
468
446
|
x-cors:
|
|
469
447
|
allowed_origins:
|
|
470
448
|
- https://trusted-domain.com
|
|
471
449
|
allow_credentials: true
|
|
472
|
-
|
|
473
450
|
tags:
|
|
474
451
|
- name: Events
|
|
475
452
|
description: Event stream subscriptions
|
|
@@ -477,3 +454,18 @@ tags:
|
|
|
477
454
|
description: Streaming capability invocations
|
|
478
455
|
- name: Health
|
|
479
456
|
description: Agent health monitoring
|
|
457
|
+
- name: SSE
|
|
458
|
+
description: SSE operations
|
|
459
|
+
x-ossa-metadata:
|
|
460
|
+
version: 0.3.3
|
|
461
|
+
compliance:
|
|
462
|
+
level: standard
|
|
463
|
+
observability:
|
|
464
|
+
tracing: true
|
|
465
|
+
metrics: true
|
|
466
|
+
logging: true
|
|
467
|
+
x-ossa:
|
|
468
|
+
version: 0.5.0
|
|
469
|
+
agent:
|
|
470
|
+
id: protocols-sse-streams
|
|
471
|
+
type: integrator
|