@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
package/openapi/agent-crud.yaml
CHANGED
|
@@ -14,14 +14,12 @@ info:
|
|
|
14
14
|
- **Update**: Modify existing agent configurations
|
|
15
15
|
- **Delete**: Unregister agents from the platform
|
|
16
16
|
- **Standards Compliance**: Full OSSA v0.3.0 and RFC7807 error handling
|
|
17
|
-
|
|
18
17
|
contact:
|
|
19
18
|
name: Bluefly.io LLM Platform Team
|
|
20
19
|
url: https://github.com/blueflyio/openstandardagents
|
|
21
20
|
license:
|
|
22
21
|
name: MIT
|
|
23
22
|
url: https://opensource.org/licenses/MIT
|
|
24
|
-
|
|
25
23
|
servers:
|
|
26
24
|
- url: https://api.llm.bluefly.io/ossa/v1
|
|
27
25
|
description: Production server
|
|
@@ -29,33 +27,35 @@ servers:
|
|
|
29
27
|
description: Development server
|
|
30
28
|
- url: http://localhost:3000
|
|
31
29
|
description: Local development
|
|
32
|
-
|
|
33
30
|
security:
|
|
34
31
|
- ApiKeyAuth: []
|
|
35
32
|
- BearerAuth: []
|
|
36
|
-
- OAuth2:
|
|
37
|
-
|
|
33
|
+
- OAuth2:
|
|
34
|
+
- read
|
|
35
|
+
- write
|
|
36
|
+
- admin
|
|
38
37
|
paths:
|
|
39
38
|
/agents:
|
|
40
39
|
get:
|
|
41
40
|
summary: List agents
|
|
42
41
|
description: Retrieve a paginated list of all registered agents with optional filtering
|
|
43
|
-
tags:
|
|
42
|
+
tags:
|
|
43
|
+
- Agents
|
|
44
44
|
operationId: listAgents
|
|
45
45
|
parameters:
|
|
46
|
-
- $ref:
|
|
47
|
-
- $ref:
|
|
48
|
-
- $ref:
|
|
46
|
+
- $ref: "#/components/parameters/Search"
|
|
47
|
+
- $ref: "#/components/parameters/Limit"
|
|
48
|
+
- $ref: "#/components/parameters/Offset"
|
|
49
49
|
- name: type
|
|
50
50
|
in: query
|
|
51
51
|
description: Filter by agent type
|
|
52
52
|
schema:
|
|
53
|
-
$ref:
|
|
53
|
+
$ref: "#/components/schemas/AgentType"
|
|
54
54
|
- name: status
|
|
55
55
|
in: query
|
|
56
56
|
description: Filter by agent status
|
|
57
57
|
schema:
|
|
58
|
-
$ref:
|
|
58
|
+
$ref: "#/components/schemas/AgentStatus"
|
|
59
59
|
- name: domain
|
|
60
60
|
in: query
|
|
61
61
|
description: Filter by domain label
|
|
@@ -67,26 +67,27 @@ paths:
|
|
|
67
67
|
schema:
|
|
68
68
|
type: string
|
|
69
69
|
responses:
|
|
70
|
-
|
|
70
|
+
"200":
|
|
71
71
|
description: List of agents successfully retrieved
|
|
72
72
|
content:
|
|
73
73
|
application/json:
|
|
74
74
|
schema:
|
|
75
|
-
$ref:
|
|
75
|
+
$ref: "#/components/schemas/AgentsList"
|
|
76
76
|
examples:
|
|
77
77
|
default:
|
|
78
|
-
$ref:
|
|
79
|
-
|
|
80
|
-
$ref:
|
|
81
|
-
|
|
82
|
-
$ref:
|
|
83
|
-
|
|
84
|
-
$ref:
|
|
85
|
-
|
|
78
|
+
$ref: "#/components/examples/AgentsListExample"
|
|
79
|
+
"400":
|
|
80
|
+
$ref: "#/components/responses/BadRequest"
|
|
81
|
+
"401":
|
|
82
|
+
$ref: "#/components/responses/Unauthorized"
|
|
83
|
+
"500":
|
|
84
|
+
$ref: "#/components/responses/InternalServerError"
|
|
85
|
+
x-ossa-capability: list-agents
|
|
86
86
|
post:
|
|
87
87
|
summary: Create agent
|
|
88
88
|
description: Register a new agent with the platform
|
|
89
|
-
tags:
|
|
89
|
+
tags:
|
|
90
|
+
- Agents
|
|
90
91
|
operationId: createAgent
|
|
91
92
|
requestBody:
|
|
92
93
|
required: true
|
|
@@ -94,14 +95,14 @@ paths:
|
|
|
94
95
|
content:
|
|
95
96
|
application/json:
|
|
96
97
|
schema:
|
|
97
|
-
$ref:
|
|
98
|
+
$ref: "#/components/schemas/AgentCreate"
|
|
98
99
|
examples:
|
|
99
100
|
worker:
|
|
100
|
-
$ref:
|
|
101
|
+
$ref: "#/components/examples/CreateWorkerAgentExample"
|
|
101
102
|
orchestrator:
|
|
102
|
-
$ref:
|
|
103
|
+
$ref: "#/components/examples/CreateOrchestratorAgentExample"
|
|
103
104
|
responses:
|
|
104
|
-
|
|
105
|
+
"201":
|
|
105
106
|
description: Agent successfully created
|
|
106
107
|
headers:
|
|
107
108
|
Location:
|
|
@@ -112,105 +113,117 @@ paths:
|
|
|
112
113
|
content:
|
|
113
114
|
application/json:
|
|
114
115
|
schema:
|
|
115
|
-
$ref:
|
|
116
|
+
$ref: "#/components/schemas/AgentResponse"
|
|
116
117
|
examples:
|
|
117
118
|
default:
|
|
118
|
-
$ref:
|
|
119
|
-
|
|
120
|
-
$ref:
|
|
121
|
-
|
|
122
|
-
$ref:
|
|
123
|
-
|
|
124
|
-
$ref:
|
|
125
|
-
|
|
126
|
-
$ref:
|
|
127
|
-
|
|
119
|
+
$ref: "#/components/examples/AgentResponseExample"
|
|
120
|
+
"400":
|
|
121
|
+
$ref: "#/components/responses/ValidationError"
|
|
122
|
+
"401":
|
|
123
|
+
$ref: "#/components/responses/Unauthorized"
|
|
124
|
+
"409":
|
|
125
|
+
$ref: "#/components/responses/Conflict"
|
|
126
|
+
"500":
|
|
127
|
+
$ref: "#/components/responses/InternalServerError"
|
|
128
|
+
x-ossa-capability: create-agent
|
|
129
|
+
x-ossa-autonomy:
|
|
130
|
+
level: supervised
|
|
131
|
+
approval_required: true
|
|
128
132
|
/agents/{id}:
|
|
129
133
|
get:
|
|
130
134
|
summary: Get agent
|
|
131
135
|
description: Retrieve detailed information about a specific agent
|
|
132
|
-
tags:
|
|
136
|
+
tags:
|
|
137
|
+
- Agents
|
|
133
138
|
operationId: getAgent
|
|
134
139
|
parameters:
|
|
135
|
-
- $ref:
|
|
140
|
+
- $ref: "#/components/parameters/AgentId"
|
|
136
141
|
responses:
|
|
137
|
-
|
|
142
|
+
"200":
|
|
138
143
|
description: Agent details successfully retrieved
|
|
139
144
|
content:
|
|
140
145
|
application/json:
|
|
141
146
|
schema:
|
|
142
|
-
$ref:
|
|
147
|
+
$ref: "#/components/schemas/AgentResponse"
|
|
143
148
|
examples:
|
|
144
149
|
default:
|
|
145
|
-
$ref:
|
|
146
|
-
|
|
147
|
-
$ref:
|
|
148
|
-
|
|
149
|
-
$ref:
|
|
150
|
-
|
|
151
|
-
$ref:
|
|
152
|
-
|
|
150
|
+
$ref: "#/components/examples/AgentResponseExample"
|
|
151
|
+
"401":
|
|
152
|
+
$ref: "#/components/responses/Unauthorized"
|
|
153
|
+
"404":
|
|
154
|
+
$ref: "#/components/responses/NotFound"
|
|
155
|
+
"500":
|
|
156
|
+
$ref: "#/components/responses/InternalServerError"
|
|
157
|
+
x-ossa-capability: get-agent
|
|
153
158
|
put:
|
|
154
159
|
summary: Update agent
|
|
155
160
|
description: Update an existing agent's configuration
|
|
156
|
-
tags:
|
|
161
|
+
tags:
|
|
162
|
+
- Agents
|
|
157
163
|
operationId: updateAgent
|
|
158
164
|
parameters:
|
|
159
|
-
- $ref:
|
|
165
|
+
- $ref: "#/components/parameters/AgentId"
|
|
160
166
|
requestBody:
|
|
161
167
|
required: true
|
|
162
168
|
description: Updated agent configuration
|
|
163
169
|
content:
|
|
164
170
|
application/json:
|
|
165
171
|
schema:
|
|
166
|
-
$ref:
|
|
172
|
+
$ref: "#/components/schemas/AgentUpdate"
|
|
167
173
|
examples:
|
|
168
174
|
partial:
|
|
169
|
-
$ref:
|
|
175
|
+
$ref: "#/components/examples/UpdateAgentExample"
|
|
170
176
|
responses:
|
|
171
|
-
|
|
177
|
+
"200":
|
|
172
178
|
description: Agent successfully updated
|
|
173
179
|
content:
|
|
174
180
|
application/json:
|
|
175
181
|
schema:
|
|
176
|
-
$ref:
|
|
182
|
+
$ref: "#/components/schemas/AgentResponse"
|
|
177
183
|
examples:
|
|
178
184
|
default:
|
|
179
|
-
$ref:
|
|
180
|
-
|
|
181
|
-
$ref:
|
|
182
|
-
|
|
183
|
-
$ref:
|
|
184
|
-
|
|
185
|
-
$ref:
|
|
186
|
-
|
|
187
|
-
$ref:
|
|
188
|
-
|
|
189
|
-
$ref:
|
|
190
|
-
|
|
185
|
+
$ref: "#/components/examples/AgentResponseExample"
|
|
186
|
+
"400":
|
|
187
|
+
$ref: "#/components/responses/ValidationError"
|
|
188
|
+
"401":
|
|
189
|
+
$ref: "#/components/responses/Unauthorized"
|
|
190
|
+
"404":
|
|
191
|
+
$ref: "#/components/responses/NotFound"
|
|
192
|
+
"409":
|
|
193
|
+
$ref: "#/components/responses/Conflict"
|
|
194
|
+
"500":
|
|
195
|
+
$ref: "#/components/responses/InternalServerError"
|
|
196
|
+
x-ossa-capability: update-agent
|
|
197
|
+
x-ossa-autonomy:
|
|
198
|
+
level: supervised
|
|
199
|
+
approval_required: true
|
|
191
200
|
delete:
|
|
192
201
|
summary: Delete agent
|
|
193
202
|
description: Unregister and remove an agent from the platform
|
|
194
|
-
tags:
|
|
203
|
+
tags:
|
|
204
|
+
- Agents
|
|
195
205
|
operationId: deleteAgent
|
|
196
206
|
parameters:
|
|
197
|
-
- $ref:
|
|
207
|
+
- $ref: "#/components/parameters/AgentId"
|
|
198
208
|
responses:
|
|
199
|
-
|
|
209
|
+
"204":
|
|
200
210
|
description: Agent successfully deleted
|
|
201
|
-
|
|
202
|
-
$ref:
|
|
203
|
-
|
|
204
|
-
$ref:
|
|
205
|
-
|
|
211
|
+
"401":
|
|
212
|
+
$ref: "#/components/responses/Unauthorized"
|
|
213
|
+
"404":
|
|
214
|
+
$ref: "#/components/responses/NotFound"
|
|
215
|
+
"409":
|
|
206
216
|
description: Conflict - Agent is currently in use
|
|
207
217
|
content:
|
|
208
218
|
application/problem+json:
|
|
209
219
|
schema:
|
|
210
|
-
$ref:
|
|
211
|
-
|
|
212
|
-
$ref:
|
|
213
|
-
|
|
220
|
+
$ref: "#/components/schemas/Problem"
|
|
221
|
+
"500":
|
|
222
|
+
$ref: "#/components/responses/InternalServerError"
|
|
223
|
+
x-ossa-capability: delete-agent
|
|
224
|
+
x-ossa-autonomy:
|
|
225
|
+
level: supervised
|
|
226
|
+
approval_required: true
|
|
214
227
|
components:
|
|
215
228
|
securitySchemes:
|
|
216
229
|
ApiKeyAuth:
|
|
@@ -231,7 +244,6 @@ components:
|
|
|
231
244
|
read: Read access to agents
|
|
232
245
|
write: Write access to create and update agents
|
|
233
246
|
admin: Full administrative access
|
|
234
|
-
|
|
235
247
|
parameters:
|
|
236
248
|
AgentId:
|
|
237
249
|
name: id
|
|
@@ -242,7 +254,6 @@ components:
|
|
|
242
254
|
type: string
|
|
243
255
|
format: uuid
|
|
244
256
|
example: 550e8400-e29b-41d4-a716-446655440000
|
|
245
|
-
|
|
246
257
|
Search:
|
|
247
258
|
name: search
|
|
248
259
|
in: query
|
|
@@ -250,7 +261,6 @@ components:
|
|
|
250
261
|
schema:
|
|
251
262
|
type: string
|
|
252
263
|
example: security
|
|
253
|
-
|
|
254
264
|
Limit:
|
|
255
265
|
name: limit
|
|
256
266
|
in: query
|
|
@@ -261,7 +271,6 @@ components:
|
|
|
261
271
|
maximum: 100
|
|
262
272
|
default: 20
|
|
263
273
|
example: 20
|
|
264
|
-
|
|
265
274
|
Offset:
|
|
266
275
|
name: offset
|
|
267
276
|
in: query
|
|
@@ -271,9 +280,7 @@ components:
|
|
|
271
280
|
minimum: 0
|
|
272
281
|
default: 0
|
|
273
282
|
example: 0
|
|
274
|
-
|
|
275
283
|
schemas:
|
|
276
|
-
# Request Schemas
|
|
277
284
|
AgentCreate:
|
|
278
285
|
type: object
|
|
279
286
|
required:
|
|
@@ -291,10 +298,9 @@ components:
|
|
|
291
298
|
const: Agent
|
|
292
299
|
description: Resource type identifier
|
|
293
300
|
metadata:
|
|
294
|
-
$ref:
|
|
301
|
+
$ref: "#/components/schemas/AgentMetadata"
|
|
295
302
|
spec:
|
|
296
|
-
$ref:
|
|
297
|
-
|
|
303
|
+
$ref: "#/components/schemas/AgentSpec"
|
|
298
304
|
AgentUpdate:
|
|
299
305
|
type: object
|
|
300
306
|
description: Partial update of agent configuration. Only provided fields will be updated.
|
|
@@ -312,15 +318,13 @@ components:
|
|
|
312
318
|
type: object
|
|
313
319
|
properties:
|
|
314
320
|
llm:
|
|
315
|
-
$ref:
|
|
321
|
+
$ref: "#/components/schemas/LLMConfig"
|
|
316
322
|
runtime:
|
|
317
|
-
$ref:
|
|
323
|
+
$ref: "#/components/schemas/RuntimeConfig"
|
|
318
324
|
capabilities:
|
|
319
325
|
type: array
|
|
320
326
|
items:
|
|
321
|
-
$ref:
|
|
322
|
-
|
|
323
|
-
# Response Schemas
|
|
327
|
+
$ref: "#/components/schemas/Capability"
|
|
324
328
|
AgentResponse:
|
|
325
329
|
type: object
|
|
326
330
|
required:
|
|
@@ -344,11 +348,11 @@ components:
|
|
|
344
348
|
type: string
|
|
345
349
|
const: Agent
|
|
346
350
|
metadata:
|
|
347
|
-
$ref:
|
|
351
|
+
$ref: "#/components/schemas/AgentMetadata"
|
|
348
352
|
spec:
|
|
349
|
-
$ref:
|
|
353
|
+
$ref: "#/components/schemas/AgentSpec"
|
|
350
354
|
status:
|
|
351
|
-
$ref:
|
|
355
|
+
$ref: "#/components/schemas/AgentStatus"
|
|
352
356
|
createdAt:
|
|
353
357
|
type: string
|
|
354
358
|
format: date-time
|
|
@@ -361,8 +365,7 @@ components:
|
|
|
361
365
|
type: string
|
|
362
366
|
description: User or system that created the agent
|
|
363
367
|
metrics:
|
|
364
|
-
$ref:
|
|
365
|
-
|
|
368
|
+
$ref: "#/components/schemas/AgentMetrics"
|
|
366
369
|
AgentsList:
|
|
367
370
|
type: object
|
|
368
371
|
required:
|
|
@@ -374,7 +377,7 @@ components:
|
|
|
374
377
|
agents:
|
|
375
378
|
type: array
|
|
376
379
|
items:
|
|
377
|
-
$ref:
|
|
380
|
+
$ref: "#/components/schemas/AgentResponse"
|
|
378
381
|
total:
|
|
379
382
|
type: integer
|
|
380
383
|
description: Total number of agents matching the query
|
|
@@ -384,8 +387,6 @@ components:
|
|
|
384
387
|
offset:
|
|
385
388
|
type: integer
|
|
386
389
|
description: Number of results skipped
|
|
387
|
-
|
|
388
|
-
# Core Agent Schemas
|
|
389
390
|
AgentMetadata:
|
|
390
391
|
type: object
|
|
391
392
|
required:
|
|
@@ -394,14 +395,14 @@ components:
|
|
|
394
395
|
properties:
|
|
395
396
|
name:
|
|
396
397
|
type: string
|
|
397
|
-
pattern:
|
|
398
|
+
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
|
|
398
399
|
minLength: 1
|
|
399
400
|
maxLength: 63
|
|
400
401
|
description: Agent name (DNS label format)
|
|
401
402
|
example: security-scanner
|
|
402
403
|
version:
|
|
403
404
|
type: string
|
|
404
|
-
pattern:
|
|
405
|
+
pattern: ^\d+\.\d+\.\d+(-[a-zA-Z0-9]+(\.[a-zA-Z0-9]+)*)?(\+[a-zA-Z0-9]+(\.[a-zA-Z0-9]+)*)?$
|
|
405
406
|
description: Semantic version (full semver spec including pre-release and build metadata)
|
|
406
407
|
example: 1.0.0
|
|
407
408
|
description:
|
|
@@ -417,7 +418,6 @@ components:
|
|
|
417
418
|
domain: security
|
|
418
419
|
capability: scanning
|
|
419
420
|
runtime: kubernetes
|
|
420
|
-
|
|
421
421
|
AgentSpec:
|
|
422
422
|
type: object
|
|
423
423
|
required:
|
|
@@ -426,36 +426,35 @@ components:
|
|
|
426
426
|
- capabilities
|
|
427
427
|
properties:
|
|
428
428
|
llm:
|
|
429
|
-
$ref:
|
|
429
|
+
$ref: "#/components/schemas/LLMConfig"
|
|
430
430
|
execution_profile:
|
|
431
|
-
$ref:
|
|
431
|
+
$ref: "#/components/schemas/ExecutionProfile"
|
|
432
432
|
runtime:
|
|
433
|
-
$ref:
|
|
433
|
+
$ref: "#/components/schemas/RuntimeConfig"
|
|
434
434
|
capabilities:
|
|
435
435
|
type: array
|
|
436
436
|
items:
|
|
437
|
-
$ref:
|
|
437
|
+
$ref: "#/components/schemas/Capability"
|
|
438
438
|
minItems: 1
|
|
439
439
|
functions:
|
|
440
440
|
type: array
|
|
441
441
|
items:
|
|
442
|
-
$ref:
|
|
442
|
+
$ref: "#/components/schemas/Function"
|
|
443
443
|
extensions:
|
|
444
444
|
type: array
|
|
445
445
|
items:
|
|
446
|
-
$ref:
|
|
446
|
+
$ref: "#/components/schemas/Extension"
|
|
447
447
|
role:
|
|
448
448
|
type: string
|
|
449
449
|
description: Agent's primary role
|
|
450
450
|
taxonomy:
|
|
451
|
-
$ref:
|
|
451
|
+
$ref: "#/components/schemas/Taxonomy"
|
|
452
452
|
tools:
|
|
453
453
|
type: array
|
|
454
454
|
items:
|
|
455
|
-
$ref:
|
|
455
|
+
$ref: "#/components/schemas/Tool"
|
|
456
456
|
knowledge_graph:
|
|
457
|
-
$ref:
|
|
458
|
-
|
|
457
|
+
$ref: "#/components/schemas/KnowledgeGraph"
|
|
459
458
|
LLMConfig:
|
|
460
459
|
type: object
|
|
461
460
|
required:
|
|
@@ -472,7 +471,11 @@ components:
|
|
|
472
471
|
example: claude-sonnet-4
|
|
473
472
|
profile:
|
|
474
473
|
type: string
|
|
475
|
-
enum:
|
|
474
|
+
enum:
|
|
475
|
+
- fast
|
|
476
|
+
- balanced
|
|
477
|
+
- deep
|
|
478
|
+
- safe
|
|
476
479
|
default: balanced
|
|
477
480
|
description: Execution profile for A2A compatibility
|
|
478
481
|
temperature:
|
|
@@ -493,10 +496,9 @@ components:
|
|
|
493
496
|
fallback_models:
|
|
494
497
|
type: array
|
|
495
498
|
items:
|
|
496
|
-
$ref:
|
|
499
|
+
$ref: "#/components/schemas/FallbackModel"
|
|
497
500
|
retry_config:
|
|
498
|
-
$ref:
|
|
499
|
-
|
|
501
|
+
$ref: "#/components/schemas/RetryConfig"
|
|
500
502
|
FallbackModel:
|
|
501
503
|
type: object
|
|
502
504
|
required:
|
|
@@ -510,8 +512,10 @@ components:
|
|
|
510
512
|
type: string
|
|
511
513
|
condition:
|
|
512
514
|
type: string
|
|
513
|
-
enum:
|
|
514
|
-
|
|
515
|
+
enum:
|
|
516
|
+
- on_error
|
|
517
|
+
- on_rate_limit
|
|
518
|
+
- on_timeout
|
|
515
519
|
RetryConfig:
|
|
516
520
|
type: object
|
|
517
521
|
properties:
|
|
@@ -522,20 +526,25 @@ components:
|
|
|
522
526
|
default: 3
|
|
523
527
|
backoff_strategy:
|
|
524
528
|
type: string
|
|
525
|
-
enum:
|
|
529
|
+
enum:
|
|
530
|
+
- linear
|
|
531
|
+
- exponential
|
|
532
|
+
- fibonacci
|
|
526
533
|
default: exponential
|
|
527
|
-
|
|
528
534
|
ExecutionProfile:
|
|
529
535
|
type: object
|
|
530
536
|
properties:
|
|
531
537
|
default:
|
|
532
538
|
type: string
|
|
533
|
-
enum:
|
|
539
|
+
enum:
|
|
540
|
+
- fast
|
|
541
|
+
- balanced
|
|
542
|
+
- deep
|
|
543
|
+
- safe
|
|
534
544
|
profiles:
|
|
535
545
|
type: object
|
|
536
546
|
additionalProperties:
|
|
537
|
-
$ref:
|
|
538
|
-
|
|
547
|
+
$ref: "#/components/schemas/ProfileConfig"
|
|
539
548
|
ProfileConfig:
|
|
540
549
|
type: object
|
|
541
550
|
properties:
|
|
@@ -551,7 +560,6 @@ components:
|
|
|
551
560
|
type: boolean
|
|
552
561
|
description:
|
|
553
562
|
type: string
|
|
554
|
-
|
|
555
563
|
RuntimeConfig:
|
|
556
564
|
type: object
|
|
557
565
|
required:
|
|
@@ -559,28 +567,44 @@ components:
|
|
|
559
567
|
properties:
|
|
560
568
|
type:
|
|
561
569
|
type: string
|
|
562
|
-
enum:
|
|
570
|
+
enum:
|
|
571
|
+
- unified
|
|
572
|
+
- kubernetes
|
|
573
|
+
- docker
|
|
574
|
+
- serverless
|
|
575
|
+
- local
|
|
563
576
|
description: Runtime environment type
|
|
564
577
|
supports:
|
|
565
578
|
type: array
|
|
566
579
|
items:
|
|
567
580
|
type: string
|
|
568
|
-
enum:
|
|
581
|
+
enum:
|
|
582
|
+
- google-a2a
|
|
583
|
+
- gitlab-duo
|
|
584
|
+
- ossa-mesh
|
|
585
|
+
- mcp
|
|
586
|
+
- local-execution
|
|
569
587
|
scheduling:
|
|
570
|
-
$ref:
|
|
588
|
+
$ref: "#/components/schemas/SchedulingConfig"
|
|
571
589
|
resource_limits:
|
|
572
|
-
$ref:
|
|
573
|
-
|
|
590
|
+
$ref: "#/components/schemas/ResourceLimits"
|
|
574
591
|
SchedulingConfig:
|
|
575
592
|
type: object
|
|
576
593
|
properties:
|
|
577
594
|
strategy:
|
|
578
595
|
type: string
|
|
579
|
-
enum:
|
|
596
|
+
enum:
|
|
597
|
+
- fair
|
|
598
|
+
- priority
|
|
599
|
+
- round-robin
|
|
580
600
|
default: fair
|
|
581
601
|
priority:
|
|
582
602
|
type: string
|
|
583
|
-
enum:
|
|
603
|
+
enum:
|
|
604
|
+
- low
|
|
605
|
+
- normal
|
|
606
|
+
- high
|
|
607
|
+
- critical
|
|
584
608
|
default: normal
|
|
585
609
|
max_concurrent:
|
|
586
610
|
type: integer
|
|
@@ -590,7 +614,6 @@ components:
|
|
|
590
614
|
type: integer
|
|
591
615
|
minimum: 1
|
|
592
616
|
default: 300
|
|
593
|
-
|
|
594
617
|
ResourceLimits:
|
|
595
618
|
type: object
|
|
596
619
|
properties:
|
|
@@ -602,7 +625,6 @@ components:
|
|
|
602
625
|
type: integer
|
|
603
626
|
minimum: 100
|
|
604
627
|
default: 500
|
|
605
|
-
|
|
606
628
|
Capability:
|
|
607
629
|
type: object
|
|
608
630
|
required:
|
|
@@ -613,16 +635,22 @@ components:
|
|
|
613
635
|
type: string
|
|
614
636
|
type:
|
|
615
637
|
type: string
|
|
616
|
-
enum:
|
|
638
|
+
enum:
|
|
639
|
+
- action
|
|
640
|
+
- query
|
|
641
|
+
- monitor
|
|
642
|
+
- transform
|
|
617
643
|
runtime:
|
|
618
644
|
type: string
|
|
619
|
-
enum:
|
|
645
|
+
enum:
|
|
646
|
+
- llm
|
|
647
|
+
- code
|
|
648
|
+
- hybrid
|
|
620
649
|
description:
|
|
621
650
|
type: string
|
|
622
651
|
input_schema:
|
|
623
652
|
type: object
|
|
624
653
|
description: JSON Schema for capability input
|
|
625
|
-
|
|
626
654
|
Function:
|
|
627
655
|
type: object
|
|
628
656
|
required:
|
|
@@ -632,7 +660,7 @@ components:
|
|
|
632
660
|
properties:
|
|
633
661
|
name:
|
|
634
662
|
type: string
|
|
635
|
-
pattern:
|
|
663
|
+
pattern: ^[a-z_][a-z0-9_]*$
|
|
636
664
|
description:
|
|
637
665
|
type: string
|
|
638
666
|
parameters:
|
|
@@ -641,7 +669,6 @@ components:
|
|
|
641
669
|
returns:
|
|
642
670
|
type: object
|
|
643
671
|
description: Return value schema
|
|
644
|
-
|
|
645
672
|
Extension:
|
|
646
673
|
type: object
|
|
647
674
|
required:
|
|
@@ -651,7 +678,11 @@ components:
|
|
|
651
678
|
properties:
|
|
652
679
|
type:
|
|
653
680
|
type: string
|
|
654
|
-
enum:
|
|
681
|
+
enum:
|
|
682
|
+
- http
|
|
683
|
+
- mcp
|
|
684
|
+
- grpc
|
|
685
|
+
- websocket
|
|
655
686
|
name:
|
|
656
687
|
type: string
|
|
657
688
|
endpoint:
|
|
@@ -660,7 +691,6 @@ components:
|
|
|
660
691
|
credentials_ref:
|
|
661
692
|
type: string
|
|
662
693
|
description: Reference to credential in secrets manager
|
|
663
|
-
|
|
664
694
|
Taxonomy:
|
|
665
695
|
type: object
|
|
666
696
|
properties:
|
|
@@ -670,7 +700,6 @@ components:
|
|
|
670
700
|
type: string
|
|
671
701
|
capability:
|
|
672
702
|
type: string
|
|
673
|
-
|
|
674
703
|
Tool:
|
|
675
704
|
type: object
|
|
676
705
|
required:
|
|
@@ -682,8 +711,7 @@ components:
|
|
|
682
711
|
description:
|
|
683
712
|
type: string
|
|
684
713
|
source:
|
|
685
|
-
$ref:
|
|
686
|
-
|
|
714
|
+
$ref: "#/components/schemas/ToolSource"
|
|
687
715
|
ToolSource:
|
|
688
716
|
type: object
|
|
689
717
|
required:
|
|
@@ -692,11 +720,13 @@ components:
|
|
|
692
720
|
properties:
|
|
693
721
|
type:
|
|
694
722
|
type: string
|
|
695
|
-
enum:
|
|
723
|
+
enum:
|
|
724
|
+
- mcp
|
|
725
|
+
- http
|
|
726
|
+
- grpc
|
|
696
727
|
uri:
|
|
697
728
|
type: string
|
|
698
729
|
format: uri
|
|
699
|
-
|
|
700
730
|
KnowledgeGraph:
|
|
701
731
|
type: object
|
|
702
732
|
properties:
|
|
@@ -705,10 +735,12 @@ components:
|
|
|
705
735
|
default: false
|
|
706
736
|
provider:
|
|
707
737
|
type: string
|
|
708
|
-
enum:
|
|
738
|
+
enum:
|
|
739
|
+
- neo4j
|
|
740
|
+
- memgraph
|
|
741
|
+
- dgraph
|
|
709
742
|
connection:
|
|
710
|
-
$ref:
|
|
711
|
-
|
|
743
|
+
$ref: "#/components/schemas/GraphConnection"
|
|
712
744
|
GraphConnection:
|
|
713
745
|
type: object
|
|
714
746
|
properties:
|
|
@@ -717,12 +749,10 @@ components:
|
|
|
717
749
|
format: uri
|
|
718
750
|
credentials_ref:
|
|
719
751
|
type: string
|
|
720
|
-
|
|
721
752
|
AgentType:
|
|
722
|
-
$ref:
|
|
753
|
+
$ref: ./schemas/common/agent.yaml#/components/schemas/AgentType
|
|
723
754
|
AgentStatus:
|
|
724
|
-
$ref:
|
|
725
|
-
|
|
755
|
+
$ref: ./schemas/common/agent.yaml#/components/schemas/AgentStatus
|
|
726
756
|
AgentMetrics:
|
|
727
757
|
type: object
|
|
728
758
|
properties:
|
|
@@ -742,31 +772,27 @@ components:
|
|
|
742
772
|
type: string
|
|
743
773
|
format: date-time
|
|
744
774
|
description: Timestamp of last activity
|
|
745
|
-
|
|
746
|
-
# Error Schemas (RFC7807) - Using shared schema
|
|
747
775
|
Problem:
|
|
748
|
-
$ref:
|
|
749
|
-
|
|
776
|
+
$ref: ./schemas/common/errors.yaml#/components/schemas/Problem
|
|
750
777
|
responses:
|
|
751
778
|
BadRequest:
|
|
752
779
|
description: Bad request - Invalid input parameters
|
|
753
780
|
content:
|
|
754
781
|
application/problem+json:
|
|
755
782
|
schema:
|
|
756
|
-
$ref:
|
|
783
|
+
$ref: "#/components/schemas/Problem"
|
|
757
784
|
example:
|
|
758
785
|
type: https://api.llm.bluefly.io/problems/bad-request
|
|
759
786
|
title: Bad Request
|
|
760
787
|
status: 400
|
|
761
788
|
detail: Invalid query parameter 'limit' - must be between 1 and 100
|
|
762
789
|
traceId: 550e8400-e29b-41d4-a716-446655440000
|
|
763
|
-
|
|
764
790
|
ValidationError:
|
|
765
791
|
description: Validation error - Request body failed validation
|
|
766
792
|
content:
|
|
767
793
|
application/problem+json:
|
|
768
794
|
schema:
|
|
769
|
-
$ref:
|
|
795
|
+
$ref: "#/components/schemas/Problem"
|
|
770
796
|
example:
|
|
771
797
|
type: https://api.llm.bluefly.io/problems/validation-error
|
|
772
798
|
title: Validation Error
|
|
@@ -778,59 +804,54 @@ components:
|
|
|
778
804
|
- Must match pattern '^[a-z0-9]([-a-z0-9]*[a-z0-9])?$'
|
|
779
805
|
spec.capabilities:
|
|
780
806
|
- Must contain at least one capability
|
|
781
|
-
|
|
782
807
|
Unauthorized:
|
|
783
808
|
description: Unauthorized - Authentication required
|
|
784
809
|
content:
|
|
785
810
|
application/problem+json:
|
|
786
811
|
schema:
|
|
787
|
-
$ref:
|
|
812
|
+
$ref: "#/components/schemas/Problem"
|
|
788
813
|
example:
|
|
789
814
|
type: https://api.llm.bluefly.io/problems/unauthorized
|
|
790
815
|
title: Unauthorized
|
|
791
816
|
status: 401
|
|
792
817
|
detail: Valid authentication credentials required
|
|
793
818
|
traceId: 550e8400-e29b-41d4-a716-446655440002
|
|
794
|
-
|
|
795
819
|
NotFound:
|
|
796
820
|
description: Resource not found
|
|
797
821
|
content:
|
|
798
822
|
application/problem+json:
|
|
799
823
|
schema:
|
|
800
|
-
$ref:
|
|
824
|
+
$ref: "#/components/schemas/Problem"
|
|
801
825
|
example:
|
|
802
826
|
type: https://api.llm.bluefly.io/problems/not-found
|
|
803
827
|
title: Not Found
|
|
804
828
|
status: 404
|
|
805
829
|
detail: Agent with ID 550e8400-e29b-41d4-a716-446655440000 not found
|
|
806
830
|
traceId: 550e8400-e29b-41d4-a716-446655440003
|
|
807
|
-
|
|
808
831
|
Conflict:
|
|
809
832
|
description: Conflict - Resource already exists or constraint violation
|
|
810
833
|
content:
|
|
811
834
|
application/problem+json:
|
|
812
835
|
schema:
|
|
813
|
-
$ref:
|
|
836
|
+
$ref: "#/components/schemas/Problem"
|
|
814
837
|
example:
|
|
815
838
|
type: https://api.llm.bluefly.io/problems/conflict
|
|
816
839
|
title: Conflict
|
|
817
840
|
status: 409
|
|
818
841
|
detail: Agent with name 'security-scanner' already exists in version 1.0.0
|
|
819
842
|
traceId: 550e8400-e29b-41d4-a716-446655440004
|
|
820
|
-
|
|
821
843
|
InternalServerError:
|
|
822
844
|
description: Internal server error
|
|
823
845
|
content:
|
|
824
846
|
application/problem+json:
|
|
825
847
|
schema:
|
|
826
|
-
$ref:
|
|
848
|
+
$ref: "#/components/schemas/Problem"
|
|
827
849
|
example:
|
|
828
850
|
type: https://api.llm.bluefly.io/problems/internal-error
|
|
829
851
|
title: Internal Server Error
|
|
830
852
|
status: 500
|
|
831
853
|
detail: An unexpected error occurred while processing your request
|
|
832
854
|
traceId: 550e8400-e29b-41d4-a716-446655440005
|
|
833
|
-
|
|
834
855
|
examples:
|
|
835
856
|
CreateWorkerAgentExample:
|
|
836
857
|
summary: Create a worker agent
|
|
@@ -872,14 +893,18 @@ components:
|
|
|
872
893
|
description: Run security analysis on code
|
|
873
894
|
input_schema:
|
|
874
895
|
type: object
|
|
875
|
-
required:
|
|
896
|
+
required:
|
|
897
|
+
- path
|
|
876
898
|
properties:
|
|
877
899
|
path:
|
|
878
900
|
type: string
|
|
879
901
|
severity:
|
|
880
902
|
type: string
|
|
881
|
-
enum:
|
|
882
|
-
|
|
903
|
+
enum:
|
|
904
|
+
- low
|
|
905
|
+
- medium
|
|
906
|
+
- high
|
|
907
|
+
- critical
|
|
883
908
|
CreateOrchestratorAgentExample:
|
|
884
909
|
summary: Create an orchestrator agent
|
|
885
910
|
value:
|
|
@@ -919,7 +944,6 @@ components:
|
|
|
919
944
|
type: action
|
|
920
945
|
runtime: llm
|
|
921
946
|
description: Coordinate execution of multi-agent workflows
|
|
922
|
-
|
|
923
947
|
UpdateAgentExample:
|
|
924
948
|
summary: Partial update of agent configuration
|
|
925
949
|
value:
|
|
@@ -932,7 +956,6 @@ components:
|
|
|
932
956
|
llm:
|
|
933
957
|
temperature: 0.05
|
|
934
958
|
maxTokens: 20000
|
|
935
|
-
|
|
936
959
|
AgentResponseExample:
|
|
937
960
|
summary: Complete agent response
|
|
938
961
|
value:
|
|
@@ -974,24 +997,28 @@ components:
|
|
|
974
997
|
description: Run security analysis on code
|
|
975
998
|
input_schema:
|
|
976
999
|
type: object
|
|
977
|
-
required:
|
|
1000
|
+
required:
|
|
1001
|
+
- path
|
|
978
1002
|
properties:
|
|
979
1003
|
path:
|
|
980
1004
|
type: string
|
|
981
1005
|
severity:
|
|
982
1006
|
type: string
|
|
983
|
-
enum:
|
|
1007
|
+
enum:
|
|
1008
|
+
- low
|
|
1009
|
+
- medium
|
|
1010
|
+
- high
|
|
1011
|
+
- critical
|
|
984
1012
|
status: active
|
|
985
|
-
createdAt:
|
|
986
|
-
updatedAt:
|
|
1013
|
+
createdAt: 2025-12-18T10:30:00Z
|
|
1014
|
+
updatedAt: 2025-12-18T10:30:00Z
|
|
987
1015
|
createdBy: user@example.com
|
|
988
1016
|
metrics:
|
|
989
1017
|
requestCount: 1247
|
|
990
1018
|
errorCount: 12
|
|
991
1019
|
averageResponseTime: 234.5
|
|
992
1020
|
uptime: 864000
|
|
993
|
-
lastActive:
|
|
994
|
-
|
|
1021
|
+
lastActive: 2025-12-18T14:25:00Z
|
|
995
1022
|
AgentsListExample:
|
|
996
1023
|
summary: List of agents with pagination
|
|
997
1024
|
value:
|
|
@@ -1017,8 +1044,8 @@ components:
|
|
|
1017
1044
|
type: action
|
|
1018
1045
|
runtime: llm
|
|
1019
1046
|
status: active
|
|
1020
|
-
createdAt:
|
|
1021
|
-
updatedAt:
|
|
1047
|
+
createdAt: 2025-12-18T10:30:00Z
|
|
1048
|
+
updatedAt: 2025-12-18T10:30:00Z
|
|
1022
1049
|
- id: 660e8400-e29b-41d4-a716-446655440001
|
|
1023
1050
|
apiVersion: ossa/v0.3.3
|
|
1024
1051
|
kind: Agent
|
|
@@ -1040,16 +1067,14 @@ components:
|
|
|
1040
1067
|
type: action
|
|
1041
1068
|
runtime: llm
|
|
1042
1069
|
status: active
|
|
1043
|
-
createdAt:
|
|
1044
|
-
updatedAt:
|
|
1070
|
+
createdAt: 2025-12-17T14:20:00Z
|
|
1071
|
+
updatedAt: 2025-12-18T09:15:00Z
|
|
1045
1072
|
total: 42
|
|
1046
1073
|
limit: 20
|
|
1047
1074
|
offset: 0
|
|
1048
|
-
|
|
1049
1075
|
tags:
|
|
1050
1076
|
- name: Agents
|
|
1051
1077
|
description: Agent lifecycle management (CRUD operations)
|
|
1052
|
-
|
|
1053
1078
|
x-ossa-metadata:
|
|
1054
1079
|
version: 0.3.3
|
|
1055
1080
|
compliance:
|
|
@@ -1070,3 +1095,8 @@ x-ossa-metadata:
|
|
|
1070
1095
|
tracing: true
|
|
1071
1096
|
metrics: true
|
|
1072
1097
|
logging: true
|
|
1098
|
+
x-ossa:
|
|
1099
|
+
version: 0.5.0
|
|
1100
|
+
agent:
|
|
1101
|
+
id: agent-crud-api
|
|
1102
|
+
type: gateway
|