@bluefly/openstandardagents 0.2.5-RC → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (365) hide show
  1. package/.devfile.yaml +1 -1
  2. package/.env.example +1 -1
  3. package/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.yml +40 -0
  5. package/.github/workflows/dependabot-comment.yml +34 -0
  6. package/.github/workflows/pr-comment.yml +33 -0
  7. package/.husky/pre-commit +5 -0
  8. package/.kiro/config.json +21 -0
  9. package/.kiro/settings/mcp.json +61 -0
  10. package/.kiro/specs/scripts-migration-api-first/design.md +883 -0
  11. package/.kiro/specs/scripts-migration-api-first/requirements.md +165 -0
  12. package/.kiro/specs/scripts-migration-api-first/tasks.md +539 -0
  13. package/.kiro/specs/{website-design-audit → website-brand-identity}/design.md +381 -0
  14. package/.kiro/specs/{website-design-audit → website-brand-identity}/requirements.md +88 -0
  15. package/.kiro/specs/website-brand-identity/tasks.md +981 -0
  16. package/.version.json +2 -2
  17. package/.wiki-config.json +24 -0
  18. package/CHANGELOG.md +34 -18
  19. package/CODEOWNERS +75 -0
  20. package/CONTRIBUTING.md +1 -1
  21. package/README.md +176 -239
  22. package/bin/ossa-dev +42 -0
  23. package/bin/ossa-export +32 -0
  24. package/bin/ossa-generate +60 -0
  25. package/bin/ossa-health +40 -0
  26. package/bin/ossa-init +26 -0
  27. package/dist/index.d.ts +1 -0
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +2 -0
  30. package/dist/index.js.map +1 -1
  31. package/dist/repositories/schema.repository.d.ts +6 -1
  32. package/dist/repositories/schema.repository.d.ts.map +1 -1
  33. package/dist/repositories/schema.repository.js +63 -36
  34. package/dist/repositories/schema.repository.js.map +1 -1
  35. package/dist/services/github-sync/github-client.d.ts +14 -0
  36. package/dist/services/github-sync/github-client.d.ts.map +1 -0
  37. package/dist/services/github-sync/github-client.js +41 -0
  38. package/dist/services/github-sync/github-client.js.map +1 -0
  39. package/dist/services/github-sync/gitlab-client.d.ts +17 -0
  40. package/dist/services/github-sync/gitlab-client.d.ts.map +1 -0
  41. package/dist/services/github-sync/gitlab-client.js +42 -0
  42. package/dist/services/github-sync/gitlab-client.js.map +1 -0
  43. package/dist/services/github-sync/schemas.d.ts +46 -0
  44. package/dist/services/github-sync/schemas.d.ts.map +1 -0
  45. package/dist/services/github-sync/schemas.js +36 -0
  46. package/dist/services/github-sync/schemas.js.map +1 -0
  47. package/dist/services/github-sync/sync.service.d.ts +27 -0
  48. package/dist/services/github-sync/sync.service.d.ts.map +1 -0
  49. package/dist/services/github-sync/sync.service.js +99 -0
  50. package/dist/services/github-sync/sync.service.js.map +1 -0
  51. package/dist/services/migration.service.d.ts +4 -3
  52. package/dist/services/migration.service.d.ts.map +1 -1
  53. package/dist/services/migration.service.js +11 -10
  54. package/dist/services/migration.service.js.map +1 -1
  55. package/dist/services/release-automation/release.service.js +1 -1
  56. package/dist/services/release-automation/release.service.js.map +1 -1
  57. package/dist/services/release-automation/schemas/release.schema.js +1 -1
  58. package/dist/services/runtime/claude/capability-mapper.d.ts +84 -0
  59. package/dist/services/runtime/claude/capability-mapper.d.ts.map +1 -0
  60. package/dist/services/runtime/claude/capability-mapper.js +245 -0
  61. package/dist/services/runtime/claude/capability-mapper.js.map +1 -0
  62. package/dist/services/runtime/claude/claude-adapter.d.ts +80 -0
  63. package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -0
  64. package/dist/services/runtime/claude/claude-adapter.js +287 -0
  65. package/dist/services/runtime/claude/claude-adapter.js.map +1 -0
  66. package/dist/services/runtime/claude/manifest-parser.d.ts +77 -0
  67. package/dist/services/runtime/claude/manifest-parser.d.ts.map +1 -0
  68. package/dist/services/runtime/claude/manifest-parser.js +169 -0
  69. package/dist/services/runtime/claude/manifest-parser.js.map +1 -0
  70. package/dist/services/runtime/claude/types.d.ts +115 -0
  71. package/dist/services/runtime/claude/types.d.ts.map +1 -0
  72. package/dist/services/runtime/claude/types.js +6 -0
  73. package/dist/services/runtime/claude/types.js.map +1 -0
  74. package/dist/services/validation.service.d.ts.map +1 -1
  75. package/dist/services/validation.service.js +12 -1
  76. package/dist/services/validation.service.js.map +1 -1
  77. package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  78. package/dist/spec/v0.2.6/CHANGELOG.md +401 -0
  79. package/dist/spec/v0.2.6/README.md +72 -0
  80. package/dist/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  81. package/dist/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  82. package/dist/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
  83. package/dist/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  84. package/dist/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  85. package/dist/spec/v0.2.6-dev/README.md +75 -0
  86. package/dist/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  87. package/dist/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  88. package/dist/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  89. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  90. package/dist/spec/v0.2.7/core/agentgraph.md +324 -0
  91. package/dist/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  92. package/dist/spec/v0.2.8/CHANGELOG.md +401 -0
  93. package/dist/spec/v0.2.8/README.md +72 -0
  94. package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  95. package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  96. package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  97. package/dist/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
  98. package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  99. package/dist/types/index.d.ts +3 -2
  100. package/dist/types/index.d.ts.map +1 -1
  101. package/dist/utils/index.d.ts +6 -0
  102. package/dist/utils/index.d.ts.map +1 -0
  103. package/dist/utils/index.js +6 -0
  104. package/dist/utils/index.js.map +1 -0
  105. package/dist/utils/version.d.ts +68 -0
  106. package/dist/utils/version.d.ts.map +1 -0
  107. package/dist/utils/version.js +156 -0
  108. package/dist/utils/version.js.map +1 -0
  109. package/docs/brand-guide/01-brand-overview.md +37 -0
  110. package/docs/brand-guide/02-logo-usage.md +43 -0
  111. package/docs/brand-guide/03-color-palette.md +70 -0
  112. package/docs/brand-guide/04-typography.md +82 -0
  113. package/docs/brand-guide/05-voice-and-tone.md +108 -0
  114. package/docs/brand-guide/06-visual-elements.md +137 -0
  115. package/docs/brand-guide/07-application-examples.md +153 -0
  116. package/docs/brand-guide/OssaLogo/OssA_Logo.svg +21 -0
  117. package/docs/brand-guide/OssaLogo/brand.af +0 -0
  118. package/docs/brand-guide/README.md +107 -0
  119. package/docs/comparison.md +315 -0
  120. package/docs/operations/automation-roadmap.md +245 -0
  121. package/docs/operations/github-sync-strategy.md +357 -0
  122. package/eslint-report.json +1 -0
  123. package/examples/adk-integration/code-review-workflow.yml +1 -1
  124. package/examples/adk-integration/customer-support.yml +1 -1
  125. package/examples/adk-integration/data-pipeline.yml +1 -1
  126. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  127. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  128. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  129. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  130. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  131. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  132. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  133. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  134. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  135. package/examples/anthropic/claude-assistant.ossa.json +5 -4
  136. package/examples/autogen/multi-agent.ossa.json +6 -4
  137. package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
  138. package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
  139. package/examples/common_npm/agent-router.ossa.yaml +1 -0
  140. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
  141. package/examples/crewai/research-team.ossa.json +14 -5
  142. package/examples/cursor/code-review-agent.ossa.json +21 -6
  143. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
  144. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
  145. package/examples/extensions/drupal-v1.yml +1 -1
  146. package/examples/extensions/kagent-v1.yml +1 -1
  147. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  148. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  149. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  150. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  151. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  152. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -0
  153. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
  154. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  155. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  156. package/examples/langchain/chain-agent.ossa.json +21 -5
  157. package/examples/langflow/workflow-agent.ossa.json +2 -3
  158. package/examples/langgraph/state-machine-agent.ossa.json +2 -3
  159. package/examples/llamaindex/rag-agent.ossa.json +2 -3
  160. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  161. package/examples/multi-agent/README.md +74 -0
  162. package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
  163. package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
  164. package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
  165. package/examples/openai/basic-agent.ossa.yaml +1 -1
  166. package/examples/openai/multi-tool-agent.ossa.json +33 -10
  167. package/examples/openai/swarm-agent.ossa.json +18 -5
  168. package/examples/production/document-analyzer-openai.yml +1 -1
  169. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  170. package/examples/spec-examples/audit-agent.yml +1 -1
  171. package/examples/spec-examples/chat-agent.yml +1 -1
  172. package/examples/spec-examples/compliance-agent.yml +1 -1
  173. package/examples/spec-examples/monitoring-agent.yml +1 -1
  174. package/examples/spec-examples/workflow-agent.yml +1 -1
  175. package/examples/templates/ossa-compliance.yaml +1 -1
  176. package/examples/vercel/edge-agent.ossa.json +5 -4
  177. package/gl-code-quality-report.json +62 -0
  178. package/llms-ctx-full.txt +39 -0
  179. package/llms-ctx.txt +39 -0
  180. package/llms.txt +47 -0
  181. package/openapi/github-sync.yaml +115 -0
  182. package/package.json +26 -4
  183. package/scripts/README.md +103 -0
  184. package/scripts/auto-rebase-mrs.ts +106 -0
  185. package/scripts/batch-dependabot.sh +57 -0
  186. package/scripts/configure-gitlab-branch-protection.ts +95 -0
  187. package/scripts/create-issue-helper.ts +238 -0
  188. package/scripts/create-milestone-issue.ts +73 -0
  189. package/scripts/eslint-to-codequality.cjs +34 -0
  190. package/scripts/fix-schema-formats.js +82 -0
  191. package/scripts/generate-agents-catalog.ts +77 -0
  192. package/scripts/generate-api-docs.ts +218 -0
  193. package/scripts/generate-cli-docs.ts +410 -0
  194. package/scripts/generate-config-docs.ts +109 -0
  195. package/scripts/generate-errors-docs.ts +76 -0
  196. package/scripts/generate-examples-docs.ts +99 -0
  197. package/scripts/generate-llms-ctx.sh +17 -0
  198. package/scripts/generate-schema-docs.ts +317 -0
  199. package/scripts/generate-types-docs.ts +48 -0
  200. package/scripts/lowercase-docs.ts +43 -0
  201. package/scripts/manage-milestone-mrs.ts +279 -0
  202. package/scripts/rebase-all-mrs.sh +75 -0
  203. package/scripts/sync-github-pr.sh +48 -0
  204. package/scripts/sync-version.js +32 -0
  205. package/scripts/sync-wiki.sh +50 -0
  206. package/scripts/validate-all.js +127 -0
  207. package/scripts/validate-schema.ts +2 -1
  208. package/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  209. package/spec/v0.2.6/CHANGELOG.md +401 -0
  210. package/spec/v0.2.6/README.md +72 -0
  211. package/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  212. package/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  213. package/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
  214. package/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  215. package/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  216. package/spec/v0.2.6-dev/README.md +75 -0
  217. package/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  218. package/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  219. package/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  220. package/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  221. package/spec/v0.2.7/core/agentgraph.md +324 -0
  222. package/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  223. package/spec/v0.2.8/CHANGELOG.md +401 -0
  224. package/spec/v0.2.8/README.md +72 -0
  225. package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  226. package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  227. package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  228. package/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
  229. package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  230. package/test-results/junit.xml +299 -0
  231. package/.kiro/specs/agent-buildkit-templates/design.md +0 -495
  232. package/.kiro/specs/agent-buildkit-templates/requirements.md +0 -165
  233. package/.kiro/specs/kiro-ide-supercharger/README.md +0 -202
  234. package/.kiro/specs/kiro-ide-supercharger/design.md +0 -1005
  235. package/.kiro/specs/kiro-ide-supercharger/requirements.md +0 -141
  236. package/.kiro/specs/kiro-ide-supercharger/tasks.md +0 -507
  237. package/bin/validate-ossa-0.2.5-RC.ts +0 -244
  238. package/docs/issue-19-completion-summary.md +0 -648
  239. package/docs/issue-19-validation.md +0 -351
  240. package/scripts/lib/exec.ts +0 -37
  241. package/scripts/lib/file-ops.ts +0 -58
  242. package/scripts/lib/version.ts +0 -83
  243. package/website/.lighthouserc.ts +0 -24
  244. package/website/.prettierrc +0 -10
  245. package/website/Dockerfile +0 -30
  246. package/website/app/about/page.tsx +0 -295
  247. package/website/app/blog/[slug]/page.tsx +0 -208
  248. package/website/app/blog/page.tsx +0 -249
  249. package/website/app/design-guide/page.tsx +0 -511
  250. package/website/app/docs/[[...slug]]/page.tsx +0 -847
  251. package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
  252. package/website/app/ecosystem/page.tsx +0 -375
  253. package/website/app/examples/page.tsx +0 -133
  254. package/website/app/globals.scss +0 -135
  255. package/website/app/layout.tsx +0 -106
  256. package/website/app/license/page.tsx +0 -183
  257. package/website/app/not-found.tsx +0 -18
  258. package/website/app/page.tsx +0 -474
  259. package/website/app/playground/page.tsx +0 -487
  260. package/website/app/robots.ts +0 -19
  261. package/website/app/rss.xml/route.ts +0 -74
  262. package/website/app/schema/page.tsx +0 -1001
  263. package/website/app/sitemap.ts +0 -56
  264. package/website/app/specification/page.tsx +0 -287
  265. package/website/components/InstallCommand.tsx +0 -96
  266. package/website/components/Logo.tsx +0 -97
  267. package/website/components/StructuredData.tsx +0 -65
  268. package/website/components/docs/DocsSearch.tsx +0 -104
  269. package/website/components/docs/DocsSidebar.tsx +0 -155
  270. package/website/components/docs/MarkdownContent.tsx +0 -401
  271. package/website/components/docs/VersionSelector.tsx +0 -105
  272. package/website/components/examples/ExamplesViewer.tsx +0 -293
  273. package/website/components/layout/Footer.tsx +0 -116
  274. package/website/components/layout/Header.tsx +0 -168
  275. package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
  276. package/website/components/schema/SchemaExplorer.tsx +0 -213
  277. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
  278. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
  279. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
  280. package/website/content/blog/introducing-ossa-framework.md +0 -328
  281. package/website/content/blog/ossa-production-results.md +0 -279
  282. package/website/content/blog/welcome-to-ossa.md +0 -43
  283. package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
  284. package/website/content/docs/00-HOME.md +0 -153
  285. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +0 -107
  286. package/website/content/docs/Examples.md +0 -71
  287. package/website/content/docs/OpenAPI-Extensions.md +0 -934
  288. package/website/content/docs/adapters/openai-adapter.md +0 -693
  289. package/website/content/docs/architecture/execution-flow.md +0 -335
  290. package/website/content/docs/architecture/multi-agent-systems.md +0 -737
  291. package/website/content/docs/architecture/overview.md +0 -121
  292. package/website/content/docs/architecture/stack-integration.md +0 -461
  293. package/website/content/docs/changelog.md +0 -246
  294. package/website/content/docs/contributing.md +0 -599
  295. package/website/content/docs/core-concepts/Project-Structure.md +0 -348
  296. package/website/content/docs/ecosystem/framework-support.md +0 -819
  297. package/website/content/docs/ecosystem/overview.md +0 -366
  298. package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +0 -107
  299. package/website/content/docs/examples/Migration-Guides.md +0 -214
  300. package/website/content/docs/for-audiences/Architects.md +0 -224
  301. package/website/content/docs/for-audiences/Developers.md +0 -220
  302. package/website/content/docs/for-audiences/Enterprises.md +0 -256
  303. package/website/content/docs/for-audiences/Students-Researchers.md +0 -122
  304. package/website/content/docs/getting-started/5-Minute-Overview.md +0 -85
  305. package/website/content/docs/getting-started/First-Agent.md +0 -196
  306. package/website/content/docs/getting-started/Hello-World.md +0 -184
  307. package/website/content/docs/getting-started/Installation.md +0 -155
  308. package/website/content/docs/getting-started/index.md +0 -92
  309. package/website/content/docs/getting-started/running-agents.md +0 -309
  310. package/website/content/docs/getting-started.md +0 -91
  311. package/website/content/docs/integrations/aiflow.md +0 -104
  312. package/website/content/docs/integrations/drupal.md +0 -105
  313. package/website/content/docs/migration-guides/00-INDEX.md +0 -76
  314. package/website/content/docs/migration-guides/README.md +0 -133
  315. package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
  316. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
  317. package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
  318. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
  319. package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
  320. package/website/content/docs/migration-guides/index.md +0 -133
  321. package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
  322. package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
  323. package/website/content/docs/migration-guides/migration-manifest.json +0 -64
  324. package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
  325. package/website/content/docs/openapi-extensions/examples.md +0 -550
  326. package/website/content/docs/openapi-extensions/index.md +0 -551
  327. package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
  328. package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
  329. package/website/content/docs/ossa-compliant-badge.md +0 -251
  330. package/website/content/docs/pre-release/index.md +0 -175
  331. package/website/content/docs/quick-reference.md +0 -17
  332. package/website/content/docs/readme.md +0 -35
  333. package/website/content/docs/schema-reference/agent-spec.md +0 -406
  334. package/website/content/docs/schema-reference/autonomy.md +0 -568
  335. package/website/content/docs/schema-reference/constraints.md +0 -543
  336. package/website/content/docs/schema-reference/index.md +0 -176
  337. package/website/content/docs/schema-reference/llm-config.md +0 -445
  338. package/website/content/docs/schema-reference/observability.md +0 -654
  339. package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
  340. package/website/content/docs/schema-reference/taxonomy.md +0 -509
  341. package/website/content/docs/schema-reference/tools.md +0 -628
  342. package/website/content/docs/templates/blog-post.md +0 -43
  343. package/website/content/docs/use-cases/00-index.md +0 -395
  344. package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
  345. package/website/content/docs/use-cases/customer-support.md +0 -1234
  346. package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
  347. package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
  348. package/website/content/docs/versioning.md +0 -288
  349. package/website/lib/version.ts +0 -35
  350. package/website/lib/versions.json +0 -78
  351. package/website/next.config.ts +0 -18
  352. package/website/nginx.conf +0 -32
  353. package/website/package-lock.json +0 -9679
  354. package/website/package.json +0 -59
  355. package/website/postcss.config.mjs +0 -9
  356. package/website/scripts/fetch-versions.js +0 -166
  357. package/website/scripts/generate-examples-index.js +0 -163
  358. package/website/scripts/merge-docs-to-wiki.ts +0 -207
  359. package/website/scripts/sync-version.js +0 -72
  360. package/website/scripts/sync-wiki.ts +0 -322
  361. package/website/scripts/upload-wiki.ts +0 -199
  362. package/website/styles/_variables.scss +0 -36
  363. package/website/tailwind.config.ts +0 -136
  364. /package/dist/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
  365. /package/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
@@ -1,224 +0,0 @@
1
- ---
2
- title: "Architects"
3
- ---
4
-
5
- # For Architects & Platform Engineers
6
-
7
- Design and govern multi-agent systems using OSSA's standard architecture patterns.
8
-
9
- ## Architecture Overview
10
-
11
- ### OSSA's Role in Agent Architecture
12
-
13
- OSSA provides:
14
- - **Standard Contract**: Framework-agnostic agent definition
15
- - **Portability**: Move agents across infrastructures
16
- - **Governance**: Standard format enables policy enforcement
17
- - **Observability**: Consistent monitoring across agents
18
-
19
- ## Design Patterns
20
-
21
- ### Pattern 1: Single Agent
22
-
23
- Simple, standalone agent:
24
-
25
- ```yaml
26
- apiVersion: ossa/v0.2.x
27
- kind: Agent
28
- metadata:
29
- name: standalone-agent
30
- spec:
31
- role: Agent description
32
- llm: { ... }
33
- tools: [ ... ]
34
- ```
35
-
36
- ### Pattern 2: Agent Orchestration
37
-
38
- Orchestrator coordinates multiple agents:
39
-
40
- ```yaml
41
- # Orchestrator Agent
42
- spec:
43
- role: Coordinate workflow
44
- tools:
45
- - type: http
46
- name: invoke_worker_agent
47
- endpoint: http://worker-agent:8080/api
48
- ```
49
-
50
- See: [Integration Patterns](../Examples/Integration-Patterns)
51
-
52
- ### Pattern 3: Agent Mesh
53
-
54
- Agents communicate directly:
55
-
56
- - Peer-to-peer communication
57
- - Event-driven patterns
58
- - Service mesh integration
59
-
60
- ## Multi-Agent Systems
61
-
62
- ### Architecture Decisions
63
-
64
- 1. **Orchestration vs. Choreography**
65
- - Orchestration: Central coordinator
66
- - Choreography: Distributed coordination
67
-
68
- 2. **Communication Patterns**
69
- - HTTP/gRPC for synchronous
70
- - Message queues for asynchronous
71
- - MCP for tool sharing
72
-
73
- 3. **State Management**
74
- - Stateless agents (recommended)
75
- - Shared state via external store
76
- - Event sourcing patterns
77
-
78
- ## Governance & Compliance
79
-
80
- ### Policy Enforcement
81
-
82
- OSSA enables:
83
-
84
- - **Cost Controls**: Declarative cost limits
85
- - **Security Policies**: Standard security configuration
86
- - **Compliance**: Automated compliance checking
87
- - **Audit Logging**: Standard observability
88
-
89
- ### Example: Compliance Agent
90
-
91
- ```yaml
92
- spec:
93
- role: Compliance checking agent
94
- constraints:
95
- cost:
96
- maxCostPerDay: 50.00
97
- observability:
98
- logging:
99
- level: info
100
- format: json
101
- ```
102
-
103
- ## Infrastructure Planning
104
-
105
- ### Deployment Options
106
-
107
- 1. **Kubernetes**
108
- - Native K8s resources
109
- - Service mesh integration
110
- - Auto-scaling
111
-
112
- 2. **Serverless**
113
- - AWS Lambda
114
- - Google Cloud Functions
115
- - Azure Functions
116
-
117
- 3. **Container Orchestration**
118
- - Docker Compose
119
- - Nomad
120
- - Custom orchestration
121
-
122
- ### Resource Planning
123
-
124
- ```yaml
125
- constraints:
126
- resources:
127
- cpu: "500m"
128
- memory: "1Gi"
129
- performance:
130
- maxConcurrentRequests: 10
131
- ```
132
-
133
- ## Observability Strategy
134
-
135
- ### Distributed Tracing
136
-
137
- ```yaml
138
- observability:
139
- tracing:
140
- enabled: true
141
- exporter: otlp
142
- endpoint: http://jaeger:4318
143
- ```
144
-
145
- ### Metrics Collection
146
-
147
- ```yaml
148
- observability:
149
- metrics:
150
- enabled: true
151
- exporter: prometheus
152
- endpoint: http://prometheus:9090/metrics
153
- ```
154
-
155
- ### Logging Strategy
156
-
157
- ```yaml
158
- observability:
159
- logging:
160
- level: info
161
- format: json
162
- ```
163
-
164
- ## Cost Management
165
-
166
- ### Cost Constraints
167
-
168
- ```yaml
169
- constraints:
170
- cost:
171
- maxTokensPerDay: 100000
172
- maxCostPerDay: 10.00
173
- currency: USD
174
- ```
175
-
176
- ### Cost Optimization Strategies
177
-
178
- 1. **Model Selection**: Use appropriate model for task
179
- 2. **Token Limits**: Set maxTokens per request
180
- 3. **Caching**: Cache responses where possible
181
- 4. **Batching**: Batch requests when possible
182
-
183
- ## Security Architecture
184
-
185
- ### Authentication
186
-
187
- ```yaml
188
- tools:
189
- - type: http
190
- auth:
191
- type: bearer
192
- credentials: API_KEY_SECRET
193
- ```
194
-
195
- ### Network Security
196
-
197
- - Service mesh integration
198
- - mTLS between agents
199
- - Network policies
200
- - API gateways
201
-
202
- ## Scalability Patterns
203
-
204
- ### Horizontal Scaling
205
-
206
- - Stateless agents
207
- - Load balancing
208
- - Auto-scaling based on metrics
209
-
210
- ### Vertical Scaling
211
-
212
- ```yaml
213
- constraints:
214
- resources:
215
- cpu: "2"
216
- memory: "4Gi"
217
- ```
218
-
219
- ## Related Resources
220
-
221
- - [Technical Documentation](../Technical/Specification-Deep-Dive)
222
- - [Integration Patterns](../Examples/Integration-Patterns)
223
- - [Enterprise Guide](../For-Audiences/Enterprises)
224
-
@@ -1,220 +0,0 @@
1
- ---
2
- title: "Developers"
3
- ---
4
-
5
- # For Developers
6
-
7
- Build OSSA-compliant agents using your preferred framework and deploy anywhere.
8
-
9
- ## Quick Start
10
-
11
- ### 1. Install OSSA CLI
12
-
13
- ```bash
14
- npm install -g @bluefly/open-standards-scalable-agents
15
- ```
16
-
17
- ### 2. Generate Your First Agent
18
-
19
- ```bash
20
- ossa generate chat --name "My Agent" --output agent.ossa.yaml
21
- ```
22
-
23
- ### 3. Validate
24
-
25
- ```bash
26
- ossa validate agent.ossa.yaml
27
- ```
28
-
29
- ### 4. Deploy
30
-
31
- Use your preferred deployment method - OSSA doesn't care!
32
-
33
- ## Development Workflow
34
-
35
- ### Build with Your Framework
36
-
37
- OSSA is framework-agnostic. Build agents with:
38
-
39
- - **LangChain** - Python-based agent framework
40
- - **Anthropic SDK** - TypeScript/Python SDK
41
- - **Custom Code** - Your own implementation
42
- - **Any Framework** - OSSA works with all
43
-
44
- ### Validate with OSSA
45
-
46
- Once built, validate against OSSA:
47
-
48
- ```bash
49
- ossa validate my-agent.ossa.yaml
50
- ```
51
-
52
- ### Deploy Anywhere
53
-
54
- Deploy to:
55
- - Kubernetes
56
- - Docker
57
- - Serverless (AWS Lambda, Google Cloud Functions)
58
- - On-premise
59
- - Your infrastructure
60
-
61
- ## Migration from Existing Frameworks
62
-
63
- ### LangChain → OSSA
64
-
65
- See: [Migration Guide: LangChain](../Examples/Migration-Guides/from-langchain-to-ossa)
66
-
67
- ### Anthropic SDK → OSSA
68
-
69
- Coming soon: Anthropic SDK migration guide
70
-
71
- ### Custom Framework → OSSA
72
-
73
- 1. Map your agent structure to OSSA format
74
- 2. Define tools/capabilities
75
- 3. Configure LLM settings
76
- 4. Add observability
77
- 5. Validate
78
-
79
- ## API Reference
80
-
81
- ### CLI Commands
82
-
83
- ```bash
84
- # Validate agent
85
- ossa validate <path> [--schema <version>] [--verbose]
86
-
87
- # Generate agent
88
- ossa generate <type> [--name <name>] [--output <file>]
89
-
90
- # Migrate agent
91
- ossa migrate <source> [--target-version <version>]
92
- ```
93
-
94
- ### Programmatic API
95
-
96
- ```typescript
97
- import { ValidationService } from '@bluefly/open-standards-scalable-agents/validation';
98
- import { GenerationService } from '@bluefly/open-standards-scalable-agents/generation';
99
-
100
- // Validate
101
- const validationService = new ValidationService();
102
- const result = await validationService.validate(manifest, '0.2.2');
103
-
104
- // Generate
105
- const generationService = new GenerationService();
106
- const manifest = await generationService.generate(template);
107
- ```
108
-
109
- ## Best Practices
110
-
111
- ### 1. Use Descriptive Names
112
-
113
- ```yaml
114
- metadata:
115
- name: customer-support-agent # Good
116
- # name: agent1 # Bad
117
- ```
118
-
119
- ### 2. Add Comprehensive Descriptions
120
-
121
- ```yaml
122
- metadata:
123
- description: |
124
- Customer support agent that handles:
125
- - Product inquiries
126
- - Order status
127
- - Returns and refunds
128
- ```
129
-
130
- ### 3. Configure Constraints
131
-
132
- ```yaml
133
- constraints:
134
- cost:
135
- maxTokensPerDay: 100000
136
- maxCostPerDay: 10.00
137
- performance:
138
- maxLatencySeconds: 5.0
139
- ```
140
-
141
- ### 4. Enable Observability
142
-
143
- ```yaml
144
- observability:
145
- tracing:
146
- enabled: true
147
- metrics:
148
- enabled: true
149
- logging:
150
- level: info
151
- ```
152
-
153
- ## Common Patterns
154
-
155
- ### Pattern 1: Simple Chat Agent
156
-
157
- ```yaml
158
- spec:
159
- role: You are a helpful assistant
160
- llm:
161
- provider: openai
162
- model: gpt-3.5-turbo
163
- tools: []
164
- ```
165
-
166
- ### Pattern 2: Agent with Tools
167
-
168
- ```yaml
169
- spec:
170
- role: You are a research assistant
171
- llm:
172
- provider: openai
173
- model: gpt-4
174
- tools:
175
- - type: http
176
- name: web_search
177
- endpoint: https://api.search.com/search
178
- ```
179
-
180
- ### Pattern 3: Multi-Agent Orchestration
181
-
182
- See: [Integration Patterns](../Examples/Integration-Patterns)
183
-
184
- ## Testing
185
-
186
- ### Validate Before Deployment
187
-
188
- ```bash
189
- ossa validate agent.ossa.yaml --verbose
190
- ```
191
-
192
- ### Test with Examples
193
-
194
- ```bash
195
- # Validate all examples
196
- npm run validate:examples
197
- ```
198
-
199
- ## Troubleshooting
200
-
201
- ### Validation Errors
202
-
203
- ```bash
204
- # Get detailed error messages
205
- ossa validate agent.ossa.yaml --verbose
206
- ```
207
-
208
- ### Common Issues
209
-
210
- 1. **Missing required fields**: Check schema reference
211
- 2. **Invalid tool types**: Use supported types (http, function, mcp, etc.)
212
- 3. **LLM provider not supported**: Check provider enum values
213
-
214
- ## Resources
215
-
216
- - [Getting Started](../Getting-Started/Hello-World)
217
- - [API Reference](../Technical/CLI-Reference)
218
- - [Migration Guides](../Examples/Migration-Guides)
219
- - [Examples](../Examples/Getting-Started-Examples)
220
-
@@ -1,256 +0,0 @@
1
- ---
2
- title: "Enterprises"
3
- ---
4
-
5
- # For Enterprises
6
-
7
- Adopt OSSA for vendor independence, compliance, and enterprise-scale agent management.
8
-
9
- ## Enterprise Benefits
10
-
11
- ### Vendor Independence
12
-
13
- ✅ **No Framework Lock-in**: Build with any framework, deploy anywhere
14
- ✅ **Portable Agents**: Move agents between teams, clouds, organizations
15
- ✅ **Standard Contracts**: Consistent agent definitions across teams
16
- ✅ **Multi-Cloud Ready**: Deploy to AWS, GCP, Azure, on-premise
17
-
18
- ### Compliance & Governance
19
-
20
- ✅ **Standard Format**: Enables automated compliance checking
21
- ✅ **Audit Logging**: Standard observability across all agents
22
- ✅ **Cost Controls**: Declarative cost limits prevent overspending
23
- ✅ **Security Policies**: Standard security configuration
24
-
25
- ### Scalability
26
-
27
- ✅ **Enterprise Patterns**: Multi-agent orchestration, service mesh
28
- ✅ **Observability**: Distributed tracing, metrics, logging
29
- ✅ **Resource Management**: Declarative resource constraints
30
- ✅ **Performance Controls**: Latency and throughput limits
31
-
32
- ## Enterprise Adoption Guide
33
-
34
- ### Phase 1: Evaluation
35
-
36
- 1. **Understand OSSA**
37
- - Review specification
38
- - Study examples
39
- - Evaluate fit
40
-
41
- 2. **Pilot Project**
42
- - Select one team/project
43
- - Migrate existing agent
44
- - Measure results
45
-
46
- 3. **Assess Impact**
47
- - Portability gains
48
- - Cost savings
49
- - Compliance improvements
50
-
51
- ### Phase 2: Rollout
52
-
53
- 1. **Training**
54
- - Developer training
55
- - Architecture guidelines
56
- - Best practices
57
-
58
- 2. **Tooling**
59
- - CI/CD integration
60
- - Validation pipelines
61
- - Deployment automation
62
-
63
- 3. **Governance**
64
- - Policy enforcement
65
- - Cost management
66
- - Security controls
67
-
68
- ### Phase 3: Scale
69
-
70
- 1. **Organization-Wide**
71
- - All teams adopt OSSA
72
- - Central registry
73
- - Shared patterns
74
-
75
- 2. **Optimization**
76
- - Cost optimization
77
- - Performance tuning
78
- - Pattern refinement
79
-
80
- ## Compliance & Security
81
-
82
- ### Compliance Features
83
-
84
- OSSA enables:
85
-
86
- - **FedRAMP**: Compliance scanning agents
87
- - **SOC 2**: Audit logging and controls
88
- - **GDPR**: Data residency and encryption
89
- - **HIPAA**: Healthcare compliance patterns
90
-
91
- ### Example: Compliance Agent
92
-
93
- ```yaml
94
- apiVersion: ossa/v0.2.x
95
- kind: Agent
96
-
97
- metadata:
98
- name: compliance-scanner
99
- labels:
100
- compliance: fedramp
101
- classification: internal
102
-
103
- spec:
104
- role: Scan infrastructure for compliance
105
- constraints:
106
- cost:
107
- maxCostPerDay: 50.00
108
- observability:
109
- logging:
110
- level: info
111
- format: json
112
- audit: true
113
- ```
114
-
115
- ## Cost Management
116
-
117
- ### Cost Controls
118
-
119
- ```yaml
120
- constraints:
121
- cost:
122
- maxTokensPerDay: 1000000
123
- maxCostPerDay: 100.00
124
- currency: USD
125
- ```
126
-
127
- ### Cost Optimization
128
-
129
- 1. **Model Selection**: Use appropriate models for tasks
130
- 2. **Token Limits**: Set realistic maxTokens
131
- 3. **Caching**: Cache responses
132
- 4. **Monitoring**: Track costs per agent
133
-
134
- ## Security Architecture
135
-
136
- ### Authentication & Authorization
137
-
138
- ```yaml
139
- tools:
140
- - type: http
141
- auth:
142
- type: mtls
143
- credentials: CLIENT_CERT_SECRET
144
- ```
145
-
146
- ### Network Security
147
-
148
- - Service mesh integration
149
- - mTLS between agents
150
- - Network policies
151
- - API gateways
152
-
153
- ### Secrets Management
154
-
155
- - Use secret references (not values)
156
- - Integrate with secret managers
157
- - Rotate credentials regularly
158
-
159
- ## Governance
160
-
161
- ### Agent Lifecycle
162
-
163
- 1. **Development**: Validate with OSSA CLI
164
- 2. **Testing**: Automated validation in CI/CD
165
- 3. **Deployment**: Standardized deployment process
166
- 4. **Monitoring**: Observability and cost tracking
167
- 5. **Retirement**: Deprecation and cleanup
168
-
169
- ### Policy Enforcement
170
-
171
- - **Cost Limits**: Enforce via constraints
172
- - **Security**: Standard security config
173
- - **Compliance**: Automated compliance checking
174
- - **Quality**: Validation requirements
175
-
176
- ## Multi-Tenant Support
177
-
178
- ### Tenant Isolation
179
-
180
- - Separate agent namespaces
181
- - Resource quotas per tenant
182
- - Cost tracking per tenant
183
- - Access controls
184
-
185
- ### Example: Multi-Tenant Agent
186
-
187
- ```yaml
188
- metadata:
189
- name: tenant-{tenant-id}-agent
190
- labels:
191
- tenant: {tenant-id}
192
- spec:
193
- constraints:
194
- cost:
195
- maxCostPerDay: 10.00 # Per tenant
196
- ```
197
-
198
- ## Enterprise Patterns
199
-
200
- ### Pattern 1: Centralized Orchestration
201
-
202
- - Central orchestrator agent
203
- - Worker agents per team
204
- - Shared infrastructure
205
- - Centralized monitoring
206
-
207
- ### Pattern 2: Federated Agents
208
-
209
- - Team-owned agents
210
- - Shared registry
211
- - Cross-team communication
212
- - Distributed governance
213
-
214
- ### Pattern 3: Hybrid Approach
215
-
216
- - Mix of centralized and federated
217
- - Core services centralized
218
- - Team services federated
219
- - Shared patterns and tools
220
-
221
- ## Migration Strategy
222
-
223
- ### From Framework-Specific Agents
224
-
225
- 1. **Inventory**: List all existing agents
226
- 2. **Prioritize**: Start with high-value agents
227
- 3. **Migrate**: Convert to OSSA format
228
- 4. **Validate**: Ensure correctness
229
- 5. **Deploy**: Standard deployment process
230
-
231
- ### Migration Tools
232
-
233
- - OSSA CLI migration command
234
- - Custom migration scripts
235
- - Framework-specific guides
236
-
237
- ## Support & Resources
238
-
239
- ### Enterprise Support
240
-
241
- - [GitLab Issues](https://github.com/blueflyio/openstandardagents/issues)
242
- - [Documentation](../Technical/Specification-Deep-Dive)
243
- - [Examples](../Examples/Enterprise-Examples)
244
-
245
- ### Training
246
-
247
- - Architecture workshops
248
- - Developer training
249
- - Best practices sessions
250
-
251
- ## Related Resources
252
-
253
- - [Architecture Guide](../For-Audiences/Architects)
254
- - [Technical Documentation](../Technical/Specification-Deep-Dive)
255
- - [Enterprise Examples](../Examples/Enterprise-Examples)
256
-