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