@bluefly/openstandardagents 0.4.8 → 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 +4 -4
- package/CHANGELOG.md +22 -8
- package/README.md +70 -45
- package/bin/postinstall +0 -0
- package/dist/.version.json +4 -4
- package/dist/adapters/a2a/__tests__/mcp-integration.spec.js +1 -1
- package/dist/adapters/a2a/a2a-protocol.d.ts +1 -1
- package/dist/adapters/a2a/a2a-tool.js +3 -3
- package/dist/adapters/a2a/delegation.js +1 -1
- package/dist/adapters/base/common-file-generator.d.ts +1 -1
- package/dist/adapters/base/common-file-generator.js +22 -0
- 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/banner.js +1 -1
- package/dist/cli/commands/agents-sync.command.d.ts +19 -0
- package/dist/cli/commands/agents-sync.command.js +268 -0
- package/dist/cli/commands/discover.js +48 -52
- package/dist/cli/commands/export.command.js +41 -12
- package/dist/cli/commands/lifecycle.command.d.ts +29 -0
- package/dist/cli/commands/lifecycle.command.js +495 -0
- package/dist/cli/commands/policy.command.d.ts +11 -0
- package/dist/cli/commands/policy.command.js +85 -0
- package/dist/cli/commands/publish.command.js +29 -3
- package/dist/cli/commands/search.command.js +31 -2
- package/dist/cli/commands/serve-builder-routes.d.ts +17 -0
- package/dist/cli/commands/serve-builder-routes.js +390 -0
- package/dist/cli/commands/validate.command.js +48 -2
- package/dist/cli/commands/verify.js +61 -34
- package/dist/cli/commands/wizard-api-first.command.js +6 -0
- package/dist/cli/commands/wizard.command.js +6 -0
- package/dist/cli/commands/workspace.command.js +65 -65
- package/dist/cli/index.js +11 -3
- package/dist/cli/schema-driven/schema-loader.js +5 -5
- package/dist/cli/utils/standard-options.js +1 -1
- package/dist/confidence/index.d.ts +67 -0
- package/dist/confidence/index.js +130 -0
- package/dist/data/platform-matrix.js +29 -0
- package/dist/mcp-server/__tests__/mcp-server.spec.js +20 -11
- package/dist/mesh/discovery-providers.js +2 -2
- package/dist/mesh/discovery.js +1 -1
- package/dist/mesh/index.d.ts +2 -2
- package/dist/mesh/index.js +2 -2
- package/dist/mesh/types.d.ts +202 -1
- package/dist/package.json +27 -20
- package/dist/services/agent-card-generator.d.ts +2 -2
- package/dist/services/agent-card-generator.js +3 -1
- package/dist/services/agents-md/agents-md.service.d.ts +4 -0
- package/dist/services/agents-md/agents-md.service.js +18 -0
- 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-validator.service.d.ts +32 -0
- package/dist/services/governance/cedar-validator.service.js +88 -0
- package/dist/services/mcp/bridge.service.d.ts +1 -0
- package/dist/services/mcp/bridge.service.js +31 -0
- package/dist/services/skills-pipeline/skills-install.service.js +2 -2
- package/dist/services/skills-pipeline/skills-research.service.d.ts +5 -7
- package/dist/services/skills-pipeline/skills-research.service.js +13 -58
- package/dist/services/taxonomy-service.d.ts +3 -3
- package/dist/services/trust/trust.service.d.ts +9 -0
- package/dist/services/trust/trust.service.js +35 -0
- package/dist/services/validators/a2a.validator.js +2 -2
- package/dist/skills/test-skill/package.json +1 -1
- package/dist/spec/extensions/role-manifest.md +188 -0
- package/dist/spec/uadp/README.md +1 -1
- package/dist/spec/v0.4/agent-card.schema.json +2 -2
- package/dist/spec/v0.4/agent.schema.json +69 -0
- package/dist/spec/v0.4/extensions/a2a/a2a.schema.json +1 -1
- package/dist/spec/v0.4/extensions/mcp/README.md +1 -1
- package/dist/spec/v0.5/agent-card.schema.json +1 -1
- package/dist/spec/v0.5/agent.schema.json +139 -68
- 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 +5 -1
- 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/progressive-scorer.d.ts +1 -1
- package/dist/validation/progressive-scorer.js +19 -2
- package/dist/validation/validator.js +1 -1
- package/dist/version-management/api/server.d.ts +1 -1
- package/examples/agent-mesh/DISCOVERY.md +25 -25
- package/examples/agent-mesh/README.ts +6 -6
- package/examples/agent-mesh/basic-usage.ts +11 -11
- package/examples/agent-mesh/discovery-system.ts +37 -37
- 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 +268 -220
- 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 +69 -77
- package/openapi/protocols/websocket-events.yaml +64 -57
- 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 +5 -3
- package/openapi/uadp-openapi.yaml +325 -153
- package/openapi/version-management.openapi.yaml +142 -135
- package/package.json +115 -110
- package/spec/extensions/role-manifest.md +188 -0
- package/spec/uadp/README.md +393 -0
- package/spec/uadp/openapi.yaml +387 -0
- package/spec/uadp/schemas/uadp-agents-response.schema.json +68 -0
- package/spec/uadp/schemas/uadp-federation-response.schema.json +46 -0
- package/spec/uadp/schemas/uadp-manifest.schema.json +82 -0
- package/spec/uadp/schemas/uadp-skills-response.schema.json +72 -0
- package/spec/v0.4/agent-card.schema.json +2 -2
- package/spec/v0.4/extensions/a2a/a2a.schema.json +1 -1
- package/spec/v0.4/extensions/mcp/README.md +1 -1
- package/spec/v0.5/agent-card.schema.json +477 -0
- package/spec/v0.5/agent.schema.json +1627 -0
- package/spec/v0.5/conformance/profiles/baseline.json +19 -0
- package/spec/v0.5/conformance/profiles/enterprise.json +20 -0
- package/spec/v0.5/extensions/a2a/README.md +193 -0
- package/spec/v0.5/extensions/a2a/a2a.schema.json +77 -0
- package/spec/v0.5/extensions/ag2/ag2.schema.json +277 -0
- package/spec/v0.5/extensions/cognition/cognition.schema.json +94 -0
- package/spec/v0.5/extensions/cognition/thought-node.schema.json +80 -0
- package/spec/v0.5/extensions/crewai/crewai.schema.json +256 -0
- package/spec/v0.5/extensions/drupal/drupal.schema.json +318 -0
- package/spec/v0.5/extensions/evals/evals.schema.json +597 -0
- package/spec/v0.5/extensions/governance/governance-extension.yaml +161 -0
- package/spec/v0.5/extensions/identity/identity.schema.json +302 -0
- package/spec/v0.5/extensions/kagent/README.md +315 -0
- package/spec/v0.5/extensions/kagent/kagent.schema.json +624 -0
- package/spec/v0.5/extensions/langchain/langchain.schema.json +243 -0
- package/spec/v0.5/extensions/langgraph/langgraph.schema.json +211 -0
- package/spec/v0.5/extensions/mcp/README.md +276 -0
- package/spec/v0.5/extensions/mcp/mcp.schema.json +84 -0
- package/spec/v0.5/extensions/memory/memory.schema.json +7 -0
- package/spec/v0.5/extensions/team/team.schema.json +304 -0
- package/spec/v0.5/extensions/token-efficiency/token-efficiency.schema.json +47 -0
- package/spec/v0.5/mcp.schema.json +1 -0
- package/spec/v0.5/role.schema.json +268 -0
- package/spec/v0.5/skill.schema.json +1 -0
- package/spec/v0.5/validator.schema.json +282 -0
- package/node_modules/ajv/.runkit_example.js +0 -23
- package/node_modules/ajv/LICENSE +0 -22
- package/node_modules/ajv/README.md +0 -207
- package/node_modules/ajv/dist/2019.d.ts +0 -19
- package/node_modules/ajv/dist/2019.js +0 -61
- package/node_modules/ajv/dist/2019.js.map +0 -1
- package/node_modules/ajv/dist/2020.d.ts +0 -19
- package/node_modules/ajv/dist/2020.js +0 -55
- package/node_modules/ajv/dist/2020.js.map +0 -1
- package/node_modules/ajv/dist/ajv.d.ts +0 -18
- package/node_modules/ajv/dist/ajv.js +0 -50
- package/node_modules/ajv/dist/ajv.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/code.d.ts +0 -40
- package/node_modules/ajv/dist/compile/codegen/code.js +0 -156
- package/node_modules/ajv/dist/compile/codegen/code.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/index.d.ts +0 -79
- package/node_modules/ajv/dist/compile/codegen/index.js +0 -697
- package/node_modules/ajv/dist/compile/codegen/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/codegen/scope.d.ts +0 -79
- package/node_modules/ajv/dist/compile/codegen/scope.js +0 -143
- package/node_modules/ajv/dist/compile/codegen/scope.js.map +0 -1
- package/node_modules/ajv/dist/compile/errors.d.ts +0 -13
- package/node_modules/ajv/dist/compile/errors.js +0 -123
- package/node_modules/ajv/dist/compile/errors.js.map +0 -1
- package/node_modules/ajv/dist/compile/index.d.ts +0 -80
- package/node_modules/ajv/dist/compile/index.js +0 -242
- package/node_modules/ajv/dist/compile/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/parse.d.ts +0 -4
- package/node_modules/ajv/dist/compile/jtd/parse.js +0 -350
- package/node_modules/ajv/dist/compile/jtd/parse.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +0 -4
- package/node_modules/ajv/dist/compile/jtd/serialize.js +0 -236
- package/node_modules/ajv/dist/compile/jtd/serialize.js.map +0 -1
- package/node_modules/ajv/dist/compile/jtd/types.d.ts +0 -6
- package/node_modules/ajv/dist/compile/jtd/types.js +0 -14
- package/node_modules/ajv/dist/compile/jtd/types.js.map +0 -1
- package/node_modules/ajv/dist/compile/names.d.ts +0 -20
- package/node_modules/ajv/dist/compile/names.js +0 -28
- package/node_modules/ajv/dist/compile/names.js.map +0 -1
- package/node_modules/ajv/dist/compile/ref_error.d.ts +0 -6
- package/node_modules/ajv/dist/compile/ref_error.js +0 -12
- package/node_modules/ajv/dist/compile/ref_error.js.map +0 -1
- package/node_modules/ajv/dist/compile/resolve.d.ts +0 -12
- package/node_modules/ajv/dist/compile/resolve.js +0 -155
- package/node_modules/ajv/dist/compile/resolve.js.map +0 -1
- package/node_modules/ajv/dist/compile/rules.d.ts +0 -28
- package/node_modules/ajv/dist/compile/rules.js +0 -26
- package/node_modules/ajv/dist/compile/rules.js.map +0 -1
- package/node_modules/ajv/dist/compile/util.d.ts +0 -40
- package/node_modules/ajv/dist/compile/util.js +0 -178
- package/node_modules/ajv/dist/compile/util.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/applicability.d.ts +0 -6
- package/node_modules/ajv/dist/compile/validate/applicability.js +0 -19
- package/node_modules/ajv/dist/compile/validate/applicability.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +0 -4
- package/node_modules/ajv/dist/compile/validate/boolSchema.js +0 -50
- package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/dataType.d.ts +0 -17
- package/node_modules/ajv/dist/compile/validate/dataType.js +0 -203
- package/node_modules/ajv/dist/compile/validate/dataType.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/defaults.d.ts +0 -2
- package/node_modules/ajv/dist/compile/validate/defaults.js +0 -35
- package/node_modules/ajv/dist/compile/validate/defaults.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/index.d.ts +0 -42
- package/node_modules/ajv/dist/compile/validate/index.js +0 -520
- package/node_modules/ajv/dist/compile/validate/index.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/keyword.d.ts +0 -8
- package/node_modules/ajv/dist/compile/validate/keyword.js +0 -124
- package/node_modules/ajv/dist/compile/validate/keyword.js.map +0 -1
- package/node_modules/ajv/dist/compile/validate/subschema.d.ts +0 -47
- package/node_modules/ajv/dist/compile/validate/subschema.js +0 -81
- package/node_modules/ajv/dist/compile/validate/subschema.js.map +0 -1
- package/node_modules/ajv/dist/core.d.ts +0 -174
- package/node_modules/ajv/dist/core.js +0 -618
- package/node_modules/ajv/dist/core.js.map +0 -1
- package/node_modules/ajv/dist/jtd.d.ts +0 -47
- package/node_modules/ajv/dist/jtd.js +0 -72
- package/node_modules/ajv/dist/jtd.js.map +0 -1
- package/node_modules/ajv/dist/refs/data.json +0 -13
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +0 -2
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +0 -28
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +0 -1
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +0 -2
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +0 -30
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +0 -1
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv/dist/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv/dist/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv/dist/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv/dist/refs/jtd-schema.d.ts +0 -3
- package/node_modules/ajv/dist/refs/jtd-schema.js +0 -118
- package/node_modules/ajv/dist/refs/jtd-schema.js.map +0 -1
- package/node_modules/ajv/dist/runtime/equal.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/equal.js +0 -7
- package/node_modules/ajv/dist/runtime/equal.js.map +0 -1
- package/node_modules/ajv/dist/runtime/parseJson.d.ts +0 -18
- package/node_modules/ajv/dist/runtime/parseJson.js +0 -185
- package/node_modules/ajv/dist/runtime/parseJson.js.map +0 -1
- package/node_modules/ajv/dist/runtime/quote.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/quote.js +0 -30
- package/node_modules/ajv/dist/runtime/quote.js.map +0 -1
- package/node_modules/ajv/dist/runtime/re2.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/re2.js +0 -6
- package/node_modules/ajv/dist/runtime/re2.js.map +0 -1
- package/node_modules/ajv/dist/runtime/timestamp.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/timestamp.js +0 -42
- package/node_modules/ajv/dist/runtime/timestamp.js.map +0 -1
- package/node_modules/ajv/dist/runtime/ucs2length.d.ts +0 -5
- package/node_modules/ajv/dist/runtime/ucs2length.js +0 -24
- package/node_modules/ajv/dist/runtime/ucs2length.js.map +0 -1
- package/node_modules/ajv/dist/runtime/uri.d.ts +0 -6
- package/node_modules/ajv/dist/runtime/uri.js +0 -6
- package/node_modules/ajv/dist/runtime/uri.js.map +0 -1
- package/node_modules/ajv/dist/runtime/validation_error.d.ts +0 -7
- package/node_modules/ajv/dist/runtime/validation_error.js +0 -11
- package/node_modules/ajv/dist/runtime/validation_error.js.map +0 -1
- package/node_modules/ajv/dist/standalone/index.d.ts +0 -6
- package/node_modules/ajv/dist/standalone/index.js +0 -90
- package/node_modules/ajv/dist/standalone/index.js.map +0 -1
- package/node_modules/ajv/dist/standalone/instance.d.ts +0 -12
- package/node_modules/ajv/dist/standalone/instance.js +0 -35
- package/node_modules/ajv/dist/standalone/instance.js.map +0 -1
- package/node_modules/ajv/dist/types/index.d.ts +0 -183
- package/node_modules/ajv/dist/types/index.js +0 -3
- package/node_modules/ajv/dist/types/index.js.map +0 -1
- package/node_modules/ajv/dist/types/json-schema.d.ts +0 -125
- package/node_modules/ajv/dist/types/json-schema.js +0 -3
- package/node_modules/ajv/dist/types/json-schema.js.map +0 -1
- package/node_modules/ajv/dist/types/jtd-schema.d.ts +0 -174
- package/node_modules/ajv/dist/types/jtd-schema.js +0 -3
- package/node_modules/ajv/dist/types/jtd-schema.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +0 -49
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +0 -106
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +0 -23
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +0 -12
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +0 -7
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js +0 -95
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +0 -21
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +0 -85
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +0 -11
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/if.js +0 -66
- package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +0 -13
- package/node_modules/ajv/dist/vocabularies/applicator/index.js +0 -44
- package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/applicator/items.js +0 -52
- package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +0 -30
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/applicator/not.js +0 -26
- package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +0 -60
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +0 -75
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +0 -12
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js +0 -54
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +0 -38
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +0 -13
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/code.d.ts +0 -17
- package/node_modules/ajv/dist/vocabularies/code.js +0 -131
- package/node_modules/ajv/dist/vocabularies/code.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/id.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/core/id.js +0 -10
- package/node_modules/ajv/dist/vocabularies/core/id.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/core/index.js +0 -16
- package/node_modules/ajv/dist/vocabularies/core/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/core/ref.js +0 -122
- package/node_modules/ajv/dist/vocabularies/core/ref.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js +0 -104
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js +0 -9
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/draft2020.js +0 -23
- package/node_modules/ajv/dist/vocabularies/draft2020.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/draft7.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/draft7.js +0 -17
- package/node_modules/ajv/dist/vocabularies/draft7.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +0 -30
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +0 -51
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js +0 -9
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +0 -16
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +0 -10
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/errors.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/errors.js +0 -3
- package/node_modules/ajv/dist/vocabularies/errors.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/format/format.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/format/format.js +0 -92
- package/node_modules/ajv/dist/vocabularies/format/format.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/format/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/format/index.js +0 -6
- package/node_modules/ajv/dist/vocabularies/format/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +0 -71
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js +0 -24
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js +0 -43
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/jtd/error.js +0 -20
- package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/jtd/index.js +0 -29
- package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +0 -25
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +0 -22
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +0 -15
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +0 -22
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js +0 -149
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +0 -4
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js +0 -67
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +0 -10
- package/node_modules/ajv/dist/vocabularies/jtd/type.js +0 -69
- package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/jtd/union.js +0 -12
- package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/jtd/values.js +0 -51
- package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/metadata.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/metadata.js +0 -18
- package/node_modules/ajv/dist/vocabularies/metadata.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/next.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/next.js +0 -8
- package/node_modules/ajv/dist/vocabularies/next.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +0 -7
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +0 -40
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +0 -65
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +0 -6
- package/node_modules/ajv/dist/vocabularies/validation/const.js +0 -25
- package/node_modules/ajv/dist/vocabularies/validation/const.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +0 -5
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +0 -12
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/enum.js +0 -48
- package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +0 -16
- package/node_modules/ajv/dist/vocabularies/validation/index.js +0 -33
- package/node_modules/ajv/dist/vocabularies/validation/index.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +0 -15
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +0 -24
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +0 -27
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +0 -11
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +0 -27
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +0 -3
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +0 -24
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +0 -26
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js +0 -33
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +0 -8
- package/node_modules/ajv/dist/vocabularies/validation/required.js +0 -79
- package/node_modules/ajv/dist/vocabularies/validation/required.js.map +0 -1
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +0 -9
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +0 -64
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +0 -1
- package/node_modules/ajv/lib/2019.ts +0 -81
- package/node_modules/ajv/lib/2020.ts +0 -75
- package/node_modules/ajv/lib/ajv.ts +0 -70
- package/node_modules/ajv/lib/compile/codegen/code.ts +0 -169
- package/node_modules/ajv/lib/compile/codegen/index.ts +0 -852
- package/node_modules/ajv/lib/compile/codegen/scope.ts +0 -215
- package/node_modules/ajv/lib/compile/errors.ts +0 -184
- package/node_modules/ajv/lib/compile/index.ts +0 -324
- package/node_modules/ajv/lib/compile/jtd/parse.ts +0 -411
- package/node_modules/ajv/lib/compile/jtd/serialize.ts +0 -277
- package/node_modules/ajv/lib/compile/jtd/types.ts +0 -16
- package/node_modules/ajv/lib/compile/names.ts +0 -27
- package/node_modules/ajv/lib/compile/ref_error.ts +0 -13
- package/node_modules/ajv/lib/compile/resolve.ts +0 -149
- package/node_modules/ajv/lib/compile/rules.ts +0 -50
- package/node_modules/ajv/lib/compile/util.ts +0 -213
- package/node_modules/ajv/lib/compile/validate/applicability.ts +0 -22
- package/node_modules/ajv/lib/compile/validate/boolSchema.ts +0 -47
- package/node_modules/ajv/lib/compile/validate/dataType.ts +0 -230
- package/node_modules/ajv/lib/compile/validate/defaults.ts +0 -32
- package/node_modules/ajv/lib/compile/validate/index.ts +0 -582
- package/node_modules/ajv/lib/compile/validate/keyword.ts +0 -171
- package/node_modules/ajv/lib/compile/validate/subschema.ts +0 -135
- package/node_modules/ajv/lib/core.ts +0 -892
- package/node_modules/ajv/lib/jtd.ts +0 -132
- package/node_modules/ajv/lib/refs/data.json +0 -13
- package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +0 -28
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +0 -53
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +0 -17
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +0 -57
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +0 -14
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +0 -37
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +0 -90
- package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +0 -39
- package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +0 -30
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +0 -48
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +0 -17
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +0 -51
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +0 -14
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +0 -37
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +0 -15
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +0 -90
- package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +0 -55
- package/node_modules/ajv/lib/refs/json-schema-draft-06.json +0 -137
- package/node_modules/ajv/lib/refs/json-schema-draft-07.json +0 -151
- package/node_modules/ajv/lib/refs/json-schema-secure.json +0 -88
- package/node_modules/ajv/lib/refs/jtd-schema.ts +0 -130
- package/node_modules/ajv/lib/runtime/equal.ts +0 -7
- package/node_modules/ajv/lib/runtime/parseJson.ts +0 -177
- package/node_modules/ajv/lib/runtime/quote.ts +0 -31
- package/node_modules/ajv/lib/runtime/re2.ts +0 -6
- package/node_modules/ajv/lib/runtime/timestamp.ts +0 -46
- package/node_modules/ajv/lib/runtime/ucs2length.ts +0 -20
- package/node_modules/ajv/lib/runtime/uri.ts +0 -6
- package/node_modules/ajv/lib/runtime/validation_error.ts +0 -13
- package/node_modules/ajv/lib/standalone/index.ts +0 -100
- package/node_modules/ajv/lib/standalone/instance.ts +0 -36
- package/node_modules/ajv/lib/types/index.ts +0 -244
- package/node_modules/ajv/lib/types/json-schema.ts +0 -187
- package/node_modules/ajv/lib/types/jtd-schema.ts +0 -273
- package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +0 -56
- package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +0 -118
- package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +0 -22
- package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +0 -14
- package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +0 -109
- package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +0 -112
- package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +0 -11
- package/node_modules/ajv/lib/vocabularies/applicator/if.ts +0 -80
- package/node_modules/ajv/lib/vocabularies/applicator/index.ts +0 -53
- package/node_modules/ajv/lib/vocabularies/applicator/items.ts +0 -59
- package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +0 -36
- package/node_modules/ajv/lib/vocabularies/applicator/not.ts +0 -38
- package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +0 -82
- package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +0 -91
- package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +0 -57
- package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +0 -50
- package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +0 -13
- package/node_modules/ajv/lib/vocabularies/code.ts +0 -168
- package/node_modules/ajv/lib/vocabularies/core/id.ts +0 -10
- package/node_modules/ajv/lib/vocabularies/core/index.ts +0 -16
- package/node_modules/ajv/lib/vocabularies/core/ref.ts +0 -129
- package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +0 -113
- package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/draft2020.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/draft7.ts +0 -17
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +0 -31
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +0 -51
- package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +0 -9
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +0 -14
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +0 -10
- package/node_modules/ajv/lib/vocabularies/errors.ts +0 -18
- package/node_modules/ajv/lib/vocabularies/format/format.ts +0 -120
- package/node_modules/ajv/lib/vocabularies/format/index.ts +0 -6
- package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +0 -89
- package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +0 -32
- package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +0 -45
- package/node_modules/ajv/lib/vocabularies/jtd/error.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/jtd/index.ts +0 -37
- package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +0 -24
- package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +0 -21
- package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +0 -15
- package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +0 -184
- package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +0 -76
- package/node_modules/ajv/lib/vocabularies/jtd/type.ts +0 -75
- package/node_modules/ajv/lib/vocabularies/jtd/union.ts +0 -12
- package/node_modules/ajv/lib/vocabularies/jtd/values.ts +0 -58
- package/node_modules/ajv/lib/vocabularies/metadata.ts +0 -17
- package/node_modules/ajv/lib/vocabularies/next.ts +0 -8
- package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +0 -7
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +0 -47
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +0 -85
- package/node_modules/ajv/lib/vocabularies/validation/const.ts +0 -28
- package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +0 -23
- package/node_modules/ajv/lib/vocabularies/validation/enum.ts +0 -54
- package/node_modules/ajv/lib/vocabularies/validation/index.ts +0 -49
- package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +0 -16
- package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +0 -26
- package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +0 -30
- package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +0 -42
- package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +0 -26
- package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +0 -34
- package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +0 -39
- package/node_modules/ajv/lib/vocabularies/validation/required.ts +0 -98
- package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +0 -79
- package/node_modules/ajv/package.json +0 -127
- package/node_modules/ajv-formats/LICENSE +0 -21
- package/node_modules/ajv-formats/README.md +0 -125
- package/node_modules/ajv-formats/dist/formats.d.ts +0 -9
- package/node_modules/ajv-formats/dist/formats.js +0 -208
- package/node_modules/ajv-formats/dist/formats.js.map +0 -1
- package/node_modules/ajv-formats/dist/index.d.ts +0 -15
- package/node_modules/ajv-formats/dist/index.js +0 -37
- package/node_modules/ajv-formats/dist/index.js.map +0 -1
- package/node_modules/ajv-formats/dist/limit.d.ts +0 -10
- package/node_modules/ajv-formats/dist/limit.js +0 -69
- package/node_modules/ajv-formats/dist/limit.js.map +0 -1
- package/node_modules/ajv-formats/package.json +0 -74
- package/node_modules/ajv-formats/src/formats.ts +0 -269
- package/node_modules/ajv-formats/src/index.ts +0 -62
- package/node_modules/ajv-formats/src/limit.ts +0 -99
- package/node_modules/fast-deep-equal/LICENSE +0 -21
- package/node_modules/fast-deep-equal/README.md +0 -96
- package/node_modules/fast-deep-equal/es6/index.d.ts +0 -2
- package/node_modules/fast-deep-equal/es6/index.js +0 -72
- package/node_modules/fast-deep-equal/es6/react.d.ts +0 -2
- package/node_modules/fast-deep-equal/es6/react.js +0 -79
- package/node_modules/fast-deep-equal/index.d.ts +0 -4
- package/node_modules/fast-deep-equal/index.js +0 -46
- package/node_modules/fast-deep-equal/package.json +0 -61
- package/node_modules/fast-deep-equal/react.d.ts +0 -2
- package/node_modules/fast-deep-equal/react.js +0 -53
- package/node_modules/fast-uri/.gitattributes +0 -2
- package/node_modules/fast-uri/.github/.stale.yml +0 -21
- package/node_modules/fast-uri/.github/dependabot.yml +0 -13
- package/node_modules/fast-uri/.github/tests_checker.yml +0 -8
- package/node_modules/fast-uri/.github/workflows/ci.yml +0 -101
- package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +0 -24
- package/node_modules/fast-uri/LICENSE +0 -32
- package/node_modules/fast-uri/README.md +0 -143
- package/node_modules/fast-uri/benchmark/benchmark.mjs +0 -159
- package/node_modules/fast-uri/benchmark/equal.mjs +0 -51
- package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +0 -22
- package/node_modules/fast-uri/benchmark/package.json +0 -17
- package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +0 -24
- package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +0 -65
- package/node_modules/fast-uri/eslint.config.js +0 -6
- package/node_modules/fast-uri/index.js +0 -340
- package/node_modules/fast-uri/lib/schemes.js +0 -267
- package/node_modules/fast-uri/lib/utils.js +0 -336
- package/node_modules/fast-uri/package.json +0 -69
- package/node_modules/fast-uri/test/ajv.test.js +0 -43
- package/node_modules/fast-uri/test/equal.test.js +0 -108
- package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +0 -501
- package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +0 -120
- package/node_modules/fast-uri/test/parse.test.js +0 -318
- package/node_modules/fast-uri/test/resolve.test.js +0 -78
- package/node_modules/fast-uri/test/rfc-3986.test.js +0 -90
- package/node_modules/fast-uri/test/serialize.test.js +0 -151
- package/node_modules/fast-uri/test/uri-js-compatibility.test.js +0 -33
- package/node_modules/fast-uri/test/uri-js.test.js +0 -912
- package/node_modules/fast-uri/test/util.test.js +0 -38
- package/node_modules/fast-uri/tsconfig.json +0 -9
- package/node_modules/fast-uri/types/index.d.ts +0 -60
- package/node_modules/fast-uri/types/index.test-d.ts +0 -17
- package/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
- package/node_modules/json-schema-traverse/.github/FUNDING.yml +0 -2
- package/node_modules/json-schema-traverse/.github/workflows/build.yml +0 -28
- package/node_modules/json-schema-traverse/.github/workflows/publish.yml +0 -27
- package/node_modules/json-schema-traverse/LICENSE +0 -21
- package/node_modules/json-schema-traverse/README.md +0 -95
- package/node_modules/json-schema-traverse/index.d.ts +0 -40
- package/node_modules/json-schema-traverse/index.js +0 -93
- package/node_modules/json-schema-traverse/package.json +0 -43
- package/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
- package/node_modules/json-schema-traverse/spec/fixtures/schema.js +0 -125
- package/node_modules/json-schema-traverse/spec/index.spec.js +0 -171
- package/node_modules/require-from-string/index.js +0 -34
- package/node_modules/require-from-string/license +0 -21
- package/node_modules/require-from-string/package.json +0 -28
- package/node_modules/require-from-string/readme.md +0 -56
|
@@ -39,15 +39,13 @@ info:
|
|
|
39
39
|
license:
|
|
40
40
|
name: Apache-2.0
|
|
41
41
|
url: https://www.apache.org/licenses/LICENSE-2.0.html
|
|
42
|
-
|
|
43
42
|
servers:
|
|
44
|
-
- url:
|
|
43
|
+
- url: "{marketplace_url}/api/v1"
|
|
45
44
|
description: Any OSSA-compliant marketplace
|
|
46
45
|
variables:
|
|
47
46
|
marketplace_url:
|
|
48
47
|
default: http://localhost:4000
|
|
49
48
|
description: Set via OSSA_MARKETPLACE_URL env var
|
|
50
|
-
|
|
51
49
|
tags:
|
|
52
50
|
- name: catalog
|
|
53
51
|
description: Browse and search the marketplace catalog
|
|
@@ -73,15 +71,7 @@ tags:
|
|
|
73
71
|
description: GAID/DID identity management and attestation
|
|
74
72
|
- name: registry
|
|
75
73
|
description: UADP-compliant agent registry operations
|
|
76
|
-
|
|
77
|
-
# =============================================================================
|
|
78
|
-
# PATHS
|
|
79
|
-
# =============================================================================
|
|
80
74
|
paths:
|
|
81
|
-
|
|
82
|
-
# ---------------------------------------------------------------------------
|
|
83
|
-
# CATALOG — Browse and search across all item types
|
|
84
|
-
# ---------------------------------------------------------------------------
|
|
85
75
|
/catalog:
|
|
86
76
|
get:
|
|
87
77
|
operationId: browseCatalog
|
|
@@ -89,26 +79,27 @@ paths:
|
|
|
89
79
|
description: |
|
|
90
80
|
Returns all available items (agents, skills, MCP servers, tools, templates,
|
|
91
81
|
workflows, policies) with filtering, pagination, and sorting.
|
|
92
|
-
tags:
|
|
82
|
+
tags:
|
|
83
|
+
- catalog
|
|
93
84
|
parameters:
|
|
94
|
-
- $ref:
|
|
95
|
-
- $ref:
|
|
96
|
-
- $ref:
|
|
97
|
-
- $ref:
|
|
98
|
-
- $ref:
|
|
99
|
-
- $ref:
|
|
100
|
-
- $ref:
|
|
101
|
-
- $ref:
|
|
102
|
-
- $ref:
|
|
103
|
-
- $ref:
|
|
85
|
+
- $ref: "#/components/parameters/ItemTypeFilter"
|
|
86
|
+
- $ref: "#/components/parameters/TagFilter"
|
|
87
|
+
- $ref: "#/components/parameters/TrustTierFilter"
|
|
88
|
+
- $ref: "#/components/parameters/AgentTypeFilter"
|
|
89
|
+
- $ref: "#/components/parameters/AgentKindFilter"
|
|
90
|
+
- $ref: "#/components/parameters/CapabilityFilter"
|
|
91
|
+
- $ref: "#/components/parameters/PlatformFilter"
|
|
92
|
+
- $ref: "#/components/parameters/SortBy"
|
|
93
|
+
- $ref: "#/components/parameters/Limit"
|
|
94
|
+
- $ref: "#/components/parameters/Offset"
|
|
104
95
|
responses:
|
|
105
|
-
|
|
96
|
+
"200":
|
|
106
97
|
description: Catalog listing
|
|
107
98
|
content:
|
|
108
99
|
application/json:
|
|
109
100
|
schema:
|
|
110
|
-
$ref:
|
|
111
|
-
|
|
101
|
+
$ref: "#/components/schemas/CatalogResponse"
|
|
102
|
+
x-ossa-capability: marketplace-browse-catalog
|
|
112
103
|
/catalog/search:
|
|
113
104
|
get:
|
|
114
105
|
operationId: searchCatalog
|
|
@@ -116,7 +107,8 @@ paths:
|
|
|
116
107
|
description: |
|
|
117
108
|
Full-text and semantic search across agents, skills, tools, MCP servers,
|
|
118
109
|
templates, workflows, and policies. Supports natural language queries.
|
|
119
|
-
tags:
|
|
110
|
+
tags:
|
|
111
|
+
- catalog
|
|
120
112
|
parameters:
|
|
121
113
|
- name: q
|
|
122
114
|
in: query
|
|
@@ -124,30 +116,31 @@ paths:
|
|
|
124
116
|
description: Search query (natural language or keywords)
|
|
125
117
|
schema:
|
|
126
118
|
type: string
|
|
127
|
-
example:
|
|
128
|
-
- $ref:
|
|
129
|
-
- $ref:
|
|
130
|
-
- $ref:
|
|
131
|
-
- $ref:
|
|
119
|
+
example: drupal content moderation agent with MCP tools
|
|
120
|
+
- $ref: "#/components/parameters/ItemTypeFilter"
|
|
121
|
+
- $ref: "#/components/parameters/TrustTierFilter"
|
|
122
|
+
- $ref: "#/components/parameters/PlatformFilter"
|
|
123
|
+
- $ref: "#/components/parameters/Limit"
|
|
132
124
|
responses:
|
|
133
|
-
|
|
125
|
+
"200":
|
|
134
126
|
description: Search results ranked by relevance
|
|
135
127
|
content:
|
|
136
128
|
application/json:
|
|
137
129
|
schema:
|
|
138
|
-
$ref:
|
|
139
|
-
|
|
130
|
+
$ref: "#/components/schemas/SearchResponse"
|
|
131
|
+
x-ossa-capability: marketplace-search-catalog
|
|
140
132
|
/catalog/{itemType}/{itemId}:
|
|
141
133
|
get:
|
|
142
134
|
operationId: getCatalogItem
|
|
143
135
|
summary: Get full details for a catalog item
|
|
144
|
-
tags:
|
|
136
|
+
tags:
|
|
137
|
+
- catalog
|
|
145
138
|
parameters:
|
|
146
139
|
- name: itemType
|
|
147
140
|
in: path
|
|
148
141
|
required: true
|
|
149
142
|
schema:
|
|
150
|
-
$ref:
|
|
143
|
+
$ref: "#/components/schemas/ItemType"
|
|
151
144
|
- name: itemId
|
|
152
145
|
in: path
|
|
153
146
|
required: true
|
|
@@ -159,33 +152,35 @@ paths:
|
|
|
159
152
|
type: string
|
|
160
153
|
description: Specific version (default latest)
|
|
161
154
|
responses:
|
|
162
|
-
|
|
155
|
+
"200":
|
|
163
156
|
description: Full item details including manifest, dependencies, and metadata
|
|
164
157
|
content:
|
|
165
158
|
application/json:
|
|
166
159
|
schema:
|
|
167
|
-
$ref:
|
|
168
|
-
|
|
169
|
-
$ref:
|
|
170
|
-
|
|
160
|
+
$ref: "#/components/schemas/CatalogItemDetail"
|
|
161
|
+
"404":
|
|
162
|
+
$ref: "#/components/responses/NotFound"
|
|
163
|
+
x-ossa-capability: marketplace-get-catalog-item
|
|
164
|
+
description: Get full details for a catalog item
|
|
171
165
|
/catalog/{itemType}/{itemId}/versions:
|
|
172
166
|
get:
|
|
173
167
|
operationId: listItemVersions
|
|
174
168
|
summary: List all versions of a catalog item
|
|
175
|
-
tags:
|
|
169
|
+
tags:
|
|
170
|
+
- catalog
|
|
176
171
|
parameters:
|
|
177
172
|
- name: itemType
|
|
178
173
|
in: path
|
|
179
174
|
required: true
|
|
180
175
|
schema:
|
|
181
|
-
$ref:
|
|
176
|
+
$ref: "#/components/schemas/ItemType"
|
|
182
177
|
- name: itemId
|
|
183
178
|
in: path
|
|
184
179
|
required: true
|
|
185
180
|
schema:
|
|
186
181
|
type: string
|
|
187
182
|
responses:
|
|
188
|
-
|
|
183
|
+
"200":
|
|
189
184
|
description: Version history
|
|
190
185
|
content:
|
|
191
186
|
application/json:
|
|
@@ -197,20 +192,19 @@ paths:
|
|
|
197
192
|
versions:
|
|
198
193
|
type: array
|
|
199
194
|
items:
|
|
200
|
-
$ref:
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
# PLUGINS — Install, manage, update local plugins
|
|
204
|
-
# ---------------------------------------------------------------------------
|
|
195
|
+
$ref: "#/components/schemas/VersionEntry"
|
|
196
|
+
x-ossa-capability: marketplace-list-item-versions
|
|
197
|
+
description: List all versions of a catalog item
|
|
205
198
|
/plugins:
|
|
206
199
|
get:
|
|
207
200
|
operationId: listInstalledPlugins
|
|
208
201
|
summary: List all installed plugins
|
|
209
|
-
tags:
|
|
202
|
+
tags:
|
|
203
|
+
- plugins
|
|
210
204
|
parameters:
|
|
211
|
-
- $ref:
|
|
205
|
+
- $ref: "#/components/parameters/ItemTypeFilter"
|
|
212
206
|
responses:
|
|
213
|
-
|
|
207
|
+
"200":
|
|
214
208
|
description: Installed plugins
|
|
215
209
|
content:
|
|
216
210
|
application/json:
|
|
@@ -222,8 +216,9 @@ paths:
|
|
|
222
216
|
plugins:
|
|
223
217
|
type: array
|
|
224
218
|
items:
|
|
225
|
-
$ref:
|
|
226
|
-
|
|
219
|
+
$ref: "#/components/schemas/InstalledPlugin"
|
|
220
|
+
x-ossa-capability: marketplace-list-installed-plugins
|
|
221
|
+
description: List all installed plugins
|
|
227
222
|
post:
|
|
228
223
|
operationId: installPlugin
|
|
229
224
|
summary: Install a plugin from marketplace
|
|
@@ -231,36 +226,41 @@ paths:
|
|
|
231
226
|
Installs an agent, skill, MCP server, tool, template, workflow, or policy
|
|
232
227
|
from any registered marketplace. Resolves dependencies automatically.
|
|
233
228
|
Validates trust tier against OSSA_TRUST_TIER minimum.
|
|
234
|
-
tags:
|
|
229
|
+
tags:
|
|
230
|
+
- plugins
|
|
235
231
|
requestBody:
|
|
236
232
|
required: true
|
|
237
233
|
content:
|
|
238
234
|
application/json:
|
|
239
235
|
schema:
|
|
240
|
-
$ref:
|
|
236
|
+
$ref: "#/components/schemas/InstallRequest"
|
|
241
237
|
responses:
|
|
242
|
-
|
|
238
|
+
"200":
|
|
243
239
|
description: Plugin installed successfully
|
|
244
240
|
content:
|
|
245
241
|
application/json:
|
|
246
242
|
schema:
|
|
247
|
-
$ref:
|
|
248
|
-
|
|
249
|
-
$ref:
|
|
250
|
-
|
|
243
|
+
$ref: "#/components/schemas/InstallResult"
|
|
244
|
+
"400":
|
|
245
|
+
$ref: "#/components/responses/BadRequest"
|
|
246
|
+
"403":
|
|
251
247
|
description: Trust tier below minimum or policy violation
|
|
252
248
|
content:
|
|
253
249
|
application/json:
|
|
254
250
|
schema:
|
|
255
|
-
$ref:
|
|
256
|
-
|
|
257
|
-
$ref:
|
|
258
|
-
|
|
251
|
+
$ref: "#/components/schemas/TrustViolation"
|
|
252
|
+
"404":
|
|
253
|
+
$ref: "#/components/responses/NotFound"
|
|
254
|
+
x-ossa-capability: marketplace-install-plugin
|
|
255
|
+
x-ossa-autonomy:
|
|
256
|
+
level: supervised
|
|
257
|
+
approval_required: true
|
|
259
258
|
/plugins/{pluginId}:
|
|
260
259
|
get:
|
|
261
260
|
operationId: getInstalledPlugin
|
|
262
261
|
summary: Get details of an installed plugin
|
|
263
|
-
tags:
|
|
262
|
+
tags:
|
|
263
|
+
- plugins
|
|
264
264
|
parameters:
|
|
265
265
|
- name: pluginId
|
|
266
266
|
in: path
|
|
@@ -268,19 +268,21 @@ paths:
|
|
|
268
268
|
schema:
|
|
269
269
|
type: string
|
|
270
270
|
responses:
|
|
271
|
-
|
|
271
|
+
"200":
|
|
272
272
|
description: Installed plugin details
|
|
273
273
|
content:
|
|
274
274
|
application/json:
|
|
275
275
|
schema:
|
|
276
|
-
$ref:
|
|
277
|
-
|
|
278
|
-
$ref:
|
|
279
|
-
|
|
276
|
+
$ref: "#/components/schemas/InstalledPlugin"
|
|
277
|
+
"404":
|
|
278
|
+
$ref: "#/components/responses/NotFound"
|
|
279
|
+
x-ossa-capability: marketplace-get-installed-plugin
|
|
280
|
+
description: Get details of an installed plugin
|
|
280
281
|
put:
|
|
281
282
|
operationId: updatePlugin
|
|
282
283
|
summary: Update an installed plugin to a new version
|
|
283
|
-
tags:
|
|
284
|
+
tags:
|
|
285
|
+
- plugins
|
|
284
286
|
parameters:
|
|
285
287
|
- name: pluginId
|
|
286
288
|
in: path
|
|
@@ -297,17 +299,22 @@ paths:
|
|
|
297
299
|
type: string
|
|
298
300
|
description: Target version (default latest)
|
|
299
301
|
responses:
|
|
300
|
-
|
|
302
|
+
"200":
|
|
301
303
|
description: Plugin updated
|
|
302
304
|
content:
|
|
303
305
|
application/json:
|
|
304
306
|
schema:
|
|
305
|
-
$ref:
|
|
306
|
-
|
|
307
|
+
$ref: "#/components/schemas/InstallResult"
|
|
308
|
+
x-ossa-capability: marketplace-update-plugin
|
|
309
|
+
x-ossa-autonomy:
|
|
310
|
+
level: supervised
|
|
311
|
+
approval_required: true
|
|
312
|
+
description: Update an installed plugin to a new version
|
|
307
313
|
delete:
|
|
308
314
|
operationId: removePlugin
|
|
309
315
|
summary: Remove an installed plugin
|
|
310
|
-
tags:
|
|
316
|
+
tags:
|
|
317
|
+
- plugins
|
|
311
318
|
parameters:
|
|
312
319
|
- name: pluginId
|
|
313
320
|
in: path
|
|
@@ -321,9 +328,9 @@ paths:
|
|
|
321
328
|
default: false
|
|
322
329
|
description: Remove even if other plugins depend on it
|
|
323
330
|
responses:
|
|
324
|
-
|
|
331
|
+
"200":
|
|
325
332
|
description: Plugin removed
|
|
326
|
-
|
|
333
|
+
"409":
|
|
327
334
|
description: Plugin has dependents
|
|
328
335
|
content:
|
|
329
336
|
application/json:
|
|
@@ -336,14 +343,19 @@ paths:
|
|
|
336
343
|
type: array
|
|
337
344
|
items:
|
|
338
345
|
type: string
|
|
339
|
-
|
|
346
|
+
x-ossa-capability: marketplace-remove-plugin
|
|
347
|
+
x-ossa-autonomy:
|
|
348
|
+
level: supervised
|
|
349
|
+
approval_required: true
|
|
350
|
+
description: Remove an installed plugin
|
|
340
351
|
/plugins/check-updates:
|
|
341
352
|
get:
|
|
342
353
|
operationId: checkPluginUpdates
|
|
343
354
|
summary: Check for available updates across all installed plugins
|
|
344
|
-
tags:
|
|
355
|
+
tags:
|
|
356
|
+
- plugins
|
|
345
357
|
responses:
|
|
346
|
-
|
|
358
|
+
"200":
|
|
347
359
|
description: Available updates
|
|
348
360
|
content:
|
|
349
361
|
application/json:
|
|
@@ -365,7 +377,8 @@ paths:
|
|
|
365
377
|
type: string
|
|
366
378
|
changelog:
|
|
367
379
|
type: string
|
|
368
|
-
|
|
380
|
+
x-ossa-capability: marketplace-check-plugin-updates
|
|
381
|
+
description: Check for available updates across all installed plugins
|
|
369
382
|
/plugins/resolve:
|
|
370
383
|
post:
|
|
371
384
|
operationId: resolveDependencies
|
|
@@ -373,52 +386,57 @@ paths:
|
|
|
373
386
|
description: |
|
|
374
387
|
Given a set of items to install, resolves all transitive dependencies,
|
|
375
388
|
checks version compatibility, and returns the full install plan.
|
|
376
|
-
tags:
|
|
389
|
+
tags:
|
|
390
|
+
- plugins
|
|
377
391
|
requestBody:
|
|
378
392
|
required: true
|
|
379
393
|
content:
|
|
380
394
|
application/json:
|
|
381
395
|
schema:
|
|
382
396
|
type: object
|
|
383
|
-
required:
|
|
397
|
+
required:
|
|
398
|
+
- items
|
|
384
399
|
properties:
|
|
385
400
|
items:
|
|
386
401
|
type: array
|
|
387
402
|
items:
|
|
388
403
|
type: object
|
|
389
|
-
required:
|
|
404
|
+
required:
|
|
405
|
+
- itemType
|
|
406
|
+
- itemId
|
|
390
407
|
properties:
|
|
391
408
|
itemType:
|
|
392
|
-
$ref:
|
|
409
|
+
$ref: "#/components/schemas/ItemType"
|
|
393
410
|
itemId:
|
|
394
411
|
type: string
|
|
395
412
|
version:
|
|
396
413
|
type: string
|
|
397
414
|
responses:
|
|
398
|
-
|
|
415
|
+
"200":
|
|
399
416
|
description: Resolved dependency tree
|
|
400
417
|
content:
|
|
401
418
|
application/json:
|
|
402
419
|
schema:
|
|
403
|
-
$ref:
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
420
|
+
$ref: "#/components/schemas/DependencyResolution"
|
|
421
|
+
x-ossa-capability: marketplace-resolve-dependencies
|
|
422
|
+
x-ossa-autonomy:
|
|
423
|
+
level: supervised
|
|
424
|
+
approval_required: true
|
|
408
425
|
/agents:
|
|
409
426
|
get:
|
|
410
427
|
operationId: listAgents
|
|
411
428
|
summary: List available agents
|
|
412
|
-
tags:
|
|
429
|
+
tags:
|
|
430
|
+
- agents
|
|
413
431
|
parameters:
|
|
414
|
-
- $ref:
|
|
415
|
-
- $ref:
|
|
416
|
-
- $ref:
|
|
417
|
-
- $ref:
|
|
418
|
-
- $ref:
|
|
419
|
-
- $ref:
|
|
432
|
+
- $ref: "#/components/parameters/AgentTypeFilter"
|
|
433
|
+
- $ref: "#/components/parameters/AgentKindFilter"
|
|
434
|
+
- $ref: "#/components/parameters/CapabilityFilter"
|
|
435
|
+
- $ref: "#/components/parameters/TrustTierFilter"
|
|
436
|
+
- $ref: "#/components/parameters/Limit"
|
|
437
|
+
- $ref: "#/components/parameters/Offset"
|
|
420
438
|
responses:
|
|
421
|
-
|
|
439
|
+
"200":
|
|
422
440
|
description: Agent listing
|
|
423
441
|
content:
|
|
424
442
|
application/json:
|
|
@@ -430,42 +448,48 @@ paths:
|
|
|
430
448
|
agents:
|
|
431
449
|
type: array
|
|
432
450
|
items:
|
|
433
|
-
$ref:
|
|
434
|
-
|
|
451
|
+
$ref: "#/components/schemas/AgentSummary"
|
|
452
|
+
x-ossa-capability: marketplace-list-agents
|
|
453
|
+
description: List available agents
|
|
435
454
|
post:
|
|
436
455
|
operationId: publishAgent
|
|
437
456
|
summary: Publish an agent to the marketplace
|
|
438
457
|
description: |
|
|
439
458
|
Publishes a full OSSA agent manifest. Validates against spec, checks trust tier,
|
|
440
459
|
generates GAID if not present, signs manifest if key provided.
|
|
441
|
-
tags:
|
|
460
|
+
tags:
|
|
461
|
+
- agents
|
|
442
462
|
requestBody:
|
|
443
463
|
required: true
|
|
444
464
|
content:
|
|
445
465
|
application/json:
|
|
446
466
|
schema:
|
|
447
|
-
$ref:
|
|
467
|
+
$ref: "#/components/schemas/PublishAgentRequest"
|
|
448
468
|
responses:
|
|
449
|
-
|
|
469
|
+
"201":
|
|
450
470
|
description: Agent published
|
|
451
471
|
content:
|
|
452
472
|
application/json:
|
|
453
473
|
schema:
|
|
454
|
-
$ref:
|
|
455
|
-
|
|
456
|
-
$ref:
|
|
457
|
-
|
|
474
|
+
$ref: "#/components/schemas/PublishResult"
|
|
475
|
+
"400":
|
|
476
|
+
$ref: "#/components/responses/BadRequest"
|
|
477
|
+
"409":
|
|
458
478
|
description: Agent version already exists
|
|
459
479
|
content:
|
|
460
480
|
application/json:
|
|
461
481
|
schema:
|
|
462
|
-
$ref:
|
|
463
|
-
|
|
482
|
+
$ref: "#/components/schemas/Error"
|
|
483
|
+
x-ossa-capability: marketplace-publish-agent
|
|
484
|
+
x-ossa-autonomy:
|
|
485
|
+
level: supervised
|
|
486
|
+
approval_required: true
|
|
464
487
|
/agents/{agentId}:
|
|
465
488
|
get:
|
|
466
489
|
operationId: getAgent
|
|
467
490
|
summary: Get full agent manifest and metadata
|
|
468
|
-
tags:
|
|
491
|
+
tags:
|
|
492
|
+
- agents
|
|
469
493
|
parameters:
|
|
470
494
|
- name: agentId
|
|
471
495
|
in: path
|
|
@@ -477,18 +501,19 @@ paths:
|
|
|
477
501
|
schema:
|
|
478
502
|
type: string
|
|
479
503
|
responses:
|
|
480
|
-
|
|
504
|
+
"200":
|
|
481
505
|
description: Full agent manifest
|
|
482
506
|
content:
|
|
483
507
|
application/json:
|
|
484
508
|
schema:
|
|
485
|
-
$ref:
|
|
509
|
+
$ref: "#/components/schemas/AgentDetail"
|
|
486
510
|
application/yaml:
|
|
487
511
|
schema:
|
|
488
|
-
$ref:
|
|
489
|
-
|
|
490
|
-
$ref:
|
|
491
|
-
|
|
512
|
+
$ref: "#/components/schemas/AgentDetail"
|
|
513
|
+
"404":
|
|
514
|
+
$ref: "#/components/responses/NotFound"
|
|
515
|
+
x-ossa-capability: marketplace-get-agent
|
|
516
|
+
description: Get full agent manifest and metadata
|
|
492
517
|
/agents/{agentId}/export:
|
|
493
518
|
post:
|
|
494
519
|
operationId: exportAgent
|
|
@@ -496,7 +521,8 @@ paths:
|
|
|
496
521
|
description: |
|
|
497
522
|
Transforms an OSSA agent manifest into the native format of a target platform.
|
|
498
523
|
Supports all major agentic frameworks and protocols.
|
|
499
|
-
tags:
|
|
524
|
+
tags:
|
|
525
|
+
- export
|
|
500
526
|
parameters:
|
|
501
527
|
- name: agentId
|
|
502
528
|
in: path
|
|
@@ -508,15 +534,18 @@ paths:
|
|
|
508
534
|
content:
|
|
509
535
|
application/json:
|
|
510
536
|
schema:
|
|
511
|
-
$ref:
|
|
537
|
+
$ref: "#/components/schemas/ExportRequest"
|
|
512
538
|
responses:
|
|
513
|
-
|
|
539
|
+
"200":
|
|
514
540
|
description: Exported agent in target format
|
|
515
541
|
content:
|
|
516
542
|
application/json:
|
|
517
543
|
schema:
|
|
518
|
-
$ref:
|
|
519
|
-
|
|
544
|
+
$ref: "#/components/schemas/ExportResult"
|
|
545
|
+
x-ossa-capability: marketplace-export-agent
|
|
546
|
+
x-ossa-autonomy:
|
|
547
|
+
level: supervised
|
|
548
|
+
approval_required: true
|
|
520
549
|
/agents/{agentId}/compose:
|
|
521
550
|
post:
|
|
522
551
|
operationId: composeAgent
|
|
@@ -525,7 +554,8 @@ paths:
|
|
|
525
554
|
Assembles an agent from skills, tools, MCP servers, and policies
|
|
526
555
|
available in the marketplace. Creates a complete OSSA manifest
|
|
527
556
|
with all dependencies resolved.
|
|
528
|
-
tags:
|
|
557
|
+
tags:
|
|
558
|
+
- agents
|
|
529
559
|
parameters:
|
|
530
560
|
- name: agentId
|
|
531
561
|
in: path
|
|
@@ -537,30 +567,31 @@ paths:
|
|
|
537
567
|
content:
|
|
538
568
|
application/json:
|
|
539
569
|
schema:
|
|
540
|
-
$ref:
|
|
570
|
+
$ref: "#/components/schemas/ComposeRequest"
|
|
541
571
|
responses:
|
|
542
|
-
|
|
572
|
+
"200":
|
|
543
573
|
description: Composed agent manifest
|
|
544
574
|
content:
|
|
545
575
|
application/json:
|
|
546
576
|
schema:
|
|
547
|
-
$ref:
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
577
|
+
$ref: "#/components/schemas/AgentDetail"
|
|
578
|
+
x-ossa-capability: marketplace-compose-agent
|
|
579
|
+
x-ossa-autonomy:
|
|
580
|
+
level: supervised
|
|
581
|
+
approval_required: true
|
|
552
582
|
/skills:
|
|
553
583
|
get:
|
|
554
584
|
operationId: listSkills
|
|
555
585
|
summary: List available skills
|
|
556
|
-
tags:
|
|
586
|
+
tags:
|
|
587
|
+
- skills
|
|
557
588
|
parameters:
|
|
558
|
-
- $ref:
|
|
559
|
-
- $ref:
|
|
560
|
-
- $ref:
|
|
561
|
-
- $ref:
|
|
589
|
+
- $ref: "#/components/parameters/TagFilter"
|
|
590
|
+
- $ref: "#/components/parameters/PlatformFilter"
|
|
591
|
+
- $ref: "#/components/parameters/Limit"
|
|
592
|
+
- $ref: "#/components/parameters/Offset"
|
|
562
593
|
responses:
|
|
563
|
-
|
|
594
|
+
"200":
|
|
564
595
|
description: Skills listing
|
|
565
596
|
content:
|
|
566
597
|
application/json:
|
|
@@ -572,13 +603,15 @@ paths:
|
|
|
572
603
|
skills:
|
|
573
604
|
type: array
|
|
574
605
|
items:
|
|
575
|
-
$ref:
|
|
576
|
-
|
|
606
|
+
$ref: "#/components/schemas/SkillSummary"
|
|
607
|
+
x-ossa-capability: marketplace-list-skills
|
|
608
|
+
description: List available skills
|
|
577
609
|
/skills/{skillId}:
|
|
578
610
|
get:
|
|
579
611
|
operationId: getSkill
|
|
580
612
|
summary: Get full skill definition (SKILL.md content + metadata)
|
|
581
|
-
tags:
|
|
613
|
+
tags:
|
|
614
|
+
- skills
|
|
582
615
|
parameters:
|
|
583
616
|
- name: skillId
|
|
584
617
|
in: path
|
|
@@ -586,31 +619,33 @@ paths:
|
|
|
586
619
|
schema:
|
|
587
620
|
type: string
|
|
588
621
|
responses:
|
|
589
|
-
|
|
622
|
+
"200":
|
|
590
623
|
description: Full skill definition
|
|
591
624
|
content:
|
|
592
625
|
application/json:
|
|
593
626
|
schema:
|
|
594
|
-
$ref:
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
# MCP SERVERS — MCP server registry
|
|
598
|
-
# ---------------------------------------------------------------------------
|
|
627
|
+
$ref: "#/components/schemas/SkillDetail"
|
|
628
|
+
x-ossa-capability: marketplace-get-skill
|
|
629
|
+
description: Get full skill definition (SKILL.md content + metadata)
|
|
599
630
|
/mcp-servers:
|
|
600
631
|
get:
|
|
601
632
|
operationId: listMcpServers
|
|
602
633
|
summary: List available MCP servers
|
|
603
|
-
tags:
|
|
634
|
+
tags:
|
|
635
|
+
- mcp-servers
|
|
604
636
|
parameters:
|
|
605
637
|
- name: transport
|
|
606
638
|
in: query
|
|
607
639
|
schema:
|
|
608
640
|
type: string
|
|
609
|
-
enum:
|
|
610
|
-
|
|
611
|
-
|
|
641
|
+
enum:
|
|
642
|
+
- stdio
|
|
643
|
+
- sse
|
|
644
|
+
- streamable-http
|
|
645
|
+
- $ref: "#/components/parameters/TagFilter"
|
|
646
|
+
- $ref: "#/components/parameters/Limit"
|
|
612
647
|
responses:
|
|
613
|
-
|
|
648
|
+
"200":
|
|
614
649
|
description: MCP server listing
|
|
615
650
|
content:
|
|
616
651
|
application/json:
|
|
@@ -622,13 +657,15 @@ paths:
|
|
|
622
657
|
servers:
|
|
623
658
|
type: array
|
|
624
659
|
items:
|
|
625
|
-
$ref:
|
|
626
|
-
|
|
660
|
+
$ref: "#/components/schemas/McpServerSummary"
|
|
661
|
+
x-ossa-capability: marketplace-list-mcp-servers
|
|
662
|
+
description: List available MCP servers
|
|
627
663
|
/mcp-servers/{serverId}:
|
|
628
664
|
get:
|
|
629
665
|
operationId: getMcpServer
|
|
630
666
|
summary: Get MCP server details including discovered tools
|
|
631
|
-
tags:
|
|
667
|
+
tags:
|
|
668
|
+
- mcp-servers
|
|
632
669
|
parameters:
|
|
633
670
|
- name: serverId
|
|
634
671
|
in: path
|
|
@@ -636,32 +673,34 @@ paths:
|
|
|
636
673
|
schema:
|
|
637
674
|
type: string
|
|
638
675
|
responses:
|
|
639
|
-
|
|
676
|
+
"200":
|
|
640
677
|
description: MCP server details with tool listing
|
|
641
678
|
content:
|
|
642
679
|
application/json:
|
|
643
680
|
schema:
|
|
644
|
-
$ref:
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
# TOOLS — Individual tool catalog
|
|
648
|
-
# ---------------------------------------------------------------------------
|
|
681
|
+
$ref: "#/components/schemas/McpServerDetail"
|
|
682
|
+
x-ossa-capability: marketplace-get-mcp-server
|
|
683
|
+
description: Get MCP server details including discovered tools
|
|
649
684
|
/tools:
|
|
650
685
|
get:
|
|
651
686
|
operationId: listTools
|
|
652
687
|
summary: List available tools (standalone and from MCP servers)
|
|
653
|
-
tags:
|
|
688
|
+
tags:
|
|
689
|
+
- tools
|
|
654
690
|
parameters:
|
|
655
|
-
- $ref:
|
|
691
|
+
- $ref: "#/components/parameters/TagFilter"
|
|
656
692
|
- name: source
|
|
657
693
|
in: query
|
|
658
694
|
description: Filter by tool source
|
|
659
695
|
schema:
|
|
660
696
|
type: string
|
|
661
|
-
enum:
|
|
662
|
-
|
|
697
|
+
enum:
|
|
698
|
+
- mcp
|
|
699
|
+
- standalone
|
|
700
|
+
- builtin
|
|
701
|
+
- $ref: "#/components/parameters/Limit"
|
|
663
702
|
responses:
|
|
664
|
-
|
|
703
|
+
"200":
|
|
665
704
|
description: Tool listing
|
|
666
705
|
content:
|
|
667
706
|
application/json:
|
|
@@ -673,26 +712,25 @@ paths:
|
|
|
673
712
|
tools:
|
|
674
713
|
type: array
|
|
675
714
|
items:
|
|
676
|
-
$ref:
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
# TEMPLATES — Agent and workflow scaffolding
|
|
680
|
-
# ---------------------------------------------------------------------------
|
|
715
|
+
$ref: "#/components/schemas/ToolSummary"
|
|
716
|
+
x-ossa-capability: marketplace-list-tools
|
|
717
|
+
description: List available tools (standalone and from MCP servers)
|
|
681
718
|
/templates:
|
|
682
719
|
get:
|
|
683
720
|
operationId: listTemplates
|
|
684
721
|
summary: List available agent and workflow templates
|
|
685
|
-
tags:
|
|
722
|
+
tags:
|
|
723
|
+
- templates
|
|
686
724
|
parameters:
|
|
687
|
-
- $ref:
|
|
688
|
-
- $ref:
|
|
725
|
+
- $ref: "#/components/parameters/AgentTypeFilter"
|
|
726
|
+
- $ref: "#/components/parameters/AgentKindFilter"
|
|
689
727
|
- name: architecture
|
|
690
728
|
in: query
|
|
691
729
|
schema:
|
|
692
|
-
$ref:
|
|
693
|
-
- $ref:
|
|
730
|
+
$ref: "#/components/schemas/ArchitecturePattern"
|
|
731
|
+
- $ref: "#/components/parameters/Limit"
|
|
694
732
|
responses:
|
|
695
|
-
|
|
733
|
+
"200":
|
|
696
734
|
description: Template listing
|
|
697
735
|
content:
|
|
698
736
|
application/json:
|
|
@@ -704,13 +742,15 @@ paths:
|
|
|
704
742
|
templates:
|
|
705
743
|
type: array
|
|
706
744
|
items:
|
|
707
|
-
$ref:
|
|
708
|
-
|
|
745
|
+
$ref: "#/components/schemas/TemplateSummary"
|
|
746
|
+
x-ossa-capability: marketplace-list-templates
|
|
747
|
+
description: List available agent and workflow templates
|
|
709
748
|
/templates/{templateId}/scaffold:
|
|
710
749
|
post:
|
|
711
750
|
operationId: scaffoldFromTemplate
|
|
712
751
|
summary: Generate a new agent manifest from a template
|
|
713
|
-
tags:
|
|
752
|
+
tags:
|
|
753
|
+
- templates
|
|
714
754
|
parameters:
|
|
715
755
|
- name: templateId
|
|
716
756
|
in: path
|
|
@@ -723,7 +763,8 @@ paths:
|
|
|
723
763
|
application/json:
|
|
724
764
|
schema:
|
|
725
765
|
type: object
|
|
726
|
-
required:
|
|
766
|
+
required:
|
|
767
|
+
- name
|
|
727
768
|
properties:
|
|
728
769
|
name:
|
|
729
770
|
type: string
|
|
@@ -737,26 +778,28 @@ paths:
|
|
|
737
778
|
type: string
|
|
738
779
|
description: Template variable overrides
|
|
739
780
|
responses:
|
|
740
|
-
|
|
781
|
+
"200":
|
|
741
782
|
description: Scaffolded agent manifest
|
|
742
783
|
content:
|
|
743
784
|
application/json:
|
|
744
785
|
schema:
|
|
745
|
-
$ref:
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
786
|
+
$ref: "#/components/schemas/AgentDetail"
|
|
787
|
+
x-ossa-capability: marketplace-scaffold-from-template
|
|
788
|
+
x-ossa-autonomy:
|
|
789
|
+
level: supervised
|
|
790
|
+
approval_required: true
|
|
791
|
+
description: Generate a new agent manifest from a template
|
|
750
792
|
/workflows:
|
|
751
793
|
get:
|
|
752
794
|
operationId: listWorkflows
|
|
753
795
|
summary: List available multi-agent workflows
|
|
754
|
-
tags:
|
|
796
|
+
tags:
|
|
797
|
+
- workflows
|
|
755
798
|
parameters:
|
|
756
|
-
- $ref:
|
|
757
|
-
- $ref:
|
|
799
|
+
- $ref: "#/components/parameters/TagFilter"
|
|
800
|
+
- $ref: "#/components/parameters/Limit"
|
|
758
801
|
responses:
|
|
759
|
-
|
|
802
|
+
"200":
|
|
760
803
|
description: Workflow listing
|
|
761
804
|
content:
|
|
762
805
|
application/json:
|
|
@@ -768,25 +811,30 @@ paths:
|
|
|
768
811
|
workflows:
|
|
769
812
|
type: array
|
|
770
813
|
items:
|
|
771
|
-
$ref:
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
# POLICIES — Security policies, Cedar rules, trust configuration
|
|
775
|
-
# ---------------------------------------------------------------------------
|
|
814
|
+
$ref: "#/components/schemas/WorkflowSummary"
|
|
815
|
+
x-ossa-capability: marketplace-list-workflows
|
|
816
|
+
description: List available multi-agent workflows
|
|
776
817
|
/policies:
|
|
777
818
|
get:
|
|
778
819
|
operationId: listPolicies
|
|
779
820
|
summary: List available security policies and Cedar rule sets
|
|
780
|
-
tags:
|
|
821
|
+
tags:
|
|
822
|
+
- policies
|
|
781
823
|
parameters:
|
|
782
824
|
- name: policyType
|
|
783
825
|
in: query
|
|
784
826
|
schema:
|
|
785
827
|
type: string
|
|
786
|
-
enum:
|
|
787
|
-
|
|
828
|
+
enum:
|
|
829
|
+
- cedar
|
|
830
|
+
- tool-allowlist
|
|
831
|
+
- trust-tier
|
|
832
|
+
- resource-budget
|
|
833
|
+
- audit-rule
|
|
834
|
+
- conformance-profile
|
|
835
|
+
- $ref: "#/components/parameters/Limit"
|
|
788
836
|
responses:
|
|
789
|
-
|
|
837
|
+
"200":
|
|
790
838
|
description: Policy listing
|
|
791
839
|
content:
|
|
792
840
|
application/json:
|
|
@@ -798,18 +846,17 @@ paths:
|
|
|
798
846
|
policies:
|
|
799
847
|
type: array
|
|
800
848
|
items:
|
|
801
|
-
$ref:
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
# EXPORT — Transform agent to any target platform
|
|
805
|
-
# ---------------------------------------------------------------------------
|
|
849
|
+
$ref: "#/components/schemas/PolicySummary"
|
|
850
|
+
x-ossa-capability: marketplace-list-policies
|
|
851
|
+
description: List available security policies and Cedar rule sets
|
|
806
852
|
/export/platforms:
|
|
807
853
|
get:
|
|
808
854
|
operationId: listExportPlatforms
|
|
809
855
|
summary: List all supported export target platforms
|
|
810
|
-
tags:
|
|
856
|
+
tags:
|
|
857
|
+
- export
|
|
811
858
|
responses:
|
|
812
|
-
|
|
859
|
+
"200":
|
|
813
860
|
description: Supported export platforms
|
|
814
861
|
content:
|
|
815
862
|
application/json:
|
|
@@ -819,8 +866,9 @@ paths:
|
|
|
819
866
|
platforms:
|
|
820
867
|
type: array
|
|
821
868
|
items:
|
|
822
|
-
$ref:
|
|
823
|
-
|
|
869
|
+
$ref: "#/components/schemas/ExportPlatform"
|
|
870
|
+
x-ossa-capability: marketplace-list-export-platforms
|
|
871
|
+
description: List all supported export target platforms
|
|
824
872
|
/export:
|
|
825
873
|
post:
|
|
826
874
|
operationId: exportManifest
|
|
@@ -828,47 +876,52 @@ paths:
|
|
|
828
876
|
description: |
|
|
829
877
|
Accepts a raw OSSA manifest and transforms it into the native format
|
|
830
878
|
of any supported target platform. Build once, run anywhere.
|
|
831
|
-
tags:
|
|
879
|
+
tags:
|
|
880
|
+
- export
|
|
832
881
|
requestBody:
|
|
833
882
|
required: true
|
|
834
883
|
content:
|
|
835
884
|
application/json:
|
|
836
885
|
schema:
|
|
837
886
|
type: object
|
|
838
|
-
required:
|
|
887
|
+
required:
|
|
888
|
+
- manifest
|
|
889
|
+
- target
|
|
839
890
|
properties:
|
|
840
891
|
manifest:
|
|
841
892
|
description: Full OSSA agent manifest
|
|
842
893
|
type: object
|
|
843
894
|
target:
|
|
844
|
-
$ref:
|
|
895
|
+
$ref: "#/components/schemas/ExportTarget"
|
|
845
896
|
options:
|
|
846
|
-
$ref:
|
|
897
|
+
$ref: "#/components/schemas/ExportOptions"
|
|
847
898
|
responses:
|
|
848
|
-
|
|
899
|
+
"200":
|
|
849
900
|
description: Exported result
|
|
850
901
|
content:
|
|
851
902
|
application/json:
|
|
852
903
|
schema:
|
|
853
|
-
$ref:
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
904
|
+
$ref: "#/components/schemas/ExportResult"
|
|
905
|
+
x-ossa-capability: marketplace-export-manifest
|
|
906
|
+
x-ossa-autonomy:
|
|
907
|
+
level: supervised
|
|
908
|
+
approval_required: true
|
|
858
909
|
/identity/gaid:
|
|
859
910
|
post:
|
|
860
911
|
operationId: generateGaid
|
|
861
912
|
summary: Generate a new GAID (Global Agent Identifier)
|
|
862
913
|
description: |
|
|
863
914
|
Creates a new W3C DID-based GAID for an agent. Supports did:web and did:ossa methods.
|
|
864
|
-
tags:
|
|
915
|
+
tags:
|
|
916
|
+
- identity
|
|
865
917
|
requestBody:
|
|
866
918
|
required: true
|
|
867
919
|
content:
|
|
868
920
|
application/json:
|
|
869
921
|
schema:
|
|
870
922
|
type: object
|
|
871
|
-
required:
|
|
923
|
+
required:
|
|
924
|
+
- agentName
|
|
872
925
|
properties:
|
|
873
926
|
agentName:
|
|
874
927
|
type: string
|
|
@@ -876,47 +929,56 @@ paths:
|
|
|
876
929
|
type: string
|
|
877
930
|
didMethod:
|
|
878
931
|
type: string
|
|
879
|
-
enum:
|
|
880
|
-
|
|
932
|
+
enum:
|
|
933
|
+
- did:web
|
|
934
|
+
- did:ossa
|
|
935
|
+
- did:key
|
|
936
|
+
default: did:web
|
|
881
937
|
generateKeys:
|
|
882
938
|
type: boolean
|
|
883
939
|
default: true
|
|
884
940
|
description: Generate Ed25519 keypair for verification
|
|
885
941
|
responses:
|
|
886
|
-
|
|
942
|
+
"201":
|
|
887
943
|
description: GAID created
|
|
888
944
|
content:
|
|
889
945
|
application/json:
|
|
890
946
|
schema:
|
|
891
|
-
$ref:
|
|
892
|
-
|
|
947
|
+
$ref: "#/components/schemas/GaidResult"
|
|
948
|
+
x-ossa-capability: marketplace-generate-gaid
|
|
949
|
+
x-ossa-autonomy:
|
|
950
|
+
level: supervised
|
|
951
|
+
approval_required: true
|
|
893
952
|
/identity/verify:
|
|
894
953
|
post:
|
|
895
954
|
operationId: verifyManifestSignature
|
|
896
955
|
summary: Verify an agent manifest signature and trust tier
|
|
897
|
-
tags:
|
|
956
|
+
tags:
|
|
957
|
+
- identity
|
|
898
958
|
requestBody:
|
|
899
959
|
required: true
|
|
900
960
|
content:
|
|
901
961
|
application/json:
|
|
902
962
|
schema:
|
|
903
963
|
type: object
|
|
904
|
-
required:
|
|
964
|
+
required:
|
|
965
|
+
- manifest
|
|
905
966
|
properties:
|
|
906
967
|
manifest:
|
|
907
968
|
type: object
|
|
908
969
|
description: OSSA manifest with x-signature block
|
|
909
970
|
responses:
|
|
910
|
-
|
|
971
|
+
"200":
|
|
911
972
|
description: Verification result
|
|
912
973
|
content:
|
|
913
974
|
application/json:
|
|
914
975
|
schema:
|
|
915
|
-
$ref:
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
976
|
+
$ref: "#/components/schemas/VerificationResult"
|
|
977
|
+
x-ossa-capability: marketplace-verify-manifest-signature
|
|
978
|
+
x-ossa-autonomy:
|
|
979
|
+
level: supervised
|
|
980
|
+
approval_required: true
|
|
981
|
+
description: Verify an agent manifest signature and trust tier
|
|
920
982
|
/registry:
|
|
921
983
|
get:
|
|
922
984
|
operationId: listRegistryAgents
|
|
@@ -924,14 +986,15 @@ paths:
|
|
|
924
986
|
description: |
|
|
925
987
|
UADP-compliant discovery endpoint. Returns registered agents
|
|
926
988
|
with filtering by trust tier, capability, and type.
|
|
927
|
-
tags:
|
|
989
|
+
tags:
|
|
990
|
+
- registry
|
|
928
991
|
parameters:
|
|
929
|
-
- $ref:
|
|
930
|
-
- $ref:
|
|
931
|
-
- $ref:
|
|
932
|
-
- $ref:
|
|
992
|
+
- $ref: "#/components/parameters/TrustTierFilter"
|
|
993
|
+
- $ref: "#/components/parameters/AgentTypeFilter"
|
|
994
|
+
- $ref: "#/components/parameters/CapabilityFilter"
|
|
995
|
+
- $ref: "#/components/parameters/Limit"
|
|
933
996
|
responses:
|
|
934
|
-
|
|
997
|
+
"200":
|
|
935
998
|
description: Registry listing
|
|
936
999
|
content:
|
|
937
1000
|
application/json:
|
|
@@ -941,13 +1004,14 @@ paths:
|
|
|
941
1004
|
agents:
|
|
942
1005
|
type: array
|
|
943
1006
|
items:
|
|
944
|
-
$ref:
|
|
945
|
-
|
|
1007
|
+
$ref: "#/components/schemas/RegistryEntry"
|
|
1008
|
+
x-ossa-capability: marketplace-list-registry-agents
|
|
946
1009
|
/registry/{agentId}:
|
|
947
1010
|
get:
|
|
948
1011
|
operationId: getRegistryAgent
|
|
949
1012
|
summary: Get agent from registry by GAID
|
|
950
|
-
tags:
|
|
1013
|
+
tags:
|
|
1014
|
+
- registry
|
|
951
1015
|
parameters:
|
|
952
1016
|
- name: agentId
|
|
953
1017
|
in: path
|
|
@@ -956,13 +1020,14 @@ paths:
|
|
|
956
1020
|
type: string
|
|
957
1021
|
description: GAID or agent name
|
|
958
1022
|
responses:
|
|
959
|
-
|
|
1023
|
+
"200":
|
|
960
1024
|
description: Registry entry
|
|
961
1025
|
content:
|
|
962
1026
|
application/json:
|
|
963
1027
|
schema:
|
|
964
|
-
$ref:
|
|
965
|
-
|
|
1028
|
+
$ref: "#/components/schemas/RegistryEntry"
|
|
1029
|
+
x-ossa-capability: marketplace-get-registry-agent
|
|
1030
|
+
description: Get agent from registry by GAID
|
|
966
1031
|
/registry/revoke/{agentId}:
|
|
967
1032
|
put:
|
|
968
1033
|
operationId: revokeAgent
|
|
@@ -970,7 +1035,8 @@ paths:
|
|
|
970
1035
|
description: |
|
|
971
1036
|
Marks agent as revoked in the registry. Emits uadp.agents.revoked event.
|
|
972
1037
|
Revoked agents are excluded from discovery by default.
|
|
973
|
-
tags:
|
|
1038
|
+
tags:
|
|
1039
|
+
- registry
|
|
974
1040
|
parameters:
|
|
975
1041
|
- name: agentId
|
|
976
1042
|
in: path
|
|
@@ -989,28 +1055,29 @@ paths:
|
|
|
989
1055
|
type: string
|
|
990
1056
|
description: DID of revoking principal
|
|
991
1057
|
responses:
|
|
992
|
-
|
|
1058
|
+
"200":
|
|
993
1059
|
description: Agent revoked
|
|
994
1060
|
security:
|
|
995
1061
|
- bearerAuth: []
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1062
|
+
x-ossa-capability: marketplace-revoke-agent
|
|
1063
|
+
x-ossa-autonomy:
|
|
1064
|
+
level: supervised
|
|
1065
|
+
approval_required: true
|
|
1000
1066
|
/.well-known/agent-card.json:
|
|
1001
1067
|
get:
|
|
1002
1068
|
operationId: getAgentCard
|
|
1003
1069
|
summary: UADP well-known agent card
|
|
1004
1070
|
description: Returns the marketplace's own agent card for discovery
|
|
1005
|
-
tags:
|
|
1071
|
+
tags:
|
|
1072
|
+
- registry
|
|
1006
1073
|
responses:
|
|
1007
|
-
|
|
1074
|
+
"200":
|
|
1008
1075
|
description: Agent card
|
|
1009
1076
|
content:
|
|
1010
1077
|
application/json:
|
|
1011
1078
|
schema:
|
|
1012
|
-
$ref:
|
|
1013
|
-
|
|
1079
|
+
$ref: "#/components/schemas/AgentCard"
|
|
1080
|
+
x-ossa-capability: marketplace-get-agent-card
|
|
1014
1081
|
/.well-known/ossa-marketplace.json:
|
|
1015
1082
|
get:
|
|
1016
1083
|
operationId: getMarketplaceInfo
|
|
@@ -1018,89 +1085,79 @@ paths:
|
|
|
1018
1085
|
description: |
|
|
1019
1086
|
Standard well-known endpoint for marketplace auto-discovery.
|
|
1020
1087
|
The CLI uses this to verify a URL is a valid OSSA marketplace.
|
|
1021
|
-
tags:
|
|
1088
|
+
tags:
|
|
1089
|
+
- catalog
|
|
1022
1090
|
responses:
|
|
1023
|
-
|
|
1091
|
+
"200":
|
|
1024
1092
|
description: Marketplace metadata
|
|
1025
1093
|
content:
|
|
1026
1094
|
application/json:
|
|
1027
1095
|
schema:
|
|
1028
|
-
$ref:
|
|
1029
|
-
|
|
1030
|
-
# =============================================================================
|
|
1031
|
-
# COMPONENTS
|
|
1032
|
-
# =============================================================================
|
|
1096
|
+
$ref: "#/components/schemas/MarketplaceInfo"
|
|
1097
|
+
x-ossa-capability: marketplace-get-marketplace-info
|
|
1033
1098
|
components:
|
|
1034
|
-
|
|
1035
1099
|
securitySchemes:
|
|
1036
1100
|
bearerAuth:
|
|
1037
1101
|
type: http
|
|
1038
1102
|
scheme: bearer
|
|
1039
1103
|
description: OSSA_MARKETPLACE_TOKEN env var
|
|
1040
|
-
|
|
1041
|
-
# ---------------------------------------------------------------------------
|
|
1042
|
-
# PARAMETERS
|
|
1043
|
-
# ---------------------------------------------------------------------------
|
|
1044
1104
|
parameters:
|
|
1045
1105
|
ItemTypeFilter:
|
|
1046
1106
|
name: type
|
|
1047
1107
|
in: query
|
|
1048
1108
|
description: Filter by item type
|
|
1049
1109
|
schema:
|
|
1050
|
-
$ref:
|
|
1051
|
-
|
|
1110
|
+
$ref: "#/components/schemas/ItemType"
|
|
1052
1111
|
TagFilter:
|
|
1053
1112
|
name: tags
|
|
1054
1113
|
in: query
|
|
1055
1114
|
description: Filter by tags (comma-separated)
|
|
1056
1115
|
schema:
|
|
1057
1116
|
type: string
|
|
1058
|
-
example:
|
|
1059
|
-
|
|
1117
|
+
example: drupal,security,content
|
|
1060
1118
|
TrustTierFilter:
|
|
1061
1119
|
name: trustTier
|
|
1062
1120
|
in: query
|
|
1063
1121
|
description: Minimum trust tier
|
|
1064
1122
|
schema:
|
|
1065
|
-
$ref:
|
|
1066
|
-
|
|
1123
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1067
1124
|
AgentTypeFilter:
|
|
1068
1125
|
name: agentType
|
|
1069
1126
|
in: query
|
|
1070
1127
|
description: Filter by agent execution platform
|
|
1071
1128
|
schema:
|
|
1072
|
-
$ref:
|
|
1073
|
-
|
|
1129
|
+
$ref: "#/components/schemas/AgentType"
|
|
1074
1130
|
AgentKindFilter:
|
|
1075
1131
|
name: agentKind
|
|
1076
1132
|
in: query
|
|
1077
1133
|
description: Filter by agent functional role
|
|
1078
1134
|
schema:
|
|
1079
|
-
$ref:
|
|
1080
|
-
|
|
1135
|
+
$ref: "#/components/schemas/AgentKind"
|
|
1081
1136
|
CapabilityFilter:
|
|
1082
1137
|
name: capability
|
|
1083
1138
|
in: query
|
|
1084
1139
|
description: Filter by capability (comma-separated)
|
|
1085
1140
|
schema:
|
|
1086
1141
|
type: string
|
|
1087
|
-
example:
|
|
1088
|
-
|
|
1142
|
+
example: tools,streaming,handoff
|
|
1089
1143
|
PlatformFilter:
|
|
1090
1144
|
name: platform
|
|
1091
1145
|
in: query
|
|
1092
1146
|
description: Filter by compatible export platform
|
|
1093
1147
|
schema:
|
|
1094
|
-
$ref:
|
|
1095
|
-
|
|
1148
|
+
$ref: "#/components/schemas/ExportTarget"
|
|
1096
1149
|
SortBy:
|
|
1097
1150
|
name: sort
|
|
1098
1151
|
in: query
|
|
1099
1152
|
schema:
|
|
1100
1153
|
type: string
|
|
1101
|
-
enum:
|
|
1154
|
+
enum:
|
|
1155
|
+
- name
|
|
1156
|
+
- popularity
|
|
1157
|
+
- updated
|
|
1158
|
+
- trustTier
|
|
1159
|
+
- relevance
|
|
1102
1160
|
default: relevance
|
|
1103
|
-
|
|
1104
1161
|
Limit:
|
|
1105
1162
|
name: limit
|
|
1106
1163
|
in: query
|
|
@@ -1108,21 +1165,13 @@ components:
|
|
|
1108
1165
|
type: integer
|
|
1109
1166
|
default: 50
|
|
1110
1167
|
maximum: 200
|
|
1111
|
-
|
|
1112
1168
|
Offset:
|
|
1113
1169
|
name: offset
|
|
1114
1170
|
in: query
|
|
1115
1171
|
schema:
|
|
1116
1172
|
type: integer
|
|
1117
1173
|
default: 0
|
|
1118
|
-
|
|
1119
|
-
# ---------------------------------------------------------------------------
|
|
1120
|
-
# SCHEMAS
|
|
1121
|
-
# ---------------------------------------------------------------------------
|
|
1122
1174
|
schemas:
|
|
1123
|
-
|
|
1124
|
-
# === ENUMS ===
|
|
1125
|
-
|
|
1126
1175
|
ItemType:
|
|
1127
1176
|
type: string
|
|
1128
1177
|
enum:
|
|
@@ -1135,10 +1184,14 @@ components:
|
|
|
1135
1184
|
- policy
|
|
1136
1185
|
- adapter
|
|
1137
1186
|
- extension
|
|
1138
|
-
|
|
1139
1187
|
TrustTier:
|
|
1140
1188
|
type: string
|
|
1141
|
-
enum:
|
|
1189
|
+
enum:
|
|
1190
|
+
- official
|
|
1191
|
+
- verified-signature
|
|
1192
|
+
- signed
|
|
1193
|
+
- community
|
|
1194
|
+
- experimental
|
|
1142
1195
|
description: |
|
|
1143
1196
|
OSSA trust tiers (NIST-aligned):
|
|
1144
1197
|
- official: Curated by registry owner, GAID allow-listed
|
|
@@ -1146,7 +1199,6 @@ components:
|
|
|
1146
1199
|
- signed: Signature present and valid, key not necessarily trusted
|
|
1147
1200
|
- community: Listed in registry, no signature requirement
|
|
1148
1201
|
- experimental: Not for production, sandbox only
|
|
1149
|
-
|
|
1150
1202
|
AgentType:
|
|
1151
1203
|
type: string
|
|
1152
1204
|
description: Runtime platform/framework for agent execution
|
|
@@ -1176,7 +1228,6 @@ components:
|
|
|
1176
1228
|
- rivet
|
|
1177
1229
|
- langflow
|
|
1178
1230
|
- custom
|
|
1179
|
-
|
|
1180
1231
|
AgentKind:
|
|
1181
1232
|
type: string
|
|
1182
1233
|
description: Functional role of the agent
|
|
@@ -1198,59 +1249,66 @@ components:
|
|
|
1198
1249
|
- teammate
|
|
1199
1250
|
- subagent
|
|
1200
1251
|
- debugger
|
|
1201
|
-
|
|
1202
1252
|
ArchitecturePattern:
|
|
1203
1253
|
type: string
|
|
1204
|
-
enum:
|
|
1205
|
-
|
|
1254
|
+
enum:
|
|
1255
|
+
- single
|
|
1256
|
+
- swarm
|
|
1257
|
+
- pipeline
|
|
1258
|
+
- graph
|
|
1259
|
+
- hierarchical
|
|
1260
|
+
- reactive
|
|
1261
|
+
- cognitive
|
|
1262
|
+
- lead-teammate
|
|
1206
1263
|
ExportTarget:
|
|
1207
1264
|
type: string
|
|
1208
1265
|
description: |
|
|
1209
1266
|
Target platform for agent export. BUILD ONCE, RUN ANYWHERE.
|
|
1210
1267
|
enum:
|
|
1211
|
-
- claude-code
|
|
1212
|
-
- claude-agent-sdk
|
|
1213
|
-
- openai-agents-sdk
|
|
1214
|
-
- openai-assistants
|
|
1215
|
-
- google-adk
|
|
1216
|
-
- langchain
|
|
1217
|
-
- langgraph
|
|
1218
|
-
- crewai
|
|
1219
|
-
- autogen
|
|
1220
|
-
- kagent
|
|
1221
|
-
- bedrock
|
|
1222
|
-
- vertex-ai
|
|
1223
|
-
- semantic-kernel
|
|
1224
|
-
- pydantic-ai
|
|
1225
|
-
- llamaindex
|
|
1226
|
-
- haystack
|
|
1227
|
-
- dspy
|
|
1228
|
-
- mcp-server
|
|
1229
|
-
- a2a
|
|
1230
|
-
- drupal-ai
|
|
1231
|
-
- npm-package
|
|
1232
|
-
- docker
|
|
1233
|
-
- helm
|
|
1234
|
-
- terraform
|
|
1235
|
-
- github-actions
|
|
1236
|
-
- gitlab-ci
|
|
1237
|
-
- flowise
|
|
1238
|
-
- n8n
|
|
1239
|
-
- dify
|
|
1240
|
-
- langflow
|
|
1241
|
-
- composio
|
|
1242
|
-
|
|
1243
|
-
# === CATALOG SCHEMAS ===
|
|
1244
|
-
|
|
1268
|
+
- claude-code
|
|
1269
|
+
- claude-agent-sdk
|
|
1270
|
+
- openai-agents-sdk
|
|
1271
|
+
- openai-assistants
|
|
1272
|
+
- google-adk
|
|
1273
|
+
- langchain
|
|
1274
|
+
- langgraph
|
|
1275
|
+
- crewai
|
|
1276
|
+
- autogen
|
|
1277
|
+
- kagent
|
|
1278
|
+
- bedrock
|
|
1279
|
+
- vertex-ai
|
|
1280
|
+
- semantic-kernel
|
|
1281
|
+
- pydantic-ai
|
|
1282
|
+
- llamaindex
|
|
1283
|
+
- haystack
|
|
1284
|
+
- dspy
|
|
1285
|
+
- mcp-server
|
|
1286
|
+
- a2a
|
|
1287
|
+
- drupal-ai
|
|
1288
|
+
- npm-package
|
|
1289
|
+
- docker
|
|
1290
|
+
- helm
|
|
1291
|
+
- terraform
|
|
1292
|
+
- github-actions
|
|
1293
|
+
- gitlab-ci
|
|
1294
|
+
- flowise
|
|
1295
|
+
- n8n
|
|
1296
|
+
- dify
|
|
1297
|
+
- langflow
|
|
1298
|
+
- composio
|
|
1245
1299
|
CatalogItem:
|
|
1246
1300
|
type: object
|
|
1247
|
-
required:
|
|
1301
|
+
required:
|
|
1302
|
+
- id
|
|
1303
|
+
- type
|
|
1304
|
+
- name
|
|
1305
|
+
- version
|
|
1248
1306
|
properties:
|
|
1249
1307
|
id:
|
|
1250
1308
|
type: string
|
|
1251
1309
|
description: Unique item identifier
|
|
1252
1310
|
type:
|
|
1253
|
-
$ref:
|
|
1311
|
+
$ref: "#/components/schemas/ItemType"
|
|
1254
1312
|
name:
|
|
1255
1313
|
type: string
|
|
1256
1314
|
version:
|
|
@@ -1266,7 +1324,7 @@ components:
|
|
|
1266
1324
|
items:
|
|
1267
1325
|
type: string
|
|
1268
1326
|
trustTier:
|
|
1269
|
-
$ref:
|
|
1327
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1270
1328
|
downloads:
|
|
1271
1329
|
type: integer
|
|
1272
1330
|
rating:
|
|
@@ -1282,13 +1340,12 @@ components:
|
|
|
1282
1340
|
sourceUrl:
|
|
1283
1341
|
type: string
|
|
1284
1342
|
format: uri
|
|
1285
|
-
# Agent-specific fields (present when type=agent)
|
|
1286
1343
|
agentType:
|
|
1287
|
-
$ref:
|
|
1344
|
+
$ref: "#/components/schemas/AgentType"
|
|
1288
1345
|
agentKind:
|
|
1289
|
-
$ref:
|
|
1346
|
+
$ref: "#/components/schemas/AgentKind"
|
|
1290
1347
|
architecture:
|
|
1291
|
-
$ref:
|
|
1348
|
+
$ref: "#/components/schemas/ArchitecturePattern"
|
|
1292
1349
|
capabilities:
|
|
1293
1350
|
type: array
|
|
1294
1351
|
items:
|
|
@@ -1296,9 +1353,8 @@ components:
|
|
|
1296
1353
|
exportTargets:
|
|
1297
1354
|
type: array
|
|
1298
1355
|
items:
|
|
1299
|
-
$ref:
|
|
1356
|
+
$ref: "#/components/schemas/ExportTarget"
|
|
1300
1357
|
description: Platforms this item can export to
|
|
1301
|
-
|
|
1302
1358
|
CatalogResponse:
|
|
1303
1359
|
type: object
|
|
1304
1360
|
properties:
|
|
@@ -1307,7 +1363,7 @@ components:
|
|
|
1307
1363
|
items:
|
|
1308
1364
|
type: array
|
|
1309
1365
|
items:
|
|
1310
|
-
$ref:
|
|
1366
|
+
$ref: "#/components/schemas/CatalogItem"
|
|
1311
1367
|
facets:
|
|
1312
1368
|
type: object
|
|
1313
1369
|
description: Aggregated facets for filtering UI
|
|
@@ -1328,7 +1384,6 @@ components:
|
|
|
1328
1384
|
type: object
|
|
1329
1385
|
additionalProperties:
|
|
1330
1386
|
type: integer
|
|
1331
|
-
|
|
1332
1387
|
SearchResponse:
|
|
1333
1388
|
type: object
|
|
1334
1389
|
properties:
|
|
@@ -1340,7 +1395,7 @@ components:
|
|
|
1340
1395
|
type: array
|
|
1341
1396
|
items:
|
|
1342
1397
|
allOf:
|
|
1343
|
-
- $ref:
|
|
1398
|
+
- $ref: "#/components/schemas/CatalogItem"
|
|
1344
1399
|
- type: object
|
|
1345
1400
|
properties:
|
|
1346
1401
|
score:
|
|
@@ -1351,10 +1406,9 @@ components:
|
|
|
1351
1406
|
type: object
|
|
1352
1407
|
additionalProperties:
|
|
1353
1408
|
type: string
|
|
1354
|
-
|
|
1355
1409
|
CatalogItemDetail:
|
|
1356
1410
|
allOf:
|
|
1357
|
-
- $ref:
|
|
1411
|
+
- $ref: "#/components/schemas/CatalogItem"
|
|
1358
1412
|
- type: object
|
|
1359
1413
|
properties:
|
|
1360
1414
|
manifest:
|
|
@@ -1366,7 +1420,7 @@ components:
|
|
|
1366
1420
|
dependencies:
|
|
1367
1421
|
type: array
|
|
1368
1422
|
items:
|
|
1369
|
-
$ref:
|
|
1423
|
+
$ref: "#/components/schemas/Dependency"
|
|
1370
1424
|
readme:
|
|
1371
1425
|
type: string
|
|
1372
1426
|
changelog:
|
|
@@ -1382,7 +1436,7 @@ components:
|
|
|
1382
1436
|
description: Security posture summary
|
|
1383
1437
|
properties:
|
|
1384
1438
|
tier:
|
|
1385
|
-
$ref:
|
|
1439
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1386
1440
|
cedarPolicies:
|
|
1387
1441
|
type: integer
|
|
1388
1442
|
toolCount:
|
|
@@ -1395,7 +1449,6 @@ components:
|
|
|
1395
1449
|
type: string
|
|
1396
1450
|
format: uri
|
|
1397
1451
|
description: CycloneDX SBOM URL
|
|
1398
|
-
|
|
1399
1452
|
VersionEntry:
|
|
1400
1453
|
type: object
|
|
1401
1454
|
properties:
|
|
@@ -1409,16 +1462,13 @@ components:
|
|
|
1409
1462
|
ossaVersion:
|
|
1410
1463
|
type: string
|
|
1411
1464
|
description: OSSA spec version this was built against
|
|
1412
|
-
|
|
1413
|
-
# === PLUGIN SCHEMAS ===
|
|
1414
|
-
|
|
1415
1465
|
InstalledPlugin:
|
|
1416
1466
|
type: object
|
|
1417
1467
|
properties:
|
|
1418
1468
|
pluginId:
|
|
1419
1469
|
type: string
|
|
1420
1470
|
type:
|
|
1421
|
-
$ref:
|
|
1471
|
+
$ref: "#/components/schemas/ItemType"
|
|
1422
1472
|
name:
|
|
1423
1473
|
type: string
|
|
1424
1474
|
version:
|
|
@@ -1436,7 +1486,7 @@ components:
|
|
|
1436
1486
|
type: string
|
|
1437
1487
|
description: Source marketplace URL
|
|
1438
1488
|
trustTier:
|
|
1439
|
-
$ref:
|
|
1489
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1440
1490
|
dependencies:
|
|
1441
1491
|
type: array
|
|
1442
1492
|
items:
|
|
@@ -1444,15 +1494,15 @@ components:
|
|
|
1444
1494
|
enabled:
|
|
1445
1495
|
type: boolean
|
|
1446
1496
|
default: true
|
|
1447
|
-
|
|
1448
1497
|
InstallRequest:
|
|
1449
1498
|
type: object
|
|
1450
|
-
required:
|
|
1499
|
+
required:
|
|
1500
|
+
- itemId
|
|
1451
1501
|
properties:
|
|
1452
1502
|
itemId:
|
|
1453
1503
|
type: string
|
|
1454
1504
|
itemType:
|
|
1455
|
-
$ref:
|
|
1505
|
+
$ref: "#/components/schemas/ItemType"
|
|
1456
1506
|
version:
|
|
1457
1507
|
type: string
|
|
1458
1508
|
description: Version constraint (semver range or exact)
|
|
@@ -1470,8 +1520,7 @@ components:
|
|
|
1470
1520
|
type: boolean
|
|
1471
1521
|
default: false
|
|
1472
1522
|
trustTierMinimum:
|
|
1473
|
-
$ref:
|
|
1474
|
-
|
|
1523
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1475
1524
|
InstallResult:
|
|
1476
1525
|
type: object
|
|
1477
1526
|
properties:
|
|
@@ -1488,24 +1537,22 @@ components:
|
|
|
1488
1537
|
items:
|
|
1489
1538
|
type: string
|
|
1490
1539
|
trustTier:
|
|
1491
|
-
$ref:
|
|
1540
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1492
1541
|
signatureVerified:
|
|
1493
1542
|
type: boolean
|
|
1494
|
-
|
|
1495
1543
|
Dependency:
|
|
1496
1544
|
type: object
|
|
1497
1545
|
properties:
|
|
1498
1546
|
id:
|
|
1499
1547
|
type: string
|
|
1500
1548
|
type:
|
|
1501
|
-
$ref:
|
|
1549
|
+
$ref: "#/components/schemas/ItemType"
|
|
1502
1550
|
version:
|
|
1503
1551
|
type: string
|
|
1504
1552
|
description: Semver version constraint
|
|
1505
1553
|
optional:
|
|
1506
1554
|
type: boolean
|
|
1507
1555
|
default: false
|
|
1508
|
-
|
|
1509
1556
|
DependencyResolution:
|
|
1510
1557
|
type: object
|
|
1511
1558
|
properties:
|
|
@@ -1520,7 +1567,7 @@ components:
|
|
|
1520
1567
|
id:
|
|
1521
1568
|
type: string
|
|
1522
1569
|
type:
|
|
1523
|
-
$ref:
|
|
1570
|
+
$ref: "#/components/schemas/ItemType"
|
|
1524
1571
|
version:
|
|
1525
1572
|
type: string
|
|
1526
1573
|
reason:
|
|
@@ -1543,7 +1590,6 @@ components:
|
|
|
1543
1590
|
type: string
|
|
1544
1591
|
resolution:
|
|
1545
1592
|
type: string
|
|
1546
|
-
|
|
1547
1593
|
TrustViolation:
|
|
1548
1594
|
type: object
|
|
1549
1595
|
properties:
|
|
@@ -1552,14 +1598,11 @@ components:
|
|
|
1552
1598
|
itemId:
|
|
1553
1599
|
type: string
|
|
1554
1600
|
itemTrustTier:
|
|
1555
|
-
$ref:
|
|
1601
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1556
1602
|
requiredTrustTier:
|
|
1557
|
-
$ref:
|
|
1603
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1558
1604
|
recommendation:
|
|
1559
1605
|
type: string
|
|
1560
|
-
|
|
1561
|
-
# === AGENT SCHEMAS ===
|
|
1562
|
-
|
|
1563
1606
|
AgentSummary:
|
|
1564
1607
|
type: object
|
|
1565
1608
|
properties:
|
|
@@ -1575,11 +1618,11 @@ components:
|
|
|
1575
1618
|
description:
|
|
1576
1619
|
type: string
|
|
1577
1620
|
agentType:
|
|
1578
|
-
$ref:
|
|
1621
|
+
$ref: "#/components/schemas/AgentType"
|
|
1579
1622
|
agentKind:
|
|
1580
|
-
$ref:
|
|
1623
|
+
$ref: "#/components/schemas/AgentKind"
|
|
1581
1624
|
architecture:
|
|
1582
|
-
$ref:
|
|
1625
|
+
$ref: "#/components/schemas/ArchitecturePattern"
|
|
1583
1626
|
capabilities:
|
|
1584
1627
|
type: array
|
|
1585
1628
|
items:
|
|
@@ -1591,15 +1634,14 @@ components:
|
|
|
1591
1634
|
skillCount:
|
|
1592
1635
|
type: integer
|
|
1593
1636
|
trustTier:
|
|
1594
|
-
$ref:
|
|
1637
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1595
1638
|
exportTargets:
|
|
1596
1639
|
type: array
|
|
1597
1640
|
items:
|
|
1598
|
-
$ref:
|
|
1599
|
-
|
|
1641
|
+
$ref: "#/components/schemas/ExportTarget"
|
|
1600
1642
|
AgentDetail:
|
|
1601
1643
|
allOf:
|
|
1602
|
-
- $ref:
|
|
1644
|
+
- $ref: "#/components/schemas/AgentSummary"
|
|
1603
1645
|
- type: object
|
|
1604
1646
|
properties:
|
|
1605
1647
|
manifest:
|
|
@@ -1623,11 +1665,11 @@ components:
|
|
|
1623
1665
|
dependencies:
|
|
1624
1666
|
type: array
|
|
1625
1667
|
items:
|
|
1626
|
-
$ref:
|
|
1627
|
-
|
|
1668
|
+
$ref: "#/components/schemas/Dependency"
|
|
1628
1669
|
PublishAgentRequest:
|
|
1629
1670
|
type: object
|
|
1630
|
-
required:
|
|
1671
|
+
required:
|
|
1672
|
+
- manifest
|
|
1631
1673
|
properties:
|
|
1632
1674
|
manifest:
|
|
1633
1675
|
type: object
|
|
@@ -1641,9 +1683,11 @@ components:
|
|
|
1641
1683
|
description: Auto-generate GAID if not present
|
|
1642
1684
|
visibility:
|
|
1643
1685
|
type: string
|
|
1644
|
-
enum:
|
|
1686
|
+
enum:
|
|
1687
|
+
- public
|
|
1688
|
+
- unlisted
|
|
1689
|
+
- private
|
|
1645
1690
|
default: public
|
|
1646
|
-
|
|
1647
1691
|
PublishResult:
|
|
1648
1692
|
type: object
|
|
1649
1693
|
properties:
|
|
@@ -1656,15 +1700,12 @@ components:
|
|
|
1656
1700
|
version:
|
|
1657
1701
|
type: string
|
|
1658
1702
|
trustTier:
|
|
1659
|
-
$ref:
|
|
1703
|
+
$ref: "#/components/schemas/TrustTier"
|
|
1660
1704
|
conformanceScore:
|
|
1661
1705
|
type: number
|
|
1662
1706
|
registryUrl:
|
|
1663
1707
|
type: string
|
|
1664
1708
|
format: uri
|
|
1665
|
-
|
|
1666
|
-
# === COMPOSITION SCHEMA ===
|
|
1667
|
-
|
|
1668
1709
|
ComposeRequest:
|
|
1669
1710
|
type: object
|
|
1670
1711
|
properties:
|
|
@@ -1694,15 +1735,16 @@ components:
|
|
|
1694
1735
|
properties:
|
|
1695
1736
|
model:
|
|
1696
1737
|
type: string
|
|
1697
|
-
enum:
|
|
1738
|
+
enum:
|
|
1739
|
+
- lead-teammate
|
|
1740
|
+
- peer-to-peer
|
|
1741
|
+
- hierarchical
|
|
1742
|
+
- swarm
|
|
1698
1743
|
members:
|
|
1699
1744
|
type: array
|
|
1700
1745
|
items:
|
|
1701
1746
|
type: string
|
|
1702
1747
|
description: Agent IDs for team members
|
|
1703
|
-
|
|
1704
|
-
# === SKILL SCHEMAS ===
|
|
1705
|
-
|
|
1706
1748
|
SkillSummary:
|
|
1707
1749
|
type: object
|
|
1708
1750
|
properties:
|
|
@@ -1718,7 +1760,12 @@ components:
|
|
|
1718
1760
|
type: array
|
|
1719
1761
|
items:
|
|
1720
1762
|
type: string
|
|
1721
|
-
enum:
|
|
1763
|
+
enum:
|
|
1764
|
+
- claude
|
|
1765
|
+
- openai
|
|
1766
|
+
- cursor
|
|
1767
|
+
- windsurf
|
|
1768
|
+
- generic
|
|
1722
1769
|
triggerKeywords:
|
|
1723
1770
|
type: array
|
|
1724
1771
|
items:
|
|
@@ -1730,10 +1777,9 @@ components:
|
|
|
1730
1777
|
type: array
|
|
1731
1778
|
items:
|
|
1732
1779
|
type: string
|
|
1733
|
-
|
|
1734
1780
|
SkillDetail:
|
|
1735
1781
|
allOf:
|
|
1736
|
-
- $ref:
|
|
1782
|
+
- $ref: "#/components/schemas/SkillSummary"
|
|
1737
1783
|
- type: object
|
|
1738
1784
|
properties:
|
|
1739
1785
|
content:
|
|
@@ -1753,9 +1799,6 @@ components:
|
|
|
1753
1799
|
type: string
|
|
1754
1800
|
output:
|
|
1755
1801
|
type: string
|
|
1756
|
-
|
|
1757
|
-
# === MCP SERVER SCHEMAS ===
|
|
1758
|
-
|
|
1759
1802
|
McpServerSummary:
|
|
1760
1803
|
type: object
|
|
1761
1804
|
properties:
|
|
@@ -1767,7 +1810,10 @@ components:
|
|
|
1767
1810
|
type: string
|
|
1768
1811
|
transport:
|
|
1769
1812
|
type: string
|
|
1770
|
-
enum:
|
|
1813
|
+
enum:
|
|
1814
|
+
- stdio
|
|
1815
|
+
- sse
|
|
1816
|
+
- streamable-http
|
|
1771
1817
|
toolCount:
|
|
1772
1818
|
type: integer
|
|
1773
1819
|
command:
|
|
@@ -1780,16 +1826,15 @@ components:
|
|
|
1780
1826
|
type: array
|
|
1781
1827
|
items:
|
|
1782
1828
|
type: string
|
|
1783
|
-
|
|
1784
1829
|
McpServerDetail:
|
|
1785
1830
|
allOf:
|
|
1786
|
-
- $ref:
|
|
1831
|
+
- $ref: "#/components/schemas/McpServerSummary"
|
|
1787
1832
|
- type: object
|
|
1788
1833
|
properties:
|
|
1789
1834
|
tools:
|
|
1790
1835
|
type: array
|
|
1791
1836
|
items:
|
|
1792
|
-
$ref:
|
|
1837
|
+
$ref: "#/components/schemas/ToolSummary"
|
|
1793
1838
|
args:
|
|
1794
1839
|
type: array
|
|
1795
1840
|
items:
|
|
@@ -1805,9 +1850,6 @@ components:
|
|
|
1805
1850
|
rateLimit:
|
|
1806
1851
|
type: string
|
|
1807
1852
|
description: Global rate limit for this server
|
|
1808
|
-
|
|
1809
|
-
# === TOOL SCHEMAS ===
|
|
1810
|
-
|
|
1811
1853
|
ToolSummary:
|
|
1812
1854
|
type: object
|
|
1813
1855
|
properties:
|
|
@@ -1817,7 +1859,10 @@ components:
|
|
|
1817
1859
|
type: string
|
|
1818
1860
|
source:
|
|
1819
1861
|
type: string
|
|
1820
|
-
enum:
|
|
1862
|
+
enum:
|
|
1863
|
+
- mcp
|
|
1864
|
+
- standalone
|
|
1865
|
+
- builtin
|
|
1821
1866
|
mcpServer:
|
|
1822
1867
|
type: string
|
|
1823
1868
|
description: Parent MCP server (if source=mcp)
|
|
@@ -1836,9 +1881,6 @@ components:
|
|
|
1836
1881
|
type: array
|
|
1837
1882
|
items:
|
|
1838
1883
|
type: string
|
|
1839
|
-
|
|
1840
|
-
# === TEMPLATE SCHEMAS ===
|
|
1841
|
-
|
|
1842
1884
|
TemplateSummary:
|
|
1843
1885
|
type: object
|
|
1844
1886
|
properties:
|
|
@@ -1849,11 +1891,11 @@ components:
|
|
|
1849
1891
|
description:
|
|
1850
1892
|
type: string
|
|
1851
1893
|
agentType:
|
|
1852
|
-
$ref:
|
|
1894
|
+
$ref: "#/components/schemas/AgentType"
|
|
1853
1895
|
agentKind:
|
|
1854
|
-
$ref:
|
|
1896
|
+
$ref: "#/components/schemas/AgentKind"
|
|
1855
1897
|
architecture:
|
|
1856
|
-
$ref:
|
|
1898
|
+
$ref: "#/components/schemas/ArchitecturePattern"
|
|
1857
1899
|
variables:
|
|
1858
1900
|
type: array
|
|
1859
1901
|
items:
|
|
@@ -1878,10 +1920,7 @@ components:
|
|
|
1878
1920
|
exportTargets:
|
|
1879
1921
|
type: array
|
|
1880
1922
|
items:
|
|
1881
|
-
$ref:
|
|
1882
|
-
|
|
1883
|
-
# === WORKFLOW SCHEMAS ===
|
|
1884
|
-
|
|
1923
|
+
$ref: "#/components/schemas/ExportTarget"
|
|
1885
1924
|
WorkflowSummary:
|
|
1886
1925
|
type: object
|
|
1887
1926
|
properties:
|
|
@@ -1896,14 +1935,11 @@ components:
|
|
|
1896
1935
|
steps:
|
|
1897
1936
|
type: integer
|
|
1898
1937
|
pattern:
|
|
1899
|
-
$ref:
|
|
1938
|
+
$ref: "#/components/schemas/ArchitecturePattern"
|
|
1900
1939
|
tags:
|
|
1901
1940
|
type: array
|
|
1902
1941
|
items:
|
|
1903
1942
|
type: string
|
|
1904
|
-
|
|
1905
|
-
# === POLICY SCHEMAS ===
|
|
1906
|
-
|
|
1907
1943
|
PolicySummary:
|
|
1908
1944
|
type: object
|
|
1909
1945
|
properties:
|
|
@@ -1915,28 +1951,44 @@ components:
|
|
|
1915
1951
|
type: string
|
|
1916
1952
|
policyType:
|
|
1917
1953
|
type: string
|
|
1918
|
-
enum:
|
|
1954
|
+
enum:
|
|
1955
|
+
- cedar
|
|
1956
|
+
- tool-allowlist
|
|
1957
|
+
- trust-tier
|
|
1958
|
+
- resource-budget
|
|
1959
|
+
- audit-rule
|
|
1960
|
+
- conformance-profile
|
|
1919
1961
|
scope:
|
|
1920
1962
|
type: string
|
|
1921
|
-
enum:
|
|
1963
|
+
enum:
|
|
1964
|
+
- global
|
|
1965
|
+
- workspace
|
|
1966
|
+
- agent
|
|
1967
|
+
- tool
|
|
1922
1968
|
content:
|
|
1923
1969
|
type: string
|
|
1924
1970
|
description: Policy content (Cedar rules, YAML config, etc.)
|
|
1925
|
-
|
|
1926
|
-
# === EXPORT SCHEMAS ===
|
|
1927
|
-
|
|
1928
1971
|
ExportPlatform:
|
|
1929
1972
|
type: object
|
|
1930
1973
|
properties:
|
|
1931
1974
|
id:
|
|
1932
|
-
$ref:
|
|
1975
|
+
$ref: "#/components/schemas/ExportTarget"
|
|
1933
1976
|
name:
|
|
1934
1977
|
type: string
|
|
1935
1978
|
description:
|
|
1936
1979
|
type: string
|
|
1937
1980
|
outputFormat:
|
|
1938
1981
|
type: string
|
|
1939
|
-
enum:
|
|
1982
|
+
enum:
|
|
1983
|
+
- python
|
|
1984
|
+
- typescript
|
|
1985
|
+
- yaml
|
|
1986
|
+
- json
|
|
1987
|
+
- dockerfile
|
|
1988
|
+
- helm
|
|
1989
|
+
- terraform
|
|
1990
|
+
- hcl
|
|
1991
|
+
- markdown
|
|
1940
1992
|
requiredFields:
|
|
1941
1993
|
type: array
|
|
1942
1994
|
items:
|
|
@@ -1945,16 +1997,15 @@ components:
|
|
|
1945
1997
|
website:
|
|
1946
1998
|
type: string
|
|
1947
1999
|
format: uri
|
|
1948
|
-
|
|
1949
2000
|
ExportRequest:
|
|
1950
2001
|
type: object
|
|
1951
|
-
required:
|
|
2002
|
+
required:
|
|
2003
|
+
- target
|
|
1952
2004
|
properties:
|
|
1953
2005
|
target:
|
|
1954
|
-
$ref:
|
|
2006
|
+
$ref: "#/components/schemas/ExportTarget"
|
|
1955
2007
|
options:
|
|
1956
|
-
$ref:
|
|
1957
|
-
|
|
2008
|
+
$ref: "#/components/schemas/ExportOptions"
|
|
1958
2009
|
ExportOptions:
|
|
1959
2010
|
type: object
|
|
1960
2011
|
properties:
|
|
@@ -1984,14 +2035,13 @@ components:
|
|
|
1984
2035
|
type: boolean
|
|
1985
2036
|
default: true
|
|
1986
2037
|
description: Validate manifest before export
|
|
1987
|
-
|
|
1988
2038
|
ExportResult:
|
|
1989
2039
|
type: object
|
|
1990
2040
|
properties:
|
|
1991
2041
|
success:
|
|
1992
2042
|
type: boolean
|
|
1993
2043
|
target:
|
|
1994
|
-
$ref:
|
|
2044
|
+
$ref: "#/components/schemas/ExportTarget"
|
|
1995
2045
|
files:
|
|
1996
2046
|
type: array
|
|
1997
2047
|
items:
|
|
@@ -2012,9 +2062,6 @@ components:
|
|
|
2012
2062
|
items:
|
|
2013
2063
|
type: string
|
|
2014
2064
|
description: OSSA features not supported by this target
|
|
2015
|
-
|
|
2016
|
-
# === IDENTITY SCHEMAS ===
|
|
2017
|
-
|
|
2018
2065
|
GaidResult:
|
|
2019
2066
|
type: object
|
|
2020
2067
|
properties:
|
|
@@ -2030,14 +2077,13 @@ components:
|
|
|
2030
2077
|
privateKey:
|
|
2031
2078
|
type: string
|
|
2032
2079
|
description: Ed25519 private key (base64, only returned once)
|
|
2033
|
-
|
|
2034
2080
|
VerificationResult:
|
|
2035
2081
|
type: object
|
|
2036
2082
|
properties:
|
|
2037
2083
|
valid:
|
|
2038
2084
|
type: boolean
|
|
2039
2085
|
trustTier:
|
|
2040
|
-
$ref:
|
|
2086
|
+
$ref: "#/components/schemas/TrustTier"
|
|
2041
2087
|
signatureAlgorithm:
|
|
2042
2088
|
type: string
|
|
2043
2089
|
signerDid:
|
|
@@ -2048,9 +2094,6 @@ components:
|
|
|
2048
2094
|
type: array
|
|
2049
2095
|
items:
|
|
2050
2096
|
type: string
|
|
2051
|
-
|
|
2052
|
-
# === REGISTRY SCHEMAS ===
|
|
2053
|
-
|
|
2054
2097
|
RegistryEntry:
|
|
2055
2098
|
type: object
|
|
2056
2099
|
properties:
|
|
@@ -2063,13 +2106,13 @@ components:
|
|
|
2063
2106
|
description:
|
|
2064
2107
|
type: string
|
|
2065
2108
|
agentType:
|
|
2066
|
-
$ref:
|
|
2109
|
+
$ref: "#/components/schemas/AgentType"
|
|
2067
2110
|
capabilities:
|
|
2068
2111
|
type: array
|
|
2069
2112
|
items:
|
|
2070
2113
|
type: string
|
|
2071
2114
|
trustTier:
|
|
2072
|
-
$ref:
|
|
2115
|
+
$ref: "#/components/schemas/TrustTier"
|
|
2073
2116
|
serviceEndpoint:
|
|
2074
2117
|
type: string
|
|
2075
2118
|
format: uri
|
|
@@ -2085,15 +2128,21 @@ components:
|
|
|
2085
2128
|
registeredAt:
|
|
2086
2129
|
type: string
|
|
2087
2130
|
format: date-time
|
|
2088
|
-
|
|
2089
2131
|
AgentCard:
|
|
2090
2132
|
type: object
|
|
2091
2133
|
description: UADP well-known agent card
|
|
2092
|
-
required:
|
|
2134
|
+
required:
|
|
2135
|
+
- uri
|
|
2136
|
+
- name
|
|
2137
|
+
- version
|
|
2138
|
+
- ossaVersion
|
|
2139
|
+
- capabilities
|
|
2140
|
+
- transport
|
|
2141
|
+
- authentication
|
|
2093
2142
|
properties:
|
|
2094
2143
|
uri:
|
|
2095
2144
|
type: string
|
|
2096
|
-
pattern:
|
|
2145
|
+
pattern: ^uadp://
|
|
2097
2146
|
name:
|
|
2098
2147
|
type: string
|
|
2099
2148
|
version:
|
|
@@ -2127,7 +2176,10 @@ components:
|
|
|
2127
2176
|
properties:
|
|
2128
2177
|
type:
|
|
2129
2178
|
type: string
|
|
2130
|
-
enum:
|
|
2179
|
+
enum:
|
|
2180
|
+
- stdio
|
|
2181
|
+
- sse
|
|
2182
|
+
- streamable-http
|
|
2131
2183
|
url:
|
|
2132
2184
|
type: string
|
|
2133
2185
|
endpoints:
|
|
@@ -2148,7 +2200,12 @@ components:
|
|
|
2148
2200
|
type: array
|
|
2149
2201
|
items:
|
|
2150
2202
|
type: string
|
|
2151
|
-
enum:
|
|
2203
|
+
enum:
|
|
2204
|
+
- http
|
|
2205
|
+
- websocket
|
|
2206
|
+
- grpc
|
|
2207
|
+
- a2a
|
|
2208
|
+
- mcp
|
|
2152
2209
|
authentication:
|
|
2153
2210
|
type: object
|
|
2154
2211
|
properties:
|
|
@@ -2156,7 +2213,13 @@ components:
|
|
|
2156
2213
|
type: array
|
|
2157
2214
|
items:
|
|
2158
2215
|
type: string
|
|
2159
|
-
enum:
|
|
2216
|
+
enum:
|
|
2217
|
+
- bearer
|
|
2218
|
+
- api-key
|
|
2219
|
+
- oauth2
|
|
2220
|
+
- mtls
|
|
2221
|
+
- did-auth
|
|
2222
|
+
- none
|
|
2160
2223
|
encryption:
|
|
2161
2224
|
type: object
|
|
2162
2225
|
properties:
|
|
@@ -2166,12 +2229,13 @@ components:
|
|
|
2166
2229
|
type: boolean
|
|
2167
2230
|
algorithm:
|
|
2168
2231
|
type: string
|
|
2169
|
-
|
|
2170
|
-
# === MARKETPLACE INFO ===
|
|
2171
|
-
|
|
2172
2232
|
MarketplaceInfo:
|
|
2173
2233
|
type: object
|
|
2174
|
-
required:
|
|
2234
|
+
required:
|
|
2235
|
+
- name
|
|
2236
|
+
- version
|
|
2237
|
+
- apiVersion
|
|
2238
|
+
- endpoints
|
|
2175
2239
|
properties:
|
|
2176
2240
|
name:
|
|
2177
2241
|
type: string
|
|
@@ -2182,16 +2246,18 @@ components:
|
|
|
2182
2246
|
apiVersion:
|
|
2183
2247
|
type: string
|
|
2184
2248
|
description: OSSA marketplace API version
|
|
2185
|
-
example:
|
|
2249
|
+
example: 1.0.0
|
|
2186
2250
|
ossaVersion:
|
|
2187
2251
|
type: string
|
|
2188
2252
|
description: OSSA spec version supported
|
|
2189
|
-
example:
|
|
2253
|
+
example: 0.4.6
|
|
2190
2254
|
description:
|
|
2191
2255
|
type: string
|
|
2192
2256
|
endpoints:
|
|
2193
2257
|
type: object
|
|
2194
|
-
required:
|
|
2258
|
+
required:
|
|
2259
|
+
- catalog
|
|
2260
|
+
- plugins
|
|
2195
2261
|
properties:
|
|
2196
2262
|
catalog:
|
|
2197
2263
|
type: string
|
|
@@ -2250,12 +2316,11 @@ components:
|
|
|
2250
2316
|
- cedar-policies
|
|
2251
2317
|
- sbom
|
|
2252
2318
|
- conformance-scoring
|
|
2253
|
-
|
|
2254
|
-
# === ERROR SCHEMAS ===
|
|
2255
|
-
|
|
2256
2319
|
Error:
|
|
2257
2320
|
type: object
|
|
2258
|
-
required:
|
|
2321
|
+
required:
|
|
2322
|
+
- error
|
|
2323
|
+
- message
|
|
2259
2324
|
properties:
|
|
2260
2325
|
error:
|
|
2261
2326
|
type: string
|
|
@@ -2265,21 +2330,29 @@ components:
|
|
|
2265
2330
|
type: string
|
|
2266
2331
|
details:
|
|
2267
2332
|
type: object
|
|
2268
|
-
|
|
2269
|
-
# ---------------------------------------------------------------------------
|
|
2270
|
-
# RESPONSES
|
|
2271
|
-
# ---------------------------------------------------------------------------
|
|
2272
2333
|
responses:
|
|
2273
2334
|
BadRequest:
|
|
2274
2335
|
description: Invalid request
|
|
2275
2336
|
content:
|
|
2276
2337
|
application/json:
|
|
2277
2338
|
schema:
|
|
2278
|
-
$ref:
|
|
2279
|
-
|
|
2339
|
+
$ref: "#/components/schemas/Error"
|
|
2280
2340
|
NotFound:
|
|
2281
2341
|
description: Item not found
|
|
2282
2342
|
content:
|
|
2283
2343
|
application/json:
|
|
2284
2344
|
schema:
|
|
2285
|
-
$ref:
|
|
2345
|
+
$ref: "#/components/schemas/Error"
|
|
2346
|
+
x-ossa-metadata:
|
|
2347
|
+
version: 1.0.0
|
|
2348
|
+
compliance:
|
|
2349
|
+
level: standard
|
|
2350
|
+
observability:
|
|
2351
|
+
tracing: true
|
|
2352
|
+
metrics: true
|
|
2353
|
+
logging: true
|
|
2354
|
+
x-ossa:
|
|
2355
|
+
version: 0.5.0
|
|
2356
|
+
agent:
|
|
2357
|
+
id: marketplace-plugin-api
|
|
2358
|
+
type: gateway
|