@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
@@ -0,0 +1,199 @@
1
+ # Requirements Document: OSSA Website Design System Audit & Enhancement
2
+
3
+ ## Introduction
4
+
5
+ This document outlines requirements for a comprehensive design system audit and enhancement of the Open Standard Agents (OSSA) website. The audit identifies critical issues in brand consistency, visual hierarchy, component architecture, accessibility, and user experience that must be addressed to achieve a premium, professional standard befitting an industry specification.
6
+
7
+ ## Glossary
8
+
9
+ - **Design System**: The complete collection of reusable components, patterns, tokens, and guidelines that define the visual and interaction language
10
+ - **Component Library**: The set of reusable UI components (buttons, cards, navigation, etc.)
11
+ - **Design Tokens**: Centralized variables for colors, typography, spacing, and other design primitives
12
+ - **Visual Hierarchy**: The arrangement and presentation of elements to guide user attention and comprehension
13
+ - **Accessibility (a11y)**: Design and development practices ensuring usability for people with disabilities (WCAG 2.1 AA compliance)
14
+ - **Responsive Design**: Layouts that adapt gracefully across device sizes and orientations
15
+ - **Information Architecture**: The structural design of information spaces to support findability and understanding
16
+ - **Cognitive Load**: The mental effort required to use an interface
17
+ - **Atomic Design**: Design methodology organizing components from atoms → molecules → organisms → templates → pages
18
+
19
+ ## Requirements
20
+
21
+ ### Requirement 1: Brand Identity & Visual Consistency
22
+
23
+ **User Story:** As a visitor, I want a cohesive visual experience across all pages, so that I perceive OSSA as a professional, trustworthy standard.
24
+
25
+ #### Acceptance Criteria
26
+
27
+ 1. WHEN viewing any page THEN the Website SHALL apply consistent brand colors from the centralized SCSS variables across all components
28
+ 2. WHEN encountering gradients THEN the Website SHALL use the defined gradient system (gradient-brand, gradient-hero, gradient-button) without deviation
29
+ 3. WHEN viewing logos and brand assets THEN the Website SHALL display them with consistent sizing, spacing, and treatment
30
+ 4. WHEN navigating between pages THEN the Website SHALL maintain visual continuity through consistent header, footer, and navigation patterns
31
+ 5. WHEN viewing semantic colors (success, warning, error, info) THEN the Website SHALL apply the muted palette defined in _variables.scss
32
+
33
+ ### Requirement 2: Typography System & Readability
34
+
35
+ **User Story:** As a reader, I want clear, scannable content with proper typographic hierarchy, so that I can quickly find and understand information.
36
+
37
+ #### Acceptance Criteria
38
+
39
+ 1. WHEN viewing headings THEN the Website SHALL implement a clear 6-level hierarchy (H1-H6) with distinct size, weight, and spacing
40
+ 2. WHEN reading body text THEN the Website SHALL maintain line-height between 1.5-1.75 for optimal readability
41
+ 3. WHEN viewing code examples THEN the Website SHALL use the JetBrains Mono font with appropriate syntax highlighting
42
+ 4. WHEN encountering long-form content THEN the Website SHALL limit line length to 65-75 characters for comfortable reading
43
+ 5. WHEN viewing text on colored backgrounds THEN the Website SHALL ensure WCAG AA contrast ratios (4.5:1 minimum for body text, 3:1 for large text)
44
+
45
+ ### Requirement 3: Component Architecture & Reusability
46
+
47
+ **User Story:** As a developer maintaining the site, I want a well-organized component library, so that I can build new pages efficiently without duplicating code.
48
+
49
+ #### Acceptance Criteria
50
+
51
+ 1. WHEN creating new UI elements THEN the System SHALL provide atomic components (Button, Card, Badge, etc.) with clear prop interfaces
52
+ 2. WHEN styling components THEN the System SHALL use Tailwind utility classes composed into semantic component classes
53
+ 3. WHEN building complex layouts THEN the System SHALL compose molecules from atoms following atomic design principles
54
+ 4. WHEN adding interactive elements THEN the System SHALL provide consistent hover, focus, and active states
55
+ 5. WHEN implementing forms THEN the System SHALL provide validated input components with error states
56
+
57
+ ### Requirement 4: Spacing & Layout System
58
+
59
+ **User Story:** As a designer, I want consistent spacing and layout patterns, so that pages feel harmonious and professionally crafted.
60
+
61
+ #### Acceptance Criteria
62
+
63
+ 1. WHEN applying spacing THEN the System SHALL use a consistent scale (4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px, 96px)
64
+ 2. WHEN creating sections THEN the System SHALL apply consistent vertical rhythm with section padding (py-12, py-16, py-20, py-24)
65
+ 3. WHEN building grids THEN the System SHALL use consistent gap values (gap-4, gap-6, gap-8) based on content density
66
+ 4. WHEN designing containers THEN the System SHALL use max-width constraints (max-w-4xl, max-w-6xl, max-w-7xl) for readability
67
+ 5. WHEN stacking elements THEN the System SHALL maintain consistent margin-bottom values within content blocks
68
+
69
+ ### Requirement 5: Navigation & Information Architecture
70
+
71
+ **User Story:** As a user, I want intuitive navigation that helps me find information quickly, so that I don't get lost or frustrated.
72
+
73
+ #### Acceptance Criteria
74
+
75
+ 1. WHEN viewing the header THEN the System SHALL display primary navigation with clear visual hierarchy and active states
76
+ 2. WHEN on mobile devices THEN the System SHALL provide an accessible hamburger menu with smooth transitions
77
+ 3. WHEN navigating documentation THEN the System SHALL provide a persistent sidebar with section organization
78
+ 4. WHEN viewing breadcrumbs THEN the System SHALL show the current location within the site hierarchy
79
+ 5. WHEN searching THEN the System SHALL provide instant feedback and relevant results
80
+
81
+ ### Requirement 6: Interactive Elements & Micro-interactions
82
+
83
+ **User Story:** As a user, I want responsive, delightful interactions, so that the interface feels polished and professional.
84
+
85
+ #### Acceptance Criteria
86
+
87
+ 1. WHEN hovering over buttons THEN the System SHALL provide smooth transitions (transition-all duration-300) with visual feedback
88
+ 2. WHEN clicking interactive elements THEN the System SHALL provide immediate visual confirmation
89
+ 3. WHEN loading content THEN the System SHALL display skeleton screens or loading states
90
+ 4. WHEN encountering errors THEN the System SHALL display clear, actionable error messages
91
+ 5. WHEN completing actions THEN the System SHALL provide success feedback through toast notifications or inline messages
92
+
93
+ ### Requirement 7: Accessibility & Inclusive Design
94
+
95
+ **User Story:** As a user with disabilities, I want an accessible website, so that I can navigate and understand content regardless of my abilities.
96
+
97
+ #### Acceptance Criteria
98
+
99
+ 1. WHEN navigating with keyboard THEN the System SHALL provide visible focus indicators on all interactive elements
100
+ 2. WHEN using screen readers THEN the System SHALL provide semantic HTML with proper ARIA labels and landmarks
101
+ 3. WHEN viewing images THEN the System SHALL include descriptive alt text for all meaningful images
102
+ 4. WHEN encountering color-coded information THEN the System SHALL provide additional non-color indicators
103
+ 5. WHEN viewing forms THEN the System SHALL associate labels with inputs and provide clear error messages
104
+
105
+ ### Requirement 8: Responsive Design & Mobile Experience
106
+
107
+ **User Story:** As a mobile user, I want a seamless experience on my device, so that I can access information on-the-go.
108
+
109
+ #### Acceptance Criteria
110
+
111
+ 1. WHEN viewing on mobile THEN the System SHALL adapt layouts using mobile-first responsive breakpoints
112
+ 2. WHEN interacting on touch devices THEN the System SHALL provide touch targets of at least 44x44px
113
+ 3. WHEN viewing tables THEN the System SHALL make them horizontally scrollable or stack on mobile
114
+ 4. WHEN viewing navigation THEN the System SHALL collapse to a mobile-friendly menu
115
+ 5. WHEN viewing images THEN the System SHALL serve appropriately sized images for the viewport
116
+
117
+ ### Requirement 9: Performance & Optimization
118
+
119
+ **User Story:** As a user, I want fast page loads, so that I don't wait unnecessarily for content.
120
+
121
+ #### Acceptance Criteria
122
+
123
+ 1. WHEN loading pages THEN the System SHALL achieve Lighthouse performance scores above 90
124
+ 2. WHEN loading images THEN the System SHALL use next/image with lazy loading and optimization
125
+ 3. WHEN loading fonts THEN the System SHALL use font-display: swap to prevent FOIT
126
+ 4. WHEN rendering components THEN the System SHALL minimize layout shifts (CLS < 0.1)
127
+ 5. WHEN loading JavaScript THEN the System SHALL code-split and lazy-load non-critical bundles
128
+
129
+ ### Requirement 10: Content Presentation & Scannability
130
+
131
+ **User Story:** As a busy professional, I want scannable content with clear visual hierarchy, so that I can quickly find what I need.
132
+
133
+ #### Acceptance Criteria
134
+
135
+ 1. WHEN viewing long-form content THEN the System SHALL break text into digestible chunks with subheadings
136
+ 2. WHEN scanning pages THEN the System SHALL use visual anchors (icons, badges, colors) to guide attention
137
+ 3. WHEN viewing lists THEN the System SHALL use appropriate list styles (bullets, numbers, checkmarks) for content type
138
+ 4. WHEN encountering important information THEN the System SHALL use callout boxes or highlighted sections
139
+ 5. WHEN viewing code examples THEN the System SHALL provide syntax highlighting and copy buttons
140
+
141
+ ### Requirement 11: Homepage Hero & First Impression
142
+
143
+ **User Story:** As a first-time visitor, I want to immediately understand what OSSA is, so that I can decide if it's relevant to me.
144
+
145
+ #### Acceptance Criteria
146
+
147
+ 1. WHEN landing on homepage THEN the System SHALL display a clear value proposition above the fold
148
+ 2. WHEN viewing the hero THEN the System SHALL use the gradient system with legible white text
149
+ 3. WHEN scanning the hero THEN the System SHALL provide 3-5 key benefits with visual icons
150
+ 4. WHEN ready to act THEN the System SHALL display prominent CTAs (Get Started, View Docs, GitHub)
151
+ 5. WHEN scrolling THEN the System SHALL reveal content with subtle animations for engagement
152
+
153
+ ### Requirement 12: Documentation Pages & Code Examples
154
+
155
+ **User Story:** As a developer, I want clear documentation with working code examples, so that I can implement OSSA quickly.
156
+
157
+ #### Acceptance Criteria
158
+
159
+ 1. WHEN viewing docs THEN the System SHALL provide a persistent sidebar with section navigation
160
+ 2. WHEN reading code examples THEN the System SHALL display syntax-highlighted code with copy buttons
161
+ 3. WHEN viewing API references THEN the System SHALL organize information in scannable tables or cards
162
+ 4. WHEN encountering complex concepts THEN the System SHALL provide diagrams or visual aids
163
+ 5. WHEN needing more context THEN the System SHALL link to related documentation sections
164
+
165
+ ### Requirement 13: Playground & Interactive Tools
166
+
167
+ **User Story:** As a user learning OSSA, I want interactive tools to experiment, so that I can learn by doing.
168
+
169
+ #### Acceptance Criteria
170
+
171
+ 1. WHEN using the playground THEN the System SHALL provide a Monaco editor with YAML syntax highlighting
172
+ 2. WHEN validating manifests THEN the System SHALL display clear success/error states with actionable feedback
173
+ 3. WHEN switching templates THEN the System SHALL provide visual indicators for the active template
174
+ 4. WHEN viewing validation results THEN the System SHALL highlight specific errors with line numbers
175
+ 5. WHEN downloading manifests THEN the System SHALL provide one-click download and copy functionality
176
+
177
+ ### Requirement 14: Footer & Secondary Navigation
178
+
179
+ **User Story:** As a user, I want comprehensive footer navigation, so that I can find additional resources and information.
180
+
181
+ #### Acceptance Criteria
182
+
183
+ 1. WHEN viewing the footer THEN the System SHALL organize links into logical categories (Docs, Resources, Community)
184
+ 2. WHEN looking for social links THEN the System SHALL display GitHub, npm, and other relevant platforms
185
+ 3. WHEN viewing legal information THEN the System SHALL display copyright and license information
186
+ 4. WHEN on mobile THEN the System SHALL stack footer columns vertically for readability
187
+ 5. WHEN viewing the footer THEN the System SHALL use muted colors (gray-900 background) for visual separation
188
+
189
+ ### Requirement 15: Logo Integration & Brand Assets
190
+
191
+ **User Story:** As a visitor, I want to see consistent, professional logo usage, so that I recognize the OSSA brand.
192
+
193
+ #### Acceptance Criteria
194
+
195
+ 1. WHEN viewing partner logos THEN the System SHALL display them in grayscale with consistent sizing
196
+ 2. WHEN hovering over logos THEN the System SHALL provide subtle hover effects (scale, color)
197
+ 3. WHEN viewing the OSSA logo THEN the System SHALL display it with the gradient text treatment
198
+ 4. WHEN on mobile THEN the System SHALL scale logos appropriately for smaller screens
199
+ 5. WHEN loading logos THEN the System SHALL use optimized SVG or WebP formats
package/.releaserc.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "branches": [
3
3
  "main",
4
4
  {
5
- "name": "develop",
6
- "prerelease": "beta"
5
+ "name": "development",
6
+ "prerelease": "dev"
7
7
  }
8
8
  ],
9
9
  "plugins": [
@@ -64,13 +64,14 @@
64
64
  }
65
65
  ],
66
66
  [
67
- "@semantic-release/github",
67
+ "@semantic-release/gitlab",
68
68
  {
69
+ "gitlabUrl": "https://gitlab.com",
69
70
  "assets": [
70
71
  { "path": "dist/*.tgz", "label": "Distribution Package" },
71
72
  { "path": "CHANGELOG.md", "label": "Changelog" }
72
73
  ],
73
- "successComment": "🎉 This ${issue.pull_request ? 'PR is included' : 'issue has been resolved'} in version ${nextRelease.version}\n\nThe release is available on:\n- [npm package](https://www.npmjs.com/package/@bluefly/open-standards-scalable-agents)\n- [GitHub release](${releases[0].url})\n- [Documentation](https://ossa.bluefly.io)\n\nYour **${issue.pull_request ? 'pull request' : 'issue'}** is included in this release!"
74
+ "successComment": "🎉 This ${issue.pull_request ? 'MR is included' : 'issue has been resolved'} in version ${nextRelease.version}\n\nThe release is available on:\n- [npm package](https://www.npmjs.com/package/@bluefly/openstandardagents)\n- [GitLab release](${releases[0].url})\n- [Documentation](https://openstandardagents.org)\n\nYour **${issue.pull_request ? 'merge request' : 'issue'}** is included in this release!"
74
75
  }
75
76
  ],
76
77
  [
package/.version.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "current": "0.2.5-RC",
3
+ "latest_stable": "0.2.4",
4
+ "spec_path": "spec/v{version}",
5
+ "schema_file": "ossa-{version}.schema.json"
6
+ }
package/CHANGELOG.md CHANGED
@@ -5,148 +5,192 @@ All notable changes to OSSA (Open Standard for Scalable AI Agents) will be docum
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [v0.2.5-RC] - 2025-11-26
9
+
10
+ ### Added
11
+
12
+ - **ossa run command**: New CLI command to execute agents using the OpenAI adapter
13
+ - Interactive REPL mode for ongoing conversations
14
+ - Single message mode with `-m, --message` flag
15
+ - Verbose output with `-v, --verbose` flag for debugging
16
+ - Configurable max turns with `--max-turns` option
17
+ - Runtime selection with `-r, --runtime` flag (currently supports OpenAI)
18
+ - Validation toggle with `--no-validate` flag
19
+ - Comprehensive error handling and user-friendly messages
20
+
21
+ - **OpenAI Adapter**: Complete runtime adapter for OpenAI API integration
22
+ - OpenAI function calling API support
23
+ - Tool registration and execution with custom handlers
24
+ - Conversation history management
25
+ - Model selection from manifest or OpenAI extensions
26
+ - System prompt configuration
27
+ - Tool mapping from OSSA capabilities to OpenAI functions
28
+ - Temperature and max tokens configuration
29
+ - Max turns limit to prevent infinite loops
30
+
31
+ - **Documentation**:
32
+ - Complete CLI reference for `ossa run` command
33
+ - Comprehensive OpenAI adapter guide
34
+ - Enhanced running agents guide with troubleshooting
35
+ - README.md updated with run command examples
36
+
37
+ - **Examples**:
38
+ - Basic OpenAI agent example (`examples/openai/basic-agent.ossa.yaml`)
39
+ - Advanced multi-tool agent example (`examples/openai/multi-tool-agent.ossa.json`)
40
+
41
+ - **Tests**:
42
+ - Unit tests for run command
43
+ - Unit tests for OpenAI adapter
44
+ - Integration tests for CLI execution
45
+
46
+ ### Changed
47
+
48
+ - Enhanced getting started documentation with detailed option descriptions
49
+ - Updated README.md with running agents section
50
+
8
51
  ## [0.2.4](https://github.com/blueflyio/openstandardagents/compare/v0.2.3...v0.2.4) (2025-11-19)
9
52
 
10
53
  ### Package Rename
11
54
 
12
- * **IMPORTANT**: Package renamed from `@bluefly/open-standards-scalable-agents` to `@bluefly/openstandardagents`
13
- * The old package `@bluefly/open-standards-scalable-agents` has been deprecated
14
- * Update your dependencies: `npm install @bluefly/openstandardagents`
55
+ - **IMPORTANT**: Package renamed from `@bluefly/open-standards-scalable-agents` to `@bluefly/openstandardagents`
56
+ - The old package `@bluefly/open-standards-scalable-agents` has been deprecated
57
+ - Update your dependencies: `npm install @bluefly/openstandardagents`
15
58
 
16
59
  ### Website Fixes
17
60
 
18
- * Fixed 100+ broken links (gitlab.bluefly.io → github.com/blueflyio/openstandardagents)
19
- * Fixed npm registry auth in CI pipeline
20
- * Standardized all package references across documentation
21
- * Fixed broken internal links (/docs/deployment, /research, CLI-Reference)
22
- * Updated all schema version references to v0.2.3
23
- * Fixed RSS feed base URL to openstandardagents.org
61
+ - Fixed 100+ broken links (gitlab.com → github.com/blueflyio/openstandardagents)
62
+ - Fixed npm registry auth in CI pipeline
63
+ - Standardized all package references across documentation
64
+ - Fixed broken internal links (/docs/deployment, /research, CLI-Reference)
65
+ - Updated all schema version references to v0.2.3
66
+ - Fixed RSS feed base URL to openstandardagents.org
24
67
 
25
68
  ## [0.2.3](https://github.com/blueflyio/openstandardagents/compare/v0.2.2...v0.2.3) (2025-11-12)
26
69
 
27
70
  ### Documentation
28
71
 
29
- * **spec**: Created versioned release structure in spec/v0.2.3/ with schema, README, CHANGELOG, and migration guide
30
- * **examples**: Enhanced inline documentation for kAgent and integration pattern examples
31
- * **migrations**: Added comprehensive migration guide from v0.2.2 to v0.2.3 (no breaking changes)
32
- * **compatibility**: Documented backward compatibility with v0.2.2
72
+ - **spec**: Created versioned release structure in spec/v0.2.3/ with schema, README, CHANGELOG, and migration guide
73
+ - **examples**: Enhanced inline documentation for kAgent and integration pattern examples
74
+ - **migrations**: Added comprehensive migration guide from v0.2.2 to v0.2.3 (no breaking changes)
75
+ - **compatibility**: Documented backward compatibility with v0.2.2
33
76
 
34
77
  ### Features
35
78
 
36
- * **schema**: Added v0.2.3 schema support with backward compatibility for v0.2.2
37
- * **types**: Extended SchemaVersion type to include '0.2.3'
38
- * **repository**: Updated SchemaRepository to load v0.2.3 schema files
39
- * **validation**: Set v0.2.3 as default version for validation service
79
+ - **schema**: Added v0.2.3 schema support with backward compatibility for v0.2.2
80
+ - **types**: Extended SchemaVersion type to include '0.2.3'
81
+ - **repository**: Updated SchemaRepository to load v0.2.3 schema files
82
+ - **validation**: Set v0.2.3 as default version for validation service
40
83
 
41
84
  ### Bug Fixes
42
85
 
43
- * **git**: Cleaned up diverged branches (merged main → development)
44
- * **tags**: Removed erroneous v0.3.0 tag from repository
45
- * **versions**: Reset all version references to 0.2.3 (removed v2.0.0 confusion)
86
+ - **git**: Cleaned up diverged branches (merged main → development)
87
+ - **tags**: Removed erroneous v0.3.0 tag from repository
88
+ - **versions**: Reset all version references to 0.2.3 (removed v2.0.0 confusion)
46
89
 
47
90
  ### BREAKING CHANGES
48
91
 
49
92
  **None** - This is a fully backward-compatible patch release. All v0.2.2 manifests work without modification.
50
93
 
51
- ## [2.0.0](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/compare/v1.0.0...v2.0.0) (2025-11-05)
52
-
94
+ ## [2.0.0](https://github.com/blueflyio/openstandardagents/compare/v1.0.0...v2.0.0) (2025-11-05)
53
95
 
54
96
  ### Bug Fixes
55
97
 
56
- * add v0.2.2 schema JSON files to git ([7ad617a](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/7ad617a5bcdb2304e4aaa9424562fa1654d90fb4))
57
- * add v0.2.2 schema support and set as default ([da22d4d](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/da22d4d47d4e9cc732c33290f971c670647d3318))
58
- * all tests pass with v0.2.2 format ([ee00098](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/ee00098772bbb9b6c128b483dce0366ce983329c))
59
- * change releases to manual triggers on main branch only ([7d48895](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/7d4889515c85107c9ca56cb624ebe70846af6041))
60
- * complete ESM module support with proper .js extensions ([b9754f3](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/b9754f384cde11640860ceb3370b8180c290c2b8))
61
- * convert ES module syntax in convert-to-kagent.js ([dba2b37](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/dba2b37c3992545b0230e6ae0458a0c215c54852))
62
- * convert ES module syntax in convert-to-kagent.js ([9b00af6](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/9b00af64966ea0a2a2183ecbcd4b2837767968f0))
63
- * convert release.config.js to ES module syntax ([b9cacbf](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/b9cacbfda385234034f6afb19925c6884bacb3cc))
64
- * correct version from 1.0.0 to 0.3.0 ([1786934](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/178693428cf72d8bdc216ddfd65d111ec41f811f))
65
- * correct version to 0.2.1 (patch bump) ([4227258](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/42272581065db0fc3bf30b3f4fd65a27af0dfd93))
66
- * disable promote-to-main job - use merge requests for main branch ([76e4e0b](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/76e4e0b6284ca346dd9768e827bbb5c083226a5c))
67
- * **ci:** make promote-to-main fast-forward-only; auto-create MR on conflicts via API ([a414db0](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/a414db0d5fda70d499ef9e55162f499a39d029a8))
68
- * **ci:** make promote-to-main script a single multiline string to satisfy YAML parsing ([c1563ea](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/c1563eae6a90365db699f5e3c63e9268ec79e1dd))
69
- * **ci:** promote-to-main handles shallow clones and unrelated histories; add auth remote ([7a66d60](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/7a66d60142541505d0a65d0d5413adc34c24a235))
70
- * **ci:** remove colon from commit message to fix YAML parsing ([260270a](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/260270a24ce59752aef963a293b62b26e2c996c0))
71
- * **ci:** remove invalid need on promote-to-main (cannot need later-stage job) ([211dbf7](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/211dbf7cd38e3ffc4dac3ced00cf320754f815f1))
72
- * **ci:** remove stray text and update development branch git config ([eb895b5](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/eb895b580ab27cf84bc005340eeff43ce6c2bb6c))
73
- * **ci:** rename job to avoid YAML colon parsing issue ([f641574](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/f6415745b4423636d332915e9061e948142a3959))
74
- * replace all gitlab.bluefly.io references with new instance ([89496c7](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/89496c7fa1e723491482f4c804fd9addf0da65f8))
75
- * replace gitlab.bluefly.io with app-4001.cloud.bluefly.io ([b8480a6](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/b8480a6d089c790f1d4f17359f9c79951239824e))
76
- * revert to version 0.2.2 and fix schema validation ([5789f6d](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/5789f6d7bfa0cc8638307902701ac967579097b0))
77
- * schema formatting ([3dd018b](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/3dd018b56756da1821658a4a7ee8986e55c4b632))
78
- * update all tests for v0.2.2 format ([34bb695](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/34bb695bd2376b9d93d47d6867bf8b1f4a4e4b73))
79
- * update CHANGELOG version to 0.3.0 ([b10b9f4](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/b10b9f4c38ece7455995ccd96a28d4cfedf4df36))
80
- * **ci:** update Node.js version to 22 for semantic-release compatibility ([eef4b89](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/eef4b89de9e4ef4cf3361a9e95d30ee81e706e78))
81
- * update version to 0.2.2 and reorganize spec directory ([5f9a8a0](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/5f9a8a0f3d7fa6386d88e07da70c5fd775812bc8))
82
- * **aiflow:** URGENT - Reduce CPU requests from 500m to 50m ([846c8fd](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/846c8fda3861120d6324ce957bf33b03fa484826))
83
- * **ci:** use PRIVATE-TOKEN with CI_JOB_TOKEN for MR API; reuse existing MR if present ([afd8c25](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/afd8c258b635c519bd0698adb8972e1c09e6efe4))
84
- * validate command supports both v0.2.2 and v1.0 formats ([4d777d0](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/4d777d08ab49267ad8670acaf8d0fdfb3617cfb9))
85
-
98
+ - add v0.2.2 schema JSON files to git ([7ad617a](https://github.com/blueflyio/openstandardagents/commit/7ad617a5bcdb2304e4aaa9424562fa1654d90fb4))
99
+ - add v0.2.2 schema support and set as default ([da22d4d](https://github.com/blueflyio/openstandardagents/commit/da22d4d47d4e9cc732c33290f971c670647d3318))
100
+ - all tests pass with v0.2.2 format ([ee00098](https://github.com/blueflyio/openstandardagents/commit/ee00098772bbb9b6c128b483dce0366ce983329c))
101
+ - change releases to manual triggers on main branch only ([7d48895](https://github.com/blueflyio/openstandardagents/commit/7d4889515c85107c9ca56cb624ebe70846af6041))
102
+ - complete ESM module support with proper .js extensions ([b9754f3](https://github.com/blueflyio/openstandardagents/commit/b9754f384cde11640860ceb3370b8180c290c2b8))
103
+ - convert ES module syntax in convert-to-kagent.js ([dba2b37](https://github.com/blueflyio/openstandardagents/commit/dba2b37c3992545b0230e6ae0458a0c215c54852))
104
+ - convert ES module syntax in convert-to-kagent.js ([9b00af6](https://github.com/blueflyio/openstandardagents/commit/9b00af64966ea0a2a2183ecbcd4b2837767968f0))
105
+ - convert release.config.js to ES module syntax ([b9cacbf](https://github.com/blueflyio/openstandardagents/commit/b9cacbfda385234034f6afb19925c6884bacb3cc))
106
+ - correct version from 1.0.0 to 0.3.0 ([1786934](https://github.com/blueflyio/openstandardagents/commit/178693428cf72d8bdc216ddfd65d111ec41f811f))
107
+ - correct version to 0.2.1 (patch bump) ([4227258](https://github.com/blueflyio/openstandardagents/commit/42272581065db0fc3bf30b3f4fd65a27af0dfd93))
108
+ - disable promote-to-main job - use merge requests for main branch ([76e4e0b](https://github.com/blueflyio/openstandardagents/commit/76e4e0b6284ca346dd9768e827bbb5c083226a5c))
109
+ - **ci:** make promote-to-main fast-forward-only; auto-create MR on conflicts via API ([a414db0](https://github.com/blueflyio/openstandardagents/commit/a414db0d5fda70d499ef9e55162f499a39d029a8))
110
+ - **ci:** make promote-to-main script a single multiline string to satisfy YAML parsing ([c1563ea](https://github.com/blueflyio/openstandardagents/commit/c1563eae6a90365db699f5e3c63e9268ec79e1dd))
111
+ - **ci:** promote-to-main handles shallow clones and unrelated histories; add auth remote ([7a66d60](https://github.com/blueflyio/openstandardagents/commit/7a66d60142541505d0a65d0d5413adc34c24a235))
112
+ - **ci:** remove colon from commit message to fix YAML parsing ([260270a](https://github.com/blueflyio/openstandardagents/commit/260270a24ce59752aef963a293b62b26e2c996c0))
113
+ - **ci:** remove invalid need on promote-to-main (cannot need later-stage job) ([211dbf7](https://github.com/blueflyio/openstandardagents/commit/211dbf7cd38e3ffc4dac3ced00cf320754f815f1))
114
+ - **ci:** remove stray text and update development branch git config ([eb895b5](https://github.com/blueflyio/openstandardagents/commit/eb895b580ab27cf84bc005340eeff43ce6c2bb6c))
115
+ - **ci:** rename job to avoid YAML colon parsing issue ([f641574](https://github.com/blueflyio/openstandardagents/commit/f6415745b4423636d332915e9061e948142a3959))
116
+ - replace all gitlab.com references with new instance ([89496c7](https://github.com/blueflyio/openstandardagents/commit/89496c7fa1e723491482f4c804fd9addf0da65f8))
117
+ - update GitLab instance references ([b8480a6](https://github.com/blueflyio/openstandardagents/commit/b8480a6d089c790f1d4f17359f9c79951239824e))
118
+ - revert to version 0.2.2 and fix schema validation ([5789f6d](https://github.com/blueflyio/openstandardagents/commit/5789f6d7bfa0cc8638307902701ac967579097b0))
119
+ - schema formatting ([3dd018b](https://github.com/blueflyio/openstandardagents/commit/3dd018b56756da1821658a4a7ee8986e55c4b632))
120
+ - update all tests for v0.2.2 format ([34bb695](https://github.com/blueflyio/openstandardagents/commit/34bb695bd2376b9d93d47d6867bf8b1f4a4e4b73))
121
+ - update CHANGELOG version to 0.3.0 ([b10b9f4](https://github.com/blueflyio/openstandardagents/commit/b10b9f4c38ece7455995ccd96a28d4cfedf4df36))
122
+ - **ci:** update Node.js version to 22 for semantic-release compatibility ([eef4b89](https://github.com/blueflyio/openstandardagents/commit/eef4b89de9e4ef4cf3361a9e95d30ee81e706e78))
123
+ - update version to 0.2.2 and reorganize spec directory ([5f9a8a0](https://github.com/blueflyio/openstandardagents/commit/5f9a8a0f3d7fa6386d88e07da70c5fd775812bc8))
124
+ - **aiflow:** URGENT - Reduce CPU requests from 500m to 50m ([846c8fd](https://github.com/blueflyio/openstandardagents/commit/846c8fda3861120d6324ce957bf33b03fa484826))
125
+ - **ci:** use PRIVATE-TOKEN with CI_JOB_TOKEN for MR API; reuse existing MR if present ([afd8c25](https://github.com/blueflyio/openstandardagents/commit/afd8c258b635c519bd0698adb8972e1c09e6efe4))
126
+ - validate command supports both v0.2.2 and v1.0 formats ([4d777d0](https://github.com/blueflyio/openstandardagents/commit/4d777d08ab49267ad8670acaf8d0fdfb3617cfb9))
86
127
 
87
128
  ### chore
88
129
 
89
- * clean up OSSA for npm publication ([f6d2c27](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/f6d2c27b3ac972cf065bfe4d67cf1d9e51f47b51))
90
-
130
+ - clean up OSSA for npm publication ([f6d2c27](https://github.com/blueflyio/openstandardagents/commit/f6d2c27b3ac972cf065bfe4d67cf1d9e51f47b51))
91
131
 
92
132
  ### Features
93
133
 
94
- * add CryptoSage AIFlow social agent example ([9c03a6b](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/9c03a6b94f0741a56e1aaaefebd71d387f428235))
95
- * add CryptoSage AIFlow social agent example ([36a1a21](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/36a1a219d546bf29185c4df7218a844e5891a70c))
96
- * add ecosystem tasks orchestrator agent ([276b868](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/276b868722d46ed1198f3a7ffc1f37e815d82d3b))
97
- * add ecosystem tasks orchestrator agent ([b9ac082](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/b9ac082f2746107de11ebddba26fcc0e5c065ea0))
98
- * add kagent.dev and AIFlow-Agent bridge support to OSSA 1.0 ([c83f462](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/c83f46270cf7264dbe6b7a3936373a6568f6015e))
99
- * add kagent.dev and AIFlow-Agent bridge support to OSSA 1.0 ([2a98c1e](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/2a98c1ebd09eb7d34992dee44074073f070f89bf))
100
- * **ci:** add manual merge-to-main button after successful pipeline ([d3fb40c](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/d3fb40c5d1aef7bda5cac15d0c2215cfc3f77a37))
101
- * **ci:** add manual promotion and release buttons ([c57fb66](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/c57fb66e3f258a0ae87c51db9d6f2c1d7d9cdff2))
102
- * **ossa:** add OpenAI Agents SDK bridge extension ([3cf4c9f](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/3cf4c9fd5ae6c042a96c5ec328d514bacd8936c9))
103
- * add OpenAPI/Swagger specification extensions for AI agents ([bfe5025](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/bfe5025a83d06449648cd3e92588568bc42217c8))
104
- * **compliance:** Add OSSA reasoning compliance extension schema for chain-of-thought auditing ([9bb60ec](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/9bb60ecc20b56df65f0e3d5e8562104386b773d7))
105
- * **automation:** Add resource validation to prevent cluster exhaustion ([3910b66](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/3910b662905661504e57969bc4d76b6c87282dbc))
106
- * add semantic-release for automated versioning ([589d530](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/589d5304c8e1b5a59d3ba0b15a809a961acc4e7e))
107
- * complete OSSA ecosystem automation suite ([cbef539](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/cbef539551430f7710cf689f50ea0aad4c8d3bb2))
108
- * complete OSSA ecosystem automation suite ([abc485f](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/abc485fc00344a3fe405739b734d8807cdf9adc2))
109
- * complete OSSA v0.2.2 agent migration with framework integration ([b0ab662](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/b0ab662f31faafed8de01e2ffb4a5a8c948eb634))
110
- * Complete OSSA v1.0 TypeScript implementation with Drupal integration ([be27188](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/be271880728e4dc6f164b4c85af432daf3d66858))
111
- * **aiflow:** Complete Phases 2 & 3 - Production-ready AIFlow integration ([0f81e9d](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/0f81e9d0c77586241caf94e593ad738481c0f68d)), closes [#1876](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/issues/1876) [#1877](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/issues/1877) [#1878](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/issues/1878)
112
- * Complete platform integration - OpenAPI + Helm for all projects ([d7140aa](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/d7140aac1e780d6094ef5aa20cf31c9adf3072d6))
113
- * Enhanced OSSA CLI with audit, inspect, and schema commands ([ca21cc2](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/ca21cc271161f592dd39a9e4bd7d7f3fd97a0004)), closes [#178](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/issues/178)
114
- * integrate v1.0 to v0.2.2 migration into OSSA CLI ([349c4dd](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/349c4ddda10066a628447fff6a62edc09615e3be))
115
- * **kagent:** intelligent agent deployment + ecosystem tooling ([b602d25](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/b602d25e9b200e01ff07be1fdf95a09da5938cb6))
116
- * intelligent agent deployment with resource optimization ([e9fba1e](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/e9fba1eedab9dcc6c5e0674a192bdf5315152984))
117
- * mass cleanup and standardization - ZERO ERRORS ([79cb19d](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/79cb19d1e8b7b0454a25abf9a8e18d765aae5fd8))
118
- * mass cleanup and standardization - ZERO ERRORS ([cd6f1cc](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/cd6f1cc5278c74bde5b1ad63e71d8665e0bb26a4))
119
- * mass cleanup and standardization - ZERO ERRORS ([3452f4f](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/3452f4f3c2b0a9d9ac72ac2c6917a4bda5ac050c))
120
- * **spec:** organize OSSA spec with clean v1.0 versioning ([08468e3](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/08468e3831fa8dc8e83bc2bbfdae352ab3f33e10))
121
- * OSSA v0.1.9 with kAgent extension support ([1d4c0b5](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/1d4c0b50cdcb5d4bf2fcc3f648968688f3139517))
122
- * **aiflow:** Phase 2 - BuildKit registration, Phoenix tracing, integration tests ([ee7279d](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/ee7279db63cee7afe4be2a2b044d87b40778f0f4)), closes [#1876](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/issues/1876)
123
- * **aiflow:** Phase 3 - K8s deployment, load testing, CI/CD, monitoring ([f5b9f46](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/f5b9f46ddea9fc90910a773093d620813a5945b1)), closes [#1877](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/issues/1877)
124
- * **aiflow:** Phase 3 - Production deployment, load testing, monitoring ([6066100](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/60661001e698edf269c4b4d2a450dc36090c0935)), closes [#1877](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/issues/1877)
125
- * **aiflow:** Phase 4 - SLO/SLA, incident response, chaos engineering ([3fb78f1](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/3fb78f15a25e9cf700e8e61bf68c088652afc066)), closes [#1878](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/issues/1878)
126
- * update k6 load testing scenarios ([e0bfc15](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/e0bfc1550962e8357fd446f23babdec7ff7634ef))
127
-
134
+ - add CryptoSage AIFlow social agent example ([9c03a6b](https://github.com/blueflyio/openstandardagents/commit/9c03a6b94f0741a56e1aaaefebd71d387f428235))
135
+ - add CryptoSage AIFlow social agent example ([36a1a21](https://github.com/blueflyio/openstandardagents/commit/36a1a219d546bf29185c4df7218a844e5891a70c))
136
+ - add ecosystem tasks orchestrator agent ([276b868](https://github.com/blueflyio/openstandardagents/commit/276b868722d46ed1198f3a7ffc1f37e815d82d3b))
137
+ - add ecosystem tasks orchestrator agent ([b9ac082](https://github.com/blueflyio/openstandardagents/commit/b9ac082f2746107de11ebddba26fcc0e5c065ea0))
138
+ - add kagent.dev and AIFlow-Agent bridge support to OSSA 1.0 ([c83f462](https://github.com/blueflyio/openstandardagents/commit/c83f46270cf7264dbe6b7a3936373a6568f6015e))
139
+ - add kagent.dev and AIFlow-Agent bridge support to OSSA 1.0 ([2a98c1e](https://github.com/blueflyio/openstandardagents/commit/2a98c1ebd09eb7d34992dee44074073f070f89bf))
140
+ - **ci:** add manual merge-to-main button after successful pipeline ([d3fb40c](https://github.com/blueflyio/openstandardagents/commit/d3fb40c5d1aef7bda5cac15d0c2215cfc3f77a37))
141
+ - **ci:** add manual promotion and release buttons ([c57fb66](https://github.com/blueflyio/openstandardagents/commit/c57fb66e3f258a0ae87c51db9d6f2c1d7d9cdff2))
142
+ - **ossa:** add OpenAI Agents SDK bridge extension ([3cf4c9f](https://github.com/blueflyio/openstandardagents/commit/3cf4c9fd5ae6c042a96c5ec328d514bacd8936c9))
143
+ - add OpenAPI/Swagger specification extensions for AI agents ([bfe5025](https://github.com/blueflyio/openstandardagents/commit/bfe5025a83d06449648cd3e92588568bc42217c8))
144
+ - **compliance:** Add OSSA reasoning compliance extension schema for chain-of-thought auditing ([9bb60ec](https://github.com/blueflyio/openstandardagents/commit/9bb60ecc20b56df65f0e3d5e8562104386b773d7))
145
+ - **automation:** Add resource validation to prevent cluster exhaustion ([3910b66](https://github.com/blueflyio/openstandardagents/commit/3910b662905661504e57969bc4d76b6c87282dbc))
146
+ - add semantic-release for automated versioning ([589d530](https://github.com/blueflyio/openstandardagents/commit/589d5304c8e1b5a59d3ba0b15a809a961acc4e7e))
147
+ - complete OSSA ecosystem automation suite ([cbef539](https://github.com/blueflyio/openstandardagents/commit/cbef539551430f7710cf689f50ea0aad4c8d3bb2))
148
+ - complete OSSA ecosystem automation suite ([abc485f](https://github.com/blueflyio/openstandardagents/commit/abc485fc00344a3fe405739b734d8807cdf9adc2))
149
+ - complete OSSA v0.2.2 agent migration with framework integration ([b0ab662](https://github.com/blueflyio/openstandardagents/commit/b0ab662f31faafed8de01e2ffb4a5a8c948eb634))
150
+ - Complete OSSA v1.0 TypeScript implementation with Drupal integration ([be27188](https://github.com/blueflyio/openstandardagents/commit/be271880728e4dc6f164b4c85af432daf3d66858))
151
+ - **aiflow:** Complete Phases 2 & 3 - Production-ready AIFlow integration ([0f81e9d](https://github.com/blueflyio/openstandardagents/commit/0f81e9d0c77586241caf94e593ad738481c0f68d)), closes [#1876](https://github.com/blueflyio/openstandardagents/issues/1876) [#1877](https://github.com/blueflyio/openstandardagents/issues/1877) [#1878](https://github.com/blueflyio/openstandardagents/issues/1878)
152
+ - Complete platform integration - OpenAPI + Helm for all projects ([d7140aa](https://github.com/blueflyio/openstandardagents/commit/d7140aac1e780d6094ef5aa20cf31c9adf3072d6))
153
+ - Enhanced OSSA CLI with audit, inspect, and schema commands ([ca21cc2](https://github.com/blueflyio/openstandardagents/commit/ca21cc271161f592dd39a9e4bd7d7f3fd97a0004)), closes [#178](https://github.com/blueflyio/openstandardagents/issues/178)
154
+ - integrate v1.0 to v0.2.2 migration into OSSA CLI ([349c4dd](https://github.com/blueflyio/openstandardagents/commit/349c4ddda10066a628447fff6a62edc09615e3be))
155
+ - **kagent:** intelligent agent deployment + ecosystem tooling ([b602d25](https://github.com/blueflyio/openstandardagents/commit/b602d25e9b200e01ff07be1fdf95a09da5938cb6))
156
+ - intelligent agent deployment with resource optimization ([e9fba1e](https://github.com/blueflyio/openstandardagents/commit/e9fba1eedab9dcc6c5e0674a192bdf5315152984))
157
+ - mass cleanup and standardization - ZERO ERRORS ([79cb19d](https://github.com/blueflyio/openstandardagents/commit/79cb19d1e8b7b0454a25abf9a8e18d765aae5fd8))
158
+ - mass cleanup and standardization - ZERO ERRORS ([cd6f1cc](https://github.com/blueflyio/openstandardagents/commit/cd6f1cc5278c74bde5b1ad63e71d8665e0bb26a4))
159
+ - mass cleanup and standardization - ZERO ERRORS ([3452f4f](https://github.com/blueflyio/openstandardagents/commit/3452f4f3c2b0a9d9ac72ac2c6917a4bda5ac050c))
160
+ - **spec:** organize OSSA spec with clean v1.0 versioning ([08468e3](https://github.com/blueflyio/openstandardagents/commit/08468e3831fa8dc8e83bc2bbfdae352ab3f33e10))
161
+ - OSSA v0.1.9 with kAgent extension support ([1d4c0b5](https://github.com/blueflyio/openstandardagents/commit/1d4c0b50cdcb5d4bf2fcc3f648968688f3139517))
162
+ - **aiflow:** Phase 2 - BuildKit registration, Phoenix tracing, integration tests ([ee7279d](https://github.com/blueflyio/openstandardagents/commit/ee7279db63cee7afe4be2a2b044d87b40778f0f4)), closes [#1876](https://github.com/blueflyio/openstandardagents/issues/1876)
163
+ - **aiflow:** Phase 3 - K8s deployment, load testing, CI/CD, monitoring ([f5b9f46](https://github.com/blueflyio/openstandardagents/commit/f5b9f46ddea9fc90910a773093d620813a5945b1)), closes [#1877](https://github.com/blueflyio/openstandardagents/issues/1877)
164
+ - **aiflow:** Phase 3 - Production deployment, load testing, monitoring ([6066100](https://github.com/blueflyio/openstandardagents/commit/60661001e698edf269c4b4d2a450dc36090c0935)), closes [#1877](https://github.com/blueflyio/openstandardagents/issues/1877)
165
+ - **aiflow:** Phase 4 - SLO/SLA, incident response, chaos engineering ([3fb78f1](https://github.com/blueflyio/openstandardagents/commit/3fb78f15a25e9cf700e8e61bf68c088652afc066)), closes [#1878](https://github.com/blueflyio/openstandardagents/issues/1878)
166
+ - update k6 load testing scenarios ([e0bfc15](https://github.com/blueflyio/openstandardagents/commit/e0bfc1550962e8357fd446f23babdec7ff7634ef))
128
167
 
129
168
  ### BREAKING CHANGES
130
169
 
131
- * None - this is additive functionality
132
- * Manual version management replaced with semantic-release
133
- * Cleaned up project structure for v1.0.0 release
134
- * - Removed old Jest config and legacy tests
135
- - Removed helm charts (moved to agent-buildkit)
136
- - CLI now uses TypeScript compiled output
170
+ - None - this is additive functionality
171
+ - Manual version management replaced with semantic-release
172
+ - Cleaned up project structure for v1.0.0 release
173
+ - - Removed old Jest config and legacy tests
174
+
175
+ * Removed helm charts (moved to agent-buildkit)
176
+ * CLI now uses TypeScript compiled output
137
177
 
138
178
  Test Results: 68/68 passing, 97.85% coverage
139
179
  Status: Production Ready
140
- * - CLI now requires OSSA 1.0 manifest format
141
- - Production example updated to OSSA 1.0 spec
180
+
181
+ - - CLI now requires OSSA 1.0 manifest format
182
+
183
+ * Production example updated to OSSA 1.0 spec
142
184
 
143
185
  New Features:
186
+
144
187
  - audit command: Score agents 0-100 on completeness, best practices, security, performance
145
188
  - inspect command: Detailed agent information with --json output
146
189
  - schema command: Query schema attributes (roles, protocols, compliance, bridges)
147
190
  - Fixed ES module conflicts in CLI
148
191
 
149
192
  Improvements:
193
+
150
194
  - Production example validates with 80/100 audit score
151
195
  - All required fields properly enforced
152
196
  - Comprehensive validation output
package/CONTRIBUTING.md CHANGED
@@ -29,7 +29,7 @@ This project adheres to a Code of Conduct. By participating, you are expected to
29
29
 
30
30
  ```bash
31
31
  # Clone the repository
32
- git clone https://github.com/BlueflyCollective/openstandardagents.git
32
+ git clone https://github.com/blueflyio/openstandardagents.git
33
33
  cd openstandardagents
34
34
 
35
35
  # Install dependencies
@@ -208,6 +208,24 @@ npm test -- --coverage
208
208
 
209
209
  ## 📚 Documentation
210
210
 
211
+ ### Public Documentation
212
+ Public-facing documentation is managed in the [GitLab Wiki](https://gitlab.com/blueflyio/openstandardagents/-/wikis/home) and automatically synced to [openstandardagents.org](https://openstandardagents.org).
213
+
214
+ **Public docs include:**
215
+ - OSSA specification and standard
216
+ - Usage guides and tutorials
217
+ - API reference and schema documentation
218
+ - Migration guides
219
+ - Community contribution guidelines
220
+
221
+ ### Internal Documentation
222
+ Internal project documentation is located in `.gitlab/docs/`:
223
+ - `/development` - Development workflows and coding standards
224
+ - **VERSIONING.md** - Automated version management (CRITICAL: never manually update versions)
225
+ - `/releases` - Release management and versioning
226
+ - `/infrastructure` - CI/CD, GitLab agents, Kubernetes setup
227
+ - `/processes` - Project governance and internal processes
228
+
211
229
  ### Code Documentation
212
230
 
213
231
  - Use **JSDoc** for all public APIs
@@ -220,7 +238,7 @@ npm test -- --coverage
220
238
 
221
239
  **DO NOT** open public issues for security vulnerabilities.
222
240
 
223
- Email: security@bluefly.io
241
+ Email: operations@bluefly.io
224
242
 
225
243
  ## 📊 Code Style
226
244
 
@@ -241,9 +259,9 @@ npm run lint -- --fix
241
259
 
242
260
  - **Conventional Commits**: https://www.conventionalcommits.org/
243
261
  - **Semantic Versioning**: https://semver.org/
244
- - **OSSA Specification**: https://ossa.bluefly.io/docs
245
- - **GitHub Actions**: https://github.com/BlueflyCollective/openstandardagents/actions
262
+ - **OSSA Specification**: https://openstandardagents.org/docs
263
+ - **GitHub Actions**: https://github.com/blueflyio/openstandardagents/actions
246
264
 
247
265
  ---
248
266
 
249
- **Questions?** Open a [Discussion](https://github.com/BlueflyCollective/openstandardagents/discussions).
267
+ **Questions?** Open an [Issue](https://github.com/blueflyio/openstandardagents/issues).