@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,256 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Enterprises"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# For Enterprises
|
|
6
|
+
|
|
7
|
+
Adopt OSSA for vendor independence, compliance, and enterprise-scale agent management.
|
|
8
|
+
|
|
9
|
+
## Enterprise Benefits
|
|
10
|
+
|
|
11
|
+
### Vendor Independence
|
|
12
|
+
|
|
13
|
+
✅ **No Framework Lock-in**: Build with any framework, deploy anywhere
|
|
14
|
+
✅ **Portable Agents**: Move agents between teams, clouds, organizations
|
|
15
|
+
✅ **Standard Contracts**: Consistent agent definitions across teams
|
|
16
|
+
✅ **Multi-Cloud Ready**: Deploy to AWS, GCP, Azure, on-premise
|
|
17
|
+
|
|
18
|
+
### Compliance & Governance
|
|
19
|
+
|
|
20
|
+
✅ **Standard Format**: Enables automated compliance checking
|
|
21
|
+
✅ **Audit Logging**: Standard observability across all agents
|
|
22
|
+
✅ **Cost Controls**: Declarative cost limits prevent overspending
|
|
23
|
+
✅ **Security Policies**: Standard security configuration
|
|
24
|
+
|
|
25
|
+
### Scalability
|
|
26
|
+
|
|
27
|
+
✅ **Enterprise Patterns**: Multi-agent orchestration, service mesh
|
|
28
|
+
✅ **Observability**: Distributed tracing, metrics, logging
|
|
29
|
+
✅ **Resource Management**: Declarative resource constraints
|
|
30
|
+
✅ **Performance Controls**: Latency and throughput limits
|
|
31
|
+
|
|
32
|
+
## Enterprise Adoption Guide
|
|
33
|
+
|
|
34
|
+
### Phase 1: Evaluation
|
|
35
|
+
|
|
36
|
+
1. **Understand OSSA**
|
|
37
|
+
- Review specification
|
|
38
|
+
- Study examples
|
|
39
|
+
- Evaluate fit
|
|
40
|
+
|
|
41
|
+
2. **Pilot Project**
|
|
42
|
+
- Select one team/project
|
|
43
|
+
- Migrate existing agent
|
|
44
|
+
- Measure results
|
|
45
|
+
|
|
46
|
+
3. **Assess Impact**
|
|
47
|
+
- Portability gains
|
|
48
|
+
- Cost savings
|
|
49
|
+
- Compliance improvements
|
|
50
|
+
|
|
51
|
+
### Phase 2: Rollout
|
|
52
|
+
|
|
53
|
+
1. **Training**
|
|
54
|
+
- Developer training
|
|
55
|
+
- Architecture guidelines
|
|
56
|
+
- Best practices
|
|
57
|
+
|
|
58
|
+
2. **Tooling**
|
|
59
|
+
- CI/CD integration
|
|
60
|
+
- Validation pipelines
|
|
61
|
+
- Deployment automation
|
|
62
|
+
|
|
63
|
+
3. **Governance**
|
|
64
|
+
- Policy enforcement
|
|
65
|
+
- Cost management
|
|
66
|
+
- Security controls
|
|
67
|
+
|
|
68
|
+
### Phase 3: Scale
|
|
69
|
+
|
|
70
|
+
1. **Organization-Wide**
|
|
71
|
+
- All teams adopt OSSA
|
|
72
|
+
- Central registry
|
|
73
|
+
- Shared patterns
|
|
74
|
+
|
|
75
|
+
2. **Optimization**
|
|
76
|
+
- Cost optimization
|
|
77
|
+
- Performance tuning
|
|
78
|
+
- Pattern refinement
|
|
79
|
+
|
|
80
|
+
## Compliance & Security
|
|
81
|
+
|
|
82
|
+
### Compliance Features
|
|
83
|
+
|
|
84
|
+
OSSA enables:
|
|
85
|
+
|
|
86
|
+
- **FedRAMP**: Compliance scanning agents
|
|
87
|
+
- **SOC 2**: Audit logging and controls
|
|
88
|
+
- **GDPR**: Data residency and encryption
|
|
89
|
+
- **HIPAA**: Healthcare compliance patterns
|
|
90
|
+
|
|
91
|
+
### Example: Compliance Agent
|
|
92
|
+
|
|
93
|
+
```yaml
|
|
94
|
+
apiVersion: ossa/v0.2.3
|
|
95
|
+
kind: Agent
|
|
96
|
+
|
|
97
|
+
metadata:
|
|
98
|
+
name: compliance-scanner
|
|
99
|
+
labels:
|
|
100
|
+
compliance: fedramp
|
|
101
|
+
classification: internal
|
|
102
|
+
|
|
103
|
+
spec:
|
|
104
|
+
role: Scan infrastructure for compliance
|
|
105
|
+
constraints:
|
|
106
|
+
cost:
|
|
107
|
+
maxCostPerDay: 50.00
|
|
108
|
+
observability:
|
|
109
|
+
logging:
|
|
110
|
+
level: info
|
|
111
|
+
format: json
|
|
112
|
+
audit: true
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Cost Management
|
|
116
|
+
|
|
117
|
+
### Cost Controls
|
|
118
|
+
|
|
119
|
+
```yaml
|
|
120
|
+
constraints:
|
|
121
|
+
cost:
|
|
122
|
+
maxTokensPerDay: 1000000
|
|
123
|
+
maxCostPerDay: 100.00
|
|
124
|
+
currency: USD
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
### Cost Optimization
|
|
128
|
+
|
|
129
|
+
1. **Model Selection**: Use appropriate models for tasks
|
|
130
|
+
2. **Token Limits**: Set realistic maxTokens
|
|
131
|
+
3. **Caching**: Cache responses
|
|
132
|
+
4. **Monitoring**: Track costs per agent
|
|
133
|
+
|
|
134
|
+
## Security Architecture
|
|
135
|
+
|
|
136
|
+
### Authentication & Authorization
|
|
137
|
+
|
|
138
|
+
```yaml
|
|
139
|
+
tools:
|
|
140
|
+
- type: http
|
|
141
|
+
auth:
|
|
142
|
+
type: mtls
|
|
143
|
+
credentials: CLIENT_CERT_SECRET
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### Network Security
|
|
147
|
+
|
|
148
|
+
- Service mesh integration
|
|
149
|
+
- mTLS between agents
|
|
150
|
+
- Network policies
|
|
151
|
+
- API gateways
|
|
152
|
+
|
|
153
|
+
### Secrets Management
|
|
154
|
+
|
|
155
|
+
- Use secret references (not values)
|
|
156
|
+
- Integrate with secret managers
|
|
157
|
+
- Rotate credentials regularly
|
|
158
|
+
|
|
159
|
+
## Governance
|
|
160
|
+
|
|
161
|
+
### Agent Lifecycle
|
|
162
|
+
|
|
163
|
+
1. **Development**: Validate with OSSA CLI
|
|
164
|
+
2. **Testing**: Automated validation in CI/CD
|
|
165
|
+
3. **Deployment**: Standardized deployment process
|
|
166
|
+
4. **Monitoring**: Observability and cost tracking
|
|
167
|
+
5. **Retirement**: Deprecation and cleanup
|
|
168
|
+
|
|
169
|
+
### Policy Enforcement
|
|
170
|
+
|
|
171
|
+
- **Cost Limits**: Enforce via constraints
|
|
172
|
+
- **Security**: Standard security config
|
|
173
|
+
- **Compliance**: Automated compliance checking
|
|
174
|
+
- **Quality**: Validation requirements
|
|
175
|
+
|
|
176
|
+
## Multi-Tenant Support
|
|
177
|
+
|
|
178
|
+
### Tenant Isolation
|
|
179
|
+
|
|
180
|
+
- Separate agent namespaces
|
|
181
|
+
- Resource quotas per tenant
|
|
182
|
+
- Cost tracking per tenant
|
|
183
|
+
- Access controls
|
|
184
|
+
|
|
185
|
+
### Example: Multi-Tenant Agent
|
|
186
|
+
|
|
187
|
+
```yaml
|
|
188
|
+
metadata:
|
|
189
|
+
name: tenant-{tenant-id}-agent
|
|
190
|
+
labels:
|
|
191
|
+
tenant: {tenant-id}
|
|
192
|
+
spec:
|
|
193
|
+
constraints:
|
|
194
|
+
cost:
|
|
195
|
+
maxCostPerDay: 10.00 # Per tenant
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
## Enterprise Patterns
|
|
199
|
+
|
|
200
|
+
### Pattern 1: Centralized Orchestration
|
|
201
|
+
|
|
202
|
+
- Central orchestrator agent
|
|
203
|
+
- Worker agents per team
|
|
204
|
+
- Shared infrastructure
|
|
205
|
+
- Centralized monitoring
|
|
206
|
+
|
|
207
|
+
### Pattern 2: Federated Agents
|
|
208
|
+
|
|
209
|
+
- Team-owned agents
|
|
210
|
+
- Shared registry
|
|
211
|
+
- Cross-team communication
|
|
212
|
+
- Distributed governance
|
|
213
|
+
|
|
214
|
+
### Pattern 3: Hybrid Approach
|
|
215
|
+
|
|
216
|
+
- Mix of centralized and federated
|
|
217
|
+
- Core services centralized
|
|
218
|
+
- Team services federated
|
|
219
|
+
- Shared patterns and tools
|
|
220
|
+
|
|
221
|
+
## Migration Strategy
|
|
222
|
+
|
|
223
|
+
### From Framework-Specific Agents
|
|
224
|
+
|
|
225
|
+
1. **Inventory**: List all existing agents
|
|
226
|
+
2. **Prioritize**: Start with high-value agents
|
|
227
|
+
3. **Migrate**: Convert to OSSA format
|
|
228
|
+
4. **Validate**: Ensure correctness
|
|
229
|
+
5. **Deploy**: Standard deployment process
|
|
230
|
+
|
|
231
|
+
### Migration Tools
|
|
232
|
+
|
|
233
|
+
- OSSA CLI migration command
|
|
234
|
+
- Custom migration scripts
|
|
235
|
+
- Framework-specific guides
|
|
236
|
+
|
|
237
|
+
## Support & Resources
|
|
238
|
+
|
|
239
|
+
### Enterprise Support
|
|
240
|
+
|
|
241
|
+
- [GitHub Issues](https://github.com/blueflyio/openstandardagents/issues)
|
|
242
|
+
- [Documentation](../Technical/Specification-Deep-Dive)
|
|
243
|
+
- [Examples](../Examples/Enterprise-Examples)
|
|
244
|
+
|
|
245
|
+
### Training
|
|
246
|
+
|
|
247
|
+
- Architecture workshops
|
|
248
|
+
- Developer training
|
|
249
|
+
- Best practices sessions
|
|
250
|
+
|
|
251
|
+
## Related Resources
|
|
252
|
+
|
|
253
|
+
- [Architecture Guide](../For-Audiences/Architects)
|
|
254
|
+
- [Technical Documentation](../Technical/Specification-Deep-Dive)
|
|
255
|
+
- [Enterprise Examples](../Examples/Enterprise-Examples)
|
|
256
|
+
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Students Researchers"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# For Students & Researchers
|
|
6
|
+
|
|
7
|
+
OSSA provides a standard format for studying, comparing, and researching AI agent architectures.
|
|
8
|
+
|
|
9
|
+
## Why OSSA for Research?
|
|
10
|
+
|
|
11
|
+
### Standard Format Enables Comparison
|
|
12
|
+
|
|
13
|
+
Before OSSA, comparing agents across frameworks was difficult:
|
|
14
|
+
- Different code structures
|
|
15
|
+
- Framework-specific implementations
|
|
16
|
+
- No standard metrics
|
|
17
|
+
|
|
18
|
+
With OSSA:
|
|
19
|
+
- ✅ Standard format enables direct comparison
|
|
20
|
+
- ✅ Framework-agnostic research
|
|
21
|
+
- ✅ Reproducible experiments
|
|
22
|
+
- ✅ Academic paper support
|
|
23
|
+
|
|
24
|
+
## Research Use Cases
|
|
25
|
+
|
|
26
|
+
### 1. Agent Architecture Comparison
|
|
27
|
+
|
|
28
|
+
Compare agent designs across frameworks:
|
|
29
|
+
|
|
30
|
+
```yaml
|
|
31
|
+
# LangChain agent → OSSA
|
|
32
|
+
# Anthropic SDK agent → OSSA
|
|
33
|
+
# Custom framework → OSSA
|
|
34
|
+
# Compare capabilities, performance, cost
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### 2. Multi-Agent System Research
|
|
38
|
+
|
|
39
|
+
Study agent orchestration patterns:
|
|
40
|
+
|
|
41
|
+
- Agent-to-agent communication
|
|
42
|
+
- Workflow patterns
|
|
43
|
+
- Failure recovery
|
|
44
|
+
- Cost optimization
|
|
45
|
+
|
|
46
|
+
### 3. Framework Migration Studies
|
|
47
|
+
|
|
48
|
+
Research migration patterns:
|
|
49
|
+
|
|
50
|
+
- Framework lock-in analysis
|
|
51
|
+
- Portability metrics
|
|
52
|
+
- Migration complexity
|
|
53
|
+
- Performance impact
|
|
54
|
+
|
|
55
|
+
## Academic Resources
|
|
56
|
+
|
|
57
|
+
### Papers & Publications
|
|
58
|
+
|
|
59
|
+
- OSSA Specification: [spec/v0.2.2/ossa-0.2.2.schema.json](https://github.com/blueflyio/openstandardagents/blob/main/spec/v0.2.2/ossa-0.2.2.schema.json)
|
|
60
|
+
- Examples Library: [examples/](https://github.com/blueflyio/openstandardagents/tree/main/examples)
|
|
61
|
+
|
|
62
|
+
### Research Questions
|
|
63
|
+
|
|
64
|
+
1. **How do different LLM providers affect agent performance?**
|
|
65
|
+
- Compare OpenAI, Anthropic, Google agents in OSSA format
|
|
66
|
+
- Measure latency, cost, accuracy
|
|
67
|
+
|
|
68
|
+
2. **What are optimal agent orchestration patterns?**
|
|
69
|
+
- Study multi-agent workflows
|
|
70
|
+
- Analyze failure recovery strategies
|
|
71
|
+
|
|
72
|
+
3. **How does framework choice impact agent portability?**
|
|
73
|
+
- Measure migration effort
|
|
74
|
+
- Compare runtime performance
|
|
75
|
+
|
|
76
|
+
## Getting Started for Research
|
|
77
|
+
|
|
78
|
+
### Step 1: Understand the Standard
|
|
79
|
+
|
|
80
|
+
Read the specification:
|
|
81
|
+
- [Specification Deep-Dive](../Technical/Specification-Deep-Dive)
|
|
82
|
+
- [Schema Reference](../Technical/Schema-Reference)
|
|
83
|
+
|
|
84
|
+
### Step 2: Study Examples
|
|
85
|
+
|
|
86
|
+
Review annotated examples:
|
|
87
|
+
- [Hello World Complete](https://github.com/blueflyio/openstandardagents/blob/main/examples/getting-started/hello-world-complete.ossa.yaml)
|
|
88
|
+
- [Integration Patterns](../Examples/Integration-Patterns)
|
|
89
|
+
|
|
90
|
+
### Step 3: Create Research Agents
|
|
91
|
+
|
|
92
|
+
Generate agents for your research:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
ossa generate chat --name "research-agent-1"
|
|
96
|
+
ossa generate workflow --name "research-agent-2"
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Step 4: Compare & Analyze
|
|
100
|
+
|
|
101
|
+
Use OSSA format to:
|
|
102
|
+
- Compare agent designs
|
|
103
|
+
- Measure performance
|
|
104
|
+
- Analyze costs
|
|
105
|
+
- Study patterns
|
|
106
|
+
|
|
107
|
+
## Contributing Research
|
|
108
|
+
|
|
109
|
+
We welcome research contributions:
|
|
110
|
+
|
|
111
|
+
1. **Case Studies**: Document your research findings
|
|
112
|
+
2. **Pattern Analysis**: Share discovered patterns
|
|
113
|
+
3. **Performance Studies**: Contribute benchmarks
|
|
114
|
+
4. **Academic Papers**: Reference OSSA in publications
|
|
115
|
+
|
|
116
|
+
## Related Resources
|
|
117
|
+
|
|
118
|
+
- [Getting Started](../Getting-Started/5-Minute-Overview)
|
|
119
|
+
- [Technical Documentation](../Technical/Specification-Deep-Dive)
|
|
120
|
+
- [Examples & Patterns](../Examples/Getting-Started-Examples)
|
|
121
|
+
- [Repository](https://github.com/blueflyio/openstandardagents)
|
|
122
|
+
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Architects"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# For Architects & Platform Engineers
|
|
6
|
+
|
|
7
|
+
Design and govern multi-agent systems using OSSA's standard architecture patterns.
|
|
8
|
+
|
|
9
|
+
## Architecture Overview
|
|
10
|
+
|
|
11
|
+
### OSSA's Role in Agent Architecture
|
|
12
|
+
|
|
13
|
+
OSSA provides:
|
|
14
|
+
- **Standard Contract**: Framework-agnostic agent definition
|
|
15
|
+
- **Portability**: Move agents across infrastructures
|
|
16
|
+
- **Governance**: Standard format enables policy enforcement
|
|
17
|
+
- **Observability**: Consistent monitoring across agents
|
|
18
|
+
|
|
19
|
+
## Design Patterns
|
|
20
|
+
|
|
21
|
+
### Pattern 1: Single Agent
|
|
22
|
+
|
|
23
|
+
Simple, standalone agent:
|
|
24
|
+
|
|
25
|
+
```yaml
|
|
26
|
+
apiVersion: ossa/v0.2.3
|
|
27
|
+
kind: Agent
|
|
28
|
+
metadata:
|
|
29
|
+
name: standalone-agent
|
|
30
|
+
spec:
|
|
31
|
+
role: Agent description
|
|
32
|
+
llm: { ... }
|
|
33
|
+
tools: [ ... ]
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Pattern 2: Agent Orchestration
|
|
37
|
+
|
|
38
|
+
Orchestrator coordinates multiple agents:
|
|
39
|
+
|
|
40
|
+
```yaml
|
|
41
|
+
# Orchestrator Agent
|
|
42
|
+
spec:
|
|
43
|
+
role: Coordinate workflow
|
|
44
|
+
tools:
|
|
45
|
+
- type: http
|
|
46
|
+
name: invoke_worker_agent
|
|
47
|
+
endpoint: http://worker-agent:8080/api
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
See: [Integration Patterns](../Examples/Integration-Patterns)
|
|
51
|
+
|
|
52
|
+
### Pattern 3: Agent Mesh
|
|
53
|
+
|
|
54
|
+
Agents communicate directly:
|
|
55
|
+
|
|
56
|
+
- Peer-to-peer communication
|
|
57
|
+
- Event-driven patterns
|
|
58
|
+
- Service mesh integration
|
|
59
|
+
|
|
60
|
+
## Multi-Agent Systems
|
|
61
|
+
|
|
62
|
+
### Architecture Decisions
|
|
63
|
+
|
|
64
|
+
1. **Orchestration vs. Choreography**
|
|
65
|
+
- Orchestration: Central coordinator
|
|
66
|
+
- Choreography: Distributed coordination
|
|
67
|
+
|
|
68
|
+
2. **Communication Patterns**
|
|
69
|
+
- HTTP/gRPC for synchronous
|
|
70
|
+
- Message queues for asynchronous
|
|
71
|
+
- MCP for tool sharing
|
|
72
|
+
|
|
73
|
+
3. **State Management**
|
|
74
|
+
- Stateless agents (recommended)
|
|
75
|
+
- Shared state via external store
|
|
76
|
+
- Event sourcing patterns
|
|
77
|
+
|
|
78
|
+
## Governance & Compliance
|
|
79
|
+
|
|
80
|
+
### Policy Enforcement
|
|
81
|
+
|
|
82
|
+
OSSA enables:
|
|
83
|
+
|
|
84
|
+
- **Cost Controls**: Declarative cost limits
|
|
85
|
+
- **Security Policies**: Standard security configuration
|
|
86
|
+
- **Compliance**: Automated compliance checking
|
|
87
|
+
- **Audit Logging**: Standard observability
|
|
88
|
+
|
|
89
|
+
### Example: Compliance Agent
|
|
90
|
+
|
|
91
|
+
```yaml
|
|
92
|
+
spec:
|
|
93
|
+
role: Compliance checking agent
|
|
94
|
+
constraints:
|
|
95
|
+
cost:
|
|
96
|
+
maxCostPerDay: 50.00
|
|
97
|
+
observability:
|
|
98
|
+
logging:
|
|
99
|
+
level: info
|
|
100
|
+
format: json
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## Infrastructure Planning
|
|
104
|
+
|
|
105
|
+
### Deployment Options
|
|
106
|
+
|
|
107
|
+
1. **Kubernetes**
|
|
108
|
+
- Native K8s resources
|
|
109
|
+
- Service mesh integration
|
|
110
|
+
- Auto-scaling
|
|
111
|
+
|
|
112
|
+
2. **Serverless**
|
|
113
|
+
- AWS Lambda
|
|
114
|
+
- Google Cloud Functions
|
|
115
|
+
- Azure Functions
|
|
116
|
+
|
|
117
|
+
3. **Container Orchestration**
|
|
118
|
+
- Docker Compose
|
|
119
|
+
- Nomad
|
|
120
|
+
- Custom orchestration
|
|
121
|
+
|
|
122
|
+
### Resource Planning
|
|
123
|
+
|
|
124
|
+
```yaml
|
|
125
|
+
constraints:
|
|
126
|
+
resources:
|
|
127
|
+
cpu: "500m"
|
|
128
|
+
memory: "1Gi"
|
|
129
|
+
performance:
|
|
130
|
+
maxConcurrentRequests: 10
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
## Observability Strategy
|
|
134
|
+
|
|
135
|
+
### Distributed Tracing
|
|
136
|
+
|
|
137
|
+
```yaml
|
|
138
|
+
observability:
|
|
139
|
+
tracing:
|
|
140
|
+
enabled: true
|
|
141
|
+
exporter: otlp
|
|
142
|
+
endpoint: http://jaeger:4318
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### Metrics Collection
|
|
146
|
+
|
|
147
|
+
```yaml
|
|
148
|
+
observability:
|
|
149
|
+
metrics:
|
|
150
|
+
enabled: true
|
|
151
|
+
exporter: prometheus
|
|
152
|
+
endpoint: http://prometheus:9090/metrics
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### Logging Strategy
|
|
156
|
+
|
|
157
|
+
```yaml
|
|
158
|
+
observability:
|
|
159
|
+
logging:
|
|
160
|
+
level: info
|
|
161
|
+
format: json
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
## Cost Management
|
|
165
|
+
|
|
166
|
+
### Cost Constraints
|
|
167
|
+
|
|
168
|
+
```yaml
|
|
169
|
+
constraints:
|
|
170
|
+
cost:
|
|
171
|
+
maxTokensPerDay: 100000
|
|
172
|
+
maxCostPerDay: 10.00
|
|
173
|
+
currency: USD
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### Cost Optimization Strategies
|
|
177
|
+
|
|
178
|
+
1. **Model Selection**: Use appropriate model for task
|
|
179
|
+
2. **Token Limits**: Set maxTokens per request
|
|
180
|
+
3. **Caching**: Cache responses where possible
|
|
181
|
+
4. **Batching**: Batch requests when possible
|
|
182
|
+
|
|
183
|
+
## Security Architecture
|
|
184
|
+
|
|
185
|
+
### Authentication
|
|
186
|
+
|
|
187
|
+
```yaml
|
|
188
|
+
tools:
|
|
189
|
+
- type: http
|
|
190
|
+
auth:
|
|
191
|
+
type: bearer
|
|
192
|
+
credentials: API_KEY_SECRET
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
### Network Security
|
|
196
|
+
|
|
197
|
+
- Service mesh integration
|
|
198
|
+
- mTLS between agents
|
|
199
|
+
- Network policies
|
|
200
|
+
- API gateways
|
|
201
|
+
|
|
202
|
+
## Scalability Patterns
|
|
203
|
+
|
|
204
|
+
### Horizontal Scaling
|
|
205
|
+
|
|
206
|
+
- Stateless agents
|
|
207
|
+
- Load balancing
|
|
208
|
+
- Auto-scaling based on metrics
|
|
209
|
+
|
|
210
|
+
### Vertical Scaling
|
|
211
|
+
|
|
212
|
+
```yaml
|
|
213
|
+
constraints:
|
|
214
|
+
resources:
|
|
215
|
+
cpu: "2"
|
|
216
|
+
memory: "4Gi"
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
## Related Resources
|
|
220
|
+
|
|
221
|
+
- [Technical Documentation](../Technical/Specification-Deep-Dive)
|
|
222
|
+
- [Integration Patterns](../Examples/Integration-Patterns)
|
|
223
|
+
- [Enterprise Guide](../For-Audiences/Enterprises)
|
|
224
|
+
|