@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,155 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Installation"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Installation Guide
|
|
6
|
+
|
|
7
|
+
Install OSSA CLI and get ready to create your first agent.
|
|
8
|
+
|
|
9
|
+
## Prerequisites
|
|
10
|
+
|
|
11
|
+
- **Node.js** 18+ (for OSSA CLI)
|
|
12
|
+
- **npm** or **yarn** package manager
|
|
13
|
+
- Basic familiarity with YAML/JSON
|
|
14
|
+
|
|
15
|
+
## Installation Methods
|
|
16
|
+
|
|
17
|
+
### Method 1: Global Installation (Recommended)
|
|
18
|
+
|
|
19
|
+
Install OSSA CLI globally for use across all projects:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install -g @bluefly/openstandardagents
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Verify installation:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
ossa --version
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Method 2: Local Installation
|
|
32
|
+
|
|
33
|
+
Install in a specific project:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npm install --save-dev @bluefly/openstandardagents
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Use via npx:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
npx ossa --version
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Method 3: Using agent-buildkit (Production)
|
|
46
|
+
|
|
47
|
+
For production deployments with full features:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npm install -g @bluefly/agent-buildkit
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
This includes OSSA validation plus:
|
|
54
|
+
- GitLab integration
|
|
55
|
+
- Kubernetes deployment
|
|
56
|
+
- Production monitoring
|
|
57
|
+
- Compliance tooling
|
|
58
|
+
|
|
59
|
+
## Verify Installation
|
|
60
|
+
|
|
61
|
+
Check that OSSA CLI is working:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
ossa --help
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
You should see:
|
|
68
|
+
|
|
69
|
+
```
|
|
70
|
+
OSSA CLI - Open Standard for Scalable Agents (The OpenAPI for AI Agents)
|
|
71
|
+
|
|
72
|
+
Usage: ossa [options] [command]
|
|
73
|
+
|
|
74
|
+
Options:
|
|
75
|
+
-V, --version output the version number
|
|
76
|
+
-h, --help display help for command
|
|
77
|
+
|
|
78
|
+
Commands:
|
|
79
|
+
validate <path> Validate OSSA agent manifest or OpenAPI spec
|
|
80
|
+
generate <type> Generate OSSA agent manifest from template
|
|
81
|
+
migrate <source> Migrate agent manifest between OSSA versions
|
|
82
|
+
help [command] display help for command
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## What Gets Installed
|
|
86
|
+
|
|
87
|
+
### OSSA CLI Commands
|
|
88
|
+
|
|
89
|
+
- `ossa validate` - Validate agent manifests against JSON Schema
|
|
90
|
+
- `ossa generate` - Generate agent manifests from templates
|
|
91
|
+
- `ossa migrate` - Migrate between OSSA versions
|
|
92
|
+
|
|
93
|
+
### Package Contents
|
|
94
|
+
|
|
95
|
+
- **JSON Schema**: `spec/v0.2.2/ossa-0.2.2.schema.json`
|
|
96
|
+
- **TypeScript Types**: Available via package exports
|
|
97
|
+
- **CLI Tool**: `bin/ossa` executable
|
|
98
|
+
|
|
99
|
+
## Troubleshooting
|
|
100
|
+
|
|
101
|
+
### Command Not Found
|
|
102
|
+
|
|
103
|
+
If `ossa` command is not found:
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
# Check npm global bin path
|
|
107
|
+
npm config get prefix
|
|
108
|
+
|
|
109
|
+
# Add to PATH if needed
|
|
110
|
+
export PATH="$(npm config get prefix)/bin:$PATH"
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
### Permission Errors
|
|
114
|
+
|
|
115
|
+
On Linux/macOS, you may need sudo:
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
sudo npm install -g @bluefly/openstandardagents
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
Or configure npm to use a different directory:
|
|
122
|
+
|
|
123
|
+
```bash
|
|
124
|
+
mkdir ~/.npm-global
|
|
125
|
+
npm config set prefix '~/.npm-global'
|
|
126
|
+
export PATH=~/.npm-global/bin:$PATH
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### Version Conflicts
|
|
130
|
+
|
|
131
|
+
If you have multiple versions:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# List global packages
|
|
135
|
+
npm list -g --depth=0
|
|
136
|
+
|
|
137
|
+
# Uninstall old version
|
|
138
|
+
npm uninstall -g @bluefly/openstandardagents
|
|
139
|
+
|
|
140
|
+
# Install latest
|
|
141
|
+
npm install -g @bluefly/openstandardagents@latest
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
## Next Steps
|
|
145
|
+
|
|
146
|
+
1. ✅ Installation complete
|
|
147
|
+
2. → [Hello World Tutorial](Hello-World)
|
|
148
|
+
3. → [First Agent Creation](First-Agent)
|
|
149
|
+
|
|
150
|
+
## Related
|
|
151
|
+
|
|
152
|
+
- [5-Minute Overview](5-Minute-Overview)
|
|
153
|
+
- [Hello World Tutorial](Hello-World)
|
|
154
|
+
- [CLI Reference](../quick-reference)
|
|
155
|
+
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Running Agents"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Running Agents
|
|
6
|
+
|
|
7
|
+
Learn how to run OSSA agents using the CLI.
|
|
8
|
+
|
|
9
|
+
## Prerequisites
|
|
10
|
+
|
|
11
|
+
- Node.js 18+
|
|
12
|
+
- npm or yarn
|
|
13
|
+
- API key for your LLM provider
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g @bluefly/openstandardagents
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Quick Start
|
|
22
|
+
|
|
23
|
+
### 1. Set your API key
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
export OPENAI_API_KEY=sk-...
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### 2. Create an agent manifest
|
|
30
|
+
|
|
31
|
+
```yaml
|
|
32
|
+
# support-agent.ossa.yaml
|
|
33
|
+
apiVersion: ossa/v0.2.3
|
|
34
|
+
kind: Agent
|
|
35
|
+
|
|
36
|
+
metadata:
|
|
37
|
+
name: support-agent
|
|
38
|
+
version: 1.0.0
|
|
39
|
+
description: Customer support agent
|
|
40
|
+
|
|
41
|
+
spec:
|
|
42
|
+
role: |
|
|
43
|
+
You are a helpful customer support agent.
|
|
44
|
+
Answer questions about orders and shipping.
|
|
45
|
+
|
|
46
|
+
llm:
|
|
47
|
+
provider: openai
|
|
48
|
+
model: gpt-4o-mini
|
|
49
|
+
temperature: 0.7
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### 3. Run the agent
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
# Interactive mode
|
|
56
|
+
ossa run support-agent.ossa.yaml
|
|
57
|
+
|
|
58
|
+
# Single message
|
|
59
|
+
ossa run support-agent.ossa.yaml -m "Help me track my order"
|
|
60
|
+
|
|
61
|
+
# Verbose (show tool calls)
|
|
62
|
+
ossa run support-agent.ossa.yaml -v
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Command Options
|
|
66
|
+
|
|
67
|
+
| Option | Description |
|
|
68
|
+
|--------|-------------|
|
|
69
|
+
| `-r, --runtime` | Runtime adapter (default: openai) |
|
|
70
|
+
| `-v, --verbose` | Show tool calls |
|
|
71
|
+
| `-m, --message` | Single message mode |
|
|
72
|
+
| `--no-validate` | Skip validation |
|
|
73
|
+
| `--max-turns` | Max tool call iterations |
|
|
74
|
+
|
|
75
|
+
## Supported Runtimes
|
|
76
|
+
|
|
77
|
+
| Runtime | Status | Provider |
|
|
78
|
+
|---------|--------|----------|
|
|
79
|
+
| openai | Available | OpenAI API |
|
|
80
|
+
| anthropic | Coming Soon | Anthropic Claude |
|
|
81
|
+
| ollama | Coming Soon | Local LLMs |
|
|
82
|
+
| gemini | Coming Soon | Google AI |
|
|
83
|
+
|
|
84
|
+
## Adding Tools
|
|
85
|
+
|
|
86
|
+
Define tools in your manifest:
|
|
87
|
+
|
|
88
|
+
```yaml
|
|
89
|
+
extensions:
|
|
90
|
+
openai_agents:
|
|
91
|
+
tools_mapping:
|
|
92
|
+
- ossa_capability: order_tracking
|
|
93
|
+
openai_tool_name: get_order_status
|
|
94
|
+
description: Get order status by ID
|
|
95
|
+
parameters:
|
|
96
|
+
type: object
|
|
97
|
+
properties:
|
|
98
|
+
order_id:
|
|
99
|
+
type: string
|
|
100
|
+
required: [order_id]
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## Next Steps
|
|
104
|
+
|
|
105
|
+
- [Manifest Reference](/docs/schema-reference)
|
|
106
|
+
- [Framework Extensions](/docs/openapi-extensions)
|
|
107
|
+
- [Drupal Integration](/docs/integrations/drupal)
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# AIFlow Framework Integration with OSSA
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
AIFlow is a Python-based social agent framework that enables personality-driven, emotionally intelligent AI agents for autonomous social media content generation. This integration demonstrates how AIFlow agents are wrapped in OSSA 1.0 manifests for Kubernetes orchestration and deployment through agent-buildkit.
|
|
6
|
+
|
|
7
|
+
For complete integration analysis, see: [agent-buildkit AIFlow Integration Guide](https://github.com/blueflyio/openstandardagents/wiki/AIFlow-Integration-with-OSSA-BuildKit-and-K-Agent)
|
|
8
|
+
|
|
9
|
+
## Core Components
|
|
10
|
+
|
|
11
|
+
### OSSA Manifest
|
|
12
|
+
|
|
13
|
+
**Location**: [agent-buildkit/examples/aiflow-integration/social-agent-aiflow.ossa.yaml](https://github.com/blueflyio/openstandardagents/blob/development/examples/aiflow-integration/social-agent-aiflow.ossa.yaml)
|
|
14
|
+
|
|
15
|
+
The manifest defines the agent's identity, runtime configuration, capabilities, and deployment requirements. It conforms to OSSA 1.0 specification.
|
|
16
|
+
|
|
17
|
+
**Key Manifest Sections**:
|
|
18
|
+
|
|
19
|
+
- **Agent Identity**: `social-agent-aiflow`, version 1.0.0, role: chat
|
|
20
|
+
- **Runtime**: Docker image `aiflow/agent:1.0.0`, Python 3.12+, resource requirements
|
|
21
|
+
- **Capabilities**: `generate_post`, `generate_response` with defined schemas
|
|
22
|
+
- **Dependencies**: Required integration with `agent-brain` for cognitive functions
|
|
23
|
+
- **Environment**: Required secrets for Anthropic API, Twitter API, Telegram Bot, PostgreSQL
|
|
24
|
+
|
|
25
|
+
### OpenAPI Specification
|
|
26
|
+
|
|
27
|
+
**Location**: [agent-buildkit/openapi/aiflow-agent.openapi.yml](https://github.com/blueflyio/openstandardagents/blob/development/openapi/aiflow-agent.openapi.yml)
|
|
28
|
+
|
|
29
|
+
The OpenAPI 3.1 specification defines the REST API interface for the AIFlow agent, including:
|
|
30
|
+
- FastAPI bridge endpoints for AIFlow Sia runtime
|
|
31
|
+
- Request/response schemas for all capabilities
|
|
32
|
+
- Kubernetes metadata extensions (x-k-agent) for orchestration
|
|
33
|
+
- Health check endpoints and observability metrics
|
|
34
|
+
|
|
35
|
+
### OSSA Schema
|
|
36
|
+
|
|
37
|
+
**Location**: [OSSA/spec/v1.0/ossa-1.0.schema.json](https://github.com/blueflyio/openstandardagents/blob/development/spec/v1.0/ossa-1.0.schema.json)
|
|
38
|
+
|
|
39
|
+
JSON Schema definition for OSSA 1.0 manifest validation. All agent manifests must conform to this schema.
|
|
40
|
+
|
|
41
|
+
## Validation
|
|
42
|
+
|
|
43
|
+
### OSSA Manifest Validation
|
|
44
|
+
|
|
45
|
+
Validate the manifest against OSSA 1.0 schema:
|
|
46
|
+
|
|
47
|
+
```yaml
|
|
48
|
+
ossa validate examples/aiflow-integration/social-agent-aiflow.ossa.yaml
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
This checks:
|
|
52
|
+
- Schema compliance against OSSA 1.0 specification
|
|
53
|
+
- Required fields and type correctness
|
|
54
|
+
- Capability schema definitions
|
|
55
|
+
- Dependency declarations
|
|
56
|
+
- Environment variable definitions
|
|
57
|
+
|
|
58
|
+
### OpenAPI Specification Validation
|
|
59
|
+
|
|
60
|
+
Validate OpenAPI spec with strict mode and K-Agent metadata checks:
|
|
61
|
+
|
|
62
|
+
```yaml
|
|
63
|
+
buildkit openapi validate --spec openapi/aiflow-agent.openapi.yml --strict
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
This validates:
|
|
67
|
+
- OpenAPI 3.1 syntax and semantics
|
|
68
|
+
- x-k-agent extension metadata for Kubernetes
|
|
69
|
+
- Endpoint schemas match OSSA capability definitions
|
|
70
|
+
- Health check endpoint compliance
|
|
71
|
+
|
|
72
|
+
## Deployment
|
|
73
|
+
|
|
74
|
+
Deploy via agent-buildkit orchestration:
|
|
75
|
+
|
|
76
|
+
```yaml
|
|
77
|
+
buildkit orchestrate deploy --manifest examples/aiflow-integration/social-agent-aiflow.ossa.yaml
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
This generates Kubernetes manifests and deploys the agent with:
|
|
81
|
+
- Rolling deployment strategy
|
|
82
|
+
- Horizontal Pod Autoscaling (HPA)
|
|
83
|
+
- Health checks and readiness probes
|
|
84
|
+
- Service account and RBAC configuration
|
|
85
|
+
- ConfigMap for character definitions
|
|
86
|
+
- Persistent volume for memory database
|
|
87
|
+
|
|
88
|
+
## Integration Architecture
|
|
89
|
+
|
|
90
|
+
1. **OSSA Manifest** → Defines agent structure and requirements
|
|
91
|
+
2. **OpenAPI Spec** → REST API contract with K8s metadata
|
|
92
|
+
3. **FastAPI Bridge** → Wraps AIFlow Sia runtime in REST API
|
|
93
|
+
4. **BuildKit Deployment** → Generates and applies K8s manifests
|
|
94
|
+
5. **Runtime Orchestration** → Kubernetes manages agent lifecycle
|
|
95
|
+
|
|
96
|
+
## Resources
|
|
97
|
+
|
|
98
|
+
- **AIFlow Repository**: https://github.com/AIFlow-agent/AIFlow-Agent
|
|
99
|
+
- **OSSA Project**: [openapi-ai-agents-standard](https://github.com/blueflyio/openstandardagents)
|
|
100
|
+
- **Integration Guide**: [agent-buildkit Wiki](https://github.com/blueflyio/openstandardagents/wiki/AIFlow-Integration-with-OSSA-BuildKit-and-K-Agent)
|
|
101
|
+
- **OSSA Specification Schema**: [OSSA 1.0 Schema](https://github.com/blueflyio/openstandardagents/blob/development/spec/v1.0/ossa-1.0.schema.json)
|
|
102
|
+
- **Example Manifest**: [social-agent-aiflow.ossa.yaml](https://github.com/blueflyio/openstandardagents/blob/development/examples/aiflow-integration/social-agent-aiflow.ossa.yaml)
|
|
103
|
+
- **OpenAPI Spec**: [aiflow-agent.openapi.yml](https://github.com/blueflyio/openstandardagents/blob/development/openapi/aiflow-agent.openapi.yml)
|
|
104
|
+
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Drupal Integration"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Drupal Integration
|
|
6
|
+
|
|
7
|
+
Integrate OSSA agents with Drupal's LLM Platform.
|
|
8
|
+
|
|
9
|
+
## Overview
|
|
10
|
+
|
|
11
|
+
The OSSA Drupal modules provide:
|
|
12
|
+
- Agent management UI
|
|
13
|
+
- Workflow orchestration
|
|
14
|
+
- CrewAI integration
|
|
15
|
+
- Marketplace for agents
|
|
16
|
+
|
|
17
|
+
## Available Modules
|
|
18
|
+
|
|
19
|
+
| Module | Description |
|
|
20
|
+
|--------|-------------|
|
|
21
|
+
| ai_agents_ossa | Core OSSA integration |
|
|
22
|
+
| ai_agents_orchestra | Workflow orchestration |
|
|
23
|
+
| ai_agents_crewai | CrewAI framework bridge |
|
|
24
|
+
| ai_agents_marketplace | Agent marketplace |
|
|
25
|
+
| ai_agents_huggingface | HuggingFace models |
|
|
26
|
+
|
|
27
|
+
## Installation
|
|
28
|
+
|
|
29
|
+
### Via Composer
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
composer require drupal/ai_agents_ossa
|
|
33
|
+
drush en ai_agents_ossa
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Configuration
|
|
37
|
+
|
|
38
|
+
1. Go to `/admin/config/ai/agents`
|
|
39
|
+
2. Configure LLM provider credentials
|
|
40
|
+
3. Import OSSA manifests
|
|
41
|
+
|
|
42
|
+
## Creating Agents in Drupal
|
|
43
|
+
|
|
44
|
+
### Using the UI
|
|
45
|
+
|
|
46
|
+
1. Navigate to `/admin/content/agents`
|
|
47
|
+
2. Click "Add Agent"
|
|
48
|
+
3. Upload OSSA manifest or configure inline
|
|
49
|
+
|
|
50
|
+
### Using Drush
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
# Import agent from manifest
|
|
54
|
+
drush ai:agent:import path/to/agent.ossa.yaml
|
|
55
|
+
|
|
56
|
+
# List agents
|
|
57
|
+
drush ai:agent:list
|
|
58
|
+
|
|
59
|
+
# Run agent
|
|
60
|
+
drush ai:agent:run my-agent "Hello"
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Workflow Orchestration
|
|
64
|
+
|
|
65
|
+
The `ai_agents_orchestra` module enables multi-agent workflows:
|
|
66
|
+
|
|
67
|
+
```yaml
|
|
68
|
+
# workflow.ossa.yaml
|
|
69
|
+
apiVersion: ossa/v0.2.5
|
|
70
|
+
kind: AgentGraph
|
|
71
|
+
|
|
72
|
+
metadata:
|
|
73
|
+
name: support-workflow
|
|
74
|
+
|
|
75
|
+
spec:
|
|
76
|
+
agents:
|
|
77
|
+
- ref: triage-agent
|
|
78
|
+
- ref: resolver-agent
|
|
79
|
+
edges:
|
|
80
|
+
- from: triage-agent
|
|
81
|
+
to: resolver-agent
|
|
82
|
+
process: sequential
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## ECA Integration
|
|
86
|
+
|
|
87
|
+
OSSA agents work with Drupal's ECA (Event-Condition-Action):
|
|
88
|
+
|
|
89
|
+
- Trigger agents on content events
|
|
90
|
+
- Use agent responses in conditions
|
|
91
|
+
- Chain multiple agents
|
|
92
|
+
|
|
93
|
+
## API Endpoints
|
|
94
|
+
|
|
95
|
+
| Endpoint | Method | Description |
|
|
96
|
+
|----------|--------|-------------|
|
|
97
|
+
| `/api/agents` | GET | List agents |
|
|
98
|
+
| `/api/agents/{id}/run` | POST | Run agent |
|
|
99
|
+
| `/api/agents/{id}/status` | GET | Agent status |
|
|
100
|
+
|
|
101
|
+
## Next Steps
|
|
102
|
+
|
|
103
|
+
- [OSSA Manifest Reference](/docs/schema-reference)
|
|
104
|
+
- [Orchestra Module Docs](https://github.com/blueflyio/openstandardagents)
|
|
105
|
+
- [CrewAI Integration](/docs/migration-guides/crewai-to-ossa)
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Migration Guides
|
|
3
|
+
description: Migrate from existing AI frameworks to OSSA
|
|
4
|
+
weight: 1
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Migration Guides
|
|
8
|
+
|
|
9
|
+
Comprehensive guides for migrating from popular AI agent frameworks to OSSA (Open Standard for Scalable Agents).
|
|
10
|
+
|
|
11
|
+
## Available Guides
|
|
12
|
+
|
|
13
|
+
### 🤖 Framework Migrations
|
|
14
|
+
|
|
15
|
+
- **[Anthropic MCP to OSSA](./anthropic-mcp-to-ossa.md)** - Extend MCP servers with OSSA for production features
|
|
16
|
+
- **[CrewAI to OSSA](./crewai-to-ossa.md)** - Migrate CrewAI crews to OSSA orchestration
|
|
17
|
+
- **[LangChain to OSSA](./langchain-to-ossa.md)** - Convert LangChain agents to OSSA agents
|
|
18
|
+
- **[Langflow to OSSA](./langflow-to-ossa.md)** - Transform visual flows into OSSA manifests
|
|
19
|
+
- **[OpenAI to OSSA](./openai-to-ossa.md)** - Migrate OpenAI Assistants API to OSSA
|
|
20
|
+
|
|
21
|
+
### 🔧 Platform Migrations
|
|
22
|
+
|
|
23
|
+
- **[Drupal ECA to OSSA](./drupal-eca-to-ossa.md)** - Convert Drupal automation rules to OSSA agents
|
|
24
|
+
|
|
25
|
+
## Migration Overview
|
|
26
|
+
|
|
27
|
+
All OSSA migrations share common patterns:
|
|
28
|
+
|
|
29
|
+
### 1. Assessment Phase
|
|
30
|
+
- Inventory existing agents/workflows
|
|
31
|
+
- Map components to OSSA equivalents
|
|
32
|
+
- Identify production requirements
|
|
33
|
+
|
|
34
|
+
### 2. Design Phase
|
|
35
|
+
- Create OSSA agent manifests
|
|
36
|
+
- Define capability schemas
|
|
37
|
+
- Plan workflow execution
|
|
38
|
+
|
|
39
|
+
### 3. Implementation Phase
|
|
40
|
+
- Implement agent logic
|
|
41
|
+
- Add monitoring and policies
|
|
42
|
+
- Configure deployment
|
|
43
|
+
|
|
44
|
+
### 4. Testing Phase
|
|
45
|
+
- Unit test capabilities
|
|
46
|
+
- Integration test workflows
|
|
47
|
+
- Validate performance
|
|
48
|
+
|
|
49
|
+
### 5. Deployment Phase
|
|
50
|
+
- Deploy to target environment
|
|
51
|
+
- Configure monitoring
|
|
52
|
+
- Run smoke tests
|
|
53
|
+
|
|
54
|
+
## Why Migrate to OSSA?
|
|
55
|
+
|
|
56
|
+
### Production Features
|
|
57
|
+
- ✅ **Multi-Protocol Support** - HTTP, gRPC, WebSocket, MCP, A2A
|
|
58
|
+
- ✅ **Enterprise Monitoring** - Traces, metrics, logs, health checks
|
|
59
|
+
- ✅ **Kubernetes Native** - Deploy and scale on K8s
|
|
60
|
+
- ✅ **OpenAPI Integration** - REST APIs for all agents
|
|
61
|
+
- ✅ **Compliance Ready** - ISO42001, SOC2, GDPR support
|
|
62
|
+
|
|
63
|
+
### Framework Advantages
|
|
64
|
+
- 🔓 **No Vendor Lock-in** - Use any LLM provider
|
|
65
|
+
- 🌐 **Multi-Runtime** - Local, Docker, K8s, serverless
|
|
66
|
+
- 🔌 **Interoperable** - Works with existing frameworks
|
|
67
|
+
- 📊 **Observable** - Built-in monitoring and tracing
|
|
68
|
+
- 🔒 **Secure** - Enterprise security and policies
|
|
69
|
+
|
|
70
|
+
## Getting Help
|
|
71
|
+
|
|
72
|
+
- **Documentation**: [OSSA Wiki](https://github.com/blueflyio/openstandardagents/wiki/home)
|
|
73
|
+
- **Issues**: [GitHub Issues](https://github.com/blueflyio/openstandardagents/issues)
|
|
74
|
+
- **Discord**: [OSSA Community](https://github.com/blueflyio/openstandardagents/discussions)
|
|
75
|
+
|
|
76
|
+
Ready to migrate? Choose your framework above and get started!
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "README"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Migration Guides
|
|
6
|
+
|
|
7
|
+
Comprehensive guides for migrating to or extending with OSSA (Open Standards for Scalable Agents).
|
|
8
|
+
|
|
9
|
+
## Available Guides
|
|
10
|
+
|
|
11
|
+
### 1. [Anthropic MCP to OSSA](./Anthropic-MCP-to-OSSA.md)
|
|
12
|
+
**Extend Anthropic Model Context Protocol servers with OSSA**
|
|
13
|
+
|
|
14
|
+
- **Target Audience:** MCP server developers, Claude Desktop users
|
|
15
|
+
- **Complexity:** Intermediate
|
|
16
|
+
- **Time to Complete:** 2-4 hours
|
|
17
|
+
- **Key Benefits:**
|
|
18
|
+
- Keep MCP compatibility
|
|
19
|
+
- Add HTTP/REST API support
|
|
20
|
+
- Enable production monitoring
|
|
21
|
+
- Deploy to Kubernetes
|
|
22
|
+
- Multi-protocol access (MCP + OpenAPI + A2A)
|
|
23
|
+
|
|
24
|
+
**Topics Covered:**
|
|
25
|
+
- MCP servers → OSSA agents
|
|
26
|
+
- MCP tools → OSSA capabilities
|
|
27
|
+
- MCP resources → OSSA data sources
|
|
28
|
+
- Dual-mode implementation (stdio + HTTP)
|
|
29
|
+
- Integration patterns
|
|
30
|
+
- 3 complete before/after examples
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
### 2. [LangChain to OSSA](./LangChain-to-OSSA.md)
|
|
35
|
+
**Migrate Python LangChain agents to OSSA specification**
|
|
36
|
+
|
|
37
|
+
- **Target Audience:** LangChain developers, Python AI engineers
|
|
38
|
+
- **Complexity:** Intermediate to Advanced
|
|
39
|
+
- **Time to Complete:** 4-8 hours
|
|
40
|
+
- **Key Benefits:**
|
|
41
|
+
- Language-agnostic deployment
|
|
42
|
+
- Better orchestration
|
|
43
|
+
- Production-ready infrastructure
|
|
44
|
+
- Multi-framework support
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
48
|
+
## Quick Decision Guide
|
|
49
|
+
|
|
50
|
+
**Choose the right guide based on your current stack:**
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
Have MCP servers? → Use "Anthropic MCP to OSSA"
|
|
54
|
+
├─ Already working in Claude Desktop?
|
|
55
|
+
│ └─ Keep MCP, add OSSA for production features
|
|
56
|
+
│
|
|
57
|
+
Have LangChain agents? → Use "LangChain to OSSA"
|
|
58
|
+
├─ Python-based AI workflows?
|
|
59
|
+
│ └─ Migrate to OSSA for better orchestration
|
|
60
|
+
│
|
|
61
|
+
Starting fresh? → Check Getting Started guide
|
|
62
|
+
└─ Use OSSA from day one
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Common Scenarios
|
|
66
|
+
|
|
67
|
+
### Scenario 1: "I have MCP servers for Claude Desktop"
|
|
68
|
+
→ **Use:** [Anthropic MCP to OSSA](./Anthropic-MCP-to-OSSA.md)
|
|
69
|
+
- Extend with HTTP API
|
|
70
|
+
- Add monitoring/metrics
|
|
71
|
+
- Deploy to production
|
|
72
|
+
|
|
73
|
+
### Scenario 2: "I have LangChain Python agents"
|
|
74
|
+
→ **Use:** [LangChain to OSSA](./LangChain-to-OSSA.md)
|
|
75
|
+
- Migrate to TypeScript/Node.js
|
|
76
|
+
- Add multi-protocol support
|
|
77
|
+
- Enable agent orchestration
|
|
78
|
+
|
|
79
|
+
### Scenario 3: "I want to expose my agent via multiple protocols"
|
|
80
|
+
→ **Use:** [Anthropic MCP to OSSA](./Anthropic-MCP-to-OSSA.md)
|
|
81
|
+
- MCP for Claude Desktop
|
|
82
|
+
- OpenAPI for REST clients
|
|
83
|
+
- A2A for agent-to-agent communication
|
|
84
|
+
|
|
85
|
+
## Migration Roadmap
|
|
86
|
+
|
|
87
|
+
```
|
|
88
|
+
1. Assessment (1-2 hours)
|
|
89
|
+
├─ Inventory existing agents/servers
|
|
90
|
+
├─ Identify required features
|
|
91
|
+
└─ Choose migration guide
|
|
92
|
+
|
|
93
|
+
2. Planning (2-4 hours)
|
|
94
|
+
├─ Map existing functionality to OSSA
|
|
95
|
+
├─ Design agent manifest
|
|
96
|
+
└─ Plan deployment strategy
|
|
97
|
+
|
|
98
|
+
3. Implementation (4-8 hours)
|
|
99
|
+
├─ Create OSSA agent structure
|
|
100
|
+
├─ Migrate business logic
|
|
101
|
+
├─ Configure bridges (MCP, OpenAPI, etc.)
|
|
102
|
+
└─ Add monitoring
|
|
103
|
+
|
|
104
|
+
4. Testing (2-4 hours)
|
|
105
|
+
├─ Test all protocols
|
|
106
|
+
├─ Verify backward compatibility
|
|
107
|
+
└─ Load testing
|
|
108
|
+
|
|
109
|
+
5. Deployment (2-4 hours)
|
|
110
|
+
├─ Deploy to target environment
|
|
111
|
+
├─ Configure monitoring
|
|
112
|
+
└─ Update client configurations
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
## Support
|
|
116
|
+
|
|
117
|
+
- **Documentation:** `/Users/flux423/Sites/LLM/agent-buildkit/docs/`
|
|
118
|
+
- **Examples:** `/Users/flux423/Sites/LLM/agent-buildkit/.agents/`
|
|
119
|
+
- **OSSA Spec:** [OSSA Complete Reference](../OSSA-COMPLETE-AGENT-REFERENCE.md)
|
|
120
|
+
- **BuildKit CLI:** `buildkit agents --help`
|
|
121
|
+
|
|
122
|
+
## Contributing
|
|
123
|
+
|
|
124
|
+
Found an issue or want to add a migration guide?
|
|
125
|
+
|
|
126
|
+
1. Create an issue: [GitHub Issues](https://github.com/blueflyio/openstandardagents/issues)
|
|
127
|
+
2. Submit a merge request with your guide
|
|
128
|
+
3. Follow the existing structure and format
|
|
129
|
+
|
|
130
|
+
---
|
|
131
|
+
|
|
132
|
+
**Last Updated:** 2025-11-10
|
|
133
|
+
**Maintained By:** Agent BuildKit Team
|