@bluefly/openstandardagents 0.4.9 → 0.5.1
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 +35 -4
- package/README.md +77 -62
- package/dist/.version.json +3 -3
- package/dist/adapters/a2a/a2a-protocol.js +4 -2
- package/dist/adapters/a2a/a2a-tool.js +4 -2
- package/dist/adapters/a2a/mcp-integration.d.ts +2 -1
- package/dist/adapters/a2a/mcp-integration.js +6 -3
- package/dist/adapters/browser/browser-exporter.d.ts +26 -0
- package/dist/adapters/browser/browser-exporter.js +73 -0
- package/dist/adapters/browser/browser-runner.d.ts +23 -0
- package/dist/adapters/browser/browser-runner.js +46 -0
- package/dist/adapters/browser/index.d.ts +9 -0
- package/dist/adapters/browser/index.js +9 -0
- package/dist/adapters/claude-code/adapter.js +2 -2
- package/dist/adapters/docker/generators.js +19 -19
- package/dist/adapters/docker/index.d.ts +2 -0
- package/dist/adapters/docker/index.js +2 -0
- package/dist/adapters/docker/openclaw-bridge.d.ts +57 -0
- package/dist/adapters/docker/openclaw-bridge.js +173 -0
- package/dist/adapters/drupal/generator.js +76 -76
- package/dist/adapters/drupal/index.d.ts +1 -0
- package/dist/adapters/drupal/index.js +2 -0
- package/dist/adapters/drupal/twig-renderer.d.ts +23 -0
- package/dist/adapters/drupal/twig-renderer.js +99 -0
- package/dist/adapters/gitlab/agent-generator.js +2 -1
- package/dist/adapters/openai-agents/adapter.js +2 -2
- package/dist/api/index.js +2 -1
- package/dist/api/routes/mcp.router.js +3 -1
- package/dist/api/routes/wizard.router.js +3 -1
- package/dist/cli/commands/agent/discover-type.command.js +1 -1
- package/dist/cli/commands/agent-card.command.js +37 -10
- package/dist/cli/commands/agents-sync.command.d.ts +2 -2
- package/dist/cli/commands/agents-sync.command.js +27 -17
- package/dist/cli/commands/catalog/config.js +1 -1
- package/dist/cli/commands/catalog/validate.command.js +2 -2
- package/dist/cli/commands/config.command.js +2 -2
- package/dist/cli/commands/daemon.command.js +32 -8
- package/dist/cli/commands/discover.d.ts +1 -1
- package/dist/cli/commands/discover.js +16 -8
- package/dist/cli/commands/economics.command.d.ts +9 -0
- package/dist/cli/commands/economics.command.js +113 -0
- package/dist/cli/commands/export.command.js +6 -3
- package/dist/cli/commands/mcp.command.js +3 -1
- package/dist/cli/commands/memory.command.d.ts +18 -0
- package/dist/cli/commands/memory.command.js +168 -0
- package/dist/cli/commands/publish.command.js +7 -4
- package/dist/cli/commands/serve-builder-routes.js +1 -1
- package/dist/cli/commands/usie-skills.command.d.ts +24 -0
- package/dist/cli/commands/usie-skills.command.js +297 -0
- package/dist/cli/commands/validate.command.js +8 -1
- package/dist/cli/commands/verify.d.ts +3 -3
- package/dist/cli/commands/verify.js +12 -6
- package/dist/cli/commands/workspace.command.d.ts +1 -0
- package/dist/cli/commands/workspace.command.js +28 -4
- package/dist/cli/index.js +12 -0
- package/dist/cli/schema-driven/schema-loader.js +5 -5
- package/dist/cli/workspace-validate.d.ts +23 -0
- package/dist/cli/workspace-validate.js +117 -0
- package/dist/data/platform-matrix.js +1 -4
- package/dist/generated/types.d.ts +97 -97
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/mcp-server/index.js +658 -982
- package/dist/mesh/discovery-gkg.d.ts +26 -0
- package/dist/mesh/discovery-gkg.js +92 -0
- package/dist/messenger/Handler/AgentBatchHandler.js +3 -2
- package/dist/messenger/Handler/AgentExecutionHandler.js +6 -1
- package/dist/package.json +43 -14
- package/dist/sdks/shared/types.d.ts +1 -1
- package/dist/services/agent-card-generator.js +6 -2
- package/dist/services/daemon/audit-log.service.js +3 -1
- package/dist/services/daemon/execution.service.js +8 -4
- package/dist/services/daemon/fs-watcher.service.js +6 -7
- package/dist/services/daemon/pairing.service.js +2 -1
- package/dist/services/daemon/skill-aggregator.service.js +105 -21
- package/dist/services/daemon/sse-endpoints.js +1 -1
- package/dist/services/daemon/ws-server.js +10 -3
- 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/governance/cedar-provider.js +12 -8
- package/dist/services/governance/cedar-validator.service.js +1 -1
- package/dist/services/mcp/bridge.service.js +40 -9
- package/dist/services/openapi-extensions-validation.d.ts +20 -0
- package/dist/services/openapi-extensions-validation.js +193 -0
- package/dist/services/release-automation/merge-request.service.d.ts +4 -4
- package/dist/services/release-automation/release-buttons.js +3 -3
- package/dist/services/release-automation/schemas/release.schema.d.ts +3 -3
- package/dist/services/runtime/openai.adapter.d.ts +46 -13
- package/dist/services/runtime/openai.adapter.js +169 -131
- package/dist/services/skill-registry.service.d.ts +1 -1
- package/dist/services/skills-pipeline/skills-research.service.js +47 -7
- package/dist/services/taxonomy-service.d.ts +3 -3
- package/dist/services/trust/trust.service.js +6 -4
- package/dist/services/validation-zod.service.js +3 -22
- package/dist/services/validators/index.d.ts +1 -0
- package/dist/services/validators/index.js +1 -0
- package/dist/services/validators/registry.d.ts +21 -0
- package/dist/services/validators/registry.js +42 -0
- package/dist/skills/test-skill/package.json +1 -1
- package/dist/spec/extensions/cognition.schema.json +87 -0
- package/dist/spec/extensions/role-manifest.md +188 -0
- package/dist/spec/layer4-economics/duadp-examples.json +44 -0
- package/dist/spec/v0.4/agent.schema.json +14 -0
- package/dist/spec/v0.4/extensions/mcp/README.md +1 -1
- package/dist/spec/v0.5/agent-builder-openapi.yaml +230 -0
- package/dist/spec/v0.5/agent.schema.json +34 -2
- package/dist/spec/v0.5/extensions/cognition/cognition.schema.json +78 -1
- package/dist/spec/v0.5/extensions/economics/context-pack.schema.json +91 -0
- package/dist/spec/v0.5/extensions/economics/execution-profile.schema.json +148 -0
- package/dist/spec/v0.5/extensions/economics/failure-semantics.schema.json +32 -0
- package/dist/spec/v0.5/extensions/economics/replay-packet.schema.json +120 -0
- package/dist/spec/v0.5/memory-hierarchy.yaml +120 -0
- package/dist/spec/v0.5/role.schema.json +268 -0
- package/dist/spec/v1/agent-card.schema.json +254 -0
- package/dist/types/cognition.zod.d.ts +312 -0
- package/dist/types/cognition.zod.js +223 -0
- package/dist/types/identity.zod.d.ts +5 -5
- package/dist/types/index.d.ts +54 -6
- package/dist/types/index.js +6 -2
- package/dist/types/personality.zod.d.ts +3 -3
- package/dist/types/role.d.ts +126 -0
- package/dist/types/role.js +38 -0
- package/dist/utils/http-client.d.ts +22 -0
- package/dist/utils/http-client.js +51 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.js +3 -0
- package/dist/utils/proxy-resolver.d.ts +36 -0
- package/dist/utils/proxy-resolver.js +59 -0
- package/dist/utils/user-agent.d.ts +11 -0
- package/dist/utils/user-agent.js +17 -0
- package/dist/validation/validator.js +1 -1
- package/dist/validation/version-compliance.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/README.md +1 -1
- package/examples/agentscope/react-assistant/agent.ossa.yaml +37 -33
- package/examples/drupal/content-moderator.ossa.yaml +2 -2
- package/examples/drupal/drupal-contributor-agent/.eslintrc.json +58 -0
- package/examples/drupal/drupal-contributor-agent/.prettierrc.json +10 -0
- package/examples/drupal/drupal-contributor-agent/package.json +55 -0
- package/examples/drupal/drupal-contributor-agent/src/core/index.ts +10 -0
- package/examples/drupal/drupal-contributor-agent/src/index.ts +17 -0
- package/examples/drupal/drupal-contributor-agent/src/types/index.ts +180 -0
- package/examples/drupal/drupal-contributor-agent/tsconfig.json +36 -0
- 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/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-cognition-sessions.yaml +580 -0
- package/openapi/agent-communication.yaml +260 -212
- package/openapi/agent-crud.yaml +237 -207
- 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 +299 -236
- 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 +109 -90
- 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 +48 -14
- package/openapi/schemas/common/agent.yaml +30 -29
- package/openapi/schemas/common/economics.yaml +98 -0
- 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 +5 -3
- package/openapi/uadp-openapi.yaml +243 -165
- package/openapi/version-management.openapi.yaml +142 -135
- package/package.json +43 -14
- package/spec/extensions/cognition.schema.json +87 -0
- package/spec/extensions/role-manifest.md +188 -0
- package/spec/layer4-economics/duadp-examples.json +44 -0
- package/spec/v0.4/agent.schema.json +14 -0
- package/spec/v0.4/extensions/mcp/README.md +1 -1
- package/spec/v0.5/agent-builder-openapi.yaml +230 -0
- package/spec/v0.5/agent.schema.json +34 -2
- package/spec/v0.5/extensions/cognition/cognition.schema.json +78 -1
- package/spec/v0.5/extensions/economics/context-pack.schema.json +91 -0
- package/spec/v0.5/extensions/economics/execution-profile.schema.json +148 -0
- package/spec/v0.5/extensions/economics/failure-semantics.schema.json +32 -0
- package/spec/v0.5/extensions/economics/replay-packet.schema.json +120 -0
- package/spec/v0.5/memory-hierarchy.yaml +120 -0
- package/spec/v0.5/role.schema.json +268 -0
- package/spec/v1/agent-card.schema.json +254 -0
- package/dist/adapters/a2a/__tests__/mcp-integration.spec.d.ts +0 -5
- package/dist/adapters/a2a/__tests__/mcp-integration.spec.js +0 -268
- package/dist/adapters/a2a/__tests__/mcp-transport.spec.d.ts +0 -5
- package/dist/adapters/a2a/__tests__/mcp-transport.spec.js +0 -203
- package/dist/mcp-server/__tests__/mcp-server.spec.d.ts +0 -8
- package/dist/mcp-server/__tests__/mcp-server.spec.js +0 -557
- package/dist/validation/__tests__/error-codes.test.d.ts +0 -5
- package/dist/validation/__tests__/error-codes.test.js +0 -252
- package/dist/version-management/core/version-manager.test.d.ts +0 -2
- package/dist/version-management/core/version-manager.test.js +0 -210
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
openapi: 3.1.0
|
|
2
|
+
components:
|
|
3
|
+
schemas:
|
|
4
|
+
ExecutionProfile:
|
|
5
|
+
type: object
|
|
6
|
+
description: Portable contract for token/model behavior and execution economics.
|
|
7
|
+
required:
|
|
8
|
+
- intent_class
|
|
9
|
+
properties:
|
|
10
|
+
id:
|
|
11
|
+
type: string
|
|
12
|
+
description: Unique identifier for the execution profile.
|
|
13
|
+
intent_class:
|
|
14
|
+
type: string
|
|
15
|
+
enum: [micro-audit, fast-route, balanced-work, deep-reason, long-context, strict-structured, human-gated]
|
|
16
|
+
description: Standardized token class mapping to model capability.
|
|
17
|
+
latency_sla_ms:
|
|
18
|
+
type: integer
|
|
19
|
+
description: Target latency in milliseconds.
|
|
20
|
+
max_cost_usd:
|
|
21
|
+
type: number
|
|
22
|
+
description: Maximum acceptable cost in USD for this execution.
|
|
23
|
+
max_input_tokens:
|
|
24
|
+
type: integer
|
|
25
|
+
max_output_tokens:
|
|
26
|
+
type: integer
|
|
27
|
+
max_reasoning_tokens:
|
|
28
|
+
type: integer
|
|
29
|
+
preferred_modes:
|
|
30
|
+
type: array
|
|
31
|
+
items:
|
|
32
|
+
type: string
|
|
33
|
+
enum: [structured-output, tool-use, reasoning, vision]
|
|
34
|
+
fallback_chain:
|
|
35
|
+
type: array
|
|
36
|
+
items:
|
|
37
|
+
type: string
|
|
38
|
+
compression_policy:
|
|
39
|
+
type: string
|
|
40
|
+
enum: [none, extractive, semantic-brief, schema-projection, evidence-only, risk-first, diff-only]
|
|
41
|
+
cache_policy:
|
|
42
|
+
type: string
|
|
43
|
+
enum: [none, content-addressed, ttl]
|
|
44
|
+
provenance_mode:
|
|
45
|
+
type: string
|
|
46
|
+
enum: [relaxed, strict]
|
|
47
|
+
ContextPack:
|
|
48
|
+
type: object
|
|
49
|
+
description: Portable, versioned, scoped context bundle.
|
|
50
|
+
required:
|
|
51
|
+
- id
|
|
52
|
+
- version
|
|
53
|
+
properties:
|
|
54
|
+
id:
|
|
55
|
+
type: string
|
|
56
|
+
version:
|
|
57
|
+
type: string
|
|
58
|
+
description:
|
|
59
|
+
type: string
|
|
60
|
+
token_size:
|
|
61
|
+
type: integer
|
|
62
|
+
content_hash:
|
|
63
|
+
type: string
|
|
64
|
+
trust_score:
|
|
65
|
+
type: number
|
|
66
|
+
permission_scope:
|
|
67
|
+
type: array
|
|
68
|
+
items:
|
|
69
|
+
type: string
|
|
70
|
+
compression_variants:
|
|
71
|
+
type: array
|
|
72
|
+
items:
|
|
73
|
+
type: object
|
|
74
|
+
properties:
|
|
75
|
+
mode:
|
|
76
|
+
type: string
|
|
77
|
+
token_size:
|
|
78
|
+
type: integer
|
|
79
|
+
ref:
|
|
80
|
+
type: string
|
|
81
|
+
ReplayPacket:
|
|
82
|
+
type: object
|
|
83
|
+
description: Portable execution replay packet for audit and reproducibility.
|
|
84
|
+
properties:
|
|
85
|
+
compute_tokens:
|
|
86
|
+
type: integer
|
|
87
|
+
context_tokens:
|
|
88
|
+
type: integer
|
|
89
|
+
execution_profile_id:
|
|
90
|
+
type: string
|
|
91
|
+
context_pack_hashes:
|
|
92
|
+
type: array
|
|
93
|
+
items:
|
|
94
|
+
type: string
|
|
95
|
+
policy_decisions:
|
|
96
|
+
type: object
|
|
97
|
+
failure_class:
|
|
98
|
+
type: string
|
|
@@ -39,7 +39,6 @@ components:
|
|
|
39
39
|
items:
|
|
40
40
|
type: string
|
|
41
41
|
description: Validation errors by field
|
|
42
|
-
|
|
43
42
|
ValidationError:
|
|
44
43
|
type: object
|
|
45
44
|
properties:
|
|
@@ -49,7 +48,6 @@ components:
|
|
|
49
48
|
type: string
|
|
50
49
|
rule:
|
|
51
50
|
type: string
|
|
52
|
-
|
|
53
51
|
ValidationWarning:
|
|
54
52
|
type: object
|
|
55
53
|
properties:
|
|
@@ -59,7 +57,6 @@ components:
|
|
|
59
57
|
type: string
|
|
60
58
|
suggestion:
|
|
61
59
|
type: string
|
|
62
|
-
|
|
63
60
|
ExecutionError:
|
|
64
61
|
type: object
|
|
65
62
|
properties:
|
|
@@ -73,3 +70,16 @@ components:
|
|
|
73
70
|
timestamp:
|
|
74
71
|
type: string
|
|
75
72
|
format: date-time
|
|
73
|
+
x-ossa-metadata:
|
|
74
|
+
version: 0.5.0
|
|
75
|
+
compliance:
|
|
76
|
+
level: standard
|
|
77
|
+
observability:
|
|
78
|
+
tracing: true
|
|
79
|
+
metrics: true
|
|
80
|
+
logging: true
|
|
81
|
+
x-ossa:
|
|
82
|
+
version: 0.5.0
|
|
83
|
+
agent:
|
|
84
|
+
id: schemas-common-errors
|
|
85
|
+
type: specialist
|
|
@@ -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:
|
|
@@ -225,7 +227,7 @@ components:
|
|
|
225
227
|
type: Ed25519
|
|
226
228
|
value: "base64encodedValue=="
|
|
227
229
|
publicKey: "base64encodedPublicKey=="
|
|
228
|
-
issuer: "did:web:
|
|
230
|
+
issuer: "did:web:example.com:compliance-scanner"
|
|
229
231
|
timestamp: '2026-03-02T23:00:00Z'
|
|
230
232
|
|
|
231
233
|
AgentUpdatedMessage:
|