@bluefly/openstandardagents 0.2.4

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 (371) hide show
  1. package/.env.example +41 -0
  2. package/.eslintrc.cjs +43 -0
  3. package/.github/PULL_REQUEST_TEMPLATE.md +39 -0
  4. package/.github/dependabot.yml +58 -0
  5. package/.github/workflows/ci.yml +154 -0
  6. package/.github/workflows/codeql.yml +41 -0
  7. package/.github/workflows/dependabot-auto-merge.yml +28 -0
  8. package/.github/workflows/release.yml +103 -0
  9. package/.prettierignore +7 -0
  10. package/.prettierrc.json +10 -0
  11. package/.redocly.yaml +9 -0
  12. package/.releaserc.json +84 -0
  13. package/.releaserc.json.disabled +81 -0
  14. package/CHANGELOG.md +152 -0
  15. package/CONTRIBUTING.md +249 -0
  16. package/LICENSE +190 -0
  17. package/README.md +280 -0
  18. package/bin/ossa +8 -0
  19. package/bin/validate-ossa-0.2.2.ts +244 -0
  20. package/dist/di-container.d.ts +18 -0
  21. package/dist/di-container.d.ts.map +1 -0
  22. package/dist/di-container.js +43 -0
  23. package/dist/di-container.js.map +1 -0
  24. package/dist/index.d.ts +13 -0
  25. package/dist/index.d.ts.map +1 -0
  26. package/dist/index.js +17 -0
  27. package/dist/index.js.map +1 -0
  28. package/dist/repositories/manifest.repository.d.ts +26 -0
  29. package/dist/repositories/manifest.repository.d.ts.map +1 -0
  30. package/dist/repositories/manifest.repository.js +90 -0
  31. package/dist/repositories/manifest.repository.js.map +1 -0
  32. package/dist/repositories/schema.repository.d.ts +30 -0
  33. package/dist/repositories/schema.repository.d.ts.map +1 -0
  34. package/dist/repositories/schema.repository.js +143 -0
  35. package/dist/repositories/schema.repository.js.map +1 -0
  36. package/dist/services/generation.service.d.ts +54 -0
  37. package/dist/services/generation.service.d.ts.map +1 -0
  38. package/dist/services/generation.service.js +298 -0
  39. package/dist/services/generation.service.js.map +1 -0
  40. package/dist/services/migration.service.d.ts +30 -0
  41. package/dist/services/migration.service.d.ts.map +1 -0
  42. package/dist/services/migration.service.js +231 -0
  43. package/dist/services/migration.service.js.map +1 -0
  44. package/dist/services/runtime/openai.adapter.d.ts +94 -0
  45. package/dist/services/runtime/openai.adapter.d.ts.map +1 -0
  46. package/dist/services/runtime/openai.adapter.js +209 -0
  47. package/dist/services/runtime/openai.adapter.js.map +1 -0
  48. package/dist/services/validation.service.d.ts +45 -0
  49. package/dist/services/validation.service.d.ts.map +1 -0
  50. package/dist/services/validation.service.js +362 -0
  51. package/dist/services/validation.service.js.map +1 -0
  52. package/dist/services/validators/anthropic.validator.d.ts +9 -0
  53. package/dist/services/validators/anthropic.validator.d.ts.map +1 -0
  54. package/dist/services/validators/anthropic.validator.js +105 -0
  55. package/dist/services/validators/anthropic.validator.js.map +1 -0
  56. package/dist/services/validators/autogen.validator.d.ts +9 -0
  57. package/dist/services/validators/autogen.validator.d.ts.map +1 -0
  58. package/dist/services/validators/autogen.validator.js +111 -0
  59. package/dist/services/validators/autogen.validator.js.map +1 -0
  60. package/dist/services/validators/crewai.validator.d.ts +9 -0
  61. package/dist/services/validators/crewai.validator.d.ts.map +1 -0
  62. package/dist/services/validators/crewai.validator.js +117 -0
  63. package/dist/services/validators/crewai.validator.js.map +1 -0
  64. package/dist/services/validators/cursor.validator.d.ts +9 -0
  65. package/dist/services/validators/cursor.validator.d.ts.map +1 -0
  66. package/dist/services/validators/cursor.validator.js +88 -0
  67. package/dist/services/validators/cursor.validator.js.map +1 -0
  68. package/dist/services/validators/index.d.ts +15 -0
  69. package/dist/services/validators/index.d.ts.map +1 -0
  70. package/dist/services/validators/index.js +15 -0
  71. package/dist/services/validators/index.js.map +1 -0
  72. package/dist/services/validators/langchain.validator.d.ts +9 -0
  73. package/dist/services/validators/langchain.validator.d.ts.map +1 -0
  74. package/dist/services/validators/langchain.validator.js +103 -0
  75. package/dist/services/validators/langchain.validator.js.map +1 -0
  76. package/dist/services/validators/langflow.validator.d.ts +9 -0
  77. package/dist/services/validators/langflow.validator.d.ts.map +1 -0
  78. package/dist/services/validators/langflow.validator.js +92 -0
  79. package/dist/services/validators/langflow.validator.js.map +1 -0
  80. package/dist/services/validators/langgraph.validator.d.ts +9 -0
  81. package/dist/services/validators/langgraph.validator.d.ts.map +1 -0
  82. package/dist/services/validators/langgraph.validator.js +123 -0
  83. package/dist/services/validators/langgraph.validator.js.map +1 -0
  84. package/dist/services/validators/llamaindex.validator.d.ts +9 -0
  85. package/dist/services/validators/llamaindex.validator.d.ts.map +1 -0
  86. package/dist/services/validators/llamaindex.validator.js +121 -0
  87. package/dist/services/validators/llamaindex.validator.js.map +1 -0
  88. package/dist/services/validators/openai.validator.d.ts +9 -0
  89. package/dist/services/validators/openai.validator.d.ts.map +1 -0
  90. package/dist/services/validators/openai.validator.js +126 -0
  91. package/dist/services/validators/openai.validator.js.map +1 -0
  92. package/dist/services/validators/vercel-ai.validator.d.ts +9 -0
  93. package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -0
  94. package/dist/services/validators/vercel-ai.validator.js +99 -0
  95. package/dist/services/validators/vercel-ai.validator.js.map +1 -0
  96. package/dist/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  97. package/dist/spec/v0.1.9/ecosystem-compliance.json +235 -0
  98. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  99. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  100. package/dist/spec/v0.1.9/reasoning-compliance.json +654 -0
  101. package/dist/spec/v0.2.2/kagent-enhancements.json +395 -0
  102. package/dist/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  103. package/dist/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  104. package/dist/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  105. package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
  106. package/dist/spec/v0.2.3/README.md +154 -0
  107. package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  108. package/dist/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  109. package/dist/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  110. package/dist/spec/v0.2.4-dev/CHANGELOG.md +403 -0
  111. package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  112. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
  113. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
  114. package/dist/spec/v0.2.5-dev/CHANGELOG.md +171 -0
  115. package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
  116. package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
  117. package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
  118. package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
  119. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
  120. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
  121. package/dist/types/index.d.ts +178 -0
  122. package/dist/types/index.d.ts.map +1 -0
  123. package/dist/types/index.js +6 -0
  124. package/dist/types/index.js.map +1 -0
  125. package/dist/types/openapi-extensions.d.ts +164 -0
  126. package/dist/types/openapi-extensions.d.ts.map +1 -0
  127. package/dist/types/openapi-extensions.js +6 -0
  128. package/dist/types/openapi-extensions.js.map +1 -0
  129. package/docs/OSSA-COMPLIANT-BADGE.md +248 -0
  130. package/docs/README.md +31 -0
  131. package/docs/VERSIONING.md +284 -0
  132. package/docs/agent-openapi-spec.yml +942 -0
  133. package/docs/getting-started.md +87 -0
  134. package/docs/migration/general-agent-schema.yml +255 -0
  135. package/docs/migration/migration-manifest.json +64 -0
  136. package/docs/openapi-extensions.md +930 -0
  137. package/docs/schemas/openapi-extensions.schema.json +486 -0
  138. package/examples/adk-integration/code-review-workflow.yml +136 -0
  139. package/examples/adk-integration/customer-support.yml +263 -0
  140. package/examples/adk-integration/data-pipeline.yml +173 -0
  141. package/examples/advanced/patterns/compliance-context-production.json +53 -0
  142. package/examples/advanced/patterns/model-router.ts +274 -0
  143. package/examples/advanced/patterns/smart-model-routing.ts +248 -0
  144. package/examples/advanced/workflows/hybrid-model-strategy.yaml +232 -0
  145. package/examples/agent-manifests/critics/critic-agent.yaml +149 -0
  146. package/examples/agent-manifests/governors/governor-agent.yaml +128 -0
  147. package/examples/agent-manifests/integrators/integrator-agent.yaml +103 -0
  148. package/examples/agent-manifests/judges/judge-agent.yaml +153 -0
  149. package/examples/agent-manifests/monitors/monitor-agent.yaml +122 -0
  150. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +247 -0
  151. package/examples/agent-manifests/sample-compliant-agent.yaml +147 -0
  152. package/examples/agent-manifests/workers/worker-agent.yaml +82 -0
  153. package/examples/anthropic/claude-assistant.ossa.json +45 -0
  154. package/examples/architecture/model-configuration/ollama-integration.ts +110 -0
  155. package/examples/autogen/multi-agent.ossa.json +37 -0
  156. package/examples/bridge-configurations.yaml +346 -0
  157. package/examples/bridges/Dockerfile.production +87 -0
  158. package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
  159. package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
  160. package/examples/bridges/__pycache__/test_aiflow_integration.cpython-313.pyc +0 -0
  161. package/examples/bridges/aiflow-bridge-enhanced.py +462 -0
  162. package/examples/bridges/aiflow-bridge-example.yml +310 -0
  163. package/examples/bridges/aiflow-phoenix-tracing.py +310 -0
  164. package/examples/bridges/aiflow-registration-api.openapi.yml +439 -0
  165. package/examples/bridges/k8s/configmap.yaml +121 -0
  166. package/examples/bridges/k8s/deployment-simple.yaml +34 -0
  167. package/examples/bridges/k8s/deployment.yaml +275 -0
  168. package/examples/bridges/k8s/hpa.yaml +126 -0
  169. package/examples/bridges/k8s/ingress.yaml +155 -0
  170. package/examples/bridges/kagent-bridge-example.yml +94 -0
  171. package/examples/bridges/load-tests/Dockerfile +28 -0
  172. package/examples/bridges/load-tests/k6-load-test.js +302 -0
  173. package/examples/bridges/load-tests/requirements.txt +20 -0
  174. package/examples/bridges/loadtest/k6-scenarios.js +270 -0
  175. package/examples/bridges/phase4/SLO-SLA.yaml +249 -0
  176. package/examples/bridges/phase4/chaos-tests.yaml +226 -0
  177. package/examples/bridges/requirements.txt +24 -0
  178. package/examples/bridges/test_aiflow_integration.py +341 -0
  179. package/examples/common_npm/agent-router.ossa.yaml +182 -0
  180. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +60 -0
  181. package/examples/compliance-agent.yml +155 -0
  182. package/examples/crewai/research-team.ossa.json +36 -0
  183. package/examples/cursor/code-review-agent.ossa.json +47 -0
  184. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +609 -0
  185. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +68 -0
  186. package/examples/enterprise/agent.yml +452 -0
  187. package/examples/extensions/drupal-v1.yml +266 -0
  188. package/examples/extensions/kagent-v1.yml +167 -0
  189. package/examples/getting-started/hello-world-complete.ossa.yaml +266 -0
  190. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +376 -0
  191. package/examples/kagent/README.md +31 -0
  192. package/examples/kagent/compliance-validator.ossa.yaml +111 -0
  193. package/examples/kagent/cost-optimizer.ossa.yaml +93 -0
  194. package/examples/kagent/documentation-agent.ossa.yaml +91 -0
  195. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +269 -0
  196. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +106 -0
  197. package/examples/kagent/k8s-troubleshooter.ossa.yaml +257 -0
  198. package/examples/kagent/security-scanner.ossa.yaml +140 -0
  199. package/examples/langchain/chain-agent.ossa.json +42 -0
  200. package/examples/langflow/workflow-agent.ossa.json +39 -0
  201. package/examples/langgraph/state-machine-agent.ossa.json +59 -0
  202. package/examples/llamaindex/rag-agent.ossa.json +41 -0
  203. package/examples/migration-guides/from-langchain-to-ossa.yaml +309 -0
  204. package/examples/minimal/agent.yml +152 -0
  205. package/examples/minimal/openapi.yaml +95 -0
  206. package/examples/openai/swarm-agent.ossa.json +59 -0
  207. package/examples/openapi-extensions/README.md +87 -0
  208. package/examples/openapi-extensions/minimal-agent-api.openapi.yml +288 -0
  209. package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +633 -0
  210. package/examples/openapi-extensions/worker-agent-api.openapi.yml +533 -0
  211. package/examples/production/agent.yml +713 -0
  212. package/examples/production/document-analyzer-openai.yml +134 -0
  213. package/examples/quickstart/support-agent.ossa.yaml +59 -0
  214. package/examples/service-registry-usage.ts +423 -0
  215. package/examples/spec-examples/audit-agent.yml +147 -0
  216. package/examples/spec-examples/chat-agent.yml +189 -0
  217. package/examples/spec-examples/compliance-agent.yml +204 -0
  218. package/examples/spec-examples/data-processing-agent.yml +132 -0
  219. package/examples/spec-examples/development-agent.yml +138 -0
  220. package/examples/spec-examples/edge-agent.yml +101 -0
  221. package/examples/spec-examples/integration-agent.yml +129 -0
  222. package/examples/spec-examples/monitoring-agent.yml +130 -0
  223. package/examples/spec-examples/serverless-agent.yml +82 -0
  224. package/examples/spec-examples/workflow-agent.yml +223 -0
  225. package/examples/templates/ossa-compliance.yaml +56 -0
  226. package/examples/typescript/advanced/demo-registry.ts +168 -0
  227. package/examples/typescript/mcpb-agent-example.ts +358 -0
  228. package/examples/vercel/edge-agent.ossa.json +43 -0
  229. package/infrastructure/docker-compose.yml +33 -0
  230. package/junit.xml +1 -0
  231. package/openapi/drupal-agent-api.openapi.yaml +348 -0
  232. package/openapi/gitlab-orchestrator.openapi.yaml +330 -0
  233. package/openapi/helm-generator.openapi.yaml +389 -0
  234. package/openapi/ossa-core-api.openapi.yaml +1448 -0
  235. package/openapi/ossa-registry-api.openapi.yaml +980 -0
  236. package/openapi/ossa-registry.openapi.yaml +782 -0
  237. package/openapi/self-evolving-ecosystem.openapi.yaml +1530 -0
  238. package/openapi/unified-agent-gateway.openapi.yaml +833 -0
  239. package/ossa-website-swarm-tasks.json +105 -0
  240. package/package.json +132 -0
  241. package/release.config.js +64 -0
  242. package/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  243. package/spec/v0.1.9/ecosystem-compliance.json +235 -0
  244. package/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  245. package/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  246. package/spec/v0.1.9/reasoning-compliance.json +654 -0
  247. package/spec/v0.2.2/kagent-enhancements.json +395 -0
  248. package/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  249. package/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  250. package/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  251. package/spec/v0.2.3/CHANGELOG.md +176 -0
  252. package/spec/v0.2.3/README.md +154 -0
  253. package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  254. package/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  255. package/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  256. package/spec/v0.2.4-dev/CHANGELOG.md +403 -0
  257. package/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  258. package/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
  259. package/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
  260. package/spec/v0.2.5-dev/CHANGELOG.md +171 -0
  261. package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
  262. package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
  263. package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
  264. package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
  265. package/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
  266. package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
  267. package/test-results.xml +1 -0
  268. package/website/.lighthouserc.js +20 -0
  269. package/website/.prettierrc +10 -0
  270. package/website/Dockerfile +17 -0
  271. package/website/app/about/page.tsx +295 -0
  272. package/website/app/api/validate/route.ts +88 -0
  273. package/website/app/blog/[slug]/page.tsx +167 -0
  274. package/website/app/blog/page.tsx +162 -0
  275. package/website/app/docs/[[...slug]]/page.tsx +349 -0
  276. package/website/app/docs/core-concepts/project-structure/page.tsx +349 -0
  277. package/website/app/ecosystem/page.tsx +375 -0
  278. package/website/app/examples/page.tsx +123 -0
  279. package/website/app/globals.css +108 -0
  280. package/website/app/layout.tsx +106 -0
  281. package/website/app/page.tsx +409 -0
  282. package/website/app/playground/page.tsx +507 -0
  283. package/website/app/robots.ts +19 -0
  284. package/website/app/rss.xml/route.ts +74 -0
  285. package/website/app/schema/page.tsx +970 -0
  286. package/website/app/sitemap.ts +56 -0
  287. package/website/app/specification/page.tsx +211 -0
  288. package/website/components/InstallCommand.tsx +96 -0
  289. package/website/components/Logo.tsx +24 -0
  290. package/website/components/StructuredData.tsx +65 -0
  291. package/website/components/docs/DocsSearch.tsx +104 -0
  292. package/website/components/docs/DocsSidebar.tsx +118 -0
  293. package/website/components/docs/MarkdownContent.tsx +183 -0
  294. package/website/components/docs/VersionSelector.tsx +49 -0
  295. package/website/components/examples/ExamplesViewer.tsx +293 -0
  296. package/website/components/layout/Footer.tsx +111 -0
  297. package/website/components/layout/Header.tsx +170 -0
  298. package/website/components/schema/SchemaExplorer.tsx +213 -0
  299. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +285 -0
  300. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +209 -0
  301. package/website/content/blog/introducing-ossa-framework.md +328 -0
  302. package/website/content/blog/ossa-production-results.md +279 -0
  303. package/website/content/blog/welcome-to-ossa.md +43 -0
  304. package/website/content/blog/why-ai-agents-need-open-standard.md +98 -0
  305. package/website/content/docs/00-HOME.md +160 -0
  306. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
  307. package/website/content/docs/OpenAPI-Extensions.md +498 -0
  308. package/website/content/docs/architecture/execution-flow.md +335 -0
  309. package/website/content/docs/architecture/multi-agent-systems.md +737 -0
  310. package/website/content/docs/architecture/overview.md +121 -0
  311. package/website/content/docs/architecture/stack-integration.md +461 -0
  312. package/website/content/docs/changelog.md +246 -0
  313. package/website/content/docs/contributing.md +599 -0
  314. package/website/content/docs/core-concepts/project-structure.md +348 -0
  315. package/website/content/docs/ecosystem/framework-support.md +821 -0
  316. package/website/content/docs/ecosystem/overview.md +366 -0
  317. package/website/content/docs/examples/Migration-Guides.md +214 -0
  318. package/website/content/docs/examples.md +71 -0
  319. package/website/content/docs/for-audiences/Enterprises.md +256 -0
  320. package/website/content/docs/for-audiences/Students-Researchers.md +122 -0
  321. package/website/content/docs/for-audiences/architects.md +224 -0
  322. package/website/content/docs/for-audiences/developers.md +220 -0
  323. package/website/content/docs/getting-started/5-minute-overview.md +85 -0
  324. package/website/content/docs/getting-started/Hello-World.md +184 -0
  325. package/website/content/docs/getting-started/first-agent.md +196 -0
  326. package/website/content/docs/getting-started/installation.md +155 -0
  327. package/website/content/docs/getting-started/running-agents.md +107 -0
  328. package/website/content/docs/integrations/aiflow.md +104 -0
  329. package/website/content/docs/integrations/drupal.md +105 -0
  330. package/website/content/docs/migration-guides/00-index.md +76 -0
  331. package/website/content/docs/migration-guides/README.md +133 -0
  332. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +1750 -0
  333. package/website/content/docs/migration-guides/crewai-to-ossa.md +274 -0
  334. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +2017 -0
  335. package/website/content/docs/migration-guides/index.md +133 -0
  336. package/website/content/docs/migration-guides/langchain-to-ossa.md +1714 -0
  337. package/website/content/docs/migration-guides/langflow-to-ossa.md +2075 -0
  338. package/website/content/docs/migration-guides/openai-to-ossa.md +1202 -0
  339. package/website/content/docs/openapi-extensions/examples.md +550 -0
  340. package/website/content/docs/openapi-extensions/index.md +495 -0
  341. package/website/content/docs/openapi-extensions/operation-extensions.md +398 -0
  342. package/website/content/docs/openapi-extensions/root-extensions.md +364 -0
  343. package/website/content/docs/pre-release/index.md +175 -0
  344. package/website/content/docs/quick-reference.md +17 -0
  345. package/website/content/docs/schema-reference/agent-spec.md +406 -0
  346. package/website/content/docs/schema-reference/autonomy.md +568 -0
  347. package/website/content/docs/schema-reference/constraints.md +543 -0
  348. package/website/content/docs/schema-reference/index.md +176 -0
  349. package/website/content/docs/schema-reference/llm-config.md +445 -0
  350. package/website/content/docs/schema-reference/observability.md +654 -0
  351. package/website/content/docs/schema-reference/ossa-manifest.md +309 -0
  352. package/website/content/docs/schema-reference/taxonomy.md +509 -0
  353. package/website/content/docs/schema-reference/tools.md +628 -0
  354. package/website/content/docs/templates/blog-post.md +43 -0
  355. package/website/content/docs/use-cases/00-index.md +395 -0
  356. package/website/content/docs/use-cases/cicd-code-review.md +1236 -0
  357. package/website/content/docs/use-cases/customer-support.md +1234 -0
  358. package/website/content/docs/use-cases/enterprise-compliance.md +1208 -0
  359. package/website/content/docs/use-cases/research-multi-agent.md +1161 -0
  360. package/website/lib/version.ts +18 -0
  361. package/website/next.config.js +17 -0
  362. package/website/next.config.ts +16 -0
  363. package/website/nginx.conf +32 -0
  364. package/website/package-lock.json +9145 -0
  365. package/website/package.json +53 -0
  366. package/website/postcss.config.js +7 -0
  367. package/website/postcss.config.mjs +9 -0
  368. package/website/scripts/sync-version.js +44 -0
  369. package/website/scripts/sync-wiki.ts +261 -0
  370. package/website/tailwind.config.js +58 -0
  371. package/website/tailwind.config.ts +65 -0
@@ -0,0 +1,81 @@
1
+ {
2
+ "branches": [
3
+ "main",
4
+ {
5
+ "name": "development",
6
+ "prerelease": "dev",
7
+ "channel": "development"
8
+ }
9
+ ],
10
+ "repositoryUrl": "https://gitlab.bluefly.io/llm/openapi-ai-agents-standard.git",
11
+ "plugins": [
12
+ [
13
+ "@semantic-release/commit-analyzer",
14
+ {
15
+ "preset": "angular",
16
+ "releaseRules": [
17
+ { "type": "docs", "scope": "README", "release": "patch" },
18
+ { "type": "refactor", "scope": "core-*", "release": "minor" },
19
+ { "type": "refactor", "release": "patch" },
20
+ { "type": "chore", "scope": "deps", "release": "patch" }
21
+ ],
22
+ "parserOpts": {
23
+ "noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
24
+ }
25
+ }
26
+ ],
27
+ [
28
+ "@semantic-release/release-notes-generator",
29
+ {
30
+ "preset": "angular",
31
+ "parserOpts": {
32
+ "noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
33
+ },
34
+ "writerOpts": {
35
+ "commitsSort": ["subject", "scope"]
36
+ }
37
+ }
38
+ ],
39
+ [
40
+ "@semantic-release/changelog",
41
+ {
42
+ "changelogFile": "CHANGELOG.md",
43
+ "changelogTitle": "# Changelog\n\nAll notable changes to OSSA (Open Standard for Scalable Agents) will be documented in this file.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)."
44
+ }
45
+ ],
46
+ [
47
+ "@semantic-release/npm",
48
+ {
49
+ "npmPublish": false,
50
+ "tarballDir": "dist"
51
+ }
52
+ ],
53
+ [
54
+ "@semantic-release/gitlab",
55
+ {
56
+ "gitlabUrl": "https://gitlab.bluefly.io",
57
+ "assets": [
58
+ {
59
+ "path": "dist/*.tgz",
60
+ "label": "OSSA npm package (${nextRelease.gitTag})"
61
+ },
62
+ {
63
+ "path": "spec/v${nextRelease.version.split('.')[0]}.${nextRelease.version.split('.')[1]}.${nextRelease.version.split('.')[2]}/ossa-${nextRelease.version.split('.')[0]}.${nextRelease.version.split('.')[1]}.${nextRelease.version.split('.')[2]}.schema.json",
64
+ "label": "OSSA ${nextRelease.version} JSON Schema"
65
+ }
66
+ ]
67
+ }
68
+ ],
69
+ [
70
+ "@semantic-release/git",
71
+ {
72
+ "assets": [
73
+ "package.json",
74
+ "package-lock.json",
75
+ "CHANGELOG.md"
76
+ ],
77
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
78
+ }
79
+ ]
80
+ ]
81
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,152 @@
1
+ # Changelog
2
+
3
+ All notable changes to OSSA (Open Standard for Scalable AI Agents) will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [0.2.4](https://github.com/blueflyio/openstandardagents/compare/v0.2.3...v0.2.4) (2025-11-19)
9
+
10
+ ### Package Rename
11
+
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`
15
+
16
+ ### Website Fixes
17
+
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
24
+
25
+ ## [0.2.3](https://github.com/blueflyio/openstandardagents/compare/v0.2.2...v0.2.3) (2025-11-12)
26
+
27
+ ### Documentation
28
+
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
33
+
34
+ ### Features
35
+
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
40
+
41
+ ### Bug Fixes
42
+
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)
46
+
47
+ ### BREAKING CHANGES
48
+
49
+ **None** - This is a fully backward-compatible patch release. All v0.2.2 manifests work without modification.
50
+
51
+ ## [2.0.0](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/compare/v1.0.0...v2.0.0) (2025-11-05)
52
+
53
+
54
+ ### Bug Fixes
55
+
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
+
86
+
87
+ ### chore
88
+
89
+ * clean up OSSA for npm publication ([f6d2c27](https://gitlab.bluefly.io/llm/openapi-ai-agents-standard/commit/f6d2c27b3ac972cf065bfe4d67cf1d9e51f47b51))
90
+
91
+
92
+ ### Features
93
+
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
+
128
+
129
+ ### BREAKING CHANGES
130
+
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
137
+
138
+ Test Results: 68/68 passing, 97.85% coverage
139
+ Status: Production Ready
140
+ * - CLI now requires OSSA 1.0 manifest format
141
+ - Production example updated to OSSA 1.0 spec
142
+
143
+ New Features:
144
+ - audit command: Score agents 0-100 on completeness, best practices, security, performance
145
+ - inspect command: Detailed agent information with --json output
146
+ - schema command: Query schema attributes (roles, protocols, compliance, bridges)
147
+ - Fixed ES module conflicts in CLI
148
+
149
+ Improvements:
150
+ - Production example validates with 80/100 audit score
151
+ - All required fields properly enforced
152
+ - Comprehensive validation output
@@ -0,0 +1,249 @@
1
+ # Contributing to OSSA
2
+
3
+ Thank you for your interest in contributing to **OSSA (Open Standard for Scalable AI Agents)**!
4
+
5
+ ## 📋 Table of Contents
6
+
7
+ - [Code of Conduct](#code-of-conduct)
8
+ - [Getting Started](#getting-started)
9
+ - [Development Workflow](#development-workflow)
10
+ - [Commit Convention](#commit-convention)
11
+ - [Release Process](#release-process)
12
+ - [Pull Request Process](#pull-request-process)
13
+ - [Testing](#testing)
14
+ - [Documentation](#documentation)
15
+
16
+ ## 🤝 Code of Conduct
17
+
18
+ This project adheres to a Code of Conduct. By participating, you are expected to uphold this code.
19
+
20
+ ## 🚀 Getting Started
21
+
22
+ ### Prerequisites
23
+
24
+ - Node.js 20+
25
+ - npm or pnpm
26
+ - Git
27
+
28
+ ### Initial Setup
29
+
30
+ ```bash
31
+ # Clone the repository
32
+ git clone https://github.com/BlueflyCollective/openstandardagents.git
33
+ cd openstandardagents
34
+
35
+ # Install dependencies
36
+ npm install
37
+
38
+ # Build the project
39
+ npm run build
40
+
41
+ # Run tests
42
+ npm test
43
+
44
+ # Validate OSSA examples
45
+ npm run validate
46
+ ```
47
+
48
+ ## 🔄 Development Workflow
49
+
50
+ We use **GitHub Flow**:
51
+
52
+ 1. **Create a feature branch** from `main`:
53
+ ```bash
54
+ git checkout -b feat/your-feature-name
55
+ ```
56
+
57
+ 2. **Make your changes** following our commit convention
58
+
59
+ 3. **Test your changes**:
60
+ ```bash
61
+ npm test
62
+ npm run lint
63
+ npm run build
64
+ ```
65
+
66
+ 4. **Push and create a Pull Request**
67
+
68
+ ### Branch Naming Convention
69
+
70
+ - `feat/*` - New features
71
+ - `fix/*` - Bug fixes
72
+ - `docs/*` - Documentation changes
73
+ - `refactor/*` - Code refactoring
74
+ - `test/*` - Test additions/modifications
75
+ - `chore/*` - Build process or auxiliary tool changes
76
+
77
+ ## 📝 Commit Convention
78
+
79
+ We use **Conventional Commits** specification. This is **CRITICAL** for automated semantic versioning.
80
+
81
+ ### Commit Message Format
82
+
83
+ ```
84
+ <type>(<scope>): <subject>
85
+
86
+ <body>
87
+
88
+ <footer>
89
+ ```
90
+
91
+ ### Types
92
+
93
+ - `feat`: New feature (triggers MINOR version bump)
94
+ - `fix`: Bug fix (triggers PATCH version bump)
95
+ - `docs`: Documentation only changes
96
+ - `refactor`: Code change that neither fixes a bug nor adds a feature
97
+ - `perf`: Performance improvement (triggers PATCH version bump)
98
+ - `test`: Adding missing tests
99
+ - `chore`: Changes to build process or auxiliary tools
100
+ - `ci`: Changes to CI configuration files
101
+
102
+ ### Breaking Changes
103
+
104
+ Add `BREAKING CHANGE:` in the commit footer or `!` after the type:
105
+
106
+ ```bash
107
+ # MAJOR version bump
108
+ git commit -m "feat!: redesign agent manifest schema
109
+
110
+ BREAKING CHANGE: The manifest schema now requires apiVersion field"
111
+ ```
112
+
113
+ ### Examples
114
+
115
+ ```bash
116
+ # Feature (MINOR version bump: 0.2.3 → 0.3.0)
117
+ git commit -m "feat(validation): add CrewAI extension validator"
118
+
119
+ # Bug fix (PATCH version bump: 0.2.3 → 0.2.4)
120
+ git commit -m "fix(schema): correct required fields in LangChain extension"
121
+
122
+ # Breaking change (MAJOR version bump: 0.2.3 → 1.0.0)
123
+ git commit -m "feat!: migrate to apiVersion from ossaVersion
124
+
125
+ BREAKING CHANGE: All manifests must now use apiVersion instead of ossaVersion"
126
+
127
+ # Documentation (no version bump)
128
+ git commit -m "docs: update getting started guide"
129
+ ```
130
+
131
+ ## 🎯 Release Process
132
+
133
+ **Releases are fully automated using semantic-release.**
134
+
135
+ ### How It Works
136
+
137
+ 1. **Merge to `main`** with conventional commits
138
+ 2. **GitHub Actions automatically**:
139
+ - Analyzes commit messages
140
+ - Determines next version (major.minor.patch)
141
+ - Generates CHANGELOG.md
142
+ - Creates GitHub Release
143
+ - Publishes to npm
144
+ - Deploys website to GitHub Pages
145
+ - Comments on related PRs/issues
146
+
147
+ ### Version Determination
148
+
149
+ | Commit Type | Version Bump | Example |
150
+ |-------------|--------------|---------|
151
+ | `fix:` | PATCH | 0.2.3 → 0.2.4 |
152
+ | `feat:` | MINOR | 0.2.3 → 0.3.0 |
153
+ | `feat!:` or `BREAKING CHANGE:` | MAJOR | 0.2.3 → 1.0.0 |
154
+ | `docs:`, `chore:`, `test:` | No release | - |
155
+
156
+ ### Release Branches
157
+
158
+ - **`main`**: Production releases (latest tag on npm)
159
+ - **`develop`**: Beta releases (beta tag on npm)
160
+
161
+ ## 🔍 Pull Request Process
162
+
163
+ 1. **Update tests** for any code changes
164
+ 2. **Update documentation** as needed
165
+ 3. **Ensure CI passes**:
166
+ - All tests pass
167
+ - Linting passes
168
+ - Build succeeds
169
+ - Security audit passes
170
+ 4. **Request review** from maintainers
171
+ 5. **Address feedback**
172
+ 6. **Squash commits** if needed (optional)
173
+ 7. **Merge** using "Squash and Merge" or "Rebase and Merge"
174
+
175
+ ### PR Title Convention
176
+
177
+ PR titles should follow the conventional commit format:
178
+
179
+ ```
180
+ feat: add LangGraph extension support
181
+ fix: resolve schema validation edge case
182
+ docs: improve OpenAPI extension examples
183
+ ```
184
+
185
+ ## ✅ Testing
186
+
187
+ ### Running Tests
188
+
189
+ ```bash
190
+ # Run all tests
191
+ npm test
192
+
193
+ # Run tests in watch mode
194
+ npm test -- --watch
195
+
196
+ # Run specific test file
197
+ npm test -- schema.repository.test.ts
198
+
199
+ # Run tests with coverage
200
+ npm test -- --coverage
201
+ ```
202
+
203
+ ### Test Requirements
204
+
205
+ - All new features **must** have tests
206
+ - All bug fixes **must** have regression tests
207
+ - Maintain **>80% code coverage**
208
+
209
+ ## 📚 Documentation
210
+
211
+ ### Code Documentation
212
+
213
+ - Use **JSDoc** for all public APIs
214
+ - Include **examples** in JSDoc comments
215
+ - Document **parameters** and **return types**
216
+
217
+ ## 🔐 Security
218
+
219
+ ### Reporting Security Issues
220
+
221
+ **DO NOT** open public issues for security vulnerabilities.
222
+
223
+ Email: security@bluefly.io
224
+
225
+ ## 📊 Code Style
226
+
227
+ We use:
228
+ - **ESLint** for linting
229
+ - **Prettier** for formatting (auto-format on commit)
230
+ - **TypeScript** for type safety
231
+
232
+ ```bash
233
+ # Lint code
234
+ npm run lint
235
+
236
+ # Fix auto-fixable issues
237
+ npm run lint -- --fix
238
+ ```
239
+
240
+ ## 🎓 Resources
241
+
242
+ - **Conventional Commits**: https://www.conventionalcommits.org/
243
+ - **Semantic Versioning**: https://semver.org/
244
+ - **OSSA Specification**: https://ossa.bluefly.io/docs
245
+ - **GitHub Actions**: https://github.com/BlueflyCollective/openstandardagents/actions
246
+
247
+ ---
248
+
249
+ **Questions?** Open a [Discussion](https://github.com/BlueflyCollective/openstandardagents/discussions).
package/LICENSE ADDED
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Support. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2024-2025 OSSA Standards Team
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.