@bluefly/openstandardagents 0.2.7 → 0.2.9

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 (327) hide show
  1. package/.devfile.yaml +1 -1
  2. package/.env.example +1 -1
  3. package/.github/AGENTS.md +245 -0
  4. package/.github/agents/github-issue-triage.ossa.yaml +99 -0
  5. package/.github/agents/github-pr-triage.ossa.yaml +137 -0
  6. package/.github/workflows/issue-sync-to-gitlab.yml +138 -0
  7. package/.github/workflows/pr-triage-to-gitlab.yml +164 -0
  8. package/.version.json +2 -2
  9. package/.wiki-config.json +24 -0
  10. package/CHANGELOG.md +44 -18
  11. package/CODEOWNERS +75 -0
  12. package/CONTRIBUTING.md +103 -4
  13. package/README.md +178 -243
  14. package/dist/index.d.ts +1 -0
  15. package/dist/index.d.ts.map +1 -1
  16. package/dist/index.js +2 -0
  17. package/dist/index.js.map +1 -1
  18. package/dist/repositories/schema.repository.d.ts +6 -1
  19. package/dist/repositories/schema.repository.d.ts.map +1 -1
  20. package/dist/repositories/schema.repository.js +49 -27
  21. package/dist/repositories/schema.repository.js.map +1 -1
  22. package/dist/services/migration.service.d.ts +4 -3
  23. package/dist/services/migration.service.d.ts.map +1 -1
  24. package/dist/services/migration.service.js +11 -10
  25. package/dist/services/migration.service.js.map +1 -1
  26. package/dist/services/release-automation/release.service.js +1 -1
  27. package/dist/services/release-automation/release.service.js.map +1 -1
  28. package/dist/services/release-automation/schemas/release.schema.js +1 -1
  29. package/dist/services/release-automation/webhook.service.js +3 -3
  30. package/dist/services/release-automation/webhook.service.js.map +1 -1
  31. package/dist/services/runtime/claude/claude-adapter.d.ts +1 -1
  32. package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -1
  33. package/dist/services/runtime/claude/claude-adapter.js +2 -2
  34. package/dist/services/runtime/claude/claude-adapter.js.map +1 -1
  35. package/dist/spec/v0.2.8/CHANGELOG.md +401 -0
  36. package/dist/spec/v0.2.8/README.md +72 -0
  37. package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  38. package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  39. package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  40. package/{spec/v0.2.6-dev/ossa-0.2.5.schema.json → dist/spec/v0.2.8/ossa-0.2.8.schema.json} +1509 -52
  41. package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  42. package/dist/spec/v0.2.9/a2a-protocol.md +1337 -0
  43. package/dist/spec/v0.2.9/agent.md +1946 -0
  44. package/dist/spec/v0.2.9/capabilities/index.yaml +25 -0
  45. package/dist/spec/v0.2.9/capabilities/memory.yaml +251 -0
  46. package/dist/spec/v0.2.9/capability-schema.md +576 -0
  47. package/dist/spec/v0.2.9/compliance-profiles.md +533 -0
  48. package/dist/spec/v0.2.9/conformance-testing.md +1527 -0
  49. package/dist/spec/v0.2.9/gitlab-duo-integration.md +621 -0
  50. package/dist/spec/v0.2.9/ossa-0.2.9.schema.json +3699 -0
  51. package/dist/spec/v0.2.9/runtime-semantics.md +464 -0
  52. package/dist/spec/v0.2.9/security-model.md +1245 -0
  53. package/dist/spec/v0.2.9/semantic-conventions.md +347 -0
  54. package/dist/spec/v0.2.9/types.ts +522 -0
  55. package/dist/types/index.d.ts +3 -2
  56. package/dist/types/index.d.ts.map +1 -1
  57. package/dist/types/policy.d.ts +377 -0
  58. package/dist/types/policy.d.ts.map +1 -0
  59. package/dist/types/policy.js +84 -0
  60. package/dist/types/policy.js.map +1 -0
  61. package/dist/utils/index.d.ts +6 -0
  62. package/dist/utils/index.d.ts.map +1 -0
  63. package/dist/utils/index.js +6 -0
  64. package/dist/utils/index.js.map +1 -0
  65. package/dist/utils/version.d.ts +68 -0
  66. package/dist/utils/version.d.ts.map +1 -0
  67. package/dist/utils/version.js +156 -0
  68. package/dist/utils/version.js.map +1 -0
  69. package/docs/specs/policy-dsl.md +925 -0
  70. package/eslint-report.json +1 -0
  71. package/examples/adk-integration/code-review-workflow.yml +1 -1
  72. package/examples/adk-integration/customer-support.yml +1 -1
  73. package/examples/adk-integration/data-pipeline.yml +1 -1
  74. package/examples/advanced/reasoning-agent.yaml +136 -0
  75. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  76. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  77. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  78. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  79. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  80. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  81. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  82. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  83. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  84. package/examples/agents-md/code-agent.ossa.json +100 -0
  85. package/examples/agents-md/monorepo-agent.ossa.yaml +180 -0
  86. package/examples/anthropic/claude-assistant.ossa.json +1 -1
  87. package/examples/autogen/multi-agent.ossa.json +1 -1
  88. package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
  89. package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
  90. package/examples/common_npm/agent-router.ossa.yaml +1 -0
  91. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
  92. package/examples/crewai/research-team.ossa.json +1 -1
  93. package/examples/cursor/code-review-agent.ossa.json +1 -1
  94. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
  95. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
  96. package/examples/extensions/agents-md-v1.yml +175 -0
  97. package/examples/extensions/drupal-v1.yml +1 -1
  98. package/examples/extensions/kagent-v1.yml +1 -1
  99. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  100. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  101. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  102. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  103. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  104. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -0
  105. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
  106. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  107. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  108. package/examples/langchain/chain-agent.ossa.json +1 -1
  109. package/examples/langflow/workflow-agent.ossa.json +1 -1
  110. package/examples/langgraph/state-machine-agent.ossa.json +1 -1
  111. package/examples/llamaindex/rag-agent.ossa.json +1 -1
  112. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  113. package/examples/multi-agent/README.md +74 -0
  114. package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
  115. package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
  116. package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
  117. package/examples/openai/basic-agent.ossa.yaml +1 -1
  118. package/examples/openai/multi-tool-agent.ossa.json +1 -1
  119. package/examples/openai/swarm-agent.ossa.json +1 -1
  120. package/examples/production/document-analyzer-openai.yml +1 -1
  121. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  122. package/examples/spec-examples/audit-agent.yml +1 -1
  123. package/examples/spec-examples/chat-agent.yml +1 -1
  124. package/examples/spec-examples/compliance-agent.yml +1 -1
  125. package/examples/spec-examples/monitoring-agent.yml +1 -1
  126. package/examples/spec-examples/workflow-agent.yml +1 -1
  127. package/examples/templates/ossa-compliance.yaml +1 -1
  128. package/examples/vercel/edge-agent.ossa.json +1 -1
  129. package/gl-code-quality-report.json +62 -0
  130. package/llms-ctx-full.txt +39 -0
  131. package/llms-ctx.txt +39 -0
  132. package/llms.txt +47 -0
  133. package/package.json +6 -3
  134. package/scripts/README.md +25 -0
  135. package/scripts/compliance-audit.ts +796 -0
  136. package/scripts/eslint-to-codequality.cjs +34 -0
  137. package/scripts/generate-agents-catalog.ts +2 -1
  138. package/scripts/generate-api-docs.ts +2 -1
  139. package/scripts/generate-examples-docs.ts +2 -1
  140. package/scripts/generate-llms-ctx.sh +17 -0
  141. package/scripts/generate-schema-docs.ts +31 -10
  142. package/scripts/sync-version.js +4 -12
  143. package/scripts/validate-schema.ts +2 -1
  144. package/spec/v0.2.8/CHANGELOG.md +401 -0
  145. package/spec/v0.2.8/README.md +72 -0
  146. package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  147. package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  148. package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  149. package/spec/{v0.2.6-dev/ossa-0.2.6-dev.schema.json → v0.2.8/ossa-0.2.8.schema.json} +1509 -52
  150. package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  151. package/spec/v0.2.9/a2a-protocol.md +1337 -0
  152. package/spec/v0.2.9/agent.md +1946 -0
  153. package/spec/v0.2.9/capabilities/index.yaml +25 -0
  154. package/spec/v0.2.9/capabilities/memory.yaml +251 -0
  155. package/spec/v0.2.9/capability-schema.md +576 -0
  156. package/spec/v0.2.9/compliance-profiles.md +533 -0
  157. package/spec/v0.2.9/conformance-testing.md +1527 -0
  158. package/spec/v0.2.9/gitlab-duo-integration.md +621 -0
  159. package/spec/v0.2.9/ossa-0.2.9.schema.json +3699 -0
  160. package/spec/v0.2.9/runtime-semantics.md +464 -0
  161. package/spec/v0.2.9/security-model.md +1245 -0
  162. package/spec/v0.2.9/semantic-conventions.md +347 -0
  163. package/spec/v0.2.9/types.ts +522 -0
  164. package/test-results/junit.xml +337 -0
  165. package/.github/workflows/pr-comment.yml +0 -33
  166. package/bin/validate-ossa-0.2.5-RC.ts +0 -244
  167. package/dist/spec/v0.2.6-dev/ossa-0.2.5.schema.json +0 -1696
  168. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.schema.json +0 -1696
  169. package/scripts/lib/exec.ts +0 -37
  170. package/scripts/lib/file-ops.ts +0 -58
  171. package/scripts/lib/version.ts +0 -83
  172. package/website/.lighthouserc.ts +0 -24
  173. package/website/.prettierrc +0 -10
  174. package/website/DESIGN_SYSTEM_IMPLEMENTATION.md +0 -445
  175. package/website/Dockerfile +0 -30
  176. package/website/app/about/page.tsx +0 -304
  177. package/website/app/blog/[slug]/page.tsx +0 -208
  178. package/website/app/blog/page.tsx +0 -249
  179. package/website/app/design-guide/page.tsx +0 -511
  180. package/website/app/docs/[[...slug]]/page.tsx +0 -847
  181. package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
  182. package/website/app/ecosystem/page.tsx +0 -410
  183. package/website/app/examples/page.tsx +0 -133
  184. package/website/app/globals.scss +0 -370
  185. package/website/app/layout.tsx +0 -106
  186. package/website/app/license/page.tsx +0 -183
  187. package/website/app/not-found.tsx +0 -18
  188. package/website/app/page.tsx +0 -686
  189. package/website/app/page.tsx.bak +0 -679
  190. package/website/app/page.tsx.bak2 +0 -649
  191. package/website/app/playground/page.tsx +0 -487
  192. package/website/app/robots.ts +0 -19
  193. package/website/app/rss.xml/route.ts +0 -74
  194. package/website/app/schema/page.tsx +0 -1001
  195. package/website/app/sitemap.ts +0 -56
  196. package/website/app/specification/page.tsx +0 -287
  197. package/website/components/InstallCommand.tsx +0 -96
  198. package/website/components/Logo.tsx +0 -97
  199. package/website/components/StructuredData.tsx +0 -65
  200. package/website/components/docs/DocsSearch.tsx +0 -104
  201. package/website/components/docs/DocsSidebar.tsx +0 -155
  202. package/website/components/docs/MarkdownContent.tsx +0 -401
  203. package/website/components/docs/VersionSelector.tsx +0 -105
  204. package/website/components/examples/ExamplesViewer.tsx +0 -293
  205. package/website/components/layout/Footer.tsx +0 -116
  206. package/website/components/layout/Header.tsx +0 -172
  207. package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
  208. package/website/components/schema/SchemaExplorer.tsx +0 -213
  209. package/website/components/ui/Badge.tsx +0 -82
  210. package/website/components/ui/Button.tsx +0 -116
  211. package/website/components/ui/Card.tsx +0 -167
  212. package/website/components/ui/Checkbox.tsx +0 -141
  213. package/website/components/ui/Input.tsx +0 -169
  214. package/website/components/ui/Radio.tsx +0 -141
  215. package/website/components/ui/Select.tsx +0 -182
  216. package/website/components/ui/Tag.tsx +0 -158
  217. package/website/components/ui/Textarea.tsx +0 -195
  218. package/website/components/ui/index.ts +0 -11
  219. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
  220. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
  221. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
  222. package/website/content/blog/introducing-ossa-framework.md +0 -328
  223. package/website/content/blog/ossa-production-results.md +0 -279
  224. package/website/content/blog/welcome-to-ossa.md +0 -43
  225. package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
  226. package/website/content/docs/00-home.md +0 -153
  227. package/website/content/docs/adapters/openai-adapter.md +0 -693
  228. package/website/content/docs/agents/catalog.md +0 -28
  229. package/website/content/docs/aiflow-framework-integration-with-ossa.md +0 -107
  230. package/website/content/docs/api-reference/index.md +0 -38
  231. package/website/content/docs/api-reference/ossa-core-api.md +0 -634
  232. package/website/content/docs/api-reference/ossa-registry-api.md +0 -515
  233. package/website/content/docs/api-reference/unified-agent-gateway.md +0 -599
  234. package/website/content/docs/architecture/execution-flow.md +0 -335
  235. package/website/content/docs/architecture/multi-agent-systems.md +0 -737
  236. package/website/content/docs/architecture/overview.md +0 -121
  237. package/website/content/docs/architecture/stack-integration.md +0 -461
  238. package/website/content/docs/changelog.md +0 -246
  239. package/website/content/docs/cli-reference/index.md +0 -111
  240. package/website/content/docs/cli-reference/ossa-agents.md +0 -70
  241. package/website/content/docs/cli-reference/ossa-export.md +0 -56
  242. package/website/content/docs/cli-reference/ossa-generate.md +0 -66
  243. package/website/content/docs/cli-reference/ossa-gitlab-agent.md +0 -57
  244. package/website/content/docs/cli-reference/ossa-import.md +0 -56
  245. package/website/content/docs/cli-reference/ossa-init.md +0 -57
  246. package/website/content/docs/cli-reference/ossa-migrate.md +0 -62
  247. package/website/content/docs/cli-reference/ossa-run.md +0 -66
  248. package/website/content/docs/cli-reference/ossa-schema.md +0 -57
  249. package/website/content/docs/cli-reference/ossa-setup.md +0 -57
  250. package/website/content/docs/cli-reference/ossa-validate.md +0 -66
  251. package/website/content/docs/configuration/index.md +0 -97
  252. package/website/content/docs/contributing.md +0 -599
  253. package/website/content/docs/deployment/github-mirroring.md +0 -924
  254. package/website/content/docs/documentation.md +0 -100
  255. package/website/content/docs/ecosystem/framework-support.md +0 -1361
  256. package/website/content/docs/ecosystem/overview.md +0 -366
  257. package/website/content/docs/errors/index.md +0 -10
  258. package/website/content/docs/examples/aiflow-framework-integration-with-ossa.md +0 -107
  259. package/website/content/docs/examples/catalog.md +0 -300
  260. package/website/content/docs/for-audiences/students-researchers.md +0 -122
  261. package/website/content/docs/getting-started/index.md +0 -92
  262. package/website/content/docs/getting-started/installation.md +0 -155
  263. package/website/content/docs/getting-started/running-agents.md +0 -309
  264. package/website/content/docs/getting-started.md +0 -91
  265. package/website/content/docs/integrations/aiflow.md +0 -104
  266. package/website/content/docs/integrations/drupal.md +0 -105
  267. package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
  268. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
  269. package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
  270. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
  271. package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
  272. package/website/content/docs/migration-guides/index.md +0 -133
  273. package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
  274. package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
  275. package/website/content/docs/migration-guides/migration-manifest.json +0 -64
  276. package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
  277. package/website/content/docs/openapi-extensions/examples.md +0 -550
  278. package/website/content/docs/openapi-extensions/index.md +0 -551
  279. package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
  280. package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
  281. package/website/content/docs/ossa-compliant-badge.md +0 -251
  282. package/website/content/docs/pre-release/index.md +0 -175
  283. package/website/content/docs/quick-reference.md +0 -17
  284. package/website/content/docs/readme.md +0 -35
  285. package/website/content/docs/releases/v0.2.6.md +0 -99
  286. package/website/content/docs/schema-reference/agent-capabilities.md +0 -50
  287. package/website/content/docs/schema-reference/agent-id.md +0 -52
  288. package/website/content/docs/schema-reference/agent-name.md +0 -50
  289. package/website/content/docs/schema-reference/agent-role.md +0 -54
  290. package/website/content/docs/schema-reference/agent-spec.md +0 -406
  291. package/website/content/docs/schema-reference/agent-version.md +0 -50
  292. package/website/content/docs/schema-reference/autonomy.md +0 -568
  293. package/website/content/docs/schema-reference/constraints.md +0 -543
  294. package/website/content/docs/schema-reference/index.md +0 -45
  295. package/website/content/docs/schema-reference/llm-config.md +0 -445
  296. package/website/content/docs/schema-reference/observability.md +0 -654
  297. package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
  298. package/website/content/docs/schema-reference/taxonomy.md +0 -509
  299. package/website/content/docs/schema-reference/tools.md +0 -628
  300. package/website/content/docs/templates/blog-post.md +0 -43
  301. package/website/content/docs/types-reference/index.md +0 -105
  302. package/website/content/docs/use-cases/00-index.md +0 -395
  303. package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
  304. package/website/content/docs/use-cases/customer-support.md +0 -1234
  305. package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
  306. package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
  307. package/website/content/docs/versioning.md +0 -288
  308. package/website/dev.sh +0 -53
  309. package/website/docker-compose.dev.yml +0 -36
  310. package/website/lib/version.ts +0 -35
  311. package/website/lib/versions.json +0 -103
  312. package/website/next.config.ts +0 -18
  313. package/website/nginx.conf +0 -32
  314. package/website/package-lock.json +0 -9679
  315. package/website/package.json +0 -59
  316. package/website/postcss.config.mjs +0 -9
  317. package/website/scripts/fetch-versions.js +0 -166
  318. package/website/scripts/generate-examples-index.js +0 -163
  319. package/website/scripts/merge-docs-to-wiki.ts +0 -207
  320. package/website/scripts/sync-version.js +0 -72
  321. package/website/scripts/sync-wiki.ts +0 -322
  322. package/website/scripts/upload-wiki.ts +0 -199
  323. package/website/styles/_spacing.scss +0 -453
  324. package/website/styles/_tokens.scss +0 -245
  325. package/website/styles/_typography.scss +0 -361
  326. package/website/styles/_variables.scss +0 -287
  327. package/website/tailwind.config.ts +0 -170
@@ -1,285 +0,0 @@
1
- ---
2
- title: "OpenAPI AI Agents Standard (OSSA) - Foundation"
3
- date: "2025-11-23"
4
- author: "Thomas Scola"
5
- category: "Research"
6
- tags: ["OSSA", "AI Agents", "Standards"]
7
- excerpt: "The proliferation of specialized AI agents in enterprise environments necessitates standardized orchestration mechanisms to coordinate their activities effectively. This paper presents the OpenAPI AI..."
8
- ---
9
-
10
- # OpenAPI AI Agents Standard (OSSA) \- Foundation
11
-
12
- ## Intelligent Agent Orchestration: A Standards-Based Framework for Multi-Agent AI Systems
13
-
14
- **Thomas Scola**
15
- *Bluefly.io*
16
- Portland, Maine, USA
17
- [thomas@bluefly.io](mailto:thomas@bluefly.io)
18
-
19
- ###
20
-
21
- ### Abstract
22
-
23
- The proliferation of specialized AI agents in enterprise environments necessitates standardized orchestration mechanisms to coordinate their activities effectively. This paper presents the OpenAPI AI Agents Standard (OSSA), a comprehensive framework for intelligent agent orchestration that addresses fundamental challenges in multi-agent system coordination. We propose a three-tier progressive compliance model (Core, Governed, Advanced) that enables organizations to adopt agent orchestration incrementally while maintaining interoperability across diverse AI frameworks including MCP, LangChain, CrewAI, and AutoGen. The framework introduces capability-based agent routing, dynamic task decomposition, and standardized handoff protocols. Experimental evaluation across 50 specialized agents executing 1,000 multi-agent workflows demonstrates 34% reduction in orchestration overhead, 26% improvement in coordination efficiency, and 21% increase in task completion rates compared to proprietary solutions. The proposed standard provides vendor-neutral protocols that enable seamless integration while supporting enterprise governance requirements including ISO 42001 and NIST AI RMF compliance.
24
-
25
- ### 1\. Introduction
26
-
27
- The evolution of artificial intelligence from monolithic models to specialized agent-based systems represents a fundamental architectural shift in computational systems. Organizations increasingly deploy multiple specialized AI agents to handle complex workflows, creating critical challenges in coordination, resource allocation, and context management. Current approaches suffer from vendor lock-in, incompatible protocols, and inefficient orchestration mechanisms that limit scalability and increase operational costs.
28
-
29
- The OpenAPI AI Agents Standard (OSSA) addresses these challenges through a vendor-neutral, framework-agnostic approach to agent orchestration. Unlike proprietary solutions that create isolated ecosystems, OSSA establishes open protocols enabling interoperability across diverse AI frameworks while supporting enterprise governance requirements.
30
-
31
- This research makes four primary contributions:
32
-
33
- 1. A formal specification for progressive compliance in agent orchestration systems
34
- 2. Capability-based routing algorithms for optimal agent selection
35
- 3. Standardized handoff protocols minimizing context loss
36
- 4. Integration bridges for existing AI frameworks
37
-
38
- ### 2\. Background and Related Work
39
-
40
- #### 2.1 Current Agent Frameworks
41
-
42
- Existing agent frameworks demonstrate various limitations:
43
-
44
- **LangChain** provides extensive tool integration but lacks standardized orchestration protocols. Agent coordination requires custom implementations, leading to fragmented solutions across deployments.
45
-
46
- **CrewAI** supports multi-agent workflows but operates within a single framework paradigm, limiting interoperability with external systems.
47
-
48
- **AutoGen** (Microsoft) enables conversational agent patterns but provides limited support for complex orchestration scenarios requiring dynamic agent selection.
49
-
50
- **Model Context Protocol (MCP)** by Anthropic standardizes tool interfaces but does not address multi-agent coordination or resource optimization.
51
-
52
- #### 2.2 Orchestration Challenges
53
-
54
- Multi-agent systems face several orchestration challenges:
55
-
56
- - **Protocol Incompatibility**: Agents from different frameworks cannot communicate effectively
57
- - **Static Workflows**: Inability to adapt to changing task requirements dynamically
58
- - **Context Fragmentation**: Loss of contextual information during agent handoffs
59
- - **Resource Inefficiency**: Suboptimal agent selection and resource allocation
60
-
61
- ### 3\. The OSSA Framework
62
-
63
- #### 3.1 Architecture Overview
64
-
65
- The OpenAPI AI Agents Standard defines a three-tier progressive compliance model:
66
-
67
- ```
68
- apiVersion: oaas/standard
69
- kind: Agent
70
- metadata:
71
- name: code-analyzer
72
- tier: governed
73
- domain: software-development
74
- spec:
75
- capabilities:
76
- - code-analysis
77
- - security-scanning
78
- - performance-profiling
79
- orchestration:
80
- can-lead: true
81
- can-delegate: true
82
- specialization-level: expert
83
- compliance:
84
- iso42001: compliant
85
- nist-ai-rmf: compliant
86
- ```
87
-
88
- **Core Tier** provides basic agent discovery and invocation:
89
-
90
- - Agent registration and discovery
91
- - Basic capability declaration
92
- - Simple request-response patterns
93
-
94
- **Governed Tier** adds enterprise controls:
95
-
96
- - Audit logging and compliance tracking
97
- - Resource constraints and budgets
98
- - Quality gates and validation
99
-
100
- **Advanced Tier** enables sophisticated orchestration:
101
-
102
- - Dynamic workflow generation
103
- - Multi-agent coordination
104
- - Adaptive resource allocation
105
-
106
- #### 3.2 Capability-Based Routing
107
-
108
- The framework implements intelligent agent selection through capability matching:
109
-
110
- ```py
111
- class CapabilityRouter:
112
- def select_optimal_agent(self, task, available_agents):
113
- # Calculate capability scores
114
- scores = []
115
- for agent in available_agents:
116
- capability_match = self.calculate_capability_match(
117
- task.required_capabilities,
118
- agent.capabilities
119
- )
120
-
121
- specialization_score = self.evaluate_specialization(
122
- task.domain,
123
- agent.specialization_areas
124
- )
125
-
126
- availability_score = self.check_availability(
127
- agent.current_load,
128
- agent.max_capacity
129
- )
130
-
131
- composite_score = (
132
- capability_match * 0.4 +
133
- specialization_score * 0.4 +
134
- availability_score * 0.2
135
- )
136
-
137
- scores.append((agent, composite_score))
138
-
139
- # Return agent with highest score
140
- return max(scores, key=lambda x: x[1])[0]
141
- ```
142
-
143
- #### 3.3 Standardized Handoff Protocol
144
-
145
- OSSA defines efficient handoff mechanisms minimizing context loss:
146
-
147
- ```py
148
- class HandoffProtocol:
149
- def prepare_handoff(self, source_agent, target_agent, context):
150
- handoff_packet = {
151
- 'task_id': context.task_id,
152
- 'source': source_agent.id,
153
- 'target': target_agent.id,
154
- 'context': {
155
- 'state': context.current_state,
156
- 'history': context.get_relevant_history(),
157
- 'constraints': context.constraints
158
- },
159
- 'metadata': {
160
- 'timestamp': datetime.now(),
161
- 'protocol_version': 'standard'
162
- }
163
- }
164
-
165
- # Validate handoff compatibility
166
- if not self.validate_compatibility(source_agent, target_agent):
167
- raise HandoffException("Incompatible agent protocols")
168
-
169
- return self.compress_handoff(handoff_packet)
170
- ```
171
-
172
- ### 4\. Implementation
173
-
174
- #### 4.1 Framework Integration
175
-
176
- OSSA provides integration bridges for existing frameworks:
177
-
178
- ```py
179
- # LangChain Integration
180
- class LangChainBridge(OSSABridge):
181
- def wrap_agent(self, langchain_agent):
182
- return OSSAAgent(
183
- native_agent=langchain_agent,
184
- capabilities=self.extract_capabilities(langchain_agent),
185
- adapter=self.create_langchain_adapter()
186
- )
187
-
188
- # CrewAI Integration
189
- class CrewAIBridge(OSSABridge):
190
- def wrap_crew(self, crew):
191
- agents = []
192
- for crew_agent in crew.agents:
193
- agents.append(self.wrap_agent(crew_agent))
194
- return OSSAWorkflow(agents=agents)
195
- ```
196
-
197
- #### 4.2 Dynamic Task Decomposition
198
-
199
- The framework enables intelligent task breakdown:
200
-
201
- ```py
202
- class TaskDecomposer:
203
- def decompose_task(self, task, available_agents):
204
- # Analyze task complexity
205
- complexity_analysis = self.analyze_complexity(task)
206
-
207
- # Identify subtasks
208
- subtasks = self.identify_subtasks(task, complexity_analysis)
209
-
210
- # Map subtasks to agents
211
- task_assignments = []
212
- for subtask in subtasks:
213
- optimal_agent = self.capability_router.select_optimal_agent(
214
- subtask,
215
- available_agents
216
- )
217
- task_assignments.append({
218
- 'subtask': subtask,
219
- 'agent': optimal_agent,
220
- 'priority': subtask.priority,
221
- 'dependencies': subtask.dependencies
222
- })
223
-
224
- # Generate execution plan
225
- return self.generate_execution_plan(task_assignments)
226
- ```
227
-
228
- ### 5\. Evaluation
229
-
230
- #### 5.1 Experimental Setup
231
-
232
- We evaluated OSSA across three dimensions:
233
-
234
- - **Orchestration Efficiency**: Overhead and coordination metrics
235
- - **Task Performance**: Completion rates and quality scores
236
- - **Interoperability**: Cross-framework communication success
237
-
238
- **Test Environment:**
239
-
240
- - 50 specialized agents across 5 frameworks
241
- - 1,000 multi-agent workflows
242
- - Tasks: Code generation, testing, documentation, analysis
243
- - Baselines: Native framework orchestration, custom integrations
244
-
245
- #### 5.2 Results
246
-
247
- | Metric | Baseline | OSSA | Improvement |
248
- | :---- | :---- | :---- | :---- |
249
- | Orchestration Overhead | 450ms | 297ms | 34% reduction |
250
- | Coordination Efficiency | 0.72 | 0.91 | 26% improvement |
251
- | Task Completion Rate | 78% | 94% | 21% increase |
252
- | Context Preservation | 65% | 89% | 37% improvement |
253
- | Cross-Framework Success | 45% | 92% | 104% improvement |
254
-
255
- #### 5.3 Case Study: Multi-Framework Development Pipeline
256
-
257
- **Scenario**: Coordinate agents from LangChain (planning), CrewAI (implementation), and AutoGen (testing) for feature development.
258
-
259
- **Baseline Approach**: Custom integration scripts, manual handoffs
260
-
261
- - Time: 45 minutes
262
- - Success Rate: 65%
263
- - Manual Interventions: 8
264
-
265
- **OSSA Approach**: Standardized orchestration
266
-
267
- - Time: 28 minutes (38% faster)
268
- - Success Rate: 92%
269
- - Manual Interventions: 1
270
-
271
- ### 6\. Discussion
272
-
273
- The evaluation demonstrates OSSA's effectiveness in addressing key orchestration challenges. The 34% reduction in overhead validates the efficiency of standardized protocols, while 104% improvement in cross-framework communication confirms the value of vendor-neutral standards.
274
-
275
- Key findings:
276
-
277
- 1. **Progressive Compliance Enables Adoption**: Organizations can start with Core tier and advance gradually
278
- 2. **Capability Routing Improves Selection**: 26% better agent utilization through intelligent matching
279
- 3. **Standardized Handoffs Preserve Context**: 37% improvement in context retention
280
-
281
- Limitations include initial integration overhead and the need for framework-specific adapters. Future work will address automatic adapter generation and machine learning-based optimization.
282
-
283
- ### 7\. Conclusion
284
-
285
- The OpenAPI AI Agents Standard provides a comprehensive framework for multi-agent orchestration, addressing critical challenges in coordination, interoperability, and resource optimization. Through progressive compliance tiers, capability-based routing, and standardized protocols, OSSA enables efficient orchestration while maintaining vendor neutrality. Experimental validation demonstrates significant improvements in orchestration efficiency, task performance, and cross-framework compatibility, establishing OSSA as a practical foundation for enterprise multi-agent systems.
@@ -1,198 +0,0 @@
1
- ---
2
- title: "Why Formal Standards Matter Now"
3
- date: "2025-11-23"
4
- author: "Thomas Scola, Bluefly.io Founder & CEO"
5
- category: "Research"
6
- tags: ["OSSA", "AI Agents", "Standards"]
7
- excerpt: "The AI agent ecosystem is at the exact inflection point where APIs were a decade ago: fragmented, vendor-locked, and unsustainable at scale. We need OpenAPI for AI agents—not as a nice-to-have, but as a foundational governance layer. This article explores why formal standards matter now, how they enable vendor neutrality, and what the path forward looks like for enterprises and framework builders."
8
- ---
9
-
10
- # OpenAPI for AI Agents—Why Formal Standards Matter Now
11
-
12
- ## The Case for Vendor-Neutral AI Agent Standards
13
-
14
- Five years ago, if you asked engineers why they used OpenAPI, they'd probably shrug. Today, it's the foundation of enterprise API strategy. OpenAPI isn't a technology—it's a contract. It says: "Here's what my service does, what it needs, and what it returns." That contract means a team in Tokyo can integrate a service built in São Paulo without vendor lock-in, framework coupling, or repeated discovery conversations.
15
-
16
- The AI agent ecosystem is at the exact inflection point where APIs were a decade ago: fragmented, vendor-locked, and unsustainable at scale.
17
-
18
- We need OpenAPI for AI agents. Not as a nice-to-have. As a foundational governance layer.
19
-
20
- ---
21
-
22
- ## The Problem: Vendor Lock-in at Scale
23
-
24
- Today's AI agent frameworks each define agents differently:
25
-
26
- - **Cursor** agents work with Cursor's architecture
27
- - **OpenAI's framework** locks you into OpenAI's tooling
28
- - **CrewAI** agents don't port to LangChain without rewriting
29
- - **Claude's tool_use** protocol differs from other agent runtimes
30
- - **BuildKit** implements its own orchestration model
31
-
32
- This isn't accidental—it's the natural state of an immature market. But it has serious consequences:
33
-
34
- **For enterprises:** You're choosing a vendor, not an architecture. Switching frameworks means rewriting agent definitions, retraining teams, and auditing compliance from scratch.
35
-
36
- **For developers:** Your prompt engineering, tool definitions, and orchestration logic become proprietary artifacts locked into one ecosystem.
37
-
38
- **For innovation:** The ecosystem fragments instead of composing. Great tools can't talk to each other. Standards that could emerge get buried in closed implementations.
39
-
40
- This is exactly where APIs were circa 2005—before Swagger (now OpenAPI) gave the industry a shared language.
41
-
42
- ---
43
-
44
- ## Why Formal Standards Work
45
-
46
- OpenAPI succeeded because it solved a real coordination problem. Without it:
47
-
48
- - Each API team defined their own documentation format
49
- - Integration required reverse-engineering or phone calls
50
- - Governance was inconsistent (what counts as "valid" input?)
51
- - Tooling couldn't be built once and reused everywhere
52
- - Compliance audits required custom inspection of every API
53
-
54
- **OpenAPI changed the game by:**
55
-
56
- 1. **Separating specification from implementation.** Your OpenAPI spec is a contract independent of whether you use FastAPI, Express, Django, or Go. The spec is governance; the code is execution.
57
-
58
- 2. **Enabling tool ecosystems.** Once you had OpenAPI, you could build code generators, mock servers, testing frameworks, SDK builders, and governance tools that worked across all APIs using the spec.
59
-
60
- 3. **Creating vendor neutrality.** OpenAPI belongs to the Linux Foundation. No vendor controls it. No vendor can lock you in through the standard itself.
61
-
62
- 4. **Building confidence through formalism.** OpenAPI specs are machine-readable, validatable, and testable. You can *prove* compliance rather than hope for it.
63
-
64
- AI agents need exactly this.
65
-
66
- ---
67
-
68
- ## What a Formal Agent Standard Looks Like
69
-
70
- A vendor-neutral AI agent standard should define:
71
-
72
- **Agent Interface (What the agent does)**
73
- - Accepted input schemas
74
- - Output schemas and guarantees
75
- - Error handling contracts
76
- - Rate limits and timeout behavior
77
- - State management semantics
78
-
79
- **Tool Contracts (What the agent can call)**
80
- - Tool definitions (name, parameters, return type)
81
- - Pre/post-condition semantics
82
- - Side effect guarantees
83
- - Error recovery protocols
84
- - Security boundaries
85
-
86
- **Orchestration Metadata**
87
- - Agent dependencies and composition rules
88
- - Routing logic and load balancing hints
89
- - Fallback and retry strategies
90
- - Compliance and audit trail requirements
91
- - Observability surface (logging, tracing, metrics)
92
-
93
- **Governance and Conformance**
94
- - Version management and deprecation paths
95
- - Certification that an agent conforms to the standard
96
- - Test suites that prove conformance
97
- - Audit trails for compliance frameworks (FedRAMP, NIST, SOC 2)
98
-
99
- Think of it like OpenAPI, but for agents.
100
-
101
- ---
102
-
103
- ## The Business Case: Why This Matters Now
104
-
105
- **1. Cost Control**
106
-
107
- Right now, every vendor is optimizing for their own economics. That means:
108
- - Unnecessary API calls (bad orchestration = more token spend)
109
- - Redundant inference (agents don't compose, so you run multiple models)
110
- - Lock-in pricing premiums (you can't negotiate or switch)
111
-
112
- A formal standard enables cross-vendor optimization. You choose the best model for each task. You build agents once and run them on Claude, GPT-4, or local LLMs without rewriting.
113
-
114
- We've measured this in production: **proper agent orchestration reduces token consumption by 40-60%** and cuts total cost of ownership by 30-50% for multi-agent systems.
115
-
116
- **2. Compliance and Governance**
117
-
118
- Regulated industries (government, healthcare, finance) need auditable systems. Right now:
119
- - Each agent framework has different logging, tracing, and observability
120
- - Compliance audits require framework-specific expertise
121
- - You can't prove that your agents conform to policy without custom inspection
122
-
123
- A formal standard means you can:
124
- - Define compliance requirements once (in the spec)
125
- - Test conformance automatically
126
- - Generate audit trails that satisfy FedRAMP, NIST, and SOC 2 requirements
127
- - Switch implementations without re-auditing
128
-
129
- **3. Talent and Team Velocity**
130
-
131
- When your agents are locked into one framework, you're hiring for that framework. When agents are specified formally:
132
- - New team members ramp faster (spec-driven learning)
133
- - You can compose teams around problems, not technologies
134
- - Agents become documented, shareable assets
135
- - Code reviews become specification reviews
136
-
137
- ---
138
-
139
- ## Why This Has to be Open and Vendor-Neutral
140
-
141
- This is the critical lesson from OpenAPI's success.
142
-
143
- If one vendor controls the agent standard, it becomes a competitive weapon, not a standard. AWS wouldn't use Azure's standard. Google wouldn't endorse OpenAI's orchestration format. Small teams would see it as favoritism.
144
-
145
- OpenAPI works because:
146
- - It's owned by the Linux Foundation, not any single company
147
- - The governance model is transparent and inclusive
148
- - Major vendors (Google, Microsoft, Amazon, Stripe) all use it because they have a voice in its evolution
149
- - Startups can build on it without fear of legal entanglement
150
-
151
- An agent standard needs the same structure. It should:
152
- - Live in a neutral foundation (not Anthropic, not OpenAI, not a VC-backed company)
153
- - Be governed by a diverse board (vendors, users, academics, compliance experts)
154
- - Have a clear RFC process for evolution
155
- - Guarantee that conformance testing is open-source and vendor-neutral
156
- - Prevent any single company from locking in via the standard
157
-
158
- ---
159
-
160
- ## Getting There: Practical Steps
161
-
162
- **For enterprises right now:**
163
-
164
- 1. **Demand portability.** When evaluating agent frameworks, ask: "Can we export our agents to a vendor-neutral format?" If the answer is no, you're being locked in.
165
-
166
- 2. **Invest in agent contracts.** Define your agents via formal specifications (OpenAPI-style) before implementing in a specific framework. This separates your domain logic from the framework coupling.
167
-
168
- 3. **Build for multi-vendor orchestration.** If you're running multiple agents, assume they'll come from different platforms. Design your orchestration layer to work with vendor-neutral agent definitions.
169
-
170
- 4. **Contribute to open standards.** The only way a standard becomes credible is if enterprises and vendors invest in it together.
171
-
172
- **For framework builders:**
173
-
174
- 1. **Export to a standard format.** If your framework doesn't support exporting agents to a vendor-neutral specification, you're betting against the future.
175
-
176
- 2. **Implement conformance testing.** Show that your agents pass the same tests that any other compliant agent would pass.
177
-
178
- 3. **Join the governance conversation.** Help shape the standard rather than fight it.
179
-
180
- ---
181
-
182
- ## The Path Forward
183
-
184
- This is happening. The industry has learned that vendor lock-in is unsustainable. OpenAPI proved that formal standards don't restrict innovation—they enable it.
185
-
186
- An agent standard will look like OpenAPI: a specification that separates contracts from implementations, enables tool ecosystems, and guarantees vendor neutrality.
187
-
188
- The question isn't whether this happens. It's whether it happens with your input, or whether you're caught flat-footed when it does.
189
-
190
- **The teams that move first—that build agent systems assuming portability, that invest in formal specifications, that contribute to open standards—will own the competitive advantage when the market matures.**
191
-
192
- Because in five years, when someone asks "Why does your team use an open agent standard?" the answer will be as obvious as it is for APIs today:
193
-
194
- "Because everything else is insane."
195
-
196
- ---
197
-
198
- **Want to explore agent standards further?** The conversation is happening now. Join the [Open Standard Agents](https://openstandardagents.org) community, contribute to the specification, or reach out to discuss how your organization can build for portability today.