@bluefly/openstandardagents 0.1.9 → 0.2.5-RC
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/.cursorrules +84 -0
- package/.devfile.yaml +87 -0
- package/.env.example +25 -3
- package/.eslintrc.cjs +43 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +39 -0
- package/.github/dependabot.yml +58 -0
- package/.github/workflows/ci.yml +154 -0
- package/.github/workflows/codeql.yml +41 -0
- package/.github/workflows/dependabot-auto-merge.yml +28 -0
- package/.github/workflows/release.yml +103 -0
- package/.kiro/specs/agent-buildkit-templates/design.md +495 -0
- package/.kiro/specs/agent-buildkit-templates/requirements.md +165 -0
- package/.kiro/specs/kiro-ide-supercharger/README.md +202 -0
- package/.kiro/specs/kiro-ide-supercharger/design.md +1005 -0
- package/.kiro/specs/kiro-ide-supercharger/requirements.md +141 -0
- package/.kiro/specs/kiro-ide-supercharger/tasks.md +507 -0
- package/.kiro/specs/website-design-audit/design.md +679 -0
- package/.kiro/specs/website-design-audit/requirements.md +199 -0
- package/.prettierignore +7 -0
- package/.prettierrc.json +10 -0
- package/.redocly.yaml +8 -62
- package/.releaserc.json +85 -0
- package/.version.json +6 -0
- package/CHANGELOG.md +196 -0
- package/CONTRIBUTING.md +267 -0
- package/LICENSE +190 -0
- package/README.md +253 -454
- package/bin/ossa +29 -0
- package/bin/ossa-validate-all +55 -0
- package/bin/ossa-version +23 -0
- package/bin/validate-ossa-0.2.2.ts +244 -0
- package/bin/validate-ossa-0.2.4.ts +244 -0
- package/bin/validate-ossa-0.2.5-RC.ts +244 -0
- package/bin/validate-ossa.ts +273 -0
- package/dist/di-container.d.ts +1 -1
- package/dist/di-container.d.ts.map +1 -1
- package/dist/di-container.js +0 -3
- package/dist/di-container.js.map +1 -1
- package/dist/index.d.ts +9 -27
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +13 -33
- package/dist/index.js.map +1 -1
- package/dist/repositories/schema.repository.d.ts +16 -1
- package/dist/repositories/schema.repository.d.ts.map +1 -1
- package/dist/repositories/schema.repository.js +94 -17
- package/dist/repositories/schema.repository.js.map +1 -1
- package/dist/services/generation.service.d.ts +7 -5
- package/dist/services/generation.service.d.ts.map +1 -1
- package/dist/services/generation.service.js +93 -45
- package/dist/services/generation.service.js.map +1 -1
- package/dist/services/gitlab-agent.service.d.ts.map +1 -1
- package/dist/services/gitlab-agent.service.js +12 -8
- package/dist/services/gitlab-agent.service.js.map +1 -1
- package/dist/services/migration.service.d.ts +3 -3
- package/dist/services/migration.service.d.ts.map +1 -1
- package/dist/services/migration.service.js +108 -61
- package/dist/services/migration.service.js.map +1 -1
- package/dist/services/release-automation/base-crud.service.d.ts +93 -0
- package/dist/services/release-automation/base-crud.service.d.ts.map +1 -0
- package/dist/services/release-automation/base-crud.service.js +68 -0
- package/dist/services/release-automation/base-crud.service.js.map +1 -0
- package/dist/services/release-automation/index.d.ts +12 -0
- package/dist/services/release-automation/index.d.ts.map +1 -0
- package/dist/services/release-automation/index.js +12 -0
- package/dist/services/release-automation/index.js.map +1 -0
- package/dist/services/release-automation/merge-request.service.d.ts +119 -0
- package/dist/services/release-automation/merge-request.service.d.ts.map +1 -0
- package/dist/services/release-automation/merge-request.service.js +212 -0
- package/dist/services/release-automation/merge-request.service.js.map +1 -0
- package/dist/services/release-automation/milestone.service.d.ts +104 -0
- package/dist/services/release-automation/milestone.service.d.ts.map +1 -0
- package/dist/services/release-automation/milestone.service.js +207 -0
- package/dist/services/release-automation/milestone.service.js.map +1 -0
- package/dist/services/release-automation/release.service.d.ts +118 -0
- package/dist/services/release-automation/release.service.d.ts.map +1 -0
- package/dist/services/release-automation/release.service.js +207 -0
- package/dist/services/release-automation/release.service.js.map +1 -0
- package/dist/services/release-automation/schemas/release.schema.d.ts +299 -0
- package/dist/services/release-automation/schemas/release.schema.d.ts.map +1 -0
- package/dist/services/release-automation/schemas/release.schema.js +269 -0
- package/dist/services/release-automation/schemas/release.schema.js.map +1 -0
- package/dist/services/release-automation/tag.service.d.ts +99 -0
- package/dist/services/release-automation/tag.service.d.ts.map +1 -0
- package/dist/services/release-automation/tag.service.js +180 -0
- package/dist/services/release-automation/tag.service.js.map +1 -0
- package/dist/services/release-automation/webhook.service.d.ts +37 -0
- package/dist/services/release-automation/webhook.service.d.ts.map +1 -0
- package/dist/services/release-automation/webhook.service.js +173 -0
- package/dist/services/release-automation/webhook.service.js.map +1 -0
- package/dist/services/runtime/openai.adapter.d.ts.map +1 -1
- package/dist/services/runtime/openai.adapter.js.map +1 -1
- package/dist/services/validation.service.d.ts.map +1 -1
- package/dist/services/validation.service.js +24 -11
- package/dist/services/validation.service.js.map +1 -1
- package/dist/services/validators/anthropic.validator.d.ts +2 -2
- package/dist/services/validators/anthropic.validator.d.ts.map +1 -1
- package/dist/services/validators/anthropic.validator.js +14 -9
- package/dist/services/validators/anthropic.validator.js.map +1 -1
- package/dist/services/validators/autogen.validator.d.ts +2 -2
- package/dist/services/validators/autogen.validator.d.ts.map +1 -1
- package/dist/services/validators/autogen.validator.js +18 -15
- package/dist/services/validators/autogen.validator.js.map +1 -1
- package/dist/services/validators/crewai.validator.d.ts +2 -2
- package/dist/services/validators/crewai.validator.d.ts.map +1 -1
- package/dist/services/validators/crewai.validator.js +18 -17
- package/dist/services/validators/crewai.validator.js.map +1 -1
- package/dist/services/validators/cursor.validator.d.ts +2 -2
- package/dist/services/validators/cursor.validator.d.ts.map +1 -1
- package/dist/services/validators/cursor.validator.js +15 -11
- package/dist/services/validators/cursor.validator.js.map +1 -1
- package/dist/services/validators/langchain.validator.d.ts +2 -2
- package/dist/services/validators/langchain.validator.d.ts.map +1 -1
- package/dist/services/validators/langchain.validator.js +14 -11
- package/dist/services/validators/langchain.validator.js.map +1 -1
- package/dist/services/validators/langflow.validator.d.ts +2 -2
- package/dist/services/validators/langflow.validator.d.ts.map +1 -1
- package/dist/services/validators/langflow.validator.js +14 -9
- package/dist/services/validators/langflow.validator.js.map +1 -1
- package/dist/services/validators/langgraph.validator.d.ts +2 -2
- package/dist/services/validators/langgraph.validator.d.ts.map +1 -1
- package/dist/services/validators/langgraph.validator.js +23 -18
- package/dist/services/validators/langgraph.validator.js.map +1 -1
- package/dist/services/validators/llamaindex.validator.d.ts +2 -2
- package/dist/services/validators/llamaindex.validator.d.ts.map +1 -1
- package/dist/services/validators/llamaindex.validator.js +19 -16
- package/dist/services/validators/llamaindex.validator.js.map +1 -1
- package/dist/services/validators/openai.validator.d.ts +2 -2
- package/dist/services/validators/openai.validator.d.ts.map +1 -1
- package/dist/services/validators/openai.validator.js +20 -16
- package/dist/services/validators/openai.validator.js.map +1 -1
- package/dist/services/validators/vercel-ai.validator.d.ts +2 -2
- package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -1
- package/dist/services/validators/vercel-ai.validator.js +16 -15
- package/dist/services/validators/vercel-ai.validator.js.map +1 -1
- package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
- package/dist/spec/v0.2.3/README.md +4 -4
- package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +7 -7
- package/dist/spec/v0.2.4/CHANGELOG.md +403 -0
- package/dist/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.4/ossa-0.2.4-dev.schema.json +1696 -0
- package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +1819 -0
- package/dist/spec/v0.2.5/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.5/README.md +72 -0
- package/dist/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
- package/dist/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
- package/dist/spec/v0.2.5-RC/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.5-RC/README.md +72 -0
- package/dist/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
- package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
- package/dist/types/index.d.ts +164 -260
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +3 -65
- package/dist/types/index.js.map +1 -1
- package/docs/issue-19-completion-summary.md +648 -0
- package/docs/issue-19-validation.md +351 -0
- package/examples/adk-integration/code-review-workflow.yml +136 -0
- package/examples/adk-integration/customer-support.yml +263 -0
- package/examples/adk-integration/data-pipeline.yml +173 -0
- package/examples/advanced/patterns/compliance-context-production.json +53 -0
- package/examples/advanced/patterns/model-router.ts +274 -0
- package/examples/advanced/patterns/smart-model-routing.ts +248 -0
- package/examples/advanced/workflows/hybrid-model-strategy.yaml +232 -0
- package/examples/agent-manifests/critics/critic-agent.yaml +149 -0
- package/examples/agent-manifests/governors/governor-agent.yaml +128 -0
- package/examples/agent-manifests/integrators/integrator-agent.yaml +103 -0
- package/examples/agent-manifests/judges/judge-agent.yaml +153 -0
- package/examples/agent-manifests/monitors/monitor-agent.yaml +122 -0
- package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +247 -0
- package/examples/agent-manifests/sample-compliant-agent.yaml +147 -0
- package/examples/agent-manifests/workers/worker-agent.yaml +82 -0
- package/examples/anthropic/claude-assistant.ossa.json +45 -0
- package/examples/architecture/model-configuration/ollama-integration.ts +110 -0
- package/examples/autogen/multi-agent.ossa.json +37 -0
- package/examples/bridge-configurations.yaml +346 -0
- package/examples/bridges/Dockerfile.production +87 -0
- package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
- package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
- package/examples/bridges/__pycache__/test_aiflow_integration.cpython-313.pyc +0 -0
- package/examples/bridges/aiflow-bridge-enhanced.py +462 -0
- package/examples/bridges/aiflow-bridge-example.yml +310 -0
- package/examples/bridges/aiflow-phoenix-tracing.py +310 -0
- package/examples/bridges/aiflow-registration-api.openapi.yml +439 -0
- package/examples/bridges/k8s/configmap.yaml +121 -0
- package/examples/bridges/k8s/deployment-simple.yaml +34 -0
- package/examples/bridges/k8s/deployment.yaml +275 -0
- package/examples/bridges/k8s/hpa.yaml +126 -0
- package/examples/bridges/k8s/ingress.yaml +155 -0
- package/examples/bridges/kagent-bridge-example.yml +94 -0
- package/examples/bridges/load-tests/Dockerfile +28 -0
- package/examples/bridges/load-tests/k6-load-test.js +302 -0
- package/examples/bridges/load-tests/requirements.txt +20 -0
- package/examples/bridges/loadtest/k6-scenarios.js +270 -0
- package/examples/bridges/phase4/SLO-SLA.yaml +249 -0
- package/examples/bridges/phase4/chaos-tests.yaml +226 -0
- package/examples/bridges/requirements.txt +24 -0
- package/examples/bridges/test_aiflow_integration.py +341 -0
- package/examples/common_npm/agent-router.ossa.yaml +182 -0
- package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +60 -0
- package/examples/compliance-agent.yml +155 -0
- package/examples/crewai/research-team.ossa.json +36 -0
- package/examples/cursor/code-review-agent.ossa.json +47 -0
- package/examples/drupal/gitlab-ml-recommender.ossa.yaml +609 -0
- package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +68 -0
- package/examples/enterprise/agent.yml +452 -0
- package/examples/extensions/drupal-v1.yml +266 -0
- package/examples/extensions/kagent-v1.yml +167 -0
- package/examples/getting-started/hello-world-complete.ossa.yaml +266 -0
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +376 -0
- package/examples/kagent/README.md +31 -0
- package/examples/kagent/compliance-validator.ossa.yaml +111 -0
- package/examples/kagent/cost-optimizer.ossa.yaml +93 -0
- package/examples/kagent/documentation-agent.ossa.yaml +91 -0
- package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +269 -0
- package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +106 -0
- package/examples/kagent/k8s-troubleshooter.ossa.yaml +257 -0
- package/examples/kagent/security-scanner.ossa.yaml +140 -0
- package/examples/langchain/chain-agent.ossa.json +42 -0
- package/examples/langflow/workflow-agent.ossa.json +39 -0
- package/examples/langgraph/state-machine-agent.ossa.json +59 -0
- package/examples/llamaindex/rag-agent.ossa.json +41 -0
- package/examples/migration-guides/from-langchain-to-ossa.yaml +309 -0
- package/examples/minimal/agent.yml +152 -0
- package/examples/minimal/openapi.yaml +95 -0
- package/examples/openai/basic-agent.ossa.yaml +61 -0
- package/examples/openai/multi-tool-agent.ossa.json +165 -0
- package/examples/openai/swarm-agent.ossa.json +59 -0
- package/examples/openapi-extensions/README.md +87 -0
- package/examples/openapi-extensions/minimal-agent-api.openapi.yml +288 -0
- package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +633 -0
- package/examples/openapi-extensions/worker-agent-api.openapi.yml +533 -0
- package/examples/production/agent.yml +713 -0
- package/examples/production/document-analyzer-openai.yml +134 -0
- package/examples/quickstart/support-agent.ossa.yaml +59 -0
- package/examples/service-registry-usage.ts +423 -0
- package/examples/spec-examples/audit-agent.yml +147 -0
- package/examples/spec-examples/chat-agent.yml +189 -0
- package/examples/spec-examples/compliance-agent.yml +204 -0
- package/examples/spec-examples/data-processing-agent.yml +132 -0
- package/examples/spec-examples/development-agent.yml +138 -0
- package/examples/spec-examples/edge-agent.yml +101 -0
- package/examples/spec-examples/integration-agent.yml +129 -0
- package/examples/spec-examples/monitoring-agent.yml +130 -0
- package/examples/spec-examples/serverless-agent.yml +82 -0
- package/examples/spec-examples/workflow-agent.yml +223 -0
- package/examples/templates/ossa-compliance.yaml +56 -0
- package/examples/typescript/advanced/demo-registry.ts +168 -0
- package/examples/typescript/mcpb-agent-example.ts +358 -0
- package/examples/vercel/edge-agent.ossa.json +43 -0
- package/infrastructure/docker-compose.yml +33 -0
- package/infrastructure/gitlab-agent/rbac.yaml +126 -0
- package/infrastructure/gitlab-agent/values.yaml +150 -0
- package/infrastructure/k8s/monitoring/00-namespace.yaml +7 -0
- package/infrastructure/k8s/monitoring/01-prometheus.yaml +142 -0
- package/infrastructure/k8s/monitoring/02-grafana.yaml +63 -0
- package/infrastructure/k8s/monitoring/03-lightweight.yaml +121 -0
- package/infrastructure/k8s/monitoring/README.md +73 -0
- package/infrastructure/k8s/monitoring/deploy.sh +38 -0
- package/openapi/CHANGELOG.md +21 -0
- package/openapi/README.md +46 -0
- package/openapi/core/ossa-core-api.openapi.yaml +1503 -0
- package/openapi/core/ossa-registry-api.openapi.yaml +980 -0
- package/openapi/core/ossa-registry.openapi.yaml +855 -0
- package/openapi/core/unified-agent-gateway.openapi.yaml +833 -0
- package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +136 -0
- package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +192 -0
- package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +149 -0
- package/openapi/reference-implementations/critic-agent-api.openapi.yaml +151 -0
- package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +217 -0
- package/openapi/reference-implementations/drupal-agent-api.openapi.yaml +348 -0
- package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +149 -0
- package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +151 -0
- package/openapi/reference-implementations/governor-agent-api.openapi.yaml +193 -0
- package/openapi/reference-implementations/helm-generator.openapi.yaml +389 -0
- package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +165 -0
- package/openapi/reference-implementations/judge-agent-api.openapi.yaml +148 -0
- package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +167 -0
- package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +171 -0
- package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +171 -0
- package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +242 -0
- package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +187 -0
- package/openapi/reference-implementations/self-evolving-ecosystem.openapi.yaml +1530 -0
- package/openapi/reference-implementations/worker-agent-api.openapi.yaml +208 -0
- package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +193 -0
- package/package.json +120 -83
- package/release.config.js +79 -0
- package/scripts/bump-version.ts +57 -0
- package/scripts/enhanced-version-manager.ts +257 -0
- package/scripts/gen-types.ts +51 -0
- package/scripts/gen-zod.ts +51 -0
- package/scripts/lib/exec.ts +37 -0
- package/scripts/lib/file-ops.ts +58 -0
- package/scripts/lib/version.ts +83 -0
- package/scripts/process-doc-templates.ts +37 -0
- package/scripts/schemas/package.schema.ts +75 -0
- package/scripts/setup-branch-protection.sh +33 -0
- package/scripts/sync-version.ts +39 -0
- package/scripts/sync-versions.ts +488 -0
- package/scripts/validate-schema.ts +49 -0
- package/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
- package/spec/v0.1.9/ecosystem-compliance.json +235 -0
- package/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
- package/spec/v0.1.9/reasoning-compliance.json +654 -0
- package/spec/v0.2.2/kagent-enhancements.json +395 -0
- package/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
- package/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
- package/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
- package/spec/v0.2.3/CHANGELOG.md +176 -0
- package/spec/v0.2.3/README.md +154 -0
- package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
- package/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
- package/spec/v0.2.4/CHANGELOG.md +403 -0
- package/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.4/ossa-0.2.4-dev.schema.json +1696 -0
- package/spec/v0.2.4/ossa-0.2.4.schema.json +170 -68
- package/spec/v0.2.5/CHANGELOG.md +401 -0
- package/spec/v0.2.5/README.md +72 -0
- package/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
- package/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
- package/spec/v0.2.5-RC/CHANGELOG.md +401 -0
- package/spec/v0.2.5-RC/README.md +72 -0
- package/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
- package/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
- package/test-results.xml +1 -0
- package/website/.lighthouserc.ts +24 -0
- package/website/.prettierrc +10 -0
- package/website/Dockerfile +30 -0
- package/website/app/about/page.tsx +295 -0
- package/website/app/blog/[slug]/page.tsx +208 -0
- package/website/app/blog/page.tsx +249 -0
- package/website/app/design-guide/page.tsx +511 -0
- package/website/app/docs/[[...slug]]/page.tsx +847 -0
- package/website/app/docs/core-concepts/project-structure/page.tsx +349 -0
- package/website/app/ecosystem/page.tsx +375 -0
- package/website/app/examples/page.tsx +133 -0
- package/website/app/globals.scss +135 -0
- package/website/app/layout.tsx +106 -0
- package/website/app/license/page.tsx +183 -0
- package/website/app/not-found.tsx +18 -0
- package/website/app/page.tsx +474 -0
- package/website/app/playground/page.tsx +487 -0
- package/website/app/robots.ts +19 -0
- package/website/app/rss.xml/route.ts +74 -0
- package/website/app/schema/page.tsx +1001 -0
- package/website/app/sitemap.ts +56 -0
- package/website/app/specification/page.tsx +287 -0
- package/website/components/InstallCommand.tsx +96 -0
- package/website/components/Logo.tsx +97 -0
- package/website/components/StructuredData.tsx +65 -0
- package/website/components/docs/DocsSearch.tsx +104 -0
- package/website/components/docs/DocsSidebar.tsx +155 -0
- package/website/components/docs/MarkdownContent.tsx +401 -0
- package/website/components/docs/VersionSelector.tsx +105 -0
- package/website/components/examples/ExamplesViewer.tsx +293 -0
- package/website/components/layout/Footer.tsx +116 -0
- package/website/components/layout/Header.tsx +168 -0
- package/website/components/schema/SchemaComponentsAccordion.tsx +84 -0
- package/website/components/schema/SchemaExplorer.tsx +213 -0
- package/website/content/blog/OpenAPI-AI-Agents-Standard.md +285 -0
- package/website/content/blog/Why-Formal-Standards-Matter-Now.md +198 -0
- package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +286 -0
- package/website/content/blog/introducing-ossa-framework.md +328 -0
- package/website/content/blog/ossa-production-results.md +279 -0
- package/website/content/blog/welcome-to-ossa.md +43 -0
- package/website/content/blog/why-ai-agents-need-open-standard.md +98 -0
- package/website/content/docs/00-HOME.md +153 -0
- package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
- package/website/content/docs/Examples.md +71 -0
- package/website/content/docs/OpenAPI-Extensions.md +934 -0
- package/website/content/docs/adapters/openai-adapter.md +693 -0
- package/website/content/docs/architecture/execution-flow.md +335 -0
- package/website/content/docs/architecture/multi-agent-systems.md +737 -0
- package/website/content/docs/architecture/overview.md +121 -0
- package/website/content/docs/architecture/stack-integration.md +461 -0
- package/website/content/docs/changelog.md +246 -0
- package/website/content/docs/contributing.md +599 -0
- package/website/content/docs/core-concepts/Project-Structure.md +348 -0
- package/website/content/docs/ecosystem/framework-support.md +819 -0
- package/website/content/docs/ecosystem/overview.md +366 -0
- package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +107 -0
- package/website/content/docs/examples/Migration-Guides.md +214 -0
- package/website/content/docs/for-audiences/Architects.md +224 -0
- package/website/content/docs/for-audiences/Developers.md +220 -0
- package/website/content/docs/for-audiences/Enterprises.md +256 -0
- package/website/content/docs/for-audiences/Students-Researchers.md +122 -0
- package/website/content/docs/getting-started/5-Minute-Overview.md +85 -0
- package/website/content/docs/getting-started/First-Agent.md +196 -0
- package/website/content/docs/getting-started/Hello-World.md +184 -0
- package/website/content/docs/getting-started/Installation.md +155 -0
- package/website/content/docs/getting-started/index.md +92 -0
- package/website/content/docs/getting-started/running-agents.md +309 -0
- package/website/content/docs/getting-started.md +91 -0
- package/website/content/docs/integrations/aiflow.md +104 -0
- package/website/content/docs/integrations/drupal.md +105 -0
- package/website/content/docs/migration-guides/00-INDEX.md +76 -0
- package/website/content/docs/migration-guides/README.md +133 -0
- package/website/content/docs/migration-guides/agent-schema-comparison.md +232 -0
- package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +1750 -0
- package/website/content/docs/migration-guides/crewai-to-ossa.md +274 -0
- package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +2017 -0
- package/website/content/docs/migration-guides/general-agent-schema.yml +247 -0
- package/website/content/docs/migration-guides/index.md +133 -0
- package/website/content/docs/migration-guides/langchain-to-ossa.md +1714 -0
- package/website/content/docs/migration-guides/langflow-to-ossa.md +2075 -0
- package/website/content/docs/migration-guides/migration-manifest.json +64 -0
- package/website/content/docs/migration-guides/openai-to-ossa.md +1202 -0
- package/website/content/docs/openapi-extensions/examples.md +550 -0
- package/website/content/docs/openapi-extensions/index.md +551 -0
- package/website/content/docs/openapi-extensions/operation-extensions.md +457 -0
- package/website/content/docs/openapi-extensions/root-extensions.md +410 -0
- package/website/content/docs/ossa-compliant-badge.md +251 -0
- package/website/content/docs/pre-release/index.md +175 -0
- package/website/content/docs/quick-reference.md +17 -0
- package/website/content/docs/readme.md +35 -0
- package/website/content/docs/schema-reference/agent-spec.md +406 -0
- package/website/content/docs/schema-reference/autonomy.md +568 -0
- package/website/content/docs/schema-reference/constraints.md +543 -0
- package/website/content/docs/schema-reference/index.md +176 -0
- package/website/content/docs/schema-reference/llm-config.md +445 -0
- package/website/content/docs/schema-reference/observability.md +654 -0
- package/website/content/docs/schema-reference/ossa-manifest.md +309 -0
- package/website/content/docs/schema-reference/taxonomy.md +509 -0
- package/website/content/docs/schema-reference/tools.md +628 -0
- package/website/content/docs/templates/blog-post.md +43 -0
- package/website/content/docs/use-cases/00-index.md +395 -0
- package/website/content/docs/use-cases/cicd-code-review.md +1236 -0
- package/website/content/docs/use-cases/customer-support.md +1234 -0
- package/website/content/docs/use-cases/enterprise-compliance.md +1208 -0
- package/website/content/docs/use-cases/research-multi-agent.md +1161 -0
- package/website/content/docs/versioning.md +288 -0
- package/website/lib/version.ts +35 -0
- package/website/lib/versions.json +18 -17
- package/website/next.config.ts +18 -0
- package/website/nginx.conf +32 -0
- package/website/package-lock.json +9679 -0
- package/website/package.json +59 -0
- package/website/postcss.config.mjs +9 -0
- package/website/scripts/fetch-versions.js +166 -0
- package/website/scripts/generate-examples-index.js +163 -0
- package/website/scripts/merge-docs-to-wiki.ts +207 -0
- package/website/scripts/sync-version.js +72 -0
- package/website/scripts/sync-wiki.ts +322 -0
- package/website/scripts/upload-wiki.ts +199 -0
- package/website/styles/_variables.scss +36 -0
- package/website/tailwind.config.ts +136 -0
- package/.buildkit/agent-first-policy.sh +0 -65
- package/.buildkit/branching-workflow.json +0 -41
- package/.buildkit/hooks.yaml +0 -23
- package/.buildkit/install-buildkit-setup.cjs +0 -483
- package/.cursor/plans/ossa-comprehensive-enhancement-issue-audit-plan.plan.md +0 -735
- package/.cursor/plans/ossa-enterprise-transformation-plan-0ccaf09b.plan.md +0 -373
- package/.cursor/plans/ossa-milestone-organization-and-v0-2-4-release-6dafa4ec.plan.md +0 -214
- package/.cursor/rules/problems.json +0 -483
- package/.cursor/settings.json +0 -29
- package/.cursor/worktrees.json +0 -95
- package/.env.local +0 -31
- package/.github/ISSUE_TEMPLATE/README.md +0 -33
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -61
- package/.github/ISSUE_TEMPLATE/config.yml +0 -12
- package/.github/ISSUE_TEMPLATE/feature_request.md +0 -75
- package/.github/wiki_templates/home.md +0 -39
- package/.gitignore.bak +0 -489
- package/.gitlab-ci-trigger +0 -1
- package/.husky/pre-commit +0 -31
- package/.lintstagedrc.json +0 -16
- package/.vscode/extensions.json +0 -6
- package/.vscode/settings.json +0 -3
- package/AUDIT_FIXES.md +0 -139
- package/AUDIT_REPORT.md +0 -308
- package/BUILDKIT_INTEGRATION.md +0 -146
- package/Dockerfile +0 -35
- package/dist/adk/adapters/index.d.ts +0 -64
- package/dist/adk/adapters/index.d.ts.map +0 -1
- package/dist/adk/adapters/index.js +0 -257
- package/dist/adk/adapters/index.js.map +0 -1
- package/dist/adk/agents/custom-agent.d.ts +0 -55
- package/dist/adk/agents/custom-agent.d.ts.map +0 -1
- package/dist/adk/agents/custom-agent.js +0 -167
- package/dist/adk/agents/custom-agent.js.map +0 -1
- package/dist/adk/agents/index.d.ts +0 -64
- package/dist/adk/agents/index.d.ts.map +0 -1
- package/dist/adk/agents/index.js +0 -125
- package/dist/adk/agents/index.js.map +0 -1
- package/dist/adk/agents/llm-agent.d.ts +0 -27
- package/dist/adk/agents/llm-agent.d.ts.map +0 -1
- package/dist/adk/agents/llm-agent.js +0 -63
- package/dist/adk/agents/llm-agent.js.map +0 -1
- package/dist/adk/agents/workflow-agent.d.ts +0 -42
- package/dist/adk/agents/workflow-agent.d.ts.map +0 -1
- package/dist/adk/agents/workflow-agent.js +0 -144
- package/dist/adk/agents/workflow-agent.js.map +0 -1
- package/dist/adk/index.d.ts +0 -10
- package/dist/adk/index.d.ts.map +0 -1
- package/dist/adk/index.js +0 -10
- package/dist/adk/index.js.map +0 -1
- package/dist/adk/orchestration/index.d.ts +0 -63
- package/dist/adk/orchestration/index.d.ts.map +0 -1
- package/dist/adk/orchestration/index.js +0 -264
- package/dist/adk/orchestration/index.js.map +0 -1
- package/dist/adk/state/index.d.ts +0 -73
- package/dist/adk/state/index.d.ts.map +0 -1
- package/dist/adk/state/index.js +0 -177
- package/dist/adk/state/index.js.map +0 -1
- package/dist/adk/tools/index.d.ts +0 -65
- package/dist/adk/tools/index.d.ts.map +0 -1
- package/dist/adk/tools/index.js +0 -252
- package/dist/adk/tools/index.js.map +0 -1
- package/dist/cli/agent-deployment.d.ts +0 -34
- package/dist/cli/agent-deployment.d.ts.map +0 -1
- package/dist/cli/agent-deployment.js +0 -396
- package/dist/cli/agent-deployment.js.map +0 -1
- package/dist/cli/commands/discover.command.d.ts +0 -7
- package/dist/cli/commands/discover.command.d.ts.map +0 -1
- package/dist/cli/commands/discover.command.js +0 -80
- package/dist/cli/commands/discover.command.js.map +0 -1
- package/dist/cli/commands/export.command.d.ts +0 -7
- package/dist/cli/commands/export.command.d.ts.map +0 -1
- package/dist/cli/commands/export.command.js +0 -56
- package/dist/cli/commands/export.command.js.map +0 -1
- package/dist/cli/commands/generate.command.d.ts +0 -7
- package/dist/cli/commands/generate.command.d.ts.map +0 -1
- package/dist/cli/commands/generate.command.js +0 -66
- package/dist/cli/commands/generate.command.js.map +0 -1
- package/dist/cli/commands/gitlab-agent.command.d.ts +0 -8
- package/dist/cli/commands/gitlab-agent.command.d.ts.map +0 -1
- package/dist/cli/commands/gitlab-agent.command.js +0 -201
- package/dist/cli/commands/gitlab-agent.command.js.map +0 -1
- package/dist/cli/commands/import.command.d.ts +0 -7
- package/dist/cli/commands/import.command.d.ts.map +0 -1
- package/dist/cli/commands/import.command.js +0 -36
- package/dist/cli/commands/import.command.js.map +0 -1
- package/dist/cli/commands/init.command.d.ts +0 -7
- package/dist/cli/commands/init.command.d.ts.map +0 -1
- package/dist/cli/commands/init.command.js +0 -146
- package/dist/cli/commands/init.command.js.map +0 -1
- package/dist/cli/commands/migrate.command.d.ts +0 -7
- package/dist/cli/commands/migrate.command.d.ts.map +0 -1
- package/dist/cli/commands/migrate.command.js +0 -110
- package/dist/cli/commands/migrate.command.js.map +0 -1
- package/dist/cli/commands/ossa.d.ts +0 -9
- package/dist/cli/commands/ossa.d.ts.map +0 -1
- package/dist/cli/commands/ossa.js +0 -234
- package/dist/cli/commands/ossa.js.map +0 -1
- package/dist/cli/commands/run.command.d.ts +0 -7
- package/dist/cli/commands/run.command.d.ts.map +0 -1
- package/dist/cli/commands/run.command.js +0 -114
- package/dist/cli/commands/run.command.js.map +0 -1
- package/dist/cli/commands/schema.command.d.ts +0 -7
- package/dist/cli/commands/schema.command.d.ts.map +0 -1
- package/dist/cli/commands/schema.command.js +0 -72
- package/dist/cli/commands/schema.command.js.map +0 -1
- package/dist/cli/commands/validate.command.d.ts +0 -7
- package/dist/cli/commands/validate.command.d.ts.map +0 -1
- package/dist/cli/commands/validate.command.js +0 -125
- package/dist/cli/commands/validate.command.js.map +0 -1
- package/dist/cli/commands/worktree.d.ts +0 -7
- package/dist/cli/commands/worktree.d.ts.map +0 -1
- package/dist/cli/commands/worktree.js +0 -509
- package/dist/cli/commands/worktree.js.map +0 -1
- package/dist/cli/index.d.ts +0 -7
- package/dist/cli/index.d.ts.map +0 -1
- package/dist/cli/index.js +0 -50
- package/dist/cli/index.js.map +0 -1
- package/dist/cli/ossa-cli.d.ts +0 -52
- package/dist/cli/ossa-cli.d.ts.map +0 -1
- package/dist/cli/ossa-cli.js +0 -1061
- package/dist/cli/ossa-cli.js.map +0 -1
- package/dist/core/index.d.ts +0 -31
- package/dist/core/index.d.ts.map +0 -1
- package/dist/core/index.js +0 -37
- package/dist/core/index.js.map +0 -1
- package/dist/core/mcp-server-implementation.d.ts +0 -39
- package/dist/core/mcp-server-implementation.d.ts.map +0 -1
- package/dist/core/mcp-server-implementation.js +0 -1262
- package/dist/core/mcp-server-implementation.js.map +0 -1
- package/dist/core/orchestrator/index.d.ts +0 -156
- package/dist/core/orchestrator/index.d.ts.map +0 -1
- package/dist/core/orchestrator/index.js +0 -446
- package/dist/core/orchestrator/index.js.map +0 -1
- package/dist/core/orchestrator/ossa-orchestrator.d.ts +0 -106
- package/dist/core/orchestrator/ossa-orchestrator.d.ts.map +0 -1
- package/dist/core/orchestrator/ossa-orchestrator.js +0 -396
- package/dist/core/orchestrator/ossa-orchestrator.js.map +0 -1
- package/dist/protocols/acap.d.ts +0 -61
- package/dist/protocols/acap.d.ts.map +0 -1
- package/dist/protocols/acap.js +0 -92
- package/dist/protocols/acap.js.map +0 -1
- package/dist/protocols/index.d.ts +0 -8
- package/dist/protocols/index.d.ts.map +0 -1
- package/dist/protocols/index.js +0 -8
- package/dist/protocols/index.js.map +0 -1
- package/dist/protocols/rasp.d.ts +0 -58
- package/dist/protocols/rasp.d.ts.map +0 -1
- package/dist/protocols/rasp.js +0 -212
- package/dist/protocols/rasp.js.map +0 -1
- package/dist/server/simple-app.d.ts +0 -18
- package/dist/server/simple-app.d.ts.map +0 -1
- package/dist/server/simple-app.js +0 -155
- package/dist/server/simple-app.js.map +0 -1
- package/dist/server/types/agent.d.ts +0 -498
- package/dist/server/types/agent.d.ts.map +0 -1
- package/dist/server/types/agent.js +0 -37
- package/dist/server/types/agent.js.map +0 -1
- package/dist/server/types/server.d.ts +0 -370
- package/dist/server/types/server.d.ts.map +0 -1
- package/dist/server/types/server.js +0 -68
- package/dist/server/types/server.js.map +0 -1
- package/dist/services/discovery.service.d.ts +0 -78
- package/dist/services/discovery.service.d.ts.map +0 -1
- package/dist/services/discovery.service.js +0 -212
- package/dist/services/discovery.service.js.map +0 -1
- package/dist/services/orchestration/worktree-orchestrator.d.ts +0 -146
- package/dist/services/orchestration/worktree-orchestrator.d.ts.map +0 -1
- package/dist/services/orchestration/worktree-orchestrator.js +0 -591
- package/dist/services/orchestration/worktree-orchestrator.js.map +0 -1
- package/dist/services/worktree/branching-strategy.d.ts +0 -17
- package/dist/services/worktree/branching-strategy.d.ts.map +0 -1
- package/dist/services/worktree/branching-strategy.js +0 -66
- package/dist/services/worktree/branching-strategy.js.map +0 -1
- package/dist/services/worktree/git-worktree-manager.d.ts +0 -32
- package/dist/services/worktree/git-worktree-manager.d.ts.map +0 -1
- package/dist/services/worktree/git-worktree-manager.js +0 -61
- package/dist/services/worktree/git-worktree-manager.js.map +0 -1
- package/dist/spec/v0.2.4-dev/README.md +0 -61
- package/dist/spec/v0.2.4-dev/RELEASE-PROCESS.md +0 -130
- package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +0 -599
- package/dist/spec/v0.2.4-dev/openapi/CHANGELOG-0.2.4.md +0 -177
- package/dist/spec/v0.2.4-dev/openapi/README-0.2.4.md +0 -51
- package/dist/spec/v0.2.4-dev/openapi/VERIFICATION-0.2.4.md +0 -147
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +0 -1717
- package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +0 -1732
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
- package/dist/specification/validator.d.ts +0 -82
- package/dist/specification/validator.d.ts.map +0 -1
- package/dist/specification/validator.js +0 -562
- package/dist/specification/validator.js.map +0 -1
- package/dist/types/acdl-api.d.ts +0 -335
- package/dist/types/acdl-api.d.ts.map +0 -1
- package/dist/types/acdl-api.js +0 -6
- package/dist/types/acdl-api.js.map +0 -1
- package/dist/types/agents/index.d.ts +0 -53
- package/dist/types/agents/index.d.ts.map +0 -1
- package/dist/types/agents/index.js +0 -5
- package/dist/types/agents/index.js.map +0 -1
- package/dist/types/api.d.ts +0 -225
- package/dist/types/api.d.ts.map +0 -1
- package/dist/types/api.js +0 -6
- package/dist/types/api.js.map +0 -1
- package/dist/types/architecture/index.d.ts +0 -530
- package/dist/types/architecture/index.d.ts.map +0 -1
- package/dist/types/architecture/index.js +0 -258
- package/dist/types/architecture/index.js.map +0 -1
- package/dist/types/policies/index.d.ts +0 -35
- package/dist/types/policies/index.d.ts.map +0 -1
- package/dist/types/policies/index.js +0 -5
- package/dist/types/policies/index.js.map +0 -1
- package/dist/types/workflows/index.d.ts +0 -40
- package/dist/types/workflows/index.d.ts.map +0 -1
- package/dist/types/workflows/index.js +0 -5
- package/dist/types/workflows/index.js.map +0 -1
- package/dist/utils/version-resolver.d.ts +0 -28
- package/dist/utils/version-resolver.d.ts.map +0 -1
- package/dist/utils/version-resolver.js +0 -110
- package/dist/utils/version-resolver.js.map +0 -1
- package/docker-compose.yml +0 -160
- package/public/api-docs.html +0 -206
- package/public/assets/favicon.svg +0 -8
- package/public/assets/script.js +0 -279
- package/public/assets/style.css +0 -632
- package/public/index.html +0 -307
- package/public/redocly-config.yaml +0 -80
- package/public/src/api/acdl-specification.yml +0 -531
- package/public/src/api/clean-architecture.openapi.yml +0 -1435
- package/public/src/api/context7-mcp.openapi.yml +0 -313
- package/public/src/api/magic-mcp.openapi.yml +0 -647
- package/public/src/api/mcp-infrastructure.openapi.yml +0 -904
- package/public/src/api/orchestration.openapi.yml +0 -444
- package/public/src/api/ossa-complete.openapi.yml +0 -2250
- package/public/src/api/project-discovery.openapi.yml +0 -1293
- package/public/src/api/rebuild-audit.openapi.yml +0 -800
- package/public/src/api/specification.openapi.yml +0 -498
- package/public/src/api/voice-agent-specification.yml +0 -640
- package/public/src/api/web-eval-mcp.openapi.yml +0 -426
- package/pyrightconfig.json +0 -13
- package/redocly.yaml +0 -56
- package/specs/README.md +0 -31
- package/specs/acdl-specification.yml +0 -531
- package/specs/clean-architecture.openapi.yml +0 -1435
- package/specs/context7-mcp.openapi.yml +0 -313
- package/specs/magic-mcp.openapi.yml +0 -647
- package/specs/mcp-infrastructure.openapi.yml +0 -904
- package/specs/orchestration.openapi.yml +0 -444
- package/specs/ossa-complete.openapi.yml +0 -2250
- package/specs/project-discovery.openapi.yml +0 -1293
- package/specs/rebuild-audit.openapi.yml +0 -800
- package/specs/specification.openapi.yml +0 -498
- package/specs/test-api.openapi.yml +0 -20
- package/specs/voice-agent-specification.yml +0 -640
- package/specs/web-eval-mcp.openapi.yml +0 -426
- package/src/adk/adapters/index.ts +0 -310
- package/src/adk/agents/custom-agent.ts +0 -206
- package/src/adk/agents/index.ts +0 -158
- package/src/adk/agents/llm-agent.ts +0 -76
- package/src/adk/agents/workflow-agent.ts +0 -191
- package/src/adk/index.ts +0 -10
- package/src/adk/orchestration/index.ts +0 -352
- package/src/adk/state/index.ts +0 -217
- package/src/adk/tools/index.ts +0 -291
- package/src/api/acdl-specification.yml +0 -531
- package/src/api/agent-manifest.schema.json +0 -859
- package/src/api/agent-worktree-schema.json +0 -320
- package/src/api/clean-architecture.openapi.yml +0 -1435
- package/src/api/context7-mcp.openapi.yml +0 -313
- package/src/api/magic-mcp.openapi.yml +0 -647
- package/src/api/mcp-infrastructure.openapi.yml +0 -904
- package/src/api/openapi.redoc.config.json +0 -6
- package/src/api/orchestration.openapi.yml +0 -444
- package/src/api/ossa-complete.openapi.yml +0 -2250
- package/src/api/project-discovery.openapi.yml +0 -1293
- package/src/api/rebuild-audit.openapi.yml +0 -800
- package/src/api/specification.openapi.yml +0 -498
- package/src/api/test-api.openapi.yml +0 -20
- package/src/api/voice-agent-specification.yml +0 -640
- package/src/api/web-eval-mcp.openapi.yml +0 -426
- package/src/api/workflow.schema.json +0 -524
- package/src/cli/agent-deployment.ts +0 -452
- package/src/cli/commands/ossa.ts +0 -272
- package/src/cli/commands/worktree.ts +0 -603
- package/src/cli/ossa-cli.ts +0 -1176
- package/src/core/index.ts +0 -42
- package/src/core/mcp-server-implementation.ts +0 -1409
- package/src/core/orchestrator/index.ts +0 -611
- package/src/core/orchestrator/ossa-orchestrator.ts +0 -504
- package/src/mcp/simple-server.ts +0 -322
- package/src/protocols/acap.ts +0 -146
- package/src/protocols/index.ts +0 -8
- package/src/protocols/rasp.ts +0 -263
- package/src/server/app.ts +0 -472
- package/src/server/middleware/agentAccess.ts +0 -10
- package/src/server/middleware/asyncHandler.ts +0 -10
- package/src/server/middleware/auth.ts +0 -10
- package/src/server/middleware/errorHandler.ts +0 -9
- package/src/server/middleware/logging.ts +0 -10
- package/src/server/middleware/metrics.ts +0 -10
- package/src/server/middleware/validation.ts +0 -10
- package/src/server/routes/agents.ts +0 -632
- package/src/server/routes/monitoring.ts +0 -13
- package/src/server/routes/orchestration.ts +0 -13
- package/src/server/routes/specifications.ts +0 -13
- package/src/server/services/AgentService.ts +0 -46
- package/src/server/services/ExecutionService.ts +0 -51
- package/src/server/services/SpecificationService.ts +0 -22
- package/src/server/services/WebhookService.ts +0 -24
- package/src/server/simple-app.ts +0 -174
- package/src/server/types/agent.ts +0 -612
- package/src/server/types/server.ts +0 -465
- package/src/services/orchestration/worktree-orchestrator.ts +0 -779
- package/src/services/worktree/branching-strategy.ts +0 -76
- package/src/services/worktree/git-worktree-manager.ts +0 -86
- package/website/.next/BUILD_ID +0 -1
- package/website/.next/app-build-manifest.json +0 -151
- package/website/.next/app-path-routes-manifest.json +0 -19
- package/website/.next/build-manifest.json +0 -33
- package/website/.next/cache/.previewinfo +0 -1
- package/website/.next/cache/.rscinfo +0 -1
- package/website/.next/cache/.tsbuildinfo +0 -1
- package/website/.next/cache/fetch-cache/920aec34c288eefa97c5efba3baf95a846a0beb0c48a5064980a2c24b83e941c +0 -1
- package/website/.next/cache/fetch-cache/c2ad7a72b43463a0daaa85ca926a8af38defd17ecb64f1fdd2dd4fe2293e8b26 +0 -1
- package/website/.next/cache/fetch-cache/d10eb963d5980c8a50ee9ed24472339ee6da054ead33e00676e61e8b8e62cc83 +0 -1
- package/website/.next/cache/fetch-cache/f243d84640477f3205b74a85013018acd63b692144675630a74d1af8a3e9eab5 +0 -1
- package/website/.next/cache/webpack/client-production/0.pack +0 -0
- package/website/.next/cache/webpack/client-production/1.pack +0 -0
- package/website/.next/cache/webpack/client-production/10.pack +0 -0
- package/website/.next/cache/webpack/client-production/11.pack +0 -0
- package/website/.next/cache/webpack/client-production/12.pack +0 -0
- package/website/.next/cache/webpack/client-production/13.pack +0 -0
- package/website/.next/cache/webpack/client-production/14.pack +0 -0
- package/website/.next/cache/webpack/client-production/15.pack +0 -0
- package/website/.next/cache/webpack/client-production/16.pack +0 -0
- package/website/.next/cache/webpack/client-production/17.pack +0 -0
- package/website/.next/cache/webpack/client-production/18.pack +0 -0
- package/website/.next/cache/webpack/client-production/2.pack +0 -0
- package/website/.next/cache/webpack/client-production/3.pack +0 -0
- package/website/.next/cache/webpack/client-production/4.pack +0 -0
- package/website/.next/cache/webpack/client-production/5.pack +0 -0
- package/website/.next/cache/webpack/client-production/6.pack +0 -0
- package/website/.next/cache/webpack/client-production/7.pack +0 -0
- package/website/.next/cache/webpack/client-production/8.pack +0 -0
- package/website/.next/cache/webpack/client-production/9.pack +0 -0
- package/website/.next/cache/webpack/client-production/index.pack +0 -0
- package/website/.next/cache/webpack/client-production/index.pack.old +0 -0
- package/website/.next/cache/webpack/edge-server-production/0.pack +0 -0
- package/website/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/website/.next/cache/webpack/server-production/0.pack +0 -0
- package/website/.next/cache/webpack/server-production/1.pack +0 -0
- package/website/.next/cache/webpack/server-production/10.pack +0 -0
- package/website/.next/cache/webpack/server-production/11.pack +0 -0
- package/website/.next/cache/webpack/server-production/12.pack +0 -0
- package/website/.next/cache/webpack/server-production/2.pack +0 -0
- package/website/.next/cache/webpack/server-production/3.pack +0 -0
- package/website/.next/cache/webpack/server-production/4.pack +0 -0
- package/website/.next/cache/webpack/server-production/5.pack +0 -0
- package/website/.next/cache/webpack/server-production/6.pack +0 -0
- package/website/.next/cache/webpack/server-production/7.pack +0 -0
- package/website/.next/cache/webpack/server-production/8.pack +0 -0
- package/website/.next/cache/webpack/server-production/9.pack +0 -0
- package/website/.next/cache/webpack/server-production/index.pack +0 -0
- package/website/.next/cache/webpack/server-production/index.pack.old +0 -0
- package/website/.next/diagnostics/build-diagnostics.json +0 -6
- package/website/.next/diagnostics/framework.json +0 -1
- package/website/.next/export-detail.json +0 -5
- package/website/.next/export-marker.json +0 -6
- package/website/.next/images-manifest.json +0 -57
- package/website/.next/next-minimal-server.js.nft.json +0 -1
- package/website/.next/next-server.js.nft.json +0 -1
- package/website/.next/package.json +0 -1
- package/website/.next/prerender-manifest.json +0 -2143
- package/website/.next/react-loadable-manifest.json +0 -1898
- package/website/.next/required-server-files.json +0 -320
- package/website/.next/routes-manifest.json +0 -161
- package/website/.next/server/app/_not-found/page.js +0 -2
- package/website/.next/server/app/_not-found/page.js.nft.json +0 -1
- package/website/.next/server/app/_not-found/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/_not-found.html +0 -1
- package/website/.next/server/app/_not-found.meta +0 -8
- package/website/.next/server/app/_not-found.rsc +0 -23
- package/website/.next/server/app/about/page.js +0 -2
- package/website/.next/server/app/about/page.js.nft.json +0 -1
- package/website/.next/server/app/about/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/about.html +0 -1
- package/website/.next/server/app/about.meta +0 -7
- package/website/.next/server/app/about.rsc +0 -40
- package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.html +0 -217
- package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.meta +0 -7
- package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.rsc +0 -308
- package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.html +0 -180
- package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.meta +0 -7
- package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.rsc +0 -232
- package/website/.next/server/app/blog/[slug]/page.js +0 -2
- package/website/.next/server/app/blog/[slug]/page.js.nft.json +0 -1
- package/website/.next/server/app/blog/[slug]/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/blog/introducing-ossa-framework.html +0 -263
- package/website/.next/server/app/blog/introducing-ossa-framework.meta +0 -7
- package/website/.next/server/app/blog/introducing-ossa-framework.rsc +0 -351
- package/website/.next/server/app/blog/ossa-production-results.html +0 -198
- package/website/.next/server/app/blog/ossa-production-results.meta +0 -7
- package/website/.next/server/app/blog/ossa-production-results.rsc +0 -302
- package/website/.next/server/app/blog/page.js +0 -2
- package/website/.next/server/app/blog/page.js.nft.json +0 -1
- package/website/.next/server/app/blog/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/blog/welcome-to-ossa.html +0 -22
- package/website/.next/server/app/blog/welcome-to-ossa.meta +0 -7
- package/website/.next/server/app/blog/welcome-to-ossa.rsc +0 -31
- package/website/.next/server/app/blog/why-ai-agents-need-open-standard.html +0 -63
- package/website/.next/server/app/blog/why-ai-agents-need-open-standard.meta +0 -7
- package/website/.next/server/app/blog/why-ai-agents-need-open-standard.rsc +0 -121
- package/website/.next/server/app/blog.html +0 -1
- package/website/.next/server/app/blog.meta +0 -7
- package/website/.next/server/app/blog.rsc +0 -35
- package/website/.next/server/app/design-guide/page.js +0 -12
- package/website/.next/server/app/design-guide/page.js.nft.json +0 -1
- package/website/.next/server/app/design-guide/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/design-guide.html +0 -11
- package/website/.next/server/app/design-guide.meta +0 -7
- package/website/.next/server/app/design-guide.rsc +0 -41
- package/website/.next/server/app/docs.html +0 -1
- package/website/.next/server/app/docs.meta +0 -7
- package/website/.next/server/app/docs.rsc +0 -42
- package/website/.next/server/app/ecosystem/page.js +0 -2
- package/website/.next/server/app/ecosystem/page.js.nft.json +0 -1
- package/website/.next/server/app/ecosystem/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/ecosystem.html +0 -1
- package/website/.next/server/app/ecosystem.meta +0 -7
- package/website/.next/server/app/ecosystem.rsc +0 -40
- package/website/.next/server/app/examples.html +0 -1
- package/website/.next/server/app/examples.meta +0 -7
- package/website/.next/server/app/examples.rsc +0 -14559
- package/website/.next/server/app/index.html +0 -3
- package/website/.next/server/app/index.meta +0 -7
- package/website/.next/server/app/index.rsc +0 -40
- package/website/.next/server/app/license/page.js +0 -2
- package/website/.next/server/app/license/page.js.nft.json +0 -1
- package/website/.next/server/app/license/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/license.html +0 -191
- package/website/.next/server/app/license.meta +0 -7
- package/website/.next/server/app/license.rsc +0 -222
- package/website/.next/server/app/page.js +0 -4
- package/website/.next/server/app/page.js.nft.json +0 -1
- package/website/.next/server/app/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/playground/page.js +0 -111
- package/website/.next/server/app/playground/page.js.nft.json +0 -1
- package/website/.next/server/app/playground/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/playground.html +0 -1
- package/website/.next/server/app/playground.meta +0 -7
- package/website/.next/server/app/playground.rsc +0 -30
- package/website/.next/server/app/robots.txt/route.js +0 -1
- package/website/.next/server/app/robots.txt/route.js.nft.json +0 -1
- package/website/.next/server/app/robots.txt/route_client-reference-manifest.js +0 -1
- package/website/.next/server/app/robots.txt.body +0 -6
- package/website/.next/server/app/robots.txt.meta +0 -1
- package/website/.next/server/app/rss.xml/route.js +0 -18
- package/website/.next/server/app/rss.xml/route.js.nft.json +0 -1
- package/website/.next/server/app/rss.xml/route_client-reference-manifest.js +0 -1
- package/website/.next/server/app/rss.xml.body +0 -11
- package/website/.next/server/app/rss.xml.meta +0 -1
- package/website/.next/server/app/schema/page.js +0 -76
- package/website/.next/server/app/schema/page.js.nft.json +0 -1
- package/website/.next/server/app/schema/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/schema.html +0 -1
- package/website/.next/server/app/schema.meta +0 -7
- package/website/.next/server/app/schema.rsc +0 -26
- package/website/.next/server/app/sitemap.xml/route.js +0 -1
- package/website/.next/server/app/sitemap.xml/route.js.nft.json +0 -1
- package/website/.next/server/app/sitemap.xml/route_client-reference-manifest.js +0 -1
- package/website/.next/server/app/sitemap.xml.body +0 -39
- package/website/.next/server/app/sitemap.xml.meta +0 -1
- package/website/.next/server/app/specification/page.js +0 -10
- package/website/.next/server/app/specification/page.js.nft.json +0 -1
- package/website/.next/server/app/specification/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/specification.html +0 -9
- package/website/.next/server/app/specification.meta +0 -7
- package/website/.next/server/app/specification.rsc +0 -32
- package/website/.next/server/app-paths-manifest.json +0 -19
- package/website/.next/server/chunks/18.js +0 -1
- package/website/.next/server/chunks/227.js +0 -9
- package/website/.next/server/chunks/339.js +0 -25
- package/website/.next/server/chunks/49.js +0 -1
- package/website/.next/server/chunks/51.js +0 -1
- package/website/.next/server/chunks/57.js +0 -1
- package/website/.next/server/chunks/579.js +0 -16
- package/website/.next/server/chunks/611.js +0 -6
- package/website/.next/server/chunks/873.js +0 -22
- package/website/.next/server/chunks/900.js +0 -1
- package/website/.next/server/chunks/97.js +0 -1
- package/website/.next/server/functions-config-manifest.json +0 -4
- package/website/.next/server/interception-route-rewrite-manifest.js +0 -1
- package/website/.next/server/middleware-build-manifest.js +0 -1
- package/website/.next/server/middleware-manifest.json +0 -6
- package/website/.next/server/middleware-react-loadable-manifest.js +0 -1
- package/website/.next/server/next-font-manifest.js +0 -1
- package/website/.next/server/next-font-manifest.json +0 -1
- package/website/.next/server/pages/404.html +0 -1
- package/website/.next/server/pages/500.html +0 -1
- package/website/.next/server/pages/_app.js +0 -1
- package/website/.next/server/pages/_app.js.nft.json +0 -1
- package/website/.next/server/pages/_document.js +0 -1
- package/website/.next/server/pages/_document.js.nft.json +0 -1
- package/website/.next/server/pages/_error.js +0 -19
- package/website/.next/server/pages/_error.js.nft.json +0 -1
- package/website/.next/server/pages-manifest.json +0 -6
- package/website/.next/server/server-reference-manifest.js +0 -1
- package/website/.next/server/server-reference-manifest.json +0 -1
- package/website/.next/server/webpack-runtime.js +0 -1
- package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_buildManifest.js +0 -1
- package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_ssgManifest.js +0 -1
- package/website/.next/static/chunks/119.05f66060d7798fc9.js +0 -25
- package/website/.next/static/chunks/255-bf407b21685f2318.js +0 -1
- package/website/.next/static/chunks/451-235273497e501ae9.js +0 -1
- package/website/.next/static/chunks/4bd1b696-409494caf8c83275.js +0 -1
- package/website/.next/static/chunks/619-f072ac750404f9da.js +0 -1
- package/website/.next/static/chunks/651-5cd3c87d43b7eb46.js +0 -1
- package/website/.next/static/chunks/778.278ac2aadb2a1105.js +0 -1
- package/website/.next/static/chunks/890-ab915e0570e1961b.js +0 -1
- package/website/.next/static/chunks/app/_not-found/page-ccdaf9d90b537c5d.js +0 -1
- package/website/.next/static/chunks/app/about/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/blog/[slug]/page-8fd43000c4969233.js +0 -1
- package/website/.next/static/chunks/app/blog/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/design-guide/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/ecosystem/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/layout-ccacbd90656baa78.js +0 -1
- package/website/.next/static/chunks/app/license/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/page-31241dc7465f9590.js +0 -1
- package/website/.next/static/chunks/app/playground/page-c2af00885374900f.js +0 -1
- package/website/.next/static/chunks/app/robots.txt/route-032c05054032342f.js +0 -1
- package/website/.next/static/chunks/app/rss.xml/route-032c05054032342f.js +0 -1
- package/website/.next/static/chunks/app/schema/page-f7c224b281771083.js +0 -1
- package/website/.next/static/chunks/app/sitemap.xml/route-032c05054032342f.js +0 -1
- package/website/.next/static/chunks/app/specification/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/framework-1ce91eb6f9ecda85.js +0 -1
- package/website/.next/static/chunks/main-3099e141650ec47a.js +0 -1
- package/website/.next/static/chunks/main-app-a2fc6ac9305e3090.js +0 -1
- package/website/.next/static/chunks/pages/_app-5addca2b3b969fde.js +0 -1
- package/website/.next/static/chunks/pages/_error-022e4ac7bbb9914f.js +0 -1
- package/website/.next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- package/website/.next/static/chunks/webpack-6ecb09e5c6e34cb4.js +0 -1
- package/website/.next/static/css/23135390005d4468.css +0 -3
- package/website/.next/static/media/19cfc7226ec3afaa-s.woff2 +0 -0
- package/website/.next/static/media/21350d82a1f187e9-s.woff2 +0 -0
- package/website/.next/static/media/8e9860b6e62d6359-s.woff2 +0 -0
- package/website/.next/static/media/ba9851c3c22cd980-s.woff2 +0 -0
- package/website/.next/static/media/c5fe6dc8356a8c31-s.woff2 +0 -0
- package/website/.next/static/media/df0a9ae256c0569c-s.woff2 +0 -0
- package/website/.next/static/media/e4af272ccee01ff0-s.p.woff2 +0 -0
- package/website/.next/trace +0 -3
- package/website/.next/types/app/about/page.ts +0 -84
- package/website/.next/types/app/blog/[slug]/page.ts +0 -84
- package/website/.next/types/app/blog/page.ts +0 -84
- package/website/.next/types/app/design-guide/page.ts +0 -84
- package/website/.next/types/app/ecosystem/page.ts +0 -84
- package/website/.next/types/app/license/page.ts +0 -84
- package/website/.next/types/app/page.ts +0 -84
- package/website/.next/types/app/playground/page.ts +0 -84
- package/website/.next/types/app/rss.xml/route.ts +0 -347
- package/website/.next/types/app/schema/page.ts +0 -84
- package/website/.next/types/app/specification/page.ts +0 -84
- package/website/.next/types/cache-life.d.ts +0 -141
- package/website/.next/types/package.json +0 -1
- package/website/.next/types/routes.d.ts +0 -85
- package/website/.next/types/validator.ts +0 -187
- package/website/.wiki-export/Agent-Folder-Structure.md +0 -215
- package/website/.wiki-export/CI-STATUS.md +0 -66
- package/website/.wiki-export/COMPLETE-IMPLEMENTATION-CHECKLIST.md +0 -74
- package/website/.wiki-export/DRUPAL-MODULE-INTEGRATION.md +0 -103
- package/website/.wiki-export/FINAL-STATUS.md +0 -63
- package/website/.wiki-export/Getting-Started.md +0 -87
- package/website/.wiki-export/INSTRUCTIONS.md +0 -46
- package/website/.wiki-export/INTEGRATION-ANALYSIS.md +0 -216
- package/website/.wiki-export/MANIFEST.json +0 -62
- package/website/.wiki-export/OSSA-COMPLIANT-BADGE.md +0 -247
- package/website/.wiki-export/Openapi-Extensions.md +0 -930
- package/website/.wiki-export/README.md +0 -31
- package/website/.wiki-export/RELEASE-READINESS.md +0 -95
- package/website/.wiki-export/VERSIONING.md +0 -284
- package/website/next-env.d.ts +0 -6
- package/website/out/app-build-manifest.json +0 -3
- package/website/out/build-manifest.json +0 -17
- package/website/out/cache/.rscinfo +0 -1
- package/website/out/cache/next-devtools-config.json +0 -1
- package/website/out/cache/webpack/client-development/0.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/1.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/2.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/3.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/index.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/index.pack.gz.old +0 -0
- package/website/out/cache/webpack/client-development-fallback/0.pack.gz +0 -0
- package/website/out/cache/webpack/client-development-fallback/index.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/0.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/1.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/2.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/3.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/index.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/index.pack.gz.old +0 -0
- package/website/out/package.json +0 -1
- package/website/out/prerender-manifest.json +0 -11
- package/website/out/react-loadable-manifest.json +0 -1
- package/website/out/routes-manifest.json +0 -1
- package/website/out/server/app-paths-manifest.json +0 -1
- package/website/out/server/interception-route-rewrite-manifest.js +0 -1
- package/website/out/server/middleware-build-manifest.js +0 -19
- package/website/out/server/middleware-manifest.json +0 -6
- package/website/out/server/middleware-react-loadable-manifest.js +0 -1
- package/website/out/server/next-font-manifest.js +0 -1
- package/website/out/server/next-font-manifest.json +0 -1
- package/website/out/server/pages-manifest.json +0 -1
- package/website/out/server/server-reference-manifest.js +0 -1
- package/website/out/server/server-reference-manifest.json +0 -5
- package/website/out/static/chunks/polyfills.js +0 -1
- package/website/out/static/development/_buildManifest.js +0 -1
- package/website/out/static/development/_ssgManifest.js +0 -1
- package/website/out/trace +0 -2
- package/website/out/types/cache-life.d.ts +0 -141
- package/website/out/types/package.json +0 -1
- package/website/out/types/routes.d.ts +0 -85
- package/website/out/types/validator.ts +0 -187
- package/website/public/examples.json +0 -476
- package/website/public/schemas/openapi-extensions.schema.json +0 -486
- package/website/tsconfig.tsbuildinfo +0 -1
- /package/dist/spec/{v0.2.4-dev → v0.2.4}/ossa-0.2.4-dev.yaml +0 -0
- /package/spec/v0.2.4/{ossa-0.2.4.yaml → ossa-0.2.4-dev.yaml} +0 -0
package/dist/cli/ossa-cli.js
DELETED
|
@@ -1,1061 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
/**
|
|
3
|
-
* OSSA CLI - Main Command Line Interface
|
|
4
|
-
* OpenAPI 3.1 compliant CRUD operations for the OSSA specification
|
|
5
|
-
* Replaces all shell scripts with TypeScript-based operations
|
|
6
|
-
*/
|
|
7
|
-
import { Command } from 'commander';
|
|
8
|
-
import { readFileSync, writeFileSync, existsSync, readdirSync, statSync } from 'fs';
|
|
9
|
-
import { join } from 'path';
|
|
10
|
-
import chalk from 'chalk';
|
|
11
|
-
import { z } from 'zod';
|
|
12
|
-
import * as yaml from 'js-yaml';
|
|
13
|
-
// OpenAPI 3.1 Schema Definitions
|
|
14
|
-
const OpenAPISchema = z.object({
|
|
15
|
-
openapi: z.literal('3.1.0'),
|
|
16
|
-
info: z.object({
|
|
17
|
-
title: z.string(),
|
|
18
|
-
version: z.string(),
|
|
19
|
-
description: z.string().optional()
|
|
20
|
-
}),
|
|
21
|
-
servers: z.array(z.object({
|
|
22
|
-
url: z.string(),
|
|
23
|
-
description: z.string().optional()
|
|
24
|
-
})).optional(),
|
|
25
|
-
paths: z.record(z.string(), z.any()),
|
|
26
|
-
components: z.object({
|
|
27
|
-
schemas: z.record(z.string(), z.any()).optional()
|
|
28
|
-
}).optional()
|
|
29
|
-
});
|
|
30
|
-
const SpecificationSchema = z.object({
|
|
31
|
-
agentId: z.string().regex(/^[a-z0-9-]+$/),
|
|
32
|
-
agentType: z.enum(['orchestrator', 'worker', 'critic', 'judge', 'trainer', 'governor', 'monitor', 'integrator']),
|
|
33
|
-
version: z.string().regex(/^\d+\.\d+\.\d+$/),
|
|
34
|
-
capabilities: z.object({
|
|
35
|
-
supportedDomains: z.array(z.string()),
|
|
36
|
-
inputFormats: z.array(z.string()),
|
|
37
|
-
outputFormats: z.array(z.string())
|
|
38
|
-
})
|
|
39
|
-
});
|
|
40
|
-
class OSSACli {
|
|
41
|
-
config;
|
|
42
|
-
program;
|
|
43
|
-
constructor() {
|
|
44
|
-
this.config = {
|
|
45
|
-
baseDir: process.cwd(),
|
|
46
|
-
specsDir: join(process.cwd(), 'src', 'api'),
|
|
47
|
-
agentsDir: join(process.cwd(), '.agents'),
|
|
48
|
-
outputDir: join(process.cwd(), 'dist'),
|
|
49
|
-
logLevel: 'info'
|
|
50
|
-
};
|
|
51
|
-
this.program = new Command();
|
|
52
|
-
this.setupCommands();
|
|
53
|
-
}
|
|
54
|
-
log(level, message, data) {
|
|
55
|
-
const levels = { debug: 0, info: 1, warn: 2, error: 3 };
|
|
56
|
-
const configLevel = levels[this.config.logLevel];
|
|
57
|
-
const messageLevel = levels[level];
|
|
58
|
-
if (messageLevel < configLevel)
|
|
59
|
-
return;
|
|
60
|
-
const colors = {
|
|
61
|
-
debug: chalk.gray,
|
|
62
|
-
info: chalk.blue,
|
|
63
|
-
warn: chalk.yellow,
|
|
64
|
-
error: chalk.red
|
|
65
|
-
};
|
|
66
|
-
const timestamp = new Date().toISOString();
|
|
67
|
-
console.log(colors[level](`[${timestamp}] [${level.toUpperCase()}] ${message}`));
|
|
68
|
-
if (data) {
|
|
69
|
-
console.log(chalk.gray(JSON.stringify(data, null, 2)));
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
setupCommands() {
|
|
73
|
-
this.program
|
|
74
|
-
.name('ossa')
|
|
75
|
-
.description('OSSA CLI - OpenAPI 3.1 Specification Management')
|
|
76
|
-
.version('0.1.9')
|
|
77
|
-
.option('-v, --verbose', 'Enable verbose logging')
|
|
78
|
-
.option('-d, --debug', 'Enable debug logging')
|
|
79
|
-
.hook('preAction', (thisCommand) => {
|
|
80
|
-
if (thisCommand.opts().verbose)
|
|
81
|
-
this.config.logLevel = 'info';
|
|
82
|
-
if (thisCommand.opts().debug)
|
|
83
|
-
this.config.logLevel = 'debug';
|
|
84
|
-
});
|
|
85
|
-
// SPECIFICATION CRUD Operations
|
|
86
|
-
const specCommand = this.program
|
|
87
|
-
.command('spec')
|
|
88
|
-
.description('Specification management (CRUD operations)');
|
|
89
|
-
// CREATE specification
|
|
90
|
-
specCommand
|
|
91
|
-
.command('create')
|
|
92
|
-
.description('Create new OpenAPI 3.1 specification')
|
|
93
|
-
.argument('<name>', 'Specification name')
|
|
94
|
-
.option('-t, --type <type>', 'Agent type', 'worker')
|
|
95
|
-
.option('-d, --description <desc>', 'Specification description')
|
|
96
|
-
.option('-v, --version <version>', 'API version', '1.0.0')
|
|
97
|
-
.option('--template <template>', 'Use template (basic, advanced, industrial)')
|
|
98
|
-
.option('--rasp-enabled', 'Enable RASP (Runtime Application Self-Protection) protocol support')
|
|
99
|
-
.action(this.createSpecification.bind(this));
|
|
100
|
-
// READ specifications
|
|
101
|
-
specCommand
|
|
102
|
-
.command('list')
|
|
103
|
-
.description('List all specifications')
|
|
104
|
-
.option('-f, --format <format>', 'Output format (table, json, yaml)', 'table')
|
|
105
|
-
.option('--filter <filter>', 'Filter by type or version')
|
|
106
|
-
.action(this.listSpecifications.bind(this));
|
|
107
|
-
specCommand
|
|
108
|
-
.command('get')
|
|
109
|
-
.description('Get specification details')
|
|
110
|
-
.argument('<name>', 'Specification name')
|
|
111
|
-
.option('-f, --format <format>', 'Output format (json, yaml)', 'yaml')
|
|
112
|
-
.action(this.getSpecification.bind(this));
|
|
113
|
-
// UPDATE specification
|
|
114
|
-
specCommand
|
|
115
|
-
.command('update')
|
|
116
|
-
.description('Update existing specification')
|
|
117
|
-
.argument('<name>', 'Specification name')
|
|
118
|
-
.option('-d, --description <desc>', 'Update description')
|
|
119
|
-
.option('-v, --version <version>', 'Update version')
|
|
120
|
-
.option('--add-path <path>', 'Add new API path')
|
|
121
|
-
.option('--remove-path <path>', 'Remove API path')
|
|
122
|
-
.action(this.updateSpecification.bind(this));
|
|
123
|
-
// DELETE specification
|
|
124
|
-
specCommand
|
|
125
|
-
.command('delete')
|
|
126
|
-
.description('Delete specification')
|
|
127
|
-
.argument('<name>', 'Specification name')
|
|
128
|
-
.option('-f, --force', 'Force deletion without confirmation')
|
|
129
|
-
.action(this.deleteSpecification.bind(this));
|
|
130
|
-
// AGENT CRUD Operations
|
|
131
|
-
const agentCommand = this.program
|
|
132
|
-
.command('agent')
|
|
133
|
-
.description('Agent management (CRUD operations)');
|
|
134
|
-
// CREATE agent
|
|
135
|
-
agentCommand
|
|
136
|
-
.command('create')
|
|
137
|
-
.description('Create new agent')
|
|
138
|
-
.argument('<agent-id>', 'Agent identifier')
|
|
139
|
-
.option('-t, --type <type>', 'Agent type')
|
|
140
|
-
.option('-s, --spec <spec>', 'OpenAPI specification file')
|
|
141
|
-
.option('-c, --capabilities <caps>', 'Comma-separated capabilities')
|
|
142
|
-
.action(this.createAgent.bind(this));
|
|
143
|
-
// READ agents
|
|
144
|
-
agentCommand
|
|
145
|
-
.command('list')
|
|
146
|
-
.description('List all agents')
|
|
147
|
-
.option('-t, --type <type>', 'Filter by agent type')
|
|
148
|
-
.option('-s, --status <status>', 'Filter by status')
|
|
149
|
-
.action(this.listAgents.bind(this));
|
|
150
|
-
agentCommand
|
|
151
|
-
.command('get')
|
|
152
|
-
.description('Get agent details')
|
|
153
|
-
.argument('<agent-id>', 'Agent identifier')
|
|
154
|
-
.option('-f, --format <format>', 'Output format (json, yaml, table)', 'table')
|
|
155
|
-
.action(this.getAgent.bind(this));
|
|
156
|
-
// UPDATE agent
|
|
157
|
-
agentCommand
|
|
158
|
-
.command('update')
|
|
159
|
-
.description('Update agent configuration')
|
|
160
|
-
.argument('<agent-id>', 'Agent identifier')
|
|
161
|
-
.option('-c, --capabilities <caps>', 'Update capabilities')
|
|
162
|
-
.option('-s, --spec <spec>', 'Update OpenAPI specification')
|
|
163
|
-
.action(this.updateAgent.bind(this));
|
|
164
|
-
// DELETE agent
|
|
165
|
-
agentCommand
|
|
166
|
-
.command('delete')
|
|
167
|
-
.description('Delete agent')
|
|
168
|
-
.argument('<agent-id>', 'Agent identifier')
|
|
169
|
-
.option('-f, --force', 'Force deletion')
|
|
170
|
-
.action(this.deleteAgent.bind(this));
|
|
171
|
-
// VALIDATION Operations
|
|
172
|
-
this.program
|
|
173
|
-
.command('validate')
|
|
174
|
-
.description('Validate OpenAPI 3.1 specifications and agents')
|
|
175
|
-
.option('-s, --spec <spec>', 'Validate specific specification')
|
|
176
|
-
.option('-a, --agent <agent>', 'Validate specific agent')
|
|
177
|
-
.option('--all', 'Validate all specifications and agents')
|
|
178
|
-
.option('--fix', 'Auto-fix validation errors where possible')
|
|
179
|
-
.action(this.validate.bind(this));
|
|
180
|
-
// BUILD Operations
|
|
181
|
-
this.program
|
|
182
|
-
.command('build')
|
|
183
|
-
.description('Build and compile specifications')
|
|
184
|
-
.option('-s, --spec <spec>', 'Build specific specification')
|
|
185
|
-
.option('--all', 'Build all specifications')
|
|
186
|
-
.option('-w, --watch', 'Watch for changes and rebuild')
|
|
187
|
-
.option('--output <dir>', 'Output directory')
|
|
188
|
-
.action(this.build.bind(this));
|
|
189
|
-
// DEPLOYMENT Operations
|
|
190
|
-
this.program
|
|
191
|
-
.command('deploy')
|
|
192
|
-
.description('Deploy agents and specifications')
|
|
193
|
-
.option('-e, --environment <env>', 'Target environment (dev, staging, prod)', 'dev')
|
|
194
|
-
.option('-a, --agent <agent>', 'Deploy specific agent')
|
|
195
|
-
.option('--all', 'Deploy all agents')
|
|
196
|
-
.option('--dry-run', 'Show what would be deployed without deploying')
|
|
197
|
-
.action(this.deploy.bind(this));
|
|
198
|
-
// TESTING Operations
|
|
199
|
-
this.program
|
|
200
|
-
.command('test')
|
|
201
|
-
.description('Test OpenAPI specifications and agents')
|
|
202
|
-
.option('-s, --spec <spec>', 'Test specific specification')
|
|
203
|
-
.option('-a, --agent <agent>', 'Test specific agent')
|
|
204
|
-
.option('--all', 'Test all specifications and agents')
|
|
205
|
-
.option('--coverage', 'Generate test coverage report')
|
|
206
|
-
.action(this.test.bind(this));
|
|
207
|
-
// STATUS Operations
|
|
208
|
-
this.program
|
|
209
|
-
.command('status')
|
|
210
|
-
.description('Show system status')
|
|
211
|
-
.option('--detailed', 'Show detailed status information')
|
|
212
|
-
.option('--health', 'Show health check results')
|
|
213
|
-
.action(this.status.bind(this));
|
|
214
|
-
// MIGRATION Operations
|
|
215
|
-
this.program
|
|
216
|
-
.command('migrate')
|
|
217
|
-
.description('Migrate specifications to OpenAPI 3.1')
|
|
218
|
-
.option('--from <version>', 'Source OpenAPI version')
|
|
219
|
-
.option('--backup', 'Create backup before migration')
|
|
220
|
-
.option('--dry-run', 'Show migration plan without executing')
|
|
221
|
-
.action(this.migrate.bind(this));
|
|
222
|
-
// UAP (Universal Agent Protocol) Operations
|
|
223
|
-
this.program
|
|
224
|
-
.command('certify')
|
|
225
|
-
.description('Certify agents and specifications for UAP compliance')
|
|
226
|
-
.option('--acap', 'Enable ACAP (Agent Capability Assurance Protocol) certification')
|
|
227
|
-
.option('-a, --agent <agent>', 'Certify specific agent')
|
|
228
|
-
.option('-s, --spec <spec>', 'Certify specific specification')
|
|
229
|
-
.option('--all', 'Certify all agents and specifications')
|
|
230
|
-
.option('--output <format>', 'Output format (json, yaml, table)', 'table')
|
|
231
|
-
.action(this.certify.bind(this));
|
|
232
|
-
this.program
|
|
233
|
-
.command('discover')
|
|
234
|
-
.description('Discover UAP-compliant agents and services')
|
|
235
|
-
.option('--uadp', 'Enable UADP (Universal Agent Discovery Protocol) for network discovery')
|
|
236
|
-
.option('--network <network>', 'Target network for discovery')
|
|
237
|
-
.option('--timeout <ms>', 'Discovery timeout in milliseconds', '5000')
|
|
238
|
-
.option('--filter <filter>', 'Filter by agent type, capability, or version')
|
|
239
|
-
.option('--output <format>', 'Output format (json, yaml, table)', 'table')
|
|
240
|
-
.action(this.discover.bind(this));
|
|
241
|
-
}
|
|
242
|
-
// SPECIFICATION CRUD Operations
|
|
243
|
-
async createSpecification(name, options) {
|
|
244
|
-
try {
|
|
245
|
-
this.log('info', `Creating specification: ${name}`);
|
|
246
|
-
const specTemplate = this.getSpecTemplate(options.template || 'basic');
|
|
247
|
-
const spec = {
|
|
248
|
-
...specTemplate,
|
|
249
|
-
info: {
|
|
250
|
-
...specTemplate.info,
|
|
251
|
-
title: `${name} API`,
|
|
252
|
-
version: options.version || '1.0.0',
|
|
253
|
-
description: options.description || `OpenAPI 3.1 specification for ${name}`,
|
|
254
|
-
...(options.raspEnabled && {
|
|
255
|
-
'x-rasp-enabled': true,
|
|
256
|
-
'x-rasp-config': {
|
|
257
|
-
monitoring: true,
|
|
258
|
-
protection: true,
|
|
259
|
-
alerting: true
|
|
260
|
-
}
|
|
261
|
-
})
|
|
262
|
-
}
|
|
263
|
-
};
|
|
264
|
-
// Add RASP security schemes if enabled
|
|
265
|
-
if (options.raspEnabled) {
|
|
266
|
-
spec.components = spec.components || {};
|
|
267
|
-
spec.components.securitySchemes = {
|
|
268
|
-
...spec.components.securitySchemes,
|
|
269
|
-
RASPToken: {
|
|
270
|
-
type: 'http',
|
|
271
|
-
scheme: 'bearer',
|
|
272
|
-
bearerFormat: 'JWT',
|
|
273
|
-
description: 'RASP (Runtime Application Self-Protection) authentication token'
|
|
274
|
-
}
|
|
275
|
-
};
|
|
276
|
-
spec.security = [{ RASPToken: [] }];
|
|
277
|
-
}
|
|
278
|
-
// Validate against OpenAPI 3.1 schema
|
|
279
|
-
const validation = OpenAPISchema.safeParse(spec);
|
|
280
|
-
if (!validation.success) {
|
|
281
|
-
this.log('error', 'Specification validation failed', validation.error.issues);
|
|
282
|
-
return;
|
|
283
|
-
}
|
|
284
|
-
const specPath = join(this.config.specsDir, `${name}.openapi.yml`);
|
|
285
|
-
writeFileSync(specPath, yaml.dump(spec));
|
|
286
|
-
this.log('info', `Specification created: ${specPath}`);
|
|
287
|
-
// Auto-generate TypeScript types if requested
|
|
288
|
-
if (options.generateTypes) {
|
|
289
|
-
await this.generateTypes(name);
|
|
290
|
-
}
|
|
291
|
-
}
|
|
292
|
-
catch (error) {
|
|
293
|
-
this.log('error', `Failed to create specification: ${error instanceof Error ? error.message : String(error)}`);
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
async listSpecifications(options) {
|
|
297
|
-
try {
|
|
298
|
-
this.log('info', 'Listing specifications...');
|
|
299
|
-
const specs = this.getAllSpecifications();
|
|
300
|
-
if (options.format === 'json') {
|
|
301
|
-
console.log(JSON.stringify(specs, null, 2));
|
|
302
|
-
}
|
|
303
|
-
else if (options.format === 'yaml') {
|
|
304
|
-
console.log(yaml.dump(specs));
|
|
305
|
-
}
|
|
306
|
-
else {
|
|
307
|
-
// Table format
|
|
308
|
-
console.table(specs.map(spec => ({
|
|
309
|
-
Name: spec.name,
|
|
310
|
-
Version: spec.version,
|
|
311
|
-
Type: spec.type || 'Unknown',
|
|
312
|
-
'Last Modified': spec.lastModified
|
|
313
|
-
})));
|
|
314
|
-
}
|
|
315
|
-
}
|
|
316
|
-
catch (error) {
|
|
317
|
-
this.log('error', `Failed to list specifications: ${error instanceof Error ? error.message : String(error)}`);
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
async getSpecification(name, options) {
|
|
321
|
-
try {
|
|
322
|
-
this.log('info', `Getting specification: ${name}`);
|
|
323
|
-
const specPath = join(this.config.specsDir, `${name}.openapi.yml`);
|
|
324
|
-
if (!existsSync(specPath)) {
|
|
325
|
-
this.log('error', `Specification not found: ${name}`);
|
|
326
|
-
return;
|
|
327
|
-
}
|
|
328
|
-
const content = readFileSync(specPath, 'utf8');
|
|
329
|
-
if (options.format === 'json') {
|
|
330
|
-
const spec = yaml.load(content);
|
|
331
|
-
console.log(JSON.stringify(spec, null, 2));
|
|
332
|
-
}
|
|
333
|
-
else {
|
|
334
|
-
console.log(content);
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
catch (error) {
|
|
338
|
-
this.log('error', `Failed to get specification: ${error instanceof Error ? error.message : String(error)}`);
|
|
339
|
-
}
|
|
340
|
-
}
|
|
341
|
-
async updateSpecification(name, options) {
|
|
342
|
-
try {
|
|
343
|
-
this.log('info', `Updating specification: ${name}`);
|
|
344
|
-
// TODO: Implement specification update logic
|
|
345
|
-
}
|
|
346
|
-
catch (error) {
|
|
347
|
-
this.log('error', `Failed to update specification: ${error instanceof Error ? error.message : String(error)}`);
|
|
348
|
-
}
|
|
349
|
-
}
|
|
350
|
-
async deleteSpecification(name, options) {
|
|
351
|
-
try {
|
|
352
|
-
this.log('info', `Deleting specification: ${name}`);
|
|
353
|
-
// TODO: Implement specification deletion logic
|
|
354
|
-
}
|
|
355
|
-
catch (error) {
|
|
356
|
-
this.log('error', `Failed to delete specification: ${error instanceof Error ? error.message : String(error)}`);
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
// AGENT CRUD Operations
|
|
360
|
-
async createAgent(agentId, options) {
|
|
361
|
-
try {
|
|
362
|
-
this.log('info', `Creating agent: ${agentId}`);
|
|
363
|
-
// TODO: Implement agent creation logic
|
|
364
|
-
}
|
|
365
|
-
catch (error) {
|
|
366
|
-
this.log('error', `Failed to create agent: ${error instanceof Error ? error.message : String(error)}`);
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
async listAgents(options) {
|
|
370
|
-
try {
|
|
371
|
-
this.log('info', 'Listing agents...');
|
|
372
|
-
// TODO: Implement agent listing logic
|
|
373
|
-
}
|
|
374
|
-
catch (error) {
|
|
375
|
-
this.log('error', `Failed to list agents: ${error instanceof Error ? error.message : String(error)}`);
|
|
376
|
-
}
|
|
377
|
-
}
|
|
378
|
-
async getAgent(agentId, options) {
|
|
379
|
-
try {
|
|
380
|
-
this.log('info', `Getting agent: ${agentId}`);
|
|
381
|
-
// TODO: Implement get agent logic
|
|
382
|
-
}
|
|
383
|
-
catch (error) {
|
|
384
|
-
this.log('error', `Failed to get agent: ${error instanceof Error ? error.message : String(error)}`);
|
|
385
|
-
}
|
|
386
|
-
}
|
|
387
|
-
async updateAgent(agentId, options) {
|
|
388
|
-
try {
|
|
389
|
-
this.log('info', `Updating agent: ${agentId}`);
|
|
390
|
-
// TODO: Implement agent update logic
|
|
391
|
-
}
|
|
392
|
-
catch (error) {
|
|
393
|
-
this.log('error', `Failed to update agent: ${error instanceof Error ? error.message : String(error)}`);
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
async deleteAgent(agentId, options) {
|
|
397
|
-
try {
|
|
398
|
-
this.log('info', `Deleting agent: ${agentId}`);
|
|
399
|
-
// TODO: Implement agent deletion logic
|
|
400
|
-
}
|
|
401
|
-
catch (error) {
|
|
402
|
-
this.log('error', `Failed to delete agent: ${error instanceof Error ? error.message : String(error)}`);
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
// Utility Operations
|
|
406
|
-
async validate(options) {
|
|
407
|
-
try {
|
|
408
|
-
this.log('info', 'Starting validation...');
|
|
409
|
-
if (options.all) {
|
|
410
|
-
await this.validateAllSpecifications();
|
|
411
|
-
await this.validateAllAgents();
|
|
412
|
-
}
|
|
413
|
-
else if (options.spec) {
|
|
414
|
-
await this.validateSpecification(options.spec);
|
|
415
|
-
}
|
|
416
|
-
else if (options.agent) {
|
|
417
|
-
await this.validateAgent(options.agent);
|
|
418
|
-
}
|
|
419
|
-
}
|
|
420
|
-
catch (error) {
|
|
421
|
-
this.log('error', `Validation failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
422
|
-
}
|
|
423
|
-
}
|
|
424
|
-
async build(options) {
|
|
425
|
-
try {
|
|
426
|
-
this.log('info', 'Building specifications...');
|
|
427
|
-
// TODO: Implement build logic
|
|
428
|
-
}
|
|
429
|
-
catch (error) {
|
|
430
|
-
this.log('error', `Build failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
431
|
-
}
|
|
432
|
-
}
|
|
433
|
-
async deploy(options) {
|
|
434
|
-
try {
|
|
435
|
-
this.log('info', `Deploying to ${options.environment}...`);
|
|
436
|
-
// TODO: Implement deployment logic
|
|
437
|
-
}
|
|
438
|
-
catch (error) {
|
|
439
|
-
this.log('error', `Deployment failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
async test(options) {
|
|
443
|
-
try {
|
|
444
|
-
this.log('info', 'Running tests...');
|
|
445
|
-
// TODO: Implement testing logic
|
|
446
|
-
}
|
|
447
|
-
catch (error) {
|
|
448
|
-
this.log('error', `Tests failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
async status(options) {
|
|
452
|
-
try {
|
|
453
|
-
this.log('info', 'Checking system status...');
|
|
454
|
-
const status = {
|
|
455
|
-
specifications: this.getAllSpecifications().length,
|
|
456
|
-
agents: this.getAllAgents().length,
|
|
457
|
-
environment: process.env.NODE_ENV || 'development',
|
|
458
|
-
version: '0.1.9',
|
|
459
|
-
health: 'healthy'
|
|
460
|
-
};
|
|
461
|
-
console.log(chalk.green('OSSA System Status:'));
|
|
462
|
-
console.table(status);
|
|
463
|
-
}
|
|
464
|
-
catch (error) {
|
|
465
|
-
this.log('error', `Failed to get status: ${error instanceof Error ? error.message : String(error)}`);
|
|
466
|
-
}
|
|
467
|
-
}
|
|
468
|
-
async migrate(options) {
|
|
469
|
-
try {
|
|
470
|
-
this.log('info', 'Starting migration...');
|
|
471
|
-
// TODO: Implement migration logic
|
|
472
|
-
}
|
|
473
|
-
catch (error) {
|
|
474
|
-
this.log('error', `Migration failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
475
|
-
}
|
|
476
|
-
}
|
|
477
|
-
// UAP Protocol Operations
|
|
478
|
-
async certify(options) {
|
|
479
|
-
try {
|
|
480
|
-
this.log('info', 'Starting UAP certification process...');
|
|
481
|
-
const certificationResults = [];
|
|
482
|
-
if (options.acap) {
|
|
483
|
-
this.log('info', 'ACAP (Agent Capability Assurance Protocol) certification enabled');
|
|
484
|
-
}
|
|
485
|
-
if (options.all) {
|
|
486
|
-
// Certify all agents and specifications
|
|
487
|
-
this.log('info', 'Certifying all agents and specifications...');
|
|
488
|
-
const agents = this.getAllAgents();
|
|
489
|
-
const specs = this.getAllSpecifications();
|
|
490
|
-
for (const agent of agents) {
|
|
491
|
-
const result = await this.certifyAgent(agent.name, options);
|
|
492
|
-
certificationResults.push(result);
|
|
493
|
-
}
|
|
494
|
-
for (const spec of specs) {
|
|
495
|
-
const result = await this.certifySpecification(spec.name, options);
|
|
496
|
-
certificationResults.push(result);
|
|
497
|
-
}
|
|
498
|
-
}
|
|
499
|
-
else if (options.agent) {
|
|
500
|
-
// Certify specific agent
|
|
501
|
-
const result = await this.certifyAgent(options.agent, options);
|
|
502
|
-
certificationResults.push(result);
|
|
503
|
-
}
|
|
504
|
-
else if (options.spec) {
|
|
505
|
-
// Certify specific specification
|
|
506
|
-
const result = await this.certifySpecification(options.spec, options);
|
|
507
|
-
certificationResults.push(result);
|
|
508
|
-
}
|
|
509
|
-
// Output results
|
|
510
|
-
this.outputCertificationResults(certificationResults, options.output || 'table');
|
|
511
|
-
}
|
|
512
|
-
catch (error) {
|
|
513
|
-
this.log('error', `Certification failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
async discover(options) {
|
|
517
|
-
try {
|
|
518
|
-
this.log('info', 'Starting UAP discovery process...');
|
|
519
|
-
if (options.uadp) {
|
|
520
|
-
this.log('info', 'UADP (Universal Agent Discovery Protocol) enabled');
|
|
521
|
-
}
|
|
522
|
-
const discoveryResults = await this.performUAPDiscovery(options);
|
|
523
|
-
// Output results
|
|
524
|
-
this.outputDiscoveryResults(discoveryResults, options.output || 'table');
|
|
525
|
-
}
|
|
526
|
-
catch (error) {
|
|
527
|
-
this.log('error', `Discovery failed: ${error instanceof Error ? error.message : String(error)}`);
|
|
528
|
-
}
|
|
529
|
-
}
|
|
530
|
-
// UAP Protocol Helper Methods
|
|
531
|
-
async certifyAgent(agentId, options) {
|
|
532
|
-
try {
|
|
533
|
-
this.log('info', `Certifying agent: ${agentId}`);
|
|
534
|
-
const certification = {
|
|
535
|
-
id: agentId,
|
|
536
|
-
type: 'agent',
|
|
537
|
-
certified: false,
|
|
538
|
-
certificationLevel: 'none',
|
|
539
|
-
compliance: {
|
|
540
|
-
uapCompliant: false,
|
|
541
|
-
acapCompliant: false,
|
|
542
|
-
errors: [],
|
|
543
|
-
warnings: []
|
|
544
|
-
},
|
|
545
|
-
timestamp: new Date().toISOString()
|
|
546
|
-
};
|
|
547
|
-
// Check if agent exists
|
|
548
|
-
const agentPath = join(this.config.agentsDir, agentId);
|
|
549
|
-
if (!existsSync(agentPath)) {
|
|
550
|
-
certification.compliance.errors.push(`Agent directory not found: ${agentPath}`);
|
|
551
|
-
return certification;
|
|
552
|
-
}
|
|
553
|
-
// ACAP certification checks
|
|
554
|
-
if (options.acap) {
|
|
555
|
-
const acapResult = await this.performACAPCertification(agentId);
|
|
556
|
-
certification.compliance.acapCompliant = acapResult.compliant;
|
|
557
|
-
certification.compliance.errors.push(...acapResult.errors);
|
|
558
|
-
certification.compliance.warnings.push(...acapResult.warnings);
|
|
559
|
-
}
|
|
560
|
-
// Basic UAP compliance checks
|
|
561
|
-
const uapResult = await this.performUAPCertification(agentId);
|
|
562
|
-
certification.compliance.uapCompliant = uapResult.compliant;
|
|
563
|
-
certification.compliance.errors.push(...uapResult.errors);
|
|
564
|
-
certification.compliance.warnings.push(...uapResult.warnings);
|
|
565
|
-
// Determine overall certification
|
|
566
|
-
certification.certified = certification.compliance.errors.length === 0;
|
|
567
|
-
certification.certificationLevel = certification.certified ?
|
|
568
|
-
(certification.compliance.warnings.length === 0 ? 'full' : 'conditional') : 'failed';
|
|
569
|
-
return certification;
|
|
570
|
-
}
|
|
571
|
-
catch (error) {
|
|
572
|
-
return {
|
|
573
|
-
id: agentId,
|
|
574
|
-
type: 'agent',
|
|
575
|
-
certified: false,
|
|
576
|
-
certificationLevel: 'error',
|
|
577
|
-
error: error instanceof Error ? error.message : String(error),
|
|
578
|
-
timestamp: new Date().toISOString()
|
|
579
|
-
};
|
|
580
|
-
}
|
|
581
|
-
}
|
|
582
|
-
async certifySpecification(specName, options) {
|
|
583
|
-
try {
|
|
584
|
-
this.log('info', `Certifying specification: ${specName}`);
|
|
585
|
-
const certification = {
|
|
586
|
-
id: specName,
|
|
587
|
-
type: 'specification',
|
|
588
|
-
certified: false,
|
|
589
|
-
certificationLevel: 'none',
|
|
590
|
-
compliance: {
|
|
591
|
-
openapi31Compliant: false,
|
|
592
|
-
uapCompliant: false,
|
|
593
|
-
raspEnabled: false,
|
|
594
|
-
errors: [],
|
|
595
|
-
warnings: []
|
|
596
|
-
},
|
|
597
|
-
timestamp: new Date().toISOString()
|
|
598
|
-
};
|
|
599
|
-
// Check if specification exists
|
|
600
|
-
const specPath = join(this.config.specsDir, `${specName}.openapi.yml`);
|
|
601
|
-
if (!existsSync(specPath)) {
|
|
602
|
-
certification.compliance.errors.push(`Specification file not found: ${specPath}`);
|
|
603
|
-
return certification;
|
|
604
|
-
}
|
|
605
|
-
// Load and validate specification
|
|
606
|
-
const content = readFileSync(specPath, 'utf8');
|
|
607
|
-
const spec = yaml.load(content);
|
|
608
|
-
// OpenAPI 3.1 compliance check
|
|
609
|
-
const validation = OpenAPISchema.safeParse(spec);
|
|
610
|
-
if (validation.success) {
|
|
611
|
-
certification.compliance.openapi31Compliant = true;
|
|
612
|
-
}
|
|
613
|
-
else {
|
|
614
|
-
certification.compliance.errors.push(...validation.error.issues.map(issue => `OpenAPI validation: ${issue.path.join('.')}: ${issue.message}`));
|
|
615
|
-
}
|
|
616
|
-
// Check for RASP enablement
|
|
617
|
-
if (spec.info && spec.info['x-rasp-enabled']) {
|
|
618
|
-
certification.compliance.raspEnabled = true;
|
|
619
|
-
}
|
|
620
|
-
// UAP compliance checks for specifications
|
|
621
|
-
const uapResult = await this.performSpecificationUAPCertification(spec);
|
|
622
|
-
certification.compliance.uapCompliant = uapResult.compliant;
|
|
623
|
-
certification.compliance.errors.push(...uapResult.errors);
|
|
624
|
-
certification.compliance.warnings.push(...uapResult.warnings);
|
|
625
|
-
// Determine overall certification
|
|
626
|
-
certification.certified = certification.compliance.errors.length === 0;
|
|
627
|
-
certification.certificationLevel = certification.certified ?
|
|
628
|
-
(certification.compliance.warnings.length === 0 ? 'full' : 'conditional') : 'failed';
|
|
629
|
-
return certification;
|
|
630
|
-
}
|
|
631
|
-
catch (error) {
|
|
632
|
-
return {
|
|
633
|
-
id: specName,
|
|
634
|
-
type: 'specification',
|
|
635
|
-
certified: false,
|
|
636
|
-
certificationLevel: 'error',
|
|
637
|
-
error: error instanceof Error ? error.message : String(error),
|
|
638
|
-
timestamp: new Date().toISOString()
|
|
639
|
-
};
|
|
640
|
-
}
|
|
641
|
-
}
|
|
642
|
-
async performACAPCertification(agentId) {
|
|
643
|
-
// ACAP (Agent Capability Assurance Protocol) certification
|
|
644
|
-
const result = { compliant: true, errors: [], warnings: [] };
|
|
645
|
-
try {
|
|
646
|
-
// Check for agent capability manifest
|
|
647
|
-
const capabilityManifestPath = join(this.config.agentsDir, agentId, 'capabilities.json');
|
|
648
|
-
if (!existsSync(capabilityManifestPath)) {
|
|
649
|
-
result.errors.push('ACAP: Missing capabilities.json manifest file');
|
|
650
|
-
result.compliant = false;
|
|
651
|
-
}
|
|
652
|
-
else {
|
|
653
|
-
// Validate capability manifest structure
|
|
654
|
-
const capabilitiesContent = readFileSync(capabilityManifestPath, 'utf8');
|
|
655
|
-
try {
|
|
656
|
-
const capabilities = JSON.parse(capabilitiesContent);
|
|
657
|
-
if (!capabilities.version || !capabilities.capabilities || !Array.isArray(capabilities.capabilities)) {
|
|
658
|
-
result.errors.push('ACAP: Invalid capabilities.json structure');
|
|
659
|
-
result.compliant = false;
|
|
660
|
-
}
|
|
661
|
-
}
|
|
662
|
-
catch (parseError) {
|
|
663
|
-
result.errors.push('ACAP: Invalid JSON in capabilities.json');
|
|
664
|
-
result.compliant = false;
|
|
665
|
-
}
|
|
666
|
-
}
|
|
667
|
-
// Check for performance benchmarks
|
|
668
|
-
const benchmarkPath = join(this.config.agentsDir, agentId, 'benchmarks.json');
|
|
669
|
-
if (!existsSync(benchmarkPath)) {
|
|
670
|
-
result.warnings.push('ACAP: Missing performance benchmarks file');
|
|
671
|
-
}
|
|
672
|
-
}
|
|
673
|
-
catch (error) {
|
|
674
|
-
result.errors.push(`ACAP certification error: ${error instanceof Error ? error.message : String(error)}`);
|
|
675
|
-
result.compliant = false;
|
|
676
|
-
}
|
|
677
|
-
return result;
|
|
678
|
-
}
|
|
679
|
-
async performUAPCertification(agentId) {
|
|
680
|
-
// UAP (Universal Agent Protocol) certification
|
|
681
|
-
const result = { compliant: true, errors: [], warnings: [] };
|
|
682
|
-
try {
|
|
683
|
-
// Check for agent configuration
|
|
684
|
-
const configPath = join(this.config.agentsDir, agentId, 'agent.json');
|
|
685
|
-
if (!existsSync(configPath)) {
|
|
686
|
-
result.errors.push('UAP: Missing agent.json configuration file');
|
|
687
|
-
result.compliant = false;
|
|
688
|
-
}
|
|
689
|
-
// Check for API specification
|
|
690
|
-
const apiSpecPath = join(this.config.agentsDir, agentId, 'api.openapi.yml');
|
|
691
|
-
if (!existsSync(apiSpecPath)) {
|
|
692
|
-
result.warnings.push('UAP: Missing OpenAPI specification');
|
|
693
|
-
}
|
|
694
|
-
}
|
|
695
|
-
catch (error) {
|
|
696
|
-
result.errors.push(`UAP certification error: ${error instanceof Error ? error.message : String(error)}`);
|
|
697
|
-
result.compliant = false;
|
|
698
|
-
}
|
|
699
|
-
return result;
|
|
700
|
-
}
|
|
701
|
-
async performSpecificationUAPCertification(spec) {
|
|
702
|
-
// UAP certification for specifications
|
|
703
|
-
const result = { compliant: true, errors: [], warnings: [] };
|
|
704
|
-
try {
|
|
705
|
-
// Check for required UAP extensions
|
|
706
|
-
if (!spec.info || !spec.info['x-uap-version']) {
|
|
707
|
-
result.warnings.push('UAP: Missing x-uap-version extension');
|
|
708
|
-
}
|
|
709
|
-
// Check for security schemes
|
|
710
|
-
if (!spec.components || !spec.components.securitySchemes) {
|
|
711
|
-
result.warnings.push('UAP: No security schemes defined');
|
|
712
|
-
}
|
|
713
|
-
// Check for agent metadata
|
|
714
|
-
if (!spec.info || !spec.info['x-agent-type']) {
|
|
715
|
-
result.warnings.push('UAP: Missing x-agent-type metadata');
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
catch (error) {
|
|
719
|
-
result.errors.push(`UAP specification certification error: ${error instanceof Error ? error.message : String(error)}`);
|
|
720
|
-
result.compliant = false;
|
|
721
|
-
}
|
|
722
|
-
return result;
|
|
723
|
-
}
|
|
724
|
-
async performUAPDiscovery(options) {
|
|
725
|
-
try {
|
|
726
|
-
const discoveryResults = [];
|
|
727
|
-
if (options.uadp) {
|
|
728
|
-
// UADP (Universal Agent Discovery Protocol) discovery
|
|
729
|
-
this.log('info', 'Performing UADP network discovery...');
|
|
730
|
-
const networkResults = await this.performUADPDiscovery(options);
|
|
731
|
-
discoveryResults.push(...networkResults);
|
|
732
|
-
}
|
|
733
|
-
// Local agent discovery
|
|
734
|
-
this.log('info', 'Discovering local UAP-compliant agents...');
|
|
735
|
-
const localResults = await this.performLocalAgentDiscovery(options);
|
|
736
|
-
discoveryResults.push(...localResults);
|
|
737
|
-
return discoveryResults;
|
|
738
|
-
}
|
|
739
|
-
catch (error) {
|
|
740
|
-
this.log('error', `Discovery error: ${error instanceof Error ? error.message : String(error)}`);
|
|
741
|
-
return [];
|
|
742
|
-
}
|
|
743
|
-
}
|
|
744
|
-
async performUADPDiscovery(options) {
|
|
745
|
-
// UADP network discovery implementation
|
|
746
|
-
const results = [];
|
|
747
|
-
const timeout = parseInt(options.timeout) || 5000;
|
|
748
|
-
const network = options.network || 'local';
|
|
749
|
-
try {
|
|
750
|
-
this.log('info', `UADP: Scanning network '${network}' (timeout: ${timeout}ms)`);
|
|
751
|
-
// Simulate network discovery (in real implementation, this would use UDP multicast or similar)
|
|
752
|
-
const mockNetworkAgents = [
|
|
753
|
-
{
|
|
754
|
-
id: 'network-agent-001',
|
|
755
|
-
type: 'worker',
|
|
756
|
-
location: 'network',
|
|
757
|
-
endpoint: 'http://192.168.1.100:3000',
|
|
758
|
-
capabilities: ['data-processing', 'analysis'],
|
|
759
|
-
version: '1.0.0',
|
|
760
|
-
uapCompliant: true,
|
|
761
|
-
discovered: new Date().toISOString(),
|
|
762
|
-
discoveryMethod: 'UADP'
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
id: 'network-agent-002',
|
|
766
|
-
type: 'orchestrator',
|
|
767
|
-
location: 'network',
|
|
768
|
-
endpoint: 'http://192.168.1.101:3000',
|
|
769
|
-
capabilities: ['coordination', 'workflow-management'],
|
|
770
|
-
version: '1.1.0',
|
|
771
|
-
uapCompliant: true,
|
|
772
|
-
discovered: new Date().toISOString(),
|
|
773
|
-
discoveryMethod: 'UADP'
|
|
774
|
-
}
|
|
775
|
-
];
|
|
776
|
-
// Apply filters if specified
|
|
777
|
-
let filteredResults = mockNetworkAgents;
|
|
778
|
-
if (options.filter) {
|
|
779
|
-
const filterLower = options.filter.toLowerCase();
|
|
780
|
-
filteredResults = mockNetworkAgents.filter(agent => agent.type.toLowerCase().includes(filterLower) ||
|
|
781
|
-
agent.capabilities.some(cap => cap.toLowerCase().includes(filterLower)) ||
|
|
782
|
-
agent.version.includes(options.filter));
|
|
783
|
-
}
|
|
784
|
-
results.push(...filteredResults);
|
|
785
|
-
}
|
|
786
|
-
catch (error) {
|
|
787
|
-
this.log('error', `UADP discovery error: ${error instanceof Error ? error.message : String(error)}`);
|
|
788
|
-
}
|
|
789
|
-
return results;
|
|
790
|
-
}
|
|
791
|
-
async performLocalAgentDiscovery(options) {
|
|
792
|
-
try {
|
|
793
|
-
const agents = this.getAllAgents();
|
|
794
|
-
const results = [];
|
|
795
|
-
for (const agent of agents) {
|
|
796
|
-
try {
|
|
797
|
-
const agentInfo = {
|
|
798
|
-
id: agent.name,
|
|
799
|
-
type: 'unknown',
|
|
800
|
-
location: 'local',
|
|
801
|
-
path: agent.path,
|
|
802
|
-
capabilities: [],
|
|
803
|
-
version: 'unknown',
|
|
804
|
-
uapCompliant: false,
|
|
805
|
-
discovered: new Date().toISOString(),
|
|
806
|
-
discoveryMethod: 'local'
|
|
807
|
-
};
|
|
808
|
-
// Try to load agent configuration
|
|
809
|
-
const configPath = join(agent.path, 'agent.json');
|
|
810
|
-
if (existsSync(configPath)) {
|
|
811
|
-
const configContent = readFileSync(configPath, 'utf8');
|
|
812
|
-
const config = JSON.parse(configContent);
|
|
813
|
-
agentInfo.type = config.type || 'unknown';
|
|
814
|
-
agentInfo.version = config.version || 'unknown';
|
|
815
|
-
agentInfo.capabilities = config.capabilities || [];
|
|
816
|
-
agentInfo.uapCompliant = config.uapCompliant || false;
|
|
817
|
-
}
|
|
818
|
-
// Apply filters if specified
|
|
819
|
-
if (options.filter) {
|
|
820
|
-
const filterLower = options.filter.toLowerCase();
|
|
821
|
-
const matchesFilter = agentInfo.type.toLowerCase().includes(filterLower) ||
|
|
822
|
-
agentInfo.capabilities.some(cap => cap.toLowerCase().includes(filterLower)) ||
|
|
823
|
-
agentInfo.version.includes(options.filter);
|
|
824
|
-
if (matchesFilter) {
|
|
825
|
-
results.push(agentInfo);
|
|
826
|
-
}
|
|
827
|
-
}
|
|
828
|
-
else {
|
|
829
|
-
results.push(agentInfo);
|
|
830
|
-
}
|
|
831
|
-
}
|
|
832
|
-
catch (error) {
|
|
833
|
-
this.log('warn', `Failed to discover agent ${agent.name}: ${error instanceof Error ? error.message : String(error)}`);
|
|
834
|
-
}
|
|
835
|
-
}
|
|
836
|
-
return results;
|
|
837
|
-
}
|
|
838
|
-
catch (error) {
|
|
839
|
-
this.log('error', `Local discovery error: ${error instanceof Error ? error.message : String(error)}`);
|
|
840
|
-
return [];
|
|
841
|
-
}
|
|
842
|
-
}
|
|
843
|
-
outputCertificationResults(results, format) {
|
|
844
|
-
if (format === 'json') {
|
|
845
|
-
console.log(JSON.stringify(results, null, 2));
|
|
846
|
-
}
|
|
847
|
-
else if (format === 'yaml') {
|
|
848
|
-
console.log(yaml.dump(results));
|
|
849
|
-
}
|
|
850
|
-
else {
|
|
851
|
-
// Table format
|
|
852
|
-
const tableData = results.map(result => ({
|
|
853
|
-
ID: result.id,
|
|
854
|
-
Type: result.type,
|
|
855
|
-
Certified: result.certified ? '✅' : '❌',
|
|
856
|
-
Level: result.certificationLevel,
|
|
857
|
-
'UAP Compliant': result.compliance?.uapCompliant ? '✅' : '❌',
|
|
858
|
-
'ACAP Compliant': result.compliance?.acapCompliant ? '✅' : '❌',
|
|
859
|
-
Errors: result.compliance?.errors?.length || 0,
|
|
860
|
-
Warnings: result.compliance?.warnings?.length || 0
|
|
861
|
-
}));
|
|
862
|
-
console.log(chalk.cyan('\n📋 UAP Certification Results:\n'));
|
|
863
|
-
console.table(tableData);
|
|
864
|
-
}
|
|
865
|
-
}
|
|
866
|
-
outputDiscoveryResults(results, format) {
|
|
867
|
-
if (format === 'json') {
|
|
868
|
-
console.log(JSON.stringify(results, null, 2));
|
|
869
|
-
}
|
|
870
|
-
else if (format === 'yaml') {
|
|
871
|
-
console.log(yaml.dump(results));
|
|
872
|
-
}
|
|
873
|
-
else {
|
|
874
|
-
// Table format
|
|
875
|
-
const tableData = results.map(result => ({
|
|
876
|
-
ID: result.id,
|
|
877
|
-
Type: result.type,
|
|
878
|
-
Location: result.location,
|
|
879
|
-
Method: result.discoveryMethod,
|
|
880
|
-
'UAP Compliant': result.uapCompliant ? '✅' : '❌',
|
|
881
|
-
Capabilities: result.capabilities.slice(0, 3).join(', ') + (result.capabilities.length > 3 ? '...' : ''),
|
|
882
|
-
Version: result.version,
|
|
883
|
-
Endpoint: result.endpoint || result.path || 'N/A'
|
|
884
|
-
}));
|
|
885
|
-
console.log(chalk.cyan('\n🔍 UAP Discovery Results:\n'));
|
|
886
|
-
console.table(tableData);
|
|
887
|
-
}
|
|
888
|
-
}
|
|
889
|
-
// Helper methods
|
|
890
|
-
getSpecTemplate(template) {
|
|
891
|
-
const templates = {
|
|
892
|
-
basic: {
|
|
893
|
-
openapi: '3.1.0',
|
|
894
|
-
info: {
|
|
895
|
-
title: 'API',
|
|
896
|
-
version: '1.0.0'
|
|
897
|
-
},
|
|
898
|
-
paths: {}
|
|
899
|
-
},
|
|
900
|
-
advanced: {
|
|
901
|
-
openapi: '3.1.0',
|
|
902
|
-
info: {
|
|
903
|
-
title: 'API',
|
|
904
|
-
version: '1.0.0'
|
|
905
|
-
},
|
|
906
|
-
servers: [
|
|
907
|
-
{ url: 'http://localhost:3000/api/v1', description: 'Development server' }
|
|
908
|
-
],
|
|
909
|
-
paths: {},
|
|
910
|
-
components: {
|
|
911
|
-
schemas: {}
|
|
912
|
-
}
|
|
913
|
-
},
|
|
914
|
-
industrial: {
|
|
915
|
-
openapi: '3.1.0',
|
|
916
|
-
info: {
|
|
917
|
-
title: 'Industrial API',
|
|
918
|
-
version: '1.0.0'
|
|
919
|
-
},
|
|
920
|
-
servers: [
|
|
921
|
-
{ url: 'http://localhost:3000/api/v1', description: 'Development server' }
|
|
922
|
-
],
|
|
923
|
-
paths: {
|
|
924
|
-
'/opcua/connect': {
|
|
925
|
-
post: {
|
|
926
|
-
summary: 'Connect to OPC UA server',
|
|
927
|
-
operationId: 'connectOpcUa',
|
|
928
|
-
requestBody: {
|
|
929
|
-
required: true,
|
|
930
|
-
content: {
|
|
931
|
-
'application/json': {
|
|
932
|
-
schema: {
|
|
933
|
-
type: 'object',
|
|
934
|
-
properties: {
|
|
935
|
-
endpoint: { type: 'string' },
|
|
936
|
-
securityMode: { type: 'string' }
|
|
937
|
-
}
|
|
938
|
-
}
|
|
939
|
-
}
|
|
940
|
-
}
|
|
941
|
-
},
|
|
942
|
-
responses: {
|
|
943
|
-
'200': {
|
|
944
|
-
description: 'Connection successful'
|
|
945
|
-
}
|
|
946
|
-
}
|
|
947
|
-
}
|
|
948
|
-
}
|
|
949
|
-
},
|
|
950
|
-
components: {
|
|
951
|
-
schemas: {}
|
|
952
|
-
}
|
|
953
|
-
}
|
|
954
|
-
};
|
|
955
|
-
return templates[template] || templates.basic;
|
|
956
|
-
}
|
|
957
|
-
getAllSpecifications() {
|
|
958
|
-
try {
|
|
959
|
-
if (!existsSync(this.config.specsDir))
|
|
960
|
-
return [];
|
|
961
|
-
return readdirSync(this.config.specsDir)
|
|
962
|
-
.filter(file => file.endsWith('.openapi.yml') || file.endsWith('.openapi.yaml'))
|
|
963
|
-
.map(file => {
|
|
964
|
-
const filePath = join(this.config.specsDir, file);
|
|
965
|
-
const stats = statSync(filePath);
|
|
966
|
-
return {
|
|
967
|
-
name: file.replace(/\.openapi\.ya?ml$/, ''),
|
|
968
|
-
path: filePath,
|
|
969
|
-
lastModified: stats.mtime.toISOString(),
|
|
970
|
-
size: stats.size
|
|
971
|
-
};
|
|
972
|
-
});
|
|
973
|
-
}
|
|
974
|
-
catch (error) {
|
|
975
|
-
this.log('error', `Failed to get specifications: ${error instanceof Error ? error.message : String(error)}`);
|
|
976
|
-
return [];
|
|
977
|
-
}
|
|
978
|
-
}
|
|
979
|
-
getAllAgents() {
|
|
980
|
-
try {
|
|
981
|
-
if (!existsSync(this.config.agentsDir))
|
|
982
|
-
return [];
|
|
983
|
-
return readdirSync(this.config.agentsDir, { withFileTypes: true })
|
|
984
|
-
.filter(dirent => dirent.isDirectory())
|
|
985
|
-
.map(dirent => ({
|
|
986
|
-
name: dirent.name,
|
|
987
|
-
path: join(this.config.agentsDir, dirent.name)
|
|
988
|
-
}));
|
|
989
|
-
}
|
|
990
|
-
catch (error) {
|
|
991
|
-
this.log('error', `Failed to get agents: ${error instanceof Error ? error.message : String(error)}`);
|
|
992
|
-
return [];
|
|
993
|
-
}
|
|
994
|
-
}
|
|
995
|
-
async validateAllSpecifications() {
|
|
996
|
-
const specs = this.getAllSpecifications();
|
|
997
|
-
for (const spec of specs) {
|
|
998
|
-
await this.validateSpecification(spec.name);
|
|
999
|
-
}
|
|
1000
|
-
}
|
|
1001
|
-
async validateAllAgents() {
|
|
1002
|
-
const agents = this.getAllAgents();
|
|
1003
|
-
for (const agent of agents) {
|
|
1004
|
-
await this.validateAgent(agent.name);
|
|
1005
|
-
}
|
|
1006
|
-
}
|
|
1007
|
-
async validateSpecification(name) {
|
|
1008
|
-
try {
|
|
1009
|
-
const specPath = join(this.config.specsDir, `${name}.openapi.yml`);
|
|
1010
|
-
if (!existsSync(specPath)) {
|
|
1011
|
-
this.log('error', `Specification not found: ${name}`);
|
|
1012
|
-
return false;
|
|
1013
|
-
}
|
|
1014
|
-
const content = readFileSync(specPath, 'utf8');
|
|
1015
|
-
const spec = yaml.load(content);
|
|
1016
|
-
const validation = OpenAPISchema.safeParse(spec);
|
|
1017
|
-
if (validation.success) {
|
|
1018
|
-
this.log('info', `✅ Specification ${name} is valid`);
|
|
1019
|
-
return true;
|
|
1020
|
-
}
|
|
1021
|
-
else {
|
|
1022
|
-
this.log('error', `❌ Specification ${name} is invalid`, validation.error.issues);
|
|
1023
|
-
return false;
|
|
1024
|
-
}
|
|
1025
|
-
}
|
|
1026
|
-
catch (error) {
|
|
1027
|
-
this.log('error', `Failed to validate specification ${name}: ${error instanceof Error ? error.message : String(error)}`);
|
|
1028
|
-
return false;
|
|
1029
|
-
}
|
|
1030
|
-
}
|
|
1031
|
-
async validateAgent(agentId) {
|
|
1032
|
-
try {
|
|
1033
|
-
// TODO: Implement agent validation logic
|
|
1034
|
-
this.log('info', `Validating agent: ${agentId}`);
|
|
1035
|
-
return true;
|
|
1036
|
-
}
|
|
1037
|
-
catch (error) {
|
|
1038
|
-
this.log('error', `Failed to validate agent ${agentId}: ${error instanceof Error ? error.message : String(error)}`);
|
|
1039
|
-
return false;
|
|
1040
|
-
}
|
|
1041
|
-
}
|
|
1042
|
-
async generateTypes(specName) {
|
|
1043
|
-
try {
|
|
1044
|
-
this.log('info', `Generating TypeScript types for ${specName}...`);
|
|
1045
|
-
// TODO: Implement TypeScript type generation
|
|
1046
|
-
}
|
|
1047
|
-
catch (error) {
|
|
1048
|
-
this.log('error', `Failed to generate types: ${error instanceof Error ? error.message : String(error)}`);
|
|
1049
|
-
}
|
|
1050
|
-
}
|
|
1051
|
-
run() {
|
|
1052
|
-
this.program.parse();
|
|
1053
|
-
}
|
|
1054
|
-
}
|
|
1055
|
-
// CLI entry point for ES modules
|
|
1056
|
-
if (import.meta.url === `file://${process.argv[1]}`) {
|
|
1057
|
-
const cli = new OSSACli();
|
|
1058
|
-
cli.run();
|
|
1059
|
-
}
|
|
1060
|
-
export default OSSACli;
|
|
1061
|
-
//# sourceMappingURL=ossa-cli.js.map
|