@bluefly/openstandardagents 0.1.9 → 0.2.5-RC
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursorrules +84 -0
- package/.devfile.yaml +87 -0
- package/.env.example +25 -3
- package/.eslintrc.cjs +43 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +39 -0
- package/.github/dependabot.yml +58 -0
- package/.github/workflows/ci.yml +154 -0
- package/.github/workflows/codeql.yml +41 -0
- package/.github/workflows/dependabot-auto-merge.yml +28 -0
- package/.github/workflows/release.yml +103 -0
- package/.kiro/specs/agent-buildkit-templates/design.md +495 -0
- package/.kiro/specs/agent-buildkit-templates/requirements.md +165 -0
- package/.kiro/specs/kiro-ide-supercharger/README.md +202 -0
- package/.kiro/specs/kiro-ide-supercharger/design.md +1005 -0
- package/.kiro/specs/kiro-ide-supercharger/requirements.md +141 -0
- package/.kiro/specs/kiro-ide-supercharger/tasks.md +507 -0
- package/.kiro/specs/website-design-audit/design.md +679 -0
- package/.kiro/specs/website-design-audit/requirements.md +199 -0
- package/.prettierignore +7 -0
- package/.prettierrc.json +10 -0
- package/.redocly.yaml +8 -62
- package/.releaserc.json +85 -0
- package/.version.json +6 -0
- package/CHANGELOG.md +196 -0
- package/CONTRIBUTING.md +267 -0
- package/LICENSE +190 -0
- package/README.md +253 -454
- package/bin/ossa +29 -0
- package/bin/ossa-validate-all +55 -0
- package/bin/ossa-version +23 -0
- package/bin/validate-ossa-0.2.2.ts +244 -0
- package/bin/validate-ossa-0.2.4.ts +244 -0
- package/bin/validate-ossa-0.2.5-RC.ts +244 -0
- package/bin/validate-ossa.ts +273 -0
- package/dist/di-container.d.ts +1 -1
- package/dist/di-container.d.ts.map +1 -1
- package/dist/di-container.js +0 -3
- package/dist/di-container.js.map +1 -1
- package/dist/index.d.ts +9 -27
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +13 -33
- package/dist/index.js.map +1 -1
- package/dist/repositories/schema.repository.d.ts +16 -1
- package/dist/repositories/schema.repository.d.ts.map +1 -1
- package/dist/repositories/schema.repository.js +94 -17
- package/dist/repositories/schema.repository.js.map +1 -1
- package/dist/services/generation.service.d.ts +7 -5
- package/dist/services/generation.service.d.ts.map +1 -1
- package/dist/services/generation.service.js +93 -45
- package/dist/services/generation.service.js.map +1 -1
- package/dist/services/gitlab-agent.service.d.ts.map +1 -1
- package/dist/services/gitlab-agent.service.js +12 -8
- package/dist/services/gitlab-agent.service.js.map +1 -1
- package/dist/services/migration.service.d.ts +3 -3
- package/dist/services/migration.service.d.ts.map +1 -1
- package/dist/services/migration.service.js +108 -61
- package/dist/services/migration.service.js.map +1 -1
- package/dist/services/release-automation/base-crud.service.d.ts +93 -0
- package/dist/services/release-automation/base-crud.service.d.ts.map +1 -0
- package/dist/services/release-automation/base-crud.service.js +68 -0
- package/dist/services/release-automation/base-crud.service.js.map +1 -0
- package/dist/services/release-automation/index.d.ts +12 -0
- package/dist/services/release-automation/index.d.ts.map +1 -0
- package/dist/services/release-automation/index.js +12 -0
- package/dist/services/release-automation/index.js.map +1 -0
- package/dist/services/release-automation/merge-request.service.d.ts +119 -0
- package/dist/services/release-automation/merge-request.service.d.ts.map +1 -0
- package/dist/services/release-automation/merge-request.service.js +212 -0
- package/dist/services/release-automation/merge-request.service.js.map +1 -0
- package/dist/services/release-automation/milestone.service.d.ts +104 -0
- package/dist/services/release-automation/milestone.service.d.ts.map +1 -0
- package/dist/services/release-automation/milestone.service.js +207 -0
- package/dist/services/release-automation/milestone.service.js.map +1 -0
- package/dist/services/release-automation/release.service.d.ts +118 -0
- package/dist/services/release-automation/release.service.d.ts.map +1 -0
- package/dist/services/release-automation/release.service.js +207 -0
- package/dist/services/release-automation/release.service.js.map +1 -0
- package/dist/services/release-automation/schemas/release.schema.d.ts +299 -0
- package/dist/services/release-automation/schemas/release.schema.d.ts.map +1 -0
- package/dist/services/release-automation/schemas/release.schema.js +269 -0
- package/dist/services/release-automation/schemas/release.schema.js.map +1 -0
- package/dist/services/release-automation/tag.service.d.ts +99 -0
- package/dist/services/release-automation/tag.service.d.ts.map +1 -0
- package/dist/services/release-automation/tag.service.js +180 -0
- package/dist/services/release-automation/tag.service.js.map +1 -0
- package/dist/services/release-automation/webhook.service.d.ts +37 -0
- package/dist/services/release-automation/webhook.service.d.ts.map +1 -0
- package/dist/services/release-automation/webhook.service.js +173 -0
- package/dist/services/release-automation/webhook.service.js.map +1 -0
- package/dist/services/runtime/openai.adapter.d.ts.map +1 -1
- package/dist/services/runtime/openai.adapter.js.map +1 -1
- package/dist/services/validation.service.d.ts.map +1 -1
- package/dist/services/validation.service.js +24 -11
- package/dist/services/validation.service.js.map +1 -1
- package/dist/services/validators/anthropic.validator.d.ts +2 -2
- package/dist/services/validators/anthropic.validator.d.ts.map +1 -1
- package/dist/services/validators/anthropic.validator.js +14 -9
- package/dist/services/validators/anthropic.validator.js.map +1 -1
- package/dist/services/validators/autogen.validator.d.ts +2 -2
- package/dist/services/validators/autogen.validator.d.ts.map +1 -1
- package/dist/services/validators/autogen.validator.js +18 -15
- package/dist/services/validators/autogen.validator.js.map +1 -1
- package/dist/services/validators/crewai.validator.d.ts +2 -2
- package/dist/services/validators/crewai.validator.d.ts.map +1 -1
- package/dist/services/validators/crewai.validator.js +18 -17
- package/dist/services/validators/crewai.validator.js.map +1 -1
- package/dist/services/validators/cursor.validator.d.ts +2 -2
- package/dist/services/validators/cursor.validator.d.ts.map +1 -1
- package/dist/services/validators/cursor.validator.js +15 -11
- package/dist/services/validators/cursor.validator.js.map +1 -1
- package/dist/services/validators/langchain.validator.d.ts +2 -2
- package/dist/services/validators/langchain.validator.d.ts.map +1 -1
- package/dist/services/validators/langchain.validator.js +14 -11
- package/dist/services/validators/langchain.validator.js.map +1 -1
- package/dist/services/validators/langflow.validator.d.ts +2 -2
- package/dist/services/validators/langflow.validator.d.ts.map +1 -1
- package/dist/services/validators/langflow.validator.js +14 -9
- package/dist/services/validators/langflow.validator.js.map +1 -1
- package/dist/services/validators/langgraph.validator.d.ts +2 -2
- package/dist/services/validators/langgraph.validator.d.ts.map +1 -1
- package/dist/services/validators/langgraph.validator.js +23 -18
- package/dist/services/validators/langgraph.validator.js.map +1 -1
- package/dist/services/validators/llamaindex.validator.d.ts +2 -2
- package/dist/services/validators/llamaindex.validator.d.ts.map +1 -1
- package/dist/services/validators/llamaindex.validator.js +19 -16
- package/dist/services/validators/llamaindex.validator.js.map +1 -1
- package/dist/services/validators/openai.validator.d.ts +2 -2
- package/dist/services/validators/openai.validator.d.ts.map +1 -1
- package/dist/services/validators/openai.validator.js +20 -16
- package/dist/services/validators/openai.validator.js.map +1 -1
- package/dist/services/validators/vercel-ai.validator.d.ts +2 -2
- package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -1
- package/dist/services/validators/vercel-ai.validator.js +16 -15
- package/dist/services/validators/vercel-ai.validator.js.map +1 -1
- package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
- package/dist/spec/v0.2.3/README.md +4 -4
- package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +7 -7
- package/dist/spec/v0.2.4/CHANGELOG.md +403 -0
- package/dist/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.4/ossa-0.2.4-dev.schema.json +1696 -0
- package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +1819 -0
- package/dist/spec/v0.2.5/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.5/README.md +72 -0
- package/dist/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
- package/dist/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
- package/dist/spec/v0.2.5-RC/CHANGELOG.md +401 -0
- package/dist/spec/v0.2.5-RC/README.md +72 -0
- package/dist/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
- package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
- package/dist/types/index.d.ts +164 -260
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +3 -65
- package/dist/types/index.js.map +1 -1
- package/docs/issue-19-completion-summary.md +648 -0
- package/docs/issue-19-validation.md +351 -0
- package/examples/adk-integration/code-review-workflow.yml +136 -0
- package/examples/adk-integration/customer-support.yml +263 -0
- package/examples/adk-integration/data-pipeline.yml +173 -0
- package/examples/advanced/patterns/compliance-context-production.json +53 -0
- package/examples/advanced/patterns/model-router.ts +274 -0
- package/examples/advanced/patterns/smart-model-routing.ts +248 -0
- package/examples/advanced/workflows/hybrid-model-strategy.yaml +232 -0
- package/examples/agent-manifests/critics/critic-agent.yaml +149 -0
- package/examples/agent-manifests/governors/governor-agent.yaml +128 -0
- package/examples/agent-manifests/integrators/integrator-agent.yaml +103 -0
- package/examples/agent-manifests/judges/judge-agent.yaml +153 -0
- package/examples/agent-manifests/monitors/monitor-agent.yaml +122 -0
- package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +247 -0
- package/examples/agent-manifests/sample-compliant-agent.yaml +147 -0
- package/examples/agent-manifests/workers/worker-agent.yaml +82 -0
- package/examples/anthropic/claude-assistant.ossa.json +45 -0
- package/examples/architecture/model-configuration/ollama-integration.ts +110 -0
- package/examples/autogen/multi-agent.ossa.json +37 -0
- package/examples/bridge-configurations.yaml +346 -0
- package/examples/bridges/Dockerfile.production +87 -0
- package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
- package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
- package/examples/bridges/__pycache__/test_aiflow_integration.cpython-313.pyc +0 -0
- package/examples/bridges/aiflow-bridge-enhanced.py +462 -0
- package/examples/bridges/aiflow-bridge-example.yml +310 -0
- package/examples/bridges/aiflow-phoenix-tracing.py +310 -0
- package/examples/bridges/aiflow-registration-api.openapi.yml +439 -0
- package/examples/bridges/k8s/configmap.yaml +121 -0
- package/examples/bridges/k8s/deployment-simple.yaml +34 -0
- package/examples/bridges/k8s/deployment.yaml +275 -0
- package/examples/bridges/k8s/hpa.yaml +126 -0
- package/examples/bridges/k8s/ingress.yaml +155 -0
- package/examples/bridges/kagent-bridge-example.yml +94 -0
- package/examples/bridges/load-tests/Dockerfile +28 -0
- package/examples/bridges/load-tests/k6-load-test.js +302 -0
- package/examples/bridges/load-tests/requirements.txt +20 -0
- package/examples/bridges/loadtest/k6-scenarios.js +270 -0
- package/examples/bridges/phase4/SLO-SLA.yaml +249 -0
- package/examples/bridges/phase4/chaos-tests.yaml +226 -0
- package/examples/bridges/requirements.txt +24 -0
- package/examples/bridges/test_aiflow_integration.py +341 -0
- package/examples/common_npm/agent-router.ossa.yaml +182 -0
- package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +60 -0
- package/examples/compliance-agent.yml +155 -0
- package/examples/crewai/research-team.ossa.json +36 -0
- package/examples/cursor/code-review-agent.ossa.json +47 -0
- package/examples/drupal/gitlab-ml-recommender.ossa.yaml +609 -0
- package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +68 -0
- package/examples/enterprise/agent.yml +452 -0
- package/examples/extensions/drupal-v1.yml +266 -0
- package/examples/extensions/kagent-v1.yml +167 -0
- package/examples/getting-started/hello-world-complete.ossa.yaml +266 -0
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +376 -0
- package/examples/kagent/README.md +31 -0
- package/examples/kagent/compliance-validator.ossa.yaml +111 -0
- package/examples/kagent/cost-optimizer.ossa.yaml +93 -0
- package/examples/kagent/documentation-agent.ossa.yaml +91 -0
- package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +269 -0
- package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +106 -0
- package/examples/kagent/k8s-troubleshooter.ossa.yaml +257 -0
- package/examples/kagent/security-scanner.ossa.yaml +140 -0
- package/examples/langchain/chain-agent.ossa.json +42 -0
- package/examples/langflow/workflow-agent.ossa.json +39 -0
- package/examples/langgraph/state-machine-agent.ossa.json +59 -0
- package/examples/llamaindex/rag-agent.ossa.json +41 -0
- package/examples/migration-guides/from-langchain-to-ossa.yaml +309 -0
- package/examples/minimal/agent.yml +152 -0
- package/examples/minimal/openapi.yaml +95 -0
- package/examples/openai/basic-agent.ossa.yaml +61 -0
- package/examples/openai/multi-tool-agent.ossa.json +165 -0
- package/examples/openai/swarm-agent.ossa.json +59 -0
- package/examples/openapi-extensions/README.md +87 -0
- package/examples/openapi-extensions/minimal-agent-api.openapi.yml +288 -0
- package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +633 -0
- package/examples/openapi-extensions/worker-agent-api.openapi.yml +533 -0
- package/examples/production/agent.yml +713 -0
- package/examples/production/document-analyzer-openai.yml +134 -0
- package/examples/quickstart/support-agent.ossa.yaml +59 -0
- package/examples/service-registry-usage.ts +423 -0
- package/examples/spec-examples/audit-agent.yml +147 -0
- package/examples/spec-examples/chat-agent.yml +189 -0
- package/examples/spec-examples/compliance-agent.yml +204 -0
- package/examples/spec-examples/data-processing-agent.yml +132 -0
- package/examples/spec-examples/development-agent.yml +138 -0
- package/examples/spec-examples/edge-agent.yml +101 -0
- package/examples/spec-examples/integration-agent.yml +129 -0
- package/examples/spec-examples/monitoring-agent.yml +130 -0
- package/examples/spec-examples/serverless-agent.yml +82 -0
- package/examples/spec-examples/workflow-agent.yml +223 -0
- package/examples/templates/ossa-compliance.yaml +56 -0
- package/examples/typescript/advanced/demo-registry.ts +168 -0
- package/examples/typescript/mcpb-agent-example.ts +358 -0
- package/examples/vercel/edge-agent.ossa.json +43 -0
- package/infrastructure/docker-compose.yml +33 -0
- package/infrastructure/gitlab-agent/rbac.yaml +126 -0
- package/infrastructure/gitlab-agent/values.yaml +150 -0
- package/infrastructure/k8s/monitoring/00-namespace.yaml +7 -0
- package/infrastructure/k8s/monitoring/01-prometheus.yaml +142 -0
- package/infrastructure/k8s/monitoring/02-grafana.yaml +63 -0
- package/infrastructure/k8s/monitoring/03-lightweight.yaml +121 -0
- package/infrastructure/k8s/monitoring/README.md +73 -0
- package/infrastructure/k8s/monitoring/deploy.sh +38 -0
- package/openapi/CHANGELOG.md +21 -0
- package/openapi/README.md +46 -0
- package/openapi/core/ossa-core-api.openapi.yaml +1503 -0
- package/openapi/core/ossa-registry-api.openapi.yaml +980 -0
- package/openapi/core/ossa-registry.openapi.yaml +855 -0
- package/openapi/core/unified-agent-gateway.openapi.yaml +833 -0
- package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +136 -0
- package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +192 -0
- package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +149 -0
- package/openapi/reference-implementations/critic-agent-api.openapi.yaml +151 -0
- package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +217 -0
- package/openapi/reference-implementations/drupal-agent-api.openapi.yaml +348 -0
- package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +149 -0
- package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +151 -0
- package/openapi/reference-implementations/governor-agent-api.openapi.yaml +193 -0
- package/openapi/reference-implementations/helm-generator.openapi.yaml +389 -0
- package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +165 -0
- package/openapi/reference-implementations/judge-agent-api.openapi.yaml +148 -0
- package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +167 -0
- package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +171 -0
- package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +171 -0
- package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +242 -0
- package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +187 -0
- package/openapi/reference-implementations/self-evolving-ecosystem.openapi.yaml +1530 -0
- package/openapi/reference-implementations/worker-agent-api.openapi.yaml +208 -0
- package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +193 -0
- package/package.json +120 -83
- package/release.config.js +79 -0
- package/scripts/bump-version.ts +57 -0
- package/scripts/enhanced-version-manager.ts +257 -0
- package/scripts/gen-types.ts +51 -0
- package/scripts/gen-zod.ts +51 -0
- package/scripts/lib/exec.ts +37 -0
- package/scripts/lib/file-ops.ts +58 -0
- package/scripts/lib/version.ts +83 -0
- package/scripts/process-doc-templates.ts +37 -0
- package/scripts/schemas/package.schema.ts +75 -0
- package/scripts/setup-branch-protection.sh +33 -0
- package/scripts/sync-version.ts +39 -0
- package/scripts/sync-versions.ts +488 -0
- package/scripts/validate-schema.ts +49 -0
- package/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
- package/spec/v0.1.9/ecosystem-compliance.json +235 -0
- package/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
- package/spec/v0.1.9/reasoning-compliance.json +654 -0
- package/spec/v0.2.2/kagent-enhancements.json +395 -0
- package/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
- package/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
- package/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
- package/spec/v0.2.3/CHANGELOG.md +176 -0
- package/spec/v0.2.3/README.md +154 -0
- package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
- package/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
- package/spec/v0.2.4/CHANGELOG.md +403 -0
- package/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.4/ossa-0.2.4-dev.schema.json +1696 -0
- package/spec/v0.2.4/ossa-0.2.4.schema.json +170 -68
- package/spec/v0.2.5/CHANGELOG.md +401 -0
- package/spec/v0.2.5/README.md +72 -0
- package/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.5/ossa-0.2.5.schema.json +1696 -0
- package/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
- package/spec/v0.2.5-RC/CHANGELOG.md +401 -0
- package/spec/v0.2.5-RC/README.md +72 -0
- package/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
- package/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
- package/test-results.xml +1 -0
- package/website/.lighthouserc.ts +24 -0
- package/website/.prettierrc +10 -0
- package/website/Dockerfile +30 -0
- package/website/app/about/page.tsx +295 -0
- package/website/app/blog/[slug]/page.tsx +208 -0
- package/website/app/blog/page.tsx +249 -0
- package/website/app/design-guide/page.tsx +511 -0
- package/website/app/docs/[[...slug]]/page.tsx +847 -0
- package/website/app/docs/core-concepts/project-structure/page.tsx +349 -0
- package/website/app/ecosystem/page.tsx +375 -0
- package/website/app/examples/page.tsx +133 -0
- package/website/app/globals.scss +135 -0
- package/website/app/layout.tsx +106 -0
- package/website/app/license/page.tsx +183 -0
- package/website/app/not-found.tsx +18 -0
- package/website/app/page.tsx +474 -0
- package/website/app/playground/page.tsx +487 -0
- package/website/app/robots.ts +19 -0
- package/website/app/rss.xml/route.ts +74 -0
- package/website/app/schema/page.tsx +1001 -0
- package/website/app/sitemap.ts +56 -0
- package/website/app/specification/page.tsx +287 -0
- package/website/components/InstallCommand.tsx +96 -0
- package/website/components/Logo.tsx +97 -0
- package/website/components/StructuredData.tsx +65 -0
- package/website/components/docs/DocsSearch.tsx +104 -0
- package/website/components/docs/DocsSidebar.tsx +155 -0
- package/website/components/docs/MarkdownContent.tsx +401 -0
- package/website/components/docs/VersionSelector.tsx +105 -0
- package/website/components/examples/ExamplesViewer.tsx +293 -0
- package/website/components/layout/Footer.tsx +116 -0
- package/website/components/layout/Header.tsx +168 -0
- package/website/components/schema/SchemaComponentsAccordion.tsx +84 -0
- package/website/components/schema/SchemaExplorer.tsx +213 -0
- package/website/content/blog/OpenAPI-AI-Agents-Standard.md +285 -0
- package/website/content/blog/Why-Formal-Standards-Matter-Now.md +198 -0
- package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +286 -0
- package/website/content/blog/introducing-ossa-framework.md +328 -0
- package/website/content/blog/ossa-production-results.md +279 -0
- package/website/content/blog/welcome-to-ossa.md +43 -0
- package/website/content/blog/why-ai-agents-need-open-standard.md +98 -0
- package/website/content/docs/00-HOME.md +153 -0
- package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
- package/website/content/docs/Examples.md +71 -0
- package/website/content/docs/OpenAPI-Extensions.md +934 -0
- package/website/content/docs/adapters/openai-adapter.md +693 -0
- package/website/content/docs/architecture/execution-flow.md +335 -0
- package/website/content/docs/architecture/multi-agent-systems.md +737 -0
- package/website/content/docs/architecture/overview.md +121 -0
- package/website/content/docs/architecture/stack-integration.md +461 -0
- package/website/content/docs/changelog.md +246 -0
- package/website/content/docs/contributing.md +599 -0
- package/website/content/docs/core-concepts/Project-Structure.md +348 -0
- package/website/content/docs/ecosystem/framework-support.md +819 -0
- package/website/content/docs/ecosystem/overview.md +366 -0
- package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +107 -0
- package/website/content/docs/examples/Migration-Guides.md +214 -0
- package/website/content/docs/for-audiences/Architects.md +224 -0
- package/website/content/docs/for-audiences/Developers.md +220 -0
- package/website/content/docs/for-audiences/Enterprises.md +256 -0
- package/website/content/docs/for-audiences/Students-Researchers.md +122 -0
- package/website/content/docs/getting-started/5-Minute-Overview.md +85 -0
- package/website/content/docs/getting-started/First-Agent.md +196 -0
- package/website/content/docs/getting-started/Hello-World.md +184 -0
- package/website/content/docs/getting-started/Installation.md +155 -0
- package/website/content/docs/getting-started/index.md +92 -0
- package/website/content/docs/getting-started/running-agents.md +309 -0
- package/website/content/docs/getting-started.md +91 -0
- package/website/content/docs/integrations/aiflow.md +104 -0
- package/website/content/docs/integrations/drupal.md +105 -0
- package/website/content/docs/migration-guides/00-INDEX.md +76 -0
- package/website/content/docs/migration-guides/README.md +133 -0
- package/website/content/docs/migration-guides/agent-schema-comparison.md +232 -0
- package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +1750 -0
- package/website/content/docs/migration-guides/crewai-to-ossa.md +274 -0
- package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +2017 -0
- package/website/content/docs/migration-guides/general-agent-schema.yml +247 -0
- package/website/content/docs/migration-guides/index.md +133 -0
- package/website/content/docs/migration-guides/langchain-to-ossa.md +1714 -0
- package/website/content/docs/migration-guides/langflow-to-ossa.md +2075 -0
- package/website/content/docs/migration-guides/migration-manifest.json +64 -0
- package/website/content/docs/migration-guides/openai-to-ossa.md +1202 -0
- package/website/content/docs/openapi-extensions/examples.md +550 -0
- package/website/content/docs/openapi-extensions/index.md +551 -0
- package/website/content/docs/openapi-extensions/operation-extensions.md +457 -0
- package/website/content/docs/openapi-extensions/root-extensions.md +410 -0
- package/website/content/docs/ossa-compliant-badge.md +251 -0
- package/website/content/docs/pre-release/index.md +175 -0
- package/website/content/docs/quick-reference.md +17 -0
- package/website/content/docs/readme.md +35 -0
- package/website/content/docs/schema-reference/agent-spec.md +406 -0
- package/website/content/docs/schema-reference/autonomy.md +568 -0
- package/website/content/docs/schema-reference/constraints.md +543 -0
- package/website/content/docs/schema-reference/index.md +176 -0
- package/website/content/docs/schema-reference/llm-config.md +445 -0
- package/website/content/docs/schema-reference/observability.md +654 -0
- package/website/content/docs/schema-reference/ossa-manifest.md +309 -0
- package/website/content/docs/schema-reference/taxonomy.md +509 -0
- package/website/content/docs/schema-reference/tools.md +628 -0
- package/website/content/docs/templates/blog-post.md +43 -0
- package/website/content/docs/use-cases/00-index.md +395 -0
- package/website/content/docs/use-cases/cicd-code-review.md +1236 -0
- package/website/content/docs/use-cases/customer-support.md +1234 -0
- package/website/content/docs/use-cases/enterprise-compliance.md +1208 -0
- package/website/content/docs/use-cases/research-multi-agent.md +1161 -0
- package/website/content/docs/versioning.md +288 -0
- package/website/lib/version.ts +35 -0
- package/website/lib/versions.json +18 -17
- package/website/next.config.ts +18 -0
- package/website/nginx.conf +32 -0
- package/website/package-lock.json +9679 -0
- package/website/package.json +59 -0
- package/website/postcss.config.mjs +9 -0
- package/website/scripts/fetch-versions.js +166 -0
- package/website/scripts/generate-examples-index.js +163 -0
- package/website/scripts/merge-docs-to-wiki.ts +207 -0
- package/website/scripts/sync-version.js +72 -0
- package/website/scripts/sync-wiki.ts +322 -0
- package/website/scripts/upload-wiki.ts +199 -0
- package/website/styles/_variables.scss +36 -0
- package/website/tailwind.config.ts +136 -0
- package/.buildkit/agent-first-policy.sh +0 -65
- package/.buildkit/branching-workflow.json +0 -41
- package/.buildkit/hooks.yaml +0 -23
- package/.buildkit/install-buildkit-setup.cjs +0 -483
- package/.cursor/plans/ossa-comprehensive-enhancement-issue-audit-plan.plan.md +0 -735
- package/.cursor/plans/ossa-enterprise-transformation-plan-0ccaf09b.plan.md +0 -373
- package/.cursor/plans/ossa-milestone-organization-and-v0-2-4-release-6dafa4ec.plan.md +0 -214
- package/.cursor/rules/problems.json +0 -483
- package/.cursor/settings.json +0 -29
- package/.cursor/worktrees.json +0 -95
- package/.env.local +0 -31
- package/.github/ISSUE_TEMPLATE/README.md +0 -33
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -61
- package/.github/ISSUE_TEMPLATE/config.yml +0 -12
- package/.github/ISSUE_TEMPLATE/feature_request.md +0 -75
- package/.github/wiki_templates/home.md +0 -39
- package/.gitignore.bak +0 -489
- package/.gitlab-ci-trigger +0 -1
- package/.husky/pre-commit +0 -31
- package/.lintstagedrc.json +0 -16
- package/.vscode/extensions.json +0 -6
- package/.vscode/settings.json +0 -3
- package/AUDIT_FIXES.md +0 -139
- package/AUDIT_REPORT.md +0 -308
- package/BUILDKIT_INTEGRATION.md +0 -146
- package/Dockerfile +0 -35
- package/dist/adk/adapters/index.d.ts +0 -64
- package/dist/adk/adapters/index.d.ts.map +0 -1
- package/dist/adk/adapters/index.js +0 -257
- package/dist/adk/adapters/index.js.map +0 -1
- package/dist/adk/agents/custom-agent.d.ts +0 -55
- package/dist/adk/agents/custom-agent.d.ts.map +0 -1
- package/dist/adk/agents/custom-agent.js +0 -167
- package/dist/adk/agents/custom-agent.js.map +0 -1
- package/dist/adk/agents/index.d.ts +0 -64
- package/dist/adk/agents/index.d.ts.map +0 -1
- package/dist/adk/agents/index.js +0 -125
- package/dist/adk/agents/index.js.map +0 -1
- package/dist/adk/agents/llm-agent.d.ts +0 -27
- package/dist/adk/agents/llm-agent.d.ts.map +0 -1
- package/dist/adk/agents/llm-agent.js +0 -63
- package/dist/adk/agents/llm-agent.js.map +0 -1
- package/dist/adk/agents/workflow-agent.d.ts +0 -42
- package/dist/adk/agents/workflow-agent.d.ts.map +0 -1
- package/dist/adk/agents/workflow-agent.js +0 -144
- package/dist/adk/agents/workflow-agent.js.map +0 -1
- package/dist/adk/index.d.ts +0 -10
- package/dist/adk/index.d.ts.map +0 -1
- package/dist/adk/index.js +0 -10
- package/dist/adk/index.js.map +0 -1
- package/dist/adk/orchestration/index.d.ts +0 -63
- package/dist/adk/orchestration/index.d.ts.map +0 -1
- package/dist/adk/orchestration/index.js +0 -264
- package/dist/adk/orchestration/index.js.map +0 -1
- package/dist/adk/state/index.d.ts +0 -73
- package/dist/adk/state/index.d.ts.map +0 -1
- package/dist/adk/state/index.js +0 -177
- package/dist/adk/state/index.js.map +0 -1
- package/dist/adk/tools/index.d.ts +0 -65
- package/dist/adk/tools/index.d.ts.map +0 -1
- package/dist/adk/tools/index.js +0 -252
- package/dist/adk/tools/index.js.map +0 -1
- package/dist/cli/agent-deployment.d.ts +0 -34
- package/dist/cli/agent-deployment.d.ts.map +0 -1
- package/dist/cli/agent-deployment.js +0 -396
- package/dist/cli/agent-deployment.js.map +0 -1
- package/dist/cli/commands/discover.command.d.ts +0 -7
- package/dist/cli/commands/discover.command.d.ts.map +0 -1
- package/dist/cli/commands/discover.command.js +0 -80
- package/dist/cli/commands/discover.command.js.map +0 -1
- package/dist/cli/commands/export.command.d.ts +0 -7
- package/dist/cli/commands/export.command.d.ts.map +0 -1
- package/dist/cli/commands/export.command.js +0 -56
- package/dist/cli/commands/export.command.js.map +0 -1
- package/dist/cli/commands/generate.command.d.ts +0 -7
- package/dist/cli/commands/generate.command.d.ts.map +0 -1
- package/dist/cli/commands/generate.command.js +0 -66
- package/dist/cli/commands/generate.command.js.map +0 -1
- package/dist/cli/commands/gitlab-agent.command.d.ts +0 -8
- package/dist/cli/commands/gitlab-agent.command.d.ts.map +0 -1
- package/dist/cli/commands/gitlab-agent.command.js +0 -201
- package/dist/cli/commands/gitlab-agent.command.js.map +0 -1
- package/dist/cli/commands/import.command.d.ts +0 -7
- package/dist/cli/commands/import.command.d.ts.map +0 -1
- package/dist/cli/commands/import.command.js +0 -36
- package/dist/cli/commands/import.command.js.map +0 -1
- package/dist/cli/commands/init.command.d.ts +0 -7
- package/dist/cli/commands/init.command.d.ts.map +0 -1
- package/dist/cli/commands/init.command.js +0 -146
- package/dist/cli/commands/init.command.js.map +0 -1
- package/dist/cli/commands/migrate.command.d.ts +0 -7
- package/dist/cli/commands/migrate.command.d.ts.map +0 -1
- package/dist/cli/commands/migrate.command.js +0 -110
- package/dist/cli/commands/migrate.command.js.map +0 -1
- package/dist/cli/commands/ossa.d.ts +0 -9
- package/dist/cli/commands/ossa.d.ts.map +0 -1
- package/dist/cli/commands/ossa.js +0 -234
- package/dist/cli/commands/ossa.js.map +0 -1
- package/dist/cli/commands/run.command.d.ts +0 -7
- package/dist/cli/commands/run.command.d.ts.map +0 -1
- package/dist/cli/commands/run.command.js +0 -114
- package/dist/cli/commands/run.command.js.map +0 -1
- package/dist/cli/commands/schema.command.d.ts +0 -7
- package/dist/cli/commands/schema.command.d.ts.map +0 -1
- package/dist/cli/commands/schema.command.js +0 -72
- package/dist/cli/commands/schema.command.js.map +0 -1
- package/dist/cli/commands/validate.command.d.ts +0 -7
- package/dist/cli/commands/validate.command.d.ts.map +0 -1
- package/dist/cli/commands/validate.command.js +0 -125
- package/dist/cli/commands/validate.command.js.map +0 -1
- package/dist/cli/commands/worktree.d.ts +0 -7
- package/dist/cli/commands/worktree.d.ts.map +0 -1
- package/dist/cli/commands/worktree.js +0 -509
- package/dist/cli/commands/worktree.js.map +0 -1
- package/dist/cli/index.d.ts +0 -7
- package/dist/cli/index.d.ts.map +0 -1
- package/dist/cli/index.js +0 -50
- package/dist/cli/index.js.map +0 -1
- package/dist/cli/ossa-cli.d.ts +0 -52
- package/dist/cli/ossa-cli.d.ts.map +0 -1
- package/dist/cli/ossa-cli.js +0 -1061
- package/dist/cli/ossa-cli.js.map +0 -1
- package/dist/core/index.d.ts +0 -31
- package/dist/core/index.d.ts.map +0 -1
- package/dist/core/index.js +0 -37
- package/dist/core/index.js.map +0 -1
- package/dist/core/mcp-server-implementation.d.ts +0 -39
- package/dist/core/mcp-server-implementation.d.ts.map +0 -1
- package/dist/core/mcp-server-implementation.js +0 -1262
- package/dist/core/mcp-server-implementation.js.map +0 -1
- package/dist/core/orchestrator/index.d.ts +0 -156
- package/dist/core/orchestrator/index.d.ts.map +0 -1
- package/dist/core/orchestrator/index.js +0 -446
- package/dist/core/orchestrator/index.js.map +0 -1
- package/dist/core/orchestrator/ossa-orchestrator.d.ts +0 -106
- package/dist/core/orchestrator/ossa-orchestrator.d.ts.map +0 -1
- package/dist/core/orchestrator/ossa-orchestrator.js +0 -396
- package/dist/core/orchestrator/ossa-orchestrator.js.map +0 -1
- package/dist/protocols/acap.d.ts +0 -61
- package/dist/protocols/acap.d.ts.map +0 -1
- package/dist/protocols/acap.js +0 -92
- package/dist/protocols/acap.js.map +0 -1
- package/dist/protocols/index.d.ts +0 -8
- package/dist/protocols/index.d.ts.map +0 -1
- package/dist/protocols/index.js +0 -8
- package/dist/protocols/index.js.map +0 -1
- package/dist/protocols/rasp.d.ts +0 -58
- package/dist/protocols/rasp.d.ts.map +0 -1
- package/dist/protocols/rasp.js +0 -212
- package/dist/protocols/rasp.js.map +0 -1
- package/dist/server/simple-app.d.ts +0 -18
- package/dist/server/simple-app.d.ts.map +0 -1
- package/dist/server/simple-app.js +0 -155
- package/dist/server/simple-app.js.map +0 -1
- package/dist/server/types/agent.d.ts +0 -498
- package/dist/server/types/agent.d.ts.map +0 -1
- package/dist/server/types/agent.js +0 -37
- package/dist/server/types/agent.js.map +0 -1
- package/dist/server/types/server.d.ts +0 -370
- package/dist/server/types/server.d.ts.map +0 -1
- package/dist/server/types/server.js +0 -68
- package/dist/server/types/server.js.map +0 -1
- package/dist/services/discovery.service.d.ts +0 -78
- package/dist/services/discovery.service.d.ts.map +0 -1
- package/dist/services/discovery.service.js +0 -212
- package/dist/services/discovery.service.js.map +0 -1
- package/dist/services/orchestration/worktree-orchestrator.d.ts +0 -146
- package/dist/services/orchestration/worktree-orchestrator.d.ts.map +0 -1
- package/dist/services/orchestration/worktree-orchestrator.js +0 -591
- package/dist/services/orchestration/worktree-orchestrator.js.map +0 -1
- package/dist/services/worktree/branching-strategy.d.ts +0 -17
- package/dist/services/worktree/branching-strategy.d.ts.map +0 -1
- package/dist/services/worktree/branching-strategy.js +0 -66
- package/dist/services/worktree/branching-strategy.js.map +0 -1
- package/dist/services/worktree/git-worktree-manager.d.ts +0 -32
- package/dist/services/worktree/git-worktree-manager.d.ts.map +0 -1
- package/dist/services/worktree/git-worktree-manager.js +0 -61
- package/dist/services/worktree/git-worktree-manager.js.map +0 -1
- package/dist/spec/v0.2.4-dev/README.md +0 -61
- package/dist/spec/v0.2.4-dev/RELEASE-PROCESS.md +0 -130
- package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +0 -599
- package/dist/spec/v0.2.4-dev/openapi/CHANGELOG-0.2.4.md +0 -177
- package/dist/spec/v0.2.4-dev/openapi/README-0.2.4.md +0 -51
- package/dist/spec/v0.2.4-dev/openapi/VERIFICATION-0.2.4.md +0 -147
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +0 -1717
- package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +0 -1732
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
- package/dist/specification/validator.d.ts +0 -82
- package/dist/specification/validator.d.ts.map +0 -1
- package/dist/specification/validator.js +0 -562
- package/dist/specification/validator.js.map +0 -1
- package/dist/types/acdl-api.d.ts +0 -335
- package/dist/types/acdl-api.d.ts.map +0 -1
- package/dist/types/acdl-api.js +0 -6
- package/dist/types/acdl-api.js.map +0 -1
- package/dist/types/agents/index.d.ts +0 -53
- package/dist/types/agents/index.d.ts.map +0 -1
- package/dist/types/agents/index.js +0 -5
- package/dist/types/agents/index.js.map +0 -1
- package/dist/types/api.d.ts +0 -225
- package/dist/types/api.d.ts.map +0 -1
- package/dist/types/api.js +0 -6
- package/dist/types/api.js.map +0 -1
- package/dist/types/architecture/index.d.ts +0 -530
- package/dist/types/architecture/index.d.ts.map +0 -1
- package/dist/types/architecture/index.js +0 -258
- package/dist/types/architecture/index.js.map +0 -1
- package/dist/types/policies/index.d.ts +0 -35
- package/dist/types/policies/index.d.ts.map +0 -1
- package/dist/types/policies/index.js +0 -5
- package/dist/types/policies/index.js.map +0 -1
- package/dist/types/workflows/index.d.ts +0 -40
- package/dist/types/workflows/index.d.ts.map +0 -1
- package/dist/types/workflows/index.js +0 -5
- package/dist/types/workflows/index.js.map +0 -1
- package/dist/utils/version-resolver.d.ts +0 -28
- package/dist/utils/version-resolver.d.ts.map +0 -1
- package/dist/utils/version-resolver.js +0 -110
- package/dist/utils/version-resolver.js.map +0 -1
- package/docker-compose.yml +0 -160
- package/public/api-docs.html +0 -206
- package/public/assets/favicon.svg +0 -8
- package/public/assets/script.js +0 -279
- package/public/assets/style.css +0 -632
- package/public/index.html +0 -307
- package/public/redocly-config.yaml +0 -80
- package/public/src/api/acdl-specification.yml +0 -531
- package/public/src/api/clean-architecture.openapi.yml +0 -1435
- package/public/src/api/context7-mcp.openapi.yml +0 -313
- package/public/src/api/magic-mcp.openapi.yml +0 -647
- package/public/src/api/mcp-infrastructure.openapi.yml +0 -904
- package/public/src/api/orchestration.openapi.yml +0 -444
- package/public/src/api/ossa-complete.openapi.yml +0 -2250
- package/public/src/api/project-discovery.openapi.yml +0 -1293
- package/public/src/api/rebuild-audit.openapi.yml +0 -800
- package/public/src/api/specification.openapi.yml +0 -498
- package/public/src/api/voice-agent-specification.yml +0 -640
- package/public/src/api/web-eval-mcp.openapi.yml +0 -426
- package/pyrightconfig.json +0 -13
- package/redocly.yaml +0 -56
- package/specs/README.md +0 -31
- package/specs/acdl-specification.yml +0 -531
- package/specs/clean-architecture.openapi.yml +0 -1435
- package/specs/context7-mcp.openapi.yml +0 -313
- package/specs/magic-mcp.openapi.yml +0 -647
- package/specs/mcp-infrastructure.openapi.yml +0 -904
- package/specs/orchestration.openapi.yml +0 -444
- package/specs/ossa-complete.openapi.yml +0 -2250
- package/specs/project-discovery.openapi.yml +0 -1293
- package/specs/rebuild-audit.openapi.yml +0 -800
- package/specs/specification.openapi.yml +0 -498
- package/specs/test-api.openapi.yml +0 -20
- package/specs/voice-agent-specification.yml +0 -640
- package/specs/web-eval-mcp.openapi.yml +0 -426
- package/src/adk/adapters/index.ts +0 -310
- package/src/adk/agents/custom-agent.ts +0 -206
- package/src/adk/agents/index.ts +0 -158
- package/src/adk/agents/llm-agent.ts +0 -76
- package/src/adk/agents/workflow-agent.ts +0 -191
- package/src/adk/index.ts +0 -10
- package/src/adk/orchestration/index.ts +0 -352
- package/src/adk/state/index.ts +0 -217
- package/src/adk/tools/index.ts +0 -291
- package/src/api/acdl-specification.yml +0 -531
- package/src/api/agent-manifest.schema.json +0 -859
- package/src/api/agent-worktree-schema.json +0 -320
- package/src/api/clean-architecture.openapi.yml +0 -1435
- package/src/api/context7-mcp.openapi.yml +0 -313
- package/src/api/magic-mcp.openapi.yml +0 -647
- package/src/api/mcp-infrastructure.openapi.yml +0 -904
- package/src/api/openapi.redoc.config.json +0 -6
- package/src/api/orchestration.openapi.yml +0 -444
- package/src/api/ossa-complete.openapi.yml +0 -2250
- package/src/api/project-discovery.openapi.yml +0 -1293
- package/src/api/rebuild-audit.openapi.yml +0 -800
- package/src/api/specification.openapi.yml +0 -498
- package/src/api/test-api.openapi.yml +0 -20
- package/src/api/voice-agent-specification.yml +0 -640
- package/src/api/web-eval-mcp.openapi.yml +0 -426
- package/src/api/workflow.schema.json +0 -524
- package/src/cli/agent-deployment.ts +0 -452
- package/src/cli/commands/ossa.ts +0 -272
- package/src/cli/commands/worktree.ts +0 -603
- package/src/cli/ossa-cli.ts +0 -1176
- package/src/core/index.ts +0 -42
- package/src/core/mcp-server-implementation.ts +0 -1409
- package/src/core/orchestrator/index.ts +0 -611
- package/src/core/orchestrator/ossa-orchestrator.ts +0 -504
- package/src/mcp/simple-server.ts +0 -322
- package/src/protocols/acap.ts +0 -146
- package/src/protocols/index.ts +0 -8
- package/src/protocols/rasp.ts +0 -263
- package/src/server/app.ts +0 -472
- package/src/server/middleware/agentAccess.ts +0 -10
- package/src/server/middleware/asyncHandler.ts +0 -10
- package/src/server/middleware/auth.ts +0 -10
- package/src/server/middleware/errorHandler.ts +0 -9
- package/src/server/middleware/logging.ts +0 -10
- package/src/server/middleware/metrics.ts +0 -10
- package/src/server/middleware/validation.ts +0 -10
- package/src/server/routes/agents.ts +0 -632
- package/src/server/routes/monitoring.ts +0 -13
- package/src/server/routes/orchestration.ts +0 -13
- package/src/server/routes/specifications.ts +0 -13
- package/src/server/services/AgentService.ts +0 -46
- package/src/server/services/ExecutionService.ts +0 -51
- package/src/server/services/SpecificationService.ts +0 -22
- package/src/server/services/WebhookService.ts +0 -24
- package/src/server/simple-app.ts +0 -174
- package/src/server/types/agent.ts +0 -612
- package/src/server/types/server.ts +0 -465
- package/src/services/orchestration/worktree-orchestrator.ts +0 -779
- package/src/services/worktree/branching-strategy.ts +0 -76
- package/src/services/worktree/git-worktree-manager.ts +0 -86
- package/website/.next/BUILD_ID +0 -1
- package/website/.next/app-build-manifest.json +0 -151
- package/website/.next/app-path-routes-manifest.json +0 -19
- package/website/.next/build-manifest.json +0 -33
- package/website/.next/cache/.previewinfo +0 -1
- package/website/.next/cache/.rscinfo +0 -1
- package/website/.next/cache/.tsbuildinfo +0 -1
- package/website/.next/cache/fetch-cache/920aec34c288eefa97c5efba3baf95a846a0beb0c48a5064980a2c24b83e941c +0 -1
- package/website/.next/cache/fetch-cache/c2ad7a72b43463a0daaa85ca926a8af38defd17ecb64f1fdd2dd4fe2293e8b26 +0 -1
- package/website/.next/cache/fetch-cache/d10eb963d5980c8a50ee9ed24472339ee6da054ead33e00676e61e8b8e62cc83 +0 -1
- package/website/.next/cache/fetch-cache/f243d84640477f3205b74a85013018acd63b692144675630a74d1af8a3e9eab5 +0 -1
- package/website/.next/cache/webpack/client-production/0.pack +0 -0
- package/website/.next/cache/webpack/client-production/1.pack +0 -0
- package/website/.next/cache/webpack/client-production/10.pack +0 -0
- package/website/.next/cache/webpack/client-production/11.pack +0 -0
- package/website/.next/cache/webpack/client-production/12.pack +0 -0
- package/website/.next/cache/webpack/client-production/13.pack +0 -0
- package/website/.next/cache/webpack/client-production/14.pack +0 -0
- package/website/.next/cache/webpack/client-production/15.pack +0 -0
- package/website/.next/cache/webpack/client-production/16.pack +0 -0
- package/website/.next/cache/webpack/client-production/17.pack +0 -0
- package/website/.next/cache/webpack/client-production/18.pack +0 -0
- package/website/.next/cache/webpack/client-production/2.pack +0 -0
- package/website/.next/cache/webpack/client-production/3.pack +0 -0
- package/website/.next/cache/webpack/client-production/4.pack +0 -0
- package/website/.next/cache/webpack/client-production/5.pack +0 -0
- package/website/.next/cache/webpack/client-production/6.pack +0 -0
- package/website/.next/cache/webpack/client-production/7.pack +0 -0
- package/website/.next/cache/webpack/client-production/8.pack +0 -0
- package/website/.next/cache/webpack/client-production/9.pack +0 -0
- package/website/.next/cache/webpack/client-production/index.pack +0 -0
- package/website/.next/cache/webpack/client-production/index.pack.old +0 -0
- package/website/.next/cache/webpack/edge-server-production/0.pack +0 -0
- package/website/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/website/.next/cache/webpack/server-production/0.pack +0 -0
- package/website/.next/cache/webpack/server-production/1.pack +0 -0
- package/website/.next/cache/webpack/server-production/10.pack +0 -0
- package/website/.next/cache/webpack/server-production/11.pack +0 -0
- package/website/.next/cache/webpack/server-production/12.pack +0 -0
- package/website/.next/cache/webpack/server-production/2.pack +0 -0
- package/website/.next/cache/webpack/server-production/3.pack +0 -0
- package/website/.next/cache/webpack/server-production/4.pack +0 -0
- package/website/.next/cache/webpack/server-production/5.pack +0 -0
- package/website/.next/cache/webpack/server-production/6.pack +0 -0
- package/website/.next/cache/webpack/server-production/7.pack +0 -0
- package/website/.next/cache/webpack/server-production/8.pack +0 -0
- package/website/.next/cache/webpack/server-production/9.pack +0 -0
- package/website/.next/cache/webpack/server-production/index.pack +0 -0
- package/website/.next/cache/webpack/server-production/index.pack.old +0 -0
- package/website/.next/diagnostics/build-diagnostics.json +0 -6
- package/website/.next/diagnostics/framework.json +0 -1
- package/website/.next/export-detail.json +0 -5
- package/website/.next/export-marker.json +0 -6
- package/website/.next/images-manifest.json +0 -57
- package/website/.next/next-minimal-server.js.nft.json +0 -1
- package/website/.next/next-server.js.nft.json +0 -1
- package/website/.next/package.json +0 -1
- package/website/.next/prerender-manifest.json +0 -2143
- package/website/.next/react-loadable-manifest.json +0 -1898
- package/website/.next/required-server-files.json +0 -320
- package/website/.next/routes-manifest.json +0 -161
- package/website/.next/server/app/_not-found/page.js +0 -2
- package/website/.next/server/app/_not-found/page.js.nft.json +0 -1
- package/website/.next/server/app/_not-found/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/_not-found.html +0 -1
- package/website/.next/server/app/_not-found.meta +0 -8
- package/website/.next/server/app/_not-found.rsc +0 -23
- package/website/.next/server/app/about/page.js +0 -2
- package/website/.next/server/app/about/page.js.nft.json +0 -1
- package/website/.next/server/app/about/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/about.html +0 -1
- package/website/.next/server/app/about.meta +0 -7
- package/website/.next/server/app/about.rsc +0 -40
- package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.html +0 -217
- package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.meta +0 -7
- package/website/.next/server/app/blog/OpenAPI-AI-Agents-Standard.rsc +0 -308
- package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.html +0 -180
- package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.meta +0 -7
- package/website/.next/server/app/blog/Why-Formal-Standards-Matter-Now.rsc +0 -232
- package/website/.next/server/app/blog/[slug]/page.js +0 -2
- package/website/.next/server/app/blog/[slug]/page.js.nft.json +0 -1
- package/website/.next/server/app/blog/[slug]/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/blog/introducing-ossa-framework.html +0 -263
- package/website/.next/server/app/blog/introducing-ossa-framework.meta +0 -7
- package/website/.next/server/app/blog/introducing-ossa-framework.rsc +0 -351
- package/website/.next/server/app/blog/ossa-production-results.html +0 -198
- package/website/.next/server/app/blog/ossa-production-results.meta +0 -7
- package/website/.next/server/app/blog/ossa-production-results.rsc +0 -302
- package/website/.next/server/app/blog/page.js +0 -2
- package/website/.next/server/app/blog/page.js.nft.json +0 -1
- package/website/.next/server/app/blog/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/blog/welcome-to-ossa.html +0 -22
- package/website/.next/server/app/blog/welcome-to-ossa.meta +0 -7
- package/website/.next/server/app/blog/welcome-to-ossa.rsc +0 -31
- package/website/.next/server/app/blog/why-ai-agents-need-open-standard.html +0 -63
- package/website/.next/server/app/blog/why-ai-agents-need-open-standard.meta +0 -7
- package/website/.next/server/app/blog/why-ai-agents-need-open-standard.rsc +0 -121
- package/website/.next/server/app/blog.html +0 -1
- package/website/.next/server/app/blog.meta +0 -7
- package/website/.next/server/app/blog.rsc +0 -35
- package/website/.next/server/app/design-guide/page.js +0 -12
- package/website/.next/server/app/design-guide/page.js.nft.json +0 -1
- package/website/.next/server/app/design-guide/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/design-guide.html +0 -11
- package/website/.next/server/app/design-guide.meta +0 -7
- package/website/.next/server/app/design-guide.rsc +0 -41
- package/website/.next/server/app/docs.html +0 -1
- package/website/.next/server/app/docs.meta +0 -7
- package/website/.next/server/app/docs.rsc +0 -42
- package/website/.next/server/app/ecosystem/page.js +0 -2
- package/website/.next/server/app/ecosystem/page.js.nft.json +0 -1
- package/website/.next/server/app/ecosystem/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/ecosystem.html +0 -1
- package/website/.next/server/app/ecosystem.meta +0 -7
- package/website/.next/server/app/ecosystem.rsc +0 -40
- package/website/.next/server/app/examples.html +0 -1
- package/website/.next/server/app/examples.meta +0 -7
- package/website/.next/server/app/examples.rsc +0 -14559
- package/website/.next/server/app/index.html +0 -3
- package/website/.next/server/app/index.meta +0 -7
- package/website/.next/server/app/index.rsc +0 -40
- package/website/.next/server/app/license/page.js +0 -2
- package/website/.next/server/app/license/page.js.nft.json +0 -1
- package/website/.next/server/app/license/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/license.html +0 -191
- package/website/.next/server/app/license.meta +0 -7
- package/website/.next/server/app/license.rsc +0 -222
- package/website/.next/server/app/page.js +0 -4
- package/website/.next/server/app/page.js.nft.json +0 -1
- package/website/.next/server/app/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/playground/page.js +0 -111
- package/website/.next/server/app/playground/page.js.nft.json +0 -1
- package/website/.next/server/app/playground/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/playground.html +0 -1
- package/website/.next/server/app/playground.meta +0 -7
- package/website/.next/server/app/playground.rsc +0 -30
- package/website/.next/server/app/robots.txt/route.js +0 -1
- package/website/.next/server/app/robots.txt/route.js.nft.json +0 -1
- package/website/.next/server/app/robots.txt/route_client-reference-manifest.js +0 -1
- package/website/.next/server/app/robots.txt.body +0 -6
- package/website/.next/server/app/robots.txt.meta +0 -1
- package/website/.next/server/app/rss.xml/route.js +0 -18
- package/website/.next/server/app/rss.xml/route.js.nft.json +0 -1
- package/website/.next/server/app/rss.xml/route_client-reference-manifest.js +0 -1
- package/website/.next/server/app/rss.xml.body +0 -11
- package/website/.next/server/app/rss.xml.meta +0 -1
- package/website/.next/server/app/schema/page.js +0 -76
- package/website/.next/server/app/schema/page.js.nft.json +0 -1
- package/website/.next/server/app/schema/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/schema.html +0 -1
- package/website/.next/server/app/schema.meta +0 -7
- package/website/.next/server/app/schema.rsc +0 -26
- package/website/.next/server/app/sitemap.xml/route.js +0 -1
- package/website/.next/server/app/sitemap.xml/route.js.nft.json +0 -1
- package/website/.next/server/app/sitemap.xml/route_client-reference-manifest.js +0 -1
- package/website/.next/server/app/sitemap.xml.body +0 -39
- package/website/.next/server/app/sitemap.xml.meta +0 -1
- package/website/.next/server/app/specification/page.js +0 -10
- package/website/.next/server/app/specification/page.js.nft.json +0 -1
- package/website/.next/server/app/specification/page_client-reference-manifest.js +0 -1
- package/website/.next/server/app/specification.html +0 -9
- package/website/.next/server/app/specification.meta +0 -7
- package/website/.next/server/app/specification.rsc +0 -32
- package/website/.next/server/app-paths-manifest.json +0 -19
- package/website/.next/server/chunks/18.js +0 -1
- package/website/.next/server/chunks/227.js +0 -9
- package/website/.next/server/chunks/339.js +0 -25
- package/website/.next/server/chunks/49.js +0 -1
- package/website/.next/server/chunks/51.js +0 -1
- package/website/.next/server/chunks/57.js +0 -1
- package/website/.next/server/chunks/579.js +0 -16
- package/website/.next/server/chunks/611.js +0 -6
- package/website/.next/server/chunks/873.js +0 -22
- package/website/.next/server/chunks/900.js +0 -1
- package/website/.next/server/chunks/97.js +0 -1
- package/website/.next/server/functions-config-manifest.json +0 -4
- package/website/.next/server/interception-route-rewrite-manifest.js +0 -1
- package/website/.next/server/middleware-build-manifest.js +0 -1
- package/website/.next/server/middleware-manifest.json +0 -6
- package/website/.next/server/middleware-react-loadable-manifest.js +0 -1
- package/website/.next/server/next-font-manifest.js +0 -1
- package/website/.next/server/next-font-manifest.json +0 -1
- package/website/.next/server/pages/404.html +0 -1
- package/website/.next/server/pages/500.html +0 -1
- package/website/.next/server/pages/_app.js +0 -1
- package/website/.next/server/pages/_app.js.nft.json +0 -1
- package/website/.next/server/pages/_document.js +0 -1
- package/website/.next/server/pages/_document.js.nft.json +0 -1
- package/website/.next/server/pages/_error.js +0 -19
- package/website/.next/server/pages/_error.js.nft.json +0 -1
- package/website/.next/server/pages-manifest.json +0 -6
- package/website/.next/server/server-reference-manifest.js +0 -1
- package/website/.next/server/server-reference-manifest.json +0 -1
- package/website/.next/server/webpack-runtime.js +0 -1
- package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_buildManifest.js +0 -1
- package/website/.next/static/IDhDQiozPwOaA3PpMqvTE/_ssgManifest.js +0 -1
- package/website/.next/static/chunks/119.05f66060d7798fc9.js +0 -25
- package/website/.next/static/chunks/255-bf407b21685f2318.js +0 -1
- package/website/.next/static/chunks/451-235273497e501ae9.js +0 -1
- package/website/.next/static/chunks/4bd1b696-409494caf8c83275.js +0 -1
- package/website/.next/static/chunks/619-f072ac750404f9da.js +0 -1
- package/website/.next/static/chunks/651-5cd3c87d43b7eb46.js +0 -1
- package/website/.next/static/chunks/778.278ac2aadb2a1105.js +0 -1
- package/website/.next/static/chunks/890-ab915e0570e1961b.js +0 -1
- package/website/.next/static/chunks/app/_not-found/page-ccdaf9d90b537c5d.js +0 -1
- package/website/.next/static/chunks/app/about/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/blog/[slug]/page-8fd43000c4969233.js +0 -1
- package/website/.next/static/chunks/app/blog/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/design-guide/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/ecosystem/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/layout-ccacbd90656baa78.js +0 -1
- package/website/.next/static/chunks/app/license/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/app/page-31241dc7465f9590.js +0 -1
- package/website/.next/static/chunks/app/playground/page-c2af00885374900f.js +0 -1
- package/website/.next/static/chunks/app/robots.txt/route-032c05054032342f.js +0 -1
- package/website/.next/static/chunks/app/rss.xml/route-032c05054032342f.js +0 -1
- package/website/.next/static/chunks/app/schema/page-f7c224b281771083.js +0 -1
- package/website/.next/static/chunks/app/sitemap.xml/route-032c05054032342f.js +0 -1
- package/website/.next/static/chunks/app/specification/page-bd4cb2219b41f933.js +0 -1
- package/website/.next/static/chunks/framework-1ce91eb6f9ecda85.js +0 -1
- package/website/.next/static/chunks/main-3099e141650ec47a.js +0 -1
- package/website/.next/static/chunks/main-app-a2fc6ac9305e3090.js +0 -1
- package/website/.next/static/chunks/pages/_app-5addca2b3b969fde.js +0 -1
- package/website/.next/static/chunks/pages/_error-022e4ac7bbb9914f.js +0 -1
- package/website/.next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- package/website/.next/static/chunks/webpack-6ecb09e5c6e34cb4.js +0 -1
- package/website/.next/static/css/23135390005d4468.css +0 -3
- package/website/.next/static/media/19cfc7226ec3afaa-s.woff2 +0 -0
- package/website/.next/static/media/21350d82a1f187e9-s.woff2 +0 -0
- package/website/.next/static/media/8e9860b6e62d6359-s.woff2 +0 -0
- package/website/.next/static/media/ba9851c3c22cd980-s.woff2 +0 -0
- package/website/.next/static/media/c5fe6dc8356a8c31-s.woff2 +0 -0
- package/website/.next/static/media/df0a9ae256c0569c-s.woff2 +0 -0
- package/website/.next/static/media/e4af272ccee01ff0-s.p.woff2 +0 -0
- package/website/.next/trace +0 -3
- package/website/.next/types/app/about/page.ts +0 -84
- package/website/.next/types/app/blog/[slug]/page.ts +0 -84
- package/website/.next/types/app/blog/page.ts +0 -84
- package/website/.next/types/app/design-guide/page.ts +0 -84
- package/website/.next/types/app/ecosystem/page.ts +0 -84
- package/website/.next/types/app/license/page.ts +0 -84
- package/website/.next/types/app/page.ts +0 -84
- package/website/.next/types/app/playground/page.ts +0 -84
- package/website/.next/types/app/rss.xml/route.ts +0 -347
- package/website/.next/types/app/schema/page.ts +0 -84
- package/website/.next/types/app/specification/page.ts +0 -84
- package/website/.next/types/cache-life.d.ts +0 -141
- package/website/.next/types/package.json +0 -1
- package/website/.next/types/routes.d.ts +0 -85
- package/website/.next/types/validator.ts +0 -187
- package/website/.wiki-export/Agent-Folder-Structure.md +0 -215
- package/website/.wiki-export/CI-STATUS.md +0 -66
- package/website/.wiki-export/COMPLETE-IMPLEMENTATION-CHECKLIST.md +0 -74
- package/website/.wiki-export/DRUPAL-MODULE-INTEGRATION.md +0 -103
- package/website/.wiki-export/FINAL-STATUS.md +0 -63
- package/website/.wiki-export/Getting-Started.md +0 -87
- package/website/.wiki-export/INSTRUCTIONS.md +0 -46
- package/website/.wiki-export/INTEGRATION-ANALYSIS.md +0 -216
- package/website/.wiki-export/MANIFEST.json +0 -62
- package/website/.wiki-export/OSSA-COMPLIANT-BADGE.md +0 -247
- package/website/.wiki-export/Openapi-Extensions.md +0 -930
- package/website/.wiki-export/README.md +0 -31
- package/website/.wiki-export/RELEASE-READINESS.md +0 -95
- package/website/.wiki-export/VERSIONING.md +0 -284
- package/website/next-env.d.ts +0 -6
- package/website/out/app-build-manifest.json +0 -3
- package/website/out/build-manifest.json +0 -17
- package/website/out/cache/.rscinfo +0 -1
- package/website/out/cache/next-devtools-config.json +0 -1
- package/website/out/cache/webpack/client-development/0.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/1.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/2.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/3.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/index.pack.gz +0 -0
- package/website/out/cache/webpack/client-development/index.pack.gz.old +0 -0
- package/website/out/cache/webpack/client-development-fallback/0.pack.gz +0 -0
- package/website/out/cache/webpack/client-development-fallback/index.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/0.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/1.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/2.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/3.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/index.pack.gz +0 -0
- package/website/out/cache/webpack/server-development/index.pack.gz.old +0 -0
- package/website/out/package.json +0 -1
- package/website/out/prerender-manifest.json +0 -11
- package/website/out/react-loadable-manifest.json +0 -1
- package/website/out/routes-manifest.json +0 -1
- package/website/out/server/app-paths-manifest.json +0 -1
- package/website/out/server/interception-route-rewrite-manifest.js +0 -1
- package/website/out/server/middleware-build-manifest.js +0 -19
- package/website/out/server/middleware-manifest.json +0 -6
- package/website/out/server/middleware-react-loadable-manifest.js +0 -1
- package/website/out/server/next-font-manifest.js +0 -1
- package/website/out/server/next-font-manifest.json +0 -1
- package/website/out/server/pages-manifest.json +0 -1
- package/website/out/server/server-reference-manifest.js +0 -1
- package/website/out/server/server-reference-manifest.json +0 -5
- package/website/out/static/chunks/polyfills.js +0 -1
- package/website/out/static/development/_buildManifest.js +0 -1
- package/website/out/static/development/_ssgManifest.js +0 -1
- package/website/out/trace +0 -2
- package/website/out/types/cache-life.d.ts +0 -141
- package/website/out/types/package.json +0 -1
- package/website/out/types/routes.d.ts +0 -85
- package/website/out/types/validator.ts +0 -187
- package/website/public/examples.json +0 -476
- package/website/public/schemas/openapi-extensions.schema.json +0 -486
- package/website/tsconfig.tsbuildinfo +0 -1
- /package/dist/spec/{v0.2.4-dev → v0.2.4}/ossa-0.2.4-dev.yaml +0 -0
- /package/spec/v0.2.4/{ossa-0.2.4.yaml → ossa-0.2.4-dev.yaml} +0 -0
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><!--IDhDQiozPwOaA3PpMqvTE--><html lang="en" class="__variable_f367f3"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/e4af272ccee01ff0-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" as="image" href="/assets/brand/ossa-logo.svg"/><link rel="stylesheet" href="/_next/static/css/23135390005d4468.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-6ecb09e5c6e34cb4.js"/><script src="/_next/static/chunks/4bd1b696-409494caf8c83275.js" async=""></script><script src="/_next/static/chunks/255-bf407b21685f2318.js" async=""></script><script src="/_next/static/chunks/main-app-a2fc6ac9305e3090.js" async=""></script><script src="/_next/static/chunks/619-f072ac750404f9da.js" async=""></script><script src="/_next/static/chunks/app/layout-ccacbd90656baa78.js" async=""></script><script src="/_next/static/chunks/app/license/page-bd4cb2219b41f933.js" async=""></script><link rel="icon" href="/assets/favicon.svg" type="image/svg+xml"/><link rel="apple-touch-icon" href="/assets/brand/ossa-logo.svg"/><meta name="next-size-adjust" content=""/><title>Apache License 2.0 - Open Standard Agents | Open Standard Agents</title><meta name="description" content="Review the Apache License 2.0 terms that govern the Open Standard Agents project and ecosystem."/><meta name="author" content="OSSA Standards Team"/><meta name="keywords" content="OSSA,AI Agents,OpenAPI,Standard,Specification,AI,Machine Learning,Agent Framework"/><meta name="creator" content="OSSA Standards Team"/><meta name="publisher" content="OSSA Standards Team"/><meta name="robots" content="index, follow"/><meta name="googlebot" content="index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1"/><link rel="canonical" href="https://openstandardagents.org/"/><meta property="og:title" content="Open Standard Agents - Industry Standard for Agent Orchestration"/><meta property="og:description" content="The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere."/><meta property="og:site_name" content="Open Standard Agents"/><meta property="og:locale" content="en_US"/><meta property="og:image" content="https://openstandardagents.org/og-image.png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="OSSA - Open Standard for Scalable AI Agents"/><meta property="og:type" content="website"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:creator" content="@openstandardagents"/><meta name="twitter:title" content="Open Standard Agents - Industry Standard for Agent Orchestration"/><meta name="twitter:description" content="The vendor-neutral specification for multi-agent systems"/><meta name="twitter:image" content="https://openstandardagents.org/og-image.png"/><meta name="twitter:image:width" content="1200"/><meta name="twitter:image:height" content="630"/><meta name="twitter:image:alt" content="OSSA - Open Standard for Scalable AI Agents"/><script type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"OSSA Standards Team","url":"https://openstandardagents.org","logo":"https://openstandardagents.org/assets/brand/ossa-logo.svg","sameAs":["https://github.com/blueflyio/openstandardagents","https://www.npmjs.com/package/@bluefly/openstandardagents"],"description":"Open Standard Agents Organization - Maintaining the Industry Standard for Agent Orchestration"}</script><script type="application/ld+json">{"@context":"https://schema.org","@type":"WebSite","name":"OSSA","url":"https://openstandardagents.org","description":"Open Standard for Scalable AI Agents - The OpenAPI for AI Agents","potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://openstandardagents.org/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}</script><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div class="flex flex-col min-h-screen"><a href="#main-content" class="sr-only focus:not-sr-only focus:absolute focus:top-4 focus:left-4 focus:z-50 focus:px-4 focus:py-2 focus:bg-primary focus:text-white focus:rounded">Skip to main content</a><header class="bg-white border-b border-gray-300 sticky top-0 z-50"><nav class="container mx-auto max-w-6xl px-4"><div class="flex items-center justify-between h-16"><a class="flex items-center space-x-3 group" href="/"><img src="/assets/brand/ossa-logo.svg" alt="OSSA Logo" class="h-10 w-10 transition-transform group-hover:scale-110"/><span class="text-2xl font-bold bg-gradient-to-r from-[#0066CC] to-[#00B8D4] bg-clip-text text-transparent">OSSA</span></a><div class="hidden md:flex items-center space-x-3 lg:space-x-6 text-sm lg:text-base"><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/about/">About</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/specification/">Specification</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/schema/">Schema</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/docs/">Docs</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/blog/">Blog</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/playground/">Playground</a><a class="text-gray-600 hover:text-[#0066CC] transition-colors font-medium whitespace-nowrap" href="/examples/">Examples</a><a href="https://github.com/blueflyio/openstandardagents" target="_blank" rel="noopener noreferrer" class="text-gray-600 hover:text-[#0066CC] transition-colors flex items-center font-medium" title="View on GitHub"><svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg></a></div><button class="md:hidden p-2 focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2 rounded" aria-label="Toggle menu" aria-expanded="false" aria-controls="mobile-menu"><svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path></svg></button></div></nav></header><main id="main-content" class="flex-grow" tabindex="-1"><div class="bg-gradient-to-br from-primary via-accent to-secondary text-white py-20 px-4"><div class="container mx-auto max-w-4xl text-center"><div class="inline-flex items-center justify-center w-20 h-20 bg-white/20 backdrop-blur-sm rounded-full mb-6"><svg class="w-10 h-10" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 13h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V20a2 2 0 01-2 2z"></path></svg></div><h1 class="text-5xl font-bold mb-4">Apache License 2.0</h1><p class="text-xl text-white/90 mb-6">The governing open source license for the Open Standard Agents project and its documentation.</p><div class="flex flex-col sm:flex-row gap-4 justify-center"><a class="inline-flex items-center justify-center px-6 py-3 bg-white text-primary font-semibold rounded-lg shadow-lg hover:-translate-y-0.5 transition-all" href="#license-text">Read Full Text</a><a href="https://opensource.org/licenses/Apache-2.0" target="_blank" rel="noopener noreferrer" class="inline-flex items-center justify-center px-6 py-3 bg-white/10 text-white font-semibold border border-white/30 rounded-lg hover:bg-white/20 transition-all">Official License Page</a><a href="/licenses/apache-2.0.txt" class="inline-flex items-center justify-center px-6 py-3 bg-white/10 text-white font-semibold border border-white/30 rounded-lg hover:bg-white/20 transition-all">Download TXT</a></div></div></div><div class="container mx-auto max-w-6xl px-4 py-12 space-y-12"><section class="grid md:grid-cols-3 gap-6"><div class="bg-white rounded-xl shadow-md p-6 border border-gray-100"><div class="w-12 h-12 rounded-lg bg-primary/10 text-primary flex items-center justify-center mb-4"><svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m0 0l3-3m-3 3l-3-3m9-5h3m-3 0l-3-3m3 3l-3 3M9 12H6m3 0l3-3m-3 3l3 3"></path></svg></div><h2 class="text-2xl font-semibold mb-3 text-gray-900">Permissions</h2><ul class="space-y-2 text-gray-700 list-disc list-inside"><li>Use, modify, and distribute the specification and code</li><li>Commercial and private use allowed</li><li>Patent grants included for contributors</li></ul></div><div class="bg-white rounded-xl shadow-md p-6 border border-gray-100"><div class="w-12 h-12 rounded-lg bg-secondary/10 text-secondary flex items-center justify-center mb-4"><svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg></div><h2 class="text-2xl font-semibold mb-3 text-gray-900">Conditions</h2><ul class="space-y-2 text-gray-700 list-disc list-inside"><li>Preserve copyright and license notices</li><li>Include a NOTICE file when required</li><li>Document significant changes to the work</li></ul></div><div class="bg-white rounded-xl shadow-md p-6 border border-gray-100"><div class="w-12 h-12 rounded-lg bg-accent/10 text-accent flex items-center justify-center mb-4"><svg class="w-7 h-7" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 9V5a2 2 0 012-2h6a2 2 0 012 2v6m-8 4h6m-6 0l3 3m-3-3l3-3M15 9h.01M5 7h.01M7 5h.01M19 15h.01M7 17h.01M5 19h.01M3 3l18 18"></path></svg></div><h2 class="text-2xl font-semibold mb-3 text-gray-900">Limitations</h2><ul class="space-y-2 text-gray-700 list-disc list-inside"><li>No trademark license is granted</li><li>No warranty - software is provided "as is"</li><li>Liability is limited under the terms</li></ul></div></section><section class="bg-gray-50 rounded-2xl border border-gray-200 p-8 shadow-sm"><div class="flex flex-col md:flex-row md:items-center md:justify-between gap-6 mb-6"><div><p class="text-sm font-semibold text-primary uppercase tracking-wide">Open Source Commitment</p><h2 class="text-3xl font-bold text-gray-900 mt-2">Why Apache 2.0?</h2><p class="text-lg text-gray-700 mt-3 max-w-3xl">Apache 2.0 offers a clear, business-friendly open source model with patent grants, making it safe for enterprises, vendors, and researchers to build on the Open Standard Agents specification and ecosystem.</p></div><div class="flex gap-3"><a href="/licenses/apache-2.0.txt" class="inline-flex items-center justify-center px-4 py-2 bg-primary text-white font-semibold rounded-lg shadow hover:-translate-y-0.5 transition-all">Download License</a><a href="https://opensource.org/licenses/Apache-2.0" target="_blank" rel="noopener noreferrer" class="inline-flex items-center justify-center px-4 py-2 bg-white text-primary font-semibold border border-primary rounded-lg hover:bg-primary/10 transition-all">OpenSource.org</a></div></div><div class="grid md:grid-cols-2 gap-6"><div class="bg-white rounded-xl border border-gray-100 p-6 shadow-sm"><h3 class="text-xl font-semibold text-gray-900 mb-3">Using OSSA in your projects</h3><ul class="space-y-2 text-gray-700 leading-relaxed list-disc list-inside"><li>Embed the specification, reference implementations, or docs in commercial and open source products.</li><li>Attribute OSSA and retain the license headers in source distributions.</li><li>Contribute improvements knowing patent grants apply to contributions.</li></ul></div><div class="bg-white rounded-xl border border-gray-100 p-6 shadow-sm"><h3 class="text-xl font-semibold text-gray-900 mb-3">Need attribution text?</h3><p class="text-gray-700 mb-3">Include the following notice in your documentation or about pages:</p><div class="bg-gray-900 text-gray-100 p-4 rounded-lg text-sm font-mono overflow-x-auto border border-gray-800">Open Standard Agents Initiative - licensed under the Apache License, Version 2.0. You may not use this project except in compliance with the License. You may obtain a copy at https://opensource.org/licenses/Apache-2.0</div></div></div></section><section id="license-text" class="space-y-4"><div class="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3"><div><p class="text-sm font-semibold text-primary uppercase tracking-wide">Full Text</p><h2 class="text-3xl font-bold text-gray-900">Apache License, Version 2.0</h2></div><div class="flex gap-3"><a href="/licenses/apache-2.0.txt" class="inline-flex items-center justify-center px-4 py-2 bg-primary text-white font-semibold rounded-lg shadow hover:-translate-y-0.5 transition-all">Download .txt</a><a href="https://opensource.org/licenses/Apache-2.0" target="_blank" rel="noopener noreferrer" class="inline-flex items-center justify-center px-4 py-2 bg-white text-primary font-semibold border border-primary rounded-lg hover:bg-primary/10 transition-all">View on OpenSource.org</a></div></div><div class="bg-gray-900 text-gray-100 rounded-2xl border border-gray-800 shadow-inner"><div class="max-h-[32rem] overflow-y-auto p-6"><pre class="whitespace-pre-wrap font-mono text-sm leading-relaxed">Apache License
|
|
2
|
-
Version 2.0, January 2004
|
|
3
|
-
http://www.apache.org/licenses/
|
|
4
|
-
|
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
-
|
|
7
|
-
1. Definitions.
|
|
8
|
-
|
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
-
|
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
-
the copyright owner that is granting the License.
|
|
14
|
-
|
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
-
other entities that control, are controlled by, or are under common
|
|
17
|
-
control with that entity. For the purposes of this definition,
|
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
-
direction or management of such entity, whether by contract or
|
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
-
|
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
-
exercising permissions granted by this License.
|
|
25
|
-
|
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
-
including but not limited to software source code, documentation
|
|
28
|
-
source, and configuration files.
|
|
29
|
-
|
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
|
31
|
-
transformation or translation of a Source form, including but
|
|
32
|
-
not limited to compiled object code, generated documentation,
|
|
33
|
-
and conversions to other media types.
|
|
34
|
-
|
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
-
Object form, made available under the License, as indicated by a
|
|
37
|
-
copyright notice that is included in or attached to the work
|
|
38
|
-
(an example is provided in the Appendix below).
|
|
39
|
-
|
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
-
the Work and Derivative Works thereof.
|
|
47
|
-
|
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
|
49
|
-
the original version of the Work and any modifications or additions
|
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
-
|
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
-
subsequently incorporated within the Work.
|
|
65
|
-
|
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
|
72
|
-
|
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
-
where such license applies only to those patent claims licensable
|
|
79
|
-
by such Contributor that are necessarily infringed by their
|
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
-
institute patent litigation against any entity (including a
|
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
-
or contributory patent infringement, then any patent licenses
|
|
86
|
-
granted to You under this License for that Work shall terminate
|
|
87
|
-
as of the date such litigation is filed.
|
|
88
|
-
|
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
-
modifications, and in Source or Object form, provided that You
|
|
92
|
-
meet the following conditions:
|
|
93
|
-
|
|
94
|
-
(a) You must give any other recipients of the Work or
|
|
95
|
-
Derivative Works a copy of this License; and
|
|
96
|
-
|
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
|
98
|
-
stating that You changed the files; and
|
|
99
|
-
|
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
|
102
|
-
attribution notices from the Source form of the Work,
|
|
103
|
-
excluding those notices that do not pertain to any part of
|
|
104
|
-
the Derivative Works; and
|
|
105
|
-
|
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
|
108
|
-
include a readable copy of the attribution notices contained
|
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
|
111
|
-
of the following places: within a NOTICE text file distributed
|
|
112
|
-
as part of the Derivative Works; within the Source form or
|
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
|
114
|
-
within a display generated by the Derivative Works, if and
|
|
115
|
-
wherever such third-party notices normally appear. The contents
|
|
116
|
-
of the NOTICE file are for informational purposes only and
|
|
117
|
-
do not modify the License. You may add Your own attribution
|
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
-
that such additional attribution notices cannot be construed
|
|
121
|
-
as modifying the License.
|
|
122
|
-
|
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
|
124
|
-
may provide additional or different license terms and conditions
|
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
-
the conditions stated in this License.
|
|
129
|
-
|
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
-
this License, without any additional terms or conditions.
|
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
-
the terms of any separate license agreement you may have executed
|
|
136
|
-
with Licensor regarding such Contributions.
|
|
137
|
-
|
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
-
except as required for reasonable and customary use in describing the
|
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
-
|
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
|
152
|
-
|
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
|
158
|
-
incidental, or consequential damages of any character arising as a
|
|
159
|
-
result of this License or out of the use or inability to use the
|
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
-
other commercial damages or losses), even if such Contributor
|
|
163
|
-
has been advised of the possibility of such damages.
|
|
164
|
-
|
|
165
|
-
9. Accepting Warranty or Additional Support. While redistributing
|
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
-
or other liability obligations and/or rights consistent with this
|
|
169
|
-
License. However, in accepting such obligations, You may act only
|
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
-
of your accepting any such warranty or additional liability.
|
|
175
|
-
|
|
176
|
-
END OF TERMS AND CONDITIONS
|
|
177
|
-
|
|
178
|
-
Copyright 2024-2025 OSSA Standards Team
|
|
179
|
-
|
|
180
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
-
you may not use this file except in compliance with the License.
|
|
182
|
-
You may obtain a copy of the License at
|
|
183
|
-
|
|
184
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
-
|
|
186
|
-
Unless required by applicable law or agreed to in writing, software
|
|
187
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
-
See the License for the specific language governing permissions and
|
|
190
|
-
limitations under the License.
|
|
191
|
-
</pre></div></div></section></div><!--$--><!--/$--></main><footer class="bg-gray-900 text-gray-300 py-12 px-4"><div class="container mx-auto max-w-6xl"><div class="grid md:grid-cols-4 gap-8 mb-8"><div><h3 class="text-white font-semibold mb-4">Open Standard Agents</h3><p class="text-sm">OSSA is an Open Standard for AI Agents. The vendor-neutral specification was created by Thomas Scola, founder of Bluefly.io.</p></div><div><h4 class="text-white font-semibold mb-4">Documentation</h4><ul class="space-y-2 text-sm"><li><a class="hover:text-white transition-colors" href="/docs/getting-started/">Getting Started</a></li><li><a class="hover:text-white transition-colors" href="/docs/">Full Documentation</a></li><li><a class="hover:text-white transition-colors" href="/schema/">Schema Reference</a></li></ul></div><div><h4 class="text-white font-semibold mb-4">Resources</h4><ul class="space-y-2 text-sm"><li><a class="hover:text-white transition-colors" href="/examples/">Examples</a></li><li><a class="hover:text-white transition-colors" href="/playground/">Playground</a></li><li><a class="hover:text-white transition-colors" href="/blog/">Blog</a></li><li><a class="hover:text-white transition-colors" href="/design-guide/">Design Guide</a></li></ul></div><div><h4 class="text-white font-semibold mb-4">Community</h4><ul class="space-y-2 text-sm"><li><a href="https://github.com/blueflyio/openstandardagents" target="_blank" rel="noopener noreferrer" class="hover:text-white transition-colors flex items-center gap-2"><svg class="h-5 w-5" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"></path></svg>GitHub</a></li><li><a href="https://github.com/blueflyio/openstandardagents/issues" target="_blank" rel="noopener noreferrer" class="hover:text-white transition-colors">Issues</a></li><li><a href="https://www.npmjs.com/package/@bluefly/openstandardagents" target="_blank" rel="noopener noreferrer" class="hover:text-white transition-colors">npm Package</a></li></ul></div></div><div class="border-t border-gray-700 pt-8 text-sm text-center"><p>© <!-- -->2025<!-- --> Open Standard Agents Organization. Licensed under<!-- --> <a href="https://www.apache.org/licenses/LICENSE-2.0" target="_blank" rel="noopener noreferrer" class="hover:text-white transition-colors">Apache 2.0</a>.</p></div></div></footer></div><script src="/_next/static/chunks/webpack-6ecb09e5c6e34cb4.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[82960,[\"619\",\"static/chunks/619-f072ac750404f9da.js\",\"177\",\"static/chunks/app/layout-ccacbd90656baa78.js\"],\"Header\"]\n3:I[9766,[],\"\"]\n4:I[98924,[],\"\"]\n5:I[52619,[\"619\",\"static/chunks/619-f072ac750404f9da.js\",\"898\",\"static/chunks/app/license/page-bd4cb2219b41f933.js\"],\"\"]\ne:I[57150,[],\"\"]\n:HL[\"/_next/static/media/e4af272ccee01ff0-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/23135390005d4468.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"IDhDQiozPwOaA3PpMqvTE\",\"p\":\"\",\"c\":[\"\",\"license\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"license\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/23135390005d4468.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"__variable_f367f3\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"link\",null,{\"rel\":\"icon\",\"href\":\"/assets/favicon.svg\",\"type\":\"image/svg+xml\"}],[\"$\",\"link\",null,{\"rel\":\"apple-touch-icon\",\"href\":\"/assets/brand/ossa-logo.svg\"}],[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"Organization\\\",\\\"name\\\":\\\"OSSA Standards Team\\\",\\\"url\\\":\\\"https://openstandardagents.org\\\",\\\"logo\\\":\\\"https://openstandardagents.org/assets/brand/ossa-logo.svg\\\",\\\"sameAs\\\":[\\\"https://github.com/blueflyio/openstandardagents\\\",\\\"https://www.npmjs.com/package/@bluefly/openstandardagents\\\"],\\\"description\\\":\\\"Open Standard Agents Organization - Maintaining the Industry Standard for Agent Orchestration\\\"}\"}}],[\"$\",\"script\",null,{\"type\":\"application/ld+json\",\"dangerouslySetInnerHTML\":{\"__html\":\"{\\\"@context\\\":\\\"https://schema.org\\\",\\\"@type\\\":\\\"WebSite\\\",\\\"name\\\":\\\"OSSA\\\",\\\"url\\\":\\\"https://openstandardagents.org\\\",\\\"description\\\":\\\"Open Standard for Scalable AI Agents - The OpenAPI for AI Agents\\\",\\\"potentialAction\\\":{\\\"@type\\\":\\\"SearchAction\\\",\\\"target\\\":{\\\"@type\\\":\\\"EntryPoint\\\",\\\"urlTemplate\\\":\\\"https://openstandardagents.org/search?q={search_term_string}\\\"},\\\"query-input\\\":\\\"required name=search_term_string\\\"}}\"}}]]}],[\"$\",\"body\",null,{\"suppressHydrationWarning\":true,\"children\":[\"$\",\"div\",null,{\"className\":\"flex flex-col min-h-screen\",\"children\":[[\"$\",\"a\",null,{\"href\":\"#main-content\",\"className\":\"sr-only focus:not-sr-only focus:absolute focus:top-4 focus:left-4 focus:z-50 focus:px-4 focus:py-2 focus:bg-primary focus:text-white focus:rounded\",\"children\":\"Skip to main content\"}],[\"$\",\"$L2\",null,{}],[\"$\",\"main\",null,{\"id\":\"main-content\",\"className\":\"flex-grow\",\"tabIndex\":-1,\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}],[\"$\",\"footer\",null,{\"className\":\"bg-gray-900 text-gray-300 py-12 px-4\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-6xl\",\"children\":[[\"$\",\"div\",null,{\"className\":\"grid md:grid-cols-4 gap-8 mb-8\",\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-white font-semibold mb-4\",\"children\":\"Open Standard Agents\"}],[\"$\",\"p\",null,{\"className\":\"text-sm\",\"children\":\"OSSA is an Open Standard for AI Agents. The vendor-neutral specification was created by Thomas Scola, founder of Bluefly.io.\"}]]}],[\"$\",\"div\",null,{\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-white font-semibold mb-4\",\"children\":\"Documentation\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-sm\",\"children\":[[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/docs/getting-started\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Getting Started\"}]}],\"$L6\",\"$L7\"]}]]}],\"$L8\",\"$L9\"]}],\"$La\"]}]}]]}]}]]}]]}],{\"children\":[\"license\",\"$Lb\",{\"children\":[\"__PAGE__\",\"$Lc\",{},null,false]},null,false]},null,false],\"$Ld\",false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"15:I[24431,[],\"ViewportBoundary\"]\n17:I[24431,[],\"MetadataBoundary\"]\n18:\"$Sreact.suspense\"\n6:[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/docs\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Full Documentation\"}]}]\n7:[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/schema\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Schema Reference\"}]}]\n"])</script><script>self.__next_f.push([1,"8:[\"$\",\"div\",null,{\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-white font-semibold mb-4\",\"children\":\"Resources\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-sm\",\"children\":[[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/examples\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Examples\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/playground\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Playground\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/blog\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Blog\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"$L5\",null,{\"href\":\"/design-guide\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Design Guide\"}]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"9:[\"$\",\"div\",null,{\"children\":[[\"$\",\"h4\",null,{\"className\":\"text-white font-semibold mb-4\",\"children\":\"Community\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-sm\",\"children\":[[\"$\",\"li\",null,{\"children\":[\"$\",\"a\",null,{\"href\":\"https://github.com/blueflyio/openstandardagents\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"hover:text-white transition-colors flex items-center gap-2\",\"children\":[[\"$\",\"svg\",null,{\"className\":\"h-5 w-5\",\"fill\":\"currentColor\",\"viewBox\":\"0 0 24 24\",\"children\":[\"$\",\"path\",null,{\"fillRule\":\"evenodd\",\"d\":\"M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z\",\"clipRule\":\"evenodd\"}]}],\"GitHub\"]}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"a\",null,{\"href\":\"https://github.com/blueflyio/openstandardagents/issues\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Issues\"}]}],[\"$\",\"li\",null,{\"children\":[\"$\",\"a\",null,{\"href\":\"https://www.npmjs.com/package/@bluefly/openstandardagents\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"hover:text-white transition-colors\",\"children\":\"npm Package\"}]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"a:[\"$\",\"div\",null,{\"className\":\"border-t border-gray-700 pt-8 text-sm text-center\",\"children\":[\"$\",\"p\",null,{\"children\":[\"© \",2025,\" Open Standard Agents Organization. Licensed under\",\" \",[\"$\",\"a\",null,{\"href\":\"https://www.apache.org/licenses/LICENSE-2.0\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"hover:text-white transition-colors\",\"children\":\"Apache 2.0\"}],\".\"]}]}]\nb:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\n"])</script><script>self.__next_f.push([1,"c:[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"div\",null,{\"className\":\"bg-gradient-to-br from-primary via-accent to-secondary text-white py-20 px-4\",\"children\":[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-4xl text-center\",\"children\":[[\"$\",\"div\",null,{\"className\":\"inline-flex items-center justify-center w-20 h-20 bg-white/20 backdrop-blur-sm rounded-full mb-6\",\"children\":[\"$\",\"svg\",null,{\"className\":\"w-10 h-10\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"viewBox\":\"0 0 24 24\",\"children\":[\"$\",\"path\",null,{\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"strokeWidth\":2,\"d\":\"M9 13h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V20a2 2 0 01-2 2z\"}]}]}],[\"$\",\"h1\",null,{\"className\":\"text-5xl font-bold mb-4\",\"children\":\"Apache License 2.0\"}],[\"$\",\"p\",null,{\"className\":\"text-xl text-white/90 mb-6\",\"children\":\"The governing open source license for the Open Standard Agents project and its documentation.\"}],[\"$\",\"div\",null,{\"className\":\"flex flex-col sm:flex-row gap-4 justify-center\",\"children\":[[\"$\",\"$L5\",null,{\"href\":\"#license-text\",\"className\":\"inline-flex items-center justify-center px-6 py-3 bg-white text-primary font-semibold rounded-lg shadow-lg hover:-translate-y-0.5 transition-all\",\"children\":\"Read Full Text\"}],[\"$\",\"a\",null,{\"href\":\"https://opensource.org/licenses/Apache-2.0\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center justify-center px-6 py-3 bg-white/10 text-white font-semibold border border-white/30 rounded-lg hover:bg-white/20 transition-all\",\"children\":\"Official License Page\"}],[\"$\",\"a\",null,{\"href\":\"/licenses/apache-2.0.txt\",\"className\":\"inline-flex items-center justify-center px-6 py-3 bg-white/10 text-white font-semibold border border-white/30 rounded-lg hover:bg-white/20 transition-all\",\"children\":\"Download TXT\"}]]}]]}]}],[\"$\",\"div\",null,{\"className\":\"container mx-auto max-w-6xl px-4 py-12 space-y-12\",\"children\":[[\"$\",\"section\",null,{\"className\":\"grid md:grid-cols-3 gap-6\",\"children\":[[\"$\",\"div\",null,{\"className\":\"bg-white rounded-xl shadow-md p-6 border border-gray-100\",\"children\":[[\"$\",\"div\",null,{\"className\":\"w-12 h-12 rounded-lg bg-primary/10 text-primary flex items-center justify-center mb-4\",\"children\":[\"$\",\"svg\",null,{\"className\":\"w-7 h-7\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"viewBox\":\"0 0 24 24\",\"children\":[\"$\",\"path\",null,{\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"strokeWidth\":2,\"d\":\"M12 4v16m0 0l3-3m-3 3l-3-3m9-5h3m-3 0l-3-3m3 3l-3 3M9 12H6m3 0l3-3m-3 3l3 3\"}]}]}],[\"$\",\"h2\",null,{\"className\":\"text-2xl font-semibold mb-3 text-gray-900\",\"children\":\"Permissions\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-gray-700 list-disc list-inside\",\"children\":[[\"$\",\"li\",null,{\"children\":\"Use, modify, and distribute the specification and code\"}],[\"$\",\"li\",null,{\"children\":\"Commercial and private use allowed\"}],[\"$\",\"li\",null,{\"children\":\"Patent grants included for contributors\"}]]}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white rounded-xl shadow-md p-6 border border-gray-100\",\"children\":[[\"$\",\"div\",null,{\"className\":\"w-12 h-12 rounded-lg bg-secondary/10 text-secondary flex items-center justify-center mb-4\",\"children\":[\"$\",\"svg\",null,{\"className\":\"w-7 h-7\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"viewBox\":\"0 0 24 24\",\"children\":[\"$\",\"path\",null,{\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"strokeWidth\":2,\"d\":\"M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z\"}]}]}],[\"$\",\"h2\",null,{\"className\":\"text-2xl font-semibold mb-3 text-gray-900\",\"children\":\"Conditions\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-gray-700 list-disc list-inside\",\"children\":[[\"$\",\"li\",null,{\"children\":\"Preserve copyright and license notices\"}],[\"$\",\"li\",null,{\"children\":\"Include a NOTICE file when required\"}],[\"$\",\"li\",null,{\"children\":\"Document significant changes to the work\"}]]}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white rounded-xl shadow-md p-6 border border-gray-100\",\"children\":[[\"$\",\"div\",null,{\"className\":\"w-12 h-12 rounded-lg bg-accent/10 text-accent flex items-center justify-center mb-4\",\"children\":\"$Lf\"}],\"$L10\",\"$L11\"]}]]}],\"$L12\",\"$L13\"]}]],null,\"$L14\"]}]\n"])</script><script>self.__next_f.push([1,"d:[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$L15\",null,{\"children\":\"$L16\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$L17\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$18\",null,{\"fallback\":null,\"children\":\"$L19\"}]}]}]]}]\n"])</script><script>self.__next_f.push([1,"1b:I[24431,[],\"OutletBoundary\"]\n1d:I[15278,[],\"AsyncMetadataOutlet\"]\nf:[\"$\",\"svg\",null,{\"className\":\"w-7 h-7\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"viewBox\":\"0 0 24 24\",\"children\":[\"$\",\"path\",null,{\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"strokeWidth\":2,\"d\":\"M10 9V5a2 2 0 012-2h6a2 2 0 012 2v6m-8 4h6m-6 0l3 3m-3-3l3-3M15 9h.01M5 7h.01M7 5h.01M19 15h.01M7 17h.01M5 19h.01M3 3l18 18\"}]}]\n10:[\"$\",\"h2\",null,{\"className\":\"text-2xl font-semibold mb-3 text-gray-900\",\"children\":\"Limitations\"}]\n11:[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-gray-700 list-disc list-inside\",\"children\":[[\"$\",\"li\",null,{\"children\":\"No trademark license is granted\"}],[\"$\",\"li\",null,{\"children\":\"No warranty - software is provided \\\"as is\\\"\"}],[\"$\",\"li\",null,{\"children\":\"Liability is limited under the terms\"}]]}]\n"])</script><script>self.__next_f.push([1,"12:[\"$\",\"section\",null,{\"className\":\"bg-gray-50 rounded-2xl border border-gray-200 p-8 shadow-sm\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col md:flex-row md:items-center md:justify-between gap-6 mb-6\",\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"p\",null,{\"className\":\"text-sm font-semibold text-primary uppercase tracking-wide\",\"children\":\"Open Source Commitment\"}],[\"$\",\"h2\",null,{\"className\":\"text-3xl font-bold text-gray-900 mt-2\",\"children\":\"Why Apache 2.0?\"}],[\"$\",\"p\",null,{\"className\":\"text-lg text-gray-700 mt-3 max-w-3xl\",\"children\":\"Apache 2.0 offers a clear, business-friendly open source model with patent grants, making it safe for enterprises, vendors, and researchers to build on the Open Standard Agents specification and ecosystem.\"}]]}],[\"$\",\"div\",null,{\"className\":\"flex gap-3\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/licenses/apache-2.0.txt\",\"className\":\"inline-flex items-center justify-center px-4 py-2 bg-primary text-white font-semibold rounded-lg shadow hover:-translate-y-0.5 transition-all\",\"children\":\"Download License\"}],[\"$\",\"a\",null,{\"href\":\"https://opensource.org/licenses/Apache-2.0\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center justify-center px-4 py-2 bg-white text-primary font-semibold border border-primary rounded-lg hover:bg-primary/10 transition-all\",\"children\":\"OpenSource.org\"}]]}]]}],[\"$\",\"div\",null,{\"className\":\"grid md:grid-cols-2 gap-6\",\"children\":[[\"$\",\"div\",null,{\"className\":\"bg-white rounded-xl border border-gray-100 p-6 shadow-sm\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold text-gray-900 mb-3\",\"children\":\"Using OSSA in your projects\"}],[\"$\",\"ul\",null,{\"className\":\"space-y-2 text-gray-700 leading-relaxed list-disc list-inside\",\"children\":[[\"$\",\"li\",null,{\"children\":\"Embed the specification, reference implementations, or docs in commercial and open source products.\"}],[\"$\",\"li\",null,{\"children\":\"Attribute OSSA and retain the license headers in source distributions.\"}],[\"$\",\"li\",null,{\"children\":\"Contribute improvements knowing patent grants apply to contributions.\"}]]}]]}],[\"$\",\"div\",null,{\"className\":\"bg-white rounded-xl border border-gray-100 p-6 shadow-sm\",\"children\":[[\"$\",\"h3\",null,{\"className\":\"text-xl font-semibold text-gray-900 mb-3\",\"children\":\"Need attribution text?\"}],[\"$\",\"p\",null,{\"className\":\"text-gray-700 mb-3\",\"children\":\"Include the following notice in your documentation or about pages:\"}],[\"$\",\"div\",null,{\"className\":\"bg-gray-900 text-gray-100 p-4 rounded-lg text-sm font-mono overflow-x-auto border border-gray-800\",\"children\":\"Open Standard Agents Initiative - licensed under the Apache License, Version 2.0. You may not use this project except in compliance with the License. You may obtain a copy at https://opensource.org/licenses/Apache-2.0\"}]]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"1a:T2790,"])</script><script>self.__next_f.push([1,"Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Support. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nCopyright 2024-2025 OSSA Standards Team\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"])</script><script>self.__next_f.push([1,"13:[\"$\",\"section\",null,{\"id\":\"license-text\",\"className\":\"space-y-4\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col sm:flex-row sm:items-center sm:justify-between gap-3\",\"children\":[[\"$\",\"div\",null,{\"children\":[[\"$\",\"p\",null,{\"className\":\"text-sm font-semibold text-primary uppercase tracking-wide\",\"children\":\"Full Text\"}],[\"$\",\"h2\",null,{\"className\":\"text-3xl font-bold text-gray-900\",\"children\":\"Apache License, Version 2.0\"}]]}],[\"$\",\"div\",null,{\"className\":\"flex gap-3\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/licenses/apache-2.0.txt\",\"className\":\"inline-flex items-center justify-center px-4 py-2 bg-primary text-white font-semibold rounded-lg shadow hover:-translate-y-0.5 transition-all\",\"children\":\"Download .txt\"}],[\"$\",\"a\",null,{\"href\":\"https://opensource.org/licenses/Apache-2.0\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"className\":\"inline-flex items-center justify-center px-4 py-2 bg-white text-primary font-semibold border border-primary rounded-lg hover:bg-primary/10 transition-all\",\"children\":\"View on OpenSource.org\"}]]}]]}],[\"$\",\"div\",null,{\"className\":\"bg-gray-900 text-gray-100 rounded-2xl border border-gray-800 shadow-inner\",\"children\":[\"$\",\"div\",null,{\"className\":\"max-h-[32rem] overflow-y-auto p-6\",\"children\":[\"$\",\"pre\",null,{\"className\":\"whitespace-pre-wrap font-mono text-sm leading-relaxed\",\"children\":\"$1a\"}]}]}]]}]\n"])</script><script>self.__next_f.push([1,"14:[\"$\",\"$L1b\",null,{\"children\":[\"$L1c\",[\"$\",\"$L1d\",null,{\"promise\":\"$@1e\"}]]}]\n"])</script><script>self.__next_f.push([1,"16:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"1c:null\n"])</script><script>self.__next_f.push([1,"1e:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Apache License 2.0 - Open Standard Agents | Open Standard Agents\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Review the Apache License 2.0 terms that govern the Open Standard Agents project and ecosystem.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"author\",\"content\":\"OSSA Standards Team\"}],[\"$\",\"meta\",\"3\",{\"name\":\"keywords\",\"content\":\"OSSA,AI Agents,OpenAPI,Standard,Specification,AI,Machine Learning,Agent Framework\"}],[\"$\",\"meta\",\"4\",{\"name\":\"creator\",\"content\":\"OSSA Standards Team\"}],[\"$\",\"meta\",\"5\",{\"name\":\"publisher\",\"content\":\"OSSA Standards Team\"}],[\"$\",\"meta\",\"6\",{\"name\":\"robots\",\"content\":\"index, follow\"}],[\"$\",\"meta\",\"7\",{\"name\":\"googlebot\",\"content\":\"index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1\"}],[\"$\",\"link\",\"8\",{\"rel\":\"canonical\",\"href\":\"https://openstandardagents.org/\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:title\",\"content\":\"Open Standard Agents - Industry Standard for Agent Orchestration\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:description\",\"content\":\"The vendor-neutral specification for multi-agent systems. Write once, deploy anywhere.\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:site_name\",\"content\":\"Open Standard Agents\"}],[\"$\",\"meta\",\"12\",{\"property\":\"og:locale\",\"content\":\"en_US\"}],[\"$\",\"meta\",\"13\",{\"property\":\"og:image\",\"content\":\"https://openstandardagents.org/og-image.png\"}],[\"$\",\"meta\",\"14\",{\"property\":\"og:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"15\",{\"property\":\"og:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"16\",{\"property\":\"og:image:alt\",\"content\":\"OSSA - Open Standard for Scalable AI Agents\"}],[\"$\",\"meta\",\"17\",{\"property\":\"og:type\",\"content\":\"website\"}],[\"$\",\"meta\",\"18\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"19\",{\"name\":\"twitter:creator\",\"content\":\"@openstandardagents\"}],[\"$\",\"meta\",\"20\",{\"name\":\"twitter:title\",\"content\":\"Open Standard Agents - Industry Standard for Agent Orchestration\"}],[\"$\",\"meta\",\"21\",{\"name\":\"twitter:description\",\"content\":\"The vendor-neutral specification for multi-agent systems\"}],[\"$\",\"meta\",\"22\",{\"name\":\"twitter:image\",\"content\":\"https://openstandardagents.org/og-image.png\"}],[\"$\",\"meta\",\"23\",{\"name\":\"twitter:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"24\",{\"name\":\"twitter:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"25\",{\"name\":\"twitter:image:alt\",\"content\":\"OSSA - Open Standard for Scalable AI Agents\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"19:\"$1e:metadata\"\n"])</script></body></html>
|