@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,171 @@
|
|
|
1
|
+
# Changelog - OSSA v0.2.5-dev
|
|
2
|
+
|
|
3
|
+
All notable changes to the OSSA specification are documented in this file.
|
|
4
|
+
|
|
5
|
+
## [0.2.5-dev] - 2024-11-18
|
|
6
|
+
|
|
7
|
+
### Status: DEVELOPMENT/UNSTABLE
|
|
8
|
+
|
|
9
|
+
This is a development version. The API may change without notice.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
#### New Resource Type: AgentGraph
|
|
14
|
+
- Introduced `AgentGraph` kind for multi-agent composition
|
|
15
|
+
- Support for defining complex agent workflows and orchestration patterns
|
|
16
|
+
- Shared state management across agent graphs
|
|
17
|
+
|
|
18
|
+
#### AgentGraphSpec Properties
|
|
19
|
+
- `agents`: Array of agent references with role assignments
|
|
20
|
+
- `edges`: Graph connections with conditions and priorities
|
|
21
|
+
- `process`: Execution pattern (sequential, parallel, hierarchical, conditional, loop)
|
|
22
|
+
- `entry_point`: Starting agent for graph execution
|
|
23
|
+
- `exit_points`: Agents that can terminate execution
|
|
24
|
+
- `state`: Shared state configuration with persistence options
|
|
25
|
+
|
|
26
|
+
#### Execution Patterns
|
|
27
|
+
- **sequential**: Agents execute one after another
|
|
28
|
+
- **parallel**: Agents execute simultaneously
|
|
29
|
+
- **hierarchical**: Manager delegates to workers (CrewAI style)
|
|
30
|
+
- **conditional**: Branching based on conditions
|
|
31
|
+
- **loop**: Iterative execution until termination
|
|
32
|
+
|
|
33
|
+
#### New Framework Extensions
|
|
34
|
+
- `google_adk`: Google Agent Development Kit integration
|
|
35
|
+
- Support for SequentialAgent, ParallelAgent, LoopAgent
|
|
36
|
+
- Gemini model configuration
|
|
37
|
+
- Session service options
|
|
38
|
+
- `microsoft_af`: Microsoft AutoGen 0.4+ / Magentic-One
|
|
39
|
+
- Team types: round_robin, selector, swarm, magentic_one
|
|
40
|
+
- Agent types: assistant, orchestrator, web_surfer, coder
|
|
41
|
+
- Termination conditions
|
|
42
|
+
- `metagpt`: MetaGPT software development teams
|
|
43
|
+
- Role types: product_manager, architect, engineer, qa_engineer
|
|
44
|
+
- SOP (Standard Operating Procedure) configuration
|
|
45
|
+
- Action definitions
|
|
46
|
+
|
|
47
|
+
#### Enhanced Existing Extensions
|
|
48
|
+
- `crewai`: Added `crew` property for Process configuration
|
|
49
|
+
- Process type (sequential/hierarchical)
|
|
50
|
+
- Manager LLM configuration
|
|
51
|
+
- Verbose mode
|
|
52
|
+
|
|
53
|
+
### Changed
|
|
54
|
+
|
|
55
|
+
#### Schema Updates
|
|
56
|
+
- `kind` enum now includes: `Agent`, `AgentGraph`
|
|
57
|
+
- `spec` uses `oneOf` to support AgentSpec or AgentGraphSpec
|
|
58
|
+
- `apiVersion` pattern updated to support v0.2.5-dev
|
|
59
|
+
|
|
60
|
+
#### API Version Pattern
|
|
61
|
+
```regex
|
|
62
|
+
^ossa/v(0\.2\.[2-5]|1)(\.[0-9]+)?(-[a-zA-Z0-9]+)?$
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### Framework Mapping Examples
|
|
66
|
+
|
|
67
|
+
#### CrewAI Crews
|
|
68
|
+
```yaml
|
|
69
|
+
apiVersion: ossa/v0.2.5-dev
|
|
70
|
+
kind: AgentGraph
|
|
71
|
+
metadata:
|
|
72
|
+
name: research-crew
|
|
73
|
+
spec:
|
|
74
|
+
process: hierarchical
|
|
75
|
+
agents:
|
|
76
|
+
- ref: researcher
|
|
77
|
+
role: worker
|
|
78
|
+
- ref: writer
|
|
79
|
+
role: worker
|
|
80
|
+
extensions:
|
|
81
|
+
crewai:
|
|
82
|
+
enabled: true
|
|
83
|
+
crew:
|
|
84
|
+
process: hierarchical
|
|
85
|
+
manager_llm: gpt-4
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
#### Google ADK Sequential
|
|
89
|
+
```yaml
|
|
90
|
+
apiVersion: ossa/v0.2.5-dev
|
|
91
|
+
kind: AgentGraph
|
|
92
|
+
metadata:
|
|
93
|
+
name: processing-pipeline
|
|
94
|
+
spec:
|
|
95
|
+
process: sequential
|
|
96
|
+
agents:
|
|
97
|
+
- ref: intake
|
|
98
|
+
- ref: process
|
|
99
|
+
- ref: output
|
|
100
|
+
extensions:
|
|
101
|
+
google_adk:
|
|
102
|
+
enabled: true
|
|
103
|
+
agent_type: sequential_agent
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
#### Microsoft AutoGen Team
|
|
107
|
+
```yaml
|
|
108
|
+
apiVersion: ossa/v0.2.5-dev
|
|
109
|
+
kind: AgentGraph
|
|
110
|
+
metadata:
|
|
111
|
+
name: dev-team
|
|
112
|
+
spec:
|
|
113
|
+
process: conditional
|
|
114
|
+
agents:
|
|
115
|
+
- ref: orchestrator
|
|
116
|
+
- ref: coder
|
|
117
|
+
- ref: web-surfer
|
|
118
|
+
extensions:
|
|
119
|
+
microsoft_af:
|
|
120
|
+
enabled: true
|
|
121
|
+
framework: magentic_one
|
|
122
|
+
team_type: magentic_one
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
#### MetaGPT SOP
|
|
126
|
+
```yaml
|
|
127
|
+
apiVersion: ossa/v0.2.5-dev
|
|
128
|
+
kind: AgentGraph
|
|
129
|
+
metadata:
|
|
130
|
+
name: software-team
|
|
131
|
+
spec:
|
|
132
|
+
process: hierarchical
|
|
133
|
+
agents:
|
|
134
|
+
- ref: product-manager
|
|
135
|
+
- ref: architect
|
|
136
|
+
- ref: engineer
|
|
137
|
+
extensions:
|
|
138
|
+
metagpt:
|
|
139
|
+
enabled: true
|
|
140
|
+
sop:
|
|
141
|
+
name: software_development
|
|
142
|
+
phases:
|
|
143
|
+
- requirements
|
|
144
|
+
- design
|
|
145
|
+
- implementation
|
|
146
|
+
- testing
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
### Migration Notes
|
|
150
|
+
|
|
151
|
+
See `migrations/v0.2.4-to-v0.2.5.md` for detailed migration guidance.
|
|
152
|
+
|
|
153
|
+
#### Quick Migration
|
|
154
|
+
1. Update `apiVersion` to `ossa/v0.2.5-dev`
|
|
155
|
+
2. Existing Agent manifests remain unchanged
|
|
156
|
+
3. New AgentGraph manifests use `kind: AgentGraph`
|
|
157
|
+
|
|
158
|
+
### Known Limitations
|
|
159
|
+
- Graph validation is not fully implemented
|
|
160
|
+
- Some framework mappings may require manual configuration
|
|
161
|
+
- State persistence options are runtime-dependent
|
|
162
|
+
|
|
163
|
+
### Roadmap
|
|
164
|
+
- v0.2.5: Stabilize AgentGraph API based on feedback
|
|
165
|
+
- v0.2.6: Add resource dependencies and imports
|
|
166
|
+
- v0.3.0: Multi-file manifest support
|
|
167
|
+
- v1.0.0: Stable release
|
|
168
|
+
|
|
169
|
+
### Feedback
|
|
170
|
+
Report issues and feedback at:
|
|
171
|
+
https://gitlab.bluefly.io/llm/ossa/-/issues
|
|
@@ -0,0 +1,362 @@
|
|
|
1
|
+
# Customer Support Agent Graph - Sequential Process
|
|
2
|
+
# OSSA v0.2.5-dev Example
|
|
3
|
+
#
|
|
4
|
+
# This example demonstrates a sequential customer support workflow
|
|
5
|
+
# where requests flow through triage, specialist, and response agents.
|
|
6
|
+
|
|
7
|
+
apiVersion: ossa/v0.2.5-dev
|
|
8
|
+
kind: AgentGraph
|
|
9
|
+
metadata:
|
|
10
|
+
name: customer-support-workflow
|
|
11
|
+
version: "1.0.0"
|
|
12
|
+
description: |
|
|
13
|
+
Multi-agent customer support system that handles incoming
|
|
14
|
+
requests through triage, routes to specialists, and generates
|
|
15
|
+
professional responses.
|
|
16
|
+
labels:
|
|
17
|
+
domain: customer-support
|
|
18
|
+
process: sequential
|
|
19
|
+
framework: production
|
|
20
|
+
annotations:
|
|
21
|
+
ossa.io/maintainer: "support-team"
|
|
22
|
+
ossa.io/sla: "< 30 seconds"
|
|
23
|
+
|
|
24
|
+
spec:
|
|
25
|
+
# Sequential execution - agents run one after another
|
|
26
|
+
process: sequential
|
|
27
|
+
|
|
28
|
+
# Entry and exit points
|
|
29
|
+
entry_point: triage-agent
|
|
30
|
+
exit_points:
|
|
31
|
+
- response-agent
|
|
32
|
+
|
|
33
|
+
# Agent references
|
|
34
|
+
agents:
|
|
35
|
+
- ref: triage-agent
|
|
36
|
+
role: classifier
|
|
37
|
+
config:
|
|
38
|
+
priority_threshold: 0.8
|
|
39
|
+
|
|
40
|
+
- ref: technical-specialist
|
|
41
|
+
role: specialist
|
|
42
|
+
config:
|
|
43
|
+
domain: technical
|
|
44
|
+
|
|
45
|
+
- ref: billing-specialist
|
|
46
|
+
role: specialist
|
|
47
|
+
config:
|
|
48
|
+
domain: billing
|
|
49
|
+
|
|
50
|
+
- ref: general-specialist
|
|
51
|
+
role: specialist
|
|
52
|
+
config:
|
|
53
|
+
domain: general
|
|
54
|
+
|
|
55
|
+
- ref: response-agent
|
|
56
|
+
role: responder
|
|
57
|
+
config:
|
|
58
|
+
tone: professional
|
|
59
|
+
max_length: 500
|
|
60
|
+
|
|
61
|
+
# Edges define the flow between agents
|
|
62
|
+
edges:
|
|
63
|
+
# Triage routes to appropriate specialist
|
|
64
|
+
- from: triage-agent
|
|
65
|
+
to: technical-specialist
|
|
66
|
+
condition: "classification.category == 'technical'"
|
|
67
|
+
priority: 1
|
|
68
|
+
|
|
69
|
+
- from: triage-agent
|
|
70
|
+
to: billing-specialist
|
|
71
|
+
condition: "classification.category == 'billing'"
|
|
72
|
+
priority: 1
|
|
73
|
+
|
|
74
|
+
- from: triage-agent
|
|
75
|
+
to: general-specialist
|
|
76
|
+
condition: "classification.category == 'general' || !classification.category"
|
|
77
|
+
priority: 0
|
|
78
|
+
|
|
79
|
+
# All specialists route to response agent
|
|
80
|
+
- from: technical-specialist
|
|
81
|
+
to: response-agent
|
|
82
|
+
transform: "{ solution: output.solution, confidence: output.confidence }"
|
|
83
|
+
|
|
84
|
+
- from: billing-specialist
|
|
85
|
+
to: response-agent
|
|
86
|
+
transform: "{ solution: output.solution, confidence: output.confidence }"
|
|
87
|
+
|
|
88
|
+
- from: general-specialist
|
|
89
|
+
to: response-agent
|
|
90
|
+
transform: "{ solution: output.solution, confidence: output.confidence }"
|
|
91
|
+
|
|
92
|
+
# Shared state across the workflow
|
|
93
|
+
state:
|
|
94
|
+
schema:
|
|
95
|
+
type: object
|
|
96
|
+
properties:
|
|
97
|
+
ticket_id:
|
|
98
|
+
type: string
|
|
99
|
+
customer_id:
|
|
100
|
+
type: string
|
|
101
|
+
classification:
|
|
102
|
+
type: object
|
|
103
|
+
properties:
|
|
104
|
+
category:
|
|
105
|
+
type: string
|
|
106
|
+
enum: [technical, billing, general]
|
|
107
|
+
priority:
|
|
108
|
+
type: string
|
|
109
|
+
enum: [low, medium, high, urgent]
|
|
110
|
+
confidence:
|
|
111
|
+
type: number
|
|
112
|
+
solution:
|
|
113
|
+
type: object
|
|
114
|
+
response:
|
|
115
|
+
type: string
|
|
116
|
+
metrics:
|
|
117
|
+
type: object
|
|
118
|
+
properties:
|
|
119
|
+
start_time:
|
|
120
|
+
type: string
|
|
121
|
+
format: date-time
|
|
122
|
+
end_time:
|
|
123
|
+
type: string
|
|
124
|
+
format: date-time
|
|
125
|
+
total_tokens:
|
|
126
|
+
type: integer
|
|
127
|
+
initial:
|
|
128
|
+
classification: {}
|
|
129
|
+
solution: {}
|
|
130
|
+
metrics: {}
|
|
131
|
+
persistence: redis
|
|
132
|
+
|
|
133
|
+
# Observability for the entire graph
|
|
134
|
+
observability:
|
|
135
|
+
tracing:
|
|
136
|
+
enabled: true
|
|
137
|
+
exporter: otlp
|
|
138
|
+
endpoint: "http://jaeger:4317"
|
|
139
|
+
metrics:
|
|
140
|
+
enabled: true
|
|
141
|
+
exporter: prometheus
|
|
142
|
+
endpoint: "http://prometheus:9090"
|
|
143
|
+
logging:
|
|
144
|
+
level: info
|
|
145
|
+
format: json
|
|
146
|
+
|
|
147
|
+
# Constraints for the entire workflow
|
|
148
|
+
constraints:
|
|
149
|
+
performance:
|
|
150
|
+
maxLatencySeconds: 30
|
|
151
|
+
timeoutSeconds: 60
|
|
152
|
+
cost:
|
|
153
|
+
maxTokensPerRequest: 8000
|
|
154
|
+
|
|
155
|
+
# Framework-specific extensions
|
|
156
|
+
extensions:
|
|
157
|
+
# LangGraph implementation
|
|
158
|
+
langgraph:
|
|
159
|
+
enabled: true
|
|
160
|
+
graph_name: customer_support_graph
|
|
161
|
+
state_schema:
|
|
162
|
+
type: object
|
|
163
|
+
required: [messages, classification]
|
|
164
|
+
nodes:
|
|
165
|
+
- name: triage
|
|
166
|
+
function: triage_node
|
|
167
|
+
- name: technical
|
|
168
|
+
function: technical_node
|
|
169
|
+
- name: billing
|
|
170
|
+
function: billing_node
|
|
171
|
+
- name: general
|
|
172
|
+
function: general_node
|
|
173
|
+
- name: respond
|
|
174
|
+
function: respond_node
|
|
175
|
+
edges:
|
|
176
|
+
- from: triage
|
|
177
|
+
to: technical
|
|
178
|
+
condition: route_to_technical
|
|
179
|
+
- from: triage
|
|
180
|
+
to: billing
|
|
181
|
+
condition: route_to_billing
|
|
182
|
+
- from: triage
|
|
183
|
+
to: general
|
|
184
|
+
condition: route_to_general
|
|
185
|
+
- from: technical
|
|
186
|
+
to: respond
|
|
187
|
+
- from: billing
|
|
188
|
+
to: respond
|
|
189
|
+
- from: general
|
|
190
|
+
to: respond
|
|
191
|
+
checkpoint:
|
|
192
|
+
enabled: true
|
|
193
|
+
type: postgres
|
|
194
|
+
|
|
195
|
+
# OpenAI Agents implementation
|
|
196
|
+
openai_agents:
|
|
197
|
+
enabled: true
|
|
198
|
+
agent_id: customer-support-orchestrator
|
|
199
|
+
model: gpt-4o
|
|
200
|
+
sub_agents:
|
|
201
|
+
- agent_id: triage
|
|
202
|
+
ossa_agent_ref: triage-agent
|
|
203
|
+
handoff_conditions:
|
|
204
|
+
- "Request needs classification"
|
|
205
|
+
- agent_id: tech-support
|
|
206
|
+
ossa_agent_ref: technical-specialist
|
|
207
|
+
handoff_conditions:
|
|
208
|
+
- "Technical issue detected"
|
|
209
|
+
- agent_id: billing-support
|
|
210
|
+
ossa_agent_ref: billing-specialist
|
|
211
|
+
handoff_conditions:
|
|
212
|
+
- "Billing question detected"
|
|
213
|
+
guardrails:
|
|
214
|
+
enabled: true
|
|
215
|
+
max_tool_calls: 10
|
|
216
|
+
timeout_seconds: 60
|
|
217
|
+
|
|
218
|
+
# Microsoft AutoGen implementation
|
|
219
|
+
microsoft_af:
|
|
220
|
+
enabled: true
|
|
221
|
+
framework: autogen_v0.4
|
|
222
|
+
team_type: selector
|
|
223
|
+
termination:
|
|
224
|
+
type: text_mention
|
|
225
|
+
condition: "CUSTOMER_RESPONSE_READY"
|
|
226
|
+
|
|
227
|
+
---
|
|
228
|
+
# Individual agent definitions can be in separate files
|
|
229
|
+
# Below are inline definitions for completeness
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
apiVersion: ossa/v0.2.5-dev
|
|
233
|
+
kind: Agent
|
|
234
|
+
metadata:
|
|
235
|
+
name: triage-agent
|
|
236
|
+
description: "Classifies incoming customer requests"
|
|
237
|
+
spec:
|
|
238
|
+
role: |
|
|
239
|
+
You are a customer support triage specialist. Analyze incoming
|
|
240
|
+
customer requests and classify them by:
|
|
241
|
+
1. Category: technical, billing, or general
|
|
242
|
+
2. Priority: low, medium, high, urgent
|
|
243
|
+
3. Sentiment: positive, neutral, negative
|
|
244
|
+
|
|
245
|
+
Output a JSON classification object.
|
|
246
|
+
llm:
|
|
247
|
+
provider: openai
|
|
248
|
+
model: gpt-4o-mini
|
|
249
|
+
temperature: 0.1
|
|
250
|
+
autonomy:
|
|
251
|
+
level: autonomous
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
apiVersion: ossa/v0.2.5-dev
|
|
255
|
+
kind: Agent
|
|
256
|
+
metadata:
|
|
257
|
+
name: technical-specialist
|
|
258
|
+
description: "Handles technical support issues"
|
|
259
|
+
spec:
|
|
260
|
+
role: |
|
|
261
|
+
You are a technical support specialist. Given a classified
|
|
262
|
+
technical issue, provide:
|
|
263
|
+
1. Root cause analysis
|
|
264
|
+
2. Step-by-step solution
|
|
265
|
+
3. Prevention recommendations
|
|
266
|
+
|
|
267
|
+
Be thorough but concise.
|
|
268
|
+
llm:
|
|
269
|
+
provider: anthropic
|
|
270
|
+
model: claude-3-5-sonnet-20241022
|
|
271
|
+
temperature: 0.3
|
|
272
|
+
tools:
|
|
273
|
+
- type: mcp
|
|
274
|
+
server: knowledge-base
|
|
275
|
+
capabilities:
|
|
276
|
+
- search_documentation
|
|
277
|
+
- get_known_issues
|
|
278
|
+
autonomy:
|
|
279
|
+
level: autonomous
|
|
280
|
+
|
|
281
|
+
---
|
|
282
|
+
apiVersion: ossa/v0.2.5-dev
|
|
283
|
+
kind: Agent
|
|
284
|
+
metadata:
|
|
285
|
+
name: billing-specialist
|
|
286
|
+
description: "Handles billing inquiries"
|
|
287
|
+
spec:
|
|
288
|
+
role: |
|
|
289
|
+
You are a billing specialist. Handle billing inquiries by:
|
|
290
|
+
1. Identifying the specific billing concern
|
|
291
|
+
2. Providing accurate account information
|
|
292
|
+
3. Explaining charges or credits
|
|
293
|
+
4. Offering resolution options
|
|
294
|
+
|
|
295
|
+
Always verify account details before sharing sensitive information.
|
|
296
|
+
llm:
|
|
297
|
+
provider: openai
|
|
298
|
+
model: gpt-4o
|
|
299
|
+
temperature: 0.2
|
|
300
|
+
tools:
|
|
301
|
+
- type: http
|
|
302
|
+
name: billing-api
|
|
303
|
+
endpoint: "https://api.internal/billing"
|
|
304
|
+
capabilities:
|
|
305
|
+
- get_account_details
|
|
306
|
+
- get_invoice_history
|
|
307
|
+
- apply_credit
|
|
308
|
+
autonomy:
|
|
309
|
+
level: supervised
|
|
310
|
+
approval_required: true
|
|
311
|
+
allowed_actions:
|
|
312
|
+
- get_account_details
|
|
313
|
+
- get_invoice_history
|
|
314
|
+
blocked_actions:
|
|
315
|
+
- apply_credit
|
|
316
|
+
|
|
317
|
+
---
|
|
318
|
+
apiVersion: ossa/v0.2.5-dev
|
|
319
|
+
kind: Agent
|
|
320
|
+
metadata:
|
|
321
|
+
name: general-specialist
|
|
322
|
+
description: "Handles general inquiries"
|
|
323
|
+
spec:
|
|
324
|
+
role: |
|
|
325
|
+
You are a general customer support agent. Handle inquiries that
|
|
326
|
+
don't fit technical or billing categories:
|
|
327
|
+
1. Product information
|
|
328
|
+
2. Account management
|
|
329
|
+
3. General questions
|
|
330
|
+
4. Feedback collection
|
|
331
|
+
|
|
332
|
+
Be helpful, friendly, and thorough.
|
|
333
|
+
llm:
|
|
334
|
+
provider: openai
|
|
335
|
+
model: gpt-4o-mini
|
|
336
|
+
temperature: 0.5
|
|
337
|
+
autonomy:
|
|
338
|
+
level: autonomous
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
apiVersion: ossa/v0.2.5-dev
|
|
342
|
+
kind: Agent
|
|
343
|
+
metadata:
|
|
344
|
+
name: response-agent
|
|
345
|
+
description: "Generates final customer responses"
|
|
346
|
+
spec:
|
|
347
|
+
role: |
|
|
348
|
+
You are a customer communication specialist. Given a solution
|
|
349
|
+
from a specialist agent, craft a professional customer response:
|
|
350
|
+
1. Address the customer by name if available
|
|
351
|
+
2. Acknowledge their concern
|
|
352
|
+
3. Provide the solution clearly
|
|
353
|
+
4. Offer additional assistance
|
|
354
|
+
5. Close professionally
|
|
355
|
+
|
|
356
|
+
Maintain a warm but professional tone.
|
|
357
|
+
llm:
|
|
358
|
+
provider: openai
|
|
359
|
+
model: gpt-4o
|
|
360
|
+
temperature: 0.7
|
|
361
|
+
autonomy:
|
|
362
|
+
level: autonomous
|