@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,424 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "https://openstandardagents.org/schemas/1.0/reasoning-compliance.json",
|
|
4
|
+
"title": "OSSA 1.0 Reasoning Compliance Extension",
|
|
5
|
+
"description": "OSSA extension for chain-of-thought reasoning compliance validation and auditing. Defines requirements for transparent, traceable, and auditable AI reasoning chains.",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"reasoningCompliance": {
|
|
10
|
+
"type": "object",
|
|
11
|
+
"description": "Reasoning compliance configuration and rules",
|
|
12
|
+
"required": ["enabled", "standard", "rules"],
|
|
13
|
+
"properties": {
|
|
14
|
+
"enabled": {
|
|
15
|
+
"type": "boolean",
|
|
16
|
+
"description": "Enable reasoning compliance validation",
|
|
17
|
+
"default": true
|
|
18
|
+
},
|
|
19
|
+
"standard": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"enum": ["ossa_v1", "ossa_v2", "custom"],
|
|
22
|
+
"description": "Compliance standard to enforce",
|
|
23
|
+
"default": "ossa_v2"
|
|
24
|
+
},
|
|
25
|
+
"rules": {
|
|
26
|
+
"type": "array",
|
|
27
|
+
"description": "Compliance rules to enforce",
|
|
28
|
+
"items": {
|
|
29
|
+
"$ref": "#/definitions/ComplianceRule"
|
|
30
|
+
},
|
|
31
|
+
"minItems": 1
|
|
32
|
+
},
|
|
33
|
+
"attentionTracking": {
|
|
34
|
+
"type": "object",
|
|
35
|
+
"description": "Attention mechanism tracking requirements",
|
|
36
|
+
"properties": {
|
|
37
|
+
"required": {
|
|
38
|
+
"type": "boolean",
|
|
39
|
+
"description": "Whether attention tracking is required",
|
|
40
|
+
"default": true
|
|
41
|
+
},
|
|
42
|
+
"mechanisms": {
|
|
43
|
+
"type": "array",
|
|
44
|
+
"description": "Allowed attention mechanisms",
|
|
45
|
+
"items": {
|
|
46
|
+
"type": "string",
|
|
47
|
+
"enum": ["gqa", "flash_v3", "hybrid", "standard"]
|
|
48
|
+
},
|
|
49
|
+
"default": ["gqa", "flash_v3", "hybrid"]
|
|
50
|
+
},
|
|
51
|
+
"minimumHeads": {
|
|
52
|
+
"type": "integer",
|
|
53
|
+
"minimum": 1,
|
|
54
|
+
"description": "Minimum number of attention heads",
|
|
55
|
+
"default": 4
|
|
56
|
+
},
|
|
57
|
+
"trackingFrequency": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"enum": ["every_step", "decision_points", "critical_only"],
|
|
60
|
+
"description": "How frequently to track attention",
|
|
61
|
+
"default": "every_step"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"auditTrail": {
|
|
66
|
+
"type": "object",
|
|
67
|
+
"description": "Audit trail requirements",
|
|
68
|
+
"required": ["enabled"],
|
|
69
|
+
"properties": {
|
|
70
|
+
"enabled": {
|
|
71
|
+
"type": "boolean",
|
|
72
|
+
"description": "Enable audit trail generation",
|
|
73
|
+
"default": true
|
|
74
|
+
},
|
|
75
|
+
"storageBackend": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"enum": ["neo4j", "postgres", "mongodb", "qdrant"],
|
|
78
|
+
"description": "Backend for audit trail storage"
|
|
79
|
+
},
|
|
80
|
+
"retentionDays": {
|
|
81
|
+
"type": "integer",
|
|
82
|
+
"minimum": 1,
|
|
83
|
+
"description": "How long to retain audit trails",
|
|
84
|
+
"default": 90
|
|
85
|
+
},
|
|
86
|
+
"immutable": {
|
|
87
|
+
"type": "boolean",
|
|
88
|
+
"description": "Whether audit trails are immutable",
|
|
89
|
+
"default": true
|
|
90
|
+
},
|
|
91
|
+
"checksumAlgorithm": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"enum": ["sha256", "sha512", "blake2b"],
|
|
94
|
+
"description": "Checksum algorithm for audit trail integrity",
|
|
95
|
+
"default": "sha256"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
},
|
|
99
|
+
"chainRequirements": {
|
|
100
|
+
"type": "object",
|
|
101
|
+
"description": "Requirements for reasoning chains",
|
|
102
|
+
"properties": {
|
|
103
|
+
"minimumSteps": {
|
|
104
|
+
"type": "integer",
|
|
105
|
+
"minimum": 1,
|
|
106
|
+
"description": "Minimum steps required in a reasoning chain",
|
|
107
|
+
"default": 3
|
|
108
|
+
},
|
|
109
|
+
"maximumSteps": {
|
|
110
|
+
"type": "integer",
|
|
111
|
+
"minimum": 1,
|
|
112
|
+
"description": "Maximum allowed steps in a reasoning chain",
|
|
113
|
+
"default": 100
|
|
114
|
+
},
|
|
115
|
+
"requiredStepTypes": {
|
|
116
|
+
"type": "array",
|
|
117
|
+
"description": "Required step types that must be present",
|
|
118
|
+
"items": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"enum": ["observation", "hypothesis", "analysis", "decision", "action", "reflection"]
|
|
121
|
+
},
|
|
122
|
+
"default": ["observation", "analysis", "decision"]
|
|
123
|
+
},
|
|
124
|
+
"minimumConfidence": {
|
|
125
|
+
"type": "number",
|
|
126
|
+
"minimum": 0,
|
|
127
|
+
"maximum": 1,
|
|
128
|
+
"description": "Minimum average confidence threshold",
|
|
129
|
+
"default": 0.5
|
|
130
|
+
},
|
|
131
|
+
"requireDependencies": {
|
|
132
|
+
"type": "boolean",
|
|
133
|
+
"description": "Whether steps must declare dependencies",
|
|
134
|
+
"default": true
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"transparencyRequirements": {
|
|
139
|
+
"type": "object",
|
|
140
|
+
"description": "Transparency and explainability requirements",
|
|
141
|
+
"properties": {
|
|
142
|
+
"requireExplanations": {
|
|
143
|
+
"type": "boolean",
|
|
144
|
+
"description": "Whether each step must include reasoning explanation",
|
|
145
|
+
"default": true
|
|
146
|
+
},
|
|
147
|
+
"minimumExplanationLength": {
|
|
148
|
+
"type": "integer",
|
|
149
|
+
"minimum": 0,
|
|
150
|
+
"description": "Minimum characters in reasoning explanation",
|
|
151
|
+
"default": 20
|
|
152
|
+
},
|
|
153
|
+
"exposeAttentionWeights": {
|
|
154
|
+
"type": "boolean",
|
|
155
|
+
"description": "Whether attention weights must be exposed",
|
|
156
|
+
"default": true
|
|
157
|
+
},
|
|
158
|
+
"requireVisualization": {
|
|
159
|
+
"type": "boolean",
|
|
160
|
+
"description": "Whether reasoning must be visualizable",
|
|
161
|
+
"default": false
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"correlationRequirements": {
|
|
166
|
+
"type": "object",
|
|
167
|
+
"description": "Cross-chain correlation requirements",
|
|
168
|
+
"properties": {
|
|
169
|
+
"enableCrossChainTracking": {
|
|
170
|
+
"type": "boolean",
|
|
171
|
+
"description": "Enable tracking correlations across chains",
|
|
172
|
+
"default": true
|
|
173
|
+
},
|
|
174
|
+
"minimumCorrelationScore": {
|
|
175
|
+
"type": "number",
|
|
176
|
+
"minimum": 0,
|
|
177
|
+
"maximum": 1,
|
|
178
|
+
"description": "Minimum correlation score for flagging",
|
|
179
|
+
"default": 0.7
|
|
180
|
+
},
|
|
181
|
+
"detectAnomalies": {
|
|
182
|
+
"type": "boolean",
|
|
183
|
+
"description": "Enable attention anomaly detection",
|
|
184
|
+
"default": true
|
|
185
|
+
},
|
|
186
|
+
"anomalySeverityThreshold": {
|
|
187
|
+
"type": "string",
|
|
188
|
+
"enum": ["low", "medium", "high", "critical"],
|
|
189
|
+
"description": "Minimum severity to report anomalies",
|
|
190
|
+
"default": "medium"
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
},
|
|
194
|
+
"validationTriggers": {
|
|
195
|
+
"type": "array",
|
|
196
|
+
"description": "When to trigger compliance validation",
|
|
197
|
+
"items": {
|
|
198
|
+
"type": "string",
|
|
199
|
+
"enum": ["on_completion", "real_time", "scheduled", "on_demand"]
|
|
200
|
+
},
|
|
201
|
+
"default": ["on_completion"]
|
|
202
|
+
},
|
|
203
|
+
"enforcementLevel": {
|
|
204
|
+
"type": "string",
|
|
205
|
+
"enum": ["strict", "warn", "advisory"],
|
|
206
|
+
"description": "How to enforce compliance violations",
|
|
207
|
+
"default": "strict"
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"definitions": {
|
|
213
|
+
"ComplianceRule": {
|
|
214
|
+
"type": "object",
|
|
215
|
+
"required": ["ruleId", "name", "severity", "condition"],
|
|
216
|
+
"properties": {
|
|
217
|
+
"ruleId": {
|
|
218
|
+
"type": "string",
|
|
219
|
+
"pattern": "^[a-z0-9]([-_a-z0-9]*[a-z0-9])?$",
|
|
220
|
+
"description": "Unique rule identifier"
|
|
221
|
+
},
|
|
222
|
+
"name": {
|
|
223
|
+
"type": "string",
|
|
224
|
+
"description": "Human-readable rule name"
|
|
225
|
+
},
|
|
226
|
+
"description": {
|
|
227
|
+
"type": "string",
|
|
228
|
+
"description": "Detailed rule description"
|
|
229
|
+
},
|
|
230
|
+
"severity": {
|
|
231
|
+
"type": "string",
|
|
232
|
+
"enum": ["info", "warning", "error", "critical"],
|
|
233
|
+
"description": "Rule violation severity"
|
|
234
|
+
},
|
|
235
|
+
"category": {
|
|
236
|
+
"type": "string",
|
|
237
|
+
"enum": [
|
|
238
|
+
"attention_quality",
|
|
239
|
+
"reasoning_clarity",
|
|
240
|
+
"step_completeness",
|
|
241
|
+
"dependency_integrity",
|
|
242
|
+
"confidence_threshold",
|
|
243
|
+
"transparency",
|
|
244
|
+
"auditability",
|
|
245
|
+
"correlation_integrity"
|
|
246
|
+
],
|
|
247
|
+
"description": "Rule category"
|
|
248
|
+
},
|
|
249
|
+
"condition": {
|
|
250
|
+
"type": "object",
|
|
251
|
+
"description": "Rule condition specification",
|
|
252
|
+
"required": ["type"],
|
|
253
|
+
"properties": {
|
|
254
|
+
"type": {
|
|
255
|
+
"type": "string",
|
|
256
|
+
"enum": [
|
|
257
|
+
"min_steps",
|
|
258
|
+
"max_steps",
|
|
259
|
+
"required_types",
|
|
260
|
+
"min_confidence",
|
|
261
|
+
"max_low_confidence_ratio",
|
|
262
|
+
"attention_required",
|
|
263
|
+
"dependency_required",
|
|
264
|
+
"explanation_length",
|
|
265
|
+
"correlation_threshold",
|
|
266
|
+
"no_cycles",
|
|
267
|
+
"no_orphans"
|
|
268
|
+
],
|
|
269
|
+
"description": "Condition type"
|
|
270
|
+
},
|
|
271
|
+
"value": {
|
|
272
|
+
"description": "Condition threshold value",
|
|
273
|
+
"oneOf": [
|
|
274
|
+
{"type": "number"},
|
|
275
|
+
{"type": "string"},
|
|
276
|
+
{"type": "boolean"},
|
|
277
|
+
{"type": "array"}
|
|
278
|
+
]
|
|
279
|
+
},
|
|
280
|
+
"comparison": {
|
|
281
|
+
"type": "string",
|
|
282
|
+
"enum": ["eq", "ne", "gt", "gte", "lt", "lte", "in", "not_in", "contains"],
|
|
283
|
+
"description": "Comparison operator",
|
|
284
|
+
"default": "gte"
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"remediation": {
|
|
289
|
+
"type": "string",
|
|
290
|
+
"description": "Suggested remediation for violation"
|
|
291
|
+
},
|
|
292
|
+
"autoFix": {
|
|
293
|
+
"type": "boolean",
|
|
294
|
+
"description": "Whether violation can be auto-fixed",
|
|
295
|
+
"default": false
|
|
296
|
+
},
|
|
297
|
+
"applicableToStepTypes": {
|
|
298
|
+
"type": "array",
|
|
299
|
+
"description": "Step types this rule applies to",
|
|
300
|
+
"items": {
|
|
301
|
+
"type": "string"
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
"tags": {
|
|
305
|
+
"type": "array",
|
|
306
|
+
"description": "Rule tags for categorization",
|
|
307
|
+
"items": {
|
|
308
|
+
"type": "string"
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"examples": [
|
|
315
|
+
{
|
|
316
|
+
"reasoningCompliance": {
|
|
317
|
+
"enabled": true,
|
|
318
|
+
"standard": "ossa_v2",
|
|
319
|
+
"rules": [
|
|
320
|
+
{
|
|
321
|
+
"ruleId": "min-steps-required",
|
|
322
|
+
"name": "Minimum Steps Required",
|
|
323
|
+
"description": "Reasoning chains must have at least 3 steps for adequate traceability",
|
|
324
|
+
"severity": "warning",
|
|
325
|
+
"category": "step_completeness",
|
|
326
|
+
"condition": {
|
|
327
|
+
"type": "min_steps",
|
|
328
|
+
"value": 3,
|
|
329
|
+
"comparison": "gte"
|
|
330
|
+
},
|
|
331
|
+
"remediation": "Add more reasoning steps to improve transparency and auditability"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"ruleId": "attention-weights-required",
|
|
335
|
+
"name": "Attention Weights Required",
|
|
336
|
+
"description": "All reasoning steps must include attention weight tracking",
|
|
337
|
+
"severity": "critical",
|
|
338
|
+
"category": "attention_quality",
|
|
339
|
+
"condition": {
|
|
340
|
+
"type": "attention_required",
|
|
341
|
+
"value": true,
|
|
342
|
+
"comparison": "eq"
|
|
343
|
+
},
|
|
344
|
+
"remediation": "Add attention mechanism to all reasoning steps"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"ruleId": "min-confidence-threshold",
|
|
348
|
+
"name": "Minimum Confidence Threshold",
|
|
349
|
+
"description": "Reasoning steps must maintain minimum confidence level",
|
|
350
|
+
"severity": "error",
|
|
351
|
+
"category": "confidence_threshold",
|
|
352
|
+
"condition": {
|
|
353
|
+
"type": "min_confidence",
|
|
354
|
+
"value": 0.5,
|
|
355
|
+
"comparison": "gte"
|
|
356
|
+
},
|
|
357
|
+
"remediation": "Review and improve reasoning quality to meet confidence threshold"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"ruleId": "dependency-declaration",
|
|
361
|
+
"name": "Dependency Declaration Required",
|
|
362
|
+
"description": "Non-initial steps must declare dependencies on previous steps",
|
|
363
|
+
"severity": "warning",
|
|
364
|
+
"category": "dependency_integrity",
|
|
365
|
+
"condition": {
|
|
366
|
+
"type": "dependency_required",
|
|
367
|
+
"value": true,
|
|
368
|
+
"comparison": "eq"
|
|
369
|
+
},
|
|
370
|
+
"remediation": "Add explicit dependencies to maintain reasoning chain integrity"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"ruleId": "explanation-min-length",
|
|
374
|
+
"name": "Explanation Minimum Length",
|
|
375
|
+
"description": "Reasoning explanations must be sufficiently detailed",
|
|
376
|
+
"severity": "warning",
|
|
377
|
+
"category": "transparency",
|
|
378
|
+
"condition": {
|
|
379
|
+
"type": "explanation_length",
|
|
380
|
+
"value": 20,
|
|
381
|
+
"comparison": "gte"
|
|
382
|
+
},
|
|
383
|
+
"remediation": "Provide more detailed reasoning explanations"
|
|
384
|
+
}
|
|
385
|
+
],
|
|
386
|
+
"attentionTracking": {
|
|
387
|
+
"required": true,
|
|
388
|
+
"mechanisms": ["gqa", "flash_v3", "hybrid"],
|
|
389
|
+
"minimumHeads": 4,
|
|
390
|
+
"trackingFrequency": "every_step"
|
|
391
|
+
},
|
|
392
|
+
"auditTrail": {
|
|
393
|
+
"enabled": true,
|
|
394
|
+
"storageBackend": "neo4j",
|
|
395
|
+
"retentionDays": 90,
|
|
396
|
+
"immutable": true,
|
|
397
|
+
"checksumAlgorithm": "sha256"
|
|
398
|
+
},
|
|
399
|
+
"chainRequirements": {
|
|
400
|
+
"minimumSteps": 3,
|
|
401
|
+
"maximumSteps": 50,
|
|
402
|
+
"requiredStepTypes": ["observation", "analysis", "decision"],
|
|
403
|
+
"minimumConfidence": 0.5,
|
|
404
|
+
"requireDependencies": true
|
|
405
|
+
},
|
|
406
|
+
"transparencyRequirements": {
|
|
407
|
+
"requireExplanations": true,
|
|
408
|
+
"minimumExplanationLength": 20,
|
|
409
|
+
"exposeAttentionWeights": true,
|
|
410
|
+
"requireVisualization": false
|
|
411
|
+
},
|
|
412
|
+
"correlationRequirements": {
|
|
413
|
+
"enableCrossChainTracking": true,
|
|
414
|
+
"minimumCorrelationScore": 0.7,
|
|
415
|
+
"detectAnomalies": true,
|
|
416
|
+
"anomalySeverityThreshold": "medium"
|
|
417
|
+
},
|
|
418
|
+
"validationTriggers": ["on_completion", "real_time"],
|
|
419
|
+
"enforcementLevel": "strict"
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
]
|
|
423
|
+
}
|
|
424
|
+
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
# OSSA v0.2.3 Release Notes
|
|
2
|
+
|
|
3
|
+
**Release Date**: 2025-11-12
|
|
4
|
+
**Type**: Patch Release (Documentation & Examples)
|
|
5
|
+
**Status**: Production Ready
|
|
6
|
+
|
|
7
|
+
## Overview
|
|
8
|
+
|
|
9
|
+
OSSA v0.2.3 is a documentation-focused patch release that enhances examples, improves migration guides, and prepares the package for npm publication. The schema remains unchanged from v0.2.2, ensuring full backward compatibility.
|
|
10
|
+
|
|
11
|
+
## What's New
|
|
12
|
+
|
|
13
|
+
### Documentation Improvements
|
|
14
|
+
|
|
15
|
+
#### ✅ Enhanced Examples
|
|
16
|
+
- Added comprehensive inline documentation to 10 priority examples
|
|
17
|
+
- Annotated kAgent examples with best practices
|
|
18
|
+
- Improved getting-started guides with step-by-step instructions
|
|
19
|
+
- Added production-ready enterprise agent examples
|
|
20
|
+
|
|
21
|
+
#### ✅ Migration Guides (6 Frameworks)
|
|
22
|
+
- **LangChain → OSSA**: Complete migration workflow with code examples
|
|
23
|
+
- **CrewAI → OSSA**: Multi-agent orchestration patterns
|
|
24
|
+
- **OpenAI Agents SDK → OSSA**: Assistants API conversion
|
|
25
|
+
- **Anthropic MCP → OSSA**: Model Context Protocol bridge
|
|
26
|
+
- **Langflow → OSSA**: Visual flow-to-manifest conversion
|
|
27
|
+
- **Drupal ECA → OSSA**: Event-Condition-Action migration
|
|
28
|
+
|
|
29
|
+
#### ✅ GitLab Wiki Integration
|
|
30
|
+
- Migrated documentation to GitLab wiki
|
|
31
|
+
- Added issue templates for standardized reporting
|
|
32
|
+
- Created milestone tracking system
|
|
33
|
+
- Integrated CI/CD documentation
|
|
34
|
+
|
|
35
|
+
#### ✅ OpenAPI Extensions Documentation
|
|
36
|
+
- Documented x-ossa-agent extension
|
|
37
|
+
- Added x-ossa-manifest reference guide
|
|
38
|
+
- Explained framework-specific extensions
|
|
39
|
+
- Provided OpenAPI spec generation examples
|
|
40
|
+
|
|
41
|
+
### Examples & Templates
|
|
42
|
+
|
|
43
|
+
#### New Examples
|
|
44
|
+
- `examples/kagent/README.md` - kAgent integration guide
|
|
45
|
+
- `examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml`
|
|
46
|
+
- `examples/production/enterprise-agent.ossa.yaml`
|
|
47
|
+
|
|
48
|
+
#### Updated Examples
|
|
49
|
+
All kagent examples updated with:
|
|
50
|
+
- Detailed inline comments
|
|
51
|
+
- Best practice annotations
|
|
52
|
+
- Real-world use cases
|
|
53
|
+
- Troubleshooting tips
|
|
54
|
+
|
|
55
|
+
### Build & Infrastructure
|
|
56
|
+
|
|
57
|
+
#### ✅ npm Publishing Preparation
|
|
58
|
+
- Package configured for public npm registry
|
|
59
|
+
- Build artifacts optimized
|
|
60
|
+
- Dependencies audited and updated
|
|
61
|
+
- prepublishOnly hooks configured
|
|
62
|
+
|
|
63
|
+
#### ✅ CI/CD Improvements
|
|
64
|
+
- Consolidated GitLab CI/CD pipeline
|
|
65
|
+
- Added comprehensive test coverage reports
|
|
66
|
+
- Implemented security audit checks
|
|
67
|
+
- Configured manual release triggers
|
|
68
|
+
|
|
69
|
+
## Breaking Changes
|
|
70
|
+
|
|
71
|
+
**None** - This release is fully backward compatible with v0.2.2.
|
|
72
|
+
|
|
73
|
+
## Deprecations
|
|
74
|
+
|
|
75
|
+
**None**
|
|
76
|
+
|
|
77
|
+
## Bug Fixes
|
|
78
|
+
|
|
79
|
+
- Fixed schema validation for edge cases
|
|
80
|
+
- Corrected example formatting inconsistencies
|
|
81
|
+
- Updated broken documentation links
|
|
82
|
+
- Resolved CI pipeline configuration issues
|
|
83
|
+
|
|
84
|
+
## Schema Changes
|
|
85
|
+
|
|
86
|
+
**No schema changes** - v0.2.3 schema is identical to v0.2.2 with updated version metadata only.
|
|
87
|
+
|
|
88
|
+
## Migration from v0.2.2
|
|
89
|
+
|
|
90
|
+
### Required Changes
|
|
91
|
+
**None** - Simply update your `apiVersion` field (optional):
|
|
92
|
+
|
|
93
|
+
```yaml
|
|
94
|
+
# Both versions work identically
|
|
95
|
+
apiVersion: ossa/v0.2.2 # Still valid
|
|
96
|
+
apiVersion: ossa/v0.2.3 # Recommended
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Recommended Changes
|
|
100
|
+
1. Review new migration guides if integrating with frameworks
|
|
101
|
+
2. Update documentation references to use v0.2.3
|
|
102
|
+
3. Check out new examples for best practices
|
|
103
|
+
|
|
104
|
+
See [migrations/v0.2.2-to-v0.2.3.md](migrations/v0.2.2-to-v0.2.3.md) for detailed migration guide.
|
|
105
|
+
|
|
106
|
+
## Installation
|
|
107
|
+
|
|
108
|
+
### npm (Recommended)
|
|
109
|
+
```bash
|
|
110
|
+
npm install -g @bluefly/open-standards-scalable-agents@0.2.3
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
### GitLab Package Registry
|
|
114
|
+
```bash
|
|
115
|
+
npm install --registry=https://gitlab.bluefly.io/api/v4/projects/PROJECT_ID/packages/npm/ @bluefly/open-standards-scalable-agents@0.2.3
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### Verify Installation
|
|
119
|
+
```bash
|
|
120
|
+
ossa --version
|
|
121
|
+
# Output: 0.2.3
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
## Compatibility
|
|
125
|
+
|
|
126
|
+
| Component | Version | Status |
|
|
127
|
+
|-----------|---------|--------|
|
|
128
|
+
| Node.js | >=18.0.0 | ✅ Required |
|
|
129
|
+
| npm | >=9.0.0 | ✅ Required |
|
|
130
|
+
| kAgent | v1alpha1 | ✅ Full support |
|
|
131
|
+
| Drupal | 11.x, 10.x | ✅ Full support |
|
|
132
|
+
| OpenAI SDK | v2.x | ✅ Full support |
|
|
133
|
+
| LangChain | v0.3.x | ✅ Full support |
|
|
134
|
+
| CrewAI | v0.11.x | ✅ Full support |
|
|
135
|
+
| MCP | Latest | ✅ Full support |
|
|
136
|
+
|
|
137
|
+
## Known Issues
|
|
138
|
+
|
|
139
|
+
**None** - All tests passing (67/67)
|
|
140
|
+
|
|
141
|
+
## Security
|
|
142
|
+
|
|
143
|
+
- ⚠️ **4 moderate vulnerabilities** in semantic-release dependency chain
|
|
144
|
+
- Impact: Dev dependencies only (not production runtime)
|
|
145
|
+
- Status: Monitoring upstream for fixes
|
|
146
|
+
- Workaround: Not required for normal usage
|
|
147
|
+
|
|
148
|
+
## Contributors
|
|
149
|
+
|
|
150
|
+
- Full git cleanup and version standardization
|
|
151
|
+
- Documentation migration to GitLab wiki
|
|
152
|
+
- CI/CD pipeline consolidation
|
|
153
|
+
- npm publishing preparation
|
|
154
|
+
|
|
155
|
+
## Next Steps (v0.3.0 Planned)
|
|
156
|
+
|
|
157
|
+
### Gamma Release Roadmap
|
|
158
|
+
- [ ] Enhanced validation rules
|
|
159
|
+
- [ ] Additional framework extensions
|
|
160
|
+
- [ ] Performance optimizations
|
|
161
|
+
- [ ] Extended examples library
|
|
162
|
+
- [ ] Agent marketplace integration
|
|
163
|
+
|
|
164
|
+
## Support
|
|
165
|
+
|
|
166
|
+
- **Documentation**: https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/-/wikis/home
|
|
167
|
+
- **Issues**: https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/-/issues
|
|
168
|
+
- **Examples**: https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/-/tree/main/examples
|
|
169
|
+
|
|
170
|
+
## Acknowledgments
|
|
171
|
+
|
|
172
|
+
Special thanks to the OSSA community for feedback and contributions!
|
|
173
|
+
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
**Full Changelog**: [v0.2.2...v0.2.3](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/compare/v0.2.2...v0.2.3)
|