@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
package/openapi/ossa-cli.yaml
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
openapi: 3.1.0
|
|
2
2
|
info:
|
|
3
3
|
title: OSSA CLI API
|
|
4
|
-
version:
|
|
4
|
+
version:
|
|
5
|
+
"{ VERSION }": null
|
|
5
6
|
description: |
|
|
6
7
|
API specification for OSSA (Open Standard for Software Agents) CLI operations.
|
|
7
8
|
|
|
@@ -10,17 +11,14 @@ info:
|
|
|
10
11
|
- Runtime validation with express-openapi-validator
|
|
11
12
|
- API-First development (spec drives implementation)
|
|
12
13
|
- Zero type drift between spec and implementation
|
|
13
|
-
|
|
14
14
|
contact:
|
|
15
15
|
name: BlueFly.io
|
|
16
16
|
url: https://bluefly.io
|
|
17
17
|
license:
|
|
18
18
|
name: MIT
|
|
19
|
-
|
|
20
19
|
servers:
|
|
21
20
|
- url: http://localhost:3000/api/v1
|
|
22
21
|
description: Local CLI API server
|
|
23
|
-
|
|
24
22
|
tags:
|
|
25
23
|
- name: agents
|
|
26
24
|
description: Agent CRUD operations
|
|
@@ -34,10 +32,8 @@ tags:
|
|
|
34
32
|
description: Agent template management
|
|
35
33
|
- name: catalog
|
|
36
34
|
description: Agent discovery and sharing
|
|
37
|
-
|
|
38
35
|
components:
|
|
39
36
|
schemas:
|
|
40
|
-
# Core OSSA Agent Schema
|
|
41
37
|
OssaAgent:
|
|
42
38
|
type: object
|
|
43
39
|
required:
|
|
@@ -48,17 +44,21 @@ components:
|
|
|
48
44
|
properties:
|
|
49
45
|
apiVersion:
|
|
50
46
|
type: string
|
|
51
|
-
enum:
|
|
52
|
-
|
|
47
|
+
enum:
|
|
48
|
+
- ossa/v0.3.6
|
|
49
|
+
- ossa/v{{VERSION}}
|
|
50
|
+
example: ossa/v{{VERSION}}
|
|
53
51
|
kind:
|
|
54
52
|
type: string
|
|
55
|
-
enum:
|
|
56
|
-
|
|
53
|
+
enum:
|
|
54
|
+
- Agent
|
|
55
|
+
- Workflow
|
|
56
|
+
- Task
|
|
57
|
+
example: Agent
|
|
57
58
|
metadata:
|
|
58
|
-
$ref:
|
|
59
|
+
$ref: "#/components/schemas/AgentMetadata"
|
|
59
60
|
spec:
|
|
60
|
-
$ref:
|
|
61
|
-
|
|
61
|
+
$ref: "#/components/schemas/AgentSpec"
|
|
62
62
|
AgentMetadata:
|
|
63
63
|
type: object
|
|
64
64
|
required:
|
|
@@ -67,36 +67,37 @@ components:
|
|
|
67
67
|
properties:
|
|
68
68
|
name:
|
|
69
69
|
type: string
|
|
70
|
-
pattern:
|
|
70
|
+
pattern: ^[a-z0-9-]+$
|
|
71
71
|
minLength: 3
|
|
72
72
|
maxLength: 50
|
|
73
|
-
example:
|
|
73
|
+
example: supercali-fragilisticagent
|
|
74
74
|
version:
|
|
75
75
|
type: string
|
|
76
|
-
pattern:
|
|
77
|
-
example:
|
|
76
|
+
pattern: ^\d+\.\d+\.\d+$
|
|
77
|
+
example: 1.0.0
|
|
78
78
|
description:
|
|
79
79
|
type: string
|
|
80
80
|
maxLength: 500
|
|
81
|
-
example:
|
|
81
|
+
example: AI agent for data processing
|
|
82
82
|
author:
|
|
83
83
|
type: string
|
|
84
|
-
example:
|
|
84
|
+
example: jane@example.com
|
|
85
85
|
license:
|
|
86
86
|
type: string
|
|
87
|
-
example:
|
|
87
|
+
example: MIT
|
|
88
88
|
tags:
|
|
89
89
|
type: array
|
|
90
90
|
items:
|
|
91
91
|
type: string
|
|
92
|
-
example:
|
|
92
|
+
example:
|
|
93
|
+
- worker
|
|
94
|
+
- data-processing
|
|
93
95
|
created:
|
|
94
96
|
type: string
|
|
95
97
|
format: date-time
|
|
96
98
|
updated:
|
|
97
99
|
type: string
|
|
98
100
|
format: date-time
|
|
99
|
-
|
|
100
101
|
AgentSpec:
|
|
101
102
|
type: object
|
|
102
103
|
required:
|
|
@@ -107,23 +108,25 @@ components:
|
|
|
107
108
|
description: System prompt / agent role description
|
|
108
109
|
minLength: 10
|
|
109
110
|
maxLength: 5000
|
|
110
|
-
example:
|
|
111
|
+
example: You are a data processing agent that transforms CSV files
|
|
111
112
|
llm:
|
|
112
|
-
$ref:
|
|
113
|
+
$ref: "#/components/schemas/LLMConfig"
|
|
113
114
|
tools:
|
|
114
115
|
type: array
|
|
115
116
|
items:
|
|
116
|
-
$ref:
|
|
117
|
+
$ref: "#/components/schemas/Tool"
|
|
117
118
|
capabilities:
|
|
118
119
|
type: array
|
|
119
120
|
items:
|
|
120
121
|
type: string
|
|
121
|
-
example:
|
|
122
|
+
example:
|
|
123
|
+
- data-processing
|
|
124
|
+
- file-handling
|
|
125
|
+
- api-calls
|
|
122
126
|
workflow:
|
|
123
|
-
$ref:
|
|
127
|
+
$ref: "#/components/schemas/Workflow"
|
|
124
128
|
autonomy:
|
|
125
|
-
$ref:
|
|
126
|
-
|
|
129
|
+
$ref: "#/components/schemas/AutonomyConfig"
|
|
127
130
|
LLMConfig:
|
|
128
131
|
type: object
|
|
129
132
|
required:
|
|
@@ -132,11 +135,16 @@ components:
|
|
|
132
135
|
properties:
|
|
133
136
|
provider:
|
|
134
137
|
type: string
|
|
135
|
-
enum:
|
|
136
|
-
|
|
138
|
+
enum:
|
|
139
|
+
- openai
|
|
140
|
+
- anthropic
|
|
141
|
+
- cohere
|
|
142
|
+
- huggingface
|
|
143
|
+
- local
|
|
144
|
+
example: anthropic
|
|
137
145
|
model:
|
|
138
146
|
type: string
|
|
139
|
-
example:
|
|
147
|
+
example: claude-sonnet-4-20250514
|
|
140
148
|
temperature:
|
|
141
149
|
type: number
|
|
142
150
|
minimum: 0
|
|
@@ -147,7 +155,6 @@ components:
|
|
|
147
155
|
minimum: 1
|
|
148
156
|
maximum: 100000
|
|
149
157
|
default: 4096
|
|
150
|
-
|
|
151
158
|
Tool:
|
|
152
159
|
type: object
|
|
153
160
|
required:
|
|
@@ -156,31 +163,32 @@ components:
|
|
|
156
163
|
properties:
|
|
157
164
|
name:
|
|
158
165
|
type: string
|
|
159
|
-
pattern:
|
|
160
|
-
example:
|
|
166
|
+
pattern: ^[a-z_][a-z0-9_]*$
|
|
167
|
+
example: process_data
|
|
161
168
|
description:
|
|
162
169
|
type: string
|
|
163
170
|
maxLength: 500
|
|
164
|
-
example:
|
|
171
|
+
example: Process and transform data
|
|
165
172
|
type:
|
|
166
173
|
type: string
|
|
167
|
-
enum:
|
|
168
|
-
|
|
174
|
+
enum:
|
|
175
|
+
- function
|
|
176
|
+
- api
|
|
177
|
+
- mcp
|
|
178
|
+
default: function
|
|
169
179
|
inputSchema:
|
|
170
180
|
type: object
|
|
171
181
|
description: JSON Schema for tool input
|
|
172
182
|
server:
|
|
173
183
|
type: string
|
|
174
184
|
description: MCP server name (if type=mcp)
|
|
175
|
-
|
|
176
185
|
Workflow:
|
|
177
186
|
type: object
|
|
178
187
|
properties:
|
|
179
188
|
steps:
|
|
180
189
|
type: array
|
|
181
190
|
items:
|
|
182
|
-
$ref:
|
|
183
|
-
|
|
191
|
+
$ref: "#/components/schemas/WorkflowStep"
|
|
184
192
|
WorkflowStep:
|
|
185
193
|
type: object
|
|
186
194
|
required:
|
|
@@ -189,26 +197,26 @@ components:
|
|
|
189
197
|
properties:
|
|
190
198
|
agent:
|
|
191
199
|
type: string
|
|
192
|
-
example:
|
|
200
|
+
example: researcher
|
|
193
201
|
task:
|
|
194
202
|
type: string
|
|
195
|
-
example:
|
|
203
|
+
example: research
|
|
196
204
|
description:
|
|
197
205
|
type: string
|
|
198
|
-
example:
|
|
199
|
-
|
|
206
|
+
example: Research the topic
|
|
200
207
|
AutonomyConfig:
|
|
201
208
|
type: object
|
|
202
209
|
properties:
|
|
203
210
|
level:
|
|
204
211
|
type: string
|
|
205
|
-
enum:
|
|
206
|
-
|
|
212
|
+
enum:
|
|
213
|
+
- fully_autonomous
|
|
214
|
+
- supervised
|
|
215
|
+
- human_in_loop
|
|
216
|
+
default: supervised
|
|
207
217
|
requiresApproval:
|
|
208
218
|
type: boolean
|
|
209
219
|
default: false
|
|
210
|
-
|
|
211
|
-
# Template Schema
|
|
212
220
|
AgentTemplate:
|
|
213
221
|
type: object
|
|
214
222
|
required:
|
|
@@ -219,34 +227,42 @@ components:
|
|
|
219
227
|
properties:
|
|
220
228
|
id:
|
|
221
229
|
type: string
|
|
222
|
-
pattern:
|
|
223
|
-
example:
|
|
230
|
+
pattern: ^[a-z0-9-]+$
|
|
231
|
+
example: worker-data-processor
|
|
224
232
|
name:
|
|
225
233
|
type: string
|
|
226
|
-
example:
|
|
234
|
+
example: Data Processor Worker
|
|
227
235
|
description:
|
|
228
236
|
type: string
|
|
229
|
-
example:
|
|
237
|
+
example: Worker agent specialized in data processing tasks
|
|
230
238
|
category:
|
|
231
239
|
type: string
|
|
232
|
-
enum:
|
|
233
|
-
|
|
240
|
+
enum:
|
|
241
|
+
- worker
|
|
242
|
+
- coordinator
|
|
243
|
+
- specialist
|
|
244
|
+
- reviewer
|
|
245
|
+
- executor
|
|
246
|
+
example: worker
|
|
234
247
|
icon:
|
|
235
248
|
type: string
|
|
236
|
-
example:
|
|
249
|
+
example: 🔧
|
|
237
250
|
defaults:
|
|
238
|
-
$ref:
|
|
251
|
+
$ref: "#/components/schemas/TemplateDefaults"
|
|
239
252
|
useCases:
|
|
240
253
|
type: array
|
|
241
254
|
items:
|
|
242
255
|
type: string
|
|
243
|
-
example:
|
|
256
|
+
example:
|
|
257
|
+
- Process CSV files
|
|
258
|
+
- Transform JSON data
|
|
244
259
|
examples:
|
|
245
260
|
type: array
|
|
246
261
|
items:
|
|
247
262
|
type: string
|
|
248
|
-
example:
|
|
249
|
-
|
|
263
|
+
example:
|
|
264
|
+
- data-ingestion-worker
|
|
265
|
+
- etl-processor
|
|
250
266
|
TemplateDefaults:
|
|
251
267
|
type: object
|
|
252
268
|
properties:
|
|
@@ -263,30 +279,32 @@ components:
|
|
|
263
279
|
items:
|
|
264
280
|
type: string
|
|
265
281
|
llm:
|
|
266
|
-
$ref:
|
|
267
|
-
|
|
268
|
-
# Export Operations
|
|
282
|
+
$ref: "#/components/schemas/LLMConfig"
|
|
269
283
|
ExportRequest:
|
|
270
284
|
type: object
|
|
271
285
|
required:
|
|
272
286
|
- manifest
|
|
273
287
|
properties:
|
|
274
288
|
manifest:
|
|
275
|
-
$ref:
|
|
289
|
+
$ref: "#/components/schemas/OssaAgent"
|
|
276
290
|
platform:
|
|
277
291
|
type: string
|
|
278
|
-
enum:
|
|
279
|
-
|
|
292
|
+
enum:
|
|
293
|
+
- langchain
|
|
294
|
+
- mcp
|
|
295
|
+
- crewai
|
|
296
|
+
- drupal
|
|
297
|
+
- gitlab-duo
|
|
298
|
+
example: mcp
|
|
280
299
|
outputDir:
|
|
281
300
|
type: string
|
|
282
|
-
example:
|
|
301
|
+
example: ./exports
|
|
283
302
|
dryRun:
|
|
284
303
|
type: boolean
|
|
285
304
|
default: false
|
|
286
305
|
validate:
|
|
287
306
|
type: boolean
|
|
288
307
|
default: true
|
|
289
|
-
|
|
290
308
|
ExportResult:
|
|
291
309
|
type: object
|
|
292
310
|
required:
|
|
@@ -296,13 +314,13 @@ components:
|
|
|
296
314
|
properties:
|
|
297
315
|
platform:
|
|
298
316
|
type: string
|
|
299
|
-
example:
|
|
317
|
+
example: mcp
|
|
300
318
|
success:
|
|
301
319
|
type: boolean
|
|
302
320
|
files:
|
|
303
321
|
type: array
|
|
304
322
|
items:
|
|
305
|
-
$ref:
|
|
323
|
+
$ref: "#/components/schemas/ExportFile"
|
|
306
324
|
error:
|
|
307
325
|
type: string
|
|
308
326
|
metadata:
|
|
@@ -317,7 +335,6 @@ components:
|
|
|
317
335
|
type: array
|
|
318
336
|
items:
|
|
319
337
|
type: string
|
|
320
|
-
|
|
321
338
|
ExportFile:
|
|
322
339
|
type: object
|
|
323
340
|
required:
|
|
@@ -327,31 +344,38 @@ components:
|
|
|
327
344
|
properties:
|
|
328
345
|
path:
|
|
329
346
|
type: string
|
|
330
|
-
example:
|
|
347
|
+
example: mcp/server.ts
|
|
331
348
|
content:
|
|
332
349
|
type: string
|
|
333
350
|
type:
|
|
334
351
|
type: string
|
|
335
|
-
enum:
|
|
352
|
+
enum:
|
|
353
|
+
- code
|
|
354
|
+
- config
|
|
355
|
+
- documentation
|
|
356
|
+
- test
|
|
357
|
+
- other
|
|
336
358
|
language:
|
|
337
359
|
type: string
|
|
338
|
-
example:
|
|
339
|
-
|
|
360
|
+
example: typescript
|
|
340
361
|
BatchExportRequest:
|
|
341
362
|
type: object
|
|
342
363
|
required:
|
|
343
364
|
- manifest
|
|
344
365
|
properties:
|
|
345
366
|
manifest:
|
|
346
|
-
$ref:
|
|
367
|
+
$ref: "#/components/schemas/OssaAgent"
|
|
347
368
|
platforms:
|
|
348
369
|
type: array
|
|
349
370
|
items:
|
|
350
371
|
type: string
|
|
351
|
-
example:
|
|
372
|
+
example:
|
|
373
|
+
- langchain
|
|
374
|
+
- mcp
|
|
375
|
+
- crewai
|
|
352
376
|
outputDir:
|
|
353
377
|
type: string
|
|
354
|
-
default:
|
|
378
|
+
default: ./exports
|
|
355
379
|
parallel:
|
|
356
380
|
type: boolean
|
|
357
381
|
default: false
|
|
@@ -361,7 +385,6 @@ components:
|
|
|
361
385
|
dryRun:
|
|
362
386
|
type: boolean
|
|
363
387
|
default: false
|
|
364
|
-
|
|
365
388
|
BatchExportResult:
|
|
366
389
|
type: object
|
|
367
390
|
required:
|
|
@@ -374,7 +397,7 @@ components:
|
|
|
374
397
|
results:
|
|
375
398
|
type: array
|
|
376
399
|
items:
|
|
377
|
-
$ref:
|
|
400
|
+
$ref: "#/components/schemas/ExportResult"
|
|
378
401
|
summary:
|
|
379
402
|
type: object
|
|
380
403
|
required:
|
|
@@ -391,8 +414,6 @@ components:
|
|
|
391
414
|
type: integer
|
|
392
415
|
duration:
|
|
393
416
|
type: integer
|
|
394
|
-
|
|
395
|
-
# Agent List Response
|
|
396
417
|
AgentList:
|
|
397
418
|
type: object
|
|
398
419
|
required:
|
|
@@ -402,14 +423,13 @@ components:
|
|
|
402
423
|
agents:
|
|
403
424
|
type: array
|
|
404
425
|
items:
|
|
405
|
-
$ref:
|
|
426
|
+
$ref: "#/components/schemas/AgentSummary"
|
|
406
427
|
total:
|
|
407
428
|
type: integer
|
|
408
429
|
page:
|
|
409
430
|
type: integer
|
|
410
431
|
pageSize:
|
|
411
432
|
type: integer
|
|
412
|
-
|
|
413
433
|
AgentSummary:
|
|
414
434
|
type: object
|
|
415
435
|
required:
|
|
@@ -435,8 +455,6 @@ components:
|
|
|
435
455
|
updated:
|
|
436
456
|
type: string
|
|
437
457
|
format: date-time
|
|
438
|
-
|
|
439
|
-
# Error Response
|
|
440
458
|
Error:
|
|
441
459
|
type: object
|
|
442
460
|
required:
|
|
@@ -445,17 +463,15 @@ components:
|
|
|
445
463
|
properties:
|
|
446
464
|
error:
|
|
447
465
|
type: string
|
|
448
|
-
example:
|
|
466
|
+
example: VALIDATION_ERROR
|
|
449
467
|
message:
|
|
450
468
|
type: string
|
|
451
|
-
example:
|
|
469
|
+
example: Agent name must be lowercase alphanumeric with hyphens
|
|
452
470
|
details:
|
|
453
471
|
type: object
|
|
454
472
|
path:
|
|
455
473
|
type: string
|
|
456
|
-
example:
|
|
457
|
-
|
|
458
|
-
# AGENTS.md (agents.md standard) - OSSA owns; BuildKit consumes via this API
|
|
474
|
+
example: metadata.name
|
|
459
475
|
AgentsMdContent:
|
|
460
476
|
type: object
|
|
461
477
|
description: AGENTS.md content or generate options (agents.md standard https://agents.md)
|
|
@@ -464,16 +480,15 @@ components:
|
|
|
464
480
|
type: string
|
|
465
481
|
description: Raw AGENTS.md markdown (when providing custom content)
|
|
466
482
|
options:
|
|
467
|
-
$ref:
|
|
483
|
+
$ref: "#/components/schemas/AgentsMdOptions"
|
|
468
484
|
description: Options when generating from manifest (omit content to generate)
|
|
469
|
-
|
|
470
485
|
AgentsMdOptions:
|
|
471
486
|
type: object
|
|
472
487
|
description: Options for generating AGENTS.md from OSSA manifest
|
|
473
488
|
properties:
|
|
474
489
|
outputPath:
|
|
475
490
|
type: string
|
|
476
|
-
default:
|
|
491
|
+
default: AGENTS.md
|
|
477
492
|
description: Output path relative to agent directory
|
|
478
493
|
sections:
|
|
479
494
|
type: object
|
|
@@ -519,10 +534,11 @@ components:
|
|
|
519
534
|
default: true
|
|
520
535
|
custom:
|
|
521
536
|
type: string
|
|
522
|
-
|
|
523
537
|
AgentsMdResponse:
|
|
524
538
|
type: object
|
|
525
|
-
required:
|
|
539
|
+
required:
|
|
540
|
+
- content
|
|
541
|
+
- path
|
|
526
542
|
properties:
|
|
527
543
|
content:
|
|
528
544
|
type: string
|
|
@@ -530,11 +546,12 @@ components:
|
|
|
530
546
|
path:
|
|
531
547
|
type: string
|
|
532
548
|
description: Resolved path where file is or would be written
|
|
533
|
-
|
|
534
549
|
DiscoveredAgentsMd:
|
|
535
550
|
type: object
|
|
536
551
|
description: One discovered AGENTS.md entry (for discovery and maintenance)
|
|
537
|
-
required:
|
|
552
|
+
required:
|
|
553
|
+
- agentsMdPath
|
|
554
|
+
- baseDir
|
|
538
555
|
properties:
|
|
539
556
|
agentsMdPath:
|
|
540
557
|
type: string
|
|
@@ -558,24 +575,27 @@ components:
|
|
|
558
575
|
baseDir:
|
|
559
576
|
type: string
|
|
560
577
|
description: Workspace base directory
|
|
561
|
-
|
|
562
578
|
AgentsMdDiscoverResponse:
|
|
563
579
|
type: object
|
|
564
|
-
required:
|
|
580
|
+
required:
|
|
581
|
+
- discovered
|
|
565
582
|
properties:
|
|
566
583
|
discovered:
|
|
567
584
|
type: array
|
|
568
585
|
items:
|
|
569
|
-
$ref:
|
|
570
|
-
|
|
586
|
+
$ref: "#/components/schemas/DiscoveredAgentsMd"
|
|
571
587
|
AgentsMdMaintainResponse:
|
|
572
588
|
type: object
|
|
573
|
-
required:
|
|
589
|
+
required:
|
|
590
|
+
- discovered
|
|
591
|
+
- updated
|
|
592
|
+
- skipped
|
|
593
|
+
- failed
|
|
574
594
|
properties:
|
|
575
595
|
discovered:
|
|
576
596
|
type: array
|
|
577
597
|
items:
|
|
578
|
-
$ref:
|
|
598
|
+
$ref: "#/components/schemas/DiscoveredAgentsMd"
|
|
579
599
|
updated:
|
|
580
600
|
type: array
|
|
581
601
|
items:
|
|
@@ -594,13 +614,12 @@ components:
|
|
|
594
614
|
type: string
|
|
595
615
|
error:
|
|
596
616
|
type: string
|
|
597
|
-
|
|
598
617
|
paths:
|
|
599
|
-
# Agent CRUD Operations
|
|
600
618
|
/agents:
|
|
601
619
|
get:
|
|
602
620
|
operationId: listAgents
|
|
603
|
-
tags:
|
|
621
|
+
tags:
|
|
622
|
+
- agents
|
|
604
623
|
summary: List all agents
|
|
605
624
|
description: Get list of all agents in workspace with filtering and pagination
|
|
606
625
|
parameters:
|
|
@@ -627,16 +646,17 @@ paths:
|
|
|
627
646
|
type: integer
|
|
628
647
|
default: 20
|
|
629
648
|
responses:
|
|
630
|
-
|
|
649
|
+
"200":
|
|
631
650
|
description: List of agents
|
|
632
651
|
content:
|
|
633
652
|
application/json:
|
|
634
653
|
schema:
|
|
635
|
-
$ref:
|
|
636
|
-
|
|
654
|
+
$ref: "#/components/schemas/AgentList"
|
|
655
|
+
x-ossa-capability: cli-list-agents
|
|
637
656
|
post:
|
|
638
657
|
operationId: createAgent
|
|
639
|
-
tags:
|
|
658
|
+
tags:
|
|
659
|
+
- agents
|
|
640
660
|
summary: Create new agent
|
|
641
661
|
description: Create agent from manifest (used by wizard)
|
|
642
662
|
requestBody:
|
|
@@ -644,25 +664,29 @@ paths:
|
|
|
644
664
|
content:
|
|
645
665
|
application/json:
|
|
646
666
|
schema:
|
|
647
|
-
$ref:
|
|
667
|
+
$ref: "#/components/schemas/OssaAgent"
|
|
648
668
|
responses:
|
|
649
|
-
|
|
669
|
+
"201":
|
|
650
670
|
description: Agent created
|
|
651
671
|
content:
|
|
652
672
|
application/json:
|
|
653
673
|
schema:
|
|
654
|
-
$ref:
|
|
655
|
-
|
|
674
|
+
$ref: "#/components/schemas/OssaAgent"
|
|
675
|
+
"400":
|
|
656
676
|
description: Validation error
|
|
657
677
|
content:
|
|
658
678
|
application/json:
|
|
659
679
|
schema:
|
|
660
|
-
$ref:
|
|
661
|
-
|
|
680
|
+
$ref: "#/components/schemas/Error"
|
|
681
|
+
x-ossa-capability: cli-create-agent
|
|
682
|
+
x-ossa-autonomy:
|
|
683
|
+
level: supervised
|
|
684
|
+
approval_required: true
|
|
662
685
|
/agents/{name}:
|
|
663
686
|
get:
|
|
664
687
|
operationId: getAgent
|
|
665
|
-
tags:
|
|
688
|
+
tags:
|
|
689
|
+
- agents
|
|
666
690
|
summary: Get agent by name
|
|
667
691
|
parameters:
|
|
668
692
|
- name: name
|
|
@@ -671,22 +695,24 @@ paths:
|
|
|
671
695
|
schema:
|
|
672
696
|
type: string
|
|
673
697
|
responses:
|
|
674
|
-
|
|
698
|
+
"200":
|
|
675
699
|
description: Agent details
|
|
676
700
|
content:
|
|
677
701
|
application/json:
|
|
678
702
|
schema:
|
|
679
|
-
$ref:
|
|
680
|
-
|
|
703
|
+
$ref: "#/components/schemas/OssaAgent"
|
|
704
|
+
"404":
|
|
681
705
|
description: Agent not found
|
|
682
706
|
content:
|
|
683
707
|
application/json:
|
|
684
708
|
schema:
|
|
685
|
-
$ref:
|
|
686
|
-
|
|
709
|
+
$ref: "#/components/schemas/Error"
|
|
710
|
+
x-ossa-capability: cli-get-agent
|
|
711
|
+
description: Get agent by name
|
|
687
712
|
put:
|
|
688
713
|
operationId: updateAgent
|
|
689
|
-
tags:
|
|
714
|
+
tags:
|
|
715
|
+
- agents
|
|
690
716
|
summary: Update agent
|
|
691
717
|
parameters:
|
|
692
718
|
- name: name
|
|
@@ -699,18 +725,23 @@ paths:
|
|
|
699
725
|
content:
|
|
700
726
|
application/json:
|
|
701
727
|
schema:
|
|
702
|
-
$ref:
|
|
728
|
+
$ref: "#/components/schemas/OssaAgent"
|
|
703
729
|
responses:
|
|
704
|
-
|
|
730
|
+
"200":
|
|
705
731
|
description: Agent updated
|
|
706
732
|
content:
|
|
707
733
|
application/json:
|
|
708
734
|
schema:
|
|
709
|
-
$ref:
|
|
710
|
-
|
|
735
|
+
$ref: "#/components/schemas/OssaAgent"
|
|
736
|
+
x-ossa-capability: cli-update-agent
|
|
737
|
+
x-ossa-autonomy:
|
|
738
|
+
level: supervised
|
|
739
|
+
approval_required: true
|
|
740
|
+
description: Update agent
|
|
711
741
|
delete:
|
|
712
742
|
operationId: deleteAgent
|
|
713
|
-
tags:
|
|
743
|
+
tags:
|
|
744
|
+
- agents
|
|
714
745
|
summary: Delete agent
|
|
715
746
|
parameters:
|
|
716
747
|
- name: name
|
|
@@ -719,16 +750,20 @@ paths:
|
|
|
719
750
|
schema:
|
|
720
751
|
type: string
|
|
721
752
|
responses:
|
|
722
|
-
|
|
753
|
+
"204":
|
|
723
754
|
description: Agent deleted
|
|
724
|
-
|
|
755
|
+
"404":
|
|
725
756
|
description: Agent not found
|
|
726
|
-
|
|
727
|
-
|
|
757
|
+
x-ossa-capability: cli-delete-agent
|
|
758
|
+
x-ossa-autonomy:
|
|
759
|
+
level: supervised
|
|
760
|
+
approval_required: true
|
|
761
|
+
description: Delete agent
|
|
728
762
|
/agents/{name}/agents-md:
|
|
729
763
|
get:
|
|
730
764
|
operationId: getAgentsMd
|
|
731
|
-
tags:
|
|
765
|
+
tags:
|
|
766
|
+
- agents-md
|
|
732
767
|
summary: Get AGENTS.md for an agent
|
|
733
768
|
description: Return AGENTS.md content (from disk or generate from manifest). Same logic as ossa agents-md generate.
|
|
734
769
|
parameters:
|
|
@@ -745,22 +780,23 @@ paths:
|
|
|
745
780
|
default: false
|
|
746
781
|
description: If true, generate from manifest when file missing
|
|
747
782
|
responses:
|
|
748
|
-
|
|
783
|
+
"200":
|
|
749
784
|
description: AGENTS.md content
|
|
750
785
|
content:
|
|
751
786
|
application/json:
|
|
752
787
|
schema:
|
|
753
|
-
$ref:
|
|
754
|
-
|
|
788
|
+
$ref: "#/components/schemas/AgentsMdResponse"
|
|
789
|
+
"404":
|
|
755
790
|
description: Agent or AGENTS.md not found
|
|
756
791
|
content:
|
|
757
792
|
application/json:
|
|
758
793
|
schema:
|
|
759
|
-
$ref:
|
|
760
|
-
|
|
794
|
+
$ref: "#/components/schemas/Error"
|
|
795
|
+
x-ossa-capability: cli-get-agents-md
|
|
761
796
|
put:
|
|
762
797
|
operationId: putAgentsMd
|
|
763
|
-
tags:
|
|
798
|
+
tags:
|
|
799
|
+
- agents-md
|
|
764
800
|
summary: Create or update AGENTS.md for an agent
|
|
765
801
|
description: Write AGENTS.md (raw content or generate from manifest with options). Same logic as ossa agents-md generate.
|
|
766
802
|
parameters:
|
|
@@ -773,30 +809,34 @@ paths:
|
|
|
773
809
|
content:
|
|
774
810
|
application/json:
|
|
775
811
|
schema:
|
|
776
|
-
$ref:
|
|
812
|
+
$ref: "#/components/schemas/AgentsMdContent"
|
|
777
813
|
responses:
|
|
778
|
-
|
|
814
|
+
"200":
|
|
779
815
|
description: AGENTS.md written
|
|
780
816
|
content:
|
|
781
817
|
application/json:
|
|
782
818
|
schema:
|
|
783
|
-
$ref:
|
|
784
|
-
|
|
819
|
+
$ref: "#/components/schemas/AgentsMdResponse"
|
|
820
|
+
"400":
|
|
785
821
|
description: Validation error
|
|
786
822
|
content:
|
|
787
823
|
application/json:
|
|
788
824
|
schema:
|
|
789
|
-
$ref:
|
|
790
|
-
|
|
825
|
+
$ref: "#/components/schemas/Error"
|
|
826
|
+
"404":
|
|
791
827
|
description: Agent not found
|
|
792
828
|
content:
|
|
793
829
|
application/json:
|
|
794
830
|
schema:
|
|
795
|
-
$ref:
|
|
796
|
-
|
|
831
|
+
$ref: "#/components/schemas/Error"
|
|
832
|
+
x-ossa-capability: cli-put-agents-md
|
|
833
|
+
x-ossa-autonomy:
|
|
834
|
+
level: supervised
|
|
835
|
+
approval_required: true
|
|
797
836
|
delete:
|
|
798
837
|
operationId: deleteAgentsMd
|
|
799
|
-
tags:
|
|
838
|
+
tags:
|
|
839
|
+
- agents-md
|
|
800
840
|
summary: Remove AGENTS.md for an agent
|
|
801
841
|
parameters:
|
|
802
842
|
- name: name
|
|
@@ -805,20 +845,24 @@ paths:
|
|
|
805
845
|
schema:
|
|
806
846
|
type: string
|
|
807
847
|
responses:
|
|
808
|
-
|
|
848
|
+
"204":
|
|
809
849
|
description: AGENTS.md deleted
|
|
810
|
-
|
|
850
|
+
"404":
|
|
811
851
|
description: Agent or AGENTS.md not found
|
|
812
852
|
content:
|
|
813
853
|
application/json:
|
|
814
854
|
schema:
|
|
815
|
-
$ref:
|
|
816
|
-
|
|
817
|
-
|
|
855
|
+
$ref: "#/components/schemas/Error"
|
|
856
|
+
x-ossa-capability: cli-delete-agents-md
|
|
857
|
+
x-ossa-autonomy:
|
|
858
|
+
level: supervised
|
|
859
|
+
approval_required: true
|
|
860
|
+
description: Remove AGENTS.md for an agent
|
|
818
861
|
/agents-md/discover:
|
|
819
862
|
get:
|
|
820
863
|
operationId: discoverAgentsMd
|
|
821
|
-
tags:
|
|
864
|
+
tags:
|
|
865
|
+
- agents-md
|
|
822
866
|
summary: Discover all AGENTS.md in workspace
|
|
823
867
|
description: Find all AGENTS.md files and their manifests (.agents/*/ and root) for update and maintenance.
|
|
824
868
|
parameters:
|
|
@@ -829,17 +873,18 @@ paths:
|
|
|
829
873
|
default: .
|
|
830
874
|
description: Workspace directory to scan
|
|
831
875
|
responses:
|
|
832
|
-
|
|
876
|
+
"200":
|
|
833
877
|
description: List of discovered AGENTS.md entries
|
|
834
878
|
content:
|
|
835
879
|
application/json:
|
|
836
880
|
schema:
|
|
837
|
-
$ref:
|
|
838
|
-
|
|
881
|
+
$ref: "#/components/schemas/AgentsMdDiscoverResponse"
|
|
882
|
+
x-ossa-capability: cli-discover-agents-md
|
|
839
883
|
/agents-md/maintain:
|
|
840
884
|
post:
|
|
841
885
|
operationId: maintainAgentsMd
|
|
842
|
-
tags:
|
|
886
|
+
tags:
|
|
887
|
+
- agents-md
|
|
843
888
|
summary: Maintain AGENTS.md files in workspace
|
|
844
889
|
description: Discover then validate/regenerate to update and maintain AGENTS.md after creation.
|
|
845
890
|
parameters:
|
|
@@ -862,59 +907,72 @@ paths:
|
|
|
862
907
|
type: boolean
|
|
863
908
|
default: false
|
|
864
909
|
responses:
|
|
865
|
-
|
|
910
|
+
"200":
|
|
866
911
|
description: Maintain result
|
|
867
912
|
content:
|
|
868
913
|
application/json:
|
|
869
914
|
schema:
|
|
870
|
-
$ref:
|
|
871
|
-
|
|
872
|
-
|
|
915
|
+
$ref: "#/components/schemas/AgentsMdMaintainResponse"
|
|
916
|
+
x-ossa-capability: cli-maintain-agents-md
|
|
917
|
+
x-ossa-autonomy:
|
|
918
|
+
level: supervised
|
|
919
|
+
approval_required: true
|
|
873
920
|
/export:
|
|
874
921
|
post:
|
|
875
922
|
operationId: exportAgent
|
|
876
|
-
tags:
|
|
923
|
+
tags:
|
|
924
|
+
- export
|
|
877
925
|
summary: Export agent to platform
|
|
878
926
|
requestBody:
|
|
879
927
|
required: true
|
|
880
928
|
content:
|
|
881
929
|
application/json:
|
|
882
930
|
schema:
|
|
883
|
-
$ref:
|
|
931
|
+
$ref: "#/components/schemas/ExportRequest"
|
|
884
932
|
responses:
|
|
885
|
-
|
|
933
|
+
"200":
|
|
886
934
|
description: Export successful
|
|
887
935
|
content:
|
|
888
936
|
application/json:
|
|
889
937
|
schema:
|
|
890
|
-
$ref:
|
|
891
|
-
|
|
938
|
+
$ref: "#/components/schemas/ExportResult"
|
|
939
|
+
x-ossa-capability: cli-export-agent
|
|
940
|
+
x-ossa-autonomy:
|
|
941
|
+
level: supervised
|
|
942
|
+
approval_required: true
|
|
943
|
+
description: Export agent to platform
|
|
892
944
|
/export/batch:
|
|
893
945
|
post:
|
|
894
946
|
operationId: batchExport
|
|
895
|
-
tags:
|
|
947
|
+
tags:
|
|
948
|
+
- export
|
|
896
949
|
summary: Batch export to multiple platforms
|
|
897
950
|
requestBody:
|
|
898
951
|
required: true
|
|
899
952
|
content:
|
|
900
953
|
application/json:
|
|
901
954
|
schema:
|
|
902
|
-
$ref:
|
|
955
|
+
$ref: "#/components/schemas/BatchExportRequest"
|
|
903
956
|
responses:
|
|
904
|
-
|
|
957
|
+
"200":
|
|
905
958
|
description: Batch export completed
|
|
906
959
|
content:
|
|
907
960
|
application/json:
|
|
908
961
|
schema:
|
|
909
|
-
$ref:
|
|
910
|
-
|
|
962
|
+
$ref: "#/components/schemas/BatchExportResult"
|
|
963
|
+
x-ossa-capability: cli-batch-export
|
|
964
|
+
x-ossa-autonomy:
|
|
965
|
+
level: supervised
|
|
966
|
+
approval_required: true
|
|
967
|
+
description: Batch export to multiple platforms
|
|
911
968
|
/export/platforms:
|
|
912
969
|
get:
|
|
913
970
|
operationId: listPlatforms
|
|
914
|
-
tags:
|
|
971
|
+
tags:
|
|
972
|
+
- export
|
|
915
973
|
summary: List available export platforms
|
|
916
974
|
responses:
|
|
917
|
-
|
|
975
|
+
"200":
|
|
918
976
|
description: List of platforms
|
|
919
977
|
content:
|
|
920
978
|
application/json:
|
|
@@ -933,12 +991,13 @@ paths:
|
|
|
933
991
|
type: array
|
|
934
992
|
items:
|
|
935
993
|
type: string
|
|
936
|
-
|
|
937
|
-
|
|
994
|
+
x-ossa-capability: cli-list-platforms
|
|
995
|
+
description: List available export platforms
|
|
938
996
|
/templates:
|
|
939
997
|
get:
|
|
940
998
|
operationId: listTemplates
|
|
941
|
-
tags:
|
|
999
|
+
tags:
|
|
1000
|
+
- templates
|
|
942
1001
|
summary: List all agent templates
|
|
943
1002
|
parameters:
|
|
944
1003
|
- name: category
|
|
@@ -946,19 +1005,21 @@ paths:
|
|
|
946
1005
|
schema:
|
|
947
1006
|
type: string
|
|
948
1007
|
responses:
|
|
949
|
-
|
|
1008
|
+
"200":
|
|
950
1009
|
description: List of templates
|
|
951
1010
|
content:
|
|
952
1011
|
application/json:
|
|
953
1012
|
schema:
|
|
954
1013
|
type: array
|
|
955
1014
|
items:
|
|
956
|
-
$ref:
|
|
957
|
-
|
|
1015
|
+
$ref: "#/components/schemas/AgentTemplate"
|
|
1016
|
+
x-ossa-capability: cli-list-templates
|
|
1017
|
+
description: List all agent templates
|
|
958
1018
|
/templates/{id}:
|
|
959
1019
|
get:
|
|
960
1020
|
operationId: getTemplate
|
|
961
|
-
tags:
|
|
1021
|
+
tags:
|
|
1022
|
+
- templates
|
|
962
1023
|
summary: Get template by ID
|
|
963
1024
|
parameters:
|
|
964
1025
|
- name: id
|
|
@@ -967,9 +1028,24 @@ paths:
|
|
|
967
1028
|
schema:
|
|
968
1029
|
type: string
|
|
969
1030
|
responses:
|
|
970
|
-
|
|
1031
|
+
"200":
|
|
971
1032
|
description: Template details
|
|
972
1033
|
content:
|
|
973
1034
|
application/json:
|
|
974
1035
|
schema:
|
|
975
|
-
$ref:
|
|
1036
|
+
$ref: "#/components/schemas/AgentTemplate"
|
|
1037
|
+
x-ossa-capability: cli-get-template
|
|
1038
|
+
description: Get template by ID
|
|
1039
|
+
x-ossa-metadata:
|
|
1040
|
+
version: 0.5.0
|
|
1041
|
+
compliance:
|
|
1042
|
+
level: standard
|
|
1043
|
+
observability:
|
|
1044
|
+
tracing: true
|
|
1045
|
+
metrics: true
|
|
1046
|
+
logging: true
|
|
1047
|
+
x-ossa:
|
|
1048
|
+
version: 0.5.0
|
|
1049
|
+
agent:
|
|
1050
|
+
id: ossa-cli-api
|
|
1051
|
+
type: gateway
|