@bluefly/openstandardagents 0.2.5-RC → 0.2.8

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 (365) hide show
  1. package/.devfile.yaml +1 -1
  2. package/.env.example +1 -1
  3. package/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.yml +40 -0
  5. package/.github/workflows/dependabot-comment.yml +34 -0
  6. package/.github/workflows/pr-comment.yml +33 -0
  7. package/.husky/pre-commit +5 -0
  8. package/.kiro/config.json +21 -0
  9. package/.kiro/settings/mcp.json +61 -0
  10. package/.kiro/specs/scripts-migration-api-first/design.md +883 -0
  11. package/.kiro/specs/scripts-migration-api-first/requirements.md +165 -0
  12. package/.kiro/specs/scripts-migration-api-first/tasks.md +539 -0
  13. package/.kiro/specs/{website-design-audit → website-brand-identity}/design.md +381 -0
  14. package/.kiro/specs/{website-design-audit → website-brand-identity}/requirements.md +88 -0
  15. package/.kiro/specs/website-brand-identity/tasks.md +981 -0
  16. package/.version.json +2 -2
  17. package/.wiki-config.json +24 -0
  18. package/CHANGELOG.md +34 -18
  19. package/CODEOWNERS +75 -0
  20. package/CONTRIBUTING.md +1 -1
  21. package/README.md +176 -239
  22. package/bin/ossa-dev +42 -0
  23. package/bin/ossa-export +32 -0
  24. package/bin/ossa-generate +60 -0
  25. package/bin/ossa-health +40 -0
  26. package/bin/ossa-init +26 -0
  27. package/dist/index.d.ts +1 -0
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +2 -0
  30. package/dist/index.js.map +1 -1
  31. package/dist/repositories/schema.repository.d.ts +6 -1
  32. package/dist/repositories/schema.repository.d.ts.map +1 -1
  33. package/dist/repositories/schema.repository.js +63 -36
  34. package/dist/repositories/schema.repository.js.map +1 -1
  35. package/dist/services/github-sync/github-client.d.ts +14 -0
  36. package/dist/services/github-sync/github-client.d.ts.map +1 -0
  37. package/dist/services/github-sync/github-client.js +41 -0
  38. package/dist/services/github-sync/github-client.js.map +1 -0
  39. package/dist/services/github-sync/gitlab-client.d.ts +17 -0
  40. package/dist/services/github-sync/gitlab-client.d.ts.map +1 -0
  41. package/dist/services/github-sync/gitlab-client.js +42 -0
  42. package/dist/services/github-sync/gitlab-client.js.map +1 -0
  43. package/dist/services/github-sync/schemas.d.ts +46 -0
  44. package/dist/services/github-sync/schemas.d.ts.map +1 -0
  45. package/dist/services/github-sync/schemas.js +36 -0
  46. package/dist/services/github-sync/schemas.js.map +1 -0
  47. package/dist/services/github-sync/sync.service.d.ts +27 -0
  48. package/dist/services/github-sync/sync.service.d.ts.map +1 -0
  49. package/dist/services/github-sync/sync.service.js +99 -0
  50. package/dist/services/github-sync/sync.service.js.map +1 -0
  51. package/dist/services/migration.service.d.ts +4 -3
  52. package/dist/services/migration.service.d.ts.map +1 -1
  53. package/dist/services/migration.service.js +11 -10
  54. package/dist/services/migration.service.js.map +1 -1
  55. package/dist/services/release-automation/release.service.js +1 -1
  56. package/dist/services/release-automation/release.service.js.map +1 -1
  57. package/dist/services/release-automation/schemas/release.schema.js +1 -1
  58. package/dist/services/runtime/claude/capability-mapper.d.ts +84 -0
  59. package/dist/services/runtime/claude/capability-mapper.d.ts.map +1 -0
  60. package/dist/services/runtime/claude/capability-mapper.js +245 -0
  61. package/dist/services/runtime/claude/capability-mapper.js.map +1 -0
  62. package/dist/services/runtime/claude/claude-adapter.d.ts +80 -0
  63. package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -0
  64. package/dist/services/runtime/claude/claude-adapter.js +287 -0
  65. package/dist/services/runtime/claude/claude-adapter.js.map +1 -0
  66. package/dist/services/runtime/claude/manifest-parser.d.ts +77 -0
  67. package/dist/services/runtime/claude/manifest-parser.d.ts.map +1 -0
  68. package/dist/services/runtime/claude/manifest-parser.js +169 -0
  69. package/dist/services/runtime/claude/manifest-parser.js.map +1 -0
  70. package/dist/services/runtime/claude/types.d.ts +115 -0
  71. package/dist/services/runtime/claude/types.d.ts.map +1 -0
  72. package/dist/services/runtime/claude/types.js +6 -0
  73. package/dist/services/runtime/claude/types.js.map +1 -0
  74. package/dist/services/validation.service.d.ts.map +1 -1
  75. package/dist/services/validation.service.js +12 -1
  76. package/dist/services/validation.service.js.map +1 -1
  77. package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  78. package/dist/spec/v0.2.6/CHANGELOG.md +401 -0
  79. package/dist/spec/v0.2.6/README.md +72 -0
  80. package/dist/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  81. package/dist/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  82. package/dist/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
  83. package/dist/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  84. package/dist/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  85. package/dist/spec/v0.2.6-dev/README.md +75 -0
  86. package/dist/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  87. package/dist/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  88. package/dist/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  89. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  90. package/dist/spec/v0.2.7/core/agentgraph.md +324 -0
  91. package/dist/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  92. package/dist/spec/v0.2.8/CHANGELOG.md +401 -0
  93. package/dist/spec/v0.2.8/README.md +72 -0
  94. package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  95. package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  96. package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  97. package/dist/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
  98. package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  99. package/dist/types/index.d.ts +3 -2
  100. package/dist/types/index.d.ts.map +1 -1
  101. package/dist/utils/index.d.ts +6 -0
  102. package/dist/utils/index.d.ts.map +1 -0
  103. package/dist/utils/index.js +6 -0
  104. package/dist/utils/index.js.map +1 -0
  105. package/dist/utils/version.d.ts +68 -0
  106. package/dist/utils/version.d.ts.map +1 -0
  107. package/dist/utils/version.js +156 -0
  108. package/dist/utils/version.js.map +1 -0
  109. package/docs/brand-guide/01-brand-overview.md +37 -0
  110. package/docs/brand-guide/02-logo-usage.md +43 -0
  111. package/docs/brand-guide/03-color-palette.md +70 -0
  112. package/docs/brand-guide/04-typography.md +82 -0
  113. package/docs/brand-guide/05-voice-and-tone.md +108 -0
  114. package/docs/brand-guide/06-visual-elements.md +137 -0
  115. package/docs/brand-guide/07-application-examples.md +153 -0
  116. package/docs/brand-guide/OssaLogo/OssA_Logo.svg +21 -0
  117. package/docs/brand-guide/OssaLogo/brand.af +0 -0
  118. package/docs/brand-guide/README.md +107 -0
  119. package/docs/comparison.md +315 -0
  120. package/docs/operations/automation-roadmap.md +245 -0
  121. package/docs/operations/github-sync-strategy.md +357 -0
  122. package/eslint-report.json +1 -0
  123. package/examples/adk-integration/code-review-workflow.yml +1 -1
  124. package/examples/adk-integration/customer-support.yml +1 -1
  125. package/examples/adk-integration/data-pipeline.yml +1 -1
  126. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  127. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  128. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  129. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  130. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  131. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  132. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  133. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  134. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  135. package/examples/anthropic/claude-assistant.ossa.json +5 -4
  136. package/examples/autogen/multi-agent.ossa.json +6 -4
  137. package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
  138. package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
  139. package/examples/common_npm/agent-router.ossa.yaml +1 -0
  140. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
  141. package/examples/crewai/research-team.ossa.json +14 -5
  142. package/examples/cursor/code-review-agent.ossa.json +21 -6
  143. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
  144. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
  145. package/examples/extensions/drupal-v1.yml +1 -1
  146. package/examples/extensions/kagent-v1.yml +1 -1
  147. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  148. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  149. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  150. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  151. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  152. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -0
  153. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
  154. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  155. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  156. package/examples/langchain/chain-agent.ossa.json +21 -5
  157. package/examples/langflow/workflow-agent.ossa.json +2 -3
  158. package/examples/langgraph/state-machine-agent.ossa.json +2 -3
  159. package/examples/llamaindex/rag-agent.ossa.json +2 -3
  160. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  161. package/examples/multi-agent/README.md +74 -0
  162. package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
  163. package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
  164. package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
  165. package/examples/openai/basic-agent.ossa.yaml +1 -1
  166. package/examples/openai/multi-tool-agent.ossa.json +33 -10
  167. package/examples/openai/swarm-agent.ossa.json +18 -5
  168. package/examples/production/document-analyzer-openai.yml +1 -1
  169. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  170. package/examples/spec-examples/audit-agent.yml +1 -1
  171. package/examples/spec-examples/chat-agent.yml +1 -1
  172. package/examples/spec-examples/compliance-agent.yml +1 -1
  173. package/examples/spec-examples/monitoring-agent.yml +1 -1
  174. package/examples/spec-examples/workflow-agent.yml +1 -1
  175. package/examples/templates/ossa-compliance.yaml +1 -1
  176. package/examples/vercel/edge-agent.ossa.json +5 -4
  177. package/gl-code-quality-report.json +62 -0
  178. package/llms-ctx-full.txt +39 -0
  179. package/llms-ctx.txt +39 -0
  180. package/llms.txt +47 -0
  181. package/openapi/github-sync.yaml +115 -0
  182. package/package.json +26 -4
  183. package/scripts/README.md +103 -0
  184. package/scripts/auto-rebase-mrs.ts +106 -0
  185. package/scripts/batch-dependabot.sh +57 -0
  186. package/scripts/configure-gitlab-branch-protection.ts +95 -0
  187. package/scripts/create-issue-helper.ts +238 -0
  188. package/scripts/create-milestone-issue.ts +73 -0
  189. package/scripts/eslint-to-codequality.cjs +34 -0
  190. package/scripts/fix-schema-formats.js +82 -0
  191. package/scripts/generate-agents-catalog.ts +77 -0
  192. package/scripts/generate-api-docs.ts +218 -0
  193. package/scripts/generate-cli-docs.ts +410 -0
  194. package/scripts/generate-config-docs.ts +109 -0
  195. package/scripts/generate-errors-docs.ts +76 -0
  196. package/scripts/generate-examples-docs.ts +99 -0
  197. package/scripts/generate-llms-ctx.sh +17 -0
  198. package/scripts/generate-schema-docs.ts +317 -0
  199. package/scripts/generate-types-docs.ts +48 -0
  200. package/scripts/lowercase-docs.ts +43 -0
  201. package/scripts/manage-milestone-mrs.ts +279 -0
  202. package/scripts/rebase-all-mrs.sh +75 -0
  203. package/scripts/sync-github-pr.sh +48 -0
  204. package/scripts/sync-version.js +32 -0
  205. package/scripts/sync-wiki.sh +50 -0
  206. package/scripts/validate-all.js +127 -0
  207. package/scripts/validate-schema.ts +2 -1
  208. package/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  209. package/spec/v0.2.6/CHANGELOG.md +401 -0
  210. package/spec/v0.2.6/README.md +72 -0
  211. package/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  212. package/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  213. package/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
  214. package/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  215. package/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  216. package/spec/v0.2.6-dev/README.md +75 -0
  217. package/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  218. package/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  219. package/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  220. package/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  221. package/spec/v0.2.7/core/agentgraph.md +324 -0
  222. package/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  223. package/spec/v0.2.8/CHANGELOG.md +401 -0
  224. package/spec/v0.2.8/README.md +72 -0
  225. package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  226. package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  227. package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  228. package/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
  229. package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  230. package/test-results/junit.xml +299 -0
  231. package/.kiro/specs/agent-buildkit-templates/design.md +0 -495
  232. package/.kiro/specs/agent-buildkit-templates/requirements.md +0 -165
  233. package/.kiro/specs/kiro-ide-supercharger/README.md +0 -202
  234. package/.kiro/specs/kiro-ide-supercharger/design.md +0 -1005
  235. package/.kiro/specs/kiro-ide-supercharger/requirements.md +0 -141
  236. package/.kiro/specs/kiro-ide-supercharger/tasks.md +0 -507
  237. package/bin/validate-ossa-0.2.5-RC.ts +0 -244
  238. package/docs/issue-19-completion-summary.md +0 -648
  239. package/docs/issue-19-validation.md +0 -351
  240. package/scripts/lib/exec.ts +0 -37
  241. package/scripts/lib/file-ops.ts +0 -58
  242. package/scripts/lib/version.ts +0 -83
  243. package/website/.lighthouserc.ts +0 -24
  244. package/website/.prettierrc +0 -10
  245. package/website/Dockerfile +0 -30
  246. package/website/app/about/page.tsx +0 -295
  247. package/website/app/blog/[slug]/page.tsx +0 -208
  248. package/website/app/blog/page.tsx +0 -249
  249. package/website/app/design-guide/page.tsx +0 -511
  250. package/website/app/docs/[[...slug]]/page.tsx +0 -847
  251. package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
  252. package/website/app/ecosystem/page.tsx +0 -375
  253. package/website/app/examples/page.tsx +0 -133
  254. package/website/app/globals.scss +0 -135
  255. package/website/app/layout.tsx +0 -106
  256. package/website/app/license/page.tsx +0 -183
  257. package/website/app/not-found.tsx +0 -18
  258. package/website/app/page.tsx +0 -474
  259. package/website/app/playground/page.tsx +0 -487
  260. package/website/app/robots.ts +0 -19
  261. package/website/app/rss.xml/route.ts +0 -74
  262. package/website/app/schema/page.tsx +0 -1001
  263. package/website/app/sitemap.ts +0 -56
  264. package/website/app/specification/page.tsx +0 -287
  265. package/website/components/InstallCommand.tsx +0 -96
  266. package/website/components/Logo.tsx +0 -97
  267. package/website/components/StructuredData.tsx +0 -65
  268. package/website/components/docs/DocsSearch.tsx +0 -104
  269. package/website/components/docs/DocsSidebar.tsx +0 -155
  270. package/website/components/docs/MarkdownContent.tsx +0 -401
  271. package/website/components/docs/VersionSelector.tsx +0 -105
  272. package/website/components/examples/ExamplesViewer.tsx +0 -293
  273. package/website/components/layout/Footer.tsx +0 -116
  274. package/website/components/layout/Header.tsx +0 -168
  275. package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
  276. package/website/components/schema/SchemaExplorer.tsx +0 -213
  277. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
  278. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
  279. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
  280. package/website/content/blog/introducing-ossa-framework.md +0 -328
  281. package/website/content/blog/ossa-production-results.md +0 -279
  282. package/website/content/blog/welcome-to-ossa.md +0 -43
  283. package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
  284. package/website/content/docs/00-HOME.md +0 -153
  285. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +0 -107
  286. package/website/content/docs/Examples.md +0 -71
  287. package/website/content/docs/OpenAPI-Extensions.md +0 -934
  288. package/website/content/docs/adapters/openai-adapter.md +0 -693
  289. package/website/content/docs/architecture/execution-flow.md +0 -335
  290. package/website/content/docs/architecture/multi-agent-systems.md +0 -737
  291. package/website/content/docs/architecture/overview.md +0 -121
  292. package/website/content/docs/architecture/stack-integration.md +0 -461
  293. package/website/content/docs/changelog.md +0 -246
  294. package/website/content/docs/contributing.md +0 -599
  295. package/website/content/docs/core-concepts/Project-Structure.md +0 -348
  296. package/website/content/docs/ecosystem/framework-support.md +0 -819
  297. package/website/content/docs/ecosystem/overview.md +0 -366
  298. package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +0 -107
  299. package/website/content/docs/examples/Migration-Guides.md +0 -214
  300. package/website/content/docs/for-audiences/Architects.md +0 -224
  301. package/website/content/docs/for-audiences/Developers.md +0 -220
  302. package/website/content/docs/for-audiences/Enterprises.md +0 -256
  303. package/website/content/docs/for-audiences/Students-Researchers.md +0 -122
  304. package/website/content/docs/getting-started/5-Minute-Overview.md +0 -85
  305. package/website/content/docs/getting-started/First-Agent.md +0 -196
  306. package/website/content/docs/getting-started/Hello-World.md +0 -184
  307. package/website/content/docs/getting-started/Installation.md +0 -155
  308. package/website/content/docs/getting-started/index.md +0 -92
  309. package/website/content/docs/getting-started/running-agents.md +0 -309
  310. package/website/content/docs/getting-started.md +0 -91
  311. package/website/content/docs/integrations/aiflow.md +0 -104
  312. package/website/content/docs/integrations/drupal.md +0 -105
  313. package/website/content/docs/migration-guides/00-INDEX.md +0 -76
  314. package/website/content/docs/migration-guides/README.md +0 -133
  315. package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
  316. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
  317. package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
  318. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
  319. package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
  320. package/website/content/docs/migration-guides/index.md +0 -133
  321. package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
  322. package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
  323. package/website/content/docs/migration-guides/migration-manifest.json +0 -64
  324. package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
  325. package/website/content/docs/openapi-extensions/examples.md +0 -550
  326. package/website/content/docs/openapi-extensions/index.md +0 -551
  327. package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
  328. package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
  329. package/website/content/docs/ossa-compliant-badge.md +0 -251
  330. package/website/content/docs/pre-release/index.md +0 -175
  331. package/website/content/docs/quick-reference.md +0 -17
  332. package/website/content/docs/readme.md +0 -35
  333. package/website/content/docs/schema-reference/agent-spec.md +0 -406
  334. package/website/content/docs/schema-reference/autonomy.md +0 -568
  335. package/website/content/docs/schema-reference/constraints.md +0 -543
  336. package/website/content/docs/schema-reference/index.md +0 -176
  337. package/website/content/docs/schema-reference/llm-config.md +0 -445
  338. package/website/content/docs/schema-reference/observability.md +0 -654
  339. package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
  340. package/website/content/docs/schema-reference/taxonomy.md +0 -509
  341. package/website/content/docs/schema-reference/tools.md +0 -628
  342. package/website/content/docs/templates/blog-post.md +0 -43
  343. package/website/content/docs/use-cases/00-index.md +0 -395
  344. package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
  345. package/website/content/docs/use-cases/customer-support.md +0 -1234
  346. package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
  347. package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
  348. package/website/content/docs/versioning.md +0 -288
  349. package/website/lib/version.ts +0 -35
  350. package/website/lib/versions.json +0 -78
  351. package/website/next.config.ts +0 -18
  352. package/website/nginx.conf +0 -32
  353. package/website/package-lock.json +0 -9679
  354. package/website/package.json +0 -59
  355. package/website/postcss.config.mjs +0 -9
  356. package/website/scripts/fetch-versions.js +0 -166
  357. package/website/scripts/generate-examples-index.js +0 -163
  358. package/website/scripts/merge-docs-to-wiki.ts +0 -207
  359. package/website/scripts/sync-version.js +0 -72
  360. package/website/scripts/sync-wiki.ts +0 -322
  361. package/website/scripts/upload-wiki.ts +0 -199
  362. package/website/styles/_variables.scss +0 -36
  363. package/website/tailwind.config.ts +0 -136
  364. /package/dist/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
  365. /package/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
@@ -0,0 +1,153 @@
1
+ # OSSA Brand Application Examples
2
+
3
+ > Version 1.0.0 | Last Updated: November 2025
4
+
5
+ ## Website Hero
6
+
7
+ ```html
8
+ <section class="hero bg-gradient-hero py-24 text-center">
9
+ <img src="/brand/ossa-logo.svg" alt="OSSA Logo" class="h-32 mx-auto mb-8">
10
+ <h1 class="text-display font-extrabold text-gray-900 mb-6">
11
+ The <span class="gradient-text">OpenAPI</span> for AI Agents
12
+ </h1>
13
+ <p class="text-body-large text-gray-700 max-w-3xl mx-auto mb-12">
14
+ Universal specification standard for interoperable AI agents
15
+ </p>
16
+ <div class="flex gap-4 justify-center">
17
+ <a href="#start" class="btn-primary">Get Started</a>
18
+ <a href="/docs" class="btn-outline">Documentation</a>
19
+ </div>
20
+ </section>
21
+ ```
22
+
23
+ ## Feature Cards
24
+
25
+ ```html
26
+ <div class="card card-interactive">
27
+ <div class="icon-container bg-primary-100 rounded-lg p-3 mb-4">
28
+ <svg class="icon-24 text-primary-600"><!-- Icon --></svg>
29
+ </div>
30
+ <h3 class="text-h4 font-semibold mb-3">Vendor-Neutral</h3>
31
+ <p class="text-body text-gray-700">
32
+ No vendor lock-in. Deploy anywhere, switch frameworks anytime.
33
+ </p>
34
+ </div>
35
+ ```
36
+
37
+ ## Navigation Header
38
+
39
+ ```html
40
+ <header class="sticky top-0 bg-white/95 backdrop-blur border-b border-gray-200">
41
+ <div class="container flex items-center justify-between h-16">
42
+ <a href="/" class="flex items-center gap-3">
43
+ <img src="/brand/ossa-logo.svg" alt="OSSA" class="h-8">
44
+ <div>
45
+ <div class="font-bold text-lg text-primary-600">OSSA</div>
46
+ <div class="text-xs text-gray-500">AI Agent Standard</div>
47
+ </div>
48
+ </a>
49
+ <nav class="flex gap-8">
50
+ <a href="/docs" class="nav-link active">Docs</a>
51
+ <a href="/examples" class="nav-link">Examples</a>
52
+ </nav>
53
+ <a href="#start" class="btn-primary">Get Started</a>
54
+ </div>
55
+ </header>
56
+ ```
57
+
58
+ ## Documentation Page
59
+
60
+ ```html
61
+ <div class="docs-layout flex">
62
+ <aside class="sidebar w-64 border-r p-6">
63
+ <a href="#" class="sidebar-link active">Installation</a>
64
+ <a href="#" class="sidebar-link">Quick Start</a>
65
+ </aside>
66
+ <main class="flex-1 max-w-4xl p-12">
67
+ <h1 class="text-h1 mb-6">Installation</h1>
68
+ <p class="text-body mb-4">Install OSSA using npm:</p>
69
+ <pre class="code-block"><code>npm install -g @bluefly/openstandardagents</code></pre>
70
+ </main>
71
+ </div>
72
+ ```
73
+
74
+ ## Social Media
75
+
76
+ **Twitter Card (1200×675px):**
77
+ - Background: Gradient or white
78
+ - Logo: 200px centered
79
+ - Title: H2, bold
80
+ - Description: Body text
81
+ - CTA button
82
+ - URL at bottom
83
+
84
+ **GitHub Preview (1280×640px):**
85
+ - Logo + "OSSA" + tagline
86
+ - Large headline
87
+ - Key features (checkmarks)
88
+ - Repository URL
89
+
90
+ ## Email Template
91
+
92
+ ```html
93
+ <table width="600" cellpadding="0" cellspacing="0">
94
+ <!-- Header with gradient background -->
95
+ <tr><td style="padding: 32px; background: linear-gradient(135deg, #1CB9ED, #4A3ECD, #9060EA);">
96
+ <img src="logo-white.svg" alt="OSSA" width="120">
97
+ </td></tr>
98
+
99
+ <!-- Content -->
100
+ <tr><td style="padding: 32px; background: white;">
101
+ <h2 style="color: #4A3ECD;">What's New</h2>
102
+ <p style="color: #374151;">OSSA v0.2.5 released...</p>
103
+ <a href="..." style="display: inline-block; padding: 12px 32px;
104
+ background: #4A3ECD; color: white; border-radius: 8px;">
105
+ Get Started
106
+ </a>
107
+ </td></tr>
108
+
109
+ <!-- Footer -->
110
+ <tr><td style="padding: 24px; background: #F3F4F6; text-align: center;">
111
+ <p style="color: #6B7280;">openstandardagents.org</p>
112
+ </td></tr>
113
+ </table>
114
+ ```
115
+
116
+ ## Presentation Slides
117
+
118
+ **Title Slide:**
119
+ - Centered logo (180px)
120
+ - Title: Display size, gradient text option
121
+ - Subtitle: H3 size, gray
122
+ - Metadata: Small text at bottom
123
+
124
+ **Content Slide:**
125
+ - Small logo + title in header
126
+ - Bulleted list with icons
127
+ - Code/diagram boxes
128
+ - Footer: URL + social
129
+
130
+ ## README Badges
131
+
132
+ ```markdown
133
+ ![OSSA Compliant](https://img.shields.io/badge/OSSA-Compliant-4A3ECD)
134
+ ![Version](https://img.shields.io/badge/OSSA-v0.2.5--RC-1CB9ED)
135
+ ![Vendor Neutral](https://img.shields.io/badge/Vendor-Neutral-10B981)
136
+ ```
137
+
138
+ ## Brand Assets
139
+
140
+ **Request full package:**
141
+ - Email: design@openstandardagents.org
142
+ - Includes: Logos (all variants), color swatches, templates
143
+ - Formats: SVG, PNG, AI, Figma
144
+
145
+ ## Checklist
146
+
147
+ ✅ Logo: Correct variant, minimum size
148
+ ✅ Colors: Approved palette, contrast requirements
149
+ ✅ Typography: Inter/JetBrains Mono, correct weights
150
+ ✅ Spacing: 4px grid system
151
+ ✅ Accessibility: WCAG AA minimum (AAA preferred)
152
+ ✅ Responsive: Mobile, tablet, desktop
153
+ ✅ Tone: Professional, clear, confident
@@ -0,0 +1,21 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg width="100%" height="100%" viewBox="0 0 284 180" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
4
+ <g id="Layer3">
5
+ </g>
6
+ <g id="Artboard1" transform="matrix(0.959459,0,0,0.967742,-85.391892,-77.419355)">
7
+ <rect x="89" y="80" width="296" height="186" style="fill:none;"/>
8
+ <g id="Layer2" transform="matrix(1.042254,0,0,1.033333,-98.605634,44.866667)">
9
+ <g transform="matrix(1,0,0,1,-4,3)">
10
+ <path d="M360.304,111.534C363.113,108.192 389.309,70.107 418.113,69.792C455.004,69.388 453.98,85.001 454,85C411.09,80.447 406.306,113.749 391,127C376.213,128.875 359.884,111.957 360.304,111.534Z" style="fill:url(#_Linear1);"/>
11
+ </g>
12
+ <path d="M387,130C363.955,129.387 356.634,111.656 343.218,92.638C330.132,74.086 315.144,42 265,42C248.667,42 218,47 196,79C177.551,105.835 180.795,160.269 198,181C212.195,198.104 235.087,219.856 272.671,207.843C285.88,203.621 300.902,195.229 318,181C308.173,174.775 295,164 295,164C295,164 280.632,185.275 257,185C187.717,184.194 202.028,62.709 261,62C318.068,61.314 316.755,172.294 387,130Z" style="fill:url(#_Linear2);"/>
13
+ <path d="M237,121C298.486,85.797 306.507,159.426 345.704,159.426C369.233,159.426 379.051,151.385 430,113C433.734,111.659 461,183 461,183C455.02,189.367 449.324,189.969 444,183C440.77,151.879 425.801,136.49 421,139C421,139 382.667,187.667 338,186C287.813,183.443 267.695,115.583 237,121Z" style="fill:url(#_Linear3);"/>
14
+ </g>
15
+ </g>
16
+ <defs>
17
+ <linearGradient id="_Linear1" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-38,11,-11,-38,440,80)"><stop offset="0" style="stop-color:rgb(74,62,205);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(116,82,222);stop-opacity:1"/></linearGradient>
18
+ <linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-104,82,-82,-104,296,85)"><stop offset="0" style="stop-color:rgb(144,96,234);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(74,62,205);stop-opacity:1"/></linearGradient>
19
+ <linearGradient id="_Linear3" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-222,-64,64,-222,461,183)"><stop offset="0" style="stop-color:rgb(26,188,237);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(101,78,217);stop-opacity:1"/></linearGradient>
20
+ </defs>
21
+ </svg>
@@ -0,0 +1,107 @@
1
+ # OSSA Brand Guide
2
+
3
+ > **Version 1.0.0** | Last Updated: November 2025
4
+
5
+ Official brand guidelines for the Open Standard for Scalable AI Agents (OSSA).
6
+
7
+ ## Table of Contents
8
+
9
+ | Section | Description |
10
+ |---------|-------------|
11
+ | [01. Brand Overview](./01-brand-overview.md) | Mission, vision, values, positioning |
12
+ | [02. Logo Usage](./02-logo-usage.md) | Logo variants, sizing, usage rules |
13
+ | [03. Color Palette](./03-color-palette.md) | Brand colors, semantic colors, gradients |
14
+ | [04. Typography](./04-typography.md) | Font families, type scale, usage guidelines |
15
+ | [05. Voice & Tone](./05-voice-and-tone.md) | Writing style, tone variations, messaging |
16
+ | [06. Visual Elements](./06-visual-elements.md) | Icons, buttons, spacing, animations |
17
+ | [07. Application Examples](./07-application-examples.md) | Real-world implementation examples |
18
+
19
+ ## Brand at a Glance
20
+
21
+ **Name:** OSSA (Open Standard for Scalable AI Agents)
22
+ **Tagline:** "The OpenAPI for AI Agents"
23
+ **Domain:** https://openstandardagents.org
24
+
25
+ ### Colors
26
+
27
+ - **Primary:** Deep Purple (#4A3ECD)
28
+ - **Secondary:** Cyan Blue (#1CB9ED)
29
+ - **Accent:** Light Purple (#9060EA)
30
+ - **Neutrals:** Gray scale (#F9FAFB - #111827)
31
+
32
+ ### Typography
33
+
34
+ - **Primary:** Inter (Sans-serif)
35
+ - **Monospace:** JetBrains Mono
36
+
37
+ ### Logo
38
+
39
+ **Location:** `/website/public/brand/ossa-logo.svg`
40
+ **Minimum Size:** 120px width (digital), 1 inch (print)
41
+
42
+ ## Core Principles
43
+
44
+ 1. **Open & Vendor-Neutral** - Community-driven, no vendor lock-in
45
+ 2. **Interoperable** - Common language across all frameworks
46
+ 3. **Trustworthy** - Compliance-ready, enterprise-grade
47
+ 4. **Simple & Practical** - Clear specification, production-ready
48
+
49
+ ## Voice
50
+
51
+ **Professional, Clear, Confident, Inclusive, Practical**
52
+
53
+ ## Key Message
54
+
55
+ **"The OpenAPI for AI Agents"**
56
+
57
+ OSSA provides a universal specification standard that makes AI agents interoperable across all platforms, frameworks, and runtimes.
58
+
59
+ ## Quick Reference
60
+
61
+ ### Dos
62
+
63
+ ✅ Use approved color palette and gradients
64
+ ✅ Follow typography hierarchy and sizing
65
+ ✅ Respect logo clear space and minimum sizes
66
+ ✅ Write in active voice with clear language
67
+ ✅ Maintain WCAG AA accessibility (AAA preferred)
68
+ ✅ Provide working code examples
69
+
70
+ ### Don'ts
71
+
72
+ ❌ Modify logo colors or proportions
73
+ ❌ Use colors outside approved palette
74
+ ❌ Mix font families
75
+ ❌ Use exclusive language ("obviously," "simply")
76
+ ❌ Make unsubstantiated claims
77
+ ❌ Violate accessibility guidelines
78
+
79
+ ## Resources
80
+
81
+ ### Design Assets
82
+
83
+ **Logo:** `/website/public/brand/ossa-logo.svg`
84
+ **Colors:** `website/styles/_variables.scss`
85
+ **Website:** https://openstandardagents.org
86
+
87
+ ### Request Full Package
88
+
89
+ **Contact:** design@openstandardagents.org
90
+ **Includes:** All logo variants, color swatches, templates
91
+ **Formats:** SVG, PNG, AI, Figma
92
+
93
+ ## Support
94
+
95
+ **Questions:** design@openstandardagents.org
96
+ **Documentation:** https://openstandardagents.org/brand
97
+ **Issues:** https://github.com/blueflyio/openstandardagents/issues
98
+
99
+ ## License
100
+
101
+ Creative Commons Attribution 4.0 International (CC BY 4.0)
102
+
103
+ **Trademark:** "OSSA" and the OSSA logo are trademarks of the OSSA project.
104
+
105
+ ---
106
+
107
+ **Ready to get started?** Pick a section above and dive in!
@@ -0,0 +1,315 @@
1
+ # OSSA Competitive Comparison Matrix
2
+
3
+ ## Quick Comparison
4
+
5
+ | Feature | OSSA | LangChain | AutoGen | MCP | Semantic Kernel |
6
+ |---------|------|-----------|---------|-----|-----------------|
7
+ | **Vendor Neutral** | ✅ | ❌ | ❌ | ✅ | ❌ |
8
+ | **Formal Standard** | ✅ | ❌ | ❌ | ✅ | ❌ |
9
+ | **Multi-Runtime** | ✅ | ✅ | ❌ | ❌ | ✅ |
10
+ | **Enterprise Governance** | ✅ | ❌ | ❌ | ❌ | ❌ |
11
+ | **Compliance Ready** | ✅ | ❌ | ❌ | ❌ | ❌ |
12
+ | **Multi-Agent Orchestration** | ✅ | ✅ | ✅ | ❌ | ✅ |
13
+ | **Open Source** | ✅ | ✅ | ✅ | ✅ | ✅ |
14
+ | **Production Maturity** | 🟡 | ✅ | 🟡 | 🟡 | ✅ |
15
+ | **Community Size** | 🟡 | ✅ | 🟡 | 🟡 | 🟡 |
16
+
17
+ **Legend:**
18
+ - ✅ Full support
19
+ - 🟡 Partial/In progress
20
+ - ❌ Not supported
21
+
22
+ ## Detailed Comparison
23
+
24
+ ### OSSA (Open Standard for AI Agents)
25
+
26
+ **What it is:** Vendor-neutral specification for building portable AI agent systems
27
+
28
+ **Strengths:**
29
+ - True vendor independence—no provider lock-in
30
+ - Built-in compliance frameworks (HIPAA, FedRAMP, SOC2)
31
+ - Formal specification with versioning and governance
32
+ - Multi-runtime support (Node.js, Python planned)
33
+ - Enterprise-grade lifecycle management
34
+
35
+ **Limitations:**
36
+ - Newer project, smaller community
37
+ - Fewer pre-built integrations than mature frameworks
38
+ - Still building ecosystem of tools and adapters
39
+
40
+ **Best for:**
41
+ - Enterprise deployments requiring compliance
42
+ - Organizations avoiding vendor lock-in
43
+ - Multi-provider agent architectures
44
+ - Regulated industries (healthcare, government, finance)
45
+
46
+ ---
47
+
48
+ ### LangChain
49
+
50
+ **What it is:** Python/TypeScript framework for building LLM applications
51
+
52
+ **Strengths:**
53
+ - Large ecosystem and community
54
+ - Extensive integrations and tools
55
+ - Production-proven at scale
56
+ - Rich documentation and examples
57
+
58
+ **Limitations:**
59
+ - Provider bias (OpenAI-centric design)
60
+ - No formal compliance frameworks
61
+ - Framework lock-in (not a standard)
62
+ - Limited governance capabilities
63
+
64
+ **Best for:**
65
+ - Rapid prototyping
66
+ - OpenAI-primary deployments
67
+ - Projects not requiring strict compliance
68
+ - Teams comfortable with framework dependencies
69
+
70
+ **Choose OSSA over LangChain if:**
71
+ - You need to switch between AI providers
72
+ - Compliance is a requirement
73
+ - You want a standard, not a framework
74
+ - Vendor independence is critical
75
+
76
+ ---
77
+
78
+ ### AutoGen
79
+
80
+ **What it is:** Microsoft's multi-agent conversation framework
81
+
82
+ **Strengths:**
83
+ - Strong multi-agent capabilities
84
+ - Good for research and experimentation
85
+ - Microsoft backing and support
86
+ - Innovative conversation patterns
87
+
88
+ **Limitations:**
89
+ - Python-only (no multi-runtime)
90
+ - Microsoft/Azure-centric
91
+ - Not a formal standard
92
+ - Limited enterprise governance
93
+
94
+ **Best for:**
95
+ - Research projects
96
+ - Microsoft/Azure environments
97
+ - Python-only teams
98
+ - Multi-agent experimentation
99
+
100
+ **Choose OSSA over AutoGen if:**
101
+ - You need multi-runtime support
102
+ - You're not in Microsoft ecosystem
103
+ - You need formal compliance frameworks
104
+ - You want vendor neutrality
105
+
106
+ ---
107
+
108
+ ### MCP (Model Context Protocol)
109
+
110
+ **What it is:** Anthropic's protocol for connecting context to LLMs
111
+
112
+ **Strengths:**
113
+ - Formal specification
114
+ - Vendor-neutral design
115
+ - Good for context management
116
+ - Growing adoption
117
+
118
+ **Limitations:**
119
+ - Context protocol only (not full agent lifecycle)
120
+ - No multi-agent orchestration
121
+ - No built-in governance
122
+ - Limited to context sharing
123
+
124
+ **Best for:**
125
+ - Context management between tools
126
+ - Anthropic Claude integrations
127
+ - Simple context-sharing use cases
128
+
129
+ **Choose OSSA over MCP if:**
130
+ - You need full agent lifecycle management
131
+ - You want multi-agent orchestration
132
+ - You need enterprise governance
133
+ - You're building complex agent systems
134
+
135
+ **Use together:**
136
+ - OSSA agents can use MCP for context management
137
+ - Complementary, not competitive
138
+
139
+ ---
140
+
141
+ ### Semantic Kernel
142
+
143
+ **What it is:** Microsoft's SDK for integrating LLMs into applications
144
+
145
+ **Strengths:**
146
+ - Microsoft backing
147
+ - Multi-language support (.NET, Python, Java)
148
+ - Good Azure integration
149
+ - Enterprise features
150
+
151
+ **Limitations:**
152
+ - Microsoft-controlled (not community-driven)
153
+ - Azure-optimized (vendor bias)
154
+ - SDK, not a standard
155
+ - Limited vendor independence
156
+
157
+ **Best for:**
158
+ - Microsoft/.NET shops
159
+ - Azure-centric deployments
160
+ - Enterprise Microsoft customers
161
+
162
+ **Choose OSSA over Semantic Kernel if:**
163
+ - You want community-driven standards
164
+ - You need true vendor neutrality
165
+ - You're not in Microsoft ecosystem
166
+ - You want formal compliance frameworks
167
+
168
+ ---
169
+
170
+ ## Feature Deep-Dive
171
+
172
+ ### Vendor Neutral
173
+ **Why it matters:** Avoid lock-in, maintain negotiating power, switch providers as market evolves
174
+
175
+ - **OSSA**: ✅ Core design principle—no provider bias
176
+ - **LangChain**: ❌ OpenAI-centric abstractions
177
+ - **AutoGen**: ❌ Microsoft/Azure focus
178
+ - **MCP**: ✅ Vendor-neutral by design
179
+ - **Semantic Kernel**: ❌ Azure-optimized
180
+
181
+ ### Formal Standard
182
+ **Why it matters:** Interoperability, long-term stability, community governance
183
+
184
+ - **OSSA**: ✅ Versioned specification with governance
185
+ - **LangChain**: ❌ Framework, not a standard
186
+ - **AutoGen**: ❌ Research project
187
+ - **MCP**: ✅ Formal protocol specification
188
+ - **Semantic Kernel**: ❌ Microsoft SDK
189
+
190
+ ### Multi-Runtime Support
191
+ **Why it matters:** Use best language for each component, team flexibility
192
+
193
+ - **OSSA**: ✅ Node.js, Python (planned), more coming
194
+ - **LangChain**: ✅ Python and TypeScript
195
+ - **AutoGen**: ❌ Python only
196
+ - **MCP**: ❌ Language-agnostic protocol, but limited implementations
197
+ - **Semantic Kernel**: ✅ .NET, Python, Java
198
+
199
+ ### Enterprise Governance
200
+ **Why it matters:** Versioning, change control, audit trails, compliance
201
+
202
+ - **OSSA**: ✅ Built-in lifecycle management
203
+ - **LangChain**: ❌ No formal governance
204
+ - **AutoGen**: ❌ Research-focused
205
+ - **MCP**: ❌ Protocol only
206
+ - **Semantic Kernel**: ❌ Limited governance features
207
+
208
+ ### Compliance Ready
209
+ **Why it matters:** HIPAA, FedRAMP, SOC2 requirements for production
210
+
211
+ - **OSSA**: ✅ Built-in compliance frameworks
212
+ - **LangChain**: ❌ No compliance features
213
+ - **AutoGen**: ❌ Not compliance-focused
214
+ - **MCP**: ❌ No compliance features
215
+ - **Semantic Kernel**: ❌ No built-in compliance
216
+
217
+ ### Multi-Agent Orchestration
218
+ **Why it matters:** Complex workflows, agent collaboration, scalability
219
+
220
+ - **OSSA**: ✅ Standardized composition patterns
221
+ - **LangChain**: ✅ Agent chains and tools
222
+ - **AutoGen**: ✅ Strong multi-agent focus
223
+ - **MCP**: ❌ Not designed for orchestration
224
+ - **Semantic Kernel**: ✅ Planner and orchestration
225
+
226
+ ---
227
+
228
+ ## Use Case Mapping
229
+
230
+ ### Choose OSSA if you need:
231
+ - ✅ Vendor independence and portability
232
+ - ✅ Regulatory compliance (HIPAA, FedRAMP, SOC2)
233
+ - ✅ Enterprise governance and lifecycle management
234
+ - ✅ Multi-provider agent architectures
235
+ - ✅ Formal standard with community governance
236
+
237
+ ### Choose LangChain if you need:
238
+ - ✅ Rapid prototyping with rich ecosystem
239
+ - ✅ OpenAI-primary deployments
240
+ - ✅ Extensive pre-built integrations
241
+ - ✅ Large community and resources
242
+ - ❌ But accept framework lock-in
243
+
244
+ ### Choose AutoGen if you need:
245
+ - ✅ Multi-agent research and experimentation
246
+ - ✅ Python-only environment
247
+ - ✅ Microsoft/Azure ecosystem
248
+ - ❌ But don't need production governance
249
+
250
+ ### Choose MCP if you need:
251
+ - ✅ Simple context sharing between tools
252
+ - ✅ Anthropic Claude integration
253
+ - ✅ Lightweight protocol
254
+ - ❌ But don't need full agent lifecycle
255
+
256
+ ### Choose Semantic Kernel if you need:
257
+ - ✅ Microsoft/.NET integration
258
+ - ✅ Azure-optimized deployment
259
+ - ✅ Enterprise Microsoft support
260
+ - ❌ But accept Microsoft ecosystem lock-in
261
+
262
+ ---
263
+
264
+ ## Migration Paths
265
+
266
+ ### From LangChain to OSSA
267
+ 1. Map LangChain chains to OSSA agent definitions
268
+ 2. Replace provider-specific code with OSSA adapters
269
+ 3. Add compliance and governance layers
270
+ 4. Test with multiple providers
271
+
272
+ **Effort:** Medium (2-4 weeks for typical application)
273
+
274
+ ### From AutoGen to OSSA
275
+ 1. Convert AutoGen agents to OSSA agent specs
276
+ 2. Migrate conversation patterns to OSSA orchestration
277
+ 3. Add multi-runtime support if needed
278
+ 4. Implement governance requirements
279
+
280
+ **Effort:** Medium-High (3-6 weeks)
281
+
282
+ ### From Semantic Kernel to OSSA
283
+ 1. Extract business logic from SK abstractions
284
+ 2. Define OSSA agent specifications
285
+ 3. Replace Azure-specific code with provider-agnostic adapters
286
+ 4. Add compliance frameworks
287
+
288
+ **Effort:** Medium (2-4 weeks)
289
+
290
+ ### Using MCP with OSSA
291
+ - MCP and OSSA are complementary
292
+ - Use MCP for context management within OSSA agents
293
+ - No migration needed—integrate both
294
+
295
+ ---
296
+
297
+ ## Summary: When to Choose OSSA
298
+
299
+ **Choose OSSA when:**
300
+ 1. Vendor independence is critical
301
+ 2. Compliance is required (HIPAA, FedRAMP, SOC2)
302
+ 3. You need enterprise governance
303
+ 4. You want a standard, not a framework
304
+ 5. You're building for long-term portability
305
+
306
+ **Consider alternatives when:**
307
+ 1. You need rapid prototyping with rich ecosystem (→ LangChain)
308
+ 2. You're doing multi-agent research (→ AutoGen)
309
+ 3. You only need context sharing (→ MCP)
310
+ 4. You're all-in on Microsoft/.NET (→ Semantic Kernel)
311
+
312
+ **The OSSA Advantage:**
313
+ > "Build once, run anywhere—with compliance and governance built in."
314
+
315
+ No other solution offers the combination of vendor neutrality, formal standards, compliance frameworks, and enterprise governance that OSSA provides.