@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
|
@@ -16,7 +16,6 @@ components:
|
|
|
16
16
|
type: string
|
|
17
17
|
format: date-time
|
|
18
18
|
description: Timestamp when the resource was deleted (soft delete)
|
|
19
|
-
|
|
20
19
|
Labels:
|
|
21
20
|
type: object
|
|
22
21
|
additionalProperties:
|
|
@@ -26,7 +25,6 @@ components:
|
|
|
26
25
|
domain: security
|
|
27
26
|
capability: scanning
|
|
28
27
|
runtime: kubernetes
|
|
29
|
-
|
|
30
28
|
Annotations:
|
|
31
29
|
type: object
|
|
32
30
|
additionalProperties:
|
|
@@ -43,15 +41,17 @@ components:
|
|
|
43
41
|
deployed_by: buildkit-cli
|
|
44
42
|
git_commit: abc123
|
|
45
43
|
environment: production
|
|
46
|
-
author:
|
|
47
|
-
license:
|
|
48
|
-
|
|
44
|
+
author: John Doe
|
|
45
|
+
license: Apache-2.0
|
|
49
46
|
HealthStatus:
|
|
50
47
|
type: object
|
|
51
48
|
properties:
|
|
52
49
|
status:
|
|
53
50
|
type: string
|
|
54
|
-
enum:
|
|
51
|
+
enum:
|
|
52
|
+
- healthy
|
|
53
|
+
- degraded
|
|
54
|
+
- unhealthy
|
|
55
55
|
version:
|
|
56
56
|
type: string
|
|
57
57
|
uptime:
|
|
@@ -66,6 +66,21 @@ components:
|
|
|
66
66
|
properties:
|
|
67
67
|
status:
|
|
68
68
|
type: string
|
|
69
|
-
enum:
|
|
69
|
+
enum:
|
|
70
|
+
- pass
|
|
71
|
+
- fail
|
|
70
72
|
message:
|
|
71
73
|
type: string
|
|
74
|
+
x-ossa-metadata:
|
|
75
|
+
version: 0.5.0
|
|
76
|
+
compliance:
|
|
77
|
+
level: standard
|
|
78
|
+
observability:
|
|
79
|
+
tracing: true
|
|
80
|
+
metrics: true
|
|
81
|
+
logging: true
|
|
82
|
+
x-ossa:
|
|
83
|
+
version: 0.5.0
|
|
84
|
+
agent:
|
|
85
|
+
id: schemas-common-metadata
|
|
86
|
+
type: specialist
|
|
@@ -25,7 +25,6 @@ components:
|
|
|
25
25
|
type: boolean
|
|
26
26
|
has_prev:
|
|
27
27
|
type: boolean
|
|
28
|
-
|
|
29
28
|
parameters:
|
|
30
29
|
PageParam:
|
|
31
30
|
name: page
|
|
@@ -35,7 +34,6 @@ components:
|
|
|
35
34
|
minimum: 1
|
|
36
35
|
default: 1
|
|
37
36
|
description: Page number
|
|
38
|
-
|
|
39
37
|
LimitParam:
|
|
40
38
|
name: limit
|
|
41
39
|
in: query
|
|
@@ -45,7 +43,6 @@ components:
|
|
|
45
43
|
maximum: 100
|
|
46
44
|
default: 20
|
|
47
45
|
description: Items per page
|
|
48
|
-
|
|
49
46
|
OffsetParam:
|
|
50
47
|
name: offset
|
|
51
48
|
in: query
|
|
@@ -54,19 +51,34 @@ components:
|
|
|
54
51
|
minimum: 0
|
|
55
52
|
default: 0
|
|
56
53
|
description: Number of items to skip for pagination
|
|
57
|
-
|
|
58
54
|
SearchParam:
|
|
59
55
|
name: search
|
|
60
56
|
in: query
|
|
61
57
|
schema:
|
|
62
58
|
type: string
|
|
63
59
|
description: Search query
|
|
64
|
-
|
|
65
60
|
SortParam:
|
|
66
61
|
name: sort
|
|
67
62
|
in: query
|
|
68
63
|
schema:
|
|
69
64
|
type: string
|
|
70
|
-
enum:
|
|
65
|
+
enum:
|
|
66
|
+
- name
|
|
67
|
+
- downloads
|
|
68
|
+
- updated
|
|
69
|
+
- created
|
|
71
70
|
default: downloads
|
|
72
71
|
description: Sort field
|
|
72
|
+
x-ossa-metadata:
|
|
73
|
+
version: 0.5.0
|
|
74
|
+
compliance:
|
|
75
|
+
level: standard
|
|
76
|
+
observability:
|
|
77
|
+
tracing: true
|
|
78
|
+
metrics: true
|
|
79
|
+
logging: true
|
|
80
|
+
x-ossa:
|
|
81
|
+
version: 0.5.0
|
|
82
|
+
agent:
|
|
83
|
+
id: schemas-common-pagination
|
|
84
|
+
type: specialist
|
|
@@ -6,13 +6,11 @@ components:
|
|
|
6
6
|
in: header
|
|
7
7
|
name: X-API-Key
|
|
8
8
|
description: API key for server-to-server authentication
|
|
9
|
-
|
|
10
9
|
BearerAuth:
|
|
11
10
|
type: http
|
|
12
11
|
scheme: bearer
|
|
13
12
|
bearerFormat: JWT
|
|
14
13
|
description: JWT token obtained from authentication endpoint
|
|
15
|
-
|
|
16
14
|
OAuth2:
|
|
17
15
|
type: oauth2
|
|
18
16
|
description: OAuth2 authorization code flow
|
|
@@ -26,11 +24,9 @@ components:
|
|
|
26
24
|
execute: Execute agent tasks and workflows
|
|
27
25
|
admin: Administrative access
|
|
28
26
|
messaging: Agent-to-agent messaging
|
|
29
|
-
|
|
30
27
|
AgentMTLS:
|
|
31
28
|
type: mutualTLS
|
|
32
29
|
description: Mutual TLS for agent-to-agent communication
|
|
33
|
-
|
|
34
30
|
schemas:
|
|
35
31
|
TokenResponse:
|
|
36
32
|
type: object
|
|
@@ -55,7 +51,6 @@ components:
|
|
|
55
51
|
token_id:
|
|
56
52
|
type: string
|
|
57
53
|
format: uuid
|
|
58
|
-
|
|
59
54
|
SecurityContext:
|
|
60
55
|
type: object
|
|
61
56
|
properties:
|
|
@@ -86,3 +81,16 @@ components:
|
|
|
86
81
|
type: object
|
|
87
82
|
policy_version:
|
|
88
83
|
type: string
|
|
84
|
+
x-ossa-metadata:
|
|
85
|
+
version: 0.5.0
|
|
86
|
+
compliance:
|
|
87
|
+
level: standard
|
|
88
|
+
observability:
|
|
89
|
+
tracing: true
|
|
90
|
+
metrics: true
|
|
91
|
+
logging: true
|
|
92
|
+
x-ossa:
|
|
93
|
+
version: 0.5.0
|
|
94
|
+
agent:
|
|
95
|
+
id: schemas-common-security
|
|
96
|
+
type: specialist
|
|
@@ -10,79 +10,86 @@ info:
|
|
|
10
10
|
$ref: '../schemas/common/agent.yaml#/components/schemas/AgentManifest'
|
|
11
11
|
$ref: '../schemas/common/errors.yaml#/components/schemas/Problem'
|
|
12
12
|
$ref: '../schemas/common/pagination.yaml#/components/schemas/Pagination'
|
|
13
|
-
|
|
13
|
+
contact:
|
|
14
|
+
name: Bluefly OSSA Team
|
|
15
|
+
url: https://gitlab.com/blueflyio/ossa/openstandardagents
|
|
14
16
|
components:
|
|
15
17
|
schemas:
|
|
16
|
-
# Agent Schemas
|
|
17
18
|
AgentManifest:
|
|
18
|
-
$ref:
|
|
19
|
+
$ref: ./common/agent.yaml#/components/schemas/AgentManifest
|
|
19
20
|
AgentSpec:
|
|
20
|
-
$ref:
|
|
21
|
+
$ref: ./common/agent.yaml#/components/schemas/AgentSpec
|
|
21
22
|
AgentMetadata:
|
|
22
|
-
$ref:
|
|
23
|
+
$ref: ./common/agent.yaml#/components/schemas/Metadata
|
|
23
24
|
AgentType:
|
|
24
|
-
$ref:
|
|
25
|
+
$ref: ./common/agent.yaml#/components/schemas/AgentType
|
|
25
26
|
AgentStatus:
|
|
26
|
-
$ref:
|
|
27
|
+
$ref: ./common/agent.yaml#/components/schemas/AgentStatus
|
|
27
28
|
Agent:
|
|
28
|
-
$ref:
|
|
29
|
+
$ref: ./common/agent.yaml#/components/schemas/Agent
|
|
29
30
|
Capability:
|
|
30
|
-
$ref:
|
|
31
|
+
$ref: ./common/agent.yaml#/components/schemas/Capability
|
|
31
32
|
Interface:
|
|
32
|
-
$ref:
|
|
33
|
+
$ref: ./common/agent.yaml#/components/schemas/Interface
|
|
33
34
|
Requirements:
|
|
34
|
-
$ref:
|
|
35
|
+
$ref: ./common/agent.yaml#/components/schemas/Requirements
|
|
35
36
|
ResourceRequirements:
|
|
36
|
-
$ref:
|
|
37
|
-
|
|
38
|
-
# Error Schemas
|
|
37
|
+
$ref: ./common/agent.yaml#/components/schemas/ResourceRequirements
|
|
39
38
|
Problem:
|
|
40
|
-
$ref:
|
|
39
|
+
$ref: ./common/errors.yaml#/components/schemas/Problem
|
|
41
40
|
ValidationError:
|
|
42
|
-
$ref:
|
|
41
|
+
$ref: ./common/errors.yaml#/components/schemas/ValidationError
|
|
43
42
|
ValidationWarning:
|
|
44
|
-
$ref:
|
|
43
|
+
$ref: ./common/errors.yaml#/components/schemas/ValidationWarning
|
|
45
44
|
ExecutionError:
|
|
46
|
-
$ref:
|
|
47
|
-
|
|
48
|
-
# Pagination Schemas
|
|
45
|
+
$ref: ./common/errors.yaml#/components/schemas/ExecutionError
|
|
49
46
|
Pagination:
|
|
50
|
-
$ref:
|
|
51
|
-
|
|
52
|
-
# Security Schemas
|
|
47
|
+
$ref: ./common/pagination.yaml#/components/schemas/Pagination
|
|
53
48
|
TokenResponse:
|
|
54
|
-
$ref:
|
|
49
|
+
$ref: ./common/security.yaml#/components/schemas/TokenResponse
|
|
55
50
|
SecurityContext:
|
|
56
|
-
$ref:
|
|
57
|
-
|
|
58
|
-
# Metadata Schemas
|
|
51
|
+
$ref: ./common/security.yaml#/components/schemas/SecurityContext
|
|
59
52
|
Timestamps:
|
|
60
|
-
$ref:
|
|
53
|
+
$ref: ./common/metadata.yaml#/components/schemas/Timestamps
|
|
61
54
|
Labels:
|
|
62
|
-
$ref:
|
|
55
|
+
$ref: ./common/metadata.yaml#/components/schemas/Labels
|
|
63
56
|
Annotations:
|
|
64
|
-
$ref:
|
|
57
|
+
$ref: ./common/metadata.yaml#/components/schemas/Annotations
|
|
65
58
|
HealthStatus:
|
|
66
|
-
$ref:
|
|
67
|
-
|
|
59
|
+
$ref: ./common/metadata.yaml#/components/schemas/HealthStatus
|
|
68
60
|
parameters:
|
|
69
61
|
PageParam:
|
|
70
|
-
$ref:
|
|
62
|
+
$ref: ./common/pagination.yaml#/components/parameters/PageParam
|
|
71
63
|
LimitParam:
|
|
72
|
-
$ref:
|
|
64
|
+
$ref: ./common/pagination.yaml#/components/parameters/LimitParam
|
|
73
65
|
OffsetParam:
|
|
74
|
-
$ref:
|
|
66
|
+
$ref: ./common/pagination.yaml#/components/parameters/OffsetParam
|
|
75
67
|
SearchParam:
|
|
76
|
-
$ref:
|
|
68
|
+
$ref: ./common/pagination.yaml#/components/parameters/SearchParam
|
|
77
69
|
SortParam:
|
|
78
|
-
$ref:
|
|
79
|
-
|
|
70
|
+
$ref: ./common/pagination.yaml#/components/parameters/SortParam
|
|
80
71
|
securitySchemes:
|
|
81
72
|
ApiKeyAuth:
|
|
82
|
-
$ref:
|
|
73
|
+
$ref: ./common/security.yaml#/components/securitySchemes/ApiKeyAuth
|
|
83
74
|
BearerAuth:
|
|
84
|
-
$ref:
|
|
75
|
+
$ref: ./common/security.yaml#/components/securitySchemes/BearerAuth
|
|
85
76
|
OAuth2:
|
|
86
|
-
$ref:
|
|
77
|
+
$ref: ./common/security.yaml#/components/securitySchemes/OAuth2
|
|
87
78
|
AgentMTLS:
|
|
88
|
-
$ref:
|
|
79
|
+
$ref: ./common/security.yaml#/components/securitySchemes/AgentMTLS
|
|
80
|
+
x-ossa-metadata:
|
|
81
|
+
version: 0.3.3
|
|
82
|
+
compliance:
|
|
83
|
+
level: standard
|
|
84
|
+
observability:
|
|
85
|
+
tracing: true
|
|
86
|
+
metrics: true
|
|
87
|
+
logging: true
|
|
88
|
+
x-ossa:
|
|
89
|
+
version: 0.5.0
|
|
90
|
+
agent:
|
|
91
|
+
id: schemas-index
|
|
92
|
+
type: specialist
|
|
93
|
+
servers:
|
|
94
|
+
- url: https://schemas.openstandardagents.org
|
|
95
|
+
description: Shared schema index
|
|
@@ -189,7 +189,7 @@ components:
|
|
|
189
189
|
description: OAuth2 with client credentials for agent-to-registry auth
|
|
190
190
|
flows:
|
|
191
191
|
clientCredentials:
|
|
192
|
-
|
|
192
|
+
tokenUrl: https://auth.openstandardagents.org/oauth/token
|
|
193
193
|
availableScopes:
|
|
194
194
|
uadp:publish: Publish agent lifecycle events
|
|
195
195
|
uadp:subscribe: Subscribe to registry events
|
|
@@ -198,7 +198,9 @@ components:
|
|
|
198
198
|
parameters:
|
|
199
199
|
AgentIdParam:
|
|
200
200
|
description: Unique agent identifier (DNS-1123 subdomain format)
|
|
201
|
-
|
|
201
|
+
schema:
|
|
202
|
+
type: string
|
|
203
|
+
description: Unique agent identifier (DNS-1123 subdomain format)
|
|
202
204
|
|
|
203
205
|
messages:
|
|
204
206
|
AgentRegisteredMessage:
|