@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
|
@@ -11,11 +11,9 @@ info:
|
|
|
11
11
|
url: https://openstandardagents.org
|
|
12
12
|
license:
|
|
13
13
|
name: MIT
|
|
14
|
-
|
|
15
14
|
servers:
|
|
16
15
|
- url: http://localhost:3000
|
|
17
16
|
description: Local development server
|
|
18
|
-
|
|
19
17
|
tags:
|
|
20
18
|
- name: Health
|
|
21
19
|
description: Health and readiness checks
|
|
@@ -33,15 +31,15 @@ tags:
|
|
|
33
31
|
description: Workspace initialization, discovery, and status
|
|
34
32
|
- name: Version
|
|
35
33
|
description: OSSA spec version detection and validation
|
|
36
|
-
|
|
37
34
|
paths:
|
|
38
35
|
/health:
|
|
39
36
|
get:
|
|
40
37
|
operationId: getHealth
|
|
41
38
|
summary: Health check
|
|
42
|
-
tags:
|
|
39
|
+
tags:
|
|
40
|
+
- Health
|
|
43
41
|
responses:
|
|
44
|
-
|
|
42
|
+
"200":
|
|
45
43
|
description: Server is healthy
|
|
46
44
|
content:
|
|
47
45
|
application/json:
|
|
@@ -50,19 +48,24 @@ paths:
|
|
|
50
48
|
properties:
|
|
51
49
|
status:
|
|
52
50
|
type: string
|
|
53
|
-
enum:
|
|
51
|
+
enum:
|
|
52
|
+
- ok
|
|
54
53
|
timestamp:
|
|
55
54
|
type: string
|
|
56
55
|
format: date-time
|
|
57
|
-
required:
|
|
58
|
-
|
|
56
|
+
required:
|
|
57
|
+
- status
|
|
58
|
+
- timestamp
|
|
59
|
+
x-ossa-capability: ossa-get-health
|
|
60
|
+
description: Health check
|
|
59
61
|
/ready:
|
|
60
62
|
get:
|
|
61
63
|
operationId: getReady
|
|
62
64
|
summary: Readiness check
|
|
63
|
-
tags:
|
|
65
|
+
tags:
|
|
66
|
+
- Health
|
|
64
67
|
responses:
|
|
65
|
-
|
|
68
|
+
"200":
|
|
66
69
|
description: Server is ready
|
|
67
70
|
content:
|
|
68
71
|
application/json:
|
|
@@ -71,64 +74,76 @@ paths:
|
|
|
71
74
|
properties:
|
|
72
75
|
ready:
|
|
73
76
|
type: boolean
|
|
74
|
-
required:
|
|
75
|
-
|
|
77
|
+
required:
|
|
78
|
+
- ready
|
|
79
|
+
x-ossa-capability: ossa-get-ready
|
|
80
|
+
description: Readiness check
|
|
76
81
|
/api/v1/manifests:
|
|
77
82
|
get:
|
|
78
83
|
operationId: listManifests
|
|
79
84
|
summary: List manifests in a directory
|
|
80
|
-
tags:
|
|
85
|
+
tags:
|
|
86
|
+
- Manifests
|
|
81
87
|
parameters:
|
|
82
88
|
- name: directory
|
|
83
89
|
in: query
|
|
84
90
|
schema:
|
|
85
91
|
type: string
|
|
86
|
-
default:
|
|
92
|
+
default: .
|
|
87
93
|
description: Directory to scan
|
|
88
94
|
- name: recursive
|
|
89
95
|
in: query
|
|
90
96
|
schema:
|
|
91
97
|
type: string
|
|
92
|
-
enum:
|
|
93
|
-
|
|
98
|
+
enum:
|
|
99
|
+
- "true"
|
|
100
|
+
- "false"
|
|
101
|
+
default: "true"
|
|
94
102
|
description: Whether to scan recursively
|
|
95
103
|
responses:
|
|
96
|
-
|
|
104
|
+
"200":
|
|
97
105
|
description: List of manifests found
|
|
98
106
|
content:
|
|
99
107
|
application/json:
|
|
100
108
|
schema:
|
|
101
|
-
$ref:
|
|
102
|
-
|
|
103
|
-
$ref:
|
|
104
|
-
|
|
109
|
+
$ref: "#/components/schemas/ManifestListResult"
|
|
110
|
+
"500":
|
|
111
|
+
$ref: "#/components/responses/InternalError"
|
|
112
|
+
x-ossa-capability: ossa-list-manifests
|
|
113
|
+
description: List manifests in a directory
|
|
105
114
|
post:
|
|
106
115
|
operationId: createManifest
|
|
107
116
|
summary: Scaffold a new manifest
|
|
108
|
-
tags:
|
|
117
|
+
tags:
|
|
118
|
+
- Manifests
|
|
109
119
|
requestBody:
|
|
110
120
|
required: true
|
|
111
121
|
content:
|
|
112
122
|
application/json:
|
|
113
123
|
schema:
|
|
114
|
-
$ref:
|
|
124
|
+
$ref: "#/components/schemas/CreateManifestInput"
|
|
115
125
|
responses:
|
|
116
|
-
|
|
126
|
+
"201":
|
|
117
127
|
description: Manifest created
|
|
118
128
|
content:
|
|
119
129
|
application/json:
|
|
120
130
|
schema:
|
|
121
|
-
$ref:
|
|
122
|
-
|
|
123
|
-
$ref:
|
|
124
|
-
|
|
125
|
-
$ref:
|
|
126
|
-
|
|
131
|
+
$ref: "#/components/schemas/CreateManifestResult"
|
|
132
|
+
"400":
|
|
133
|
+
$ref: "#/components/responses/ValidationError"
|
|
134
|
+
"500":
|
|
135
|
+
$ref: "#/components/responses/InternalError"
|
|
136
|
+
x-ossa-capability: ossa-create-manifest
|
|
137
|
+
x-ossa-autonomy:
|
|
138
|
+
level: supervised
|
|
139
|
+
approval_required: true
|
|
140
|
+
description: Scaffold a new manifest
|
|
127
141
|
/api/v1/manifests/validate:
|
|
128
142
|
post:
|
|
129
143
|
operationId: validateManifest
|
|
130
144
|
summary: Validate an OSSA manifest
|
|
131
|
-
tags:
|
|
145
|
+
tags:
|
|
146
|
+
- Manifests
|
|
132
147
|
requestBody:
|
|
133
148
|
required: true
|
|
134
149
|
content:
|
|
@@ -151,59 +166,74 @@ paths:
|
|
|
151
166
|
description: Enable strict validation mode
|
|
152
167
|
reasoning:
|
|
153
168
|
type: string
|
|
154
|
-
enum:
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
169
|
+
enum:
|
|
170
|
+
- sequential
|
|
171
|
+
- tree_of_thought
|
|
172
|
+
- react
|
|
173
|
+
- plan_and_execute
|
|
174
|
+
description: |
|
|
175
|
+
Require or validate cognition pattern (v0.5.0 draft). When set, checks that manifest cognition.pattern matches this value. Fails validation if cognition block is absent or pattern mismatches.
|
|
159
176
|
responses:
|
|
160
|
-
|
|
177
|
+
"200":
|
|
161
178
|
description: Validation result
|
|
162
179
|
content:
|
|
163
180
|
application/json:
|
|
164
181
|
schema:
|
|
165
|
-
$ref:
|
|
166
|
-
|
|
167
|
-
$ref:
|
|
168
|
-
|
|
182
|
+
$ref: "#/components/schemas/ValidationResult"
|
|
183
|
+
"400":
|
|
184
|
+
$ref: "#/components/responses/ValidationError"
|
|
185
|
+
x-ossa-capability: ossa-validate-manifest
|
|
186
|
+
x-ossa-autonomy:
|
|
187
|
+
level: supervised
|
|
188
|
+
approval_required: true
|
|
189
|
+
description: Validate an OSSA manifest
|
|
169
190
|
/api/v1/manifests/inspect:
|
|
170
191
|
post:
|
|
171
192
|
operationId: inspectManifest
|
|
172
193
|
summary: Inspect a manifest file
|
|
173
|
-
tags:
|
|
194
|
+
tags:
|
|
195
|
+
- Manifests
|
|
174
196
|
requestBody:
|
|
175
197
|
required: true
|
|
176
198
|
content:
|
|
177
199
|
application/json:
|
|
178
200
|
schema:
|
|
179
201
|
type: object
|
|
180
|
-
required:
|
|
202
|
+
required:
|
|
203
|
+
- path
|
|
181
204
|
properties:
|
|
182
205
|
path:
|
|
183
206
|
type: string
|
|
184
207
|
description: Path to manifest file
|
|
185
208
|
responses:
|
|
186
|
-
|
|
209
|
+
"200":
|
|
187
210
|
description: Manifest inspection result
|
|
188
211
|
content:
|
|
189
212
|
application/json:
|
|
190
213
|
schema:
|
|
191
|
-
$ref:
|
|
192
|
-
|
|
193
|
-
$ref:
|
|
194
|
-
|
|
214
|
+
$ref: "#/components/schemas/InspectResult"
|
|
215
|
+
"400":
|
|
216
|
+
$ref: "#/components/responses/ValidationError"
|
|
217
|
+
x-ossa-capability: ossa-inspect-manifest
|
|
218
|
+
x-ossa-autonomy:
|
|
219
|
+
level: supervised
|
|
220
|
+
approval_required: true
|
|
221
|
+
description: Inspect a manifest file
|
|
195
222
|
/api/v1/manifests/diff:
|
|
196
223
|
post:
|
|
197
224
|
operationId: diffManifests
|
|
198
225
|
summary: Diff two manifests
|
|
199
|
-
tags:
|
|
226
|
+
tags:
|
|
227
|
+
- Manifests
|
|
200
228
|
requestBody:
|
|
201
229
|
required: true
|
|
202
230
|
content:
|
|
203
231
|
application/json:
|
|
204
232
|
schema:
|
|
205
233
|
type: object
|
|
206
|
-
required:
|
|
234
|
+
required:
|
|
235
|
+
- path_a
|
|
236
|
+
- path_b
|
|
207
237
|
properties:
|
|
208
238
|
path_a:
|
|
209
239
|
type: string
|
|
@@ -212,27 +242,33 @@ paths:
|
|
|
212
242
|
type: string
|
|
213
243
|
description: Path to second manifest
|
|
214
244
|
responses:
|
|
215
|
-
|
|
245
|
+
"200":
|
|
216
246
|
description: Diff result
|
|
217
247
|
content:
|
|
218
248
|
application/json:
|
|
219
249
|
schema:
|
|
220
|
-
$ref:
|
|
221
|
-
|
|
222
|
-
$ref:
|
|
223
|
-
|
|
250
|
+
$ref: "#/components/schemas/DiffResult"
|
|
251
|
+
"400":
|
|
252
|
+
$ref: "#/components/responses/ValidationError"
|
|
253
|
+
x-ossa-capability: ossa-diff-manifests
|
|
254
|
+
x-ossa-autonomy:
|
|
255
|
+
level: supervised
|
|
256
|
+
approval_required: true
|
|
257
|
+
description: Diff two manifests
|
|
224
258
|
/api/v1/manifests/migrate:
|
|
225
259
|
post:
|
|
226
260
|
operationId: migrateManifest
|
|
227
261
|
summary: Migrate manifest to a target version
|
|
228
|
-
tags:
|
|
262
|
+
tags:
|
|
263
|
+
- Manifests
|
|
229
264
|
requestBody:
|
|
230
265
|
required: true
|
|
231
266
|
content:
|
|
232
267
|
application/json:
|
|
233
268
|
schema:
|
|
234
269
|
type: object
|
|
235
|
-
required:
|
|
270
|
+
required:
|
|
271
|
+
- path
|
|
236
272
|
properties:
|
|
237
273
|
path:
|
|
238
274
|
type: string
|
|
@@ -244,53 +280,66 @@ paths:
|
|
|
244
280
|
type: string
|
|
245
281
|
description: Output directory for migrated manifest
|
|
246
282
|
responses:
|
|
247
|
-
|
|
283
|
+
"200":
|
|
248
284
|
description: Migration result
|
|
249
285
|
content:
|
|
250
286
|
application/json:
|
|
251
287
|
schema:
|
|
252
|
-
$ref:
|
|
253
|
-
|
|
254
|
-
$ref:
|
|
255
|
-
|
|
288
|
+
$ref: "#/components/schemas/MigrateResult"
|
|
289
|
+
"400":
|
|
290
|
+
$ref: "#/components/responses/ValidationError"
|
|
291
|
+
x-ossa-capability: ossa-migrate-manifest
|
|
292
|
+
x-ossa-autonomy:
|
|
293
|
+
level: supervised
|
|
294
|
+
approval_required: true
|
|
295
|
+
description: Migrate manifest to a target version
|
|
256
296
|
/api/v1/wizard/definitions:
|
|
257
297
|
get:
|
|
258
298
|
operationId: getWizardDefinitions
|
|
259
299
|
summary: Get wizard step definitions for a kind and mode
|
|
260
300
|
description: Returns step definitions (id, title, description, fields) without session. Use to drive UI wizards.
|
|
261
|
-
tags:
|
|
301
|
+
tags:
|
|
302
|
+
- Wizard
|
|
262
303
|
parameters:
|
|
263
304
|
- name: kind
|
|
264
305
|
in: query
|
|
265
306
|
schema:
|
|
266
307
|
type: string
|
|
267
|
-
enum:
|
|
308
|
+
enum:
|
|
309
|
+
- Agent
|
|
310
|
+
- Skill
|
|
311
|
+
- MCPServer
|
|
268
312
|
default: Agent
|
|
269
313
|
- name: mode
|
|
270
314
|
in: query
|
|
271
315
|
schema:
|
|
272
316
|
type: string
|
|
273
|
-
enum:
|
|
317
|
+
enum:
|
|
318
|
+
- quick
|
|
319
|
+
- guided
|
|
320
|
+
- expert
|
|
274
321
|
default: guided
|
|
275
322
|
responses:
|
|
276
|
-
|
|
323
|
+
"200":
|
|
277
324
|
description: Step definitions for the wizard
|
|
278
325
|
content:
|
|
279
326
|
application/json:
|
|
280
327
|
schema:
|
|
281
328
|
type: object
|
|
282
|
-
required:
|
|
329
|
+
required:
|
|
330
|
+
- steps
|
|
283
331
|
properties:
|
|
284
332
|
steps:
|
|
285
333
|
type: array
|
|
286
334
|
items:
|
|
287
|
-
$ref:
|
|
288
|
-
|
|
335
|
+
$ref: "#/components/schemas/StepDefinition"
|
|
336
|
+
x-ossa-capability: ossa-get-wizard-definitions
|
|
289
337
|
/api/v1/wizard/sessions:
|
|
290
338
|
post:
|
|
291
339
|
operationId: createWizardSession
|
|
292
340
|
summary: Create a new wizard session
|
|
293
|
-
tags:
|
|
341
|
+
tags:
|
|
342
|
+
- Wizard
|
|
294
343
|
requestBody:
|
|
295
344
|
required: true
|
|
296
345
|
content:
|
|
@@ -300,66 +349,81 @@ paths:
|
|
|
300
349
|
properties:
|
|
301
350
|
kind:
|
|
302
351
|
type: string
|
|
303
|
-
enum:
|
|
352
|
+
enum:
|
|
353
|
+
- Agent
|
|
354
|
+
- Skill
|
|
355
|
+
- MCPServer
|
|
304
356
|
default: Agent
|
|
305
357
|
mode:
|
|
306
358
|
type: string
|
|
307
|
-
enum:
|
|
359
|
+
enum:
|
|
360
|
+
- quick
|
|
361
|
+
- guided
|
|
362
|
+
- expert
|
|
308
363
|
default: guided
|
|
309
364
|
template:
|
|
310
365
|
type: string
|
|
311
366
|
description: Template ID to pre-populate from
|
|
312
367
|
responses:
|
|
313
|
-
|
|
368
|
+
"201":
|
|
314
369
|
description: Session created
|
|
315
370
|
content:
|
|
316
371
|
application/json:
|
|
317
372
|
schema:
|
|
318
|
-
$ref:
|
|
319
|
-
|
|
320
|
-
$ref:
|
|
321
|
-
|
|
373
|
+
$ref: "#/components/schemas/WizardSession"
|
|
374
|
+
"400":
|
|
375
|
+
$ref: "#/components/responses/ValidationError"
|
|
376
|
+
x-ossa-capability: ossa-create-wizard-session
|
|
377
|
+
x-ossa-autonomy:
|
|
378
|
+
level: supervised
|
|
379
|
+
approval_required: true
|
|
380
|
+
description: Create a new wizard session
|
|
322
381
|
/api/v1/wizard/sessions/{id}:
|
|
323
382
|
get:
|
|
324
383
|
operationId: getWizardSession
|
|
325
384
|
summary: Get wizard session state
|
|
326
|
-
tags:
|
|
385
|
+
tags:
|
|
386
|
+
- Wizard
|
|
327
387
|
parameters:
|
|
328
|
-
- $ref:
|
|
388
|
+
- $ref: "#/components/parameters/SessionId"
|
|
329
389
|
responses:
|
|
330
|
-
|
|
390
|
+
"200":
|
|
331
391
|
description: Session state
|
|
332
392
|
content:
|
|
333
393
|
application/json:
|
|
334
394
|
schema:
|
|
335
|
-
$ref:
|
|
336
|
-
|
|
337
|
-
$ref:
|
|
338
|
-
|
|
395
|
+
$ref: "#/components/schemas/WizardSession"
|
|
396
|
+
"404":
|
|
397
|
+
$ref: "#/components/responses/NotFound"
|
|
398
|
+
x-ossa-capability: ossa-get-wizard-session
|
|
399
|
+
description: Get wizard session state
|
|
339
400
|
/api/v1/wizard/sessions/{id}/steps/current:
|
|
340
401
|
get:
|
|
341
402
|
operationId: getCurrentWizardStep
|
|
342
403
|
summary: Get current step definition with fields
|
|
343
|
-
tags:
|
|
404
|
+
tags:
|
|
405
|
+
- Wizard
|
|
344
406
|
parameters:
|
|
345
|
-
- $ref:
|
|
407
|
+
- $ref: "#/components/parameters/SessionId"
|
|
346
408
|
responses:
|
|
347
|
-
|
|
409
|
+
"200":
|
|
348
410
|
description: Current step definition
|
|
349
411
|
content:
|
|
350
412
|
application/json:
|
|
351
413
|
schema:
|
|
352
|
-
$ref:
|
|
353
|
-
|
|
354
|
-
$ref:
|
|
355
|
-
|
|
414
|
+
$ref: "#/components/schemas/StepDefinition"
|
|
415
|
+
"404":
|
|
416
|
+
$ref: "#/components/responses/NotFound"
|
|
417
|
+
x-ossa-capability: ossa-get-current-wizard-step
|
|
418
|
+
description: Get current step definition with fields
|
|
356
419
|
/api/v1/wizard/sessions/{id}/steps/{stepId}:
|
|
357
420
|
post:
|
|
358
421
|
operationId: submitWizardStep
|
|
359
422
|
summary: Submit data for a wizard step
|
|
360
|
-
tags:
|
|
423
|
+
tags:
|
|
424
|
+
- Wizard
|
|
361
425
|
parameters:
|
|
362
|
-
- $ref:
|
|
426
|
+
- $ref: "#/components/parameters/SessionId"
|
|
363
427
|
- name: stepId
|
|
364
428
|
in: path
|
|
365
429
|
required: true
|
|
@@ -375,151 +439,182 @@ paths:
|
|
|
375
439
|
additionalProperties: true
|
|
376
440
|
description: Step field data
|
|
377
441
|
responses:
|
|
378
|
-
|
|
442
|
+
"200":
|
|
379
443
|
description: Step submission result
|
|
380
444
|
content:
|
|
381
445
|
application/json:
|
|
382
446
|
schema:
|
|
383
|
-
$ref:
|
|
384
|
-
|
|
385
|
-
$ref:
|
|
386
|
-
|
|
387
|
-
$ref:
|
|
388
|
-
|
|
447
|
+
$ref: "#/components/schemas/StepResult"
|
|
448
|
+
"400":
|
|
449
|
+
$ref: "#/components/responses/ValidationError"
|
|
450
|
+
"404":
|
|
451
|
+
$ref: "#/components/responses/NotFound"
|
|
452
|
+
x-ossa-capability: ossa-submit-wizard-step
|
|
453
|
+
x-ossa-autonomy:
|
|
454
|
+
level: supervised
|
|
455
|
+
approval_required: true
|
|
456
|
+
description: Submit data for a wizard step
|
|
389
457
|
/api/v1/wizard/sessions/{id}/undo:
|
|
390
458
|
post:
|
|
391
459
|
operationId: undoWizardStep
|
|
392
460
|
summary: Undo the last completed step
|
|
393
|
-
tags:
|
|
461
|
+
tags:
|
|
462
|
+
- Wizard
|
|
394
463
|
parameters:
|
|
395
|
-
- $ref:
|
|
464
|
+
- $ref: "#/components/parameters/SessionId"
|
|
396
465
|
responses:
|
|
397
|
-
|
|
466
|
+
"200":
|
|
398
467
|
description: Undo result
|
|
399
468
|
content:
|
|
400
469
|
application/json:
|
|
401
470
|
schema:
|
|
402
|
-
$ref:
|
|
403
|
-
|
|
404
|
-
$ref:
|
|
405
|
-
|
|
471
|
+
$ref: "#/components/schemas/StepResult"
|
|
472
|
+
"404":
|
|
473
|
+
$ref: "#/components/responses/NotFound"
|
|
474
|
+
x-ossa-capability: ossa-undo-wizard-step
|
|
475
|
+
x-ossa-autonomy:
|
|
476
|
+
level: supervised
|
|
477
|
+
approval_required: true
|
|
478
|
+
description: Undo the last completed step
|
|
406
479
|
/api/v1/wizard/sessions/{id}/complete:
|
|
407
480
|
post:
|
|
408
481
|
operationId: completeWizardSession
|
|
409
482
|
summary: Complete wizard and generate manifest
|
|
410
|
-
tags:
|
|
483
|
+
tags:
|
|
484
|
+
- Wizard
|
|
411
485
|
parameters:
|
|
412
|
-
- $ref:
|
|
486
|
+
- $ref: "#/components/parameters/SessionId"
|
|
413
487
|
responses:
|
|
414
|
-
|
|
488
|
+
"200":
|
|
415
489
|
description: Completed manifest
|
|
416
490
|
content:
|
|
417
491
|
application/json:
|
|
418
492
|
schema:
|
|
419
|
-
$ref:
|
|
420
|
-
|
|
421
|
-
$ref:
|
|
422
|
-
|
|
493
|
+
$ref: "#/components/schemas/WizardCompleteResult"
|
|
494
|
+
"404":
|
|
495
|
+
$ref: "#/components/responses/NotFound"
|
|
496
|
+
x-ossa-capability: ossa-complete-wizard-session
|
|
497
|
+
x-ossa-autonomy:
|
|
498
|
+
level: supervised
|
|
499
|
+
approval_required: true
|
|
500
|
+
description: Complete wizard and generate manifest
|
|
423
501
|
/api/v1/wizard/templates:
|
|
424
502
|
get:
|
|
425
503
|
operationId: listWizardTemplates
|
|
426
504
|
summary: List available agent templates
|
|
427
|
-
tags:
|
|
505
|
+
tags:
|
|
506
|
+
- Wizard
|
|
428
507
|
responses:
|
|
429
|
-
|
|
508
|
+
"200":
|
|
430
509
|
description: List of templates
|
|
431
510
|
content:
|
|
432
511
|
application/json:
|
|
433
512
|
schema:
|
|
434
513
|
type: array
|
|
435
514
|
items:
|
|
436
|
-
$ref:
|
|
437
|
-
|
|
515
|
+
$ref: "#/components/schemas/AgentTemplate"
|
|
516
|
+
x-ossa-capability: ossa-list-wizard-templates
|
|
517
|
+
description: List available agent templates
|
|
438
518
|
/api/v1/export:
|
|
439
519
|
post:
|
|
440
520
|
operationId: exportManifest
|
|
441
521
|
summary: Export manifest to platform-specific format
|
|
442
|
-
tags:
|
|
522
|
+
tags:
|
|
523
|
+
- Export
|
|
443
524
|
requestBody:
|
|
444
525
|
required: true
|
|
445
526
|
content:
|
|
446
527
|
application/json:
|
|
447
528
|
schema:
|
|
448
|
-
$ref:
|
|
529
|
+
$ref: "#/components/schemas/ExportInput"
|
|
449
530
|
responses:
|
|
450
|
-
|
|
531
|
+
"200":
|
|
451
532
|
description: Export result
|
|
452
533
|
content:
|
|
453
534
|
application/json:
|
|
454
535
|
schema:
|
|
455
|
-
$ref:
|
|
456
|
-
|
|
457
|
-
$ref:
|
|
458
|
-
|
|
536
|
+
$ref: "#/components/schemas/ExportResult"
|
|
537
|
+
"400":
|
|
538
|
+
$ref: "#/components/responses/ValidationError"
|
|
539
|
+
x-ossa-capability: ossa-export-manifest
|
|
540
|
+
x-ossa-autonomy:
|
|
541
|
+
level: supervised
|
|
542
|
+
approval_required: true
|
|
543
|
+
description: Export manifest to platform-specific format
|
|
459
544
|
/api/v1/export/platforms:
|
|
460
545
|
get:
|
|
461
546
|
operationId: listExportPlatforms
|
|
462
547
|
summary: List available export platforms
|
|
463
|
-
tags:
|
|
548
|
+
tags:
|
|
549
|
+
- Export
|
|
464
550
|
responses:
|
|
465
|
-
|
|
551
|
+
"200":
|
|
466
552
|
description: Platform list
|
|
467
553
|
content:
|
|
468
554
|
application/json:
|
|
469
555
|
schema:
|
|
470
556
|
type: array
|
|
471
557
|
items:
|
|
472
|
-
$ref:
|
|
473
|
-
|
|
558
|
+
$ref: "#/components/schemas/PlatformInfo"
|
|
559
|
+
x-ossa-capability: ossa-list-export-platforms
|
|
560
|
+
description: List available export platforms
|
|
474
561
|
/api/v1/convert:
|
|
475
562
|
post:
|
|
476
563
|
operationId: convertManifest
|
|
477
564
|
summary: Convert manifest to platform config
|
|
478
|
-
tags:
|
|
565
|
+
tags:
|
|
566
|
+
- Convert
|
|
479
567
|
requestBody:
|
|
480
568
|
required: true
|
|
481
569
|
content:
|
|
482
570
|
application/json:
|
|
483
571
|
schema:
|
|
484
|
-
$ref:
|
|
572
|
+
$ref: "#/components/schemas/ConvertInput"
|
|
485
573
|
responses:
|
|
486
|
-
|
|
574
|
+
"200":
|
|
487
575
|
description: Conversion result
|
|
488
576
|
content:
|
|
489
577
|
application/json:
|
|
490
578
|
schema:
|
|
491
|
-
$ref:
|
|
492
|
-
|
|
493
|
-
$ref:
|
|
494
|
-
|
|
579
|
+
$ref: "#/components/schemas/ConvertResult"
|
|
580
|
+
"400":
|
|
581
|
+
$ref: "#/components/responses/ValidationError"
|
|
582
|
+
x-ossa-capability: ossa-convert-manifest
|
|
583
|
+
x-ossa-autonomy:
|
|
584
|
+
level: supervised
|
|
585
|
+
approval_required: true
|
|
586
|
+
description: Convert manifest to platform config
|
|
495
587
|
/api/v1/convert/targets:
|
|
496
588
|
get:
|
|
497
589
|
operationId: listConvertTargets
|
|
498
590
|
summary: List available conversion targets
|
|
499
|
-
tags:
|
|
591
|
+
tags:
|
|
592
|
+
- Convert
|
|
500
593
|
responses:
|
|
501
|
-
|
|
594
|
+
"200":
|
|
502
595
|
description: Target list
|
|
503
596
|
content:
|
|
504
597
|
application/json:
|
|
505
598
|
schema:
|
|
506
599
|
type: array
|
|
507
600
|
items:
|
|
508
|
-
$ref:
|
|
509
|
-
|
|
601
|
+
$ref: "#/components/schemas/PlatformInfo"
|
|
602
|
+
x-ossa-capability: ossa-list-convert-targets
|
|
603
|
+
description: List available conversion targets
|
|
510
604
|
/api/v1/skills:
|
|
511
605
|
get:
|
|
512
606
|
operationId: listSkills
|
|
513
607
|
summary: List skill manifests in a directory
|
|
514
|
-
tags:
|
|
608
|
+
tags:
|
|
609
|
+
- Skills
|
|
515
610
|
parameters:
|
|
516
611
|
- name: directory
|
|
517
612
|
in: query
|
|
518
613
|
schema:
|
|
519
614
|
type: string
|
|
520
|
-
default:
|
|
615
|
+
default: .
|
|
521
616
|
responses:
|
|
522
|
-
|
|
617
|
+
"200":
|
|
523
618
|
description: List of skills
|
|
524
619
|
content:
|
|
525
620
|
application/json:
|
|
@@ -528,57 +623,70 @@ paths:
|
|
|
528
623
|
items:
|
|
529
624
|
type: object
|
|
530
625
|
additionalProperties: true
|
|
531
|
-
|
|
626
|
+
x-ossa-capability: ossa-list-skills
|
|
627
|
+
description: List skill manifests in a directory
|
|
532
628
|
post:
|
|
533
629
|
operationId: createSkill
|
|
534
630
|
summary: Create a new skill manifest
|
|
535
|
-
tags:
|
|
631
|
+
tags:
|
|
632
|
+
- Skills
|
|
536
633
|
requestBody:
|
|
537
634
|
required: true
|
|
538
635
|
content:
|
|
539
636
|
application/json:
|
|
540
637
|
schema:
|
|
541
|
-
$ref:
|
|
638
|
+
$ref: "#/components/schemas/CreateSkillInput"
|
|
542
639
|
responses:
|
|
543
|
-
|
|
640
|
+
"201":
|
|
544
641
|
description: Skill created
|
|
545
642
|
content:
|
|
546
643
|
application/json:
|
|
547
644
|
schema:
|
|
548
645
|
type: object
|
|
549
646
|
additionalProperties: true
|
|
550
|
-
|
|
551
|
-
$ref:
|
|
552
|
-
|
|
647
|
+
"400":
|
|
648
|
+
$ref: "#/components/responses/ValidationError"
|
|
649
|
+
x-ossa-capability: ossa-create-skill
|
|
650
|
+
x-ossa-autonomy:
|
|
651
|
+
level: supervised
|
|
652
|
+
approval_required: true
|
|
653
|
+
description: Create a new skill manifest
|
|
553
654
|
/api/v1/skills/validate:
|
|
554
655
|
post:
|
|
555
656
|
operationId: validateSkill
|
|
556
657
|
summary: Validate a skill manifest
|
|
557
|
-
tags:
|
|
658
|
+
tags:
|
|
659
|
+
- Skills
|
|
558
660
|
requestBody:
|
|
559
661
|
required: true
|
|
560
662
|
content:
|
|
561
663
|
application/json:
|
|
562
664
|
schema:
|
|
563
665
|
type: object
|
|
564
|
-
required:
|
|
666
|
+
required:
|
|
667
|
+
- skill
|
|
565
668
|
properties:
|
|
566
669
|
skill:
|
|
567
670
|
type: object
|
|
568
671
|
additionalProperties: true
|
|
569
672
|
responses:
|
|
570
|
-
|
|
673
|
+
"200":
|
|
571
674
|
description: Validation result
|
|
572
675
|
content:
|
|
573
676
|
application/json:
|
|
574
677
|
schema:
|
|
575
|
-
$ref:
|
|
576
|
-
|
|
678
|
+
$ref: "#/components/schemas/ValidationResult"
|
|
679
|
+
x-ossa-capability: ossa-validate-skill
|
|
680
|
+
x-ossa-autonomy:
|
|
681
|
+
level: supervised
|
|
682
|
+
approval_required: true
|
|
683
|
+
description: Validate a skill manifest
|
|
577
684
|
/api/v1/workspace/init:
|
|
578
685
|
post:
|
|
579
686
|
operationId: initWorkspace
|
|
580
687
|
summary: Initialize an OSSA workspace
|
|
581
|
-
tags:
|
|
688
|
+
tags:
|
|
689
|
+
- Workspace
|
|
582
690
|
requestBody:
|
|
583
691
|
required: true
|
|
584
692
|
content:
|
|
@@ -588,11 +696,11 @@ paths:
|
|
|
588
696
|
properties:
|
|
589
697
|
directory:
|
|
590
698
|
type: string
|
|
591
|
-
default:
|
|
699
|
+
default: .
|
|
592
700
|
name:
|
|
593
701
|
type: string
|
|
594
702
|
responses:
|
|
595
|
-
|
|
703
|
+
"200":
|
|
596
704
|
description: Init result
|
|
597
705
|
content:
|
|
598
706
|
application/json:
|
|
@@ -607,12 +715,17 @@ paths:
|
|
|
607
715
|
type: array
|
|
608
716
|
items:
|
|
609
717
|
type: string
|
|
610
|
-
|
|
718
|
+
x-ossa-capability: ossa-init-workspace
|
|
719
|
+
x-ossa-autonomy:
|
|
720
|
+
level: supervised
|
|
721
|
+
approval_required: true
|
|
722
|
+
description: Initialize an OSSA workspace
|
|
611
723
|
/api/v1/workspace/discover:
|
|
612
724
|
post:
|
|
613
725
|
operationId: discoverWorkspace
|
|
614
726
|
summary: Discover agents in workspace
|
|
615
|
-
tags:
|
|
727
|
+
tags:
|
|
728
|
+
- Workspace
|
|
616
729
|
requestBody:
|
|
617
730
|
required: true
|
|
618
731
|
content:
|
|
@@ -622,41 +735,48 @@ paths:
|
|
|
622
735
|
properties:
|
|
623
736
|
directory:
|
|
624
737
|
type: string
|
|
625
|
-
default:
|
|
738
|
+
default: .
|
|
626
739
|
responses:
|
|
627
|
-
|
|
740
|
+
"200":
|
|
628
741
|
description: Discovery result
|
|
629
742
|
content:
|
|
630
743
|
application/json:
|
|
631
744
|
schema:
|
|
632
|
-
$ref:
|
|
633
|
-
|
|
745
|
+
$ref: "#/components/schemas/DiscoveryResult"
|
|
746
|
+
x-ossa-capability: ossa-discover-workspace
|
|
747
|
+
x-ossa-autonomy:
|
|
748
|
+
level: supervised
|
|
749
|
+
approval_required: true
|
|
750
|
+
description: Discover agents in workspace
|
|
634
751
|
/api/v1/workspace/status:
|
|
635
752
|
get:
|
|
636
753
|
operationId: getWorkspaceStatus
|
|
637
754
|
summary: Get workspace status
|
|
638
|
-
tags:
|
|
755
|
+
tags:
|
|
756
|
+
- Workspace
|
|
639
757
|
parameters:
|
|
640
758
|
- name: directory
|
|
641
759
|
in: query
|
|
642
760
|
schema:
|
|
643
761
|
type: string
|
|
644
|
-
default:
|
|
762
|
+
default: .
|
|
645
763
|
responses:
|
|
646
|
-
|
|
764
|
+
"200":
|
|
647
765
|
description: Workspace status
|
|
648
766
|
content:
|
|
649
767
|
application/json:
|
|
650
768
|
schema:
|
|
651
|
-
$ref:
|
|
652
|
-
|
|
769
|
+
$ref: "#/components/schemas/WorkspaceStatus"
|
|
770
|
+
x-ossa-capability: ossa-get-workspace-status
|
|
771
|
+
description: Get workspace status
|
|
653
772
|
/api/v1/version:
|
|
654
773
|
get:
|
|
655
774
|
operationId: getVersion
|
|
656
775
|
summary: Get current OSSA spec version
|
|
657
|
-
tags:
|
|
776
|
+
tags:
|
|
777
|
+
- Version
|
|
658
778
|
responses:
|
|
659
|
-
|
|
779
|
+
"200":
|
|
660
780
|
description: Version info
|
|
661
781
|
content:
|
|
662
782
|
application/json:
|
|
@@ -669,25 +789,28 @@ paths:
|
|
|
669
789
|
type: array
|
|
670
790
|
items:
|
|
671
791
|
type: string
|
|
672
|
-
|
|
792
|
+
x-ossa-capability: ossa-get-version
|
|
793
|
+
description: Get current OSSA spec version
|
|
673
794
|
/api/v1/version/detect:
|
|
674
795
|
post:
|
|
675
796
|
operationId: detectVersion
|
|
676
797
|
summary: Detect the OSSA version of a manifest
|
|
677
|
-
tags:
|
|
798
|
+
tags:
|
|
799
|
+
- Version
|
|
678
800
|
requestBody:
|
|
679
801
|
required: true
|
|
680
802
|
content:
|
|
681
803
|
application/json:
|
|
682
804
|
schema:
|
|
683
805
|
type: object
|
|
684
|
-
required:
|
|
806
|
+
required:
|
|
807
|
+
- manifest
|
|
685
808
|
properties:
|
|
686
809
|
manifest:
|
|
687
810
|
type: object
|
|
688
811
|
additionalProperties: true
|
|
689
812
|
responses:
|
|
690
|
-
|
|
813
|
+
"200":
|
|
691
814
|
description: Detected version
|
|
692
815
|
content:
|
|
693
816
|
application/json:
|
|
@@ -698,7 +821,11 @@ paths:
|
|
|
698
821
|
type: string
|
|
699
822
|
confidence:
|
|
700
823
|
type: number
|
|
701
|
-
|
|
824
|
+
x-ossa-capability: ossa-detect-version
|
|
825
|
+
x-ossa-autonomy:
|
|
826
|
+
level: supervised
|
|
827
|
+
approval_required: true
|
|
828
|
+
description: Detect the OSSA version of a manifest
|
|
702
829
|
components:
|
|
703
830
|
parameters:
|
|
704
831
|
SessionId:
|
|
@@ -709,7 +836,6 @@ components:
|
|
|
709
836
|
type: string
|
|
710
837
|
format: uuid
|
|
711
838
|
description: Wizard session ID
|
|
712
|
-
|
|
713
839
|
responses:
|
|
714
840
|
ValidationError:
|
|
715
841
|
description: Validation error
|
|
@@ -729,7 +855,6 @@ components:
|
|
|
729
855
|
type: string
|
|
730
856
|
message:
|
|
731
857
|
type: string
|
|
732
|
-
|
|
733
858
|
NotFound:
|
|
734
859
|
description: Resource not found
|
|
735
860
|
content:
|
|
@@ -739,7 +864,6 @@ components:
|
|
|
739
864
|
properties:
|
|
740
865
|
error:
|
|
741
866
|
type: string
|
|
742
|
-
|
|
743
867
|
InternalError:
|
|
744
868
|
description: Internal server error
|
|
745
869
|
content:
|
|
@@ -751,15 +875,15 @@ components:
|
|
|
751
875
|
type: string
|
|
752
876
|
requestId:
|
|
753
877
|
type: string
|
|
754
|
-
|
|
755
878
|
schemas:
|
|
756
879
|
CreateManifestInput:
|
|
757
880
|
type: object
|
|
758
|
-
required:
|
|
881
|
+
required:
|
|
882
|
+
- name
|
|
759
883
|
properties:
|
|
760
884
|
name:
|
|
761
885
|
type: string
|
|
762
|
-
pattern:
|
|
886
|
+
pattern: ^[a-z0-9]([a-z0-9-]*[a-z0-9])?$
|
|
763
887
|
output_dir:
|
|
764
888
|
type: string
|
|
765
889
|
description:
|
|
@@ -768,10 +892,15 @@ components:
|
|
|
768
892
|
type: string
|
|
769
893
|
type:
|
|
770
894
|
type: string
|
|
771
|
-
enum:
|
|
895
|
+
enum:
|
|
896
|
+
- worker
|
|
897
|
+
- orchestrator
|
|
898
|
+
- reviewer
|
|
899
|
+
- analyzer
|
|
900
|
+
- executor
|
|
901
|
+
- approver
|
|
772
902
|
version:
|
|
773
903
|
type: string
|
|
774
|
-
|
|
775
904
|
CreateManifestResult:
|
|
776
905
|
type: object
|
|
777
906
|
properties:
|
|
@@ -780,7 +909,6 @@ components:
|
|
|
780
909
|
manifest:
|
|
781
910
|
type: object
|
|
782
911
|
additionalProperties: true
|
|
783
|
-
|
|
784
912
|
ManifestListResult:
|
|
785
913
|
type: object
|
|
786
914
|
properties:
|
|
@@ -799,7 +927,6 @@ components:
|
|
|
799
927
|
type: string
|
|
800
928
|
total:
|
|
801
929
|
type: integer
|
|
802
|
-
|
|
803
930
|
ValidationResult:
|
|
804
931
|
type: object
|
|
805
932
|
properties:
|
|
@@ -823,7 +950,6 @@ components:
|
|
|
823
950
|
type: string
|
|
824
951
|
message:
|
|
825
952
|
type: string
|
|
826
|
-
|
|
827
953
|
InspectResult:
|
|
828
954
|
type: object
|
|
829
955
|
properties:
|
|
@@ -835,7 +961,6 @@ components:
|
|
|
835
961
|
stats:
|
|
836
962
|
type: object
|
|
837
963
|
additionalProperties: true
|
|
838
|
-
|
|
839
964
|
DiffResult:
|
|
840
965
|
type: object
|
|
841
966
|
properties:
|
|
@@ -848,12 +973,14 @@ components:
|
|
|
848
973
|
type: string
|
|
849
974
|
type:
|
|
850
975
|
type: string
|
|
851
|
-
enum:
|
|
976
|
+
enum:
|
|
977
|
+
- added
|
|
978
|
+
- removed
|
|
979
|
+
- changed
|
|
852
980
|
oldValue: {}
|
|
853
981
|
newValue: {}
|
|
854
982
|
hasBreakingChanges:
|
|
855
983
|
type: boolean
|
|
856
|
-
|
|
857
984
|
MigrateResult:
|
|
858
985
|
type: object
|
|
859
986
|
properties:
|
|
@@ -865,7 +992,6 @@ components:
|
|
|
865
992
|
type: string
|
|
866
993
|
toVersion:
|
|
867
994
|
type: string
|
|
868
|
-
|
|
869
995
|
WizardSession:
|
|
870
996
|
type: object
|
|
871
997
|
properties:
|
|
@@ -883,14 +1009,19 @@ components:
|
|
|
883
1009
|
additionalProperties: true
|
|
884
1010
|
mode:
|
|
885
1011
|
type: string
|
|
886
|
-
enum:
|
|
1012
|
+
enum:
|
|
1013
|
+
- quick
|
|
1014
|
+
- guided
|
|
1015
|
+
- expert
|
|
887
1016
|
kind:
|
|
888
1017
|
type: string
|
|
889
|
-
enum:
|
|
1018
|
+
enum:
|
|
1019
|
+
- Agent
|
|
1020
|
+
- Skill
|
|
1021
|
+
- MCPServer
|
|
890
1022
|
createdAt:
|
|
891
1023
|
type: string
|
|
892
1024
|
format: date-time
|
|
893
|
-
|
|
894
1025
|
StepDefinition:
|
|
895
1026
|
type: object
|
|
896
1027
|
properties:
|
|
@@ -903,8 +1034,7 @@ components:
|
|
|
903
1034
|
fields:
|
|
904
1035
|
type: array
|
|
905
1036
|
items:
|
|
906
|
-
$ref:
|
|
907
|
-
|
|
1037
|
+
$ref: "#/components/schemas/FieldDefinition"
|
|
908
1038
|
FieldDefinition:
|
|
909
1039
|
type: object
|
|
910
1040
|
properties:
|
|
@@ -912,7 +1042,13 @@ components:
|
|
|
912
1042
|
type: string
|
|
913
1043
|
type:
|
|
914
1044
|
type: string
|
|
915
|
-
enum:
|
|
1045
|
+
enum:
|
|
1046
|
+
- text
|
|
1047
|
+
- select
|
|
1048
|
+
- multiselect
|
|
1049
|
+
- number
|
|
1050
|
+
- boolean
|
|
1051
|
+
- textarea
|
|
916
1052
|
label:
|
|
917
1053
|
type: string
|
|
918
1054
|
default: {}
|
|
@@ -929,16 +1065,15 @@ components:
|
|
|
929
1065
|
type: string
|
|
930
1066
|
description:
|
|
931
1067
|
type: string
|
|
932
|
-
|
|
933
1068
|
StepResult:
|
|
934
1069
|
type: object
|
|
935
1070
|
properties:
|
|
936
1071
|
success:
|
|
937
1072
|
type: boolean
|
|
938
1073
|
session:
|
|
939
|
-
$ref:
|
|
1074
|
+
$ref: "#/components/schemas/WizardSession"
|
|
940
1075
|
currentStep:
|
|
941
|
-
$ref:
|
|
1076
|
+
$ref: "#/components/schemas/StepDefinition"
|
|
942
1077
|
errors:
|
|
943
1078
|
type: array
|
|
944
1079
|
items:
|
|
@@ -948,7 +1083,6 @@ components:
|
|
|
948
1083
|
type: string
|
|
949
1084
|
message:
|
|
950
1085
|
type: string
|
|
951
|
-
|
|
952
1086
|
WizardCompleteResult:
|
|
953
1087
|
type: object
|
|
954
1088
|
properties:
|
|
@@ -961,7 +1095,6 @@ components:
|
|
|
961
1095
|
type: array
|
|
962
1096
|
items:
|
|
963
1097
|
type: string
|
|
964
|
-
|
|
965
1098
|
AgentTemplate:
|
|
966
1099
|
type: object
|
|
967
1100
|
properties:
|
|
@@ -975,10 +1108,10 @@ components:
|
|
|
975
1108
|
type: string
|
|
976
1109
|
category:
|
|
977
1110
|
type: string
|
|
978
|
-
|
|
979
1111
|
ExportInput:
|
|
980
1112
|
type: object
|
|
981
|
-
required:
|
|
1113
|
+
required:
|
|
1114
|
+
- target
|
|
982
1115
|
properties:
|
|
983
1116
|
manifest:
|
|
984
1117
|
type: object
|
|
@@ -990,7 +1123,6 @@ components:
|
|
|
990
1123
|
minLength: 1
|
|
991
1124
|
output_dir:
|
|
992
1125
|
type: string
|
|
993
|
-
|
|
994
1126
|
ExportResult:
|
|
995
1127
|
type: object
|
|
996
1128
|
properties:
|
|
@@ -1004,10 +1136,10 @@ components:
|
|
|
1004
1136
|
type: array
|
|
1005
1137
|
items:
|
|
1006
1138
|
type: string
|
|
1007
|
-
|
|
1008
1139
|
ConvertInput:
|
|
1009
1140
|
type: object
|
|
1010
|
-
required:
|
|
1141
|
+
required:
|
|
1142
|
+
- target
|
|
1011
1143
|
properties:
|
|
1012
1144
|
manifest:
|
|
1013
1145
|
type: object
|
|
@@ -1019,7 +1151,6 @@ components:
|
|
|
1019
1151
|
minLength: 1
|
|
1020
1152
|
output_dir:
|
|
1021
1153
|
type: string
|
|
1022
|
-
|
|
1023
1154
|
ConvertResult:
|
|
1024
1155
|
type: object
|
|
1025
1156
|
properties:
|
|
@@ -1032,7 +1163,6 @@ components:
|
|
|
1032
1163
|
additionalProperties: true
|
|
1033
1164
|
outputPath:
|
|
1034
1165
|
type: string
|
|
1035
|
-
|
|
1036
1166
|
PlatformInfo:
|
|
1037
1167
|
type: object
|
|
1038
1168
|
properties:
|
|
@@ -1048,10 +1178,10 @@ components:
|
|
|
1048
1178
|
type: array
|
|
1049
1179
|
items:
|
|
1050
1180
|
type: string
|
|
1051
|
-
|
|
1052
1181
|
CreateSkillInput:
|
|
1053
1182
|
type: object
|
|
1054
|
-
required:
|
|
1183
|
+
required:
|
|
1184
|
+
- name
|
|
1055
1185
|
properties:
|
|
1056
1186
|
name:
|
|
1057
1187
|
type: string
|
|
@@ -1063,7 +1193,6 @@ components:
|
|
|
1063
1193
|
type: string
|
|
1064
1194
|
output_dir:
|
|
1065
1195
|
type: string
|
|
1066
|
-
|
|
1067
1196
|
DiscoveryResult:
|
|
1068
1197
|
type: object
|
|
1069
1198
|
properties:
|
|
@@ -1082,7 +1211,6 @@ components:
|
|
|
1082
1211
|
type: integer
|
|
1083
1212
|
directory:
|
|
1084
1213
|
type: string
|
|
1085
|
-
|
|
1086
1214
|
WorkspaceStatus:
|
|
1087
1215
|
type: object
|
|
1088
1216
|
properties:
|
|
@@ -1094,3 +1222,16 @@ components:
|
|
|
1094
1222
|
type: integer
|
|
1095
1223
|
hasRegistry:
|
|
1096
1224
|
type: boolean
|
|
1225
|
+
x-ossa-metadata:
|
|
1226
|
+
version: 0.4.0
|
|
1227
|
+
compliance:
|
|
1228
|
+
level: standard
|
|
1229
|
+
observability:
|
|
1230
|
+
tracing: true
|
|
1231
|
+
metrics: true
|
|
1232
|
+
logging: true
|
|
1233
|
+
x-ossa:
|
|
1234
|
+
version: 0.5.0
|
|
1235
|
+
agent:
|
|
1236
|
+
id: ossa-api
|
|
1237
|
+
type: gateway
|