@bluefly/openstandardagents 0.2.7 → 0.2.9

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 (327) hide show
  1. package/.devfile.yaml +1 -1
  2. package/.env.example +1 -1
  3. package/.github/AGENTS.md +245 -0
  4. package/.github/agents/github-issue-triage.ossa.yaml +99 -0
  5. package/.github/agents/github-pr-triage.ossa.yaml +137 -0
  6. package/.github/workflows/issue-sync-to-gitlab.yml +138 -0
  7. package/.github/workflows/pr-triage-to-gitlab.yml +164 -0
  8. package/.version.json +2 -2
  9. package/.wiki-config.json +24 -0
  10. package/CHANGELOG.md +44 -18
  11. package/CODEOWNERS +75 -0
  12. package/CONTRIBUTING.md +103 -4
  13. package/README.md +178 -243
  14. package/dist/index.d.ts +1 -0
  15. package/dist/index.d.ts.map +1 -1
  16. package/dist/index.js +2 -0
  17. package/dist/index.js.map +1 -1
  18. package/dist/repositories/schema.repository.d.ts +6 -1
  19. package/dist/repositories/schema.repository.d.ts.map +1 -1
  20. package/dist/repositories/schema.repository.js +49 -27
  21. package/dist/repositories/schema.repository.js.map +1 -1
  22. package/dist/services/migration.service.d.ts +4 -3
  23. package/dist/services/migration.service.d.ts.map +1 -1
  24. package/dist/services/migration.service.js +11 -10
  25. package/dist/services/migration.service.js.map +1 -1
  26. package/dist/services/release-automation/release.service.js +1 -1
  27. package/dist/services/release-automation/release.service.js.map +1 -1
  28. package/dist/services/release-automation/schemas/release.schema.js +1 -1
  29. package/dist/services/release-automation/webhook.service.js +3 -3
  30. package/dist/services/release-automation/webhook.service.js.map +1 -1
  31. package/dist/services/runtime/claude/claude-adapter.d.ts +1 -1
  32. package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -1
  33. package/dist/services/runtime/claude/claude-adapter.js +2 -2
  34. package/dist/services/runtime/claude/claude-adapter.js.map +1 -1
  35. package/dist/spec/v0.2.8/CHANGELOG.md +401 -0
  36. package/dist/spec/v0.2.8/README.md +72 -0
  37. package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  38. package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  39. package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  40. package/{spec/v0.2.6-dev/ossa-0.2.5.schema.json → dist/spec/v0.2.8/ossa-0.2.8.schema.json} +1509 -52
  41. package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  42. package/dist/spec/v0.2.9/a2a-protocol.md +1337 -0
  43. package/dist/spec/v0.2.9/agent.md +1946 -0
  44. package/dist/spec/v0.2.9/capabilities/index.yaml +25 -0
  45. package/dist/spec/v0.2.9/capabilities/memory.yaml +251 -0
  46. package/dist/spec/v0.2.9/capability-schema.md +576 -0
  47. package/dist/spec/v0.2.9/compliance-profiles.md +533 -0
  48. package/dist/spec/v0.2.9/conformance-testing.md +1527 -0
  49. package/dist/spec/v0.2.9/gitlab-duo-integration.md +621 -0
  50. package/dist/spec/v0.2.9/ossa-0.2.9.schema.json +3699 -0
  51. package/dist/spec/v0.2.9/runtime-semantics.md +464 -0
  52. package/dist/spec/v0.2.9/security-model.md +1245 -0
  53. package/dist/spec/v0.2.9/semantic-conventions.md +347 -0
  54. package/dist/spec/v0.2.9/types.ts +522 -0
  55. package/dist/types/index.d.ts +3 -2
  56. package/dist/types/index.d.ts.map +1 -1
  57. package/dist/types/policy.d.ts +377 -0
  58. package/dist/types/policy.d.ts.map +1 -0
  59. package/dist/types/policy.js +84 -0
  60. package/dist/types/policy.js.map +1 -0
  61. package/dist/utils/index.d.ts +6 -0
  62. package/dist/utils/index.d.ts.map +1 -0
  63. package/dist/utils/index.js +6 -0
  64. package/dist/utils/index.js.map +1 -0
  65. package/dist/utils/version.d.ts +68 -0
  66. package/dist/utils/version.d.ts.map +1 -0
  67. package/dist/utils/version.js +156 -0
  68. package/dist/utils/version.js.map +1 -0
  69. package/docs/specs/policy-dsl.md +925 -0
  70. package/eslint-report.json +1 -0
  71. package/examples/adk-integration/code-review-workflow.yml +1 -1
  72. package/examples/adk-integration/customer-support.yml +1 -1
  73. package/examples/adk-integration/data-pipeline.yml +1 -1
  74. package/examples/advanced/reasoning-agent.yaml +136 -0
  75. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  76. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  77. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  78. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  79. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  80. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  81. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  82. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  83. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  84. package/examples/agents-md/code-agent.ossa.json +100 -0
  85. package/examples/agents-md/monorepo-agent.ossa.yaml +180 -0
  86. package/examples/anthropic/claude-assistant.ossa.json +1 -1
  87. package/examples/autogen/multi-agent.ossa.json +1 -1
  88. package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
  89. package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
  90. package/examples/common_npm/agent-router.ossa.yaml +1 -0
  91. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
  92. package/examples/crewai/research-team.ossa.json +1 -1
  93. package/examples/cursor/code-review-agent.ossa.json +1 -1
  94. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
  95. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
  96. package/examples/extensions/agents-md-v1.yml +175 -0
  97. package/examples/extensions/drupal-v1.yml +1 -1
  98. package/examples/extensions/kagent-v1.yml +1 -1
  99. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  100. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  101. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  102. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  103. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  104. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -0
  105. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
  106. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  107. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  108. package/examples/langchain/chain-agent.ossa.json +1 -1
  109. package/examples/langflow/workflow-agent.ossa.json +1 -1
  110. package/examples/langgraph/state-machine-agent.ossa.json +1 -1
  111. package/examples/llamaindex/rag-agent.ossa.json +1 -1
  112. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  113. package/examples/multi-agent/README.md +74 -0
  114. package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
  115. package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
  116. package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
  117. package/examples/openai/basic-agent.ossa.yaml +1 -1
  118. package/examples/openai/multi-tool-agent.ossa.json +1 -1
  119. package/examples/openai/swarm-agent.ossa.json +1 -1
  120. package/examples/production/document-analyzer-openai.yml +1 -1
  121. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  122. package/examples/spec-examples/audit-agent.yml +1 -1
  123. package/examples/spec-examples/chat-agent.yml +1 -1
  124. package/examples/spec-examples/compliance-agent.yml +1 -1
  125. package/examples/spec-examples/monitoring-agent.yml +1 -1
  126. package/examples/spec-examples/workflow-agent.yml +1 -1
  127. package/examples/templates/ossa-compliance.yaml +1 -1
  128. package/examples/vercel/edge-agent.ossa.json +1 -1
  129. package/gl-code-quality-report.json +62 -0
  130. package/llms-ctx-full.txt +39 -0
  131. package/llms-ctx.txt +39 -0
  132. package/llms.txt +47 -0
  133. package/package.json +6 -3
  134. package/scripts/README.md +25 -0
  135. package/scripts/compliance-audit.ts +796 -0
  136. package/scripts/eslint-to-codequality.cjs +34 -0
  137. package/scripts/generate-agents-catalog.ts +2 -1
  138. package/scripts/generate-api-docs.ts +2 -1
  139. package/scripts/generate-examples-docs.ts +2 -1
  140. package/scripts/generate-llms-ctx.sh +17 -0
  141. package/scripts/generate-schema-docs.ts +31 -10
  142. package/scripts/sync-version.js +4 -12
  143. package/scripts/validate-schema.ts +2 -1
  144. package/spec/v0.2.8/CHANGELOG.md +401 -0
  145. package/spec/v0.2.8/README.md +72 -0
  146. package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  147. package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  148. package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  149. package/spec/{v0.2.6-dev/ossa-0.2.6-dev.schema.json → v0.2.8/ossa-0.2.8.schema.json} +1509 -52
  150. package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  151. package/spec/v0.2.9/a2a-protocol.md +1337 -0
  152. package/spec/v0.2.9/agent.md +1946 -0
  153. package/spec/v0.2.9/capabilities/index.yaml +25 -0
  154. package/spec/v0.2.9/capabilities/memory.yaml +251 -0
  155. package/spec/v0.2.9/capability-schema.md +576 -0
  156. package/spec/v0.2.9/compliance-profiles.md +533 -0
  157. package/spec/v0.2.9/conformance-testing.md +1527 -0
  158. package/spec/v0.2.9/gitlab-duo-integration.md +621 -0
  159. package/spec/v0.2.9/ossa-0.2.9.schema.json +3699 -0
  160. package/spec/v0.2.9/runtime-semantics.md +464 -0
  161. package/spec/v0.2.9/security-model.md +1245 -0
  162. package/spec/v0.2.9/semantic-conventions.md +347 -0
  163. package/spec/v0.2.9/types.ts +522 -0
  164. package/test-results/junit.xml +337 -0
  165. package/.github/workflows/pr-comment.yml +0 -33
  166. package/bin/validate-ossa-0.2.5-RC.ts +0 -244
  167. package/dist/spec/v0.2.6-dev/ossa-0.2.5.schema.json +0 -1696
  168. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.schema.json +0 -1696
  169. package/scripts/lib/exec.ts +0 -37
  170. package/scripts/lib/file-ops.ts +0 -58
  171. package/scripts/lib/version.ts +0 -83
  172. package/website/.lighthouserc.ts +0 -24
  173. package/website/.prettierrc +0 -10
  174. package/website/DESIGN_SYSTEM_IMPLEMENTATION.md +0 -445
  175. package/website/Dockerfile +0 -30
  176. package/website/app/about/page.tsx +0 -304
  177. package/website/app/blog/[slug]/page.tsx +0 -208
  178. package/website/app/blog/page.tsx +0 -249
  179. package/website/app/design-guide/page.tsx +0 -511
  180. package/website/app/docs/[[...slug]]/page.tsx +0 -847
  181. package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
  182. package/website/app/ecosystem/page.tsx +0 -410
  183. package/website/app/examples/page.tsx +0 -133
  184. package/website/app/globals.scss +0 -370
  185. package/website/app/layout.tsx +0 -106
  186. package/website/app/license/page.tsx +0 -183
  187. package/website/app/not-found.tsx +0 -18
  188. package/website/app/page.tsx +0 -686
  189. package/website/app/page.tsx.bak +0 -679
  190. package/website/app/page.tsx.bak2 +0 -649
  191. package/website/app/playground/page.tsx +0 -487
  192. package/website/app/robots.ts +0 -19
  193. package/website/app/rss.xml/route.ts +0 -74
  194. package/website/app/schema/page.tsx +0 -1001
  195. package/website/app/sitemap.ts +0 -56
  196. package/website/app/specification/page.tsx +0 -287
  197. package/website/components/InstallCommand.tsx +0 -96
  198. package/website/components/Logo.tsx +0 -97
  199. package/website/components/StructuredData.tsx +0 -65
  200. package/website/components/docs/DocsSearch.tsx +0 -104
  201. package/website/components/docs/DocsSidebar.tsx +0 -155
  202. package/website/components/docs/MarkdownContent.tsx +0 -401
  203. package/website/components/docs/VersionSelector.tsx +0 -105
  204. package/website/components/examples/ExamplesViewer.tsx +0 -293
  205. package/website/components/layout/Footer.tsx +0 -116
  206. package/website/components/layout/Header.tsx +0 -172
  207. package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
  208. package/website/components/schema/SchemaExplorer.tsx +0 -213
  209. package/website/components/ui/Badge.tsx +0 -82
  210. package/website/components/ui/Button.tsx +0 -116
  211. package/website/components/ui/Card.tsx +0 -167
  212. package/website/components/ui/Checkbox.tsx +0 -141
  213. package/website/components/ui/Input.tsx +0 -169
  214. package/website/components/ui/Radio.tsx +0 -141
  215. package/website/components/ui/Select.tsx +0 -182
  216. package/website/components/ui/Tag.tsx +0 -158
  217. package/website/components/ui/Textarea.tsx +0 -195
  218. package/website/components/ui/index.ts +0 -11
  219. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
  220. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
  221. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
  222. package/website/content/blog/introducing-ossa-framework.md +0 -328
  223. package/website/content/blog/ossa-production-results.md +0 -279
  224. package/website/content/blog/welcome-to-ossa.md +0 -43
  225. package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
  226. package/website/content/docs/00-home.md +0 -153
  227. package/website/content/docs/adapters/openai-adapter.md +0 -693
  228. package/website/content/docs/agents/catalog.md +0 -28
  229. package/website/content/docs/aiflow-framework-integration-with-ossa.md +0 -107
  230. package/website/content/docs/api-reference/index.md +0 -38
  231. package/website/content/docs/api-reference/ossa-core-api.md +0 -634
  232. package/website/content/docs/api-reference/ossa-registry-api.md +0 -515
  233. package/website/content/docs/api-reference/unified-agent-gateway.md +0 -599
  234. package/website/content/docs/architecture/execution-flow.md +0 -335
  235. package/website/content/docs/architecture/multi-agent-systems.md +0 -737
  236. package/website/content/docs/architecture/overview.md +0 -121
  237. package/website/content/docs/architecture/stack-integration.md +0 -461
  238. package/website/content/docs/changelog.md +0 -246
  239. package/website/content/docs/cli-reference/index.md +0 -111
  240. package/website/content/docs/cli-reference/ossa-agents.md +0 -70
  241. package/website/content/docs/cli-reference/ossa-export.md +0 -56
  242. package/website/content/docs/cli-reference/ossa-generate.md +0 -66
  243. package/website/content/docs/cli-reference/ossa-gitlab-agent.md +0 -57
  244. package/website/content/docs/cli-reference/ossa-import.md +0 -56
  245. package/website/content/docs/cli-reference/ossa-init.md +0 -57
  246. package/website/content/docs/cli-reference/ossa-migrate.md +0 -62
  247. package/website/content/docs/cli-reference/ossa-run.md +0 -66
  248. package/website/content/docs/cli-reference/ossa-schema.md +0 -57
  249. package/website/content/docs/cli-reference/ossa-setup.md +0 -57
  250. package/website/content/docs/cli-reference/ossa-validate.md +0 -66
  251. package/website/content/docs/configuration/index.md +0 -97
  252. package/website/content/docs/contributing.md +0 -599
  253. package/website/content/docs/deployment/github-mirroring.md +0 -924
  254. package/website/content/docs/documentation.md +0 -100
  255. package/website/content/docs/ecosystem/framework-support.md +0 -1361
  256. package/website/content/docs/ecosystem/overview.md +0 -366
  257. package/website/content/docs/errors/index.md +0 -10
  258. package/website/content/docs/examples/aiflow-framework-integration-with-ossa.md +0 -107
  259. package/website/content/docs/examples/catalog.md +0 -300
  260. package/website/content/docs/for-audiences/students-researchers.md +0 -122
  261. package/website/content/docs/getting-started/index.md +0 -92
  262. package/website/content/docs/getting-started/installation.md +0 -155
  263. package/website/content/docs/getting-started/running-agents.md +0 -309
  264. package/website/content/docs/getting-started.md +0 -91
  265. package/website/content/docs/integrations/aiflow.md +0 -104
  266. package/website/content/docs/integrations/drupal.md +0 -105
  267. package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
  268. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
  269. package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
  270. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
  271. package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
  272. package/website/content/docs/migration-guides/index.md +0 -133
  273. package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
  274. package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
  275. package/website/content/docs/migration-guides/migration-manifest.json +0 -64
  276. package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
  277. package/website/content/docs/openapi-extensions/examples.md +0 -550
  278. package/website/content/docs/openapi-extensions/index.md +0 -551
  279. package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
  280. package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
  281. package/website/content/docs/ossa-compliant-badge.md +0 -251
  282. package/website/content/docs/pre-release/index.md +0 -175
  283. package/website/content/docs/quick-reference.md +0 -17
  284. package/website/content/docs/readme.md +0 -35
  285. package/website/content/docs/releases/v0.2.6.md +0 -99
  286. package/website/content/docs/schema-reference/agent-capabilities.md +0 -50
  287. package/website/content/docs/schema-reference/agent-id.md +0 -52
  288. package/website/content/docs/schema-reference/agent-name.md +0 -50
  289. package/website/content/docs/schema-reference/agent-role.md +0 -54
  290. package/website/content/docs/schema-reference/agent-spec.md +0 -406
  291. package/website/content/docs/schema-reference/agent-version.md +0 -50
  292. package/website/content/docs/schema-reference/autonomy.md +0 -568
  293. package/website/content/docs/schema-reference/constraints.md +0 -543
  294. package/website/content/docs/schema-reference/index.md +0 -45
  295. package/website/content/docs/schema-reference/llm-config.md +0 -445
  296. package/website/content/docs/schema-reference/observability.md +0 -654
  297. package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
  298. package/website/content/docs/schema-reference/taxonomy.md +0 -509
  299. package/website/content/docs/schema-reference/tools.md +0 -628
  300. package/website/content/docs/templates/blog-post.md +0 -43
  301. package/website/content/docs/types-reference/index.md +0 -105
  302. package/website/content/docs/use-cases/00-index.md +0 -395
  303. package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
  304. package/website/content/docs/use-cases/customer-support.md +0 -1234
  305. package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
  306. package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
  307. package/website/content/docs/versioning.md +0 -288
  308. package/website/dev.sh +0 -53
  309. package/website/docker-compose.dev.yml +0 -36
  310. package/website/lib/version.ts +0 -35
  311. package/website/lib/versions.json +0 -103
  312. package/website/next.config.ts +0 -18
  313. package/website/nginx.conf +0 -32
  314. package/website/package-lock.json +0 -9679
  315. package/website/package.json +0 -59
  316. package/website/postcss.config.mjs +0 -9
  317. package/website/scripts/fetch-versions.js +0 -166
  318. package/website/scripts/generate-examples-index.js +0 -163
  319. package/website/scripts/merge-docs-to-wiki.ts +0 -207
  320. package/website/scripts/sync-version.js +0 -72
  321. package/website/scripts/sync-wiki.ts +0 -322
  322. package/website/scripts/upload-wiki.ts +0 -199
  323. package/website/styles/_spacing.scss +0 -453
  324. package/website/styles/_tokens.scss +0 -245
  325. package/website/styles/_typography.scss +0 -361
  326. package/website/styles/_variables.scss +0 -287
  327. package/website/tailwind.config.ts +0 -170
@@ -1,286 +0,0 @@
1
- ---
2
- title: "Production-Ready: GitLab Kubernetes Agent Ecosystem with OSSA"
3
- date: 2025-11-22
4
- author: "OSSA Team"
5
- category: "Production"
6
- excerpt: "We're excited to announce a comprehensive, production-ready ecosystem of 8 specialized OSSA-compliant agents designed for GitLab-integrated Kubernetes deployments. This ecosystem demonstrates every advanced feature of the OSSA specification while delivering real business value through automation, cost optimization, and compliance. Achieve elite DORA metrics with 12 deployments per day, 45-minute lead times, and 35-minute MTTR, while generating $80-145K/month in cost savings."
7
- tags: ["production", "kubernetes", "gitlab", "devops", "dora-metrics", "multi-agent", "enterprise"]
8
- ---
9
-
10
- # Production-Ready: GitLab Kubernetes Agent Ecosystem with OSSA
11
-
12
- We're excited to announce a comprehensive, **production-ready ecosystem** of 8 specialized OSSA-compliant agents designed for GitLab-integrated Kubernetes deployments. This ecosystem demonstrates every advanced feature of the OSSA specification while delivering real business value through automation, cost optimization, and compliance.
13
-
14
- ## What We Built
15
-
16
- An end-to-end agent mesh covering the complete deployment lifecycle:
17
-
18
- ### 🔒 Security & Compliance
19
- - **Security Scanner** - CVE scanning, RBAC audit, secret detection
20
- - **Compliance Auditor** - SOC2, HIPAA, PCI-DSS, GDPR, FedRAMP compliance
21
-
22
- ### ⚡ Performance & Optimization
23
- - **Performance Optimizer** - HPA/VPA recommendations, latency analysis
24
- - **Cost Analyzer** - Cloud cost optimization ($80-145K/month savings)
25
-
26
- ### 🗄️ Database & Configuration
27
- - **Database Migrator** - Schema migrations with rollback procedures
28
- - **Config Validator** - K8s validation, OPA policies, Helm linting
29
-
30
- ### 📊 Monitoring & Recovery
31
- - **Monitoring Agent** - DORA metrics, SLO tracking, incident response
32
- - **Rollback Coordinator** - Automated rollback orchestration
33
-
34
- ## The Numbers Don't Lie
35
-
36
- ### Elite DORA Metrics
37
-
38
- Our agent ecosystem achieves **elite performance** across all 4 DORA metrics:
39
-
40
- | Metric | Industry Elite | Our Results | Status |
41
- |--------|---------------|-------------|---------|
42
- | **Deployment Frequency** | > 1/day | **12/day** | ✅ Elite |
43
- | **Lead Time for Changes** | < 1 hour | **45 min** | ✅ Elite |
44
- | **Time to Restore (MTTR)** | < 1 hour | **35 min** | ✅ Elite |
45
- | **Change Failure Rate** | < 15% | **8.5%** | ✅ Elite |
46
-
47
- ### Massive ROI
48
-
49
- - **Infrastructure Cost**: ~$2,500/month
50
- - **Potential Savings**: $80,000-145,000/month
51
- - **ROI**: **3,100-5,700%** (31-57x return)
52
-
53
- The cost-analyzer agent alone identifies:
54
- - **Idle resources**: $5-10K/month savings
55
- - **Right-sizing**: $15-25K/month savings
56
- - **Spot instances**: $20-40K/month savings
57
- - **Reserved instances**: $30-50K/month savings
58
- - **Autoscaling**: $10-20K/month savings
59
-
60
- ## Agent Mesh Architecture
61
-
62
- All 8 agents coordinate through an **agent mesh** with:
63
-
64
- - **JSON-RPC 2.0 A2A protocol** for inter-agent communication
65
- - **STRICT mTLS** via Istio service mesh
66
- - **Circuit breaker** and retry policies for resilience
67
- - **Network policies** with default deny
68
- - **Distributed tracing** (Jaeger, 100% sampling for critical paths)
69
- - **Custom metrics** per agent (Prometheus)
70
-
71
- ### Communication Patterns
72
-
73
- The agents work together intelligently:
74
-
75
- ```
76
- config-validator → security-scanner (secret detection)
77
- monitoring-agent → rollback-coordinator (failure alerts)
78
- rollback-coordinator → db-migrator (database rollback)
79
- cost-analyzer → performance-optimizer (cost-aware optimization)
80
- compliance-auditor → security-scanner (security compliance)
81
- ```
82
-
83
- ## Real-World Workflows
84
-
85
- ### Happy Path Deployment
86
-
87
- ```
88
- Security Scan → Config Validation → Compliance Check →
89
- DB Migration → Deploy App → Monitor Health →
90
- Performance Analysis → Cost Analysis → Post-Deployment Audit ✅
91
- ```
92
-
93
- **Duration**: ~20 minutes end-to-end
94
-
95
- ### Deployment with Automated Rollback
96
-
97
- ```
98
- Security Scan → Config Validation → Compliance Check →
99
- DB Migration → Deploy App → Monitor Health →
100
- [FAILURE DETECTED] → AUTOMATED ROLLBACK → Post-Mortem
101
- ```
102
-
103
- **MTTR**: 35 minutes (industry-leading)
104
-
105
- ## Security & Compliance
106
-
107
- Every agent is built with security-first principles:
108
-
109
- ✅ **STRICT mTLS** for all inter-agent communication
110
- ✅ **Pod Security Standards** (Restricted mode)
111
- ✅ **RBAC** least privilege
112
- ✅ **Read-only root filesystems**
113
- ✅ **Non-root containers** (UID 65534)
114
- ✅ **7-year audit log retention** (compliance requirement)
115
-
116
- The compliance-auditor validates:
117
- - **SOC 2 Type II** - Access controls, encryption, audit logging
118
- - **HIPAA** - PHI encryption, audit trails, breach notification
119
- - **PCI-DSS** - Network segmentation, cardholder data encryption
120
- - **GDPR** - Data residency, right to erasure, consent management
121
- - **FedRAMP** - FIPS 140-2, NIST 800-53 controls
122
-
123
- ## Why This Matters
124
-
125
- ### For Organizations
126
-
127
- This is **not a proof-of-concept**. It's a production-ready ecosystem that:
128
- - Deploys to real Kubernetes clusters
129
- - Integrates with GitLab CI/CD pipelines
130
- - Enforces regulatory compliance automatically
131
- - Saves real money (31-57x ROI)
132
- - Achieves elite DORA metrics
133
-
134
- ### For the OSSA Ecosystem
135
-
136
- This demonstrates that OSSA is ready for **enterprise adoption**:
137
- - ✅ Multi-agent coordination at scale
138
- - ✅ Production security and compliance
139
- - ✅ Framework-agnostic (works with any LLM provider)
140
- - ✅ Observable and debuggable
141
- - ✅ Cost-effective and performant
142
-
143
- ## Technical Highlights
144
-
145
- ### Agent Manifests
146
-
147
- Each agent is defined declaratively using OSSA v0.2.x:
148
-
149
- ```yaml
150
- apiVersion: ossa/v0.2.x
151
- kind: Agent
152
-
153
- metadata:
154
- name: security-scanner
155
- version: 1.0.0
156
- labels:
157
- environment: production
158
- team: security-ops
159
- compliance: cis-kubernetes
160
-
161
- spec:
162
- taxonomy:
163
- domain: security
164
- subdomain: vulnerability-management
165
- capability: container-scanning
166
-
167
- llm:
168
- provider: anthropic
169
- model: claude-3-5-sonnet-20241022
170
- temperature: 0.1
171
-
172
- tools:
173
- - type: mcp
174
- name: trivy-scanner
175
- description: Trivy vulnerability scanner
176
- auth:
177
- type: bearer
178
- tokenPath: /var/secrets/trivy-token
179
-
180
- autonomy:
181
- level: autonomous
182
- approval_required: false
183
-
184
- observability:
185
- tracing:
186
- enabled: true
187
- samplingRate: 1.0
188
- metrics:
189
- enabled: true
190
- customMetrics:
191
- - name: vulnerabilities_detected
192
- type: gauge
193
- labels: [severity, cve_id]
194
-
195
- extensions:
196
- kagent:
197
- kubernetes:
198
- namespace: security-system
199
- resourceLimits:
200
- cpu: "2000m"
201
- memory: "4Gi"
202
- meshIntegration:
203
- enabled: true
204
- mtlsMode: STRICT
205
- ```
206
-
207
- ### Swarm Orchestration
208
-
209
- 10 coordinated tasks execute in parallel with dependency management:
210
-
211
- ```json
212
- {
213
- "swarm": {
214
- "name": "gitlab-kubernetes-deployment-swarm",
215
- "runtime": "kubernetes",
216
- "mesh": "gitlab-k8s-agent-mesh"
217
- },
218
- "tasks": [
219
- {
220
- "id": "task-001",
221
- "name": "Pre-Deployment Security Scan",
222
- "agent": "security-scanner",
223
- "priority": "critical",
224
- "timeout": 300,
225
- "onSuccess": "task-002",
226
- "onFailure": "abort-deployment"
227
- }
228
- ]
229
- }
230
- ```
231
-
232
- ## Get Started
233
-
234
- ### View the Code
235
-
236
- All manifests are open source:
237
-
238
- - **Agent Manifests**: [`.gitlab/agents/`](https://github.com/blueflyio/openstandardagents/tree/main/.gitlab/agents)
239
- - **Mesh Config**: [`mesh-config.yaml`](https://github.com/blueflyio/openstandardagents/blob/main/.gitlab/agents/mesh-config.yaml)
240
- - **Swarm Tasks**: [`swarm-tasks.json`](https://github.com/blueflyio/openstandardagents/blob/main/.gitlab/agents/swarm-tasks.json)
241
-
242
- ### Read the Docs
243
-
244
- - **Full Documentation**: [GitLab Wiki](https://github.com/blueflyio/openstandardagents/wiki/OSSA-Agent-Ecosystem-for-GitLab-Kubernetes-Deployments)
245
- - **Website Guide**: [GitLab Kubernetes Agents](/docs/gitlab-kubernetes-agents)
246
-
247
- ### Deploy to Your Cluster
248
-
249
- ```bash
250
- # 1. Deploy agent mesh
251
- kubectl apply -f .gitlab/agents/mesh-config.yaml
252
-
253
- # 2. Deploy all agents
254
- for agent in security-scanner performance-optimizer db-migrator \
255
- config-validator monitoring-agent rollback-coordinator \
256
- cost-analyzer compliance-auditor; do
257
- buildkit agents deploy .gitlab/agents/$agent/manifest.ossa.yaml
258
- done
259
-
260
- # 3. Verify deployment
261
- kubectl get agents -n agent-mesh-system
262
- ```
263
-
264
- ## What's Next
265
-
266
- This ecosystem is just the beginning. We're working on:
267
-
268
- - **More specialized agents** (chaos engineering, capacity planning, SRE automation)
269
- - **Cloud provider integrations** (AWS, GCP, Azure native services)
270
- - **Enhanced observability** (AI-powered incident analysis, root cause detection)
271
- - **Multi-cluster support** (federated agent mesh across regions)
272
-
273
- ## Join the OSSA Community
274
-
275
- This ecosystem was built entirely using OSSA v0.2.x. If you're building AI agents for production workloads, we'd love to hear from you:
276
-
277
- - **Contribute**: [GitLab Repository](https://github.com/blueflyio/openstandardagents)
278
- - **Report Issues**: [Issue Tracker](https://github.com/blueflyio/openstandardagents/issues)
279
- - **Learn More**: [OSSA Specification](https://github.com/blueflyio/openstandardagents)
280
-
281
- ---
282
-
283
- **Tags**: #OSSA #Kubernetes #GitLab #DevOps #DORA #MultiAgent #Enterprise #ProductionReady
284
-
285
- **Version**: 1.0.0
286
- **Published**: 2025-11-22
@@ -1,328 +0,0 @@
1
- ---
2
- title: ""Introducing the OSSA Framework: 3-Tier Progressive Compliance""
3
- date: "2024-11-18"
4
- author: "Thomas Scola"
5
- category: "Technical"
6
- tags: [ossa, architecture, framework, compliance]
7
- excerpt: "How OSSA's progressive compliance model enables organizations to adopt agent orchestration incrementally while maintaining enterprise governance."
8
- ---
9
-
10
- # Introducing the OSSA Framework: 3-Tier Progressive Compliance
11
-
12
- In our [previous post](/blog/why-ai-agents-need-open-standard), we explored why AI agents need a vendor-neutral standard. Today, we're unveiling the OSSA framework architecture and its game-changing approach to adoption.
13
-
14
- ## The Challenge of Enterprise Adoption
15
-
16
- Every new standard faces a chicken-and-egg problem:
17
-
18
- - **Too simple?** Enterprises won't trust it for production
19
- - **Too complex?** Teams won't adopt it
20
-
21
- OSSA solves this with **progressive compliance**: start simple, add governance when ready, unlock advanced features when needed.
22
-
23
- ## The 3-Tier Model
24
-
25
- ### Core Tier: Get Started Fast
26
-
27
- The Core tier provides basic agent discovery and invocation—everything you need to prove value quickly:
28
-
29
- ```yaml
30
- apiVersion: oaas/standard
31
- kind: Agent
32
- metadata:
33
- name: code-analyzer
34
- tier: core
35
- spec:
36
- capabilities:
37
- - code-analysis
38
- - security-scanning
39
- endpoints:
40
- - url: https://api.example.com/analyze
41
- protocol: rest
42
- ```
43
-
44
- **Core Capabilities**:
45
- - ✅ Agent registration and discovery
46
- - ✅ Basic capability declaration
47
- - ✅ Simple request-response patterns
48
-
49
- **Perfect for**: Proof of concepts, small teams, initial experiments
50
-
51
- ### Governed Tier: Enterprise Ready
52
-
53
- When you're ready for production, the Governed tier adds enterprise controls:
54
-
55
- ```yaml
56
- apiVersion: oaas/standard
57
- kind: Agent
58
- metadata:
59
- name: code-analyzer
60
- tier: governed
61
- domain: software-development
62
- spec:
63
- capabilities:
64
- - code-analysis
65
- - security-scanning
66
- - performance-profiling
67
-
68
- compliance:
69
- iso42001: compliant
70
- nist-ai-rmf: compliant
71
-
72
- governance:
73
- budgets:
74
- maxTokensPerTask: 12000
75
- maxCostPerMonth: 1000
76
-
77
- auditLevel: detailed
78
-
79
- qualityGates:
80
- - type: output-validation
81
- threshold: 0.85
82
- ```
83
-
84
- **Governed Capabilities**:
85
- - ✅ Audit logging and compliance tracking (ISO 42001, NIST AI RMF)
86
- - ✅ Resource constraints and budgets
87
- - ✅ Quality gates and validation
88
- - ✅ Role-based access control
89
-
90
- **Perfect for**: Production deployments, regulated industries, enterprise teams
91
-
92
- ### Advanced Tier: Orchestration at Scale
93
-
94
- The Advanced tier unlocks sophisticated multi-agent orchestration:
95
-
96
- ```yaml
97
- apiVersion: oaas/standard
98
- kind: Agent
99
- metadata:
100
- name: code-analyzer
101
- tier: advanced
102
- domain: software-development
103
- spec:
104
- capabilities:
105
- - code-analysis
106
- - security-scanning
107
- - performance-profiling
108
-
109
- orchestration:
110
- canLead: true
111
- canDelegate: true
112
- specializationLevel: expert
113
-
114
- routing:
115
- algorithm: capability-match
116
- weights:
117
- capabilityMatch: 0.4
118
- specialization: 0.4
119
- availability: 0.2
120
-
121
- handoffProtocol:
122
- contextCompression: enabled
123
- historyDepth: 10
124
- validation: strict
125
- ```
126
-
127
- **Advanced Capabilities**:
128
- - ✅ Dynamic workflow generation
129
- - ✅ Multi-agent coordination
130
- - ✅ Adaptive resource allocation
131
- - ✅ Intelligent agent routing
132
- - ✅ Context-preserving handoffs
133
-
134
- **Perfect for**: Complex workflows, multi-team orchestration, autonomous systems
135
-
136
- ## Capability-Based Routing: The Right Agent for the Right Task
137
-
138
- One of OSSA's key innovations is **intelligent agent selection**. Instead of hardcoding which agent handles which task, OSSA routes dynamically:
139
-
140
- ```python
141
- class CapabilityRouter:
142
- def select_optimal_agent(self, task, available_agents):
143
- scores = []
144
-
145
- for agent in available_agents:
146
- # Match required capabilities
147
- capability_match = self.calculate_capability_match(
148
- task.required_capabilities,
149
- agent.capabilities
150
- )
151
-
152
- # Evaluate domain specialization
153
- specialization_score = self.evaluate_specialization(
154
- task.domain,
155
- agent.specialization_areas
156
- )
157
-
158
- # Check current availability
159
- availability_score = self.check_availability(
160
- agent.current_load,
161
- agent.max_capacity
162
- )
163
-
164
- # Weighted composite score
165
- composite_score = (
166
- capability_match * 0.4 +
167
- specialization_score * 0.4 +
168
- availability_score * 0.2
169
- )
170
-
171
- scores.append((agent, composite_score))
172
-
173
- return max(scores, key=lambda x: x[1])[0]
174
- ```
175
-
176
- **Result**: 26% improvement in agent utilization compared to static assignment.
177
-
178
- ## Standardized Handoff Protocol: Preserving Context
179
-
180
- Context loss during agent handoffs is a killer. OSSA's handoff protocol solves this:
181
-
182
- ```python
183
- class HandoffProtocol:
184
- def prepare_handoff(self, source_agent, target_agent, context):
185
- handoff_packet = {
186
- 'task_id': context.task_id,
187
- 'source': source_agent.id,
188
- 'target': target_agent.id,
189
-
190
- 'context': {
191
- 'state': context.current_state,
192
- 'history': context.get_relevant_history(),
193
- 'constraints': context.constraints
194
- },
195
-
196
- 'metadata': {
197
- 'timestamp': datetime.now(),
198
- 'protocol_version': 'ossa-0.2.3'
199
- }
200
- }
201
-
202
- # Validate compatibility
203
- if not self.validate_compatibility(source_agent, target_agent):
204
- raise HandoffException("Incompatible agent protocols")
205
-
206
- return self.compress_handoff(handoff_packet)
207
- ```
208
-
209
- **Result**: 37% improvement in context preservation (65% → 89%).
210
-
211
- ## Framework Integration: Bring Your Own Agents
212
-
213
- OSSA doesn't require rewriting your existing agents. Integration bridges enable seamless adoption:
214
-
215
- ### LangChain Integration
216
-
217
- ```python
218
- from ossa.bridges import LangChainBridge
219
-
220
- class LangChainBridge(OSSABridge):
221
- def wrap_agent(self, langchain_agent):
222
- return OSSAAgent(
223
- native_agent=langchain_agent,
224
- capabilities=self.extract_capabilities(langchain_agent),
225
- adapter=self.create_langchain_adapter()
226
- )
227
- ```
228
-
229
- ### CrewAI Integration
230
-
231
- ```python
232
- from ossa.bridges import CrewAIBridge
233
-
234
- class CrewAIBridge(OSSABridge):
235
- def wrap_crew(self, crew):
236
- agents = []
237
- for crew_agent in crew.agents:
238
- agents.append(self.wrap_agent(crew_agent))
239
-
240
- return OSSAWorkflow(agents=agents)
241
- ```
242
-
243
- ### AutoGen Integration
244
-
245
- ```python
246
- from ossa.bridges import AutoGenBridge
247
-
248
- class AutoGenBridge(OSSABridge):
249
- def wrap_conversable_agent(self, autogen_agent):
250
- return OSSAAgent(
251
- native_agent=autogen_agent,
252
- capabilities=self.extract_capabilities(autogen_agent),
253
- adapter=self.create_autogen_adapter()
254
- )
255
- ```
256
-
257
- ## Dynamic Task Decomposition
258
-
259
- Advanced tier enables intelligent task breakdown:
260
-
261
- ```python
262
- class TaskDecomposer:
263
- def decompose_task(self, task, available_agents):
264
- # Analyze task complexity
265
- complexity_analysis = self.analyze_complexity(task)
266
-
267
- # Identify subtasks
268
- subtasks = self.identify_subtasks(task, complexity_analysis)
269
-
270
- # Map subtasks to optimal agents
271
- task_assignments = []
272
- for subtask in subtasks:
273
- optimal_agent = self.capability_router.select_optimal_agent(
274
- subtask,
275
- available_agents
276
- )
277
-
278
- task_assignments.append({
279
- 'subtask': subtask,
280
- 'agent': optimal_agent,
281
- 'priority': subtask.priority,
282
- 'dependencies': subtask.dependencies
283
- })
284
-
285
- # Generate execution plan
286
- return self.generate_execution_plan(task_assignments)
287
- ```
288
-
289
- ## Adoption Path
290
-
291
- Organizations can adopt OSSA incrementally:
292
-
293
- **Week 1**: Core tier
294
- - Register existing agents
295
- - Test basic discovery
296
- - Validate integration
297
-
298
- **Month 1-2**: Governed tier
299
- - Add budget controls
300
- - Enable audit logging
301
- - Implement quality gates
302
-
303
- **Month 3+**: Advanced tier
304
- - Enable dynamic orchestration
305
- - Deploy multi-agent workflows
306
- - Optimize resource allocation
307
-
308
- ## What's Next
309
-
310
- In our next post, we'll share production results: **34% reduction in orchestration overhead**, **26% improvement in coordination efficiency**, and **92% task completion rates**.
311
-
312
- We'll also walk through a real case study: coordinating agents from three different frameworks (LangChain, CrewAI, AutoGen) to build a complete development pipeline.
313
-
314
- ## Key Takeaways
315
-
316
- - **Progressive compliance** enables incremental adoption (Core → Governed → Advanced)
317
- - **Capability-based routing** improves agent utilization by 26%
318
- - **Standardized handoffs** preserve 89% of context (vs. 65% baseline)
319
- - **Framework bridges** let you use existing agents without rewrites
320
- - **Enterprise governance** is built-in, not bolted-on
321
-
322
- ---
323
-
324
- **Previous**: [Why AI Agents Need an Open Standard](/blog/why-ai-agents-need-open-standard)
325
-
326
- **Next**: [Real-World Results: 34% Efficiency Gains with OSSA](/blog/ossa-production-results)
327
-
328
- **Get Started**: [Installation Guide](/docs/getting-started/installation)