@bluefly/openstandardagents 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (371) hide show
  1. package/.env.example +41 -0
  2. package/.eslintrc.cjs +43 -0
  3. package/.github/PULL_REQUEST_TEMPLATE.md +39 -0
  4. package/.github/dependabot.yml +58 -0
  5. package/.github/workflows/ci.yml +154 -0
  6. package/.github/workflows/codeql.yml +41 -0
  7. package/.github/workflows/dependabot-auto-merge.yml +28 -0
  8. package/.github/workflows/release.yml +103 -0
  9. package/.prettierignore +7 -0
  10. package/.prettierrc.json +10 -0
  11. package/.redocly.yaml +9 -0
  12. package/.releaserc.json +84 -0
  13. package/.releaserc.json.disabled +81 -0
  14. package/CHANGELOG.md +152 -0
  15. package/CONTRIBUTING.md +249 -0
  16. package/LICENSE +190 -0
  17. package/README.md +280 -0
  18. package/bin/ossa +8 -0
  19. package/bin/validate-ossa-0.2.2.ts +244 -0
  20. package/dist/di-container.d.ts +18 -0
  21. package/dist/di-container.d.ts.map +1 -0
  22. package/dist/di-container.js +43 -0
  23. package/dist/di-container.js.map +1 -0
  24. package/dist/index.d.ts +13 -0
  25. package/dist/index.d.ts.map +1 -0
  26. package/dist/index.js +17 -0
  27. package/dist/index.js.map +1 -0
  28. package/dist/repositories/manifest.repository.d.ts +26 -0
  29. package/dist/repositories/manifest.repository.d.ts.map +1 -0
  30. package/dist/repositories/manifest.repository.js +90 -0
  31. package/dist/repositories/manifest.repository.js.map +1 -0
  32. package/dist/repositories/schema.repository.d.ts +30 -0
  33. package/dist/repositories/schema.repository.d.ts.map +1 -0
  34. package/dist/repositories/schema.repository.js +143 -0
  35. package/dist/repositories/schema.repository.js.map +1 -0
  36. package/dist/services/generation.service.d.ts +54 -0
  37. package/dist/services/generation.service.d.ts.map +1 -0
  38. package/dist/services/generation.service.js +298 -0
  39. package/dist/services/generation.service.js.map +1 -0
  40. package/dist/services/migration.service.d.ts +30 -0
  41. package/dist/services/migration.service.d.ts.map +1 -0
  42. package/dist/services/migration.service.js +231 -0
  43. package/dist/services/migration.service.js.map +1 -0
  44. package/dist/services/runtime/openai.adapter.d.ts +94 -0
  45. package/dist/services/runtime/openai.adapter.d.ts.map +1 -0
  46. package/dist/services/runtime/openai.adapter.js +209 -0
  47. package/dist/services/runtime/openai.adapter.js.map +1 -0
  48. package/dist/services/validation.service.d.ts +45 -0
  49. package/dist/services/validation.service.d.ts.map +1 -0
  50. package/dist/services/validation.service.js +362 -0
  51. package/dist/services/validation.service.js.map +1 -0
  52. package/dist/services/validators/anthropic.validator.d.ts +9 -0
  53. package/dist/services/validators/anthropic.validator.d.ts.map +1 -0
  54. package/dist/services/validators/anthropic.validator.js +105 -0
  55. package/dist/services/validators/anthropic.validator.js.map +1 -0
  56. package/dist/services/validators/autogen.validator.d.ts +9 -0
  57. package/dist/services/validators/autogen.validator.d.ts.map +1 -0
  58. package/dist/services/validators/autogen.validator.js +111 -0
  59. package/dist/services/validators/autogen.validator.js.map +1 -0
  60. package/dist/services/validators/crewai.validator.d.ts +9 -0
  61. package/dist/services/validators/crewai.validator.d.ts.map +1 -0
  62. package/dist/services/validators/crewai.validator.js +117 -0
  63. package/dist/services/validators/crewai.validator.js.map +1 -0
  64. package/dist/services/validators/cursor.validator.d.ts +9 -0
  65. package/dist/services/validators/cursor.validator.d.ts.map +1 -0
  66. package/dist/services/validators/cursor.validator.js +88 -0
  67. package/dist/services/validators/cursor.validator.js.map +1 -0
  68. package/dist/services/validators/index.d.ts +15 -0
  69. package/dist/services/validators/index.d.ts.map +1 -0
  70. package/dist/services/validators/index.js +15 -0
  71. package/dist/services/validators/index.js.map +1 -0
  72. package/dist/services/validators/langchain.validator.d.ts +9 -0
  73. package/dist/services/validators/langchain.validator.d.ts.map +1 -0
  74. package/dist/services/validators/langchain.validator.js +103 -0
  75. package/dist/services/validators/langchain.validator.js.map +1 -0
  76. package/dist/services/validators/langflow.validator.d.ts +9 -0
  77. package/dist/services/validators/langflow.validator.d.ts.map +1 -0
  78. package/dist/services/validators/langflow.validator.js +92 -0
  79. package/dist/services/validators/langflow.validator.js.map +1 -0
  80. package/dist/services/validators/langgraph.validator.d.ts +9 -0
  81. package/dist/services/validators/langgraph.validator.d.ts.map +1 -0
  82. package/dist/services/validators/langgraph.validator.js +123 -0
  83. package/dist/services/validators/langgraph.validator.js.map +1 -0
  84. package/dist/services/validators/llamaindex.validator.d.ts +9 -0
  85. package/dist/services/validators/llamaindex.validator.d.ts.map +1 -0
  86. package/dist/services/validators/llamaindex.validator.js +121 -0
  87. package/dist/services/validators/llamaindex.validator.js.map +1 -0
  88. package/dist/services/validators/openai.validator.d.ts +9 -0
  89. package/dist/services/validators/openai.validator.d.ts.map +1 -0
  90. package/dist/services/validators/openai.validator.js +126 -0
  91. package/dist/services/validators/openai.validator.js.map +1 -0
  92. package/dist/services/validators/vercel-ai.validator.d.ts +9 -0
  93. package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -0
  94. package/dist/services/validators/vercel-ai.validator.js +99 -0
  95. package/dist/services/validators/vercel-ai.validator.js.map +1 -0
  96. package/dist/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  97. package/dist/spec/v0.1.9/ecosystem-compliance.json +235 -0
  98. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  99. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  100. package/dist/spec/v0.1.9/reasoning-compliance.json +654 -0
  101. package/dist/spec/v0.2.2/kagent-enhancements.json +395 -0
  102. package/dist/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  103. package/dist/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  104. package/dist/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  105. package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
  106. package/dist/spec/v0.2.3/README.md +154 -0
  107. package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  108. package/dist/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  109. package/dist/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  110. package/dist/spec/v0.2.4-dev/CHANGELOG.md +403 -0
  111. package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  112. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
  113. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
  114. package/dist/spec/v0.2.5-dev/CHANGELOG.md +171 -0
  115. package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
  116. package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
  117. package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
  118. package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
  119. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
  120. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
  121. package/dist/types/index.d.ts +178 -0
  122. package/dist/types/index.d.ts.map +1 -0
  123. package/dist/types/index.js +6 -0
  124. package/dist/types/index.js.map +1 -0
  125. package/dist/types/openapi-extensions.d.ts +164 -0
  126. package/dist/types/openapi-extensions.d.ts.map +1 -0
  127. package/dist/types/openapi-extensions.js +6 -0
  128. package/dist/types/openapi-extensions.js.map +1 -0
  129. package/docs/OSSA-COMPLIANT-BADGE.md +248 -0
  130. package/docs/README.md +31 -0
  131. package/docs/VERSIONING.md +284 -0
  132. package/docs/agent-openapi-spec.yml +942 -0
  133. package/docs/getting-started.md +87 -0
  134. package/docs/migration/general-agent-schema.yml +255 -0
  135. package/docs/migration/migration-manifest.json +64 -0
  136. package/docs/openapi-extensions.md +930 -0
  137. package/docs/schemas/openapi-extensions.schema.json +486 -0
  138. package/examples/adk-integration/code-review-workflow.yml +136 -0
  139. package/examples/adk-integration/customer-support.yml +263 -0
  140. package/examples/adk-integration/data-pipeline.yml +173 -0
  141. package/examples/advanced/patterns/compliance-context-production.json +53 -0
  142. package/examples/advanced/patterns/model-router.ts +274 -0
  143. package/examples/advanced/patterns/smart-model-routing.ts +248 -0
  144. package/examples/advanced/workflows/hybrid-model-strategy.yaml +232 -0
  145. package/examples/agent-manifests/critics/critic-agent.yaml +149 -0
  146. package/examples/agent-manifests/governors/governor-agent.yaml +128 -0
  147. package/examples/agent-manifests/integrators/integrator-agent.yaml +103 -0
  148. package/examples/agent-manifests/judges/judge-agent.yaml +153 -0
  149. package/examples/agent-manifests/monitors/monitor-agent.yaml +122 -0
  150. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +247 -0
  151. package/examples/agent-manifests/sample-compliant-agent.yaml +147 -0
  152. package/examples/agent-manifests/workers/worker-agent.yaml +82 -0
  153. package/examples/anthropic/claude-assistant.ossa.json +45 -0
  154. package/examples/architecture/model-configuration/ollama-integration.ts +110 -0
  155. package/examples/autogen/multi-agent.ossa.json +37 -0
  156. package/examples/bridge-configurations.yaml +346 -0
  157. package/examples/bridges/Dockerfile.production +87 -0
  158. package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
  159. package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
  160. package/examples/bridges/__pycache__/test_aiflow_integration.cpython-313.pyc +0 -0
  161. package/examples/bridges/aiflow-bridge-enhanced.py +462 -0
  162. package/examples/bridges/aiflow-bridge-example.yml +310 -0
  163. package/examples/bridges/aiflow-phoenix-tracing.py +310 -0
  164. package/examples/bridges/aiflow-registration-api.openapi.yml +439 -0
  165. package/examples/bridges/k8s/configmap.yaml +121 -0
  166. package/examples/bridges/k8s/deployment-simple.yaml +34 -0
  167. package/examples/bridges/k8s/deployment.yaml +275 -0
  168. package/examples/bridges/k8s/hpa.yaml +126 -0
  169. package/examples/bridges/k8s/ingress.yaml +155 -0
  170. package/examples/bridges/kagent-bridge-example.yml +94 -0
  171. package/examples/bridges/load-tests/Dockerfile +28 -0
  172. package/examples/bridges/load-tests/k6-load-test.js +302 -0
  173. package/examples/bridges/load-tests/requirements.txt +20 -0
  174. package/examples/bridges/loadtest/k6-scenarios.js +270 -0
  175. package/examples/bridges/phase4/SLO-SLA.yaml +249 -0
  176. package/examples/bridges/phase4/chaos-tests.yaml +226 -0
  177. package/examples/bridges/requirements.txt +24 -0
  178. package/examples/bridges/test_aiflow_integration.py +341 -0
  179. package/examples/common_npm/agent-router.ossa.yaml +182 -0
  180. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +60 -0
  181. package/examples/compliance-agent.yml +155 -0
  182. package/examples/crewai/research-team.ossa.json +36 -0
  183. package/examples/cursor/code-review-agent.ossa.json +47 -0
  184. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +609 -0
  185. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +68 -0
  186. package/examples/enterprise/agent.yml +452 -0
  187. package/examples/extensions/drupal-v1.yml +266 -0
  188. package/examples/extensions/kagent-v1.yml +167 -0
  189. package/examples/getting-started/hello-world-complete.ossa.yaml +266 -0
  190. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +376 -0
  191. package/examples/kagent/README.md +31 -0
  192. package/examples/kagent/compliance-validator.ossa.yaml +111 -0
  193. package/examples/kagent/cost-optimizer.ossa.yaml +93 -0
  194. package/examples/kagent/documentation-agent.ossa.yaml +91 -0
  195. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +269 -0
  196. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +106 -0
  197. package/examples/kagent/k8s-troubleshooter.ossa.yaml +257 -0
  198. package/examples/kagent/security-scanner.ossa.yaml +140 -0
  199. package/examples/langchain/chain-agent.ossa.json +42 -0
  200. package/examples/langflow/workflow-agent.ossa.json +39 -0
  201. package/examples/langgraph/state-machine-agent.ossa.json +59 -0
  202. package/examples/llamaindex/rag-agent.ossa.json +41 -0
  203. package/examples/migration-guides/from-langchain-to-ossa.yaml +309 -0
  204. package/examples/minimal/agent.yml +152 -0
  205. package/examples/minimal/openapi.yaml +95 -0
  206. package/examples/openai/swarm-agent.ossa.json +59 -0
  207. package/examples/openapi-extensions/README.md +87 -0
  208. package/examples/openapi-extensions/minimal-agent-api.openapi.yml +288 -0
  209. package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +633 -0
  210. package/examples/openapi-extensions/worker-agent-api.openapi.yml +533 -0
  211. package/examples/production/agent.yml +713 -0
  212. package/examples/production/document-analyzer-openai.yml +134 -0
  213. package/examples/quickstart/support-agent.ossa.yaml +59 -0
  214. package/examples/service-registry-usage.ts +423 -0
  215. package/examples/spec-examples/audit-agent.yml +147 -0
  216. package/examples/spec-examples/chat-agent.yml +189 -0
  217. package/examples/spec-examples/compliance-agent.yml +204 -0
  218. package/examples/spec-examples/data-processing-agent.yml +132 -0
  219. package/examples/spec-examples/development-agent.yml +138 -0
  220. package/examples/spec-examples/edge-agent.yml +101 -0
  221. package/examples/spec-examples/integration-agent.yml +129 -0
  222. package/examples/spec-examples/monitoring-agent.yml +130 -0
  223. package/examples/spec-examples/serverless-agent.yml +82 -0
  224. package/examples/spec-examples/workflow-agent.yml +223 -0
  225. package/examples/templates/ossa-compliance.yaml +56 -0
  226. package/examples/typescript/advanced/demo-registry.ts +168 -0
  227. package/examples/typescript/mcpb-agent-example.ts +358 -0
  228. package/examples/vercel/edge-agent.ossa.json +43 -0
  229. package/infrastructure/docker-compose.yml +33 -0
  230. package/junit.xml +1 -0
  231. package/openapi/drupal-agent-api.openapi.yaml +348 -0
  232. package/openapi/gitlab-orchestrator.openapi.yaml +330 -0
  233. package/openapi/helm-generator.openapi.yaml +389 -0
  234. package/openapi/ossa-core-api.openapi.yaml +1448 -0
  235. package/openapi/ossa-registry-api.openapi.yaml +980 -0
  236. package/openapi/ossa-registry.openapi.yaml +782 -0
  237. package/openapi/self-evolving-ecosystem.openapi.yaml +1530 -0
  238. package/openapi/unified-agent-gateway.openapi.yaml +833 -0
  239. package/ossa-website-swarm-tasks.json +105 -0
  240. package/package.json +132 -0
  241. package/release.config.js +64 -0
  242. package/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  243. package/spec/v0.1.9/ecosystem-compliance.json +235 -0
  244. package/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  245. package/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  246. package/spec/v0.1.9/reasoning-compliance.json +654 -0
  247. package/spec/v0.2.2/kagent-enhancements.json +395 -0
  248. package/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  249. package/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  250. package/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  251. package/spec/v0.2.3/CHANGELOG.md +176 -0
  252. package/spec/v0.2.3/README.md +154 -0
  253. package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  254. package/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  255. package/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  256. package/spec/v0.2.4-dev/CHANGELOG.md +403 -0
  257. package/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  258. package/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
  259. package/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
  260. package/spec/v0.2.5-dev/CHANGELOG.md +171 -0
  261. package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
  262. package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
  263. package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
  264. package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
  265. package/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
  266. package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
  267. package/test-results.xml +1 -0
  268. package/website/.lighthouserc.js +20 -0
  269. package/website/.prettierrc +10 -0
  270. package/website/Dockerfile +17 -0
  271. package/website/app/about/page.tsx +295 -0
  272. package/website/app/api/validate/route.ts +88 -0
  273. package/website/app/blog/[slug]/page.tsx +167 -0
  274. package/website/app/blog/page.tsx +162 -0
  275. package/website/app/docs/[[...slug]]/page.tsx +349 -0
  276. package/website/app/docs/core-concepts/project-structure/page.tsx +349 -0
  277. package/website/app/ecosystem/page.tsx +375 -0
  278. package/website/app/examples/page.tsx +123 -0
  279. package/website/app/globals.css +108 -0
  280. package/website/app/layout.tsx +106 -0
  281. package/website/app/page.tsx +409 -0
  282. package/website/app/playground/page.tsx +507 -0
  283. package/website/app/robots.ts +19 -0
  284. package/website/app/rss.xml/route.ts +74 -0
  285. package/website/app/schema/page.tsx +970 -0
  286. package/website/app/sitemap.ts +56 -0
  287. package/website/app/specification/page.tsx +211 -0
  288. package/website/components/InstallCommand.tsx +96 -0
  289. package/website/components/Logo.tsx +24 -0
  290. package/website/components/StructuredData.tsx +65 -0
  291. package/website/components/docs/DocsSearch.tsx +104 -0
  292. package/website/components/docs/DocsSidebar.tsx +118 -0
  293. package/website/components/docs/MarkdownContent.tsx +183 -0
  294. package/website/components/docs/VersionSelector.tsx +49 -0
  295. package/website/components/examples/ExamplesViewer.tsx +293 -0
  296. package/website/components/layout/Footer.tsx +111 -0
  297. package/website/components/layout/Header.tsx +170 -0
  298. package/website/components/schema/SchemaExplorer.tsx +213 -0
  299. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +285 -0
  300. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +209 -0
  301. package/website/content/blog/introducing-ossa-framework.md +328 -0
  302. package/website/content/blog/ossa-production-results.md +279 -0
  303. package/website/content/blog/welcome-to-ossa.md +43 -0
  304. package/website/content/blog/why-ai-agents-need-open-standard.md +98 -0
  305. package/website/content/docs/00-HOME.md +160 -0
  306. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
  307. package/website/content/docs/OpenAPI-Extensions.md +498 -0
  308. package/website/content/docs/architecture/execution-flow.md +335 -0
  309. package/website/content/docs/architecture/multi-agent-systems.md +737 -0
  310. package/website/content/docs/architecture/overview.md +121 -0
  311. package/website/content/docs/architecture/stack-integration.md +461 -0
  312. package/website/content/docs/changelog.md +246 -0
  313. package/website/content/docs/contributing.md +599 -0
  314. package/website/content/docs/core-concepts/project-structure.md +348 -0
  315. package/website/content/docs/ecosystem/framework-support.md +821 -0
  316. package/website/content/docs/ecosystem/overview.md +366 -0
  317. package/website/content/docs/examples/Migration-Guides.md +214 -0
  318. package/website/content/docs/examples.md +71 -0
  319. package/website/content/docs/for-audiences/Enterprises.md +256 -0
  320. package/website/content/docs/for-audiences/Students-Researchers.md +122 -0
  321. package/website/content/docs/for-audiences/architects.md +224 -0
  322. package/website/content/docs/for-audiences/developers.md +220 -0
  323. package/website/content/docs/getting-started/5-minute-overview.md +85 -0
  324. package/website/content/docs/getting-started/Hello-World.md +184 -0
  325. package/website/content/docs/getting-started/first-agent.md +196 -0
  326. package/website/content/docs/getting-started/installation.md +155 -0
  327. package/website/content/docs/getting-started/running-agents.md +107 -0
  328. package/website/content/docs/integrations/aiflow.md +104 -0
  329. package/website/content/docs/integrations/drupal.md +105 -0
  330. package/website/content/docs/migration-guides/00-index.md +76 -0
  331. package/website/content/docs/migration-guides/README.md +133 -0
  332. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +1750 -0
  333. package/website/content/docs/migration-guides/crewai-to-ossa.md +274 -0
  334. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +2017 -0
  335. package/website/content/docs/migration-guides/index.md +133 -0
  336. package/website/content/docs/migration-guides/langchain-to-ossa.md +1714 -0
  337. package/website/content/docs/migration-guides/langflow-to-ossa.md +2075 -0
  338. package/website/content/docs/migration-guides/openai-to-ossa.md +1202 -0
  339. package/website/content/docs/openapi-extensions/examples.md +550 -0
  340. package/website/content/docs/openapi-extensions/index.md +495 -0
  341. package/website/content/docs/openapi-extensions/operation-extensions.md +398 -0
  342. package/website/content/docs/openapi-extensions/root-extensions.md +364 -0
  343. package/website/content/docs/pre-release/index.md +175 -0
  344. package/website/content/docs/quick-reference.md +17 -0
  345. package/website/content/docs/schema-reference/agent-spec.md +406 -0
  346. package/website/content/docs/schema-reference/autonomy.md +568 -0
  347. package/website/content/docs/schema-reference/constraints.md +543 -0
  348. package/website/content/docs/schema-reference/index.md +176 -0
  349. package/website/content/docs/schema-reference/llm-config.md +445 -0
  350. package/website/content/docs/schema-reference/observability.md +654 -0
  351. package/website/content/docs/schema-reference/ossa-manifest.md +309 -0
  352. package/website/content/docs/schema-reference/taxonomy.md +509 -0
  353. package/website/content/docs/schema-reference/tools.md +628 -0
  354. package/website/content/docs/templates/blog-post.md +43 -0
  355. package/website/content/docs/use-cases/00-index.md +395 -0
  356. package/website/content/docs/use-cases/cicd-code-review.md +1236 -0
  357. package/website/content/docs/use-cases/customer-support.md +1234 -0
  358. package/website/content/docs/use-cases/enterprise-compliance.md +1208 -0
  359. package/website/content/docs/use-cases/research-multi-agent.md +1161 -0
  360. package/website/lib/version.ts +18 -0
  361. package/website/next.config.js +17 -0
  362. package/website/next.config.ts +16 -0
  363. package/website/nginx.conf +32 -0
  364. package/website/package-lock.json +9145 -0
  365. package/website/package.json +53 -0
  366. package/website/postcss.config.js +7 -0
  367. package/website/postcss.config.mjs +9 -0
  368. package/website/scripts/sync-version.js +44 -0
  369. package/website/scripts/sync-wiki.ts +261 -0
  370. package/website/tailwind.config.js +58 -0
  371. package/website/tailwind.config.ts +65 -0
@@ -0,0 +1,153 @@
1
+ apiVersion: ossa.io/v0.1.9
2
+ kind: Agent
3
+ metadata:
4
+ name: decision-arbitration-judge
5
+ version: v1.0.0
6
+ description: 'Ultimate decision-making agent for conflict resolution and final arbitration'
7
+ author: 'architecture-council'
8
+ labels:
9
+ environment: production
10
+ classification: internal
11
+ role: judge
12
+ complexity: enterprise
13
+ spec:
14
+ type: judge
15
+ subtype: decision-arbitrator
16
+ capabilities:
17
+ domains:
18
+ - decision-making
19
+ - conflict-resolution
20
+ - arbitration
21
+ - consensus-building
22
+ - priority-ranking
23
+ - resource-allocation
24
+ operations:
25
+ - arbitrate-conflicts
26
+ - make-decisions
27
+ - resolve-disputes
28
+ - prioritize-requests
29
+ - allocate-resources
30
+ - build-consensus
31
+ patterns:
32
+ - decision-tree
33
+ - weighted-scoring
34
+ - consensus-algorithm
35
+ - conflict-resolution
36
+ - priority-queue
37
+ - resource-optimization
38
+ protocols:
39
+ supported:
40
+ - name: rest
41
+ version: '1.1'
42
+ endpoint: 'https://judge.platform.com/api/v1'
43
+ authentication:
44
+ type: oauth2
45
+ scopes: ['judge.arbitrate', 'decisions.make', 'conflicts.resolve']
46
+ tls: true
47
+ - name: grpc
48
+ version: '1.0'
49
+ endpoint: 'grpc://judge.platform.com:9443/DecisionJudge'
50
+ authentication:
51
+ type: mutual-tls
52
+ - name: event-stream
53
+ version: '1.0'
54
+ endpoint: 'wss://events.platform.com/judge'
55
+ authentication:
56
+ type: jwt
57
+ arbitration:
58
+ decisionMaking:
59
+ algorithm: 'weighted-consensus'
60
+ votingSystem: 'ranked-choice'
61
+ quorumRequired: true
62
+ minimumParticipants: 3
63
+ timeoutPeriod: 300000
64
+ conflictResolution:
65
+ escalationLevels:
66
+ - automated
67
+ - peer-review
68
+ - expert-panel
69
+ - executive-decision
70
+ resolutionStrategies:
71
+ - compromise
72
+ - priority-based
73
+ - resource-optimal
74
+ - consensus-driven
75
+ criteria:
76
+ businessValue: 30
77
+ technicalFeasibility: 25
78
+ riskAssessment: 20
79
+ resourceRequirement: 15
80
+ timeToMarket: 10
81
+ decision:
82
+ factors:
83
+ - impact
84
+ - urgency
85
+ - complexity
86
+ - risk
87
+ - cost
88
+ - benefit
89
+ - feasibility
90
+ - alignment
91
+ scoringModel:
92
+ scale: '1-10'
93
+ weights:
94
+ strategic: 40
95
+ operational: 30
96
+ technical: 20
97
+ financial: 10
98
+ evidenceRequired:
99
+ dataPoints: true
100
+ stakeholderInput: true
101
+ expertOpinion: true
102
+ historicalContext: true
103
+ riskAssessment: true
104
+ governance:
105
+ authority:
106
+ scope: 'platform-wide'
107
+ limitations:
108
+ ['legal-compliance', 'budget-constraints', 'policy-boundaries']
109
+ escalationPath: 'executive-committee'
110
+ accountability:
111
+ decisionAudit: true
112
+ outcomeTracking: true
113
+ performanceReview: true
114
+ learningFeedback: true
115
+ transparency:
116
+ decisionLog: true
117
+ rationale: true
118
+ stakeholderNotification: true
119
+ appealProcess: true
120
+ consensus:
121
+ buildingMethods:
122
+ - facilitated-discussion
123
+ - structured-voting
124
+ - compromise-negotiation
125
+ - expert-mediation
126
+ participantRoles:
127
+ - stakeholder
128
+ - expert
129
+ - facilitator
130
+ - observer
131
+ agreements:
132
+ unanimous: preferred
133
+ majority: acceptable
134
+ executive: fallback
135
+ performance:
136
+ throughput:
137
+ decisionsPerDay: 20
138
+ conflictsPerWeek: 10
139
+ latency:
140
+ simpleDecision: 3600000
141
+ complexArbitration: 86400000
142
+ conflictResolution: 259200000
143
+ p95: 172800000
144
+ p99: 604800000
145
+ monitoring:
146
+ decisionQuality: true
147
+ outcomeTracking: true
148
+ stakeholderSatisfaction: true
149
+ processEfficiency: true
150
+ alerting:
151
+ escalationThreshold: 3
152
+ timeoutThreshold: 604800000
153
+ satisfactionThreshold: 70
@@ -0,0 +1,122 @@
1
+ apiVersion: ossa.io/v0.1.9
2
+ kind: Agent
3
+ metadata:
4
+ name: system-performance-monitor
5
+ version: v1.3.0
6
+ description: "Real-time monitoring agent for system health, performance, and resource utilization"
7
+ author: "monitoring-team"
8
+ labels:
9
+ environment: production
10
+ classification: internal
11
+ role: monitor
12
+ complexity: standard
13
+ spec:
14
+ type: monitor
15
+ subtype: performance-monitor
16
+ capabilities:
17
+ domains:
18
+ - system-monitoring
19
+ - performance-tracking
20
+ - resource-monitoring
21
+ - health-checking
22
+ - alerting
23
+ - metrics-collection
24
+ operations:
25
+ - collect-metrics
26
+ - check-health
27
+ - detect-anomalies
28
+ - generate-alerts
29
+ - track-performance
30
+ - analyze-trends
31
+ patterns:
32
+ - observer-pattern
33
+ - event-driven
34
+ - time-series
35
+ - threshold-based
36
+ - anomaly-detection
37
+ - aggregation
38
+ protocols:
39
+ supported:
40
+ - name: rest
41
+ version: "1.1"
42
+ endpoint: "https://monitor.platform.com/api/v1"
43
+ authentication:
44
+ type: bearer-token
45
+ scopes: ["monitor.read", "metrics.collect", "alerts.send"]
46
+ tls: true
47
+ - name: prometheus
48
+ version: "1.0"
49
+ endpoint: "http://monitor.platform.com:9090/metrics"
50
+ authentication:
51
+ type: none
52
+ - name: websocket
53
+ version: "1.0"
54
+ endpoint: "wss://events.platform.com/monitor"
55
+ authentication:
56
+ type: jwt
57
+ - name: snmp
58
+ version: "2c"
59
+ endpoint: "udp://devices.platform.com:161"
60
+ authentication:
61
+ type: community-string
62
+ monitoring:
63
+ collectionInterval: 30000
64
+ retentionPeriod: "30d"
65
+ maxMetricsPerSecond: 10000
66
+ aggregationWindow: 300000
67
+ alertingEnabled: true
68
+ thresholds:
69
+ cpu:
70
+ warning: 70
71
+ critical: 90
72
+ memory:
73
+ warning: 80
74
+ critical: 95
75
+ disk:
76
+ warning: 85
77
+ critical: 95
78
+ network:
79
+ warning: 80
80
+ critical: 95
81
+ detection:
82
+ anomalyDetection: true
83
+ baselineWindow: "7d"
84
+ sensitivityLevel: medium
85
+ machinelearning: true
86
+ algorithms:
87
+ - statistical-analysis
88
+ - trend-detection
89
+ - seasonal-decomposition
90
+ - isolation-forest
91
+ alerting:
92
+ channels:
93
+ - email
94
+ - slack
95
+ - webhook
96
+ - sms
97
+ escalationPolicy:
98
+ - level: warning
99
+ delay: 300
100
+ - level: critical
101
+ delay: 60
102
+ suppressionRules:
103
+ - duplicateWindow: 3600
104
+ - maintenanceMode: true
105
+ performance:
106
+ throughput:
107
+ metricsPerSecond: 1000
108
+ maxConcurrentChecks: 100
109
+ latency:
110
+ collectionLatency: 10
111
+ alertingLatency: 5
112
+ p95: 50
113
+ p99: 100
114
+ monitoring:
115
+ selfMonitoring: true
116
+ healthChecks: true
117
+ performanceMetrics: true
118
+ errorTracking: true
119
+ alerting:
120
+ collectionFailureThreshold: 5
121
+ alertingFailureThreshold: 3
122
+ latencyThreshold: 1000
@@ -0,0 +1,247 @@
1
+ # ============================================================================
2
+ # OSSA Multi-Workflow Orchestrator Agent Manifest
3
+ # ============================================================================
4
+ # Purpose: Enterprise-grade orchestrator for managing complex multi-agent
5
+ # workflows across distributed systems
6
+ #
7
+ # Key Concepts:
8
+ # - Orchestration: Central coordinator managing workflow execution and state
9
+ # - Agent Coordination: Discovering, routing, and managing worker agents
10
+ # - Dependency Management: Handling execution order and data flow between agents
11
+ # - Failure Recovery: Implementing compensation, retry, and fallback strategies
12
+ #
13
+ # Related Examples:
14
+ # - examples/openapi-extensions/orchestrator-agent-api.openapi.yml (API definition)
15
+ # - examples/production/agent.yml (Worker agent pattern)
16
+ # - examples/kagent/k8s-troubleshooter.ossa.yaml (Complex orchestration)
17
+ #
18
+ # OSSA Version: 0.1.9 (Orchestrator profile)
19
+ # Conformance: Enterprise-level orchestration with high availability
20
+ # ============================================================================
21
+
22
+ # OSSA manifest version - defines the schema and features available
23
+ apiVersion: ossa.io/v0.1.9
24
+
25
+ # Kind declares this as an Agent manifest (vs. Bridge, Tool, etc.)
26
+ kind: Agent
27
+
28
+ # ============================================================================
29
+ # METADATA: Identity and classification for agent discovery
30
+ # ============================================================================
31
+ metadata:
32
+ # Unique identifier within the agent ecosystem
33
+ name: multi-workflow-orchestrator
34
+
35
+ # Semantic version for compatibility tracking
36
+ version: v2.1.0
37
+
38
+ # Human-readable description for documentation and discovery
39
+ description: 'Enterprise orchestrator managing complex multi-agent workflows across distributed systems'
40
+
41
+ # Team or individual responsible for maintenance
42
+ author: 'platform-engineering-team'
43
+
44
+ # Labels enable filtering, routing, and policy enforcement
45
+ labels:
46
+ environment: production # Deployment environment (dev/staging/production)
47
+ classification: internal # Data classification level (public/internal/confidential/secret)
48
+ role: orchestrator # Agent role in the ecosystem (orchestrator/worker/specialist/critic)
49
+ complexity: enterprise # Complexity level (simple/moderate/enterprise)
50
+
51
+ # ============================================================================
52
+ # SPEC: Core agent configuration and capabilities
53
+ # ============================================================================
54
+ spec:
55
+ # Type defines the agent's primary role in multi-agent systems
56
+ # - orchestrator: Coordinates other agents and manages workflows
57
+ # - worker: Performs specific tasks delegated by orchestrators
58
+ # - specialist: Domain-specific expertise (e.g., code review, security)
59
+ # - critic: Evaluates and validates outputs from other agents
60
+ type: orchestrator
61
+
62
+ # Subtype provides fine-grained specialization
63
+ # - workflow-coordinator: Manages sequential and parallel workflows
64
+ # - agent-router: Routes requests to appropriate agents
65
+ # - resource-manager: Allocates compute/memory/token budgets
66
+ subtype: workflow-coordinator
67
+
68
+ # ============================================================================
69
+ # CAPABILITIES: What this orchestrator can do
70
+ # ============================================================================
71
+ capabilities:
72
+ # Domains: High-level problem spaces this agent operates in
73
+ domains:
74
+ - workflow-orchestration # Design and execute multi-step workflows
75
+ - agent-coordination # Discover, route, and manage agents
76
+ - resource-allocation # Distribute compute/memory/tokens across agents
77
+ - dependency-management # Handle execution order and data dependencies
78
+ - failure-recovery # Implement retry, compensation, and fallback logic
79
+
80
+ # Operations: Specific actions this agent can perform
81
+ operations:
82
+ - orchestrate-workflows # Create and execute workflow definitions
83
+ - coordinate-agents # Manage agent lifecycle and communication
84
+ - manage-dependencies # Resolve execution order based on data flow
85
+ - handle-failures # Execute compensation transactions on failure
86
+ - scale-resources # Dynamically allocate resources based on load
87
+ - monitor-execution # Track progress, metrics, and health
88
+
89
+ # Patterns: Architectural patterns this orchestrator implements
90
+ patterns:
91
+ - saga-pattern # Distributed transactions with compensation logic
92
+ - event-sourcing # Track workflow state as event stream
93
+ - choreography # Decentralized agent coordination via events
94
+ - orchestration # Centralized workflow control and state
95
+ - circuit-breaker # Prevent cascading failures via fault isolation
96
+
97
+ # ============================================================================
98
+ # PROTOCOLS: Communication methods for agent interaction
99
+ # ============================================================================
100
+ protocols:
101
+ supported:
102
+ # REST API: Synchronous request-response for workflow submission
103
+ - name: rest
104
+ version: '1.1'
105
+ endpoint: 'https://orchestrator.platform.com/api/v2'
106
+ authentication:
107
+ # OAuth2 for delegated authorization with scoped permissions
108
+ type: oauth2
109
+ scopes:
110
+ # orchestrator.execute: Submit and control workflows
111
+ # agents.coordinate: Discover and communicate with agents
112
+ # resources.manage: Allocate compute/memory/token budgets
113
+ ['orchestrator.execute', 'agents.coordinate', 'resources.manage']
114
+ # TLS 1.3 for encrypted transport
115
+ tls: true
116
+
117
+ # gRPC: High-performance RPC for agent-to-agent communication
118
+ - name: grpc
119
+ version: '1.0'
120
+ endpoint: 'grpc://orchestrator.platform.com:9443/WorkflowOrchestrator'
121
+ authentication:
122
+ # Mutual TLS for bidirectional authentication and encryption
123
+ type: mutual-tls
124
+
125
+ # Event Stream: Asynchronous updates for workflow state changes
126
+ - name: event-stream
127
+ version: '1.0'
128
+ endpoint: 'wss://events.platform.com/orchestrator'
129
+ authentication:
130
+ # JWT tokens for stateless WebSocket authentication
131
+ type: jwt
132
+
133
+ # ============================================================================
134
+ # COORDINATION: Multi-agent workflow management configuration
135
+ # ============================================================================
136
+ coordination:
137
+ # Maximum concurrent workflows this orchestrator can manage
138
+ # - Higher values increase throughput but require more memory
139
+ # - Should align with available resources and agent pool size
140
+ maxConcurrentWorkflows: 1000
141
+
142
+ # Maximum agents that can participate in a single workflow
143
+ # - Limits complexity and prevents resource exhaustion
144
+ # - Should consider coordination overhead (O(n²) for full mesh)
145
+ maxAgentsPerWorkflow: 50
146
+
147
+ # Maximum time (ms) a workflow can run before forced termination
148
+ # - Prevents runaway workflows from consuming resources
149
+ # - 3600000ms = 1 hour (should include all retries and compensation)
150
+ workflowTimeout: 3600000
151
+
152
+ # Retry policy for failed workflow steps
153
+ retryPolicy:
154
+ # Maximum retry attempts before marking step as failed
155
+ maxAttempts: 3
156
+
157
+ # Exponential backoff: delay = baseDelay * 2^(attempt - 1)
158
+ # - Attempt 1: 1000ms, Attempt 2: 2000ms, Attempt 3: 4000ms
159
+ # - Prevents thundering herd on transient failures
160
+ backoffStrategy: exponential
161
+ baseDelay: 1000
162
+
163
+ # Failure handling strategy for workflow execution
164
+ failureHandling:
165
+ # graceful-degradation: Continue workflow with partial results
166
+ # fail-fast: Immediately abort workflow on any failure
167
+ # best-effort: Try all steps even if some fail
168
+ strategy: graceful-degradation
169
+
170
+ # Enable fallback workflows when primary workflow fails
171
+ # - Provides alternative execution paths for critical workflows
172
+ # - Example: Use cached data if real-time API fails
173
+ fallbackWorkflows: true
174
+
175
+ # Enable compensation actions for saga pattern
176
+ # - Rollback completed steps when later steps fail
177
+ # - Example: Cancel payment if shipping address validation fails
178
+ compensationActions: true
179
+
180
+ # ============================================================================
181
+ # PERFORMANCE: Throughput, latency, and resource optimization
182
+ # ============================================================================
183
+ performance:
184
+ # Throughput targets for capacity planning
185
+ throughput:
186
+ # Target workflows processed per second (sustained load)
187
+ workflowsPerSecond: 50
188
+
189
+ # Maximum workflows executing simultaneously (burst capacity)
190
+ maxConcurrentExecutions: 500
191
+
192
+ # Latency targets for SLA monitoring
193
+ latency:
194
+ # Overhead added by orchestration layer (ms)
195
+ # - Includes workflow parsing, agent routing, result aggregation
196
+ orchestrationOverhead: 50
197
+
198
+ # Average latency for agent-to-agent coordination (ms)
199
+ # - Includes service discovery, health checks, message routing
200
+ coordinationLatency: 100
201
+
202
+ # 99th percentile end-to-end latency (ms)
203
+ # - Used for SLA enforcement and performance regression detection
204
+ p99: 2000
205
+
206
+ # ============================================================================
207
+ # MONITORING: Observability configuration for production operations
208
+ # ============================================================================
209
+ monitoring:
210
+ # Track workflow state transitions and execution history
211
+ # - Enables workflow replay and debugging
212
+ workflowTracking: true
213
+
214
+ # Periodic health checks for all managed agents
215
+ # - Automatically remove unhealthy agents from routing pool
216
+ agentHealthChecks: true
217
+
218
+ # Collect and expose performance metrics (Prometheus format)
219
+ # - Request rate, latency, error rate, resource utilization
220
+ performanceMetrics: true
221
+
222
+ # Alerting thresholds for operational issues
223
+ alerting:
224
+ # Trigger alert after N consecutive workflow failures
225
+ failureThreshold: 5
226
+
227
+ # Trigger alert when p99 latency exceeds threshold (ms)
228
+ latencyThreshold: 5000
229
+
230
+ # Trigger alert when resource utilization exceeds percentage
231
+ # - Applies to CPU, memory, token budget, agent pool
232
+ resourceThreshold: 90
233
+
234
+ # ============================================================================
235
+ # END OF MANIFEST
236
+ # ============================================================================
237
+ # Next Steps:
238
+ # 1. Deploy using: kubectl apply -f orchestrator-agent.yaml
239
+ # 2. Monitor via: /metrics endpoint (Prometheus format)
240
+ # 3. Submit workflows via: POST /api/v2/workflows/execute
241
+ # 4. View workflow status: GET /api/v2/workflows/{workflowId}
242
+ #
243
+ # Related Documentation:
244
+ # - OSSA Spec: https://ossa.ai/spec
245
+ # - Orchestration Patterns: https://microservices.io/patterns/data/saga.html
246
+ # - Agent Coordination: https://ossa.ai/docs/orchestration
247
+ # ============================================================================
@@ -0,0 +1,147 @@
1
+ apiVersion: ossa.io/v0.1.9-alpha.1
2
+ kind: Agent
3
+ metadata:
4
+ name: financial-data-processor
5
+ version: v1.2.3
6
+ description: 'Enterprise-grade financial data processing agent with full OSSA Gold compliance'
7
+ author: 'enterprise-financial-corp'
8
+ labels:
9
+ environment: production
10
+ classification: confidential
11
+ industry: financial-services
12
+ compliance: gold-level
13
+ spec:
14
+ type: worker
15
+ subtype: data-processor
16
+ capabilities:
17
+ domains:
18
+ - data-processing
19
+ - financial-analysis
20
+ - compliance-validation
21
+ - audit-trail-generation
22
+ operations:
23
+ - process-transactions
24
+ - validate-compliance
25
+ - generate-reports
26
+ - audit-logging
27
+ inputFormats:
28
+ - application/json
29
+ - text/csv
30
+ - application/xml
31
+ outputFormats:
32
+ - application/json
33
+ - application/pdf
34
+ - text/csv
35
+ protocols:
36
+ supported:
37
+ - name: rest
38
+ version: '1.1'
39
+ endpoint: 'https://api.enterprise.com/agents/financial-processor'
40
+ authentication:
41
+ type: oauth2
42
+ scopes: ['agent.execute', 'data.read', 'audit.write']
43
+ tls: true
44
+ timeout: 30000
45
+ - name: grpc
46
+ version: '1.0'
47
+ endpoint: 'grpc://secure.enterprise.com:9443/FinancialProcessor'
48
+ authentication:
49
+ type: mutual-tls
50
+ tls: true
51
+ timeout: 30000
52
+ - name: mcp
53
+ version: '0.1.0'
54
+ endpoint: 'mcp://internal.enterprise.com:8080/financial-processor'
55
+ authentication:
56
+ type: api-key
57
+ tls: true
58
+ timeout: 15000
59
+ preferred: rest
60
+ conformance:
61
+ level: gold
62
+ auditLogging: true
63
+ feedbackLoop: true
64
+ propsTokens: true
65
+ learningSignals: true
66
+ features:
67
+ - continuous-monitoring
68
+ - automated-compliance
69
+ - real-time-audit
70
+ - human-oversight-integration
71
+ performance:
72
+ throughput:
73
+ requestsPerSecond: 100
74
+ concurrentRequests: 50
75
+ batchSize: 1000
76
+ latency:
77
+ p50: 150
78
+ p95: 500
79
+ p99: 1000
80
+ timeout: 30000
81
+ reliability:
82
+ availability: 99.95
83
+ errorRate: 0.01
84
+ mttr: 300
85
+ budgets:
86
+ tokens:
87
+ default: 5000
88
+ maximum: 50000
89
+ emergency: 100000
90
+ cost:
91
+ hourly: 10.50
92
+ daily: 252.00
93
+ monthly: 7560.00
94
+ resources:
95
+ cpu: '2000m'
96
+ memory: '4Gi'
97
+ storage: '10Gi'
98
+ security:
99
+ encryption:
100
+ atRest: true
101
+ inTransit: true
102
+ algorithms: ['AES-256-GCM', 'RSA-4096']
103
+ access:
104
+ authentication: required
105
+ authorization: rbac
106
+ auditLevel: comprehensive
107
+ compliance:
108
+ frameworks:
109
+ - iso-42001
110
+ - nist-ai-rmf
111
+ - eu-ai-act
112
+ - pci-dss
113
+ - sox
114
+ certifications:
115
+ - iso-27001
116
+ - soc2-type2
117
+ dataProtection:
118
+ - gdpr
119
+ - ccpa
120
+ - pii-handling
121
+ monitoring:
122
+ healthCheck:
123
+ endpoint: '/health'
124
+ interval: 30
125
+ timeout: 5
126
+ metrics:
127
+ endpoint: '/metrics'
128
+ format: prometheus
129
+ retention: '7d'
130
+ logging:
131
+ level: info
132
+ format: structured
133
+ destination: enterprise-audit-log
134
+ retention: '2y'
135
+ governance:
136
+ approvals:
137
+ deployment: ['security-officer', 'compliance-manager']
138
+ updates: ['technical-lead', 'compliance-manager']
139
+ retirement: ['security-officer', 'data-officer', 'compliance-manager']
140
+ policies:
141
+ - financial-data-policy-v2.1
142
+ - enterprise-security-policy-v3.0
143
+ - ai-governance-policy-v1.5
144
+ documentation:
145
+ - https://docs.enterprise.com/agents/financial-processor
146
+ - https://compliance.enterprise.com/agent-certifications/fp-v1.2.3
147
+ - https://security.enterprise.com/risk-assessments/fp-2024-q1