@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/agent-crud.yaml
CHANGED
|
@@ -14,14 +14,12 @@ info:
|
|
|
14
14
|
- **Update**: Modify existing agent configurations
|
|
15
15
|
- **Delete**: Unregister agents from the platform
|
|
16
16
|
- **Standards Compliance**: Full OSSA v0.3.0 and RFC7807 error handling
|
|
17
|
-
|
|
18
17
|
contact:
|
|
19
18
|
name: Bluefly.io LLM Platform Team
|
|
20
19
|
url: https://github.com/blueflyio/openstandardagents
|
|
21
20
|
license:
|
|
22
21
|
name: MIT
|
|
23
22
|
url: https://opensource.org/licenses/MIT
|
|
24
|
-
|
|
25
23
|
servers:
|
|
26
24
|
- url: https://api.llm.bluefly.io/ossa/v1
|
|
27
25
|
description: Production server
|
|
@@ -29,33 +27,35 @@ servers:
|
|
|
29
27
|
description: Development server
|
|
30
28
|
- url: http://localhost:3000
|
|
31
29
|
description: Local development
|
|
32
|
-
|
|
33
30
|
security:
|
|
34
31
|
- ApiKeyAuth: []
|
|
35
32
|
- BearerAuth: []
|
|
36
|
-
- OAuth2:
|
|
37
|
-
|
|
33
|
+
- OAuth2:
|
|
34
|
+
- read
|
|
35
|
+
- write
|
|
36
|
+
- admin
|
|
38
37
|
paths:
|
|
39
38
|
/agents:
|
|
40
39
|
get:
|
|
41
40
|
summary: List agents
|
|
42
41
|
description: Retrieve a paginated list of all registered agents with optional filtering
|
|
43
|
-
tags:
|
|
42
|
+
tags:
|
|
43
|
+
- Agents
|
|
44
44
|
operationId: listAgents
|
|
45
45
|
parameters:
|
|
46
|
-
- $ref:
|
|
47
|
-
- $ref:
|
|
48
|
-
- $ref:
|
|
46
|
+
- $ref: "#/components/parameters/Search"
|
|
47
|
+
- $ref: "#/components/parameters/Limit"
|
|
48
|
+
- $ref: "#/components/parameters/Offset"
|
|
49
49
|
- name: type
|
|
50
50
|
in: query
|
|
51
51
|
description: Filter by agent type
|
|
52
52
|
schema:
|
|
53
|
-
$ref:
|
|
53
|
+
$ref: "#/components/schemas/AgentType"
|
|
54
54
|
- name: status
|
|
55
55
|
in: query
|
|
56
56
|
description: Filter by agent status
|
|
57
57
|
schema:
|
|
58
|
-
$ref:
|
|
58
|
+
$ref: "#/components/schemas/AgentStatus"
|
|
59
59
|
- name: domain
|
|
60
60
|
in: query
|
|
61
61
|
description: Filter by domain label
|
|
@@ -67,26 +67,27 @@ paths:
|
|
|
67
67
|
schema:
|
|
68
68
|
type: string
|
|
69
69
|
responses:
|
|
70
|
-
|
|
70
|
+
"200":
|
|
71
71
|
description: List of agents successfully retrieved
|
|
72
72
|
content:
|
|
73
73
|
application/json:
|
|
74
74
|
schema:
|
|
75
|
-
$ref:
|
|
75
|
+
$ref: "#/components/schemas/AgentsList"
|
|
76
76
|
examples:
|
|
77
77
|
default:
|
|
78
|
-
$ref:
|
|
79
|
-
|
|
80
|
-
$ref:
|
|
81
|
-
|
|
82
|
-
$ref:
|
|
83
|
-
|
|
84
|
-
$ref:
|
|
85
|
-
|
|
78
|
+
$ref: "#/components/examples/AgentsListExample"
|
|
79
|
+
"400":
|
|
80
|
+
$ref: "#/components/responses/BadRequest"
|
|
81
|
+
"401":
|
|
82
|
+
$ref: "#/components/responses/Unauthorized"
|
|
83
|
+
"500":
|
|
84
|
+
$ref: "#/components/responses/InternalServerError"
|
|
85
|
+
x-ossa-capability: list-agents
|
|
86
86
|
post:
|
|
87
87
|
summary: Create agent
|
|
88
88
|
description: Register a new agent with the platform
|
|
89
|
-
tags:
|
|
89
|
+
tags:
|
|
90
|
+
- Agents
|
|
90
91
|
operationId: createAgent
|
|
91
92
|
requestBody:
|
|
92
93
|
required: true
|
|
@@ -94,14 +95,14 @@ paths:
|
|
|
94
95
|
content:
|
|
95
96
|
application/json:
|
|
96
97
|
schema:
|
|
97
|
-
$ref:
|
|
98
|
+
$ref: "#/components/schemas/AgentCreate"
|
|
98
99
|
examples:
|
|
99
100
|
worker:
|
|
100
|
-
$ref:
|
|
101
|
+
$ref: "#/components/examples/CreateWorkerAgentExample"
|
|
101
102
|
orchestrator:
|
|
102
|
-
$ref:
|
|
103
|
+
$ref: "#/components/examples/CreateOrchestratorAgentExample"
|
|
103
104
|
responses:
|
|
104
|
-
|
|
105
|
+
"201":
|
|
105
106
|
description: Agent successfully created
|
|
106
107
|
headers:
|
|
107
108
|
Location:
|
|
@@ -112,105 +113,117 @@ paths:
|
|
|
112
113
|
content:
|
|
113
114
|
application/json:
|
|
114
115
|
schema:
|
|
115
|
-
$ref:
|
|
116
|
+
$ref: "#/components/schemas/AgentResponse"
|
|
116
117
|
examples:
|
|
117
118
|
default:
|
|
118
|
-
$ref:
|
|
119
|
-
|
|
120
|
-
$ref:
|
|
121
|
-
|
|
122
|
-
$ref:
|
|
123
|
-
|
|
124
|
-
$ref:
|
|
125
|
-
|
|
126
|
-
$ref:
|
|
127
|
-
|
|
119
|
+
$ref: "#/components/examples/AgentResponseExample"
|
|
120
|
+
"400":
|
|
121
|
+
$ref: "#/components/responses/ValidationError"
|
|
122
|
+
"401":
|
|
123
|
+
$ref: "#/components/responses/Unauthorized"
|
|
124
|
+
"409":
|
|
125
|
+
$ref: "#/components/responses/Conflict"
|
|
126
|
+
"500":
|
|
127
|
+
$ref: "#/components/responses/InternalServerError"
|
|
128
|
+
x-ossa-capability: create-agent
|
|
129
|
+
x-ossa-autonomy:
|
|
130
|
+
level: supervised
|
|
131
|
+
approval_required: true
|
|
128
132
|
/agents/{id}:
|
|
129
133
|
get:
|
|
130
134
|
summary: Get agent
|
|
131
135
|
description: Retrieve detailed information about a specific agent
|
|
132
|
-
tags:
|
|
136
|
+
tags:
|
|
137
|
+
- Agents
|
|
133
138
|
operationId: getAgent
|
|
134
139
|
parameters:
|
|
135
|
-
- $ref:
|
|
140
|
+
- $ref: "#/components/parameters/AgentId"
|
|
136
141
|
responses:
|
|
137
|
-
|
|
142
|
+
"200":
|
|
138
143
|
description: Agent details successfully retrieved
|
|
139
144
|
content:
|
|
140
145
|
application/json:
|
|
141
146
|
schema:
|
|
142
|
-
$ref:
|
|
147
|
+
$ref: "#/components/schemas/AgentResponse"
|
|
143
148
|
examples:
|
|
144
149
|
default:
|
|
145
|
-
$ref:
|
|
146
|
-
|
|
147
|
-
$ref:
|
|
148
|
-
|
|
149
|
-
$ref:
|
|
150
|
-
|
|
151
|
-
$ref:
|
|
152
|
-
|
|
150
|
+
$ref: "#/components/examples/AgentResponseExample"
|
|
151
|
+
"401":
|
|
152
|
+
$ref: "#/components/responses/Unauthorized"
|
|
153
|
+
"404":
|
|
154
|
+
$ref: "#/components/responses/NotFound"
|
|
155
|
+
"500":
|
|
156
|
+
$ref: "#/components/responses/InternalServerError"
|
|
157
|
+
x-ossa-capability: get-agent
|
|
153
158
|
put:
|
|
154
159
|
summary: Update agent
|
|
155
160
|
description: Update an existing agent's configuration
|
|
156
|
-
tags:
|
|
161
|
+
tags:
|
|
162
|
+
- Agents
|
|
157
163
|
operationId: updateAgent
|
|
158
164
|
parameters:
|
|
159
|
-
- $ref:
|
|
165
|
+
- $ref: "#/components/parameters/AgentId"
|
|
160
166
|
requestBody:
|
|
161
167
|
required: true
|
|
162
168
|
description: Updated agent configuration
|
|
163
169
|
content:
|
|
164
170
|
application/json:
|
|
165
171
|
schema:
|
|
166
|
-
$ref:
|
|
172
|
+
$ref: "#/components/schemas/AgentUpdate"
|
|
167
173
|
examples:
|
|
168
174
|
partial:
|
|
169
|
-
$ref:
|
|
175
|
+
$ref: "#/components/examples/UpdateAgentExample"
|
|
170
176
|
responses:
|
|
171
|
-
|
|
177
|
+
"200":
|
|
172
178
|
description: Agent successfully updated
|
|
173
179
|
content:
|
|
174
180
|
application/json:
|
|
175
181
|
schema:
|
|
176
|
-
$ref:
|
|
182
|
+
$ref: "#/components/schemas/AgentResponse"
|
|
177
183
|
examples:
|
|
178
184
|
default:
|
|
179
|
-
$ref:
|
|
180
|
-
|
|
181
|
-
$ref:
|
|
182
|
-
|
|
183
|
-
$ref:
|
|
184
|
-
|
|
185
|
-
$ref:
|
|
186
|
-
|
|
187
|
-
$ref:
|
|
188
|
-
|
|
189
|
-
$ref:
|
|
190
|
-
|
|
185
|
+
$ref: "#/components/examples/AgentResponseExample"
|
|
186
|
+
"400":
|
|
187
|
+
$ref: "#/components/responses/ValidationError"
|
|
188
|
+
"401":
|
|
189
|
+
$ref: "#/components/responses/Unauthorized"
|
|
190
|
+
"404":
|
|
191
|
+
$ref: "#/components/responses/NotFound"
|
|
192
|
+
"409":
|
|
193
|
+
$ref: "#/components/responses/Conflict"
|
|
194
|
+
"500":
|
|
195
|
+
$ref: "#/components/responses/InternalServerError"
|
|
196
|
+
x-ossa-capability: update-agent
|
|
197
|
+
x-ossa-autonomy:
|
|
198
|
+
level: supervised
|
|
199
|
+
approval_required: true
|
|
191
200
|
delete:
|
|
192
201
|
summary: Delete agent
|
|
193
202
|
description: Unregister and remove an agent from the platform
|
|
194
|
-
tags:
|
|
203
|
+
tags:
|
|
204
|
+
- Agents
|
|
195
205
|
operationId: deleteAgent
|
|
196
206
|
parameters:
|
|
197
|
-
- $ref:
|
|
207
|
+
- $ref: "#/components/parameters/AgentId"
|
|
198
208
|
responses:
|
|
199
|
-
|
|
209
|
+
"204":
|
|
200
210
|
description: Agent successfully deleted
|
|
201
|
-
|
|
202
|
-
$ref:
|
|
203
|
-
|
|
204
|
-
$ref:
|
|
205
|
-
|
|
211
|
+
"401":
|
|
212
|
+
$ref: "#/components/responses/Unauthorized"
|
|
213
|
+
"404":
|
|
214
|
+
$ref: "#/components/responses/NotFound"
|
|
215
|
+
"409":
|
|
206
216
|
description: Conflict - Agent is currently in use
|
|
207
217
|
content:
|
|
208
218
|
application/problem+json:
|
|
209
219
|
schema:
|
|
210
|
-
$ref:
|
|
211
|
-
|
|
212
|
-
$ref:
|
|
213
|
-
|
|
220
|
+
$ref: "#/components/schemas/Problem"
|
|
221
|
+
"500":
|
|
222
|
+
$ref: "#/components/responses/InternalServerError"
|
|
223
|
+
x-ossa-capability: delete-agent
|
|
224
|
+
x-ossa-autonomy:
|
|
225
|
+
level: supervised
|
|
226
|
+
approval_required: true
|
|
214
227
|
components:
|
|
215
228
|
securitySchemes:
|
|
216
229
|
ApiKeyAuth:
|
|
@@ -231,7 +244,6 @@ components:
|
|
|
231
244
|
read: Read access to agents
|
|
232
245
|
write: Write access to create and update agents
|
|
233
246
|
admin: Full administrative access
|
|
234
|
-
|
|
235
247
|
parameters:
|
|
236
248
|
AgentId:
|
|
237
249
|
name: id
|
|
@@ -242,7 +254,6 @@ components:
|
|
|
242
254
|
type: string
|
|
243
255
|
format: uuid
|
|
244
256
|
example: 550e8400-e29b-41d4-a716-446655440000
|
|
245
|
-
|
|
246
257
|
Search:
|
|
247
258
|
name: search
|
|
248
259
|
in: query
|
|
@@ -250,7 +261,6 @@ components:
|
|
|
250
261
|
schema:
|
|
251
262
|
type: string
|
|
252
263
|
example: security
|
|
253
|
-
|
|
254
264
|
Limit:
|
|
255
265
|
name: limit
|
|
256
266
|
in: query
|
|
@@ -261,7 +271,6 @@ components:
|
|
|
261
271
|
maximum: 100
|
|
262
272
|
default: 20
|
|
263
273
|
example: 20
|
|
264
|
-
|
|
265
274
|
Offset:
|
|
266
275
|
name: offset
|
|
267
276
|
in: query
|
|
@@ -271,9 +280,7 @@ components:
|
|
|
271
280
|
minimum: 0
|
|
272
281
|
default: 0
|
|
273
282
|
example: 0
|
|
274
|
-
|
|
275
283
|
schemas:
|
|
276
|
-
# Request Schemas
|
|
277
284
|
AgentCreate:
|
|
278
285
|
type: object
|
|
279
286
|
required:
|
|
@@ -291,10 +298,9 @@ components:
|
|
|
291
298
|
const: Agent
|
|
292
299
|
description: Resource type identifier
|
|
293
300
|
metadata:
|
|
294
|
-
$ref:
|
|
301
|
+
$ref: "#/components/schemas/AgentMetadata"
|
|
295
302
|
spec:
|
|
296
|
-
$ref:
|
|
297
|
-
|
|
303
|
+
$ref: "#/components/schemas/AgentSpec"
|
|
298
304
|
AgentUpdate:
|
|
299
305
|
type: object
|
|
300
306
|
description: Partial update of agent configuration. Only provided fields will be updated.
|
|
@@ -312,15 +318,13 @@ components:
|
|
|
312
318
|
type: object
|
|
313
319
|
properties:
|
|
314
320
|
llm:
|
|
315
|
-
$ref:
|
|
321
|
+
$ref: "#/components/schemas/LLMConfig"
|
|
316
322
|
runtime:
|
|
317
|
-
$ref:
|
|
323
|
+
$ref: "#/components/schemas/RuntimeConfig"
|
|
318
324
|
capabilities:
|
|
319
325
|
type: array
|
|
320
326
|
items:
|
|
321
|
-
$ref:
|
|
322
|
-
|
|
323
|
-
# Response Schemas
|
|
327
|
+
$ref: "#/components/schemas/Capability"
|
|
324
328
|
AgentResponse:
|
|
325
329
|
type: object
|
|
326
330
|
required:
|
|
@@ -344,11 +348,11 @@ components:
|
|
|
344
348
|
type: string
|
|
345
349
|
const: Agent
|
|
346
350
|
metadata:
|
|
347
|
-
$ref:
|
|
351
|
+
$ref: "#/components/schemas/AgentMetadata"
|
|
348
352
|
spec:
|
|
349
|
-
$ref:
|
|
353
|
+
$ref: "#/components/schemas/AgentSpec"
|
|
350
354
|
status:
|
|
351
|
-
$ref:
|
|
355
|
+
$ref: "#/components/schemas/AgentStatus"
|
|
352
356
|
createdAt:
|
|
353
357
|
type: string
|
|
354
358
|
format: date-time
|
|
@@ -361,8 +365,7 @@ components:
|
|
|
361
365
|
type: string
|
|
362
366
|
description: User or system that created the agent
|
|
363
367
|
metrics:
|
|
364
|
-
$ref:
|
|
365
|
-
|
|
368
|
+
$ref: "#/components/schemas/AgentMetrics"
|
|
366
369
|
AgentsList:
|
|
367
370
|
type: object
|
|
368
371
|
required:
|
|
@@ -374,7 +377,7 @@ components:
|
|
|
374
377
|
agents:
|
|
375
378
|
type: array
|
|
376
379
|
items:
|
|
377
|
-
$ref:
|
|
380
|
+
$ref: "#/components/schemas/AgentResponse"
|
|
378
381
|
total:
|
|
379
382
|
type: integer
|
|
380
383
|
description: Total number of agents matching the query
|
|
@@ -384,8 +387,6 @@ components:
|
|
|
384
387
|
offset:
|
|
385
388
|
type: integer
|
|
386
389
|
description: Number of results skipped
|
|
387
|
-
|
|
388
|
-
# Core Agent Schemas
|
|
389
390
|
AgentMetadata:
|
|
390
391
|
type: object
|
|
391
392
|
required:
|
|
@@ -394,14 +395,14 @@ components:
|
|
|
394
395
|
properties:
|
|
395
396
|
name:
|
|
396
397
|
type: string
|
|
397
|
-
pattern:
|
|
398
|
+
pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
|
|
398
399
|
minLength: 1
|
|
399
400
|
maxLength: 63
|
|
400
401
|
description: Agent name (DNS label format)
|
|
401
402
|
example: security-scanner
|
|
402
403
|
version:
|
|
403
404
|
type: string
|
|
404
|
-
pattern:
|
|
405
|
+
pattern: ^\d+\.\d+\.\d+(-[a-zA-Z0-9]+(\.[a-zA-Z0-9]+)*)?(\+[a-zA-Z0-9]+(\.[a-zA-Z0-9]+)*)?$
|
|
405
406
|
description: Semantic version (full semver spec including pre-release and build metadata)
|
|
406
407
|
example: 1.0.0
|
|
407
408
|
description:
|
|
@@ -417,7 +418,6 @@ components:
|
|
|
417
418
|
domain: security
|
|
418
419
|
capability: scanning
|
|
419
420
|
runtime: kubernetes
|
|
420
|
-
|
|
421
421
|
AgentSpec:
|
|
422
422
|
type: object
|
|
423
423
|
required:
|
|
@@ -426,36 +426,35 @@ components:
|
|
|
426
426
|
- capabilities
|
|
427
427
|
properties:
|
|
428
428
|
llm:
|
|
429
|
-
$ref:
|
|
429
|
+
$ref: "#/components/schemas/LLMConfig"
|
|
430
430
|
execution_profile:
|
|
431
|
-
$ref:
|
|
431
|
+
$ref: "#/components/schemas/ExecutionProfile"
|
|
432
432
|
runtime:
|
|
433
|
-
$ref:
|
|
433
|
+
$ref: "#/components/schemas/RuntimeConfig"
|
|
434
434
|
capabilities:
|
|
435
435
|
type: array
|
|
436
436
|
items:
|
|
437
|
-
$ref:
|
|
437
|
+
$ref: "#/components/schemas/Capability"
|
|
438
438
|
minItems: 1
|
|
439
439
|
functions:
|
|
440
440
|
type: array
|
|
441
441
|
items:
|
|
442
|
-
$ref:
|
|
442
|
+
$ref: "#/components/schemas/Function"
|
|
443
443
|
extensions:
|
|
444
444
|
type: array
|
|
445
445
|
items:
|
|
446
|
-
$ref:
|
|
446
|
+
$ref: "#/components/schemas/Extension"
|
|
447
447
|
role:
|
|
448
448
|
type: string
|
|
449
449
|
description: Agent's primary role
|
|
450
450
|
taxonomy:
|
|
451
|
-
$ref:
|
|
451
|
+
$ref: "#/components/schemas/Taxonomy"
|
|
452
452
|
tools:
|
|
453
453
|
type: array
|
|
454
454
|
items:
|
|
455
|
-
$ref:
|
|
455
|
+
$ref: "#/components/schemas/Tool"
|
|
456
456
|
knowledge_graph:
|
|
457
|
-
$ref:
|
|
458
|
-
|
|
457
|
+
$ref: "#/components/schemas/KnowledgeGraph"
|
|
459
458
|
LLMConfig:
|
|
460
459
|
type: object
|
|
461
460
|
required:
|
|
@@ -472,7 +471,11 @@ components:
|
|
|
472
471
|
example: claude-sonnet-4
|
|
473
472
|
profile:
|
|
474
473
|
type: string
|
|
475
|
-
enum:
|
|
474
|
+
enum:
|
|
475
|
+
- fast
|
|
476
|
+
- balanced
|
|
477
|
+
- deep
|
|
478
|
+
- safe
|
|
476
479
|
default: balanced
|
|
477
480
|
description: Execution profile for A2A compatibility
|
|
478
481
|
temperature:
|
|
@@ -493,10 +496,9 @@ components:
|
|
|
493
496
|
fallback_models:
|
|
494
497
|
type: array
|
|
495
498
|
items:
|
|
496
|
-
$ref:
|
|
499
|
+
$ref: "#/components/schemas/FallbackModel"
|
|
497
500
|
retry_config:
|
|
498
|
-
$ref:
|
|
499
|
-
|
|
501
|
+
$ref: "#/components/schemas/RetryConfig"
|
|
500
502
|
FallbackModel:
|
|
501
503
|
type: object
|
|
502
504
|
required:
|
|
@@ -510,8 +512,10 @@ components:
|
|
|
510
512
|
type: string
|
|
511
513
|
condition:
|
|
512
514
|
type: string
|
|
513
|
-
enum:
|
|
514
|
-
|
|
515
|
+
enum:
|
|
516
|
+
- on_error
|
|
517
|
+
- on_rate_limit
|
|
518
|
+
- on_timeout
|
|
515
519
|
RetryConfig:
|
|
516
520
|
type: object
|
|
517
521
|
properties:
|
|
@@ -522,20 +526,25 @@ components:
|
|
|
522
526
|
default: 3
|
|
523
527
|
backoff_strategy:
|
|
524
528
|
type: string
|
|
525
|
-
enum:
|
|
529
|
+
enum:
|
|
530
|
+
- linear
|
|
531
|
+
- exponential
|
|
532
|
+
- fibonacci
|
|
526
533
|
default: exponential
|
|
527
|
-
|
|
528
534
|
ExecutionProfile:
|
|
529
535
|
type: object
|
|
530
536
|
properties:
|
|
531
537
|
default:
|
|
532
538
|
type: string
|
|
533
|
-
enum:
|
|
539
|
+
enum:
|
|
540
|
+
- fast
|
|
541
|
+
- balanced
|
|
542
|
+
- deep
|
|
543
|
+
- safe
|
|
534
544
|
profiles:
|
|
535
545
|
type: object
|
|
536
546
|
additionalProperties:
|
|
537
|
-
$ref:
|
|
538
|
-
|
|
547
|
+
$ref: "#/components/schemas/ProfileConfig"
|
|
539
548
|
ProfileConfig:
|
|
540
549
|
type: object
|
|
541
550
|
properties:
|
|
@@ -551,7 +560,6 @@ components:
|
|
|
551
560
|
type: boolean
|
|
552
561
|
description:
|
|
553
562
|
type: string
|
|
554
|
-
|
|
555
563
|
RuntimeConfig:
|
|
556
564
|
type: object
|
|
557
565
|
required:
|
|
@@ -559,28 +567,44 @@ components:
|
|
|
559
567
|
properties:
|
|
560
568
|
type:
|
|
561
569
|
type: string
|
|
562
|
-
enum:
|
|
570
|
+
enum:
|
|
571
|
+
- unified
|
|
572
|
+
- kubernetes
|
|
573
|
+
- docker
|
|
574
|
+
- serverless
|
|
575
|
+
- local
|
|
563
576
|
description: Runtime environment type
|
|
564
577
|
supports:
|
|
565
578
|
type: array
|
|
566
579
|
items:
|
|
567
580
|
type: string
|
|
568
|
-
enum:
|
|
581
|
+
enum:
|
|
582
|
+
- google-a2a
|
|
583
|
+
- gitlab-duo
|
|
584
|
+
- ossa-mesh
|
|
585
|
+
- mcp
|
|
586
|
+
- local-execution
|
|
569
587
|
scheduling:
|
|
570
|
-
$ref:
|
|
588
|
+
$ref: "#/components/schemas/SchedulingConfig"
|
|
571
589
|
resource_limits:
|
|
572
|
-
$ref:
|
|
573
|
-
|
|
590
|
+
$ref: "#/components/schemas/ResourceLimits"
|
|
574
591
|
SchedulingConfig:
|
|
575
592
|
type: object
|
|
576
593
|
properties:
|
|
577
594
|
strategy:
|
|
578
595
|
type: string
|
|
579
|
-
enum:
|
|
596
|
+
enum:
|
|
597
|
+
- fair
|
|
598
|
+
- priority
|
|
599
|
+
- round-robin
|
|
580
600
|
default: fair
|
|
581
601
|
priority:
|
|
582
602
|
type: string
|
|
583
|
-
enum:
|
|
603
|
+
enum:
|
|
604
|
+
- low
|
|
605
|
+
- normal
|
|
606
|
+
- high
|
|
607
|
+
- critical
|
|
584
608
|
default: normal
|
|
585
609
|
max_concurrent:
|
|
586
610
|
type: integer
|
|
@@ -590,7 +614,6 @@ components:
|
|
|
590
614
|
type: integer
|
|
591
615
|
minimum: 1
|
|
592
616
|
default: 300
|
|
593
|
-
|
|
594
617
|
ResourceLimits:
|
|
595
618
|
type: object
|
|
596
619
|
properties:
|
|
@@ -602,7 +625,6 @@ components:
|
|
|
602
625
|
type: integer
|
|
603
626
|
minimum: 100
|
|
604
627
|
default: 500
|
|
605
|
-
|
|
606
628
|
Capability:
|
|
607
629
|
type: object
|
|
608
630
|
required:
|
|
@@ -613,16 +635,22 @@ components:
|
|
|
613
635
|
type: string
|
|
614
636
|
type:
|
|
615
637
|
type: string
|
|
616
|
-
enum:
|
|
638
|
+
enum:
|
|
639
|
+
- action
|
|
640
|
+
- query
|
|
641
|
+
- monitor
|
|
642
|
+
- transform
|
|
617
643
|
runtime:
|
|
618
644
|
type: string
|
|
619
|
-
enum:
|
|
645
|
+
enum:
|
|
646
|
+
- llm
|
|
647
|
+
- code
|
|
648
|
+
- hybrid
|
|
620
649
|
description:
|
|
621
650
|
type: string
|
|
622
651
|
input_schema:
|
|
623
652
|
type: object
|
|
624
653
|
description: JSON Schema for capability input
|
|
625
|
-
|
|
626
654
|
Function:
|
|
627
655
|
type: object
|
|
628
656
|
required:
|
|
@@ -632,7 +660,7 @@ components:
|
|
|
632
660
|
properties:
|
|
633
661
|
name:
|
|
634
662
|
type: string
|
|
635
|
-
pattern:
|
|
663
|
+
pattern: ^[a-z_][a-z0-9_]*$
|
|
636
664
|
description:
|
|
637
665
|
type: string
|
|
638
666
|
parameters:
|
|
@@ -641,7 +669,6 @@ components:
|
|
|
641
669
|
returns:
|
|
642
670
|
type: object
|
|
643
671
|
description: Return value schema
|
|
644
|
-
|
|
645
672
|
Extension:
|
|
646
673
|
type: object
|
|
647
674
|
required:
|
|
@@ -651,7 +678,11 @@ components:
|
|
|
651
678
|
properties:
|
|
652
679
|
type:
|
|
653
680
|
type: string
|
|
654
|
-
enum:
|
|
681
|
+
enum:
|
|
682
|
+
- http
|
|
683
|
+
- mcp
|
|
684
|
+
- grpc
|
|
685
|
+
- websocket
|
|
655
686
|
name:
|
|
656
687
|
type: string
|
|
657
688
|
endpoint:
|
|
@@ -660,7 +691,6 @@ components:
|
|
|
660
691
|
credentials_ref:
|
|
661
692
|
type: string
|
|
662
693
|
description: Reference to credential in secrets manager
|
|
663
|
-
|
|
664
694
|
Taxonomy:
|
|
665
695
|
type: object
|
|
666
696
|
properties:
|
|
@@ -670,7 +700,6 @@ components:
|
|
|
670
700
|
type: string
|
|
671
701
|
capability:
|
|
672
702
|
type: string
|
|
673
|
-
|
|
674
703
|
Tool:
|
|
675
704
|
type: object
|
|
676
705
|
required:
|
|
@@ -682,8 +711,7 @@ components:
|
|
|
682
711
|
description:
|
|
683
712
|
type: string
|
|
684
713
|
source:
|
|
685
|
-
$ref:
|
|
686
|
-
|
|
714
|
+
$ref: "#/components/schemas/ToolSource"
|
|
687
715
|
ToolSource:
|
|
688
716
|
type: object
|
|
689
717
|
required:
|
|
@@ -692,11 +720,13 @@ components:
|
|
|
692
720
|
properties:
|
|
693
721
|
type:
|
|
694
722
|
type: string
|
|
695
|
-
enum:
|
|
723
|
+
enum:
|
|
724
|
+
- mcp
|
|
725
|
+
- http
|
|
726
|
+
- grpc
|
|
696
727
|
uri:
|
|
697
728
|
type: string
|
|
698
729
|
format: uri
|
|
699
|
-
|
|
700
730
|
KnowledgeGraph:
|
|
701
731
|
type: object
|
|
702
732
|
properties:
|
|
@@ -705,10 +735,12 @@ components:
|
|
|
705
735
|
default: false
|
|
706
736
|
provider:
|
|
707
737
|
type: string
|
|
708
|
-
enum:
|
|
738
|
+
enum:
|
|
739
|
+
- neo4j
|
|
740
|
+
- memgraph
|
|
741
|
+
- dgraph
|
|
709
742
|
connection:
|
|
710
|
-
$ref:
|
|
711
|
-
|
|
743
|
+
$ref: "#/components/schemas/GraphConnection"
|
|
712
744
|
GraphConnection:
|
|
713
745
|
type: object
|
|
714
746
|
properties:
|
|
@@ -717,12 +749,10 @@ components:
|
|
|
717
749
|
format: uri
|
|
718
750
|
credentials_ref:
|
|
719
751
|
type: string
|
|
720
|
-
|
|
721
752
|
AgentType:
|
|
722
|
-
$ref:
|
|
753
|
+
$ref: ./schemas/common/agent.yaml#/components/schemas/AgentType
|
|
723
754
|
AgentStatus:
|
|
724
|
-
$ref:
|
|
725
|
-
|
|
755
|
+
$ref: ./schemas/common/agent.yaml#/components/schemas/AgentStatus
|
|
726
756
|
AgentMetrics:
|
|
727
757
|
type: object
|
|
728
758
|
properties:
|
|
@@ -742,31 +772,27 @@ components:
|
|
|
742
772
|
type: string
|
|
743
773
|
format: date-time
|
|
744
774
|
description: Timestamp of last activity
|
|
745
|
-
|
|
746
|
-
# Error Schemas (RFC7807) - Using shared schema
|
|
747
775
|
Problem:
|
|
748
|
-
$ref:
|
|
749
|
-
|
|
776
|
+
$ref: ./schemas/common/errors.yaml#/components/schemas/Problem
|
|
750
777
|
responses:
|
|
751
778
|
BadRequest:
|
|
752
779
|
description: Bad request - Invalid input parameters
|
|
753
780
|
content:
|
|
754
781
|
application/problem+json:
|
|
755
782
|
schema:
|
|
756
|
-
$ref:
|
|
783
|
+
$ref: "#/components/schemas/Problem"
|
|
757
784
|
example:
|
|
758
785
|
type: https://api.llm.bluefly.io/problems/bad-request
|
|
759
786
|
title: Bad Request
|
|
760
787
|
status: 400
|
|
761
788
|
detail: Invalid query parameter 'limit' - must be between 1 and 100
|
|
762
789
|
traceId: 550e8400-e29b-41d4-a716-446655440000
|
|
763
|
-
|
|
764
790
|
ValidationError:
|
|
765
791
|
description: Validation error - Request body failed validation
|
|
766
792
|
content:
|
|
767
793
|
application/problem+json:
|
|
768
794
|
schema:
|
|
769
|
-
$ref:
|
|
795
|
+
$ref: "#/components/schemas/Problem"
|
|
770
796
|
example:
|
|
771
797
|
type: https://api.llm.bluefly.io/problems/validation-error
|
|
772
798
|
title: Validation Error
|
|
@@ -778,59 +804,54 @@ components:
|
|
|
778
804
|
- Must match pattern '^[a-z0-9]([-a-z0-9]*[a-z0-9])?$'
|
|
779
805
|
spec.capabilities:
|
|
780
806
|
- Must contain at least one capability
|
|
781
|
-
|
|
782
807
|
Unauthorized:
|
|
783
808
|
description: Unauthorized - Authentication required
|
|
784
809
|
content:
|
|
785
810
|
application/problem+json:
|
|
786
811
|
schema:
|
|
787
|
-
$ref:
|
|
812
|
+
$ref: "#/components/schemas/Problem"
|
|
788
813
|
example:
|
|
789
814
|
type: https://api.llm.bluefly.io/problems/unauthorized
|
|
790
815
|
title: Unauthorized
|
|
791
816
|
status: 401
|
|
792
817
|
detail: Valid authentication credentials required
|
|
793
818
|
traceId: 550e8400-e29b-41d4-a716-446655440002
|
|
794
|
-
|
|
795
819
|
NotFound:
|
|
796
820
|
description: Resource not found
|
|
797
821
|
content:
|
|
798
822
|
application/problem+json:
|
|
799
823
|
schema:
|
|
800
|
-
$ref:
|
|
824
|
+
$ref: "#/components/schemas/Problem"
|
|
801
825
|
example:
|
|
802
826
|
type: https://api.llm.bluefly.io/problems/not-found
|
|
803
827
|
title: Not Found
|
|
804
828
|
status: 404
|
|
805
829
|
detail: Agent with ID 550e8400-e29b-41d4-a716-446655440000 not found
|
|
806
830
|
traceId: 550e8400-e29b-41d4-a716-446655440003
|
|
807
|
-
|
|
808
831
|
Conflict:
|
|
809
832
|
description: Conflict - Resource already exists or constraint violation
|
|
810
833
|
content:
|
|
811
834
|
application/problem+json:
|
|
812
835
|
schema:
|
|
813
|
-
$ref:
|
|
836
|
+
$ref: "#/components/schemas/Problem"
|
|
814
837
|
example:
|
|
815
838
|
type: https://api.llm.bluefly.io/problems/conflict
|
|
816
839
|
title: Conflict
|
|
817
840
|
status: 409
|
|
818
841
|
detail: Agent with name 'security-scanner' already exists in version 1.0.0
|
|
819
842
|
traceId: 550e8400-e29b-41d4-a716-446655440004
|
|
820
|
-
|
|
821
843
|
InternalServerError:
|
|
822
844
|
description: Internal server error
|
|
823
845
|
content:
|
|
824
846
|
application/problem+json:
|
|
825
847
|
schema:
|
|
826
|
-
$ref:
|
|
848
|
+
$ref: "#/components/schemas/Problem"
|
|
827
849
|
example:
|
|
828
850
|
type: https://api.llm.bluefly.io/problems/internal-error
|
|
829
851
|
title: Internal Server Error
|
|
830
852
|
status: 500
|
|
831
853
|
detail: An unexpected error occurred while processing your request
|
|
832
854
|
traceId: 550e8400-e29b-41d4-a716-446655440005
|
|
833
|
-
|
|
834
855
|
examples:
|
|
835
856
|
CreateWorkerAgentExample:
|
|
836
857
|
summary: Create a worker agent
|
|
@@ -872,14 +893,18 @@ components:
|
|
|
872
893
|
description: Run security analysis on code
|
|
873
894
|
input_schema:
|
|
874
895
|
type: object
|
|
875
|
-
required:
|
|
896
|
+
required:
|
|
897
|
+
- path
|
|
876
898
|
properties:
|
|
877
899
|
path:
|
|
878
900
|
type: string
|
|
879
901
|
severity:
|
|
880
902
|
type: string
|
|
881
|
-
enum:
|
|
882
|
-
|
|
903
|
+
enum:
|
|
904
|
+
- low
|
|
905
|
+
- medium
|
|
906
|
+
- high
|
|
907
|
+
- critical
|
|
883
908
|
CreateOrchestratorAgentExample:
|
|
884
909
|
summary: Create an orchestrator agent
|
|
885
910
|
value:
|
|
@@ -919,7 +944,6 @@ components:
|
|
|
919
944
|
type: action
|
|
920
945
|
runtime: llm
|
|
921
946
|
description: Coordinate execution of multi-agent workflows
|
|
922
|
-
|
|
923
947
|
UpdateAgentExample:
|
|
924
948
|
summary: Partial update of agent configuration
|
|
925
949
|
value:
|
|
@@ -932,7 +956,6 @@ components:
|
|
|
932
956
|
llm:
|
|
933
957
|
temperature: 0.05
|
|
934
958
|
maxTokens: 20000
|
|
935
|
-
|
|
936
959
|
AgentResponseExample:
|
|
937
960
|
summary: Complete agent response
|
|
938
961
|
value:
|
|
@@ -974,24 +997,28 @@ components:
|
|
|
974
997
|
description: Run security analysis on code
|
|
975
998
|
input_schema:
|
|
976
999
|
type: object
|
|
977
|
-
required:
|
|
1000
|
+
required:
|
|
1001
|
+
- path
|
|
978
1002
|
properties:
|
|
979
1003
|
path:
|
|
980
1004
|
type: string
|
|
981
1005
|
severity:
|
|
982
1006
|
type: string
|
|
983
|
-
enum:
|
|
1007
|
+
enum:
|
|
1008
|
+
- low
|
|
1009
|
+
- medium
|
|
1010
|
+
- high
|
|
1011
|
+
- critical
|
|
984
1012
|
status: active
|
|
985
|
-
createdAt:
|
|
986
|
-
updatedAt:
|
|
1013
|
+
createdAt: 2025-12-18T10:30:00Z
|
|
1014
|
+
updatedAt: 2025-12-18T10:30:00Z
|
|
987
1015
|
createdBy: user@example.com
|
|
988
1016
|
metrics:
|
|
989
1017
|
requestCount: 1247
|
|
990
1018
|
errorCount: 12
|
|
991
1019
|
averageResponseTime: 234.5
|
|
992
1020
|
uptime: 864000
|
|
993
|
-
lastActive:
|
|
994
|
-
|
|
1021
|
+
lastActive: 2025-12-18T14:25:00Z
|
|
995
1022
|
AgentsListExample:
|
|
996
1023
|
summary: List of agents with pagination
|
|
997
1024
|
value:
|
|
@@ -1017,8 +1044,8 @@ components:
|
|
|
1017
1044
|
type: action
|
|
1018
1045
|
runtime: llm
|
|
1019
1046
|
status: active
|
|
1020
|
-
createdAt:
|
|
1021
|
-
updatedAt:
|
|
1047
|
+
createdAt: 2025-12-18T10:30:00Z
|
|
1048
|
+
updatedAt: 2025-12-18T10:30:00Z
|
|
1022
1049
|
- id: 660e8400-e29b-41d4-a716-446655440001
|
|
1023
1050
|
apiVersion: ossa/v0.3.3
|
|
1024
1051
|
kind: Agent
|
|
@@ -1040,16 +1067,14 @@ components:
|
|
|
1040
1067
|
type: action
|
|
1041
1068
|
runtime: llm
|
|
1042
1069
|
status: active
|
|
1043
|
-
createdAt:
|
|
1044
|
-
updatedAt:
|
|
1070
|
+
createdAt: 2025-12-17T14:20:00Z
|
|
1071
|
+
updatedAt: 2025-12-18T09:15:00Z
|
|
1045
1072
|
total: 42
|
|
1046
1073
|
limit: 20
|
|
1047
1074
|
offset: 0
|
|
1048
|
-
|
|
1049
1075
|
tags:
|
|
1050
1076
|
- name: Agents
|
|
1051
1077
|
description: Agent lifecycle management (CRUD operations)
|
|
1052
|
-
|
|
1053
1078
|
x-ossa-metadata:
|
|
1054
1079
|
version: 0.3.3
|
|
1055
1080
|
compliance:
|
|
@@ -1070,3 +1095,8 @@ x-ossa-metadata:
|
|
|
1070
1095
|
tracing: true
|
|
1071
1096
|
metrics: true
|
|
1072
1097
|
logging: true
|
|
1098
|
+
x-ossa:
|
|
1099
|
+
version: 0.5.0
|
|
1100
|
+
agent:
|
|
1101
|
+
id: agent-crud-api
|
|
1102
|
+
type: gateway
|