@bluefly/openstandardagents 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +41 -0
- package/.eslintrc.cjs +43 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +39 -0
- package/.github/dependabot.yml +58 -0
- package/.github/workflows/ci.yml +154 -0
- package/.github/workflows/codeql.yml +41 -0
- package/.github/workflows/dependabot-auto-merge.yml +28 -0
- package/.github/workflows/release.yml +103 -0
- package/.prettierignore +7 -0
- package/.prettierrc.json +10 -0
- package/.redocly.yaml +9 -0
- package/.releaserc.json +84 -0
- package/.releaserc.json.disabled +81 -0
- package/CHANGELOG.md +152 -0
- package/CONTRIBUTING.md +249 -0
- package/LICENSE +190 -0
- package/README.md +280 -0
- package/bin/ossa +8 -0
- package/bin/validate-ossa-0.2.2.ts +244 -0
- package/dist/di-container.d.ts +18 -0
- package/dist/di-container.d.ts.map +1 -0
- package/dist/di-container.js +43 -0
- package/dist/di-container.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/dist/repositories/manifest.repository.d.ts +26 -0
- package/dist/repositories/manifest.repository.d.ts.map +1 -0
- package/dist/repositories/manifest.repository.js +90 -0
- package/dist/repositories/manifest.repository.js.map +1 -0
- package/dist/repositories/schema.repository.d.ts +30 -0
- package/dist/repositories/schema.repository.d.ts.map +1 -0
- package/dist/repositories/schema.repository.js +143 -0
- package/dist/repositories/schema.repository.js.map +1 -0
- package/dist/services/generation.service.d.ts +54 -0
- package/dist/services/generation.service.d.ts.map +1 -0
- package/dist/services/generation.service.js +298 -0
- package/dist/services/generation.service.js.map +1 -0
- package/dist/services/migration.service.d.ts +30 -0
- package/dist/services/migration.service.d.ts.map +1 -0
- package/dist/services/migration.service.js +231 -0
- package/dist/services/migration.service.js.map +1 -0
- package/dist/services/runtime/openai.adapter.d.ts +94 -0
- package/dist/services/runtime/openai.adapter.d.ts.map +1 -0
- package/dist/services/runtime/openai.adapter.js +209 -0
- package/dist/services/runtime/openai.adapter.js.map +1 -0
- package/dist/services/validation.service.d.ts +45 -0
- package/dist/services/validation.service.d.ts.map +1 -0
- package/dist/services/validation.service.js +362 -0
- package/dist/services/validation.service.js.map +1 -0
- package/dist/services/validators/anthropic.validator.d.ts +9 -0
- package/dist/services/validators/anthropic.validator.d.ts.map +1 -0
- package/dist/services/validators/anthropic.validator.js +105 -0
- package/dist/services/validators/anthropic.validator.js.map +1 -0
- package/dist/services/validators/autogen.validator.d.ts +9 -0
- package/dist/services/validators/autogen.validator.d.ts.map +1 -0
- package/dist/services/validators/autogen.validator.js +111 -0
- package/dist/services/validators/autogen.validator.js.map +1 -0
- package/dist/services/validators/crewai.validator.d.ts +9 -0
- package/dist/services/validators/crewai.validator.d.ts.map +1 -0
- package/dist/services/validators/crewai.validator.js +117 -0
- package/dist/services/validators/crewai.validator.js.map +1 -0
- package/dist/services/validators/cursor.validator.d.ts +9 -0
- package/dist/services/validators/cursor.validator.d.ts.map +1 -0
- package/dist/services/validators/cursor.validator.js +88 -0
- package/dist/services/validators/cursor.validator.js.map +1 -0
- package/dist/services/validators/index.d.ts +15 -0
- package/dist/services/validators/index.d.ts.map +1 -0
- package/dist/services/validators/index.js +15 -0
- package/dist/services/validators/index.js.map +1 -0
- package/dist/services/validators/langchain.validator.d.ts +9 -0
- package/dist/services/validators/langchain.validator.d.ts.map +1 -0
- package/dist/services/validators/langchain.validator.js +103 -0
- package/dist/services/validators/langchain.validator.js.map +1 -0
- package/dist/services/validators/langflow.validator.d.ts +9 -0
- package/dist/services/validators/langflow.validator.d.ts.map +1 -0
- package/dist/services/validators/langflow.validator.js +92 -0
- package/dist/services/validators/langflow.validator.js.map +1 -0
- package/dist/services/validators/langgraph.validator.d.ts +9 -0
- package/dist/services/validators/langgraph.validator.d.ts.map +1 -0
- package/dist/services/validators/langgraph.validator.js +123 -0
- package/dist/services/validators/langgraph.validator.js.map +1 -0
- package/dist/services/validators/llamaindex.validator.d.ts +9 -0
- package/dist/services/validators/llamaindex.validator.d.ts.map +1 -0
- package/dist/services/validators/llamaindex.validator.js +121 -0
- package/dist/services/validators/llamaindex.validator.js.map +1 -0
- package/dist/services/validators/openai.validator.d.ts +9 -0
- package/dist/services/validators/openai.validator.d.ts.map +1 -0
- package/dist/services/validators/openai.validator.js +126 -0
- package/dist/services/validators/openai.validator.js.map +1 -0
- package/dist/services/validators/vercel-ai.validator.d.ts +9 -0
- package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -0
- package/dist/services/validators/vercel-ai.validator.js +99 -0
- package/dist/services/validators/vercel-ai.validator.js.map +1 -0
- package/dist/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
- package/dist/spec/v0.1.9/ecosystem-compliance.json +235 -0
- package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
- package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
- package/dist/spec/v0.1.9/reasoning-compliance.json +654 -0
- package/dist/spec/v0.2.2/kagent-enhancements.json +395 -0
- package/dist/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
- package/dist/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
- package/dist/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
- package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
- package/dist/spec/v0.2.3/README.md +154 -0
- package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/dist/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
- package/dist/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
- package/dist/spec/v0.2.4-dev/CHANGELOG.md +403 -0
- package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
- package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
- package/dist/spec/v0.2.5-dev/CHANGELOG.md +171 -0
- package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
- package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
- package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
- package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
- package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
- package/dist/types/index.d.ts +178 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +6 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/openapi-extensions.d.ts +164 -0
- package/dist/types/openapi-extensions.d.ts.map +1 -0
- package/dist/types/openapi-extensions.js +6 -0
- package/dist/types/openapi-extensions.js.map +1 -0
- package/docs/OSSA-COMPLIANT-BADGE.md +248 -0
- package/docs/README.md +31 -0
- package/docs/VERSIONING.md +284 -0
- package/docs/agent-openapi-spec.yml +942 -0
- package/docs/getting-started.md +87 -0
- package/docs/migration/general-agent-schema.yml +255 -0
- package/docs/migration/migration-manifest.json +64 -0
- package/docs/openapi-extensions.md +930 -0
- package/docs/schemas/openapi-extensions.schema.json +486 -0
- package/examples/adk-integration/code-review-workflow.yml +136 -0
- package/examples/adk-integration/customer-support.yml +263 -0
- package/examples/adk-integration/data-pipeline.yml +173 -0
- package/examples/advanced/patterns/compliance-context-production.json +53 -0
- package/examples/advanced/patterns/model-router.ts +274 -0
- package/examples/advanced/patterns/smart-model-routing.ts +248 -0
- package/examples/advanced/workflows/hybrid-model-strategy.yaml +232 -0
- package/examples/agent-manifests/critics/critic-agent.yaml +149 -0
- package/examples/agent-manifests/governors/governor-agent.yaml +128 -0
- package/examples/agent-manifests/integrators/integrator-agent.yaml +103 -0
- package/examples/agent-manifests/judges/judge-agent.yaml +153 -0
- package/examples/agent-manifests/monitors/monitor-agent.yaml +122 -0
- package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +247 -0
- package/examples/agent-manifests/sample-compliant-agent.yaml +147 -0
- package/examples/agent-manifests/workers/worker-agent.yaml +82 -0
- package/examples/anthropic/claude-assistant.ossa.json +45 -0
- package/examples/architecture/model-configuration/ollama-integration.ts +110 -0
- package/examples/autogen/multi-agent.ossa.json +37 -0
- package/examples/bridge-configurations.yaml +346 -0
- package/examples/bridges/Dockerfile.production +87 -0
- package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
- package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
- package/examples/bridges/__pycache__/test_aiflow_integration.cpython-313.pyc +0 -0
- package/examples/bridges/aiflow-bridge-enhanced.py +462 -0
- package/examples/bridges/aiflow-bridge-example.yml +310 -0
- package/examples/bridges/aiflow-phoenix-tracing.py +310 -0
- package/examples/bridges/aiflow-registration-api.openapi.yml +439 -0
- package/examples/bridges/k8s/configmap.yaml +121 -0
- package/examples/bridges/k8s/deployment-simple.yaml +34 -0
- package/examples/bridges/k8s/deployment.yaml +275 -0
- package/examples/bridges/k8s/hpa.yaml +126 -0
- package/examples/bridges/k8s/ingress.yaml +155 -0
- package/examples/bridges/kagent-bridge-example.yml +94 -0
- package/examples/bridges/load-tests/Dockerfile +28 -0
- package/examples/bridges/load-tests/k6-load-test.js +302 -0
- package/examples/bridges/load-tests/requirements.txt +20 -0
- package/examples/bridges/loadtest/k6-scenarios.js +270 -0
- package/examples/bridges/phase4/SLO-SLA.yaml +249 -0
- package/examples/bridges/phase4/chaos-tests.yaml +226 -0
- package/examples/bridges/requirements.txt +24 -0
- package/examples/bridges/test_aiflow_integration.py +341 -0
- package/examples/common_npm/agent-router.ossa.yaml +182 -0
- package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +60 -0
- package/examples/compliance-agent.yml +155 -0
- package/examples/crewai/research-team.ossa.json +36 -0
- package/examples/cursor/code-review-agent.ossa.json +47 -0
- package/examples/drupal/gitlab-ml-recommender.ossa.yaml +609 -0
- package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +68 -0
- package/examples/enterprise/agent.yml +452 -0
- package/examples/extensions/drupal-v1.yml +266 -0
- package/examples/extensions/kagent-v1.yml +167 -0
- package/examples/getting-started/hello-world-complete.ossa.yaml +266 -0
- package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +376 -0
- package/examples/kagent/README.md +31 -0
- package/examples/kagent/compliance-validator.ossa.yaml +111 -0
- package/examples/kagent/cost-optimizer.ossa.yaml +93 -0
- package/examples/kagent/documentation-agent.ossa.yaml +91 -0
- package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +269 -0
- package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +106 -0
- package/examples/kagent/k8s-troubleshooter.ossa.yaml +257 -0
- package/examples/kagent/security-scanner.ossa.yaml +140 -0
- package/examples/langchain/chain-agent.ossa.json +42 -0
- package/examples/langflow/workflow-agent.ossa.json +39 -0
- package/examples/langgraph/state-machine-agent.ossa.json +59 -0
- package/examples/llamaindex/rag-agent.ossa.json +41 -0
- package/examples/migration-guides/from-langchain-to-ossa.yaml +309 -0
- package/examples/minimal/agent.yml +152 -0
- package/examples/minimal/openapi.yaml +95 -0
- package/examples/openai/swarm-agent.ossa.json +59 -0
- package/examples/openapi-extensions/README.md +87 -0
- package/examples/openapi-extensions/minimal-agent-api.openapi.yml +288 -0
- package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +633 -0
- package/examples/openapi-extensions/worker-agent-api.openapi.yml +533 -0
- package/examples/production/agent.yml +713 -0
- package/examples/production/document-analyzer-openai.yml +134 -0
- package/examples/quickstart/support-agent.ossa.yaml +59 -0
- package/examples/service-registry-usage.ts +423 -0
- package/examples/spec-examples/audit-agent.yml +147 -0
- package/examples/spec-examples/chat-agent.yml +189 -0
- package/examples/spec-examples/compliance-agent.yml +204 -0
- package/examples/spec-examples/data-processing-agent.yml +132 -0
- package/examples/spec-examples/development-agent.yml +138 -0
- package/examples/spec-examples/edge-agent.yml +101 -0
- package/examples/spec-examples/integration-agent.yml +129 -0
- package/examples/spec-examples/monitoring-agent.yml +130 -0
- package/examples/spec-examples/serverless-agent.yml +82 -0
- package/examples/spec-examples/workflow-agent.yml +223 -0
- package/examples/templates/ossa-compliance.yaml +56 -0
- package/examples/typescript/advanced/demo-registry.ts +168 -0
- package/examples/typescript/mcpb-agent-example.ts +358 -0
- package/examples/vercel/edge-agent.ossa.json +43 -0
- package/infrastructure/docker-compose.yml +33 -0
- package/junit.xml +1 -0
- package/openapi/drupal-agent-api.openapi.yaml +348 -0
- package/openapi/gitlab-orchestrator.openapi.yaml +330 -0
- package/openapi/helm-generator.openapi.yaml +389 -0
- package/openapi/ossa-core-api.openapi.yaml +1448 -0
- package/openapi/ossa-registry-api.openapi.yaml +980 -0
- package/openapi/ossa-registry.openapi.yaml +782 -0
- package/openapi/self-evolving-ecosystem.openapi.yaml +1530 -0
- package/openapi/unified-agent-gateway.openapi.yaml +833 -0
- package/ossa-website-swarm-tasks.json +105 -0
- package/package.json +132 -0
- package/release.config.js +64 -0
- package/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
- package/spec/v0.1.9/ecosystem-compliance.json +235 -0
- package/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
- package/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
- package/spec/v0.1.9/reasoning-compliance.json +654 -0
- package/spec/v0.2.2/kagent-enhancements.json +395 -0
- package/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
- package/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
- package/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
- package/spec/v0.2.3/CHANGELOG.md +176 -0
- package/spec/v0.2.3/README.md +154 -0
- package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
- package/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
- package/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
- package/spec/v0.2.4-dev/CHANGELOG.md +403 -0
- package/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
- package/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
- package/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
- package/spec/v0.2.5-dev/CHANGELOG.md +171 -0
- package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
- package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
- package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
- package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
- package/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
- package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
- package/test-results.xml +1 -0
- package/website/.lighthouserc.js +20 -0
- package/website/.prettierrc +10 -0
- package/website/Dockerfile +17 -0
- package/website/app/about/page.tsx +295 -0
- package/website/app/api/validate/route.ts +88 -0
- package/website/app/blog/[slug]/page.tsx +167 -0
- package/website/app/blog/page.tsx +162 -0
- package/website/app/docs/[[...slug]]/page.tsx +349 -0
- package/website/app/docs/core-concepts/project-structure/page.tsx +349 -0
- package/website/app/ecosystem/page.tsx +375 -0
- package/website/app/examples/page.tsx +123 -0
- package/website/app/globals.css +108 -0
- package/website/app/layout.tsx +106 -0
- package/website/app/page.tsx +409 -0
- package/website/app/playground/page.tsx +507 -0
- package/website/app/robots.ts +19 -0
- package/website/app/rss.xml/route.ts +74 -0
- package/website/app/schema/page.tsx +970 -0
- package/website/app/sitemap.ts +56 -0
- package/website/app/specification/page.tsx +211 -0
- package/website/components/InstallCommand.tsx +96 -0
- package/website/components/Logo.tsx +24 -0
- package/website/components/StructuredData.tsx +65 -0
- package/website/components/docs/DocsSearch.tsx +104 -0
- package/website/components/docs/DocsSidebar.tsx +118 -0
- package/website/components/docs/MarkdownContent.tsx +183 -0
- package/website/components/docs/VersionSelector.tsx +49 -0
- package/website/components/examples/ExamplesViewer.tsx +293 -0
- package/website/components/layout/Footer.tsx +111 -0
- package/website/components/layout/Header.tsx +170 -0
- package/website/components/schema/SchemaExplorer.tsx +213 -0
- package/website/content/blog/OpenAPI-AI-Agents-Standard.md +285 -0
- package/website/content/blog/Why-Formal-Standards-Matter-Now.md +209 -0
- package/website/content/blog/introducing-ossa-framework.md +328 -0
- package/website/content/blog/ossa-production-results.md +279 -0
- package/website/content/blog/welcome-to-ossa.md +43 -0
- package/website/content/blog/why-ai-agents-need-open-standard.md +98 -0
- package/website/content/docs/00-HOME.md +160 -0
- package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
- package/website/content/docs/OpenAPI-Extensions.md +498 -0
- package/website/content/docs/architecture/execution-flow.md +335 -0
- package/website/content/docs/architecture/multi-agent-systems.md +737 -0
- package/website/content/docs/architecture/overview.md +121 -0
- package/website/content/docs/architecture/stack-integration.md +461 -0
- package/website/content/docs/changelog.md +246 -0
- package/website/content/docs/contributing.md +599 -0
- package/website/content/docs/core-concepts/project-structure.md +348 -0
- package/website/content/docs/ecosystem/framework-support.md +821 -0
- package/website/content/docs/ecosystem/overview.md +366 -0
- package/website/content/docs/examples/Migration-Guides.md +214 -0
- package/website/content/docs/examples.md +71 -0
- package/website/content/docs/for-audiences/Enterprises.md +256 -0
- package/website/content/docs/for-audiences/Students-Researchers.md +122 -0
- package/website/content/docs/for-audiences/architects.md +224 -0
- package/website/content/docs/for-audiences/developers.md +220 -0
- package/website/content/docs/getting-started/5-minute-overview.md +85 -0
- package/website/content/docs/getting-started/Hello-World.md +184 -0
- package/website/content/docs/getting-started/first-agent.md +196 -0
- package/website/content/docs/getting-started/installation.md +155 -0
- package/website/content/docs/getting-started/running-agents.md +107 -0
- package/website/content/docs/integrations/aiflow.md +104 -0
- package/website/content/docs/integrations/drupal.md +105 -0
- package/website/content/docs/migration-guides/00-index.md +76 -0
- package/website/content/docs/migration-guides/README.md +133 -0
- package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +1750 -0
- package/website/content/docs/migration-guides/crewai-to-ossa.md +274 -0
- package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +2017 -0
- package/website/content/docs/migration-guides/index.md +133 -0
- package/website/content/docs/migration-guides/langchain-to-ossa.md +1714 -0
- package/website/content/docs/migration-guides/langflow-to-ossa.md +2075 -0
- package/website/content/docs/migration-guides/openai-to-ossa.md +1202 -0
- package/website/content/docs/openapi-extensions/examples.md +550 -0
- package/website/content/docs/openapi-extensions/index.md +495 -0
- package/website/content/docs/openapi-extensions/operation-extensions.md +398 -0
- package/website/content/docs/openapi-extensions/root-extensions.md +364 -0
- package/website/content/docs/pre-release/index.md +175 -0
- package/website/content/docs/quick-reference.md +17 -0
- package/website/content/docs/schema-reference/agent-spec.md +406 -0
- package/website/content/docs/schema-reference/autonomy.md +568 -0
- package/website/content/docs/schema-reference/constraints.md +543 -0
- package/website/content/docs/schema-reference/index.md +176 -0
- package/website/content/docs/schema-reference/llm-config.md +445 -0
- package/website/content/docs/schema-reference/observability.md +654 -0
- package/website/content/docs/schema-reference/ossa-manifest.md +309 -0
- package/website/content/docs/schema-reference/taxonomy.md +509 -0
- package/website/content/docs/schema-reference/tools.md +628 -0
- package/website/content/docs/templates/blog-post.md +43 -0
- package/website/content/docs/use-cases/00-index.md +395 -0
- package/website/content/docs/use-cases/cicd-code-review.md +1236 -0
- package/website/content/docs/use-cases/customer-support.md +1234 -0
- package/website/content/docs/use-cases/enterprise-compliance.md +1208 -0
- package/website/content/docs/use-cases/research-multi-agent.md +1161 -0
- package/website/lib/version.ts +18 -0
- package/website/next.config.js +17 -0
- package/website/next.config.ts +16 -0
- package/website/nginx.conf +32 -0
- package/website/package-lock.json +9145 -0
- package/website/package.json +53 -0
- package/website/postcss.config.js +7 -0
- package/website/postcss.config.mjs +9 -0
- package/website/scripts/sync-version.js +44 -0
- package/website/scripts/sync-wiki.ts +261 -0
- package/website/tailwind.config.js +58 -0
- package/website/tailwind.config.ts +65 -0
|
@@ -0,0 +1,364 @@
|
|
|
1
|
+
# Root-Level Extensions
|
|
2
|
+
|
|
3
|
+
Extensions that can be added at the root level of an OpenAPI 3.1 specification.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## x-ossa-metadata
|
|
8
|
+
|
|
9
|
+
Embeds comprehensive OSSA agent metadata in OpenAPI spec root. Provides governance, compliance, security, and observability metadata.
|
|
10
|
+
|
|
11
|
+
### Location
|
|
12
|
+
|
|
13
|
+
Root level of OpenAPI spec
|
|
14
|
+
|
|
15
|
+
### Schema
|
|
16
|
+
|
|
17
|
+
| Field | Type | Description |
|
|
18
|
+
|-------|------|-------------|
|
|
19
|
+
| `version` | string | OSSA specification version (e.g., "0.2.2", "1.0.0") |
|
|
20
|
+
| `compliance.level` | string | Compliance level: "basic" \| "standard" \| "advanced" \| "enterprise" |
|
|
21
|
+
| `compliance.frameworks` | string[] | List of compliance frameworks (e.g., ["OSSA", "OpenAPI 3.1"]) |
|
|
22
|
+
| `governance.approved` | boolean | Whether specification has been approved |
|
|
23
|
+
| `governance.approvedBy` | string | Entity that approved (optional) |
|
|
24
|
+
| `governance.approvalDate` | string | Date of approval in YYYY-MM-DD format (optional) |
|
|
25
|
+
| `security.classification` | string | Security level: "public" \| "internal" \| "confidential" \| "restricted" |
|
|
26
|
+
| `security.authentication` | string | Auth requirement: "required" \| "optional" \| "none" |
|
|
27
|
+
| `security.encryption` | string | Encryption requirements (e.g., "tls1.3") |
|
|
28
|
+
| `observability.tracing` | boolean | Enable distributed tracing |
|
|
29
|
+
| `observability.metrics` | boolean | Enable metrics collection |
|
|
30
|
+
| `observability.logging` | boolean | Enable structured logging |
|
|
31
|
+
|
|
32
|
+
### Example (YAML)
|
|
33
|
+
|
|
34
|
+
```yaml
|
|
35
|
+
openapi: 3.1.0
|
|
36
|
+
info:
|
|
37
|
+
title: Kubernetes Troubleshooter Agent API
|
|
38
|
+
version: 1.0.0
|
|
39
|
+
|
|
40
|
+
x-ossa-metadata:
|
|
41
|
+
version: 0.2.2
|
|
42
|
+
compliance:
|
|
43
|
+
level: enterprise
|
|
44
|
+
frameworks:
|
|
45
|
+
- OSSA
|
|
46
|
+
- OpenAPI 3.1
|
|
47
|
+
- RFC7807
|
|
48
|
+
governance:
|
|
49
|
+
approved: true
|
|
50
|
+
approvedBy: Platform Team
|
|
51
|
+
approvalDate: 2024-01-15
|
|
52
|
+
security:
|
|
53
|
+
classification: internal
|
|
54
|
+
authentication: required
|
|
55
|
+
encryption: tls1.3
|
|
56
|
+
observability:
|
|
57
|
+
tracing: true
|
|
58
|
+
metrics: true
|
|
59
|
+
logging: true
|
|
60
|
+
|
|
61
|
+
paths:
|
|
62
|
+
# ... paths ...
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### Example (JSON)
|
|
66
|
+
|
|
67
|
+
```json
|
|
68
|
+
{
|
|
69
|
+
"openapi": "3.1.0",
|
|
70
|
+
"info": {
|
|
71
|
+
"title": "Kubernetes Troubleshooter Agent API",
|
|
72
|
+
"version": "1.0.0"
|
|
73
|
+
},
|
|
74
|
+
"x-ossa-metadata": {
|
|
75
|
+
"version": "0.2.2",
|
|
76
|
+
"compliance": {
|
|
77
|
+
"level": "enterprise",
|
|
78
|
+
"frameworks": ["OSSA", "OpenAPI 3.1", "RFC7807"]
|
|
79
|
+
},
|
|
80
|
+
"governance": {
|
|
81
|
+
"approved": true,
|
|
82
|
+
"approvedBy": "Platform Team",
|
|
83
|
+
"approvalDate": "2024-01-15"
|
|
84
|
+
},
|
|
85
|
+
"security": {
|
|
86
|
+
"classification": "internal",
|
|
87
|
+
"authentication": "required",
|
|
88
|
+
"encryption": "tls1.3"
|
|
89
|
+
},
|
|
90
|
+
"observability": {
|
|
91
|
+
"tracing": true,
|
|
92
|
+
"metrics": true,
|
|
93
|
+
"logging": true
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Use Cases
|
|
100
|
+
|
|
101
|
+
- **Enterprise compliance** - Document governance and approval workflows
|
|
102
|
+
- **Security audits** - Declare security classification and requirements
|
|
103
|
+
- **Observability** - Enable tracing, metrics, and logging at spec level
|
|
104
|
+
- **Multi-framework compliance** - Track compliance with multiple standards
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## x-ossa
|
|
109
|
+
|
|
110
|
+
Core OSSA compliance information with agent identification and validation metadata.
|
|
111
|
+
|
|
112
|
+
### Location
|
|
113
|
+
|
|
114
|
+
Root level or `info` section of OpenAPI spec
|
|
115
|
+
|
|
116
|
+
### Schema
|
|
117
|
+
|
|
118
|
+
| Field | Type | Description |
|
|
119
|
+
|-------|------|-------------|
|
|
120
|
+
| `version` | string | OSSA specification version (e.g., "0.2.2") |
|
|
121
|
+
| `agent.id` | string | Unique agent identifier (DNS subdomain format) |
|
|
122
|
+
| `agent.type` | string | Agent type (see table below) |
|
|
123
|
+
| `agent.compliance.standards` | string[] | Architectural standards (e.g., ["openapi-first", "dry", "solid"]) |
|
|
124
|
+
| `agent.compliance.validated` | boolean | Whether agent has been validated |
|
|
125
|
+
| `agent.compliance.validatedAt` | string | ISO 8601 timestamp of validation |
|
|
126
|
+
|
|
127
|
+
### Agent Types
|
|
128
|
+
|
|
129
|
+
| Type | Description |
|
|
130
|
+
|------|-------------|
|
|
131
|
+
| `orchestrator` | Coordinates multiple agents and workflows |
|
|
132
|
+
| `worker` | Performs specific tasks and operations |
|
|
133
|
+
| `specialist` | Specialized domain expertise |
|
|
134
|
+
| `critic` | Reviews and validates agent outputs |
|
|
135
|
+
| `judge` | Makes decisions and evaluates outcomes |
|
|
136
|
+
| `monitor` | Observes and reports on system state |
|
|
137
|
+
| `gateway` | Entry point for agent communication |
|
|
138
|
+
| `governor` | Enforces policies and compliance |
|
|
139
|
+
| `integrator` | Connects systems and protocols |
|
|
140
|
+
| `voice` | Handles audio/speech interactions |
|
|
141
|
+
|
|
142
|
+
### Example
|
|
143
|
+
|
|
144
|
+
```yaml
|
|
145
|
+
openapi: 3.1.0
|
|
146
|
+
info:
|
|
147
|
+
title: My Agent API
|
|
148
|
+
version: 1.0.0
|
|
149
|
+
|
|
150
|
+
x-ossa:
|
|
151
|
+
version: 0.2.2
|
|
152
|
+
agent:
|
|
153
|
+
id: k8s-troubleshooter
|
|
154
|
+
type: worker
|
|
155
|
+
compliance:
|
|
156
|
+
standards:
|
|
157
|
+
- openapi-first
|
|
158
|
+
- dry
|
|
159
|
+
- crud
|
|
160
|
+
- solid
|
|
161
|
+
- type-safe
|
|
162
|
+
validated: true
|
|
163
|
+
validatedAt: "2024-01-15T10:30:00Z"
|
|
164
|
+
|
|
165
|
+
paths:
|
|
166
|
+
# ... paths ...
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
### Use Cases
|
|
170
|
+
|
|
171
|
+
- **Agent registry** - Unique ID enables agent discovery and registration
|
|
172
|
+
- **Type-based routing** - Route requests based on agent type
|
|
173
|
+
- **Validation tracking** - Track when agent spec was last validated
|
|
174
|
+
- **Standards compliance** - Document architectural standards followed
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## x-agent
|
|
179
|
+
|
|
180
|
+
Agent-specific capabilities, tools, environment, and rules configuration.
|
|
181
|
+
|
|
182
|
+
### Location
|
|
183
|
+
|
|
184
|
+
Root level or `info` section of OpenAPI spec
|
|
185
|
+
|
|
186
|
+
### Schema
|
|
187
|
+
|
|
188
|
+
| Field | Type | Description |
|
|
189
|
+
|-------|------|-------------|
|
|
190
|
+
| `capabilities` | string[] | List of agent capability names |
|
|
191
|
+
| `tools` | string[] | List of tools/MCP servers available |
|
|
192
|
+
| `environment` | object | Environment-specific configuration (key-value pairs) |
|
|
193
|
+
| `rules` | string[] | List of rules or policies the agent follows |
|
|
194
|
+
|
|
195
|
+
### Example
|
|
196
|
+
|
|
197
|
+
```yaml
|
|
198
|
+
openapi: 3.1.0
|
|
199
|
+
info:
|
|
200
|
+
title: Data Processing Agent API
|
|
201
|
+
version: 1.0.0
|
|
202
|
+
|
|
203
|
+
x-agent:
|
|
204
|
+
capabilities:
|
|
205
|
+
- data-transformation
|
|
206
|
+
- csv-parsing
|
|
207
|
+
- json-validation
|
|
208
|
+
tools:
|
|
209
|
+
- postgres-mcp
|
|
210
|
+
- redis-mcp
|
|
211
|
+
- file-system-mcp
|
|
212
|
+
environment:
|
|
213
|
+
processingTimeout: 300
|
|
214
|
+
maxFileSize: "100MB"
|
|
215
|
+
enableCaching: true
|
|
216
|
+
rules:
|
|
217
|
+
- no-external-api-calls
|
|
218
|
+
- validate-all-inputs
|
|
219
|
+
- encrypt-sensitive-data
|
|
220
|
+
|
|
221
|
+
paths:
|
|
222
|
+
# ... paths ...
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
### Use Cases
|
|
226
|
+
|
|
227
|
+
- **Capability discovery** - List all capabilities agent provides
|
|
228
|
+
- **Tool requirements** - Document MCP servers and tools needed
|
|
229
|
+
- **Environment config** - Define environment-specific settings
|
|
230
|
+
- **Policy enforcement** - Declare rules and constraints agent follows
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
## Parameter Extensions
|
|
235
|
+
|
|
236
|
+
Standard parameters for agent-to-agent communication.
|
|
237
|
+
|
|
238
|
+
### x-ossa-agent-id
|
|
239
|
+
|
|
240
|
+
Standard header parameter for agent identification.
|
|
241
|
+
|
|
242
|
+
**Location**: Parameter definition in `components.parameters` or operation-level `parameters`
|
|
243
|
+
|
|
244
|
+
**Example**:
|
|
245
|
+
|
|
246
|
+
```yaml
|
|
247
|
+
components:
|
|
248
|
+
parameters:
|
|
249
|
+
X-Ossa-Agent-Id:
|
|
250
|
+
name: X-OSSA-Agent-ID
|
|
251
|
+
in: header
|
|
252
|
+
description: Unique identifier of the agent making the request
|
|
253
|
+
required: false
|
|
254
|
+
schema:
|
|
255
|
+
type: string
|
|
256
|
+
pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$"
|
|
257
|
+
example: "k8s-troubleshooter"
|
|
258
|
+
|
|
259
|
+
paths:
|
|
260
|
+
/api/v1/capabilities:
|
|
261
|
+
get:
|
|
262
|
+
summary: Get agent capabilities
|
|
263
|
+
parameters:
|
|
264
|
+
- $ref: '#/components/parameters/X-Ossa-Agent-Id'
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
### x-ossa-version
|
|
268
|
+
|
|
269
|
+
Standard header parameter for OSSA specification version.
|
|
270
|
+
|
|
271
|
+
**Location**: Parameter definition in `components.parameters` or operation-level `parameters`
|
|
272
|
+
|
|
273
|
+
**Example**:
|
|
274
|
+
|
|
275
|
+
```yaml
|
|
276
|
+
components:
|
|
277
|
+
parameters:
|
|
278
|
+
X-Ossa-Version:
|
|
279
|
+
name: X-OSSA-Version
|
|
280
|
+
in: header
|
|
281
|
+
description: OSSA specification version the agent supports
|
|
282
|
+
required: false
|
|
283
|
+
schema:
|
|
284
|
+
type: string
|
|
285
|
+
pattern: "^\\d+\\.\\d+\\.\\d+(-[a-zA-Z0-9]+)?$"
|
|
286
|
+
example: "0.2.2"
|
|
287
|
+
|
|
288
|
+
paths:
|
|
289
|
+
/api/v1/execute:
|
|
290
|
+
post:
|
|
291
|
+
summary: Execute agent capability
|
|
292
|
+
parameters:
|
|
293
|
+
- $ref: '#/components/parameters/X-Ossa-Version'
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
---
|
|
297
|
+
|
|
298
|
+
## Schema Extensions
|
|
299
|
+
|
|
300
|
+
### x-ossa-capability-schema
|
|
301
|
+
|
|
302
|
+
Extends schema definition with capability metadata, linking OpenAPI schemas to OSSA capabilities.
|
|
303
|
+
|
|
304
|
+
**Location**: Schema definition in `components.schemas`
|
|
305
|
+
|
|
306
|
+
**Schema**:
|
|
307
|
+
|
|
308
|
+
| Field | Type | Description |
|
|
309
|
+
|-------|------|-------------|
|
|
310
|
+
| `capabilityName` | string | Name of the capability this schema represents |
|
|
311
|
+
| `input` | boolean | Whether this is an input schema (default: false) |
|
|
312
|
+
| `output` | boolean | Whether this is an output schema (default: false) |
|
|
313
|
+
| `validation.required` | boolean | Whether validation is required (optional) |
|
|
314
|
+
| `validation.strict` | boolean | Whether to use strict validation (optional) |
|
|
315
|
+
|
|
316
|
+
**Example**:
|
|
317
|
+
|
|
318
|
+
```yaml
|
|
319
|
+
components:
|
|
320
|
+
schemas:
|
|
321
|
+
DataProcessingInput:
|
|
322
|
+
type: object
|
|
323
|
+
required: [csvData]
|
|
324
|
+
properties:
|
|
325
|
+
csvData:
|
|
326
|
+
type: string
|
|
327
|
+
description: CSV content to process
|
|
328
|
+
x-ossa-capability-schema:
|
|
329
|
+
capabilityName: data-transformation
|
|
330
|
+
input: true
|
|
331
|
+
validation:
|
|
332
|
+
required: true
|
|
333
|
+
strict: true
|
|
334
|
+
|
|
335
|
+
DataProcessingOutput:
|
|
336
|
+
type: object
|
|
337
|
+
properties:
|
|
338
|
+
jsonData:
|
|
339
|
+
type: array
|
|
340
|
+
items:
|
|
341
|
+
type: object
|
|
342
|
+
x-ossa-capability-schema:
|
|
343
|
+
capabilityName: data-transformation
|
|
344
|
+
output: true
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
---
|
|
348
|
+
|
|
349
|
+
## Best Practices
|
|
350
|
+
|
|
351
|
+
1. **Use x-ossa-metadata for enterprise deployments** - Document compliance, governance, and security
|
|
352
|
+
2. **Always include x-ossa at root** - Provides core agent identification
|
|
353
|
+
3. **Use x-agent for capability listing** - Makes agent discoverable
|
|
354
|
+
4. **Define standard parameters once** - Reference X-OSSA-Agent-ID and X-OSSA-Version from components
|
|
355
|
+
5. **Link schemas to capabilities** - Use x-ossa-capability-schema for validation
|
|
356
|
+
|
|
357
|
+
---
|
|
358
|
+
|
|
359
|
+
## References
|
|
360
|
+
|
|
361
|
+
- [Operation-Level Extensions](operation-extensions)
|
|
362
|
+
- [Examples & Patterns](examples)
|
|
363
|
+
- [OSSA Specification v0.2.2](../Technical/Specification-Deep-Dive)
|
|
364
|
+
- [OpenAPI 3.1 Specification](https://spec.openapis.org/oas/v3.1.0)
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
# Pre-Release Specifications
|
|
2
|
+
|
|
3
|
+
> **Warning**: These specifications are in development and may change before stable release. Do not use in production.
|
|
4
|
+
|
|
5
|
+
## Development Versions
|
|
6
|
+
|
|
7
|
+
OSSA follows semantic versioning. Development specs are marked with `-dev` suffix to indicate they are not yet stable.
|
|
8
|
+
|
|
9
|
+
### v0.2.4-dev - Transport & Security
|
|
10
|
+
|
|
11
|
+
**Status**: Development
|
|
12
|
+
**Target Release**: February 2025
|
|
13
|
+
**Milestone**: [v0.2.4 - Transport & Security](https://github.com/blueflyio/openstandardagents/milestones/12)
|
|
14
|
+
|
|
15
|
+
#### New Features
|
|
16
|
+
|
|
17
|
+
1. **Transport Metadata for Capabilities**
|
|
18
|
+
- Protocol support: `http`, `grpc`, `a2a`, `mcp`, `websocket`, `custom`
|
|
19
|
+
- Streaming modes: `none`, `request`, `response`, `bidirectional`
|
|
20
|
+
- Binding paths for endpoints
|
|
21
|
+
|
|
22
|
+
2. **State/Memory Specification**
|
|
23
|
+
- Mode: `stateless`, `session`, `long_running`
|
|
24
|
+
- Storage types: `memory`, `vector-db`, `kv`, `rdbms`, `custom`
|
|
25
|
+
- Retention configuration
|
|
26
|
+
|
|
27
|
+
3. **Security Scopes and Compliance Tags**
|
|
28
|
+
- OAuth2-style scopes per capability
|
|
29
|
+
- Compliance tags: `pii`, `hipaa`, `gdpr`, `fedramp`, `soc2`
|
|
30
|
+
|
|
31
|
+
4. **Capability Versioning**
|
|
32
|
+
- Version field (major.minor)
|
|
33
|
+
- Deprecation flags and messages
|
|
34
|
+
|
|
35
|
+
5. **Google ADK Extension**
|
|
36
|
+
- A2A protocol support
|
|
37
|
+
- Agent hierarchies
|
|
38
|
+
- MCP integration
|
|
39
|
+
- Streaming modalities
|
|
40
|
+
|
|
41
|
+
#### Framework Alignment
|
|
42
|
+
|
|
43
|
+
- Google Agent Development Kit (ADK)
|
|
44
|
+
- OpenAI Agents SDK
|
|
45
|
+
- Microsoft Agent Framework
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
### v0.2.5-dev - Multi-Agent Composition
|
|
50
|
+
|
|
51
|
+
**Status**: Development
|
|
52
|
+
**Target Release**: March 2025
|
|
53
|
+
**Milestone**: [v0.2.5 - Multi-Agent Composition](https://github.com/blueflyio/openstandardagents/milestones/13)
|
|
54
|
+
|
|
55
|
+
#### New Features
|
|
56
|
+
|
|
57
|
+
1. **AgentGraph Resource Type**
|
|
58
|
+
```yaml
|
|
59
|
+
apiVersion: ossa/v0.2.5
|
|
60
|
+
kind: AgentGraph # New!
|
|
61
|
+
metadata:
|
|
62
|
+
name: customer-support-cluster
|
|
63
|
+
spec:
|
|
64
|
+
agents:
|
|
65
|
+
- ref: triage-agent
|
|
66
|
+
role: entry
|
|
67
|
+
- ref: resolver-agent
|
|
68
|
+
role: worker
|
|
69
|
+
edges:
|
|
70
|
+
- from: triage-agent
|
|
71
|
+
to: resolver-agent
|
|
72
|
+
condition: standard-issue
|
|
73
|
+
process: sequential
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
2. **Process Patterns**
|
|
77
|
+
- `sequential`: Agents execute one after another
|
|
78
|
+
- `parallel`: Agents execute simultaneously
|
|
79
|
+
- `hierarchical`: Manager delegates to workers
|
|
80
|
+
- `conditional`: Branching based on conditions
|
|
81
|
+
- `loop`: Iterative execution
|
|
82
|
+
|
|
83
|
+
3. **Edge Routing**
|
|
84
|
+
- From/to agent references
|
|
85
|
+
- Condition expressions
|
|
86
|
+
- Priority ordering
|
|
87
|
+
|
|
88
|
+
4. **Shared State**
|
|
89
|
+
- Schema definition
|
|
90
|
+
- Persistence options
|
|
91
|
+
- Checkpointing and recovery
|
|
92
|
+
|
|
93
|
+
#### Framework Alignment
|
|
94
|
+
|
|
95
|
+
- CrewAI (crews, manager agents)
|
|
96
|
+
- MetaGPT (SOPs, role pipelines)
|
|
97
|
+
- Microsoft AF (workflows)
|
|
98
|
+
- Google ADK (agent graphs)
|
|
99
|
+
- LangGraph (state machines)
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## Using Development Specs
|
|
104
|
+
|
|
105
|
+
### Installation
|
|
106
|
+
|
|
107
|
+
Development specs are available in the repository:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
# Clone the repository
|
|
111
|
+
git clone https://github.com/blueflyio/openstandardagents.git
|
|
112
|
+
cd openstandardagents
|
|
113
|
+
|
|
114
|
+
# View development specs
|
|
115
|
+
ls spec/v0.2.4-dev/
|
|
116
|
+
ls spec/v0.2.5-dev/
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### Validation
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
# Install CLI (if not already installed)
|
|
123
|
+
npm install -g @bluefly/openstandardagents
|
|
124
|
+
|
|
125
|
+
# Validate against development schema
|
|
126
|
+
ossa validate your-agent.yaml --version 0.2.4-dev
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### Examples
|
|
130
|
+
|
|
131
|
+
Development examples are in the spec directories:
|
|
132
|
+
|
|
133
|
+
- `spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml` - Sequential process
|
|
134
|
+
- `spec/v0.2.5-dev/examples/research-team.ossa.yaml` - Hierarchical process
|
|
135
|
+
- `spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml` - Parallel process
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
139
|
+
## Providing Feedback
|
|
140
|
+
|
|
141
|
+
We welcome feedback on development specifications:
|
|
142
|
+
|
|
143
|
+
1. **GitHub Issues**: [Create an issue](https://github.com/blueflyio/openstandardagents/issues/new)
|
|
144
|
+
2. **Discussions**: Comment on milestone issues
|
|
145
|
+
3. **Pull Requests**: Submit improvements
|
|
146
|
+
|
|
147
|
+
### v0.2.4 Issues
|
|
148
|
+
- [#220 - Transport metadata](https://github.com/blueflyio/openstandardagents/issues/220)
|
|
149
|
+
- [#221 - State/memory block](https://github.com/blueflyio/openstandardagents/issues/221)
|
|
150
|
+
- [#222 - Security scopes](https://github.com/blueflyio/openstandardagents/issues/222)
|
|
151
|
+
- [#223 - Capability versioning](https://github.com/blueflyio/openstandardagents/issues/223)
|
|
152
|
+
- [#224 - Google ADK extension](https://github.com/blueflyio/openstandardagents/issues/224)
|
|
153
|
+
- [#225 - MS AF adapter](https://github.com/blueflyio/openstandardagents/issues/225)
|
|
154
|
+
|
|
155
|
+
### v0.2.5 Issues
|
|
156
|
+
- [#211-212 - AgentGraph resource](https://github.com/blueflyio/openstandardagents/issues/211)
|
|
157
|
+
- [#213 - Process patterns](https://github.com/blueflyio/openstandardagents/issues/213)
|
|
158
|
+
- [#214 - Edge routing](https://github.com/blueflyio/openstandardagents/issues/214)
|
|
159
|
+
- [#215 - Shared state](https://github.com/blueflyio/openstandardagents/issues/215)
|
|
160
|
+
- [#216-218 - Adapter examples](https://github.com/blueflyio/openstandardagents/issues/216)
|
|
161
|
+
- [#219 - Validation rules](https://github.com/blueflyio/openstandardagents/issues/219)
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
## Roadmap
|
|
166
|
+
|
|
167
|
+
| Version | Focus | Status | Target |
|
|
168
|
+
|---------|-------|--------|--------|
|
|
169
|
+
| v0.2.3 | Documentation & Examples | **Stable** | Released |
|
|
170
|
+
| v0.2.4 | Transport & Security | Development | Feb 2025 |
|
|
171
|
+
| v0.2.5 | Multi-Agent Composition | Development | Mar 2025 |
|
|
172
|
+
| v0.3.0 | Gamma Release | Planned | Apr 2025 |
|
|
173
|
+
| v1.0.0 | Genesis Release | Planned | TBD |
|
|
174
|
+
|
|
175
|
+
See [milestones](https://github.com/blueflyio/openstandardagents/milestones) for full details.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Quick Reference"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Quick Reference
|
|
6
|
+
|
|
7
|
+
- Root: `x-ossa-metadata`, `x-ossa`, `x-agent`
|
|
8
|
+
- Operation: `x-ossa-capability`, `x-ossa-autonomy`, `x-ossa-constraints`, `x-ossa-tools`, `x-ossa-llm`
|
|
9
|
+
- Parameters: `x-ossa-agent-id`, `x-ossa-version`
|
|
10
|
+
- Schemas: `x-ossa-capability-schema`
|
|
11
|
+
|
|
12
|
+
**Validation**:
|
|
13
|
+
```bash
|
|
14
|
+
ossa validate examples/openapi-extensions/worker-agent-api.openapi.yml --openapi --verbose
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**Links**: [OpenAPI-Extensions](./OpenAPI-Extensions) · [Examples](./Examples)
|