@bluefly/openstandardagents 0.2.4 → 0.2.5-RC

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 (355) hide show
  1. package/.cursorrules +84 -0
  2. package/.devfile.yaml +87 -0
  3. package/.env.example +25 -3
  4. package/.github/workflows/release.yml +1 -1
  5. package/.kiro/specs/agent-buildkit-templates/design.md +495 -0
  6. package/.kiro/specs/agent-buildkit-templates/requirements.md +165 -0
  7. package/.kiro/specs/kiro-ide-supercharger/README.md +202 -0
  8. package/.kiro/specs/kiro-ide-supercharger/design.md +1005 -0
  9. package/.kiro/specs/kiro-ide-supercharger/requirements.md +141 -0
  10. package/.kiro/specs/kiro-ide-supercharger/tasks.md +507 -0
  11. package/.kiro/specs/website-design-audit/design.md +679 -0
  12. package/.kiro/specs/website-design-audit/requirements.md +199 -0
  13. package/.releaserc.json +5 -4
  14. package/.version.json +6 -0
  15. package/CHANGELOG.md +140 -96
  16. package/CONTRIBUTING.md +23 -5
  17. package/README.md +121 -43
  18. package/bin/ossa +24 -3
  19. package/bin/ossa-validate-all +55 -0
  20. package/bin/ossa-version +23 -0
  21. package/bin/validate-ossa-0.2.4.ts +244 -0
  22. package/bin/validate-ossa-0.2.5-RC.ts +244 -0
  23. package/bin/validate-ossa.ts +273 -0
  24. package/dist/di-container.d.ts +1 -1
  25. package/dist/di-container.d.ts.map +1 -1
  26. package/dist/di-container.js.map +1 -1
  27. package/dist/repositories/schema.repository.d.ts +17 -2
  28. package/dist/repositories/schema.repository.d.ts.map +1 -1
  29. package/dist/repositories/schema.repository.js +96 -18
  30. package/dist/repositories/schema.repository.js.map +1 -1
  31. package/dist/services/generation.service.d.ts +7 -5
  32. package/dist/services/generation.service.d.ts.map +1 -1
  33. package/dist/services/generation.service.js +92 -44
  34. package/dist/services/generation.service.js.map +1 -1
  35. package/dist/services/gitlab-agent.service.d.ts +94 -0
  36. package/dist/services/gitlab-agent.service.d.ts.map +1 -0
  37. package/dist/services/gitlab-agent.service.js +162 -0
  38. package/dist/services/gitlab-agent.service.js.map +1 -0
  39. package/dist/services/migration.service.d.ts +3 -3
  40. package/dist/services/migration.service.d.ts.map +1 -1
  41. package/dist/services/migration.service.js +108 -61
  42. package/dist/services/migration.service.js.map +1 -1
  43. package/dist/services/release-automation/base-crud.service.d.ts +93 -0
  44. package/dist/services/release-automation/base-crud.service.d.ts.map +1 -0
  45. package/dist/services/release-automation/base-crud.service.js +68 -0
  46. package/dist/services/release-automation/base-crud.service.js.map +1 -0
  47. package/dist/services/release-automation/index.d.ts +12 -0
  48. package/dist/services/release-automation/index.d.ts.map +1 -0
  49. package/dist/services/release-automation/index.js +12 -0
  50. package/dist/services/release-automation/index.js.map +1 -0
  51. package/dist/services/release-automation/merge-request.service.d.ts +119 -0
  52. package/dist/services/release-automation/merge-request.service.d.ts.map +1 -0
  53. package/dist/services/release-automation/merge-request.service.js +212 -0
  54. package/dist/services/release-automation/merge-request.service.js.map +1 -0
  55. package/dist/services/release-automation/milestone.service.d.ts +104 -0
  56. package/dist/services/release-automation/milestone.service.d.ts.map +1 -0
  57. package/dist/services/release-automation/milestone.service.js +207 -0
  58. package/dist/services/release-automation/milestone.service.js.map +1 -0
  59. package/dist/services/release-automation/release.service.d.ts +118 -0
  60. package/dist/services/release-automation/release.service.d.ts.map +1 -0
  61. package/dist/services/release-automation/release.service.js +207 -0
  62. package/dist/services/release-automation/release.service.js.map +1 -0
  63. package/dist/services/release-automation/schemas/release.schema.d.ts +299 -0
  64. package/dist/services/release-automation/schemas/release.schema.d.ts.map +1 -0
  65. package/dist/services/release-automation/schemas/release.schema.js +269 -0
  66. package/dist/services/release-automation/schemas/release.schema.js.map +1 -0
  67. package/dist/services/release-automation/tag.service.d.ts +99 -0
  68. package/dist/services/release-automation/tag.service.d.ts.map +1 -0
  69. package/dist/services/release-automation/tag.service.js +180 -0
  70. package/dist/services/release-automation/tag.service.js.map +1 -0
  71. package/dist/services/release-automation/webhook.service.d.ts +37 -0
  72. package/dist/services/release-automation/webhook.service.d.ts.map +1 -0
  73. package/dist/services/release-automation/webhook.service.js +173 -0
  74. package/dist/services/release-automation/webhook.service.js.map +1 -0
  75. package/dist/services/runtime/openai.adapter.d.ts.map +1 -1
  76. package/dist/services/runtime/openai.adapter.js.map +1 -1
  77. package/dist/services/validation.service.d.ts.map +1 -1
  78. package/dist/services/validation.service.js +24 -11
  79. package/dist/services/validation.service.js.map +1 -1
  80. package/dist/services/validators/anthropic.validator.d.ts +2 -2
  81. package/dist/services/validators/anthropic.validator.d.ts.map +1 -1
  82. package/dist/services/validators/anthropic.validator.js +14 -9
  83. package/dist/services/validators/anthropic.validator.js.map +1 -1
  84. package/dist/services/validators/autogen.validator.d.ts +2 -2
  85. package/dist/services/validators/autogen.validator.d.ts.map +1 -1
  86. package/dist/services/validators/autogen.validator.js +18 -15
  87. package/dist/services/validators/autogen.validator.js.map +1 -1
  88. package/dist/services/validators/crewai.validator.d.ts +2 -2
  89. package/dist/services/validators/crewai.validator.d.ts.map +1 -1
  90. package/dist/services/validators/crewai.validator.js +18 -17
  91. package/dist/services/validators/crewai.validator.js.map +1 -1
  92. package/dist/services/validators/cursor.validator.d.ts +2 -2
  93. package/dist/services/validators/cursor.validator.d.ts.map +1 -1
  94. package/dist/services/validators/cursor.validator.js +15 -11
  95. package/dist/services/validators/cursor.validator.js.map +1 -1
  96. package/dist/services/validators/langchain.validator.d.ts +2 -2
  97. package/dist/services/validators/langchain.validator.d.ts.map +1 -1
  98. package/dist/services/validators/langchain.validator.js +14 -11
  99. package/dist/services/validators/langchain.validator.js.map +1 -1
  100. package/dist/services/validators/langflow.validator.d.ts +2 -2
  101. package/dist/services/validators/langflow.validator.d.ts.map +1 -1
  102. package/dist/services/validators/langflow.validator.js +14 -9
  103. package/dist/services/validators/langflow.validator.js.map +1 -1
  104. package/dist/services/validators/langgraph.validator.d.ts +2 -2
  105. package/dist/services/validators/langgraph.validator.d.ts.map +1 -1
  106. package/dist/services/validators/langgraph.validator.js +23 -18
  107. package/dist/services/validators/langgraph.validator.js.map +1 -1
  108. package/dist/services/validators/llamaindex.validator.d.ts +2 -2
  109. package/dist/services/validators/llamaindex.validator.d.ts.map +1 -1
  110. package/dist/services/validators/llamaindex.validator.js +19 -16
  111. package/dist/services/validators/llamaindex.validator.js.map +1 -1
  112. package/dist/services/validators/openai.validator.d.ts +2 -2
  113. package/dist/services/validators/openai.validator.d.ts.map +1 -1
  114. package/dist/services/validators/openai.validator.js +20 -16
  115. package/dist/services/validators/openai.validator.js.map +1 -1
  116. package/dist/services/validators/vercel-ai.validator.d.ts +2 -2
  117. package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -1
  118. package/dist/services/validators/vercel-ai.validator.js +16 -15
  119. package/dist/services/validators/vercel-ai.validator.js.map +1 -1
  120. package/dist/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
  121. package/dist/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
  122. package/dist/spec/v0.2.3/CHANGELOG.md +7 -7
  123. package/dist/spec/v0.2.3/README.md +9 -9
  124. package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +18 -18
  125. package/{spec/v0.2.4-dev → dist/spec/v0.2.4}/CHANGELOG.md +8 -8
  126. package/dist/spec/{v0.2.4-dev → v0.2.4}/migrations/v0.2.3-to-v0.2.4.md +10 -10
  127. package/dist/spec/{v0.2.4-dev → v0.2.4}/ossa-0.2.4-dev.yaml +1 -1
  128. package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +1819 -0
  129. package/dist/spec/v0.2.5/CHANGELOG.md +401 -0
  130. package/dist/spec/v0.2.5/README.md +72 -0
  131. package/dist/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
  132. package/dist/spec/{v0.2.5-dev/ossa-0.2.5-dev.schema.json → v0.2.5/ossa-0.2.5.schema.json} +323 -359
  133. package/dist/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
  134. package/dist/spec/v0.2.5-RC/CHANGELOG.md +401 -0
  135. package/dist/spec/v0.2.5-RC/README.md +72 -0
  136. package/{spec/v0.2.4-dev → dist/spec/v0.2.5-RC}/migrations/v0.2.3-to-v0.2.4.md +10 -10
  137. package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
  138. package/dist/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
  139. package/dist/types/index.d.ts +6 -1
  140. package/dist/types/index.d.ts.map +1 -1
  141. package/docs/issue-19-completion-summary.md +648 -0
  142. package/docs/issue-19-validation.md +351 -0
  143. package/examples/anthropic/claude-assistant.ossa.json +1 -1
  144. package/examples/autogen/multi-agent.ossa.json +1 -1
  145. package/examples/bridges/Dockerfile.production +1 -1
  146. package/examples/crewai/research-team.ossa.json +1 -1
  147. package/examples/cursor/code-review-agent.ossa.json +1 -1
  148. package/examples/enterprise/agent.yml +1 -1
  149. package/examples/getting-started/hello-world-complete.ossa.yaml +2 -2
  150. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  151. package/examples/langchain/chain-agent.ossa.json +1 -1
  152. package/examples/langflow/workflow-agent.ossa.json +1 -1
  153. package/examples/langgraph/state-machine-agent.ossa.json +1 -1
  154. package/examples/llamaindex/rag-agent.ossa.json +1 -1
  155. package/examples/openai/basic-agent.ossa.yaml +61 -0
  156. package/examples/openai/multi-tool-agent.ossa.json +165 -0
  157. package/examples/openai/swarm-agent.ossa.json +1 -1
  158. package/examples/openapi-extensions/README.md +1 -1
  159. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  160. package/examples/vercel/edge-agent.ossa.json +1 -1
  161. package/infrastructure/gitlab-agent/rbac.yaml +126 -0
  162. package/infrastructure/gitlab-agent/values.yaml +150 -0
  163. package/infrastructure/k8s/monitoring/00-namespace.yaml +7 -0
  164. package/infrastructure/k8s/monitoring/01-prometheus.yaml +142 -0
  165. package/infrastructure/k8s/monitoring/02-grafana.yaml +63 -0
  166. package/infrastructure/k8s/monitoring/03-lightweight.yaml +121 -0
  167. package/infrastructure/k8s/monitoring/README.md +73 -0
  168. package/infrastructure/k8s/monitoring/deploy.sh +38 -0
  169. package/openapi/CHANGELOG.md +21 -0
  170. package/openapi/README.md +46 -0
  171. package/openapi/{ossa-core-api.openapi.yaml → core/ossa-core-api.openapi.yaml} +59 -4
  172. package/openapi/{ossa-registry.openapi.yaml → core/ossa-registry.openapi.yaml} +75 -2
  173. package/openapi/{unified-agent-gateway.openapi.yaml → core/unified-agent-gateway.openapi.yaml} +3 -3
  174. package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +136 -0
  175. package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +192 -0
  176. package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +149 -0
  177. package/openapi/reference-implementations/critic-agent-api.openapi.yaml +151 -0
  178. package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +217 -0
  179. package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +149 -0
  180. package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +151 -0
  181. package/openapi/reference-implementations/governor-agent-api.openapi.yaml +193 -0
  182. package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +165 -0
  183. package/openapi/reference-implementations/judge-agent-api.openapi.yaml +148 -0
  184. package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +167 -0
  185. package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +171 -0
  186. package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +171 -0
  187. package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +242 -0
  188. package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +187 -0
  189. package/openapi/{self-evolving-ecosystem.openapi.yaml → reference-implementations/self-evolving-ecosystem.openapi.yaml} +2 -2
  190. package/openapi/reference-implementations/worker-agent-api.openapi.yaml +208 -0
  191. package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +193 -0
  192. package/package.json +31 -21
  193. package/release.config.js +20 -5
  194. package/scripts/bump-version.ts +57 -0
  195. package/scripts/enhanced-version-manager.ts +257 -0
  196. package/scripts/gen-types.ts +51 -0
  197. package/scripts/gen-zod.ts +51 -0
  198. package/scripts/lib/exec.ts +37 -0
  199. package/scripts/lib/file-ops.ts +58 -0
  200. package/scripts/lib/version.ts +83 -0
  201. package/scripts/process-doc-templates.ts +37 -0
  202. package/scripts/schemas/package.schema.ts +75 -0
  203. package/scripts/setup-branch-protection.sh +33 -0
  204. package/scripts/sync-version.ts +39 -0
  205. package/scripts/sync-versions.ts +488 -0
  206. package/scripts/validate-schema.ts +49 -0
  207. package/spec/v0.2.0/ossa-0.2.0.schema.json +0 -0
  208. package/spec/v0.2.1/ossa-0.2.1.schema.json +555 -0
  209. package/spec/v0.2.3/CHANGELOG.md +7 -7
  210. package/spec/v0.2.3/README.md +9 -9
  211. package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +18 -18
  212. package/{dist/spec/v0.2.4-dev → spec/v0.2.4}/CHANGELOG.md +8 -8
  213. package/spec/v0.2.4/migrations/v0.2.3-to-v0.2.4.md +599 -0
  214. package/spec/{v0.2.4-dev → v0.2.4}/ossa-0.2.4-dev.yaml +1 -1
  215. package/spec/v0.2.4/ossa-0.2.4.schema.json +1819 -0
  216. package/spec/v0.2.5/CHANGELOG.md +401 -0
  217. package/spec/v0.2.5/README.md +72 -0
  218. package/spec/v0.2.5/migrations/v0.2.3-to-v0.2.4.md +599 -0
  219. package/spec/{v0.2.5-dev/ossa-0.2.5-dev.schema.json → v0.2.5/ossa-0.2.5.schema.json} +323 -359
  220. package/spec/v0.2.5/ossa-0.2.5.yaml +581 -0
  221. package/spec/v0.2.5-RC/CHANGELOG.md +401 -0
  222. package/spec/v0.2.5-RC/README.md +72 -0
  223. package/spec/v0.2.5-RC/migrations/v0.2.3-to-v0.2.4.md +599 -0
  224. package/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json +1696 -0
  225. package/spec/v0.2.5-RC/ossa-0.2.5-RC.yaml +581 -0
  226. package/website/{.lighthouserc.js → .lighthouserc.ts} +5 -1
  227. package/website/Dockerfile +18 -5
  228. package/website/app/about/page.tsx +7 -7
  229. package/website/app/blog/[slug]/page.tsx +61 -20
  230. package/website/app/blog/page.tsx +120 -33
  231. package/website/app/design-guide/page.tsx +511 -0
  232. package/website/app/docs/[[...slug]]/page.tsx +641 -143
  233. package/website/app/examples/page.tsx +51 -41
  234. package/website/app/{globals.css → globals.scss} +50 -23
  235. package/website/app/layout.tsx +2 -2
  236. package/website/app/license/page.tsx +183 -0
  237. package/website/app/not-found.tsx +18 -0
  238. package/website/app/page.tsx +144 -79
  239. package/website/app/playground/page.tsx +25 -45
  240. package/website/app/schema/page.tsx +423 -392
  241. package/website/app/specification/page.tsx +245 -169
  242. package/website/components/Logo.tsx +75 -2
  243. package/website/components/docs/DocsSidebar.tsx +40 -3
  244. package/website/components/docs/MarkdownContent.tsx +265 -47
  245. package/website/components/docs/VersionSelector.tsx +64 -8
  246. package/website/components/examples/ExamplesViewer.tsx +2 -2
  247. package/website/components/layout/Footer.tsx +6 -1
  248. package/website/components/layout/Header.tsx +31 -33
  249. package/website/components/schema/SchemaComponentsAccordion.tsx +84 -0
  250. package/website/components/schema/SchemaExplorer.tsx +4 -4
  251. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +276 -276
  252. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +3 -14
  253. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +286 -0
  254. package/website/content/blog/introducing-ossa-framework.md +1 -1
  255. package/website/content/blog/ossa-production-results.md +5 -5
  256. package/website/content/blog/welcome-to-ossa.md +2 -2
  257. package/website/content/blog/why-ai-agents-need-open-standard.md +5 -5
  258. package/website/content/docs/00-HOME.md +18 -25
  259. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +8 -8
  260. package/website/content/docs/OpenAPI-Extensions.md +576 -140
  261. package/website/content/docs/adapters/openai-adapter.md +693 -0
  262. package/website/content/docs/architecture/execution-flow.md +3 -3
  263. package/website/content/docs/architecture/multi-agent-systems.md +4 -4
  264. package/website/content/docs/architecture/overview.md +4 -4
  265. package/website/content/docs/architecture/stack-integration.md +4 -4
  266. package/website/content/docs/changelog.md +4 -4
  267. package/website/content/docs/contributing.md +2 -2
  268. package/website/content/docs/ecosystem/framework-support.md +0 -2
  269. package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +107 -0
  270. package/website/content/docs/examples/Migration-Guides.md +2 -2
  271. package/website/content/docs/for-audiences/{architects.md → Architects.md} +1 -1
  272. package/website/content/docs/for-audiences/{developers.md → Developers.md} +3 -3
  273. package/website/content/docs/for-audiences/Enterprises.md +2 -2
  274. package/website/content/docs/for-audiences/Students-Researchers.md +1 -1
  275. package/website/content/docs/getting-started/{5-minute-overview.md → 5-Minute-Overview.md} +2 -2
  276. package/website/content/docs/getting-started/{first-agent.md → First-Agent.md} +1 -1
  277. package/website/content/docs/getting-started/Hello-World.md +3 -3
  278. package/website/content/docs/getting-started/{installation.md → Installation.md} +7 -7
  279. package/website/content/docs/getting-started/index.md +92 -0
  280. package/website/content/docs/getting-started/running-agents.md +215 -13
  281. package/{docs → website/content/docs}/getting-started.md +10 -6
  282. package/website/content/docs/integrations/aiflow.md +2 -2
  283. package/website/content/docs/integrations/drupal.md +2 -2
  284. package/website/content/docs/migration-guides/README.md +1 -1
  285. package/website/content/docs/migration-guides/agent-schema-comparison.md +232 -0
  286. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +5 -5
  287. package/website/content/docs/migration-guides/crewai-to-ossa.md +3 -3
  288. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +11 -11
  289. package/{docs/migration → website/content/docs/migration-guides}/general-agent-schema.yml +1 -9
  290. package/website/content/docs/migration-guides/index.md +1 -1
  291. package/website/content/docs/migration-guides/langchain-to-ossa.md +17 -17
  292. package/website/content/docs/migration-guides/langflow-to-ossa.md +3 -3
  293. package/website/content/docs/migration-guides/openai-to-ossa.md +10 -10
  294. package/website/content/docs/openapi-extensions/examples.md +9 -9
  295. package/website/content/docs/openapi-extensions/index.md +59 -3
  296. package/website/content/docs/openapi-extensions/operation-extensions.md +61 -2
  297. package/website/content/docs/openapi-extensions/root-extensions.md +49 -3
  298. package/{docs/OSSA-COMPLIANT-BADGE.md → website/content/docs/ossa-compliant-badge.md} +18 -15
  299. package/website/content/docs/pre-release/index.md +10 -10
  300. package/website/content/docs/readme.md +35 -0
  301. package/website/content/docs/schema-reference/agent-spec.md +2 -2
  302. package/website/content/docs/schema-reference/autonomy.md +5 -5
  303. package/website/content/docs/schema-reference/constraints.md +5 -5
  304. package/website/content/docs/schema-reference/llm-config.md +1 -1
  305. package/website/content/docs/schema-reference/observability.md +5 -5
  306. package/website/content/docs/schema-reference/ossa-manifest.md +6 -6
  307. package/website/content/docs/schema-reference/taxonomy.md +3 -3
  308. package/website/content/docs/use-cases/00-index.md +1 -1
  309. package/{docs/VERSIONING.md → website/content/docs/versioning.md} +9 -5
  310. package/website/lib/version.ts +18 -1
  311. package/website/lib/versions.json +78 -0
  312. package/website/next.config.ts +3 -1
  313. package/website/package-lock.json +552 -18
  314. package/website/package.json +11 -5
  315. package/website/postcss.config.mjs +1 -1
  316. package/website/scripts/fetch-versions.js +166 -0
  317. package/website/scripts/generate-examples-index.js +163 -0
  318. package/website/scripts/merge-docs-to-wiki.ts +207 -0
  319. package/website/scripts/sync-version.js +28 -0
  320. package/website/scripts/sync-wiki.ts +64 -3
  321. package/website/scripts/upload-wiki.ts +199 -0
  322. package/website/styles/_variables.scss +36 -0
  323. package/website/tailwind.config.ts +93 -22
  324. package/.releaserc.json.disabled +0 -81
  325. package/dist/spec/v0.2.5-dev/CHANGELOG.md +0 -171
  326. package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +0 -362
  327. package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +0 -464
  328. package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +0 -440
  329. package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
  330. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
  331. package/docs/README.md +0 -31
  332. package/docs/agent-openapi-spec.yml +0 -942
  333. package/docs/openapi-extensions.md +0 -930
  334. package/docs/schemas/openapi-extensions.schema.json +0 -486
  335. package/openapi/gitlab-orchestrator.openapi.yaml +0 -330
  336. package/ossa-website-swarm-tasks.json +0 -105
  337. package/spec/v0.2.5-dev/CHANGELOG.md +0 -171
  338. package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +0 -362
  339. package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +0 -464
  340. package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +0 -440
  341. package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +0 -317
  342. package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +0 -409
  343. package/website/app/api/validate/route.ts +0 -88
  344. package/website/next.config.js +0 -17
  345. package/website/postcss.config.js +0 -7
  346. package/website/tailwind.config.js +0 -58
  347. /package/dist/spec/{v0.2.4-dev → v0.2.4}/ossa-0.2.4-dev.schema.json +0 -0
  348. /package/openapi/{ossa-registry-api.openapi.yaml → core/ossa-registry-api.openapi.yaml} +0 -0
  349. /package/openapi/{drupal-agent-api.openapi.yaml → reference-implementations/drupal-agent-api.openapi.yaml} +0 -0
  350. /package/openapi/{helm-generator.openapi.yaml → reference-implementations/helm-generator.openapi.yaml} +0 -0
  351. /package/spec/{v0.2.4-dev → v0.2.4}/ossa-0.2.4-dev.schema.json +0 -0
  352. /package/website/content/docs/{examples.md → Examples.md} +0 -0
  353. /package/website/content/docs/core-concepts/{project-structure.md → Project-Structure.md} +0 -0
  354. /package/website/content/docs/migration-guides/{00-index.md → 00-INDEX.md} +0 -0
  355. /package/{docs/migration → website/content/docs/migration-guides}/migration-manifest.json +0 -0
@@ -1,942 +0,0 @@
1
- openapi: 3.1.0
2
- info:
3
- title: OSSA Agent API Specification
4
- version: '@bluefly/ossa/v0.1.9'
5
- description: |
6
- Complete OpenAPI 3.1 specification for an OSSA-compliant agent.
7
- This specification defines the complete interface that every OSSA agent must implement,
8
- including health checks, capability discovery, execution endpoints, and lifecycle management.
9
-
10
- **Agent Types Supported:**
11
- - orchestrator: Coordinates multiple agents and workflows
12
- - worker: Performs specific tasks and operations
13
- - critic: Reviews and validates agent outputs
14
- - judge: Makes decisions and evaluates outcomes
15
- - trainer: Handles agent learning and improvement
16
- - governor: Enforces policies and compliance
17
- - monitor: Observes and reports on system state
18
- - integrator: Connects systems and protocols
19
- - voice: Handles audio/speech interactions
20
-
21
- contact:
22
- name: OSSA Specification Team
23
- url: https://github.com/bluefly-io/ossa
24
- license:
25
- name: MIT
26
- url: https://opensource.org/licenses/MIT
27
-
28
- servers:
29
- - url: http://localhost:3000
30
- description: Local development server
31
- - url: https://agent.{environment}.{domain}
32
- description: Production agent endpoint
33
- variables:
34
- environment:
35
- default: prod
36
- enum: [dev, staging, prod]
37
- domain:
38
- default: ossa.io
39
-
40
- tags:
41
- - name: Health
42
- description: Agent health and status monitoring
43
- - name: Capabilities
44
- description: Agent capability discovery and configuration
45
- - name: Execution
46
- description: Agent task execution and processing
47
- - name: Lifecycle
48
- description: Agent lifecycle management
49
- - name: Communication
50
- description: Inter-agent communication
51
- - name: Model Context Protocol
52
- description: MCP integration for model interactions
53
-
54
- paths:
55
- /health:
56
- get:
57
- tags: [Health]
58
- summary: Basic health check
59
- description: Returns the basic health status of the agent
60
- operationId: getHealth
61
- responses:
62
- '200':
63
- description: Agent is healthy
64
- content:
65
- application/json:
66
- schema:
67
- $ref: '#/components/schemas/HealthStatus'
68
- '503':
69
- description: Agent is unhealthy
70
- content:
71
- application/json:
72
- schema:
73
- $ref: '#/components/schemas/ErrorResponse'
74
-
75
- /health/live:
76
- get:
77
- tags: [Health]
78
- summary: Liveness probe
79
- description: Kubernetes-style liveness probe for the agent
80
- operationId: getLiveness
81
- responses:
82
- '200':
83
- description: Agent is alive
84
- content:
85
- application/json:
86
- schema:
87
- $ref: '#/components/schemas/LivenessStatus'
88
- '503':
89
- description: Agent is not responding
90
- content:
91
- application/json:
92
- schema:
93
- $ref: '#/components/schemas/ErrorResponse'
94
-
95
- /health/ready:
96
- get:
97
- tags: [Health]
98
- summary: Readiness probe
99
- description: Kubernetes-style readiness probe for the agent
100
- operationId: getReadiness
101
- responses:
102
- '200':
103
- description: Agent is ready to accept requests
104
- content:
105
- application/json:
106
- schema:
107
- $ref: '#/components/schemas/ReadinessStatus'
108
- '503':
109
- description: Agent is not ready
110
- content:
111
- application/json:
112
- schema:
113
- $ref: '#/components/schemas/ErrorResponse'
114
-
115
- /health/startup:
116
- get:
117
- tags: [Health]
118
- summary: Startup probe
119
- description: Kubernetes-style startup probe for the agent
120
- operationId: getStartup
121
- responses:
122
- '200':
123
- description: Agent has started successfully
124
- content:
125
- application/json:
126
- schema:
127
- $ref: '#/components/schemas/StartupStatus'
128
- '503':
129
- description: Agent is still starting
130
- content:
131
- application/json:
132
- schema:
133
- $ref: '#/components/schemas/ErrorResponse'
134
-
135
- /capabilities:
136
- get:
137
- tags: [Capabilities]
138
- summary: Get agent capabilities
139
- description: Returns the full capability manifest of the agent
140
- operationId: getCapabilities
141
- responses:
142
- '200':
143
- description: Agent capabilities
144
- content:
145
- application/json:
146
- schema:
147
- $ref: '#/components/schemas/AgentCapabilities'
148
-
149
- /capabilities/operations:
150
- get:
151
- tags: [Capabilities]
152
- summary: List available operations
153
- description: Returns all operations this agent can perform
154
- operationId: getOperations
155
- parameters:
156
- - name: domain
157
- in: query
158
- description: Filter operations by domain
159
- schema:
160
- type: string
161
- enum:
162
- [
163
- nlp,
164
- vision,
165
- reasoning,
166
- data,
167
- documentation,
168
- api-design,
169
- validation,
170
- orchestration,
171
- monitoring,
172
- security,
173
- compliance,
174
- testing,
175
- deployment,
176
- audio,
177
- speech,
178
- interaction,
179
- ]
180
- responses:
181
- '200':
182
- description: Available operations
183
- content:
184
- application/json:
185
- schema:
186
- type: array
187
- items:
188
- $ref: '#/components/schemas/AgentOperation'
189
-
190
- /execute:
191
- post:
192
- tags: [Execution]
193
- summary: Execute agent operation
194
- description: Execute a specific operation with the provided input
195
- operationId: executeOperation
196
- requestBody:
197
- required: true
198
- content:
199
- application/json:
200
- schema:
201
- $ref: '#/components/schemas/ExecutionRequest'
202
- responses:
203
- '200':
204
- description: Operation completed successfully
205
- content:
206
- application/json:
207
- schema:
208
- $ref: '#/components/schemas/ExecutionResponse'
209
- '202':
210
- description: Operation accepted and running asynchronously
211
- content:
212
- application/json:
213
- schema:
214
- $ref: '#/components/schemas/AsyncExecutionResponse'
215
- '400':
216
- description: Invalid request
217
- content:
218
- application/json:
219
- schema:
220
- $ref: '#/components/schemas/ErrorResponse'
221
- '422':
222
- description: Validation error
223
- content:
224
- application/json:
225
- schema:
226
- $ref: '#/components/schemas/ValidationErrorResponse'
227
-
228
- /execute/{executionId}:
229
- get:
230
- tags: [Execution]
231
- summary: Get execution status
232
- description: Get the status of an asynchronous execution
233
- operationId: getExecutionStatus
234
- parameters:
235
- - name: executionId
236
- in: path
237
- required: true
238
- schema:
239
- type: string
240
- format: uuid
241
- responses:
242
- '200':
243
- description: Execution status
244
- content:
245
- application/json:
246
- schema:
247
- $ref: '#/components/schemas/ExecutionStatus'
248
- '404':
249
- description: Execution not found
250
- content:
251
- application/json:
252
- schema:
253
- $ref: '#/components/schemas/ErrorResponse'
254
-
255
- /status:
256
- get:
257
- tags: [Lifecycle]
258
- summary: Get agent status
259
- description: Returns detailed status information about the agent
260
- operationId: getStatus
261
- responses:
262
- '200':
263
- description: Agent status
264
- content:
265
- application/json:
266
- schema:
267
- $ref: '#/components/schemas/AgentStatus'
268
-
269
- /lifecycle/start:
270
- post:
271
- tags: [Lifecycle]
272
- summary: Start agent
273
- description: Start or restart the agent
274
- operationId: startAgent
275
- responses:
276
- '200':
277
- description: Agent started successfully
278
- content:
279
- application/json:
280
- schema:
281
- $ref: '#/components/schemas/LifecycleResponse'
282
- '409':
283
- description: Agent is already running
284
- content:
285
- application/json:
286
- schema:
287
- $ref: '#/components/schemas/ErrorResponse'
288
-
289
- /lifecycle/stop:
290
- post:
291
- tags: [Lifecycle]
292
- summary: Stop agent
293
- description: Gracefully stop the agent
294
- operationId: stopAgent
295
- requestBody:
296
- content:
297
- application/json:
298
- schema:
299
- type: object
300
- properties:
301
- graceful:
302
- type: boolean
303
- default: true
304
- description: Whether to stop gracefully
305
- timeout:
306
- type: integer
307
- default: 30
308
- description: Timeout in seconds for graceful shutdown
309
- responses:
310
- '200':
311
- description: Agent stopped successfully
312
- content:
313
- application/json:
314
- schema:
315
- $ref: '#/components/schemas/LifecycleResponse'
316
-
317
- /communicate:
318
- post:
319
- tags: [Communication]
320
- summary: Send message to agent
321
- description: Send a message to this agent from another agent
322
- operationId: sendMessage
323
- requestBody:
324
- required: true
325
- content:
326
- application/json:
327
- schema:
328
- $ref: '#/components/schemas/AgentMessage'
329
- responses:
330
- '200':
331
- description: Message processed successfully
332
- content:
333
- application/json:
334
- schema:
335
- $ref: '#/components/schemas/MessageResponse'
336
- '400':
337
- description: Invalid message format
338
- content:
339
- application/json:
340
- schema:
341
- $ref: '#/components/schemas/ErrorResponse'
342
-
343
- /mcp/capabilities:
344
- get:
345
- tags: [Model Context Protocol]
346
- summary: Get MCP capabilities
347
- description: Returns the Model Context Protocol capabilities of this agent
348
- operationId: getMcpCapabilities
349
- responses:
350
- '200':
351
- description: MCP capabilities
352
- content:
353
- application/json:
354
- schema:
355
- $ref: '#/components/schemas/McpCapabilities'
356
-
357
- /mcp/tools:
358
- get:
359
- tags: [Model Context Protocol]
360
- summary: List MCP tools
361
- description: Returns all MCP tools available on this agent
362
- operationId: getMcpTools
363
- responses:
364
- '200':
365
- description: Available MCP tools
366
- content:
367
- application/json:
368
- schema:
369
- type: array
370
- items:
371
- $ref: '#/components/schemas/McpTool'
372
-
373
- /mcp/tools/{toolName}/call:
374
- post:
375
- tags: [Model Context Protocol]
376
- summary: Call MCP tool
377
- description: Execute an MCP tool with the provided arguments
378
- operationId: callMcpTool
379
- parameters:
380
- - name: toolName
381
- in: path
382
- required: true
383
- schema:
384
- type: string
385
- requestBody:
386
- required: true
387
- content:
388
- application/json:
389
- schema:
390
- $ref: '#/components/schemas/McpToolCall'
391
- responses:
392
- '200':
393
- description: Tool executed successfully
394
- content:
395
- application/json:
396
- schema:
397
- $ref: '#/components/schemas/McpToolResponse'
398
-
399
- components:
400
- schemas:
401
- HealthStatus:
402
- type: object
403
- required: [status, timestamp]
404
- properties:
405
- status:
406
- type: string
407
- enum: [healthy, degraded, unhealthy]
408
- timestamp:
409
- type: string
410
- format: date-time
411
- version:
412
- type: string
413
- uptime:
414
- type: integer
415
- description: Uptime in seconds
416
- dependencies:
417
- type: object
418
- additionalProperties:
419
- type: string
420
- enum: [healthy, unhealthy]
421
-
422
- LivenessStatus:
423
- type: object
424
- required: [alive, timestamp]
425
- properties:
426
- alive:
427
- type: boolean
428
- timestamp:
429
- type: string
430
- format: date-time
431
- pid:
432
- type: integer
433
- memory_usage:
434
- type: number
435
- description: Memory usage in MB
436
-
437
- ReadinessStatus:
438
- type: object
439
- required: [ready, timestamp]
440
- properties:
441
- ready:
442
- type: boolean
443
- timestamp:
444
- type: string
445
- format: date-time
446
- dependencies_ready:
447
- type: boolean
448
- initialization_complete:
449
- type: boolean
450
-
451
- StartupStatus:
452
- type: object
453
- required: [started, timestamp]
454
- properties:
455
- started:
456
- type: boolean
457
- timestamp:
458
- type: string
459
- format: date-time
460
- startup_duration:
461
- type: number
462
- description: Startup duration in seconds
463
-
464
- AgentCapabilities:
465
- type: object
466
- required: [agent_id, type, domains, operations, protocols]
467
- properties:
468
- agent_id:
469
- type: string
470
- type:
471
- type: string
472
- enum:
473
- [
474
- orchestrator,
475
- worker,
476
- critic,
477
- judge,
478
- trainer,
479
- governor,
480
- monitor,
481
- integrator,
482
- voice,
483
- ]
484
- subtype:
485
- type: string
486
- pattern: '^[a-z]+\.[a-z]+$'
487
- domains:
488
- type: array
489
- minItems: 1
490
- items:
491
- type: string
492
- enum:
493
- [
494
- nlp,
495
- vision,
496
- reasoning,
497
- data,
498
- documentation,
499
- api-design,
500
- validation,
501
- orchestration,
502
- monitoring,
503
- security,
504
- compliance,
505
- testing,
506
- deployment,
507
- audio,
508
- speech,
509
- interaction,
510
- ]
511
- operations:
512
- type: array
513
- items:
514
- $ref: '#/components/schemas/AgentOperation'
515
- protocols:
516
- type: object
517
- required: [supported, preferred]
518
- properties:
519
- supported:
520
- type: array
521
- minItems: 1
522
- items:
523
- $ref: '#/components/schemas/ProtocolSupport'
524
- preferred:
525
- type: string
526
- enum: [rest, grpc, websocket, mcp, graphql]
527
- input_formats:
528
- type: array
529
- items:
530
- type: string
531
- output_formats:
532
- type: array
533
- items:
534
- type: string
535
- token_efficiency:
536
- $ref: '#/components/schemas/TokenEfficiency'
537
-
538
- AgentOperation:
539
- type: object
540
- required: [name, description]
541
- properties:
542
- name:
543
- type: string
544
- pattern: '^[a-z][a-z0-9_]*$'
545
- description:
546
- type: string
547
- input_schema:
548
- type: object
549
- description: JSON Schema for operation input
550
- output_schema:
551
- type: object
552
- description: JSON Schema for operation output
553
- timeout:
554
- type: integer
555
- minimum: 100
556
- maximum: 300000
557
- description: Operation timeout in milliseconds
558
- domain:
559
- type: string
560
- async:
561
- type: boolean
562
- default: false
563
-
564
- ProtocolSupport:
565
- type: object
566
- required: [name, version]
567
- properties:
568
- name:
569
- type: string
570
- enum: [rest, grpc, websocket, mcp, graphql]
571
- version:
572
- type: string
573
- endpoint:
574
- type: string
575
- format: uri
576
- authentication:
577
- $ref: '#/components/schemas/AuthenticationConfig'
578
- tls:
579
- type: boolean
580
- default: true
581
-
582
- AuthenticationConfig:
583
- type: object
584
- required: [type]
585
- properties:
586
- type:
587
- type: string
588
- enum: [none, api-key, oauth2, jwt, mtls]
589
- config:
590
- type: object
591
- description: Authentication-specific configuration
592
-
593
- TokenEfficiency:
594
- type: object
595
- properties:
596
- strategies:
597
- type: array
598
- items:
599
- type: string
600
- enum:
601
- [
602
- key-based-context,
603
- delta-prompting,
604
- tiered-depth,
605
- output-only-critique,
606
- cacheable-capsules,
607
- vector-pre-filters,
608
- pre-llm-validation,
609
- compression-support,
610
- checkpoint-memos,
611
- early-exit-logic,
612
- ]
613
- compression_ratio:
614
- type: number
615
- minimum: 0
616
- maximum: 1
617
-
618
- ExecutionRequest:
619
- type: object
620
- required: [operation]
621
- properties:
622
- operation:
623
- type: string
624
- input:
625
- type: object
626
- description: Operation-specific input data
627
- context:
628
- type: object
629
- properties:
630
- correlation_id:
631
- type: string
632
- source_agent:
633
- type: string
634
- trace_id:
635
- type: string
636
- options:
637
- type: object
638
- properties:
639
- timeout:
640
- type: integer
641
- minimum: 100
642
- maximum: 300000
643
- async:
644
- type: boolean
645
- default: false
646
- priority:
647
- type: string
648
- enum: [low, normal, high, critical]
649
- default: normal
650
-
651
- ExecutionResponse:
652
- type: object
653
- required: [success, result]
654
- properties:
655
- success:
656
- type: boolean
657
- result:
658
- type: object
659
- description: Operation-specific result data
660
- metadata:
661
- type: object
662
- properties:
663
- execution_time:
664
- type: number
665
- description: Execution time in milliseconds
666
- tokens_used:
667
- type: integer
668
- model_used:
669
- type: string
670
- errors:
671
- type: array
672
- items:
673
- $ref: '#/components/schemas/ExecutionError'
674
-
675
- AsyncExecutionResponse:
676
- type: object
677
- required: [execution_id, status]
678
- properties:
679
- execution_id:
680
- type: string
681
- format: uuid
682
- status:
683
- type: string
684
- enum: [accepted, running]
685
- estimated_completion:
686
- type: string
687
- format: date-time
688
-
689
- ExecutionStatus:
690
- type: object
691
- required: [execution_id, status]
692
- properties:
693
- execution_id:
694
- type: string
695
- format: uuid
696
- status:
697
- type: string
698
- enum: [pending, running, completed, failed, cancelled]
699
- progress:
700
- type: number
701
- minimum: 0
702
- maximum: 100
703
- result:
704
- type: object
705
- description: Available when status is completed
706
- error:
707
- $ref: '#/components/schemas/ExecutionError'
708
- started_at:
709
- type: string
710
- format: date-time
711
- completed_at:
712
- type: string
713
- format: date-time
714
-
715
- ExecutionError:
716
- type: object
717
- required: [code, message]
718
- properties:
719
- code:
720
- type: string
721
- message:
722
- type: string
723
- details:
724
- type: object
725
- stack_trace:
726
- type: string
727
-
728
- AgentStatus:
729
- type: object
730
- required: [agent_id, state, health]
731
- properties:
732
- agent_id:
733
- type: string
734
- state:
735
- type: string
736
- enum: [pending, registered, active, suspended, terminated]
737
- health:
738
- type: string
739
- enum: [healthy, degraded, unhealthy, unknown]
740
- last_heartbeat:
741
- type: string
742
- format: date-time
743
- registered_at:
744
- type: string
745
- format: date-time
746
- metrics:
747
- $ref: '#/components/schemas/AgentMetrics'
748
-
749
- AgentMetrics:
750
- type: object
751
- properties:
752
- requests_handled:
753
- type: integer
754
- success_rate:
755
- type: number
756
- minimum: 0
757
- maximum: 1
758
- avg_response_time:
759
- type: integer
760
- description: Average response time in milliseconds
761
- token_usage:
762
- type: integer
763
- description: Total tokens consumed
764
-
765
- LifecycleResponse:
766
- type: object
767
- required: [action, status, timestamp]
768
- properties:
769
- action:
770
- type: string
771
- enum: [start, stop, restart]
772
- status:
773
- type: string
774
- enum: [success, failed]
775
- timestamp:
776
- type: string
777
- format: date-time
778
- message:
779
- type: string
780
-
781
- AgentMessage:
782
- type: object
783
- required: [from, type, content]
784
- properties:
785
- from:
786
- type: string
787
- description: Source agent ID
788
- to:
789
- type: string
790
- description: Target agent ID (optional for broadcasts)
791
- type:
792
- type: string
793
- enum: [request, response, notification, broadcast]
794
- content:
795
- type: object
796
- description: Message content
797
- correlation_id:
798
- type: string
799
- timestamp:
800
- type: string
801
- format: date-time
802
-
803
- MessageResponse:
804
- type: object
805
- required: [received, timestamp]
806
- properties:
807
- received:
808
- type: boolean
809
- timestamp:
810
- type: string
811
- format: date-time
812
- response:
813
- type: object
814
- description: Optional response data
815
-
816
- McpCapabilities:
817
- type: object
818
- required: [version, tools]
819
- properties:
820
- version:
821
- type: string
822
- description: MCP protocol version
823
- tools:
824
- type: object
825
- properties:
826
- list_changed:
827
- type: boolean
828
- resources:
829
- type: object
830
- properties:
831
- subscribe:
832
- type: boolean
833
- list_changed:
834
- type: boolean
835
-
836
- McpTool:
837
- type: object
838
- required: [name, description]
839
- properties:
840
- name:
841
- type: string
842
- description:
843
- type: string
844
- input_schema:
845
- type: object
846
- description: JSON Schema for tool input
847
-
848
- McpToolCall:
849
- type: object
850
- required: [arguments]
851
- properties:
852
- arguments:
853
- type: object
854
- description: Tool-specific arguments
855
-
856
- McpToolResponse:
857
- type: object
858
- required: [content]
859
- properties:
860
- content:
861
- type: array
862
- items:
863
- type: object
864
- properties:
865
- type:
866
- type: string
867
- enum: [text, image, resource]
868
- text:
869
- type: string
870
- data:
871
- type: string
872
- format: base64
873
- uri:
874
- type: string
875
- format: uri
876
- is_error:
877
- type: boolean
878
- default: false
879
-
880
- ErrorResponse:
881
- type: object
882
- required: [error, message, timestamp]
883
- properties:
884
- error:
885
- type: string
886
- message:
887
- type: string
888
- timestamp:
889
- type: string
890
- format: date-time
891
- details:
892
- type: object
893
- trace_id:
894
- type: string
895
-
896
- ValidationErrorResponse:
897
- type: object
898
- required: [error, message, validation_errors]
899
- properties:
900
- error:
901
- type: string
902
- enum: [validation_error]
903
- message:
904
- type: string
905
- validation_errors:
906
- type: array
907
- items:
908
- type: object
909
- properties:
910
- field:
911
- type: string
912
- code:
913
- type: string
914
- message:
915
- type: string
916
- timestamp:
917
- type: string
918
- format: date-time
919
-
920
- securitySchemes:
921
- BearerAuth:
922
- type: http
923
- scheme: bearer
924
- bearerFormat: JWT
925
- ApiKeyAuth:
926
- type: apiKey
927
- in: header
928
- name: X-API-Key
929
- OAuth2:
930
- type: oauth2
931
- flows:
932
- clientCredentials:
933
- tokenUrl: /oauth/token
934
- scopes:
935
- agent:read: Read agent information
936
- agent:execute: Execute agent operations
937
- agent:admin: Full agent administration
938
-
939
- security:
940
- - BearerAuth: []
941
- - ApiKeyAuth: []
942
- - OAuth2: [agent:read, agent:execute]