@bluefly/openstandardagents 0.2.4
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/.env.example +41 -0
- 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/.prettierignore +7 -0
- package/.prettierrc.json +10 -0
- package/.redocly.yaml +9 -0
- package/.releaserc.json +84 -0
- package/.releaserc.json.disabled +81 -0
- package/CHANGELOG.md +152 -0
- package/CONTRIBUTING.md +249 -0
- package/LICENSE +190 -0
- package/README.md +280 -0
- package/bin/ossa +8 -0
- package/bin/validate-ossa-0.2.2.ts +244 -0
- package/dist/di-container.d.ts +18 -0
- package/dist/di-container.d.ts.map +1 -0
- package/dist/di-container.js +43 -0
- package/dist/di-container.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/dist/repositories/manifest.repository.d.ts +26 -0
- package/dist/repositories/manifest.repository.d.ts.map +1 -0
- package/dist/repositories/manifest.repository.js +90 -0
- package/dist/repositories/manifest.repository.js.map +1 -0
- package/dist/repositories/schema.repository.d.ts +30 -0
- package/dist/repositories/schema.repository.d.ts.map +1 -0
- package/dist/repositories/schema.repository.js +143 -0
- package/dist/repositories/schema.repository.js.map +1 -0
- package/dist/services/generation.service.d.ts +54 -0
- package/dist/services/generation.service.d.ts.map +1 -0
- package/dist/services/generation.service.js +298 -0
- package/dist/services/generation.service.js.map +1 -0
- package/dist/services/migration.service.d.ts +30 -0
- package/dist/services/migration.service.d.ts.map +1 -0
- package/dist/services/migration.service.js +231 -0
- package/dist/services/migration.service.js.map +1 -0
- package/dist/services/runtime/openai.adapter.d.ts +94 -0
- package/dist/services/runtime/openai.adapter.d.ts.map +1 -0
- package/dist/services/runtime/openai.adapter.js +209 -0
- package/dist/services/runtime/openai.adapter.js.map +1 -0
- package/dist/services/validation.service.d.ts +45 -0
- package/dist/services/validation.service.d.ts.map +1 -0
- package/dist/services/validation.service.js +362 -0
- package/dist/services/validation.service.js.map +1 -0
- package/dist/services/validators/anthropic.validator.d.ts +9 -0
- package/dist/services/validators/anthropic.validator.d.ts.map +1 -0
- package/dist/services/validators/anthropic.validator.js +105 -0
- package/dist/services/validators/anthropic.validator.js.map +1 -0
- package/dist/services/validators/autogen.validator.d.ts +9 -0
- package/dist/services/validators/autogen.validator.d.ts.map +1 -0
- package/dist/services/validators/autogen.validator.js +111 -0
- package/dist/services/validators/autogen.validator.js.map +1 -0
- package/dist/services/validators/crewai.validator.d.ts +9 -0
- package/dist/services/validators/crewai.validator.d.ts.map +1 -0
- package/dist/services/validators/crewai.validator.js +117 -0
- package/dist/services/validators/crewai.validator.js.map +1 -0
- package/dist/services/validators/cursor.validator.d.ts +9 -0
- package/dist/services/validators/cursor.validator.d.ts.map +1 -0
- package/dist/services/validators/cursor.validator.js +88 -0
- package/dist/services/validators/cursor.validator.js.map +1 -0
- package/dist/services/validators/index.d.ts +15 -0
- package/dist/services/validators/index.d.ts.map +1 -0
- package/dist/services/validators/index.js +15 -0
- package/dist/services/validators/index.js.map +1 -0
- package/dist/services/validators/langchain.validator.d.ts +9 -0
- package/dist/services/validators/langchain.validator.d.ts.map +1 -0
- package/dist/services/validators/langchain.validator.js +103 -0
- package/dist/services/validators/langchain.validator.js.map +1 -0
- package/dist/services/validators/langflow.validator.d.ts +9 -0
- package/dist/services/validators/langflow.validator.d.ts.map +1 -0
- package/dist/services/validators/langflow.validator.js +92 -0
- package/dist/services/validators/langflow.validator.js.map +1 -0
- package/dist/services/validators/langgraph.validator.d.ts +9 -0
- package/dist/services/validators/langgraph.validator.d.ts.map +1 -0
- package/dist/services/validators/langgraph.validator.js +123 -0
- package/dist/services/validators/langgraph.validator.js.map +1 -0
- package/dist/services/validators/llamaindex.validator.d.ts +9 -0
- package/dist/services/validators/llamaindex.validator.d.ts.map +1 -0
- package/dist/services/validators/llamaindex.validator.js +121 -0
- package/dist/services/validators/llamaindex.validator.js.map +1 -0
- package/dist/services/validators/openai.validator.d.ts +9 -0
- package/dist/services/validators/openai.validator.d.ts.map +1 -0
- package/dist/services/validators/openai.validator.js +126 -0
- package/dist/services/validators/openai.validator.js.map +1 -0
- package/dist/services/validators/vercel-ai.validator.d.ts +9 -0
- package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -0
- package/dist/services/validators/vercel-ai.validator.js +99 -0
- package/dist/services/validators/vercel-ai.validator.js.map +1 -0
- package/dist/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
- package/dist/spec/v0.1.9/ecosystem-compliance.json +235 -0
- package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
- package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
- package/dist/spec/v0.1.9/reasoning-compliance.json +654 -0
- package/dist/spec/v0.2.2/kagent-enhancements.json +395 -0
- package/dist/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
- package/dist/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
- package/dist/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
- package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
- package/dist/spec/v0.2.3/README.md +154 -0
- package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/dist/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
- package/dist/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
- package/dist/spec/v0.2.4-dev/CHANGELOG.md +403 -0
- package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
- package/dist/spec/v0.2.5-dev/CHANGELOG.md +171 -0
- package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
- package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
- package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
- package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
- package/dist/types/index.d.ts +178 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +6 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/openapi-extensions.d.ts +164 -0
- package/dist/types/openapi-extensions.d.ts.map +1 -0
- package/dist/types/openapi-extensions.js +6 -0
- package/dist/types/openapi-extensions.js.map +1 -0
- package/docs/OSSA-COMPLIANT-BADGE.md +248 -0
- package/docs/README.md +31 -0
- package/docs/VERSIONING.md +284 -0
- package/docs/agent-openapi-spec.yml +942 -0
- package/docs/getting-started.md +87 -0
- package/docs/migration/general-agent-schema.yml +255 -0
- package/docs/migration/migration-manifest.json +64 -0
- package/docs/openapi-extensions.md +930 -0
- package/docs/schemas/openapi-extensions.schema.json +486 -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/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/junit.xml +1 -0
- package/openapi/drupal-agent-api.openapi.yaml +348 -0
- package/openapi/gitlab-orchestrator.openapi.yaml +330 -0
- package/openapi/helm-generator.openapi.yaml +389 -0
- package/openapi/ossa-core-api.openapi.yaml +1448 -0
- package/openapi/ossa-registry-api.openapi.yaml +980 -0
- package/openapi/ossa-registry.openapi.yaml +782 -0
- package/openapi/self-evolving-ecosystem.openapi.yaml +1530 -0
- package/openapi/unified-agent-gateway.openapi.yaml +833 -0
- package/ossa-website-swarm-tasks.json +105 -0
- package/package.json +132 -0
- package/release.config.js +64 -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/ossa-v0.1.9.schema.json.backup +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-dev/CHANGELOG.md +403 -0
- package/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
- package/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
- package/spec/v0.2.5-dev/CHANGELOG.md +171 -0
- package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
- package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
- package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
- package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
- package/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
- package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
- package/test-results.xml +1 -0
- package/website/.lighthouserc.js +20 -0
- package/website/.prettierrc +10 -0
- package/website/Dockerfile +17 -0
- package/website/app/about/page.tsx +295 -0
- package/website/app/api/validate/route.ts +88 -0
- package/website/app/blog/[slug]/page.tsx +167 -0
- package/website/app/blog/page.tsx +162 -0
- package/website/app/docs/[[...slug]]/page.tsx +349 -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 +123 -0
- package/website/app/globals.css +108 -0
- package/website/app/layout.tsx +106 -0
- package/website/app/page.tsx +409 -0
- package/website/app/playground/page.tsx +507 -0
- package/website/app/robots.ts +19 -0
- package/website/app/rss.xml/route.ts +74 -0
- package/website/app/schema/page.tsx +970 -0
- package/website/app/sitemap.ts +56 -0
- package/website/app/specification/page.tsx +211 -0
- package/website/components/InstallCommand.tsx +96 -0
- package/website/components/Logo.tsx +24 -0
- package/website/components/StructuredData.tsx +65 -0
- package/website/components/docs/DocsSearch.tsx +104 -0
- package/website/components/docs/DocsSidebar.tsx +118 -0
- package/website/components/docs/MarkdownContent.tsx +183 -0
- package/website/components/docs/VersionSelector.tsx +49 -0
- package/website/components/examples/ExamplesViewer.tsx +293 -0
- package/website/components/layout/Footer.tsx +111 -0
- package/website/components/layout/Header.tsx +170 -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 +209 -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 +160 -0
- package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
- package/website/content/docs/OpenAPI-Extensions.md +498 -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 +821 -0
- package/website/content/docs/ecosystem/overview.md +366 -0
- package/website/content/docs/examples/Migration-Guides.md +214 -0
- package/website/content/docs/examples.md +71 -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/for-audiences/architects.md +224 -0
- package/website/content/docs/for-audiences/developers.md +220 -0
- package/website/content/docs/getting-started/5-minute-overview.md +85 -0
- package/website/content/docs/getting-started/Hello-World.md +184 -0
- package/website/content/docs/getting-started/first-agent.md +196 -0
- package/website/content/docs/getting-started/installation.md +155 -0
- package/website/content/docs/getting-started/running-agents.md +107 -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/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/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/openai-to-ossa.md +1202 -0
- package/website/content/docs/openapi-extensions/examples.md +550 -0
- package/website/content/docs/openapi-extensions/index.md +495 -0
- package/website/content/docs/openapi-extensions/operation-extensions.md +398 -0
- package/website/content/docs/openapi-extensions/root-extensions.md +364 -0
- package/website/content/docs/pre-release/index.md +175 -0
- package/website/content/docs/quick-reference.md +17 -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/lib/version.ts +18 -0
- package/website/next.config.js +17 -0
- package/website/next.config.ts +16 -0
- package/website/nginx.conf +32 -0
- package/website/package-lock.json +9145 -0
- package/website/package.json +53 -0
- package/website/postcss.config.js +7 -0
- package/website/postcss.config.mjs +9 -0
- package/website/scripts/sync-version.js +44 -0
- package/website/scripts/sync-wiki.ts +261 -0
- package/website/tailwind.config.js +58 -0
- package/website/tailwind.config.ts +65 -0
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
# Hybrid Model Strategy: Fast Local Planning + Premium Development
|
|
2
|
+
# Demonstrates using fast Ollama models for planning agents and Claude for development
|
|
3
|
+
|
|
4
|
+
apiVersion: ossa.io/v0.1.9
|
|
5
|
+
kind: Workflow
|
|
6
|
+
metadata:
|
|
7
|
+
name: hybrid-development-workflow
|
|
8
|
+
description: "Cost-optimized workflow using fast local models for planning and premium models for development"
|
|
9
|
+
|
|
10
|
+
spec:
|
|
11
|
+
# Planning Phase - Use Fast Local Models
|
|
12
|
+
agents:
|
|
13
|
+
# Fast planning agent using local Ollama
|
|
14
|
+
- name: project-planner
|
|
15
|
+
type: orchestrator
|
|
16
|
+
ossa_type: orchestrator
|
|
17
|
+
modelConfig:
|
|
18
|
+
provider: "ollama"
|
|
19
|
+
model: "mistral:7b" # Fast 1-2 second responses
|
|
20
|
+
parameters:
|
|
21
|
+
temperature: 0.3
|
|
22
|
+
max_tokens: 2000
|
|
23
|
+
ollamaConfig:
|
|
24
|
+
baseUrl: "http://localhost:11434"
|
|
25
|
+
keepAlive: "5m"
|
|
26
|
+
capabilities:
|
|
27
|
+
- project-planning
|
|
28
|
+
- task-breakdown
|
|
29
|
+
- resource-estimation
|
|
30
|
+
instruction: |
|
|
31
|
+
You are a fast project planning agent. Quickly break down development tasks:
|
|
32
|
+
- Analyze requirements
|
|
33
|
+
- Create task breakdown structure
|
|
34
|
+
- Estimate effort and dependencies
|
|
35
|
+
- Identify risks and blockers
|
|
36
|
+
Store plan in {project_plan}
|
|
37
|
+
output_key: project_plan
|
|
38
|
+
|
|
39
|
+
# Fast requirement analyzer using local model
|
|
40
|
+
- name: requirements-analyzer
|
|
41
|
+
type: critic
|
|
42
|
+
ossa_type: critic
|
|
43
|
+
modelConfig:
|
|
44
|
+
provider: "ollama"
|
|
45
|
+
model: "qwen2.5:7b" # Good for analysis, fast
|
|
46
|
+
parameters:
|
|
47
|
+
temperature: 0.2
|
|
48
|
+
max_tokens: 1500
|
|
49
|
+
ollamaConfig:
|
|
50
|
+
baseUrl: "http://localhost:11434"
|
|
51
|
+
capabilities:
|
|
52
|
+
- requirements-analysis
|
|
53
|
+
- user-story-validation
|
|
54
|
+
- acceptance-criteria
|
|
55
|
+
instruction: |
|
|
56
|
+
Quickly analyze requirements for clarity and completeness:
|
|
57
|
+
- Validate user stories
|
|
58
|
+
- Identify missing requirements
|
|
59
|
+
- Check for conflicts or ambiguities
|
|
60
|
+
Store analysis in {requirements_analysis}
|
|
61
|
+
output_key: requirements_analysis
|
|
62
|
+
|
|
63
|
+
# Development Phase - Use Premium Models
|
|
64
|
+
# Premium development agent using Claude Code
|
|
65
|
+
- name: senior-developer
|
|
66
|
+
type: worker
|
|
67
|
+
ossa_type: worker
|
|
68
|
+
modelConfig:
|
|
69
|
+
provider: "anthropic"
|
|
70
|
+
model: "claude-3-5-sonnet-20241022"
|
|
71
|
+
parameters:
|
|
72
|
+
temperature: 0.1 # Low temperature for precise code
|
|
73
|
+
max_tokens: 8000
|
|
74
|
+
anthropicConfig:
|
|
75
|
+
apiKey: "${ANTHROPIC_API_KEY}"
|
|
76
|
+
defaultHeaders:
|
|
77
|
+
"anthropic-beta": "computer-use-2024-10-22"
|
|
78
|
+
capabilities:
|
|
79
|
+
- code-generation
|
|
80
|
+
- architecture-design
|
|
81
|
+
- best-practices
|
|
82
|
+
- testing
|
|
83
|
+
- documentation
|
|
84
|
+
instruction: |
|
|
85
|
+
You are an expert senior developer using best practices:
|
|
86
|
+
- Write clean, maintainable code
|
|
87
|
+
- Follow SOLID principles
|
|
88
|
+
- Include comprehensive tests
|
|
89
|
+
- Add proper documentation
|
|
90
|
+
- Consider security and performance
|
|
91
|
+
Use {project_plan} and {requirements_analysis} as context
|
|
92
|
+
tools:
|
|
93
|
+
- file-operations
|
|
94
|
+
- git-operations
|
|
95
|
+
- test-runner
|
|
96
|
+
- linter
|
|
97
|
+
output_key: development_result
|
|
98
|
+
|
|
99
|
+
# Code review agent using Claude
|
|
100
|
+
- name: code-reviewer
|
|
101
|
+
type: critic
|
|
102
|
+
ossa_type: critic
|
|
103
|
+
modelConfig:
|
|
104
|
+
provider: "anthropic"
|
|
105
|
+
model: "claude-3-5-sonnet-20241022"
|
|
106
|
+
parameters:
|
|
107
|
+
temperature: 0.05 # Very low for consistent reviews
|
|
108
|
+
max_tokens: 6000
|
|
109
|
+
capabilities:
|
|
110
|
+
- code-review
|
|
111
|
+
- security-analysis
|
|
112
|
+
- performance-review
|
|
113
|
+
- maintainability-check
|
|
114
|
+
instruction: |
|
|
115
|
+
Perform thorough code review focusing on:
|
|
116
|
+
- Code quality and best practices
|
|
117
|
+
- Security vulnerabilities
|
|
118
|
+
- Performance issues
|
|
119
|
+
- Maintainability concerns
|
|
120
|
+
- Test coverage and quality
|
|
121
|
+
Review {development_result} and provide detailed feedback
|
|
122
|
+
output_key: code_review
|
|
123
|
+
|
|
124
|
+
# Optimization Phase - Use Local Models for Simple Tasks
|
|
125
|
+
# Documentation generator using local model
|
|
126
|
+
- name: doc-generator
|
|
127
|
+
type: worker
|
|
128
|
+
ossa_type: worker
|
|
129
|
+
modelConfig:
|
|
130
|
+
provider: "ollama"
|
|
131
|
+
model: "codellama:7b" # Good for documentation
|
|
132
|
+
parameters:
|
|
133
|
+
temperature: 0.4
|
|
134
|
+
max_tokens: 3000
|
|
135
|
+
capabilities:
|
|
136
|
+
- documentation-generation
|
|
137
|
+
- api-docs
|
|
138
|
+
- readme-creation
|
|
139
|
+
instruction: |
|
|
140
|
+
Generate comprehensive documentation based on {development_result}:
|
|
141
|
+
- API documentation
|
|
142
|
+
- Usage examples
|
|
143
|
+
- Installation instructions
|
|
144
|
+
- Architecture overview
|
|
145
|
+
output_key: documentation
|
|
146
|
+
|
|
147
|
+
# Cost Optimization Configuration
|
|
148
|
+
costOptimization:
|
|
149
|
+
strategy: "hybrid"
|
|
150
|
+
budgetLimits:
|
|
151
|
+
planning_phase: 0.01 # $0.01 - use free local models
|
|
152
|
+
development_phase: 1.00 # $1.00 - premium models for quality
|
|
153
|
+
optimization_phase: 0.05 # $0.05 - local models for docs
|
|
154
|
+
|
|
155
|
+
fallbackStrategy:
|
|
156
|
+
# If premium models unavailable, use these alternatives
|
|
157
|
+
fallbacks:
|
|
158
|
+
"claude-3-5-sonnet": "gpt-4o"
|
|
159
|
+
"gpt-4o": "gemini-2.0-flash"
|
|
160
|
+
"gemini-2.0-flash": "ollama:qwen2.5:7b"
|
|
161
|
+
|
|
162
|
+
# Performance Targets
|
|
163
|
+
performance:
|
|
164
|
+
planning_phase:
|
|
165
|
+
target_latency: "5s" # Fast local responses
|
|
166
|
+
cost_per_task: "$0.00" # Free local inference
|
|
167
|
+
development_phase:
|
|
168
|
+
target_latency: "30s" # Quality over speed
|
|
169
|
+
cost_per_task: "$0.50" # Premium model investment
|
|
170
|
+
optimization_phase:
|
|
171
|
+
target_latency: "10s" # Fast local processing
|
|
172
|
+
cost_per_task: "$0.02" # Minimal cost
|
|
173
|
+
|
|
174
|
+
# Execution Flow
|
|
175
|
+
execution:
|
|
176
|
+
phases:
|
|
177
|
+
- name: planning
|
|
178
|
+
agents: [project-planner, requirements-analyzer]
|
|
179
|
+
execution_mode: parallel
|
|
180
|
+
budget_limit: 0.01
|
|
181
|
+
|
|
182
|
+
- name: development
|
|
183
|
+
agents: [senior-developer]
|
|
184
|
+
execution_mode: sequential
|
|
185
|
+
dependencies: [planning]
|
|
186
|
+
budget_limit: 1.00
|
|
187
|
+
|
|
188
|
+
- name: review
|
|
189
|
+
agents: [code-reviewer]
|
|
190
|
+
execution_mode: sequential
|
|
191
|
+
dependencies: [development]
|
|
192
|
+
budget_limit: 0.30
|
|
193
|
+
|
|
194
|
+
- name: documentation
|
|
195
|
+
agents: [doc-generator]
|
|
196
|
+
execution_mode: sequential
|
|
197
|
+
dependencies: [development]
|
|
198
|
+
budget_limit: 0.05
|
|
199
|
+
|
|
200
|
+
# Quality gates
|
|
201
|
+
quality_gates:
|
|
202
|
+
- phase: development
|
|
203
|
+
condition: "code_review.score > 8.0"
|
|
204
|
+
action: "proceed"
|
|
205
|
+
- phase: development
|
|
206
|
+
condition: "code_review.security_issues > 0"
|
|
207
|
+
action: "retry_with_feedback"
|
|
208
|
+
|
|
209
|
+
---
|
|
210
|
+
# Example Environment Configuration
|
|
211
|
+
# .env file should contain:
|
|
212
|
+
|
|
213
|
+
# Fast local models for planning
|
|
214
|
+
OLLAMA_BASE_URL=http://localhost:11434
|
|
215
|
+
PLANNING_MODEL=mistral:7b
|
|
216
|
+
ANALYSIS_MODEL=qwen2.5:7b
|
|
217
|
+
DOC_MODEL=codellama:7b
|
|
218
|
+
|
|
219
|
+
# Premium models for development
|
|
220
|
+
ANTHROPIC_API_KEY=sk-ant-...
|
|
221
|
+
DEVELOPMENT_MODEL=claude-3-5-sonnet-20241022
|
|
222
|
+
REVIEW_MODEL=claude-3-5-sonnet-20241022
|
|
223
|
+
|
|
224
|
+
# Cost controls
|
|
225
|
+
MAX_PLANNING_COST=0.01
|
|
226
|
+
MAX_DEVELOPMENT_COST=1.00
|
|
227
|
+
MAX_TOTAL_COST=2.00
|
|
228
|
+
|
|
229
|
+
# Performance settings
|
|
230
|
+
PLANNING_TIMEOUT=10s
|
|
231
|
+
DEVELOPMENT_TIMEOUT=300s
|
|
232
|
+
REVIEW_TIMEOUT=120s
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
apiVersion: ossa.io/v0.1.9
|
|
2
|
+
kind: Agent
|
|
3
|
+
metadata:
|
|
4
|
+
name: code-quality-critic
|
|
5
|
+
version: v1.0.0
|
|
6
|
+
description: 'Quality assurance agent for code review, testing, and continuous improvement'
|
|
7
|
+
author: 'quality-engineering-team'
|
|
8
|
+
labels:
|
|
9
|
+
environment: production
|
|
10
|
+
classification: internal
|
|
11
|
+
role: critic
|
|
12
|
+
complexity: standard
|
|
13
|
+
spec:
|
|
14
|
+
type: critic
|
|
15
|
+
subtype: code-reviewer
|
|
16
|
+
capabilities:
|
|
17
|
+
domains:
|
|
18
|
+
- code-review
|
|
19
|
+
- quality-assessment
|
|
20
|
+
- testing-validation
|
|
21
|
+
- security-analysis
|
|
22
|
+
- performance-analysis
|
|
23
|
+
- documentation-review
|
|
24
|
+
operations:
|
|
25
|
+
- analyze-code
|
|
26
|
+
- review-changes
|
|
27
|
+
- assess-quality
|
|
28
|
+
- detect-issues
|
|
29
|
+
- suggest-improvements
|
|
30
|
+
- validate-tests
|
|
31
|
+
patterns:
|
|
32
|
+
- static-analysis
|
|
33
|
+
- dynamic-analysis
|
|
34
|
+
- peer-review
|
|
35
|
+
- automated-testing
|
|
36
|
+
- quality-gates
|
|
37
|
+
- continuous-feedback
|
|
38
|
+
protocols:
|
|
39
|
+
supported:
|
|
40
|
+
- name: rest
|
|
41
|
+
version: '1.1'
|
|
42
|
+
endpoint: 'https://critic.platform.com/api/v1'
|
|
43
|
+
authentication:
|
|
44
|
+
type: bearer-token
|
|
45
|
+
scopes: ['critic.review', 'code.analyze', 'quality.assess']
|
|
46
|
+
tls: true
|
|
47
|
+
- name: webhook
|
|
48
|
+
version: '1.0'
|
|
49
|
+
endpoint: 'https://critic.platform.com/webhooks/review'
|
|
50
|
+
authentication:
|
|
51
|
+
type: hmac-sha256
|
|
52
|
+
- name: grpc
|
|
53
|
+
version: '1.0'
|
|
54
|
+
endpoint: 'grpc://critic.platform.com:9443/CodeCritic'
|
|
55
|
+
authentication:
|
|
56
|
+
type: mutual-tls
|
|
57
|
+
analysis:
|
|
58
|
+
codeQuality:
|
|
59
|
+
complexity: true
|
|
60
|
+
maintainability: true
|
|
61
|
+
reliability: true
|
|
62
|
+
security: true
|
|
63
|
+
performance: true
|
|
64
|
+
testability: true
|
|
65
|
+
staticAnalysis:
|
|
66
|
+
syntaxChecking: true
|
|
67
|
+
typeChecking: true
|
|
68
|
+
styleChecking: true
|
|
69
|
+
securityScanning: true
|
|
70
|
+
dependencyAnalysis: true
|
|
71
|
+
supportedLanguages:
|
|
72
|
+
- javascript
|
|
73
|
+
- typescript
|
|
74
|
+
- python
|
|
75
|
+
- java
|
|
76
|
+
- go
|
|
77
|
+
- rust
|
|
78
|
+
- csharp
|
|
79
|
+
qualityMetrics:
|
|
80
|
+
cyclomaticComplexity: true
|
|
81
|
+
codeChurn: true
|
|
82
|
+
testCoverage: true
|
|
83
|
+
duplication: true
|
|
84
|
+
maintainabilityIndex: true
|
|
85
|
+
review:
|
|
86
|
+
automatedReview: true
|
|
87
|
+
humanReview: true
|
|
88
|
+
reviewCriteria:
|
|
89
|
+
functionality: true
|
|
90
|
+
readability: true
|
|
91
|
+
maintainability: true
|
|
92
|
+
performance: true
|
|
93
|
+
security: true
|
|
94
|
+
testCoverage: true
|
|
95
|
+
scoring:
|
|
96
|
+
scale: '0-100'
|
|
97
|
+
passThreshold: 70
|
|
98
|
+
categories:
|
|
99
|
+
- functionality
|
|
100
|
+
- quality
|
|
101
|
+
- security
|
|
102
|
+
- performance
|
|
103
|
+
- maintainability
|
|
104
|
+
feedback:
|
|
105
|
+
suggestions: true
|
|
106
|
+
improvements: true
|
|
107
|
+
bestPractices: true
|
|
108
|
+
patterns: true
|
|
109
|
+
antiPatterns: true
|
|
110
|
+
learningResources: true
|
|
111
|
+
priority:
|
|
112
|
+
- critical
|
|
113
|
+
- high
|
|
114
|
+
- medium
|
|
115
|
+
- low
|
|
116
|
+
- info
|
|
117
|
+
integration:
|
|
118
|
+
versionControl:
|
|
119
|
+
- git
|
|
120
|
+
- mercurial
|
|
121
|
+
- subversion
|
|
122
|
+
cicdPlatforms:
|
|
123
|
+
- gitlab
|
|
124
|
+
- github
|
|
125
|
+
- jenkins
|
|
126
|
+
- azure-devops
|
|
127
|
+
issueTracking:
|
|
128
|
+
- jira
|
|
129
|
+
- github-issues
|
|
130
|
+
- gitlab-issues
|
|
131
|
+
performance:
|
|
132
|
+
throughput:
|
|
133
|
+
reviewsPerHour: 50
|
|
134
|
+
linesOfCodePerMinute: 1000
|
|
135
|
+
latency:
|
|
136
|
+
analysisTime: 30000
|
|
137
|
+
reviewTime: 120000
|
|
138
|
+
feedbackTime: 5000
|
|
139
|
+
p95: 180000
|
|
140
|
+
p99: 300000
|
|
141
|
+
monitoring:
|
|
142
|
+
reviewMetrics: true
|
|
143
|
+
qualityTrends: true
|
|
144
|
+
performanceMetrics: true
|
|
145
|
+
errorTracking: true
|
|
146
|
+
alerting:
|
|
147
|
+
reviewFailureThreshold: 5
|
|
148
|
+
qualityDegradationThreshold: 10
|
|
149
|
+
performanceThreshold: 300000
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
apiVersion: ossa.io/v0.1.9
|
|
2
|
+
kind: Agent
|
|
3
|
+
metadata:
|
|
4
|
+
name: policy-compliance-governor
|
|
5
|
+
version: v1.1.0
|
|
6
|
+
description: 'Governance agent enforcing policies, compliance, and security standards across systems'
|
|
7
|
+
author: 'governance-team'
|
|
8
|
+
labels:
|
|
9
|
+
environment: production
|
|
10
|
+
classification: internal
|
|
11
|
+
role: governor
|
|
12
|
+
complexity: enterprise
|
|
13
|
+
spec:
|
|
14
|
+
type: governor
|
|
15
|
+
subtype: policy-enforcer
|
|
16
|
+
capabilities:
|
|
17
|
+
domains:
|
|
18
|
+
- policy-enforcement
|
|
19
|
+
- compliance-checking
|
|
20
|
+
- security-governance
|
|
21
|
+
- resource-management
|
|
22
|
+
- audit-tracking
|
|
23
|
+
- risk-assessment
|
|
24
|
+
operations:
|
|
25
|
+
- enforce-policies
|
|
26
|
+
- validate-compliance
|
|
27
|
+
- assess-risks
|
|
28
|
+
- audit-activities
|
|
29
|
+
- manage-permissions
|
|
30
|
+
- generate-reports
|
|
31
|
+
patterns:
|
|
32
|
+
- policy-as-code
|
|
33
|
+
- audit-trail
|
|
34
|
+
- role-based-access
|
|
35
|
+
- compliance-framework
|
|
36
|
+
- risk-matrix
|
|
37
|
+
- governance-workflow
|
|
38
|
+
protocols:
|
|
39
|
+
supported:
|
|
40
|
+
- name: rest
|
|
41
|
+
version: '1.1'
|
|
42
|
+
endpoint: 'https://governor.platform.com/api/v1'
|
|
43
|
+
authentication:
|
|
44
|
+
type: oauth2
|
|
45
|
+
scopes: ['governor.enforce', 'policies.validate', 'compliance.audit']
|
|
46
|
+
tls: true
|
|
47
|
+
- name: grpc
|
|
48
|
+
version: '1.0'
|
|
49
|
+
endpoint: 'grpc://governor.platform.com:9443/PolicyGovernor'
|
|
50
|
+
authentication:
|
|
51
|
+
type: mutual-tls
|
|
52
|
+
- name: webhook
|
|
53
|
+
version: '1.0'
|
|
54
|
+
endpoint: 'https://governor.platform.com/webhooks'
|
|
55
|
+
authentication:
|
|
56
|
+
type: hmac-sha256
|
|
57
|
+
governance:
|
|
58
|
+
policyEngine: 'open-policy-agent'
|
|
59
|
+
complianceFrameworks:
|
|
60
|
+
- soc2
|
|
61
|
+
- pci-dss
|
|
62
|
+
- gdpr
|
|
63
|
+
- hipaa
|
|
64
|
+
- iso27001
|
|
65
|
+
enforcementModes:
|
|
66
|
+
- advisory
|
|
67
|
+
- blocking
|
|
68
|
+
- logging
|
|
69
|
+
auditRetention: '7y'
|
|
70
|
+
riskAssessment:
|
|
71
|
+
frequency: 'weekly'
|
|
72
|
+
severity: ['low', 'medium', 'high', 'critical']
|
|
73
|
+
impact: ['minimal', 'moderate', 'significant', 'severe']
|
|
74
|
+
policies:
|
|
75
|
+
categories:
|
|
76
|
+
- security
|
|
77
|
+
- privacy
|
|
78
|
+
- operational
|
|
79
|
+
- financial
|
|
80
|
+
- regulatory
|
|
81
|
+
evaluation:
|
|
82
|
+
realtime: true
|
|
83
|
+
batch: true
|
|
84
|
+
scheduled: true
|
|
85
|
+
versioning:
|
|
86
|
+
enabled: true
|
|
87
|
+
approvalRequired: true
|
|
88
|
+
rollbackCapable: true
|
|
89
|
+
compliance:
|
|
90
|
+
continuousMonitoring: true
|
|
91
|
+
reportingFrequency: 'monthly'
|
|
92
|
+
evidenceCollection: true
|
|
93
|
+
controlMapping: true
|
|
94
|
+
attestation:
|
|
95
|
+
required: true
|
|
96
|
+
frequency: 'quarterly'
|
|
97
|
+
approvers: ['compliance-officer', 'security-lead']
|
|
98
|
+
security:
|
|
99
|
+
accessControl:
|
|
100
|
+
rbac: true
|
|
101
|
+
abac: true
|
|
102
|
+
mfa: required
|
|
103
|
+
encryption:
|
|
104
|
+
atRest: true
|
|
105
|
+
inTransit: true
|
|
106
|
+
keyRotation: '90d'
|
|
107
|
+
logging:
|
|
108
|
+
auditLogs: true
|
|
109
|
+
securityEvents: true
|
|
110
|
+
dataAccess: true
|
|
111
|
+
performance:
|
|
112
|
+
throughput:
|
|
113
|
+
policiesPerSecond: 100
|
|
114
|
+
validationsPerSecond: 500
|
|
115
|
+
latency:
|
|
116
|
+
policyEvaluation: 50
|
|
117
|
+
complianceCheck: 100
|
|
118
|
+
p95: 200
|
|
119
|
+
p99: 500
|
|
120
|
+
monitoring:
|
|
121
|
+
policyViolations: true
|
|
122
|
+
complianceStatus: true
|
|
123
|
+
riskMetrics: true
|
|
124
|
+
auditTrail: true
|
|
125
|
+
alerting:
|
|
126
|
+
policyViolationThreshold: 1
|
|
127
|
+
complianceFailureThreshold: 1
|
|
128
|
+
riskEscalationThreshold: 'high'
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
apiVersion: ossa.io/v0.1.9
|
|
2
|
+
kind: Agent
|
|
3
|
+
metadata:
|
|
4
|
+
name: multi-system-integrator
|
|
5
|
+
version: v1.4.0
|
|
6
|
+
description: 'Enterprise integration agent for connecting heterogeneous systems and APIs'
|
|
7
|
+
author: 'integration-team'
|
|
8
|
+
labels:
|
|
9
|
+
environment: production
|
|
10
|
+
classification: internal
|
|
11
|
+
role: integrator
|
|
12
|
+
complexity: enterprise
|
|
13
|
+
spec:
|
|
14
|
+
type: integrator
|
|
15
|
+
subtype: api-connector
|
|
16
|
+
capabilities:
|
|
17
|
+
domains:
|
|
18
|
+
- api-integration
|
|
19
|
+
- data-synchronization
|
|
20
|
+
- protocol-translation
|
|
21
|
+
- message-routing
|
|
22
|
+
- schema-mapping
|
|
23
|
+
- event-streaming
|
|
24
|
+
operations:
|
|
25
|
+
- connect-systems
|
|
26
|
+
- transform-protocols
|
|
27
|
+
- map-schemas
|
|
28
|
+
- route-messages
|
|
29
|
+
- synchronize-data
|
|
30
|
+
- handle-failures
|
|
31
|
+
patterns:
|
|
32
|
+
- adapter-pattern
|
|
33
|
+
- message-broker
|
|
34
|
+
- event-sourcing
|
|
35
|
+
- saga-pattern
|
|
36
|
+
- circuit-breaker
|
|
37
|
+
- retry-with-backoff
|
|
38
|
+
protocols:
|
|
39
|
+
supported:
|
|
40
|
+
- name: rest
|
|
41
|
+
version: '1.1'
|
|
42
|
+
endpoint: 'https://integrator.platform.com/api/v1'
|
|
43
|
+
authentication:
|
|
44
|
+
type: oauth2
|
|
45
|
+
scopes: ['integrator.execute', 'systems.connect', 'data.transform']
|
|
46
|
+
tls: true
|
|
47
|
+
- name: graphql
|
|
48
|
+
version: '1.0'
|
|
49
|
+
endpoint: 'https://integrator.platform.com/graphql'
|
|
50
|
+
authentication:
|
|
51
|
+
type: bearer-token
|
|
52
|
+
- name: websocket
|
|
53
|
+
version: '1.0'
|
|
54
|
+
endpoint: 'wss://events.platform.com/integrator'
|
|
55
|
+
authentication:
|
|
56
|
+
type: jwt
|
|
57
|
+
- name: grpc
|
|
58
|
+
version: '1.0'
|
|
59
|
+
endpoint: 'grpc://integrator.platform.com:9443/SystemIntegrator'
|
|
60
|
+
authentication:
|
|
61
|
+
type: mutual-tls
|
|
62
|
+
integration:
|
|
63
|
+
maxConcurrentConnections: 50
|
|
64
|
+
maxSystemsPerIntegration: 20
|
|
65
|
+
connectionTimeout: 30000
|
|
66
|
+
syncInterval: 60000
|
|
67
|
+
retryPolicy:
|
|
68
|
+
maxAttempts: 5
|
|
69
|
+
backoffStrategy: exponential
|
|
70
|
+
baseDelay: 2000
|
|
71
|
+
errorHandling:
|
|
72
|
+
strategy: circuit-breaker
|
|
73
|
+
failureThreshold: 10
|
|
74
|
+
recoveryTimeout: 300000
|
|
75
|
+
transformation:
|
|
76
|
+
schemaValidation: true
|
|
77
|
+
dataMapping: true
|
|
78
|
+
protocolConversion: true
|
|
79
|
+
formatTranslation: true
|
|
80
|
+
supportedFormats:
|
|
81
|
+
- json
|
|
82
|
+
- xml
|
|
83
|
+
- avro
|
|
84
|
+
- protobuf
|
|
85
|
+
- csv
|
|
86
|
+
performance:
|
|
87
|
+
throughput:
|
|
88
|
+
messagesPerSecond: 500
|
|
89
|
+
maxBatchSize: 50
|
|
90
|
+
latency:
|
|
91
|
+
integrationOverhead: 25
|
|
92
|
+
transformationTime: 15
|
|
93
|
+
p95: 100
|
|
94
|
+
p99: 250
|
|
95
|
+
monitoring:
|
|
96
|
+
connectionHealth: true
|
|
97
|
+
transformationMetrics: true
|
|
98
|
+
errorTracking: true
|
|
99
|
+
performanceMetrics: true
|
|
100
|
+
alerting:
|
|
101
|
+
connectionFailureThreshold: 3
|
|
102
|
+
transformationErrorThreshold: 10
|
|
103
|
+
latencyThreshold: 500
|