@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
@@ -1,279 +0,0 @@
1
- ---
2
- title: ""Real-World Results: 34% Efficiency Gains with OSSA""
3
- date: "2024-11-20"
4
- author: "Thomas Scola"
5
- category: "Research"
6
- tags: [ossa, performance, case-study, results]
7
- excerpt: "Production testing across 50 specialized agents executing 1,000 workflows shows OSSA delivers measurable improvements in efficiency, success rates, and context preservation."
8
- ---
9
-
10
- # Real-World Results: 34% Efficiency Gains with OSSA
11
-
12
- After exploring [why agents need standards](/blog/why-ai-agents-need-open-standard) and [OSSA's architecture](/blog/introducing-ossa-framework), it's time for the critical question: **Does it actually work?**
13
-
14
- We ran OSSA through rigorous production testing. Here's what we found.
15
-
16
- ## Experimental Setup
17
-
18
- **Test Environment**:
19
- - **50 specialized agents** across 5 frameworks (LangChain, CrewAI, AutoGen, MCP, custom)
20
- - **1,000 multi-agent workflows** ranging from simple (2 agents) to complex (8+ agents)
21
- - **Real tasks**: Code generation, testing, documentation, security analysis, deployment
22
-
23
- **Baselines**:
24
- - Native framework orchestration (single-framework workflows)
25
- - Custom integration scripts (cross-framework workflows)
26
- - Manual coordination (human-in-the-loop)
27
-
28
- **Measurement Focus**:
29
- 1. Orchestration efficiency (overhead and coordination metrics)
30
- 2. Task performance (completion rates and quality scores)
31
- 3. Interoperability (cross-framework communication success)
32
-
33
- ## The Results
34
-
35
- ### Orchestration Overhead: 34% Reduction
36
-
37
- | Metric | Baseline | OSSA | Improvement |
38
- |--------|----------|------|-------------|
39
- | Coordination overhead | 450ms | 297ms | **34% reduction** |
40
- | Memory per handoff | 2.4MB | 1.8MB | 25% reduction |
41
- | Network calls | 12.3 avg | 8.7 avg | 29% reduction |
42
-
43
- **What this means**: In a 5-agent workflow, baseline approaches spent **2.25 seconds** just coordinating—before doing any actual work. OSSA reduces this to **1.48 seconds**.
44
-
45
- At scale (1,000 workflows/day), that's **12.75 hours saved daily** just in coordination overhead.
46
-
47
- ### Coordination Efficiency: 26% Improvement
48
-
49
- | Metric | Baseline | OSSA | Improvement |
50
- |--------|----------|------|-------------|
51
- | Agent utilization | 0.72 | 0.91 | **26% improvement** |
52
- | Optimal routing rate | 58% | 87% | 50% improvement |
53
- | Load balancing score | 0.65 | 0.89 | 37% improvement |
54
-
55
- **Capability-based routing works**: OSSA routes tasks to optimal agents **87% of the time**, compared to **58%** with static assignment.
56
-
57
- **Real impact**: Expensive specialized agents (GPT-4 fine-tuned models) handle only tasks requiring their expertise. Simple tasks route to lighter agents, reducing compute costs by an average of **31%**.
58
-
59
- ### Task Completion Rate: 21% Increase
60
-
61
- | Metric | Baseline | OSSA | Improvement |
62
- |--------|----------|------|-------------|
63
- | Success rate | 78% | 94% | **21% increase** |
64
- | Retry rate | 18% | 6% | 67% reduction |
65
- | Manual interventions | 8.2 avg | 1.4 avg | 83% reduction |
66
-
67
- **The baseline 78% success rate** means **220 failures out of 1,000 workflows**. At enterprise scale, that's unacceptable.
68
-
69
- **OSSA's 94% success rate** reduces failures to **60 out of 1,000**—a **73% reduction** in failure volume.
70
-
71
- ### Context Preservation: 37% Improvement
72
-
73
- | Metric | Baseline | OSSA | Improvement |
74
- |--------|----------|------|-------------|
75
- | Context retention | 65% | 89% | **37% improvement** |
76
- | Handoff accuracy | 71% | 92% | 30% improvement |
77
- | State consistency | 68% | 91% | 34% improvement |
78
-
79
- **Why this matters**: In a 5-agent workflow, baseline approaches deliver only **65%³ = 27.5%** of the original context to the final agent. OSSA delivers **89%³ = 70.4%**—more than **2.5x better**.
80
-
81
- ### Cross-Framework Success: 104% Improvement
82
-
83
- This is where OSSA truly shines:
84
-
85
- | Metric | Baseline | OSSA | Improvement |
86
- |--------|----------|------|-------------|
87
- | Cross-framework success | 45% | 92% | **104% improvement** |
88
- | Integration time | 18.5 hours | 2.3 hours | 87% reduction |
89
- | Breaking changes handled | 23% | 89% | 287% improvement |
90
-
91
- **Baseline cross-framework workflows failed 55% of the time**. Custom integration scripts are brittle, breaking with framework updates.
92
-
93
- **OSSA standardization enables 92% success rates** even across incompatible frameworks.
94
-
95
- ## Case Study: Multi-Framework Development Pipeline
96
-
97
- Let's examine a real workflow: **feature development coordinating three frameworks**.
98
-
99
- ### Scenario
100
-
101
- Build a new user authentication feature requiring:
102
-
103
- 1. **Planning** (LangChain agent) - Analyze requirements, design architecture
104
- 2. **Implementation** (CrewAI agents) - Code generation, database migrations
105
- 3. **Testing** (AutoGen agent) - Unit tests, integration tests, security scan
106
- 4. **Documentation** (Custom agent) - API docs, user guides
107
-
108
- ### Baseline Approach: Custom Integration
109
-
110
- **Architecture**:
111
- ```
112
- LangChain Agent
113
- ↓ (manual export to JSON)
114
- CrewAI Coordinator
115
- ↓ (custom webhook)
116
- AutoGen Testing Agent
117
- ↓ (file system handoff)
118
- Documentation Agent
119
- ```
120
-
121
- **Results**:
122
- - **Total Time**: 45 minutes
123
- - **Success Rate**: 65%
124
- - **Manual Interventions**: 8 (fix handoff failures, restart agents)
125
- - **Context Loss**: 48% by final stage
126
- - **Developer Frustration**: Extreme 😤
127
-
128
- **Failure Modes**:
129
- - LangChain output format incompatible with CrewAI input (35% of failures)
130
- - Webhook timeouts (20%)
131
- - Missing context in test generation (30%)
132
- - Documentation agent couldn't find artifacts (15%)
133
-
134
- ### OSSA Approach: Standardized Orchestration
135
-
136
- **Architecture**:
137
- ```yaml
138
- workflow:
139
- name: feature-development
140
- tier: advanced
141
-
142
- stages:
143
- - name: planning
144
- agent:
145
- capability: architecture-design
146
- framework: langchain
147
- output:
148
- schema: ossa/plan-v1
149
-
150
- - name: implementation
151
- agent:
152
- capability: code-generation
153
- framework: crewai
154
- input:
155
- from: planning
156
- transform: ossa/plan-to-task
157
-
158
- - name: testing
159
- agent:
160
- capability: test-generation
161
- framework: autogen
162
- input:
163
- from: implementation
164
- context: full
165
-
166
- - name: documentation
167
- agent:
168
- capability: documentation
169
- framework: custom
170
- input:
171
- from: [planning, implementation, testing]
172
- merge: true
173
- ```
174
-
175
- **Results**:
176
- - **Total Time**: 28 minutes (**38% faster**)
177
- - **Success Rate**: 92% (**42% improvement**)
178
- - **Manual Interventions**: 1 (**87% reduction**)
179
- - **Context Loss**: 11% by final stage (**77% better**)
180
- - **Developer Frustration**: Minimal 😊
181
-
182
- **How OSSA Achieved This**:
183
-
184
- 1. **Standardized Schemas**: LangChain output automatically compatible with CrewAI input
185
- 2. **Reliable Handoffs**: Built-in retry logic, validation, compression
186
- 3. **Full Context**: Documentation agent receives merged context from all prior stages
187
- 4. **Intelligent Routing**: If primary agent busy, OSSA routes to secondary capability provider
188
- 5. **Audit Trail**: Complete workflow history for debugging
189
-
190
- ## Token Efficiency: 23% Reduction
191
-
192
- Beyond orchestration, OSSA optimizes LLM token usage:
193
-
194
- | Metric | Baseline | OSSA | Improvement |
195
- |--------|----------|------|-------------|
196
- | Tokens per handoff | 4,200 avg | 3,234 avg | **23% reduction** |
197
- | Redundant context | 38% | 12% | 68% reduction |
198
- | Compression ratio | 1.2x | 2.1x | 75% improvement |
199
-
200
- **Cost Impact**: At $0.03 per 1K tokens (GPT-4 output), a 5-agent workflow saves **$0.14 per execution** on tokens alone. At 1,000 workflows/day, that's **$140/day** or **$51,100/year** in reduced LLM costs.
201
-
202
- ## Performance by Workflow Complexity
203
-
204
- | Agents | Baseline Success | OSSA Success | Improvement |
205
- |--------|------------------|--------------|-------------|
206
- | 2 agents | 89% | 97% | 9% |
207
- | 3-4 agents | 78% | 94% | 21% |
208
- | 5-6 agents | 65% | 89% | 37% |
209
- | 7+ agents | 42% | 81% | **93%** |
210
-
211
- **Key insight**: OSSA's advantage grows with workflow complexity. For workflows with 7+ agents—exactly where automation delivers maximum value—baseline approaches fail **58% of the time**. OSSA succeeds **81% of the time**.
212
-
213
- ## Enterprise Metrics
214
-
215
- Beyond raw performance, OSSA delivers enterprise-critical capabilities:
216
-
217
- ### Audit & Compliance
218
-
219
- - **100% audit coverage** across all agent interactions
220
- - **ISO 42001 compliance** for AI management systems
221
- - **NIST AI RMF alignment** for responsible AI
222
- - **Immutable audit logs** with cryptographic verification
223
-
224
- ### Budget Management
225
-
226
- - **Real-time cost tracking** across all agents
227
- - **Configurable budget limits** (token, time, cost)
228
- - **Automatic enforcement** prevents overruns
229
- - **Cost allocation** by team, project, task
230
-
231
- ### Quality Assurance
232
-
233
- - **Quality gates** validate outputs before handoff
234
- - **Scoring thresholds** ensure minimum standards
235
- - **Automatic retries** for failed quality checks
236
- - **Human-in-the-loop** escalation when needed
237
-
238
- ## Key Takeaways
239
-
240
- Production testing validates OSSA's value proposition:
241
-
242
- - ✅ **34% reduction** in orchestration overhead (450ms → 297ms)
243
- - ✅ **26% improvement** in coordination efficiency (0.72 → 0.91)
244
- - ✅ **21% increase** in task completion (78% → 94%)
245
- - ✅ **37% improvement** in context preservation (65% → 89%)
246
- - ✅ **104% improvement** in cross-framework success (45% → 92%)
247
- - ✅ **23% reduction** in token costs
248
- - ✅ **87% reduction** in manual interventions
249
-
250
- **Real case study**: Feature development workflow improved from **45 minutes at 65% success** to **28 minutes at 92% success**.
251
-
252
- ## What's Next
253
-
254
- These results validate the OSSA approach, but we're just getting started. Future research directions:
255
-
256
- - **Automatic adapter generation** - Reduce framework integration time from hours to minutes
257
- - **ML-based optimization** - Learn optimal routing strategies from workflow history
258
- - **Federated agent networks** - Enable agent discovery across organizational boundaries
259
- - **Real-time adaptation** - Adjust workflows dynamically based on execution patterns
260
-
261
- ## Get Started
262
-
263
- Ready to achieve similar results?
264
-
265
- - **Install OSSA**: `npm install -g @bluefly/open-standards-scalable-agents`
266
- - **Read the docs**: [Getting Started Guide](/docs/getting-started/installation)
267
- - **Try examples**: [Example Workflows](/examples)
268
- - **Join the community**: [GitHub Discussions](https://github.com/BlueflyCollective/OSSA/discussions)
269
-
270
- ---
271
-
272
- **Series**:
273
- - [Part 1: Why AI Agents Need an Open Standard](/blog/why-ai-agents-need-open-standard)
274
- - [Part 2: Introducing the OSSA Framework](/blog/introducing-ossa-framework)
275
- - **Part 3: Real-World Results** (this post)
276
-
277
- **Research Paper**: [OpenAPI for AI Agents: Formal Standard Documentation](/research)
278
-
279
- **Questions?** [Open an issue](https://github.com/BlueflyCollective/OSSA/issues) or [contact us](mailto:thomas@bluefly.io)
@@ -1,43 +0,0 @@
1
- ---
2
- title: "Welcome to OSSA"
3
- date: "2024-01-15"
4
- author: "OSSA Team"
5
- category: "Announcement"
6
- tags: ["OSSA", "announcement", "standard"]
7
- excerpt: "OSSA (Open Standard for Scalable AI Agents) is now available as an open standard for AI agents. Just as OpenAPI standardizes REST APIs, OSSA standardizes agent interoperability across frameworks, runtimes, and organizations. This vendor-neutral specification enables framework-agnostic agent definitions, portable deployments, and validatable configurations without vendor lock-in."
8
- ---
9
-
10
- # Welcome to OSSA
11
-
12
- We're excited to announce the release of **OSSA (Open Standard for Scalable AI Agents)** - the OpenAPI for AI Agents.
13
-
14
- ## What is OSSA?
15
-
16
- OSSA is a specification standard for defining AI agents, similar to how OpenAPI standardizes REST APIs. Just as OpenAPI enables API interoperability, OSSA enables agent interoperability across frameworks, runtimes, and organizations.
17
-
18
- ## Key Features
19
-
20
- - **Framework-agnostic** - Works with any LLM framework
21
- - **Portable** - Move agents between teams and organizations
22
- - **Validatable** - JSON Schema validation ensures correctness
23
- - **No vendor lock-in** - Deploy to any infrastructure
24
-
25
- ## Get Started
26
-
27
- Install the OSSA CLI:
28
-
29
- ```bash
30
- npm install -g @openstandardagents/cli
31
- ```
32
-
33
- Create your first agent:
34
-
35
- ```bash
36
- osa init my-agent --type worker
37
- ```
38
-
39
- ## Learn More
40
-
41
- - [Documentation](/docs)
42
- - [Examples](/examples)
43
- - [Playground](/playground)
@@ -1,98 +0,0 @@
1
- ---
2
- title: ""Why AI Agents Need an Open Standard""
3
- date: ""2024-11-15""
4
- author: ""Thomas Scola""
5
- category: ""Technical""
6
- tags: ["OSSA", "standards", "interoperability", "multi-agent"]
7
- excerpt: "\"The proliferation of specialized AI agents in enterprise environments necessitates standardized orchestration mechanisms. Here's why.\""
8
- ---
9
-
10
- # Why AI Agents Need an Open Standard
11
-
12
- The evolution of artificial intelligence from monolithic models to specialized agent-based systems represents a fundamental architectural shift. Organizations are increasingly deploying multiple specialized AI agents to handle complex workflows—but they're hitting critical walls.
13
-
14
- ## The Problem: Fragmented Agent Ecosystems
15
-
16
- Today's AI landscape is fragmented. Organizations deploying agents face four major challenges:
17
-
18
- ### 1. Protocol Incompatibility
19
-
20
- **LangChain** provides extensive tool integration but lacks standardized orchestration protocols. Agent coordination requires custom implementations, leading to fragmented solutions across deployments.
21
-
22
- **CrewAI** supports multi-agent workflows but operates within a single framework paradigm, limiting interoperability with external systems.
23
-
24
- **AutoGen** (Microsoft) enables conversational agent patterns but provides limited support for complex orchestration scenarios requiring dynamic agent selection.
25
-
26
- **Model Context Protocol (MCP)** by Anthropic standardizes tool interfaces but doesn't address multi-agent coordination or resource optimization.
27
-
28
- Each framework creates its own isolated ecosystem. Moving agents between them? Custom integration scripts. Coordinating agents across frameworks? Manual handoffs and context loss.
29
-
30
- ### 2. Static Workflows
31
-
32
- Current approaches lock you into predefined workflows. When task requirements change dynamically—as they always do in production—systems can't adapt. You're forced to rebuild rather than reconfigure.
33
-
34
- ### 3. Context Fragmentation
35
-
36
- Baseline approaches to multi-agent coordination suffer **65% context preservation** rates. Every handoff between agents loses critical information. The third agent in a chain barely remembers what the first one did.
37
-
38
- ### 4. Resource Inefficiency
39
-
40
- Without intelligent agent selection, you're running compute-intensive models on tasks that simpler agents could handle. Baseline orchestration overhead averages **450ms per coordination event**—death by a thousand handoffs.
41
-
42
- ## The Real Cost
43
-
44
- Let's look at a real scenario: coordinating agents from LangChain (planning), CrewAI (implementation), and AutoGen (testing) for feature development.
45
-
46
- **Baseline Approach** (custom integration):
47
- - Time: **45 minutes**
48
- - Success Rate: **65%**
49
- - Manual Interventions: **8**
50
-
51
- That's nearly an hour per workflow, with a 35% failure rate requiring human intervention. At scale, this is unsustainable.
52
-
53
- ## What's Missing: A Vendor-Neutral Standard
54
-
55
- The AI agent ecosystem needs what REST APIs got in 2010: **a universal standard**.
56
-
57
- Just as OpenAPI enabled REST API interoperability, we need a standard that:
58
-
59
- - ✅ **Enables cross-framework coordination** - LangChain agents talk to CrewAI agents seamlessly
60
- - ✅ **Preserves context across handoffs** - 89% context retention instead of 65%
61
- - ✅ **Optimizes resource allocation** - Route tasks to the right agent automatically
62
- - ✅ **Supports enterprise governance** - Audit trails, budget controls, compliance tracking
63
-
64
- ## The Vision: The Internet of Agents
65
-
66
- Imagine a world where:
67
-
68
- - Your security scanning agent (LangChain) automatically coordinates with your code generation agent (CrewAI) and testing agent (AutoGen)
69
- - Agents discover each other's capabilities dynamically, like microservices in Kubernetes
70
- - Context flows seamlessly between agents, with 89% preservation instead of 65%
71
- - Orchestration overhead drops from 450ms to 297ms (34% reduction)
72
- - Success rates jump from 65% to 92%
73
-
74
- This isn't hypothetical. The data comes from production testing across 50 specialized agents executing 1,000 multi-agent workflows.
75
-
76
- ## Enter OSSA
77
-
78
- The **OpenAPI for AI Agents Standard (OSSA)** addresses these challenges through:
79
-
80
- 1. **Progressive Compliance Model** (Core → Governed → Advanced)
81
- 2. **Capability-Based Routing** for optimal agent selection
82
- 3. **Standardized Handoff Protocols** minimizing context loss
83
- 4. **Framework Integration Bridges** for existing ecosystems
84
-
85
- In our next post, we'll dive into the OSSA framework architecture and how the 3-tier compliance model enables incremental adoption.
86
-
87
- ## Key Takeaways
88
-
89
- - Current agent frameworks create **isolated ecosystems** with incompatible protocols
90
- - Baseline multi-agent coordination suffers from **65% context preservation**, **450ms overhead**, and **65% success rates**
91
- - Organizations need a **vendor-neutral standard** for agent interoperability
92
- - Production testing shows **34% efficiency gains** are achievable with standardized orchestration
93
-
94
- The future of AI isn't monolithic models—it's coordinated specialist agents. But without open standards, we're building a Tower of Babel.
95
-
96
- ---
97
-
98
- **Next in this series**: [Introducing the OSSA Framework: 3-Tier Progressive Compliance](/blog/Introducing-OSSA-Framework)
@@ -1,153 +0,0 @@
1
- # OSSA - Open Standard for Scalable AI Agents
2
-
3
- **The OpenAPI for AI Agents** - A specification standard for AI agent definition, deployment, and management
4
-
5
- [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
6
- [![npm version](https://img.shields.io/npm/v/@bluefly/openstandardagents.svg)](https://www.npmjs.com/package/@bluefly/openstandardagents)
7
- [![Specification](https://img.shields.io/badge/Spec-v0.2.x-blue)](https://github.com/blueflyio/openstandardagents/blob/main/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json)
8
-
9
- ---
10
-
11
- ## Welcome to OSSA
12
-
13
- **OSSA (Open Standard for Scalable AI Agents)** is a specification standard for defining AI agents, similar to how **OpenAPI** standardizes REST APIs. Just as OpenAPI enables API interoperability, OSSA enables agent interoperability across frameworks, runtimes, and organizations.
14
-
15
- ### Quick Navigation
16
-
17
- #### 🚀 Getting Started
18
- - [5-Minute Overview](/docs/getting-started/5-minute-overview)
19
- - [Installation Guide](/docs/getting-started/installation)
20
- - [Hello World Tutorial](/docs/getting-started/hello-world)
21
- - [First Agent Creation](/docs/getting-started/first-agent)
22
-
23
- #### 👥 For Different Audiences
24
- - [Students & Researchers](/docs/for-audiences/students-researchers)
25
- - [Developers](/docs/for-audiences/developers)
26
- - [Architects & Platform Engineers](/docs/for-audiences/architects)
27
- - [Enterprises](/docs/for-audiences/enterprises)
28
-
29
- #### 📚 Technical Documentation
30
- - [Specification](/docs/specification)
31
- - [Schema Reference](/docs/schema-reference)
32
- - [OpenAPI Extensions](/docs/openapi-extensions)
33
-
34
- #### 💡 Examples & Patterns
35
- - [Migration Guides](/docs/migration-guides/langchain-to-ossa)
36
- - [Ecosystem Overview](/docs/ecosystem/overview)
37
- - [Framework Support](/docs/ecosystem/framework-support)
38
-
39
- #### 🌐 Ecosystem
40
- - [Ecosystem Overview](/docs/ecosystem/overview)
41
- - [Framework Support](/docs/ecosystem/framework-support)
42
-
43
- ---
44
-
45
- ## What is OSSA?
46
-
47
- OSSA is a **specification standard** for defining AI agents, similar to how OpenAPI standardizes REST APIs.
48
-
49
- **OSSA is NOT a framework** - it's a standard that defines the contract. Implementations provide the functionality.
50
-
51
- ### The Problem OSSA Solves
52
-
53
- Before OSSA, AI agents were:
54
- - **Framework-locked** - LangChain agents couldn't work with Anthropic SDK agents
55
- - **Runtime-coupled** - Agents tied to specific deployment environments
56
- - **Non-portable** - Moving agents between teams/orgs required rewriting
57
- - **Hard to validate** - No standard way to verify agent correctness
58
- - **Difficult to discover** - No standard registry or discovery mechanism
59
-
60
- **OSSA solves these problems** by providing a standard, declarative format for agent definition that is:
61
- - ✅ **Framework-agnostic** - Works with any LLM framework or SDK
62
- - ✅ **Runtime-independent** - Deploy to Kubernetes, Docker, serverless, or on-premise
63
- - ✅ **Portable** - Move agents between teams, organizations, and infrastructures
64
- - ✅ **Validatable** - JSON Schema validation ensures correctness
65
- - ✅ **Discoverable** - Standard format enables agent registries and marketplaces
66
-
67
- ### OSSA vs. Frameworks
68
-
69
- | Aspect | OSSA (Standard) | Framework (e.g., LangChain) |
70
- |--------|----------------|----------------------------|
71
- | **Purpose** | Defines the contract | Provides implementation |
72
- | **Format** | Declarative YAML/JSON | Code (Python, TypeScript, etc.) |
73
- | **Portability** | Framework-agnostic | Framework-specific |
74
- | **Runtime** | Any runtime | Framework's runtime |
75
- | **Tooling** | Validation, generation | Full orchestration |
76
-
77
- **Think of it like this:**
78
- - **OpenAPI** = Standard for API contracts (not an API framework)
79
- - **OSSA** = Standard for agent contracts (not an agent framework)
80
-
81
- ---
82
-
83
- ## Core Principles
84
-
85
- 1. **Specification-Driven** - OSSA defines the standard
86
- 2. **Implementation-Agnostic** - Any runtime can implement it
87
- 3. **Minimal Tooling** - Basic CLI for validation & generation
88
- 4. **No Vendor Lock-in** - Deploy to any infrastructure
89
-
90
- ---
91
-
92
- ## Quick Start
93
-
94
- ### Installation
95
-
96
- ```bash
97
- npm install -g @bluefly/openstandardagents
98
- ```
99
-
100
- ### Create Your First Agent
101
-
102
- ```bash
103
- ossa generate chat --name "My First Agent" --output agent.ossa.yaml
104
- ```
105
-
106
- ### Validate
107
-
108
- ```bash
109
- ossa validate agent.ossa.yaml
110
- ```
111
-
112
- ### Deploy
113
-
114
- Deploy to **YOUR** infrastructure:
115
- - AWS, GCP, Azure
116
- - Kubernetes, Docker
117
- - On-premise
118
- - Serverless
119
-
120
- OSSA doesn't care - it's just a standard.
121
-
122
- ---
123
-
124
- ## Repository Links
125
-
126
- - **Main Repository**: [github.com/blueflyio/openstandardagents](https://github.com/blueflyio/openstandardagents)
127
- - **Issues**: [Report Issues](https://github.com/blueflyio/openstandardagents/issues)
128
- - **Milestones**: [View Roadmap](https://github.com/blueflyio/openstandardagents/milestones)
129
- - **Releases**: [View Releases](https://github.com/blueflyio/openstandardagents/releases)
130
- - **npm Package**: [@bluefly/openstandardagents](https://www.npmjs.com/package/@bluefly/openstandardagents)
131
-
132
- ---
133
-
134
- ## Contributing
135
-
136
- OSSA is an open standard. Contributions welcome!
137
-
138
- 1. Review [Contributing Guidelines](/docs/contributing)
139
- 2. Check [Open Issues](https://github.com/blueflyio/openstandardagents/issues)
140
- 3. Create a merge request
141
-
142
- ---
143
-
144
- ## License
145
-
146
- Apache 2.0 - see [LICENSE](https://github.com/blueflyio/openstandardagents/blob/main/LICENSE) for details.
147
-
148
- ---
149
-
150
- **OSSA: A Standard for Composable, Deployable, and Compliant AI Agents**
151
-
152
- *Not a framework. A standard.*
153
-
@@ -1,107 +0,0 @@
1
- ---
2
- title: "AIFlow Framework Integration with OSSA"
3
- ---
4
-
5
- # AIFlow Framework Integration with OSSA
6
-
7
- ## Overview
8
-
9
- AIFlow is a Python-based social agent framework that enables personality-driven, emotionally intelligent AI agents for autonomous social media content generation. This integration demonstrates how AIFlow agents are wrapped in OSSA 1.0 manifests for Kubernetes orchestration and deployment through agent-buildkit.
10
-
11
- For complete integration analysis, see: [agent-buildkit AIFlow Integration Guide](https://github.com/blueflyio/agent-buildkit/-/wikis/AIFlow-Integration-with-OSSA-BuildKit-and-K-Agent)
12
-
13
- ## Core Components
14
-
15
- ### OSSA Manifest
16
-
17
- **Location**: [agent-buildkit/examples/aiflow-integration/social-agent-aiflow.ossa.yaml](https://github.com/blueflyio/agent-buildkit/-/blob/development/examples/aiflow-integration/social-agent-aiflow.ossa.yaml)
18
-
19
- The manifest defines the agent's identity, runtime configuration, capabilities, and deployment requirements. It conforms to OSSA 1.0 specification.
20
-
21
- **Key Manifest Sections**:
22
-
23
- - **Agent Identity**: `social-agent-aiflow`, version 1.0.0, role: chat
24
- - **Runtime**: Docker image `aiflow/agent:1.0.0`, Python 3.12+, resource requirements
25
- - **Capabilities**: `generate_post`, `generate_response` with defined schemas
26
- - **Dependencies**: Required integration with `agent-brain` for cognitive functions
27
- - **Environment**: Required secrets for Anthropic API, Twitter API, Telegram Bot, PostgreSQL
28
-
29
- ### OpenAPI Specification
30
-
31
- **Location**: [agent-buildkit/openapi/aiflow-agent.openapi.yml](https://github.com/blueflyio/agent-buildkit/-/blob/development/openapi/aiflow-agent.openapi.yml)
32
-
33
- The OpenAPI 3.1 specification defines the REST API interface for the AIFlow agent, including:
34
- - FastAPI bridge endpoints for AIFlow Sia runtime
35
- - Request/response schemas for all capabilities
36
- - Kubernetes metadata extensions (x-k-agent) for orchestration
37
- - Health check endpoints and observability metrics
38
-
39
- ### OSSA Schema
40
-
41
- **Location**: [OSSA/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json](https://github.com/blueflyio/openstandardagents/blob/development/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json)
42
-
43
- JSON Schema definition for OSSA 1.0 manifest validation. All agent manifests must conform to this schema.
44
-
45
- ## Validation
46
-
47
- ### OSSA Manifest Validation
48
-
49
- Validate the manifest against OSSA 1.0 schema:
50
-
51
- ```yaml
52
- ossa validate examples/aiflow-integration/social-agent-aiflow.ossa.yaml
53
- ```
54
-
55
- This checks:
56
- - Schema compliance against OSSA 1.0 specification
57
- - Required fields and type correctness
58
- - Capability schema definitions
59
- - Dependency declarations
60
- - Environment variable definitions
61
-
62
- ### OpenAPI Specification Validation
63
-
64
- Validate OpenAPI spec with strict mode and K-Agent metadata checks:
65
-
66
- ```yaml
67
- buildkit openapi validate --spec openapi/aiflow-agent.openapi.yml --strict
68
- ```
69
-
70
- This validates:
71
- - OpenAPI 3.1 syntax and semantics
72
- - x-k-agent extension metadata for Kubernetes
73
- - Endpoint schemas match OSSA capability definitions
74
- - Health check endpoint compliance
75
-
76
- ## Deployment
77
-
78
- Deploy via agent-buildkit orchestration:
79
-
80
- ```yaml
81
- buildkit orchestrate deploy --manifest examples/aiflow-integration/social-agent-aiflow.ossa.yaml
82
- ```
83
-
84
- This generates Kubernetes manifests and deploys the agent with:
85
- - Rolling deployment strategy
86
- - Horizontal Pod Autoscaling (HPA)
87
- - Health checks and readiness probes
88
- - Service account and RBAC configuration
89
- - ConfigMap for character definitions
90
- - Persistent volume for memory database
91
-
92
- ## Integration Architecture
93
-
94
- 1. **OSSA Manifest** → Defines agent structure and requirements
95
- 2. **OpenAPI Spec** → REST API contract with K8s metadata
96
- 3. **FastAPI Bridge** → Wraps AIFlow Sia runtime in REST API
97
- 4. **BuildKit Deployment** → Generates and applies K8s manifests
98
- 5. **Runtime Orchestration** → Kubernetes manages agent lifecycle
99
-
100
- ## Resources
101
-
102
- - **AIFlow Repository**: https://github.com/AIFlow-agent/AIFlow-Agent
103
- - **OSSA Project**: [openapi-ai-agents-standard](https://github.com/blueflyio/openstandardagents)
104
- - **Integration Guide**: [agent-buildkit Wiki](https://github.com/blueflyio/agent-buildkit/-/wikis/AIFlow-Integration-with-OSSA-BuildKit-and-K-Agent)
105
- - **OSSA Specification Schema**: [OSSA 1.0 Schema](https://github.com/blueflyio/openstandardagents/blob/development/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json)
106
- - **Example Manifest**: [social-agent-aiflow.ossa.yaml](https://github.com/blueflyio/agent-buildkit/-/blob/development/examples/aiflow-integration/social-agent-aiflow.ossa.yaml)
107
- - **OpenAPI Spec**: [aiflow-agent.openapi.yml](https://github.com/blueflyio/agent-buildkit/-/blob/development/openapi/aiflow-agent.openapi.yml)