@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.
Files changed (371) hide show
  1. package/.env.example +41 -0
  2. package/.eslintrc.cjs +43 -0
  3. package/.github/PULL_REQUEST_TEMPLATE.md +39 -0
  4. package/.github/dependabot.yml +58 -0
  5. package/.github/workflows/ci.yml +154 -0
  6. package/.github/workflows/codeql.yml +41 -0
  7. package/.github/workflows/dependabot-auto-merge.yml +28 -0
  8. package/.github/workflows/release.yml +103 -0
  9. package/.prettierignore +7 -0
  10. package/.prettierrc.json +10 -0
  11. package/.redocly.yaml +9 -0
  12. package/.releaserc.json +84 -0
  13. package/.releaserc.json.disabled +81 -0
  14. package/CHANGELOG.md +152 -0
  15. package/CONTRIBUTING.md +249 -0
  16. package/LICENSE +190 -0
  17. package/README.md +280 -0
  18. package/bin/ossa +8 -0
  19. package/bin/validate-ossa-0.2.2.ts +244 -0
  20. package/dist/di-container.d.ts +18 -0
  21. package/dist/di-container.d.ts.map +1 -0
  22. package/dist/di-container.js +43 -0
  23. package/dist/di-container.js.map +1 -0
  24. package/dist/index.d.ts +13 -0
  25. package/dist/index.d.ts.map +1 -0
  26. package/dist/index.js +17 -0
  27. package/dist/index.js.map +1 -0
  28. package/dist/repositories/manifest.repository.d.ts +26 -0
  29. package/dist/repositories/manifest.repository.d.ts.map +1 -0
  30. package/dist/repositories/manifest.repository.js +90 -0
  31. package/dist/repositories/manifest.repository.js.map +1 -0
  32. package/dist/repositories/schema.repository.d.ts +30 -0
  33. package/dist/repositories/schema.repository.d.ts.map +1 -0
  34. package/dist/repositories/schema.repository.js +143 -0
  35. package/dist/repositories/schema.repository.js.map +1 -0
  36. package/dist/services/generation.service.d.ts +54 -0
  37. package/dist/services/generation.service.d.ts.map +1 -0
  38. package/dist/services/generation.service.js +298 -0
  39. package/dist/services/generation.service.js.map +1 -0
  40. package/dist/services/migration.service.d.ts +30 -0
  41. package/dist/services/migration.service.d.ts.map +1 -0
  42. package/dist/services/migration.service.js +231 -0
  43. package/dist/services/migration.service.js.map +1 -0
  44. package/dist/services/runtime/openai.adapter.d.ts +94 -0
  45. package/dist/services/runtime/openai.adapter.d.ts.map +1 -0
  46. package/dist/services/runtime/openai.adapter.js +209 -0
  47. package/dist/services/runtime/openai.adapter.js.map +1 -0
  48. package/dist/services/validation.service.d.ts +45 -0
  49. package/dist/services/validation.service.d.ts.map +1 -0
  50. package/dist/services/validation.service.js +362 -0
  51. package/dist/services/validation.service.js.map +1 -0
  52. package/dist/services/validators/anthropic.validator.d.ts +9 -0
  53. package/dist/services/validators/anthropic.validator.d.ts.map +1 -0
  54. package/dist/services/validators/anthropic.validator.js +105 -0
  55. package/dist/services/validators/anthropic.validator.js.map +1 -0
  56. package/dist/services/validators/autogen.validator.d.ts +9 -0
  57. package/dist/services/validators/autogen.validator.d.ts.map +1 -0
  58. package/dist/services/validators/autogen.validator.js +111 -0
  59. package/dist/services/validators/autogen.validator.js.map +1 -0
  60. package/dist/services/validators/crewai.validator.d.ts +9 -0
  61. package/dist/services/validators/crewai.validator.d.ts.map +1 -0
  62. package/dist/services/validators/crewai.validator.js +117 -0
  63. package/dist/services/validators/crewai.validator.js.map +1 -0
  64. package/dist/services/validators/cursor.validator.d.ts +9 -0
  65. package/dist/services/validators/cursor.validator.d.ts.map +1 -0
  66. package/dist/services/validators/cursor.validator.js +88 -0
  67. package/dist/services/validators/cursor.validator.js.map +1 -0
  68. package/dist/services/validators/index.d.ts +15 -0
  69. package/dist/services/validators/index.d.ts.map +1 -0
  70. package/dist/services/validators/index.js +15 -0
  71. package/dist/services/validators/index.js.map +1 -0
  72. package/dist/services/validators/langchain.validator.d.ts +9 -0
  73. package/dist/services/validators/langchain.validator.d.ts.map +1 -0
  74. package/dist/services/validators/langchain.validator.js +103 -0
  75. package/dist/services/validators/langchain.validator.js.map +1 -0
  76. package/dist/services/validators/langflow.validator.d.ts +9 -0
  77. package/dist/services/validators/langflow.validator.d.ts.map +1 -0
  78. package/dist/services/validators/langflow.validator.js +92 -0
  79. package/dist/services/validators/langflow.validator.js.map +1 -0
  80. package/dist/services/validators/langgraph.validator.d.ts +9 -0
  81. package/dist/services/validators/langgraph.validator.d.ts.map +1 -0
  82. package/dist/services/validators/langgraph.validator.js +123 -0
  83. package/dist/services/validators/langgraph.validator.js.map +1 -0
  84. package/dist/services/validators/llamaindex.validator.d.ts +9 -0
  85. package/dist/services/validators/llamaindex.validator.d.ts.map +1 -0
  86. package/dist/services/validators/llamaindex.validator.js +121 -0
  87. package/dist/services/validators/llamaindex.validator.js.map +1 -0
  88. package/dist/services/validators/openai.validator.d.ts +9 -0
  89. package/dist/services/validators/openai.validator.d.ts.map +1 -0
  90. package/dist/services/validators/openai.validator.js +126 -0
  91. package/dist/services/validators/openai.validator.js.map +1 -0
  92. package/dist/services/validators/vercel-ai.validator.d.ts +9 -0
  93. package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -0
  94. package/dist/services/validators/vercel-ai.validator.js +99 -0
  95. package/dist/services/validators/vercel-ai.validator.js.map +1 -0
  96. package/dist/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  97. package/dist/spec/v0.1.9/ecosystem-compliance.json +235 -0
  98. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  99. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  100. package/dist/spec/v0.1.9/reasoning-compliance.json +654 -0
  101. package/dist/spec/v0.2.2/kagent-enhancements.json +395 -0
  102. package/dist/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  103. package/dist/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  104. package/dist/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  105. package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
  106. package/dist/spec/v0.2.3/README.md +154 -0
  107. package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  108. package/dist/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  109. package/dist/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  110. package/dist/spec/v0.2.4-dev/CHANGELOG.md +403 -0
  111. package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  112. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
  113. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
  114. package/dist/spec/v0.2.5-dev/CHANGELOG.md +171 -0
  115. package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
  116. package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
  117. package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
  118. package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
  119. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
  120. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
  121. package/dist/types/index.d.ts +178 -0
  122. package/dist/types/index.d.ts.map +1 -0
  123. package/dist/types/index.js +6 -0
  124. package/dist/types/index.js.map +1 -0
  125. package/dist/types/openapi-extensions.d.ts +164 -0
  126. package/dist/types/openapi-extensions.d.ts.map +1 -0
  127. package/dist/types/openapi-extensions.js +6 -0
  128. package/dist/types/openapi-extensions.js.map +1 -0
  129. package/docs/OSSA-COMPLIANT-BADGE.md +248 -0
  130. package/docs/README.md +31 -0
  131. package/docs/VERSIONING.md +284 -0
  132. package/docs/agent-openapi-spec.yml +942 -0
  133. package/docs/getting-started.md +87 -0
  134. package/docs/migration/general-agent-schema.yml +255 -0
  135. package/docs/migration/migration-manifest.json +64 -0
  136. package/docs/openapi-extensions.md +930 -0
  137. package/docs/schemas/openapi-extensions.schema.json +486 -0
  138. package/examples/adk-integration/code-review-workflow.yml +136 -0
  139. package/examples/adk-integration/customer-support.yml +263 -0
  140. package/examples/adk-integration/data-pipeline.yml +173 -0
  141. package/examples/advanced/patterns/compliance-context-production.json +53 -0
  142. package/examples/advanced/patterns/model-router.ts +274 -0
  143. package/examples/advanced/patterns/smart-model-routing.ts +248 -0
  144. package/examples/advanced/workflows/hybrid-model-strategy.yaml +232 -0
  145. package/examples/agent-manifests/critics/critic-agent.yaml +149 -0
  146. package/examples/agent-manifests/governors/governor-agent.yaml +128 -0
  147. package/examples/agent-manifests/integrators/integrator-agent.yaml +103 -0
  148. package/examples/agent-manifests/judges/judge-agent.yaml +153 -0
  149. package/examples/agent-manifests/monitors/monitor-agent.yaml +122 -0
  150. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +247 -0
  151. package/examples/agent-manifests/sample-compliant-agent.yaml +147 -0
  152. package/examples/agent-manifests/workers/worker-agent.yaml +82 -0
  153. package/examples/anthropic/claude-assistant.ossa.json +45 -0
  154. package/examples/architecture/model-configuration/ollama-integration.ts +110 -0
  155. package/examples/autogen/multi-agent.ossa.json +37 -0
  156. package/examples/bridge-configurations.yaml +346 -0
  157. package/examples/bridges/Dockerfile.production +87 -0
  158. package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
  159. package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
  160. package/examples/bridges/__pycache__/test_aiflow_integration.cpython-313.pyc +0 -0
  161. package/examples/bridges/aiflow-bridge-enhanced.py +462 -0
  162. package/examples/bridges/aiflow-bridge-example.yml +310 -0
  163. package/examples/bridges/aiflow-phoenix-tracing.py +310 -0
  164. package/examples/bridges/aiflow-registration-api.openapi.yml +439 -0
  165. package/examples/bridges/k8s/configmap.yaml +121 -0
  166. package/examples/bridges/k8s/deployment-simple.yaml +34 -0
  167. package/examples/bridges/k8s/deployment.yaml +275 -0
  168. package/examples/bridges/k8s/hpa.yaml +126 -0
  169. package/examples/bridges/k8s/ingress.yaml +155 -0
  170. package/examples/bridges/kagent-bridge-example.yml +94 -0
  171. package/examples/bridges/load-tests/Dockerfile +28 -0
  172. package/examples/bridges/load-tests/k6-load-test.js +302 -0
  173. package/examples/bridges/load-tests/requirements.txt +20 -0
  174. package/examples/bridges/loadtest/k6-scenarios.js +270 -0
  175. package/examples/bridges/phase4/SLO-SLA.yaml +249 -0
  176. package/examples/bridges/phase4/chaos-tests.yaml +226 -0
  177. package/examples/bridges/requirements.txt +24 -0
  178. package/examples/bridges/test_aiflow_integration.py +341 -0
  179. package/examples/common_npm/agent-router.ossa.yaml +182 -0
  180. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +60 -0
  181. package/examples/compliance-agent.yml +155 -0
  182. package/examples/crewai/research-team.ossa.json +36 -0
  183. package/examples/cursor/code-review-agent.ossa.json +47 -0
  184. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +609 -0
  185. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +68 -0
  186. package/examples/enterprise/agent.yml +452 -0
  187. package/examples/extensions/drupal-v1.yml +266 -0
  188. package/examples/extensions/kagent-v1.yml +167 -0
  189. package/examples/getting-started/hello-world-complete.ossa.yaml +266 -0
  190. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +376 -0
  191. package/examples/kagent/README.md +31 -0
  192. package/examples/kagent/compliance-validator.ossa.yaml +111 -0
  193. package/examples/kagent/cost-optimizer.ossa.yaml +93 -0
  194. package/examples/kagent/documentation-agent.ossa.yaml +91 -0
  195. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +269 -0
  196. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +106 -0
  197. package/examples/kagent/k8s-troubleshooter.ossa.yaml +257 -0
  198. package/examples/kagent/security-scanner.ossa.yaml +140 -0
  199. package/examples/langchain/chain-agent.ossa.json +42 -0
  200. package/examples/langflow/workflow-agent.ossa.json +39 -0
  201. package/examples/langgraph/state-machine-agent.ossa.json +59 -0
  202. package/examples/llamaindex/rag-agent.ossa.json +41 -0
  203. package/examples/migration-guides/from-langchain-to-ossa.yaml +309 -0
  204. package/examples/minimal/agent.yml +152 -0
  205. package/examples/minimal/openapi.yaml +95 -0
  206. package/examples/openai/swarm-agent.ossa.json +59 -0
  207. package/examples/openapi-extensions/README.md +87 -0
  208. package/examples/openapi-extensions/minimal-agent-api.openapi.yml +288 -0
  209. package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +633 -0
  210. package/examples/openapi-extensions/worker-agent-api.openapi.yml +533 -0
  211. package/examples/production/agent.yml +713 -0
  212. package/examples/production/document-analyzer-openai.yml +134 -0
  213. package/examples/quickstart/support-agent.ossa.yaml +59 -0
  214. package/examples/service-registry-usage.ts +423 -0
  215. package/examples/spec-examples/audit-agent.yml +147 -0
  216. package/examples/spec-examples/chat-agent.yml +189 -0
  217. package/examples/spec-examples/compliance-agent.yml +204 -0
  218. package/examples/spec-examples/data-processing-agent.yml +132 -0
  219. package/examples/spec-examples/development-agent.yml +138 -0
  220. package/examples/spec-examples/edge-agent.yml +101 -0
  221. package/examples/spec-examples/integration-agent.yml +129 -0
  222. package/examples/spec-examples/monitoring-agent.yml +130 -0
  223. package/examples/spec-examples/serverless-agent.yml +82 -0
  224. package/examples/spec-examples/workflow-agent.yml +223 -0
  225. package/examples/templates/ossa-compliance.yaml +56 -0
  226. package/examples/typescript/advanced/demo-registry.ts +168 -0
  227. package/examples/typescript/mcpb-agent-example.ts +358 -0
  228. package/examples/vercel/edge-agent.ossa.json +43 -0
  229. package/infrastructure/docker-compose.yml +33 -0
  230. package/junit.xml +1 -0
  231. package/openapi/drupal-agent-api.openapi.yaml +348 -0
  232. package/openapi/gitlab-orchestrator.openapi.yaml +330 -0
  233. package/openapi/helm-generator.openapi.yaml +389 -0
  234. package/openapi/ossa-core-api.openapi.yaml +1448 -0
  235. package/openapi/ossa-registry-api.openapi.yaml +980 -0
  236. package/openapi/ossa-registry.openapi.yaml +782 -0
  237. package/openapi/self-evolving-ecosystem.openapi.yaml +1530 -0
  238. package/openapi/unified-agent-gateway.openapi.yaml +833 -0
  239. package/ossa-website-swarm-tasks.json +105 -0
  240. package/package.json +132 -0
  241. package/release.config.js +64 -0
  242. package/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  243. package/spec/v0.1.9/ecosystem-compliance.json +235 -0
  244. package/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  245. package/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  246. package/spec/v0.1.9/reasoning-compliance.json +654 -0
  247. package/spec/v0.2.2/kagent-enhancements.json +395 -0
  248. package/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  249. package/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  250. package/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  251. package/spec/v0.2.3/CHANGELOG.md +176 -0
  252. package/spec/v0.2.3/README.md +154 -0
  253. package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  254. package/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  255. package/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  256. package/spec/v0.2.4-dev/CHANGELOG.md +403 -0
  257. package/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  258. package/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
  259. package/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
  260. package/spec/v0.2.5-dev/CHANGELOG.md +171 -0
  261. package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
  262. package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
  263. package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
  264. package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
  265. package/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
  266. package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
  267. package/test-results.xml +1 -0
  268. package/website/.lighthouserc.js +20 -0
  269. package/website/.prettierrc +10 -0
  270. package/website/Dockerfile +17 -0
  271. package/website/app/about/page.tsx +295 -0
  272. package/website/app/api/validate/route.ts +88 -0
  273. package/website/app/blog/[slug]/page.tsx +167 -0
  274. package/website/app/blog/page.tsx +162 -0
  275. package/website/app/docs/[[...slug]]/page.tsx +349 -0
  276. package/website/app/docs/core-concepts/project-structure/page.tsx +349 -0
  277. package/website/app/ecosystem/page.tsx +375 -0
  278. package/website/app/examples/page.tsx +123 -0
  279. package/website/app/globals.css +108 -0
  280. package/website/app/layout.tsx +106 -0
  281. package/website/app/page.tsx +409 -0
  282. package/website/app/playground/page.tsx +507 -0
  283. package/website/app/robots.ts +19 -0
  284. package/website/app/rss.xml/route.ts +74 -0
  285. package/website/app/schema/page.tsx +970 -0
  286. package/website/app/sitemap.ts +56 -0
  287. package/website/app/specification/page.tsx +211 -0
  288. package/website/components/InstallCommand.tsx +96 -0
  289. package/website/components/Logo.tsx +24 -0
  290. package/website/components/StructuredData.tsx +65 -0
  291. package/website/components/docs/DocsSearch.tsx +104 -0
  292. package/website/components/docs/DocsSidebar.tsx +118 -0
  293. package/website/components/docs/MarkdownContent.tsx +183 -0
  294. package/website/components/docs/VersionSelector.tsx +49 -0
  295. package/website/components/examples/ExamplesViewer.tsx +293 -0
  296. package/website/components/layout/Footer.tsx +111 -0
  297. package/website/components/layout/Header.tsx +170 -0
  298. package/website/components/schema/SchemaExplorer.tsx +213 -0
  299. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +285 -0
  300. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +209 -0
  301. package/website/content/blog/introducing-ossa-framework.md +328 -0
  302. package/website/content/blog/ossa-production-results.md +279 -0
  303. package/website/content/blog/welcome-to-ossa.md +43 -0
  304. package/website/content/blog/why-ai-agents-need-open-standard.md +98 -0
  305. package/website/content/docs/00-HOME.md +160 -0
  306. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
  307. package/website/content/docs/OpenAPI-Extensions.md +498 -0
  308. package/website/content/docs/architecture/execution-flow.md +335 -0
  309. package/website/content/docs/architecture/multi-agent-systems.md +737 -0
  310. package/website/content/docs/architecture/overview.md +121 -0
  311. package/website/content/docs/architecture/stack-integration.md +461 -0
  312. package/website/content/docs/changelog.md +246 -0
  313. package/website/content/docs/contributing.md +599 -0
  314. package/website/content/docs/core-concepts/project-structure.md +348 -0
  315. package/website/content/docs/ecosystem/framework-support.md +821 -0
  316. package/website/content/docs/ecosystem/overview.md +366 -0
  317. package/website/content/docs/examples/Migration-Guides.md +214 -0
  318. package/website/content/docs/examples.md +71 -0
  319. package/website/content/docs/for-audiences/Enterprises.md +256 -0
  320. package/website/content/docs/for-audiences/Students-Researchers.md +122 -0
  321. package/website/content/docs/for-audiences/architects.md +224 -0
  322. package/website/content/docs/for-audiences/developers.md +220 -0
  323. package/website/content/docs/getting-started/5-minute-overview.md +85 -0
  324. package/website/content/docs/getting-started/Hello-World.md +184 -0
  325. package/website/content/docs/getting-started/first-agent.md +196 -0
  326. package/website/content/docs/getting-started/installation.md +155 -0
  327. package/website/content/docs/getting-started/running-agents.md +107 -0
  328. package/website/content/docs/integrations/aiflow.md +104 -0
  329. package/website/content/docs/integrations/drupal.md +105 -0
  330. package/website/content/docs/migration-guides/00-index.md +76 -0
  331. package/website/content/docs/migration-guides/README.md +133 -0
  332. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +1750 -0
  333. package/website/content/docs/migration-guides/crewai-to-ossa.md +274 -0
  334. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +2017 -0
  335. package/website/content/docs/migration-guides/index.md +133 -0
  336. package/website/content/docs/migration-guides/langchain-to-ossa.md +1714 -0
  337. package/website/content/docs/migration-guides/langflow-to-ossa.md +2075 -0
  338. package/website/content/docs/migration-guides/openai-to-ossa.md +1202 -0
  339. package/website/content/docs/openapi-extensions/examples.md +550 -0
  340. package/website/content/docs/openapi-extensions/index.md +495 -0
  341. package/website/content/docs/openapi-extensions/operation-extensions.md +398 -0
  342. package/website/content/docs/openapi-extensions/root-extensions.md +364 -0
  343. package/website/content/docs/pre-release/index.md +175 -0
  344. package/website/content/docs/quick-reference.md +17 -0
  345. package/website/content/docs/schema-reference/agent-spec.md +406 -0
  346. package/website/content/docs/schema-reference/autonomy.md +568 -0
  347. package/website/content/docs/schema-reference/constraints.md +543 -0
  348. package/website/content/docs/schema-reference/index.md +176 -0
  349. package/website/content/docs/schema-reference/llm-config.md +445 -0
  350. package/website/content/docs/schema-reference/observability.md +654 -0
  351. package/website/content/docs/schema-reference/ossa-manifest.md +309 -0
  352. package/website/content/docs/schema-reference/taxonomy.md +509 -0
  353. package/website/content/docs/schema-reference/tools.md +628 -0
  354. package/website/content/docs/templates/blog-post.md +43 -0
  355. package/website/content/docs/use-cases/00-index.md +395 -0
  356. package/website/content/docs/use-cases/cicd-code-review.md +1236 -0
  357. package/website/content/docs/use-cases/customer-support.md +1234 -0
  358. package/website/content/docs/use-cases/enterprise-compliance.md +1208 -0
  359. package/website/content/docs/use-cases/research-multi-agent.md +1161 -0
  360. package/website/lib/version.ts +18 -0
  361. package/website/next.config.js +17 -0
  362. package/website/next.config.ts +16 -0
  363. package/website/nginx.conf +32 -0
  364. package/website/package-lock.json +9145 -0
  365. package/website/package.json +53 -0
  366. package/website/postcss.config.js +7 -0
  367. package/website/postcss.config.mjs +9 -0
  368. package/website/scripts/sync-version.js +44 -0
  369. package/website/scripts/sync-wiki.ts +261 -0
  370. package/website/tailwind.config.js +58 -0
  371. package/website/tailwind.config.ts +65 -0
@@ -0,0 +1,821 @@
1
+ ---
2
+ title: Framework Support
3
+ description: Detailed framework compatibility guide including migration paths, examples, and integration patterns for OSSA-compatible frameworks
4
+ ---
5
+
6
+ # Framework Support
7
+
8
+ This guide provides detailed information about OSSA compatibility with popular AI agent frameworks, including migration guides, examples, and best practices for each integration.
9
+
10
+ ## Support Matrix
11
+
12
+ | Framework | Status | OSSA Version | Migration Complexity | Documentation |
13
+ |-----------|--------|--------------|---------------------|---------------|
14
+ | kAgent | ✅ Native | 1.0.0+ | N/A (Native) | [Docs](#kagent) |
15
+ | LangChain | ✅ Supported | 1.0.0+ | Low | [Docs](#langchain) |
16
+ | CrewAI | ✅ Supported | 1.0.0+ | Medium | [Docs](#crewai) |
17
+ | Anthropic MCP | ✅ Supported | 1.0.0+ | Low | [Docs](#anthropic-mcp) |
18
+ | Langflow | ✅ Supported | 1.0.0+ | Low | [Docs](#langflow) |
19
+ | Drupal ECA | ✅ Supported | 1.0.0+ | Medium | [Docs](#drupal-eca) |
20
+ | OpenAI Assistants | ✅ Supported | 1.0.0+ | Medium | [Docs](#openai-assistants) |
21
+ | AutoGPT | 🔄 Planned | TBD | TBD | Coming Soon |
22
+ | BabyAGI | 🔄 Planned | TBD | TBD | Coming Soon |
23
+
24
+ **Legend:**
25
+ - ✅ **Native**: Built on OSSA from the ground up
26
+ - ✅ **Supported**: Full integration with adapter/bridge
27
+ - 🔄 **Planned**: Integration in progress
28
+ - ⚠️ **Beta**: Experimental support available
29
+ - ❌ **Not Supported**: No current integration plans
30
+
31
+ ---
32
+
33
+ ## kAgent {#kagent}
34
+
35
+ ### Overview
36
+
37
+ **kAgent** is a native OSSA implementation, designed from the ground up to follow the Open Standard Agents specification. It serves as the reference implementation and demonstrates best practices for OSSA-compliant agent development.
38
+
39
+ ### Key Features
40
+
41
+ - **Native OSSA Manifests**: No conversion needed - manifests are OSSA JSON/YAML
42
+ - **Full Specification Coverage**: Implements 100% of OSSA spec
43
+ - **TypeScript First**: Modern TypeScript with full type safety
44
+ - **MCP Integration**: Built-in Model Context Protocol support
45
+ - **Zero Dependencies**: Minimal runtime footprint
46
+
47
+ ### Installation
48
+
49
+ ```bash
50
+ npm install @bluefly/openstandardagents
51
+ # or
52
+ pnpm add @bluefly/openstandardagents
53
+ # or
54
+ yarn add @bluefly/openstandardagents
55
+ ```
56
+
57
+ ### Quick Start
58
+
59
+ ```typescript
60
+ import { OSSAAgent, OSSAManifest } from '@bluefly/openstandardagents';
61
+
62
+ // Load manifest
63
+ const manifest: OSSAManifest = {
64
+ ossa: '1.0.0',
65
+ name: 'research-assistant',
66
+ version: '1.0.0',
67
+ description: 'AI research assistant',
68
+ type: 'worker',
69
+ capabilities: {
70
+ tools: ['web-search', 'summarize'],
71
+ llm: {
72
+ provider: 'anthropic',
73
+ model: 'claude-3-5-sonnet-20241022',
74
+ },
75
+ },
76
+ };
77
+
78
+ // Create agent
79
+ const agent = new OSSAAgent(manifest);
80
+
81
+ // Execute task
82
+ const result = await agent.execute({
83
+ task: 'Research the latest developments in quantum computing',
84
+ context: {},
85
+ });
86
+
87
+ console.log(result);
88
+ ```
89
+
90
+ ### Example Manifest
91
+
92
+ ```json
93
+ {
94
+ "ossa": "1.0.0",
95
+ "name": "data-analyst",
96
+ "version": "1.2.0",
97
+ "description": "Data analysis and visualization agent",
98
+ "type": "worker",
99
+ "author": {
100
+ "name": "OSSA Team",
101
+ "email": "team@openstandardagents.org"
102
+ },
103
+ "capabilities": {
104
+ "tools": [
105
+ {
106
+ "name": "query-database",
107
+ "type": "function",
108
+ "description": "Query PostgreSQL database",
109
+ "parameters": {
110
+ "type": "object",
111
+ "properties": {
112
+ "query": { "type": "string" }
113
+ }
114
+ }
115
+ },
116
+ {
117
+ "name": "create-chart",
118
+ "type": "mcp",
119
+ "server": "visualization-mcp"
120
+ }
121
+ ],
122
+ "llm": {
123
+ "provider": "anthropic",
124
+ "model": "claude-3-5-sonnet-20241022",
125
+ "temperature": 0.7
126
+ }
127
+ },
128
+ "runtime": {
129
+ "environment": "node",
130
+ "version": ">=18.0.0"
131
+ }
132
+ }
133
+ ```
134
+
135
+ ### Documentation
136
+
137
+ - **Repository**: [github.com/blueflyio/kagent](https://github.com/blueflyio/kagent)
138
+ - **API Reference**: [docs.openstandardagents.org/kagent/api](https://openstandardagents.org/docs/kagent/api)
139
+ - **Examples**: [examples/kagent/](https://github.com/blueflyio/openstandardagents/tree/main/examples/kagent)
140
+
141
+ ---
142
+
143
+ ## LangChain {#langchain}
144
+
145
+ ### Overview
146
+
147
+ **LangChain** is one of the most popular AI agent frameworks. OSSA provides a bidirectional bridge for converting LangChain agents to/from OSSA manifests.
148
+
149
+ ### Migration Complexity
150
+
151
+ **Low** - LangChain's chain-based architecture maps cleanly to OSSA's tool and capability model.
152
+
153
+ ### Installation
154
+
155
+ ```bash
156
+ npm install @ossa/langchain langchain
157
+ # or
158
+ pip install ossa-langchain langchain
159
+ ```
160
+
161
+ ### Converting LangChain to OSSA
162
+
163
+ ```typescript
164
+ import { LangChainToOSSA } from '@ossa/langchain';
165
+ import { ChatAnthropic } from '@langchain/anthropic';
166
+ import { DuckDuckGoSearch } from '@langchain/community/tools/duckduckgo_search';
167
+
168
+ // Create LangChain agent
169
+ const llm = new ChatAnthropic({
170
+ model: 'claude-3-5-sonnet-20241022',
171
+ });
172
+
173
+ const tools = [new DuckDuckGoSearch()];
174
+
175
+ // Convert to OSSA
176
+ const converter = new LangChainToOSSA();
177
+ const manifest = await converter.convert({
178
+ llm,
179
+ tools,
180
+ name: 'research-agent',
181
+ description: 'Web research assistant',
182
+ });
183
+
184
+ // Save manifest
185
+ await manifest.save('research-agent.json');
186
+ ```
187
+
188
+ ### Converting OSSA to LangChain
189
+
190
+ ```typescript
191
+ import { OSSAToLangChain } from '@ossa/langchain';
192
+ import { OSSAManifest } from '@ossa/core';
193
+
194
+ // Load OSSA manifest
195
+ const manifest = await OSSAManifest.load('research-agent.json');
196
+
197
+ // Convert to LangChain
198
+ const converter = new OSSAToLangChain();
199
+ const agent = await converter.convert(manifest);
200
+
201
+ // Use LangChain agent
202
+ const result = await agent.invoke({
203
+ input: 'What are the latest AI research papers?',
204
+ });
205
+
206
+ console.log(result);
207
+ ```
208
+
209
+ ### Python Example
210
+
211
+ ```python
212
+ from ossa_langchain import LangChainToOSSA, OSSAToLangChain
213
+ from langchain_anthropic import ChatAnthropic
214
+ from langchain.agents import initialize_agent, AgentType
215
+ from langchain.tools import DuckDuckGoSearchRun
216
+
217
+ # Create LangChain agent
218
+ llm = ChatAnthropic(model="claude-3-5-sonnet-20241022")
219
+ tools = [DuckDuckGoSearchRun()]
220
+ agent = initialize_agent(tools, llm, agent=AgentType.ZERO_SHOT_REACT_DESCRIPTION)
221
+
222
+ # Convert to OSSA
223
+ converter = LangChainToOSSA()
224
+ manifest = converter.convert(agent, name="research-agent")
225
+ manifest.save("research-agent.json")
226
+
227
+ # Later: Convert back to LangChain
228
+ manifest = OSSAManifest.load("research-agent.json")
229
+ converter = OSSAToLangChain()
230
+ agent = converter.convert(manifest)
231
+ result = agent.invoke("What are the latest AI research papers?")
232
+ ```
233
+
234
+ ### Example Manifest
235
+
236
+ See [examples/langchain/](https://github.com/blueflyio/openstandardagents/tree/main/examples/langchain) for complete examples.
237
+
238
+ ### Documentation
239
+
240
+ - **Integration Guide**: [docs.openstandardagents.org/langchain](https://openstandardagents.org/docs/langchain)
241
+ - **LangChain Docs**: [python.langchain.com](https://python.langchain.com)
242
+
243
+ ---
244
+
245
+ ## CrewAI {#crewai}
246
+
247
+ ### Overview
248
+
249
+ **CrewAI** specializes in multi-agent coordination. OSSA supports CrewAI crews with agent orchestration and inter-agent communication.
250
+
251
+ ### Migration Complexity
252
+
253
+ **Medium** - CrewAI's crew concept requires mapping to OSSA's orchestrator type.
254
+
255
+ ### Installation
256
+
257
+ ```bash
258
+ pip install ossa-crewai crewai
259
+ ```
260
+
261
+ ### Converting CrewAI to OSSA
262
+
263
+ ```python
264
+ from ossa_crewai import CrewAIToOSSA
265
+ from crewai import Agent, Task, Crew
266
+
267
+ # Define CrewAI agents
268
+ researcher = Agent(
269
+ role='Researcher',
270
+ goal='Research the topic thoroughly',
271
+ backstory='Expert researcher with attention to detail',
272
+ )
273
+
274
+ writer = Agent(
275
+ role='Writer',
276
+ goal='Write engaging content',
277
+ backstory='Professional content writer',
278
+ )
279
+
280
+ # Define tasks
281
+ research_task = Task(
282
+ description='Research quantum computing',
283
+ agent=researcher,
284
+ )
285
+
286
+ write_task = Task(
287
+ description='Write article based on research',
288
+ agent=writer,
289
+ )
290
+
291
+ # Create crew
292
+ crew = Crew(
293
+ agents=[researcher, writer],
294
+ tasks=[research_task, write_task],
295
+ )
296
+
297
+ # Convert to OSSA
298
+ converter = CrewAIToOSSA()
299
+ manifest = converter.convert(crew, name="content-crew")
300
+ manifest.save("content-crew.json")
301
+ ```
302
+
303
+ ### Converting OSSA to CrewAI
304
+
305
+ ```python
306
+ from ossa_crewai import OSSAToCrewAI
307
+ from ossa.core import OSSAManifest
308
+
309
+ # Load OSSA manifest
310
+ manifest = OSSAManifest.load("content-crew.json")
311
+
312
+ # Convert to CrewAI
313
+ converter = OSSAToCrewAI()
314
+ crew = converter.convert(manifest)
315
+
316
+ # Run crew
317
+ result = crew.kickoff()
318
+ print(result)
319
+ ```
320
+
321
+ ### Example Manifest
322
+
323
+ ```json
324
+ {
325
+ "ossa": "1.0.0",
326
+ "name": "content-crew",
327
+ "version": "1.0.0",
328
+ "type": "orchestrator",
329
+ "description": "Multi-agent content creation crew",
330
+ "agents": [
331
+ {
332
+ "id": "researcher",
333
+ "role": "Researcher",
334
+ "goal": "Research the topic thoroughly",
335
+ "backstory": "Expert researcher with attention to detail",
336
+ "tools": ["web-search", "arxiv-search"],
337
+ "llm": {
338
+ "provider": "anthropic",
339
+ "model": "claude-3-5-sonnet-20241022"
340
+ }
341
+ },
342
+ {
343
+ "id": "writer",
344
+ "role": "Writer",
345
+ "goal": "Write engaging content",
346
+ "backstory": "Professional content writer",
347
+ "tools": ["grammar-check", "plagiarism-check"],
348
+ "llm": {
349
+ "provider": "anthropic",
350
+ "model": "claude-3-5-sonnet-20241022"
351
+ }
352
+ }
353
+ ],
354
+ "workflow": {
355
+ "steps": [
356
+ {
357
+ "agent": "researcher",
358
+ "task": "Research the topic",
359
+ "output": "research_findings"
360
+ },
361
+ {
362
+ "agent": "writer",
363
+ "task": "Write article based on research",
364
+ "input": "research_findings",
365
+ "output": "final_article"
366
+ }
367
+ ]
368
+ }
369
+ }
370
+ ```
371
+
372
+ ### Documentation
373
+
374
+ - **Integration Guide**: [docs.openstandardagents.org/crewai](https://openstandardagents.org/docs/crewai)
375
+ - **CrewAI Docs**: [docs.crewai.com](https://docs.crewai.com)
376
+
377
+ ---
378
+
379
+ ## Anthropic MCP {#anthropic-mcp}
380
+
381
+ ### Overview
382
+
383
+ **Anthropic's Model Context Protocol (MCP)** provides standardized interfaces for AI model interactions. OSSA has first-class MCP support for Claude and other Anthropic models.
384
+
385
+ ### Migration Complexity
386
+
387
+ **Low** - MCP's tool protocol aligns naturally with OSSA's tool capabilities.
388
+
389
+ ### Installation
390
+
391
+ ```bash
392
+ npm install @ossa/mcp @anthropic-ai/sdk
393
+ ```
394
+
395
+ ### Using MCP Servers in OSSA
396
+
397
+ ```typescript
398
+ import { OSSAAgent } from '@bluefly/openstandardagents';
399
+ import { MCPServerRegistry } from '@ossa/mcp';
400
+
401
+ // Register MCP servers
402
+ const registry = new MCPServerRegistry();
403
+ await registry.register({
404
+ name: 'filesystem',
405
+ transport: 'stdio',
406
+ command: 'npx',
407
+ args: ['-y', '@modelcontextprotocol/server-filesystem', '/tmp'],
408
+ });
409
+
410
+ // Create OSSA agent with MCP tools
411
+ const manifest = {
412
+ ossa: '1.0.0',
413
+ name: 'file-manager',
414
+ version: '1.0.0',
415
+ type: 'worker',
416
+ capabilities: {
417
+ tools: [
418
+ {
419
+ type: 'mcp',
420
+ server: 'filesystem',
421
+ tools: ['read_file', 'write_file', 'list_directory'],
422
+ },
423
+ ],
424
+ llm: {
425
+ provider: 'anthropic',
426
+ model: 'claude-3-5-sonnet-20241022',
427
+ },
428
+ },
429
+ mcp: {
430
+ servers: {
431
+ filesystem: {
432
+ transport: 'stdio',
433
+ command: 'npx',
434
+ args: ['-y', '@modelcontextprotocol/server-filesystem', '/tmp'],
435
+ },
436
+ },
437
+ },
438
+ };
439
+
440
+ const agent = new OSSAAgent(manifest);
441
+ await agent.execute({ task: 'List all files in the directory' });
442
+ ```
443
+
444
+ ### Example Manifest
445
+
446
+ ```json
447
+ {
448
+ "ossa": "1.0.0",
449
+ "name": "data-processor",
450
+ "version": "1.0.0",
451
+ "type": "worker",
452
+ "capabilities": {
453
+ "tools": [
454
+ {
455
+ "type": "mcp",
456
+ "server": "postgres",
457
+ "tools": ["query", "list_tables"]
458
+ },
459
+ {
460
+ "type": "mcp",
461
+ "server": "redis",
462
+ "tools": ["get", "set", "delete"]
463
+ }
464
+ ],
465
+ "llm": {
466
+ "provider": "anthropic",
467
+ "model": "claude-3-5-sonnet-20241022"
468
+ }
469
+ },
470
+ "mcp": {
471
+ "servers": {
472
+ "postgres": {
473
+ "transport": "stdio",
474
+ "command": "mcp-server-postgres",
475
+ "env": {
476
+ "POSTGRES_URL": "${POSTGRES_URL}"
477
+ }
478
+ },
479
+ "redis": {
480
+ "transport": "stdio",
481
+ "command": "mcp-server-redis",
482
+ "env": {
483
+ "REDIS_URL": "${REDIS_URL}"
484
+ }
485
+ }
486
+ }
487
+ }
488
+ }
489
+ ```
490
+
491
+ ### Documentation
492
+
493
+ - **MCP Specification**: [modelcontextprotocol.io](https://modelcontextprotocol.io)
494
+ - **OSSA MCP Guide**: [docs.openstandardagents.org/mcp](https://openstandardagents.org/docs/mcp)
495
+
496
+ ---
497
+
498
+ ## Langflow {#langflow}
499
+
500
+ ### Overview
501
+
502
+ **Langflow** is a visual flow-based builder for AI agents. OSSA supports exporting Langflow flows as OSSA manifests.
503
+
504
+ ### Migration Complexity
505
+
506
+ **Low** - Langflow's visual flows map to OSSA's workflow steps.
507
+
508
+ ### Installation
509
+
510
+ ```bash
511
+ pip install ossa-langflow langflow
512
+ ```
513
+
514
+ ### Exporting Langflow to OSSA
515
+
516
+ ```python
517
+ from ossa_langflow import LangflowToOSSA
518
+ import json
519
+
520
+ # Load Langflow flow (exported JSON)
521
+ with open('flow.json') as f:
522
+ flow = json.load(f)
523
+
524
+ # Convert to OSSA
525
+ converter = LangflowToOSSA()
526
+ manifest = converter.convert(flow, name="visual-agent")
527
+ manifest.save("visual-agent.json")
528
+ ```
529
+
530
+ ### Importing OSSA to Langflow
531
+
532
+ ```python
533
+ from ossa_langflow import OSSAToLangflow
534
+ from ossa.core import OSSAManifest
535
+
536
+ # Load OSSA manifest
537
+ manifest = OSSAManifest.load("visual-agent.json")
538
+
539
+ # Convert to Langflow
540
+ converter = OSSAToLangflow()
541
+ flow = converter.convert(manifest)
542
+
543
+ # Save Langflow flow
544
+ with open('flow.json', 'w') as f:
545
+ json.dump(flow, f, indent=2)
546
+ ```
547
+
548
+ ### Documentation
549
+
550
+ - **Langflow Docs**: [docs.langflow.org](https://docs.langflow.org)
551
+ - **OSSA Langflow Guide**: [docs.openstandardagents.org/langflow](https://openstandardagents.org/docs/langflow)
552
+
553
+ ---
554
+
555
+ ## Drupal ECA {#drupal-eca}
556
+
557
+ ### Overview
558
+
559
+ **Drupal ECA (Event-Condition-Action)** is a powerful rule-based automation framework for Drupal. OSSA integrates with ECA to enable AI-powered Drupal workflows.
560
+
561
+ ### Migration Complexity
562
+
563
+ **Medium** - Mapping ECA's event-driven model to OSSA requires workflow orchestration.
564
+
565
+ ### Installation
566
+
567
+ ```bash
568
+ composer require ossa/drupal-eca
569
+ drush pm:enable ossa_eca
570
+ ```
571
+
572
+ ### Creating OSSA-Enabled ECA Rules
573
+
574
+ ```yaml
575
+ # eca_config.yml
576
+ name: Content Moderation Agent
577
+ description: AI-powered content review and moderation
578
+ trigger:
579
+ event: node_presave
580
+ entity_type: node
581
+ bundle: article
582
+ conditions:
583
+ - plugin: entity_field_value
584
+ field: status
585
+ value: draft
586
+ actions:
587
+ - plugin: ossa_agent_execute
588
+ agent_manifest: /path/to/moderator-agent.json
589
+ input:
590
+ title: "[node:title]"
591
+ body: "[node:body:value]"
592
+ output_mapping:
593
+ approved: field_moderation_status
594
+ feedback: field_ai_feedback
595
+ ```
596
+
597
+ ### OSSA Manifest for Drupal
598
+
599
+ ```json
600
+ {
601
+ "ossa": "1.0.0",
602
+ "name": "drupal-content-moderator",
603
+ "version": "1.0.0",
604
+ "type": "worker",
605
+ "description": "AI content moderation for Drupal",
606
+ "capabilities": {
607
+ "tools": [
608
+ {
609
+ "name": "drupal-api",
610
+ "type": "rest",
611
+ "baseUrl": "${DRUPAL_BASE_URL}",
612
+ "auth": {
613
+ "type": "bearer",
614
+ "token": "${DRUPAL_API_TOKEN}"
615
+ }
616
+ },
617
+ {
618
+ "name": "check-guidelines",
619
+ "type": "function",
620
+ "description": "Check content against editorial guidelines"
621
+ }
622
+ ],
623
+ "llm": {
624
+ "provider": "anthropic",
625
+ "model": "claude-3-5-sonnet-20241022"
626
+ }
627
+ },
628
+ "runtime": {
629
+ "environment": "php",
630
+ "version": ">=8.1"
631
+ }
632
+ }
633
+ ```
634
+
635
+ ### Documentation
636
+
637
+ - **Drupal ECA**: [drupal.org/project/eca](https://drupal.org/project/eca)
638
+ - **OSSA Drupal Guide**: [docs.openstandardagents.org/drupal](https://openstandardagents.org/docs/drupal)
639
+
640
+ ---
641
+
642
+ ## OpenAI Assistants {#openai-assistants}
643
+
644
+ ### Overview
645
+
646
+ **OpenAI Assistants API** provides managed AI assistants with built-in tools. OSSA enables local definitions and deployment flexibility.
647
+
648
+ ### Migration Complexity
649
+
650
+ **Medium** - OpenAI's proprietary format requires translation to OSSA standard.
651
+
652
+ ### Installation
653
+
654
+ ```bash
655
+ npm install @ossa/openai openai
656
+ # or
657
+ pip install ossa-openai openai
658
+ ```
659
+
660
+ ### Converting OpenAI Assistant to OSSA
661
+
662
+ ```typescript
663
+ import { OpenAIToOSSA } from '@ossa/openai';
664
+ import OpenAI from 'openai';
665
+
666
+ const openai = new OpenAI();
667
+
668
+ // Retrieve OpenAI Assistant
669
+ const assistant = await openai.beta.assistants.retrieve('asst_abc123');
670
+
671
+ // Convert to OSSA
672
+ const converter = new OpenAIToOSSA();
673
+ const manifest = converter.convert(assistant);
674
+
675
+ // Save manifest
676
+ await manifest.save('assistant.json');
677
+ ```
678
+
679
+ ### Converting OSSA to OpenAI Assistant
680
+
681
+ ```typescript
682
+ import { OSSAToOpenAI } from '@ossa/openai';
683
+ import { OSSAManifest } from '@ossa/core';
684
+ import OpenAI from 'openai';
685
+
686
+ const openai = new OpenAI();
687
+
688
+ // Load OSSA manifest
689
+ const manifest = await OSSAManifest.load('assistant.json');
690
+
691
+ // Convert to OpenAI Assistant
692
+ const converter = new OSSAToOpenAI();
693
+ const assistantConfig = converter.convert(manifest);
694
+
695
+ // Create OpenAI Assistant
696
+ const assistant = await openai.beta.assistants.create(assistantConfig);
697
+ console.log(`Created assistant: ${assistant.id}`);
698
+ ```
699
+
700
+ ### Example Manifest
701
+
702
+ ```json
703
+ {
704
+ "ossa": "1.0.0",
705
+ "name": "code-reviewer",
706
+ "version": "1.0.0",
707
+ "type": "worker",
708
+ "description": "AI code review assistant",
709
+ "capabilities": {
710
+ "tools": [
711
+ {
712
+ "type": "code_interpreter",
713
+ "enabled": true
714
+ },
715
+ {
716
+ "type": "file_search",
717
+ "enabled": true
718
+ }
719
+ ],
720
+ "llm": {
721
+ "provider": "openai",
722
+ "model": "gpt-4-turbo-preview",
723
+ "temperature": 0.7,
724
+ "instructions": "You are an expert code reviewer. Analyze code for best practices, security issues, and performance optimizations."
725
+ }
726
+ },
727
+ "files": {
728
+ "vector_store": "vs_abc123"
729
+ }
730
+ }
731
+ ```
732
+
733
+ ### Documentation
734
+
735
+ - **OpenAI Assistants**: [platform.openai.com/docs/assistants](https://platform.openai.com/docs/assistants)
736
+ - **OSSA OpenAI Guide**: [docs.openstandardagents.org/openai](https://openstandardagents.org/docs/openai)
737
+
738
+ ---
739
+
740
+ ## Framework Comparison
741
+
742
+ | Feature | kAgent | LangChain | CrewAI | MCP | Langflow | Drupal ECA | OpenAI |
743
+ |---------|--------|-----------|--------|-----|----------|------------|--------|
744
+ | OSSA Native | ✅ | ❌ | ❌ | ✅ | ❌ | ❌ | ❌ |
745
+ | Multi-Agent | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
746
+ | Visual Builder | ❌ | ❌ | ❌ | ❌ | ✅ | ✅ | ❌ |
747
+ | TypeScript | ✅ | ✅ | ❌ | ✅ | ❌ | ❌ | ✅ |
748
+ | Python | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ |
749
+ | Self-Hosted | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ |
750
+ | Cloud Managed | ✅ | ✅ | ✅ | ❌ | ✅ | ❌ | ✅ |
751
+
752
+ ---
753
+
754
+ ## Migration Strategies
755
+
756
+ ### Gradual Migration
757
+
758
+ Adopt OSSA incrementally:
759
+
760
+ 1. **Start with new agents**: Build new agents using OSSA
761
+ 2. **Convert high-value agents**: Migrate critical agents first
762
+ 3. **Maintain compatibility**: Run OSSA and native formats in parallel
763
+ 4. **Complete migration**: Fully transition to OSSA
764
+
765
+ ### Framework Coexistence
766
+
767
+ Run multiple frameworks simultaneously:
768
+
769
+ ```json
770
+ {
771
+ "ossa": "1.0.0",
772
+ "name": "hybrid-system",
773
+ "type": "orchestrator",
774
+ "agents": [
775
+ { "id": "langchain-agent", "framework": "langchain" },
776
+ { "id": "crewai-crew", "framework": "crewai" },
777
+ { "id": "native-agent", "framework": "kagent" }
778
+ ]
779
+ }
780
+ ```
781
+
782
+ ### Testing Strategy
783
+
784
+ Validate migrations:
785
+
786
+ 1. **Schema Validation**: Ensure manifest compliance
787
+ 2. **Functional Testing**: Verify agent behavior
788
+ 3. **Performance Testing**: Compare metrics
789
+ 4. **Integration Testing**: Test framework interop
790
+
791
+ ---
792
+
793
+ ## Support & Resources
794
+
795
+ ### Getting Help
796
+
797
+ - **Discord**: [discord.gg/ossa](https://github.com/blueflyio/openstandardagents/discussions) - Real-time community support
798
+ - **GitHub Issues**: [GitHub Issues](https://github.com/blueflyio/openstandardagents/issues) - Bug reports and feature requests
799
+ - **Documentation**: [docs.openstandardagents.org](https://docs.openstandardagents.org) - Comprehensive guides
800
+
801
+ ### Contributing
802
+
803
+ Help improve framework integrations:
804
+
805
+ - **Report compatibility issues**
806
+ - **Submit integration PRs**
807
+ - **Share migration experiences**
808
+ - **Contribute examples**
809
+
810
+ ### Requesting New Integrations
811
+
812
+ To request support for a new framework:
813
+
814
+ 1. **Open GitLab issue** with `integration-request` label
815
+ 2. **Provide framework details**: Name, repo, community size
816
+ 3. **Describe use case**: Why this integration matters
817
+ 4. **Offer to help**: Contribute to integration development
818
+
819
+ ---
820
+
821
+ **Next Steps**: Explore [Runtime Deployment](/docs/getting-started/installation) to learn about deploying OSSA agents.