@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,167 @@
|
|
|
1
|
+
# OSSA kAgent Extension Schema
|
|
2
|
+
# Production-grade specification for Kubernetes-native agent deployment
|
|
3
|
+
# Compatible with kagent.dev/v1alpha1 CRDs
|
|
4
|
+
|
|
5
|
+
apiVersion: ossa/v1
|
|
6
|
+
kind: ExtensionSchema
|
|
7
|
+
metadata:
|
|
8
|
+
name: kagent-extension
|
|
9
|
+
version: v1alpha1
|
|
10
|
+
namespace: ossa/extensions
|
|
11
|
+
spec:
|
|
12
|
+
compatibleWith:
|
|
13
|
+
- kagent.dev/v1alpha1
|
|
14
|
+
description: "Extension schema for Kubernetes-native agent deployment via kAgent"
|
|
15
|
+
|
|
16
|
+
additionalFields:
|
|
17
|
+
agent:
|
|
18
|
+
kubernetes:
|
|
19
|
+
namespace:
|
|
20
|
+
type: string
|
|
21
|
+
default: "default"
|
|
22
|
+
description: "Target Kubernetes namespace"
|
|
23
|
+
labels:
|
|
24
|
+
type: object
|
|
25
|
+
additionalProperties:
|
|
26
|
+
type: string
|
|
27
|
+
description: "Kubernetes labels for agent CRD"
|
|
28
|
+
annotations:
|
|
29
|
+
type: object
|
|
30
|
+
additionalProperties:
|
|
31
|
+
type: string
|
|
32
|
+
description: "Kubernetes annotations for agent CRD"
|
|
33
|
+
resourceLimits:
|
|
34
|
+
type: object
|
|
35
|
+
properties:
|
|
36
|
+
cpu:
|
|
37
|
+
type: string
|
|
38
|
+
default: "100m"
|
|
39
|
+
memory:
|
|
40
|
+
type: string
|
|
41
|
+
default: "256Mi"
|
|
42
|
+
description: "Kubernetes resource limits"
|
|
43
|
+
|
|
44
|
+
toolRefs:
|
|
45
|
+
type: array
|
|
46
|
+
items:
|
|
47
|
+
type: object
|
|
48
|
+
required: [name, type]
|
|
49
|
+
properties:
|
|
50
|
+
name:
|
|
51
|
+
type: string
|
|
52
|
+
description: "Tool name"
|
|
53
|
+
type:
|
|
54
|
+
type: string
|
|
55
|
+
enum: [mcp, kubernetes, http, custom]
|
|
56
|
+
description: "Tool type"
|
|
57
|
+
serverRef:
|
|
58
|
+
type: object
|
|
59
|
+
properties:
|
|
60
|
+
name:
|
|
61
|
+
type: string
|
|
62
|
+
namespace:
|
|
63
|
+
type: string
|
|
64
|
+
default: "default"
|
|
65
|
+
description: "Reference to MCP server or Kubernetes resource"
|
|
66
|
+
config:
|
|
67
|
+
type: object
|
|
68
|
+
additionalProperties: true
|
|
69
|
+
description: "Tool-specific configuration"
|
|
70
|
+
|
|
71
|
+
a2aConfig:
|
|
72
|
+
type: object
|
|
73
|
+
properties:
|
|
74
|
+
enabled:
|
|
75
|
+
type: boolean
|
|
76
|
+
default: false
|
|
77
|
+
endpoints:
|
|
78
|
+
type: array
|
|
79
|
+
items:
|
|
80
|
+
type: string
|
|
81
|
+
description: "A2A protocol endpoints"
|
|
82
|
+
protocol:
|
|
83
|
+
type: string
|
|
84
|
+
enum: [json-rpc, http, sse]
|
|
85
|
+
default: "json-rpc"
|
|
86
|
+
authentication:
|
|
87
|
+
type: object
|
|
88
|
+
properties:
|
|
89
|
+
type:
|
|
90
|
+
type: string
|
|
91
|
+
enum: [mtls, bearer, oauth2]
|
|
92
|
+
credentials:
|
|
93
|
+
type: string
|
|
94
|
+
format: secret
|
|
95
|
+
description: "Agent-to-Agent communication configuration"
|
|
96
|
+
|
|
97
|
+
guardrails:
|
|
98
|
+
type: object
|
|
99
|
+
properties:
|
|
100
|
+
requireApproval:
|
|
101
|
+
type: boolean
|
|
102
|
+
default: true
|
|
103
|
+
costLimits:
|
|
104
|
+
type: object
|
|
105
|
+
properties:
|
|
106
|
+
maxTokensPerDay:
|
|
107
|
+
type: integer
|
|
108
|
+
maxTokensPerRequest:
|
|
109
|
+
type: integer
|
|
110
|
+
maxCostPerDay:
|
|
111
|
+
type: number
|
|
112
|
+
currency:
|
|
113
|
+
type: string
|
|
114
|
+
default: "USD"
|
|
115
|
+
allowedActions:
|
|
116
|
+
type: array
|
|
117
|
+
items:
|
|
118
|
+
type: string
|
|
119
|
+
description: "Permitted agent actions"
|
|
120
|
+
blockedActions:
|
|
121
|
+
type: array
|
|
122
|
+
items:
|
|
123
|
+
type: string
|
|
124
|
+
description: "Forbidden agent actions"
|
|
125
|
+
auditLog:
|
|
126
|
+
type: object
|
|
127
|
+
properties:
|
|
128
|
+
destination:
|
|
129
|
+
type: string
|
|
130
|
+
enum: [compliance-engine, agent-tracer, external]
|
|
131
|
+
retention:
|
|
132
|
+
type: string
|
|
133
|
+
pattern: "^\d+[years|months|days]$"
|
|
134
|
+
description: "Audit logging configuration"
|
|
135
|
+
|
|
136
|
+
meshIntegration:
|
|
137
|
+
type: object
|
|
138
|
+
properties:
|
|
139
|
+
enabled:
|
|
140
|
+
type: boolean
|
|
141
|
+
default: false
|
|
142
|
+
istioIntegration:
|
|
143
|
+
type: boolean
|
|
144
|
+
default: false
|
|
145
|
+
ambientMesh:
|
|
146
|
+
type: boolean
|
|
147
|
+
default: false
|
|
148
|
+
description: "Service mesh integration (Istio/Cilium)"
|
|
149
|
+
|
|
150
|
+
validation:
|
|
151
|
+
required:
|
|
152
|
+
- kubernetes.namespace
|
|
153
|
+
- toolRefs
|
|
154
|
+
customRules:
|
|
155
|
+
- name: "validate-tool-references"
|
|
156
|
+
rule: "All toolRefs must reference valid MCP servers or Kubernetes resources"
|
|
157
|
+
- name: "validate-a2a-endpoints"
|
|
158
|
+
rule: "If a2aConfig.enabled is true, endpoints must be provided"
|
|
159
|
+
- name: "validate-cost-limits"
|
|
160
|
+
rule: "If costLimits specified, maxTokensPerDay must be positive"
|
|
161
|
+
|
|
162
|
+
migration:
|
|
163
|
+
fromVersion: "v0.1.9"
|
|
164
|
+
toVersion: "v1alpha1"
|
|
165
|
+
breakingChanges: []
|
|
166
|
+
migrationGuide: "https://ossa.dev/docs/kagent/migration"
|
|
167
|
+
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
# ============================================================================
|
|
2
|
+
# OSSA v0.2.x - Complete "Hello World" Agent Example
|
|
3
|
+
# ============================================================================
|
|
4
|
+
#
|
|
5
|
+
# PURPOSE:
|
|
6
|
+
# This is a minimal, fully-compliant OSSA agent manifest demonstrating
|
|
7
|
+
# all required fields and best practices. Use this as a starting point
|
|
8
|
+
# for your first agent.
|
|
9
|
+
#
|
|
10
|
+
# LEARNING OBJECTIVES:
|
|
11
|
+
# 1. Understand OSSA manifest structure (apiVersion, kind, metadata, spec)
|
|
12
|
+
# 2. Learn required vs optional fields
|
|
13
|
+
# 3. See how to define agent capabilities (tools)
|
|
14
|
+
# 4. Understand LLM configuration
|
|
15
|
+
# 5. Learn basic observability setup
|
|
16
|
+
#
|
|
17
|
+
# VALIDATION:
|
|
18
|
+
# ossa validate examples/getting-started/hello-world-complete.ossa.yaml
|
|
19
|
+
#
|
|
20
|
+
# DEPLOYMENT:
|
|
21
|
+
# This agent can be deployed to any OSSA-compatible runtime:
|
|
22
|
+
# - Kubernetes (via agent-buildkit)
|
|
23
|
+
# - Docker Compose
|
|
24
|
+
# - Serverless (AWS Lambda, Google Cloud Functions)
|
|
25
|
+
# - Local development
|
|
26
|
+
#
|
|
27
|
+
# INTEGRATION PATTERNS:
|
|
28
|
+
# - Standalone agent (no dependencies)
|
|
29
|
+
# - Can be called via HTTP/gRPC
|
|
30
|
+
# - Can participate in multi-agent workflows
|
|
31
|
+
# - Compatible with MCP (Model Context Protocol)
|
|
32
|
+
#
|
|
33
|
+
# ============================================================================
|
|
34
|
+
|
|
35
|
+
apiVersion: ossa/v0.2.x
|
|
36
|
+
kind: Agent
|
|
37
|
+
|
|
38
|
+
metadata:
|
|
39
|
+
# REQUIRED: Agent identifier (DNS-1123 format for Kubernetes compatibility)
|
|
40
|
+
# Must be lowercase alphanumeric with hyphens, max 253 chars
|
|
41
|
+
name: hello-world-agent
|
|
42
|
+
|
|
43
|
+
# REQUIRED: Semantic version (semver 2.0.0)
|
|
44
|
+
# Format: MAJOR.MINOR.PATCH[-PRERELEASE][+BUILD]
|
|
45
|
+
version: 1.0.0
|
|
46
|
+
|
|
47
|
+
# REQUIRED: Human-readable description
|
|
48
|
+
# Should explain what the agent does, its purpose, and key capabilities
|
|
49
|
+
description: |
|
|
50
|
+
A minimal OSSA-compliant agent that demonstrates basic capabilities.
|
|
51
|
+
This agent can greet users, echo messages, and report its status.
|
|
52
|
+
Perfect for learning OSSA fundamentals and testing deployments.
|
|
53
|
+
|
|
54
|
+
# OPTIONAL: Key-value labels for organization and filtering
|
|
55
|
+
# Common labels: environment, team, domain, classification
|
|
56
|
+
labels:
|
|
57
|
+
environment: development
|
|
58
|
+
team: platform-engineering
|
|
59
|
+
domain: examples
|
|
60
|
+
complexity: minimal
|
|
61
|
+
|
|
62
|
+
# OPTIONAL: Arbitrary metadata for tooling (not used for filtering)
|
|
63
|
+
# Common annotations: documentation URL, support contact, runbooks
|
|
64
|
+
annotations:
|
|
65
|
+
documentation: https://docs.ossa.io/examples/hello-world
|
|
66
|
+
support: support@example.com
|
|
67
|
+
runbook: https://runbooks.example.com/hello-world-agent
|
|
68
|
+
|
|
69
|
+
spec:
|
|
70
|
+
# REQUIRED: Agent role/system prompt describing behavior and capabilities
|
|
71
|
+
# This is the "personality" and instructions for the LLM
|
|
72
|
+
# Should be clear, specific, and aligned with the agent's purpose
|
|
73
|
+
role: |
|
|
74
|
+
You are a helpful assistant agent that can:
|
|
75
|
+
1. Greet users with personalized messages
|
|
76
|
+
2. Echo back messages sent to you
|
|
77
|
+
3. Report your current status and health
|
|
78
|
+
|
|
79
|
+
Always be friendly, concise, and helpful. If you receive a request
|
|
80
|
+
you cannot handle, politely explain your limitations.
|
|
81
|
+
|
|
82
|
+
# REQUIRED: LLM configuration
|
|
83
|
+
# Defines which language model powers this agent
|
|
84
|
+
llm:
|
|
85
|
+
# REQUIRED: LLM provider (openai, anthropic, google, azure, ollama, custom)
|
|
86
|
+
provider: openai
|
|
87
|
+
|
|
88
|
+
# REQUIRED: Model identifier (specific to provider)
|
|
89
|
+
# OpenAI: gpt-4, gpt-4-turbo, gpt-3.5-turbo
|
|
90
|
+
# Anthropic: claude-3-opus-20240229, claude-3-sonnet-20240229
|
|
91
|
+
# Google: gemini-pro, gemini-pro-vision
|
|
92
|
+
model: gpt-3.5-turbo
|
|
93
|
+
|
|
94
|
+
# OPTIONAL: Temperature (0.0-2.0) - Controls randomness
|
|
95
|
+
# 0.0 = deterministic, 1.0 = balanced, 2.0 = very creative
|
|
96
|
+
# Lower values better for structured tasks, higher for creative tasks
|
|
97
|
+
temperature: 0.7
|
|
98
|
+
|
|
99
|
+
# OPTIONAL: Maximum tokens per request
|
|
100
|
+
# Limits response length. Set based on expected output size
|
|
101
|
+
maxTokens: 1000
|
|
102
|
+
|
|
103
|
+
# OPTIONAL: Top-p (nucleus sampling) - 0.0-1.0
|
|
104
|
+
# Alternative to temperature. 0.9 = consider top 90% probability mass
|
|
105
|
+
topP: 0.9
|
|
106
|
+
|
|
107
|
+
# REQUIRED: Available tools/capabilities for the agent
|
|
108
|
+
# Each tool represents a capability the agent can use
|
|
109
|
+
# Must have at least one tool
|
|
110
|
+
tools:
|
|
111
|
+
# Tool 1: Greeting capability
|
|
112
|
+
- type: function
|
|
113
|
+
name: greet_user
|
|
114
|
+
description: |
|
|
115
|
+
Generate a personalized greeting message for a user.
|
|
116
|
+
Takes a user name and optional context, returns a friendly greeting.
|
|
117
|
+
# Tool-specific configuration
|
|
118
|
+
config:
|
|
119
|
+
# Example: This could reference a function, API endpoint, or MCP server
|
|
120
|
+
handler: greet_handler
|
|
121
|
+
timeout: 5
|
|
122
|
+
|
|
123
|
+
# OPTIONAL: Authentication for tool access
|
|
124
|
+
auth:
|
|
125
|
+
type: none # Options: bearer, oauth2, mtls, apikey, none
|
|
126
|
+
|
|
127
|
+
# Tool 2: Echo capability
|
|
128
|
+
- type: function
|
|
129
|
+
name: echo_message
|
|
130
|
+
description: |
|
|
131
|
+
Echo back a message sent to the agent.
|
|
132
|
+
Useful for testing and demonstrating basic agent communication.
|
|
133
|
+
config:
|
|
134
|
+
handler: echo_handler
|
|
135
|
+
timeout: 2
|
|
136
|
+
|
|
137
|
+
# Tool 3: Status reporting
|
|
138
|
+
- type: http
|
|
139
|
+
name: get_status
|
|
140
|
+
description: |
|
|
141
|
+
Get the current status and health of the agent.
|
|
142
|
+
Returns agent metadata, uptime, and capability status.
|
|
143
|
+
endpoint: http://localhost:8080/status
|
|
144
|
+
config:
|
|
145
|
+
method: GET
|
|
146
|
+
timeout: 3
|
|
147
|
+
auth:
|
|
148
|
+
type: none
|
|
149
|
+
|
|
150
|
+
# OPTIONAL: Autonomy configuration
|
|
151
|
+
# Controls how independently the agent can operate
|
|
152
|
+
autonomy:
|
|
153
|
+
# Level of autonomy: supervised, autonomous, fully_autonomous
|
|
154
|
+
# supervised = requires human approval for actions
|
|
155
|
+
# autonomous = can act independently within constraints
|
|
156
|
+
# fully_autonomous = complete independence (use with caution)
|
|
157
|
+
level: supervised
|
|
158
|
+
|
|
159
|
+
# Whether human approval is required before executing actions
|
|
160
|
+
approval_required: true
|
|
161
|
+
|
|
162
|
+
# Whitelist of permitted actions (if specified, only these are allowed)
|
|
163
|
+
allowed_actions:
|
|
164
|
+
- greet_user
|
|
165
|
+
- echo_message
|
|
166
|
+
- get_status
|
|
167
|
+
|
|
168
|
+
# Blacklist of forbidden actions
|
|
169
|
+
blocked_actions: []
|
|
170
|
+
|
|
171
|
+
# OPTIONAL: Constraints and limits
|
|
172
|
+
constraints:
|
|
173
|
+
# Cost constraints (prevent runaway spending)
|
|
174
|
+
cost:
|
|
175
|
+
# Maximum tokens per day (prevents excessive API usage)
|
|
176
|
+
maxTokensPerDay: 100000
|
|
177
|
+
|
|
178
|
+
# Maximum tokens per request
|
|
179
|
+
maxTokensPerRequest: 2000
|
|
180
|
+
|
|
181
|
+
# Maximum cost per day (in specified currency)
|
|
182
|
+
maxCostPerDay: 10.00
|
|
183
|
+
|
|
184
|
+
# Currency code (ISO 4217, 3-letter code)
|
|
185
|
+
currency: USD
|
|
186
|
+
|
|
187
|
+
# Performance constraints
|
|
188
|
+
performance:
|
|
189
|
+
# Maximum latency in seconds
|
|
190
|
+
maxLatencySeconds: 5.0
|
|
191
|
+
|
|
192
|
+
# Maximum concurrent requests
|
|
193
|
+
maxConcurrentRequests: 10
|
|
194
|
+
|
|
195
|
+
# Request timeout in seconds
|
|
196
|
+
timeoutSeconds: 30
|
|
197
|
+
|
|
198
|
+
# Resource constraints (for Kubernetes deployments)
|
|
199
|
+
resources:
|
|
200
|
+
cpu: "100m" # 0.1 CPU cores (Kubernetes format)
|
|
201
|
+
memory: "256Mi" # 256 megabytes (Kubernetes format)
|
|
202
|
+
# gpu: "1" # Optional GPU requirement
|
|
203
|
+
|
|
204
|
+
# OPTIONAL: Observability configuration
|
|
205
|
+
# Enables monitoring, tracing, and logging
|
|
206
|
+
observability:
|
|
207
|
+
# Distributed tracing (OpenTelemetry, Jaeger, Zipkin)
|
|
208
|
+
tracing:
|
|
209
|
+
enabled: true
|
|
210
|
+
exporter: otlp # Options: otlp, jaeger, zipkin, custom
|
|
211
|
+
endpoint: http://localhost:4318 # OTLP collector endpoint
|
|
212
|
+
|
|
213
|
+
# Metrics collection (Prometheus, OTLP)
|
|
214
|
+
metrics:
|
|
215
|
+
enabled: true
|
|
216
|
+
exporter: prometheus # Options: prometheus, otlp, custom
|
|
217
|
+
endpoint: http://localhost:9090/metrics
|
|
218
|
+
|
|
219
|
+
# Logging configuration
|
|
220
|
+
logging:
|
|
221
|
+
level: info # Options: debug, info, warn, error
|
|
222
|
+
format: json # Options: json, text
|
|
223
|
+
|
|
224
|
+
# ============================================================================
|
|
225
|
+
# USAGE EXAMPLES
|
|
226
|
+
# ============================================================================
|
|
227
|
+
#
|
|
228
|
+
# 1. VALIDATE THIS MANIFEST:
|
|
229
|
+
# $ ossa validate examples/getting-started/hello-world-complete.ossa.yaml
|
|
230
|
+
#
|
|
231
|
+
# 2. DEPLOY TO KUBERNETES (via agent-buildkit):
|
|
232
|
+
# $ buildkit agents deploy examples/getting-started/hello-world-complete.ossa.yaml
|
|
233
|
+
#
|
|
234
|
+
# 3. TEST LOCALLY:
|
|
235
|
+
# $ ossa validate examples/getting-started/hello-world-complete.ossa.yaml --verbose
|
|
236
|
+
#
|
|
237
|
+
# 4. INTEGRATE WITH MCP:
|
|
238
|
+
# This agent can be exposed via MCP (Model Context Protocol) for use
|
|
239
|
+
# with Claude Desktop, Cursor, or other MCP-compatible tools.
|
|
240
|
+
#
|
|
241
|
+
# 5. USE IN MULTI-AGENT WORKFLOW:
|
|
242
|
+
# This agent can be orchestrated alongside other agents using
|
|
243
|
+
# agent-buildkit's workflow engine.
|
|
244
|
+
#
|
|
245
|
+
# ============================================================================
|
|
246
|
+
# NEXT STEPS
|
|
247
|
+
# ============================================================================
|
|
248
|
+
#
|
|
249
|
+
# After understanding this example:
|
|
250
|
+
# 1. Review examples/intermediate/ for more complex patterns
|
|
251
|
+
# 2. Check examples/advanced/ for enterprise patterns
|
|
252
|
+
# 3. Read the full OSSA specification at spec/v0.2.x/ossa-0.2.x.schema.json
|
|
253
|
+
# 4. Explore integration examples in examples/bridges/
|
|
254
|
+
# 5. See migration guides in examples/migration-guides/
|
|
255
|
+
#
|
|
256
|
+
# ============================================================================
|
|
257
|
+
# RELATED DOCUMENTATION
|
|
258
|
+
# ============================================================================
|
|
259
|
+
#
|
|
260
|
+
# - OSSA Specification: spec/v0.2.x/ossa-0.2.x.schema.json
|
|
261
|
+
# - Schema Reference: docs/schemas/
|
|
262
|
+
# - API Reference: openapi/
|
|
263
|
+
# - GitLab Wiki: https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/-/wikis
|
|
264
|
+
#
|
|
265
|
+
# ============================================================================
|
|
266
|
+
|