@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,175 +0,0 @@
1
- # Pre-Release Specifications
2
-
3
- > **Warning**: These specifications are in development and may change before stable release. Do not use in production.
4
-
5
- ## Development Versions
6
-
7
- OSSA follows semantic versioning. Development specs are marked with `-dev` suffix to indicate they are not yet stable.
8
-
9
- ### v0.2.4-dev - Transport & Security
10
-
11
- **Status**: Development
12
- **Target Release**: February 2025
13
- **Milestone**: [v0.2.4 - Transport & Security](https://github.com/blueflyio/openstandardagents/milestones/12)
14
-
15
- #### New Features
16
-
17
- 1. **Transport Metadata for Capabilities**
18
- - Protocol support: `http`, `grpc`, `a2a`, `mcp`, `websocket`, `custom`
19
- - Streaming modes: `none`, `request`, `response`, `bidirectional`
20
- - Binding paths for endpoints
21
-
22
- 2. **State/Memory Specification**
23
- - Mode: `stateless`, `session`, `long_running`
24
- - Storage types: `memory`, `vector-db`, `kv`, `rdbms`, `custom`
25
- - Retention configuration
26
-
27
- 3. **Security Scopes and Compliance Tags**
28
- - OAuth2-style scopes per capability
29
- - Compliance tags: `pii`, `hipaa`, `gdpr`, `fedramp`, `soc2`
30
-
31
- 4. **Capability Versioning**
32
- - Version field (major.minor)
33
- - Deprecation flags and messages
34
-
35
- 5. **Google ADK Extension**
36
- - A2A protocol support
37
- - Agent hierarchies
38
- - MCP integration
39
- - Streaming modalities
40
-
41
- #### Framework Alignment
42
-
43
- - Google Agent Development Kit (ADK)
44
- - OpenAI Agents SDK
45
- - Microsoft Agent Framework
46
-
47
- ---
48
-
49
- ### v0.2.5-RC-dev - Multi-Agent Composition
50
-
51
- **Status**: Development
52
- **Target Release**: March 2025
53
- **Milestone**: [v0.2.5-RC - Multi-Agent Composition](https://github.com/blueflyio/openstandardagents/milestones/13)
54
-
55
- #### New Features
56
-
57
- 1. **AgentGraph Resource Type**
58
- ```yaml
59
- apiVersion: ossa/v0.2.5-RC
60
- kind: AgentGraph # New!
61
- metadata:
62
- name: customer-support-cluster
63
- spec:
64
- agents:
65
- - ref: triage-agent
66
- role: entry
67
- - ref: resolver-agent
68
- role: worker
69
- edges:
70
- - from: triage-agent
71
- to: resolver-agent
72
- condition: standard-issue
73
- process: sequential
74
- ```
75
-
76
- 2. **Process Patterns**
77
- - `sequential`: Agents execute one after another
78
- - `parallel`: Agents execute simultaneously
79
- - `hierarchical`: Manager delegates to workers
80
- - `conditional`: Branching based on conditions
81
- - `loop`: Iterative execution
82
-
83
- 3. **Edge Routing**
84
- - From/to agent references
85
- - Condition expressions
86
- - Priority ordering
87
-
88
- 4. **Shared State**
89
- - Schema definition
90
- - Persistence options
91
- - Checkpointing and recovery
92
-
93
- #### Framework Alignment
94
-
95
- - CrewAI (crews, manager agents)
96
- - MetaGPT (SOPs, role pipelines)
97
- - Microsoft AF (workflows)
98
- - Google ADK (agent graphs)
99
- - LangGraph (state machines)
100
-
101
- ---
102
-
103
- ## Using Development Specs
104
-
105
- ### Installation
106
-
107
- Development specs are available in the repository:
108
-
109
- ```bash
110
- # Clone the repository
111
- git clone https://github.com/blueflyio/openstandardagents.git
112
- cd openstandardagents
113
-
114
- # View development specs
115
- ls spec/v0.2.5-RC/
116
- ls spec/v0.2.5-RC/
117
- ```
118
-
119
- ### Validation
120
-
121
- ```bash
122
- # Install CLI (if not already installed)
123
- npm install -g @bluefly/openstandardagents
124
-
125
- # Validate against development schema
126
- ossa validate your-agent.yaml --version 0.2.4-dev
127
- ```
128
-
129
- ### Examples
130
-
131
- Development examples are in the spec directories:
132
-
133
- - `spec/v0.2.5-RC/examples/customer-support-graph.ossa.yaml` - Sequential process
134
- - `spec/v0.2.5-RC/examples/research-team.ossa.yaml` - Hierarchical process
135
- - `spec/v0.2.5-RC/examples/parallel-processors.ossa.yaml` - Parallel process
136
-
137
- ---
138
-
139
- ## Providing Feedback
140
-
141
- We welcome feedback on development specifications:
142
-
143
- 1. **GitHub Issues**: [Create an issue](https://github.com/blueflyio/openstandardagents/issues/new)
144
- 2. **Discussions**: Comment on milestone issues
145
- 3. **Pull Requests**: Submit improvements
146
-
147
- ### v0.2.4 Issues
148
- - [#220 - Transport metadata](https://github.com/blueflyio/openstandardagents/issues/220)
149
- - [#221 - State/memory block](https://github.com/blueflyio/openstandardagents/issues/221)
150
- - [#222 - Security scopes](https://github.com/blueflyio/openstandardagents/issues/222)
151
- - [#223 - Capability versioning](https://github.com/blueflyio/openstandardagents/issues/223)
152
- - [#224 - Google ADK extension](https://github.com/blueflyio/openstandardagents/issues/224)
153
- - [#225 - MS AF adapter](https://github.com/blueflyio/openstandardagents/issues/225)
154
-
155
- ### v0.2.5-RC Issues
156
- - [#211-212 - AgentGraph resource](https://github.com/blueflyio/openstandardagents/issues/211)
157
- - [#213 - Process patterns](https://github.com/blueflyio/openstandardagents/issues/213)
158
- - [#214 - Edge routing](https://github.com/blueflyio/openstandardagents/issues/214)
159
- - [#215 - Shared state](https://github.com/blueflyio/openstandardagents/issues/215)
160
- - [#216-218 - Adapter examples](https://github.com/blueflyio/openstandardagents/issues/216)
161
- - [#219 - Validation rules](https://github.com/blueflyio/openstandardagents/issues/219)
162
-
163
- ---
164
-
165
- ## Roadmap
166
-
167
- | Version | Focus | Status | Target |
168
- |---------|-------|--------|--------|
169
- | v0.2.3 | Documentation & Examples | **Stable** | Released |
170
- | v0.2.4 | Transport & Security | Development | Feb 2025 |
171
- | v0.2.5-RC | Multi-Agent Composition | Development | Mar 2025 |
172
- | v0.3.0 | Gamma Release | Planned | Apr 2025 |
173
- | v1.0.0 | Genesis Release | Planned | TBD |
174
-
175
- See [milestones](https://github.com/blueflyio/openstandardagents/milestones) for full details.
@@ -1,17 +0,0 @@
1
- ---
2
- title: "Quick Reference"
3
- ---
4
-
5
- # Quick Reference
6
-
7
- - Root: `x-ossa-metadata`, `x-ossa`, `x-agent`
8
- - Operation: `x-ossa-capability`, `x-ossa-autonomy`, `x-ossa-constraints`, `x-ossa-tools`, `x-ossa-llm`
9
- - Parameters: `x-ossa-agent-id`, `x-ossa-version`
10
- - Schemas: `x-ossa-capability-schema`
11
-
12
- **Validation**:
13
- ```bash
14
- ossa validate examples/openapi-extensions/worker-agent-api.openapi.yml --openapi --verbose
15
- ```
16
-
17
- **Links**: [OpenAPI-Extensions](./OpenAPI-Extensions) · [Examples](./Examples)
@@ -1,35 +0,0 @@
1
- ---
2
- title: "README"
3
- ---
4
-
5
- # OSSA Documentation
6
-
7
- ## Core Documentation
8
-
9
- - **[Getting Started](Getting-Started)** - Quick start guide for OSSA
10
- - **[OpenAPI Extensions](OpenAPI-Extensions)** - How OSSA extends OpenAPI/Swagger for AI agents
11
- - **[Migration Guide](migration/)** - Upgrading from v0.1.x to v1.0
12
- - **[Specification](Specification/)** - OSSA 1.0 JSON Schema
13
- - **[Examples](Examples/)** - Reference implementations
14
-
15
- ## Additional Resources
16
-
17
- For comprehensive documentation, guides, and architecture details, visit:
18
-
19
- **[GitHub Repository](https://github.com/blueflyio/openstandardagents)**
20
-
21
- The repository contains:
22
- - Architecture guides
23
- - Deployment strategies
24
- - Integration tutorials
25
- - Best practices
26
- - Community guidelines
27
- - Contributing guidelines
28
-
29
- ## Quick Links
30
-
31
- - **Specification**: [spec/ossa-1.0.schema.json](Specification/ossa-1.0.schema.json)
32
- - **npm Package**: [@bluefly/openstandardagents](https://www.npmjs.com/package/@bluefly/openstandardagents)
33
- - **GitHub Repository**: [blueflyio/openstandardagents](https://github.com/blueflyio/openstandardagents)
34
- - **Issues**: [GitHub Issues](https://github.com/blueflyio/openstandardagents/issues)
35
-
@@ -1,406 +0,0 @@
1
- ---
2
- title: "Agent Spec"
3
- description: "Agent specification object defining behavior and capabilities"
4
- weight: 2
5
- ---
6
-
7
- # Agent Spec Object
8
-
9
- The `spec` object defines the agent's behavior, capabilities, configuration, and operational parameters.
10
-
11
- ## Field Reference
12
-
13
- | Field Name | Type | Required | Description |
14
- |------------|------|----------|-------------|
15
- | `taxonomy` | [Taxonomy](./taxonomy.md) | No | Agent classification by domain, subdomain, and capability |
16
- | `role` | string | **Yes** | Agent role/system prompt describing behavior and capabilities. Minimum 1 character |
17
- | `llm` | [LLMConfig](./llm-config.md) | No | Language model provider and configuration parameters |
18
- | `tools` | array[[Tool](./tools.md)] | No | Available tools and capabilities for the agent |
19
- | `autonomy` | [Autonomy](./autonomy.md) | No | Autonomy level and action control settings |
20
- | `constraints` | [Constraints](./constraints.md) | No | Cost, performance, and resource constraints |
21
- | `observability` | [Observability](./observability.md) | No | Tracing, metrics, and logging configuration |
22
-
23
- ## Basic Example
24
-
25
- ```yaml
26
- spec:
27
- role: |
28
- You are a helpful customer support agent.
29
- Answer customer questions professionally and accurately.
30
- ```
31
-
32
- ## Complete Example
33
-
34
- ```yaml
35
- spec:
36
- taxonomy:
37
- domain: customer-service
38
- subdomain: technical-support
39
- capability: troubleshooting
40
-
41
- role: |
42
- You are a technical support specialist for SaaS products.
43
-
44
- Your responsibilities:
45
- - Diagnose technical issues from customer descriptions
46
- - Provide step-by-step troubleshooting guidance
47
- - Escalate complex issues to engineering when needed
48
- - Document solutions in the knowledge base
49
-
50
- Communication style:
51
- - Professional and empathetic
52
- - Clear and concise technical explanations
53
- - Patient with non-technical users
54
- - Proactive in suggesting preventive measures
55
-
56
- llm:
57
- provider: anthropic
58
- model: claude-3-5-sonnet-20241022
59
- temperature: 0.3
60
- maxTokens: 4096
61
-
62
- tools:
63
- - type: mcp
64
- server: crm
65
- capabilities:
66
- - search_tickets
67
- - create_ticket
68
- - update_ticket
69
- - type: mcp
70
- server: knowledge-base
71
- capabilities:
72
- - search_articles
73
- - create_article
74
- - type: http
75
- endpoint: https://api.example.com/diagnostics
76
- auth:
77
- type: bearer
78
- credentials: SECRET_REF_DIAGNOSTICS_API
79
- capabilities:
80
- - run_health_check
81
- - get_system_status
82
-
83
- autonomy:
84
- level: supervised
85
- approval_required: false
86
- allowed_actions:
87
- - search_knowledge_base
88
- - create_ticket
89
- - update_ticket
90
- - run_diagnostics
91
- blocked_actions:
92
- - delete_data
93
- - access_production_db
94
- - modify_user_accounts
95
-
96
- constraints:
97
- cost:
98
- maxTokensPerDay: 1000000
99
- maxCostPerDay: 50.0
100
- currency: USD
101
- performance:
102
- maxLatencySeconds: 10
103
- maxConcurrentRequests: 100
104
- timeoutSeconds: 60
105
- resources:
106
- cpu: "1"
107
- memory: 2Gi
108
-
109
- observability:
110
- tracing:
111
- enabled: true
112
- exporter: otlp
113
- endpoint: https://traces.example.com
114
- metrics:
115
- enabled: true
116
- exporter: prometheus
117
- logging:
118
- level: info
119
- format: json
120
- ```
121
-
122
- ## Role Field Guidelines
123
-
124
- The `role` field is the most important part of the agent specification. It defines the agent's behavior through a system prompt.
125
-
126
- ### Best Practices
127
-
128
- **Be specific about responsibilities:**
129
- ```yaml
130
- role: |
131
- You are a code reviewer specializing in Python security.
132
-
133
- Review code for:
134
- - SQL injection vulnerabilities
135
- - XSS attack vectors
136
- - Authentication/authorization issues
137
- - Secrets in code
138
- - Dependency vulnerabilities
139
- ```
140
-
141
- **Define communication style:**
142
- ```yaml
143
- role: |
144
- You are a documentation writer.
145
-
146
- Writing style:
147
- - Clear and concise
148
- - Active voice
149
- - Examples for every feature
150
- - Beginner-friendly explanations
151
- - Professional tone
152
- ```
153
-
154
- **Set boundaries:**
155
- ```yaml
156
- role: |
157
- You are a data analyst assistant.
158
-
159
- You CAN:
160
- - Query databases for analysis
161
- - Generate visualizations
162
- - Explain statistical concepts
163
- - Recommend analytical approaches
164
-
165
- You CANNOT:
166
- - Modify production data
167
- - Grant database access
168
- - Make business decisions
169
- - Share sensitive customer data
170
- ```
171
-
172
- **Include domain knowledge:**
173
- ```yaml
174
- role: |
175
- You are a Kubernetes troubleshooting expert.
176
-
177
- Expertise areas:
178
- - Pod scheduling and resource constraints
179
- - Network policies and service mesh
180
- - Volume and storage issues
181
- - RBAC and security contexts
182
- - Custom resource definitions
183
-
184
- Always ask for kubectl output before making recommendations.
185
- ```
186
-
187
- ### Anti-Patterns
188
-
189
- **Too vague:**
190
- ```yaml
191
- # ❌ Bad
192
- role: "You are a helpful assistant."
193
-
194
- # ✅ Good
195
- role: |
196
- You are a customer onboarding specialist who helps new users
197
- set up their accounts, configure integrations, and learn core features.
198
- ```
199
-
200
- **Too rigid:**
201
- ```yaml
202
- # ❌ Bad - too prescriptive
203
- role: |
204
- Step 1: Always greet the user
205
- Step 2: Ask for their problem
206
- Step 3: Provide exactly 3 solutions
207
- Step 4: Say goodbye
208
-
209
- # ✅ Good - provides guidance with flexibility
210
- role: |
211
- You are a friendly problem solver. Greet users warmly, understand
212
- their needs, and provide practical solutions. Adapt your approach
213
- based on user expertise level.
214
- ```
215
-
216
- **Conflicting instructions:**
217
- ```yaml
218
- # ❌ Bad
219
- role: |
220
- Be extremely concise. Always provide detailed explanations.
221
- Never use technical jargon. Use industry-standard terminology.
222
-
223
- # ✅ Good
224
- role: |
225
- Provide clear explanations appropriate for the user's expertise.
226
- Start with simple terms, then introduce technical terminology with definitions.
227
- ```
228
-
229
- ## Taxonomy
230
-
231
- The optional `taxonomy` field classifies the agent by domain, subdomain, and capability. This enables:
232
-
233
- - **Discovery** - Find agents by functional area
234
- - **Organization** - Group related agents
235
- - **Routing** - Direct requests to specialized agents
236
- - **Analytics** - Track agent usage by category
237
-
238
- See [Taxonomy Reference](./taxonomy.md) for details.
239
-
240
- ```yaml
241
- spec:
242
- taxonomy:
243
- domain: infrastructure
244
- subdomain: kubernetes
245
- capability: troubleshooting
246
- ```
247
-
248
- ## LLM Configuration
249
-
250
- The optional `llm` field configures the language model provider and parameters. If omitted, the deployment platform chooses defaults.
251
-
252
- See [LLM Configuration Reference](./llm-config.md) for details.
253
-
254
- ```yaml
255
- spec:
256
- llm:
257
- provider: openai
258
- model: gpt-4o
259
- temperature: 0.7
260
- maxTokens: 2048
261
- ```
262
-
263
- ## Tools
264
-
265
- The optional `tools` array defines capabilities available to the agent. Tools can be:
266
-
267
- - **MCP servers** - Model Context Protocol integrations
268
- - **Kubernetes resources** - Direct K8s API access
269
- - **HTTP APIs** - REST/GraphQL endpoints
270
- - **gRPC services** - gRPC endpoints
271
- - **Custom functions** - Platform-specific functions
272
-
273
- See [Tools Reference](./tools.md) for details.
274
-
275
- ```yaml
276
- spec:
277
- tools:
278
- - type: mcp
279
- server: filesystem
280
- capabilities:
281
- - read_file
282
- - write_file
283
- - type: http
284
- endpoint: https://api.github.com
285
- auth:
286
- type: bearer
287
- credentials: SECRET_REF_GITHUB_TOKEN
288
- ```
289
-
290
- ## Autonomy
291
-
292
- The optional `autonomy` field controls decision-making level and action permissions.
293
-
294
- See [Autonomy Reference](./autonomy.md) for details.
295
-
296
- ```yaml
297
- spec:
298
- autonomy:
299
- level: autonomous
300
- approval_required: false
301
- allowed_actions:
302
- - read_data
303
- - analyze
304
- - generate_report
305
- blocked_actions:
306
- - delete_data
307
- - modify_schema
308
- ```
309
-
310
- ## Constraints
311
-
312
- The optional `constraints` field sets limits on cost, performance, and resources.
313
-
314
- See [Constraints Reference](./constraints.md) for details.
315
-
316
- ```yaml
317
- spec:
318
- constraints:
319
- cost:
320
- maxTokensPerDay: 1000000
321
- maxCostPerDay: 25.0
322
- currency: USD
323
- performance:
324
- maxLatencySeconds: 5
325
- timeoutSeconds: 30
326
- ```
327
-
328
- ## Observability
329
-
330
- The optional `observability` field configures tracing, metrics, and logging.
331
-
332
- See [Observability Reference](./observability.md) for details.
333
-
334
- ```yaml
335
- spec:
336
- observability:
337
- tracing:
338
- enabled: true
339
- exporter: jaeger
340
- metrics:
341
- enabled: true
342
- exporter: prometheus
343
- logging:
344
- level: debug
345
- format: json
346
- ```
347
-
348
- ## Minimal Example
349
-
350
- The only required field in `spec` is `role`:
351
-
352
- ```yaml
353
- apiVersion: ossa/v0.2.x
354
- kind: Agent
355
- metadata:
356
- name: simple-agent
357
- spec:
358
- role: You are a helpful assistant that answers questions concisely.
359
- ```
360
-
361
- ## Multi-line Role Example
362
-
363
- Use YAML block scalars for complex role definitions:
364
-
365
- ```yaml
366
- spec:
367
- role: |
368
- You are an expert DevOps engineer specializing in CI/CD pipelines.
369
-
370
- Core competencies:
371
- - GitHub Actions workflow optimization
372
- - Docker multi-stage build strategies
373
- - Kubernetes deployment manifests
374
- - Terraform infrastructure as code
375
- - Secret management and security scanning
376
-
377
- When analyzing pipelines:
378
- 1. Identify security vulnerabilities
379
- 2. Suggest performance optimizations
380
- 3. Recommend best practices
381
- 4. Provide working code examples
382
-
383
- Always explain the reasoning behind your recommendations.
384
- ```
385
-
386
- ## Related Objects
387
-
388
- - [Taxonomy](./taxonomy.md) - Agent classification
389
- - [LLM Configuration](./llm-config.md) - Language model settings
390
- - [Tools](./tools.md) - Available capabilities
391
- - [Autonomy](./autonomy.md) - Decision-making controls
392
- - [Constraints](./constraints.md) - Operational limits
393
- - [Observability](./observability.md) - Monitoring configuration
394
- - [OSSA Manifest](./ossa-manifest.md) - Root object
395
-
396
- ## Validation
397
-
398
- The `spec` object is validated against the JSON Schema:
399
- ```
400
- https://openstandardagents.org/schemas/v0.2.x/agent.json#/definitions/AgentSpec
401
- ```
402
-
403
- Required fields:
404
- - `role` must be a non-empty string
405
-
406
- All other fields are optional and validated according to their respective schemas.