@bluefly/openstandardagents 0.3.1 → 0.3.2

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 (338) hide show
  1. package/.devfile.yaml +87 -0
  2. package/.gitlab-ci-trigger +1 -0
  3. package/.wiki-config.json +24 -0
  4. package/CHANGELOG.md +212 -1
  5. package/README.md +31 -56
  6. package/dist/adapters/anthropic/runtime.js +2 -2
  7. package/dist/adapters/anthropic/runtime.js.map +1 -1
  8. package/dist/bot/architecture-validator-bot.d.ts +8 -0
  9. package/dist/bot/architecture-validator-bot.d.ts.map +1 -0
  10. package/dist/bot/architecture-validator-bot.js +15 -0
  11. package/dist/bot/architecture-validator-bot.js.map +1 -0
  12. package/dist/bot/ci-pipeline-bot.d.ts +7 -0
  13. package/dist/bot/ci-pipeline-bot.d.ts.map +1 -0
  14. package/dist/bot/ci-pipeline-bot.js +7 -0
  15. package/dist/bot/ci-pipeline-bot.js.map +1 -0
  16. package/dist/bot/compliance-bot.d.ts +56 -0
  17. package/dist/bot/compliance-bot.d.ts.map +1 -0
  18. package/dist/bot/compliance-bot.js +203 -0
  19. package/dist/bot/compliance-bot.js.map +1 -0
  20. package/dist/bot/dependency-updater-bot.d.ts +9 -0
  21. package/dist/bot/dependency-updater-bot.d.ts.map +1 -0
  22. package/dist/bot/dependency-updater-bot.js +9 -0
  23. package/dist/bot/dependency-updater-bot.js.map +1 -0
  24. package/dist/bot/security-scanner-bot.d.ts +11 -0
  25. package/dist/bot/security-scanner-bot.d.ts.map +1 -0
  26. package/dist/bot/security-scanner-bot.js +21 -0
  27. package/dist/bot/security-scanner-bot.js.map +1 -0
  28. package/dist/cli/commands/agent-card.command.d.ts +11 -0
  29. package/dist/cli/commands/agent-card.command.d.ts.map +1 -0
  30. package/dist/cli/commands/agent-card.command.js +285 -0
  31. package/dist/cli/commands/agent-card.command.js.map +1 -0
  32. package/dist/cli/commands/agents.command.d.ts +11 -0
  33. package/dist/cli/commands/agents.command.d.ts.map +1 -0
  34. package/dist/cli/commands/agents.command.js +326 -0
  35. package/dist/cli/commands/agents.command.js.map +1 -0
  36. package/dist/cli/commands/generate.command.d.ts +13 -2
  37. package/dist/cli/commands/generate.command.d.ts.map +1 -1
  38. package/dist/cli/commands/generate.command.js +204 -29
  39. package/dist/cli/commands/generate.command.js.map +1 -1
  40. package/dist/cli/commands/registry.command.d.ts +14 -0
  41. package/dist/cli/commands/registry.command.d.ts.map +1 -0
  42. package/dist/cli/commands/registry.command.js +428 -0
  43. package/dist/cli/commands/registry.command.js.map +1 -0
  44. package/dist/cli/commands/workspace.command.d.ts +14 -0
  45. package/dist/cli/commands/workspace.command.d.ts.map +1 -0
  46. package/dist/cli/commands/workspace.command.js +467 -0
  47. package/dist/cli/commands/workspace.command.js.map +1 -0
  48. package/dist/cli/index.js +9 -0
  49. package/dist/cli/index.js.map +1 -1
  50. package/dist/di-container.d.ts.map +1 -1
  51. package/dist/di-container.js +20 -0
  52. package/dist/di-container.js.map +1 -1
  53. package/dist/services/codegen/codegen.service.d.ts +75 -0
  54. package/dist/services/codegen/codegen.service.d.ts.map +1 -0
  55. package/dist/services/codegen/codegen.service.js +136 -0
  56. package/dist/services/codegen/codegen.service.js.map +1 -0
  57. package/dist/services/codegen/generators/manifest.generator.d.ts +41 -0
  58. package/dist/services/codegen/generators/manifest.generator.d.ts.map +1 -0
  59. package/dist/services/codegen/generators/manifest.generator.js +178 -0
  60. package/dist/services/codegen/generators/manifest.generator.js.map +1 -0
  61. package/dist/services/codegen/generators/openapi.generator.d.ts +46 -0
  62. package/dist/services/codegen/generators/openapi.generator.d.ts.map +1 -0
  63. package/dist/services/codegen/generators/openapi.generator.js +157 -0
  64. package/dist/services/codegen/generators/openapi.generator.js.map +1 -0
  65. package/dist/services/codegen/generators/types.generator.d.ts +27 -0
  66. package/dist/services/codegen/generators/types.generator.d.ts.map +1 -0
  67. package/dist/services/codegen/generators/types.generator.js +97 -0
  68. package/dist/services/codegen/generators/types.generator.js.map +1 -0
  69. package/dist/services/codegen/generators/vscode.generator.d.ts +43 -0
  70. package/dist/services/codegen/generators/vscode.generator.d.ts.map +1 -0
  71. package/dist/services/codegen/generators/vscode.generator.js +163 -0
  72. package/dist/services/codegen/generators/vscode.generator.js.map +1 -0
  73. package/dist/services/codegen/generators/zod.generator.d.ts +31 -0
  74. package/dist/services/codegen/generators/zod.generator.d.ts.map +1 -0
  75. package/dist/services/codegen/generators/zod.generator.js +134 -0
  76. package/dist/services/codegen/generators/zod.generator.js.map +1 -0
  77. package/dist/services/codegen/index.d.ts +33 -0
  78. package/dist/services/codegen/index.d.ts.map +1 -0
  79. package/dist/services/codegen/index.js +36 -0
  80. package/dist/services/codegen/index.js.map +1 -0
  81. package/dist/spec/extensions/openapi/ossa-openapi-extensions.schema.json +804 -0
  82. package/dist/spec/v0.3.0/examples/drupal-content-writer.ossa.yaml +1 -1
  83. package/dist/spec/v0.3.0/examples/drupal-moderation-assistant.ossa.yaml +1 -1
  84. package/dist/spec/v0.3.0/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +1 -1
  85. package/dist/spec/v0.3.0/runtime-bindings/anthropic.yaml +209 -0
  86. package/dist/spec/v0.3.1/examples/agent-with-identity.ossa.yaml +68 -0
  87. package/dist/spec/v0.3.1/examples/drupal-content-writer.ossa.yaml +1 -1
  88. package/dist/spec/v0.3.1/examples/drupal-moderation-assistant.ossa.yaml +1 -1
  89. package/dist/spec/v0.3.1/examples/multi-provider-identity.ossa.yaml +236 -0
  90. package/dist/spec/v0.3.1/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +1 -1
  91. package/dist/spec/v0.3.1/extensions/agent-identity.yaml +594 -0
  92. package/dist/spec/v0.3.1/ossa-0.3.1.schema.json +300 -21
  93. package/dist/spec/v0.3.2/MIGRATION-v0.3.1-to-v0.3.2.md +293 -0
  94. package/dist/spec/v0.3.2/UNIFIED-SCHEMA.md +120 -0
  95. package/dist/spec/v0.3.2/access_tiers.yaml +375 -0
  96. package/dist/spec/v0.3.2/adapters/drupal.md +541 -0
  97. package/dist/spec/v0.3.2/adapters/symfony.md +659 -0
  98. package/dist/spec/v0.3.2/agent-test.schema.json +75 -0
  99. package/dist/spec/v0.3.2/examples/access-tiers/README.md +106 -0
  100. package/dist/spec/v0.3.2/examples/access-tiers/code-critic.ossa.yaml +119 -0
  101. package/dist/spec/v0.3.2/examples/access-tiers/compliance-governor.ossa.yaml +234 -0
  102. package/dist/spec/v0.3.2/examples/access-tiers/deployment-operator.ossa.yaml +201 -0
  103. package/dist/spec/v0.3.2/examples/access-tiers/doc-generator.ossa.yaml +117 -0
  104. package/dist/spec/v0.3.2/examples/access-tiers/security-scanner.ossa.yaml +133 -0
  105. package/dist/spec/v0.3.2/examples/agent-with-identity.ossa.yaml +68 -0
  106. package/dist/spec/v0.3.2/examples/drupal-content-writer.ossa.yaml +110 -0
  107. package/dist/spec/v0.3.2/examples/drupal-moderation-assistant.ossa.yaml +96 -0
  108. package/dist/spec/v0.3.2/examples/multi-provider-identity.ossa.yaml +236 -0
  109. package/dist/spec/v0.3.2/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +144 -0
  110. package/dist/spec/v0.3.2/examples/tasks/data-transform.ossa.yaml +147 -0
  111. package/dist/spec/v0.3.2/examples/tasks/publish-content.ossa.yaml +125 -0
  112. package/dist/spec/v0.3.2/examples/workflows/content-publishing.ossa.yaml +190 -0
  113. package/dist/spec/v0.3.2/examples/workflows/deployment-pipeline.ossa.yaml +247 -0
  114. package/dist/spec/v0.3.2/extensions/agent-identity.yaml +594 -0
  115. package/dist/spec/v0.3.2/extensions/drupal.md +417 -0
  116. package/dist/spec/v0.3.2/infrastructure/service-ports.yaml +324 -0
  117. package/dist/spec/{v0.3.1/ossa-0.3.0.schema.json → v0.3.2/ossa-0.3.2.schema.json} +563 -34
  118. package/dist/spec/v0.3.2/protocols/delegation.yaml +239 -0
  119. package/dist/spec/v0.3.2/protocols/sse.md +494 -0
  120. package/dist/spec/v0.3.2/protocols/webrtc.md +600 -0
  121. package/dist/spec/v0.3.2/protocols/websocket.md +362 -0
  122. package/dist/spec/v0.3.2/runtime/RUNTIME.md +457 -0
  123. package/dist/spec/v0.3.2/runtime/memory-model.yaml +871 -0
  124. package/dist/spec/v0.3.2/runtime/runtime.yaml +926 -0
  125. package/dist/spec/v0.3.2/schemas/agent-unified.yaml +165 -0
  126. package/dist/spec/v0.3.2/schemas/capabilities.yaml +102 -0
  127. package/dist/spec/v0.3.2/schemas/functions.yaml +75 -0
  128. package/dist/spec/v0.3.2/schemas/messaging/channel.schema.json +245 -0
  129. package/dist/spec/v0.3.2/schemas/messaging/delivery-receipt.schema.json +192 -0
  130. package/dist/spec/v0.3.2/schemas/messaging/message.schema.json +205 -0
  131. package/dist/spec/v0.3.2/schemas/messaging/subscription.schema.json +214 -0
  132. package/dist/spec/v0.3.2/schemas/runtime.yaml +102 -0
  133. package/dist/spec/v0.3.2/schemas/taxonomy.yaml +533 -0
  134. package/dist/spec/v0.3.2/schemas/unified-llm.yaml +91 -0
  135. package/dist/spec/v0.3.2/taxonomy.yaml +363 -0
  136. package/dist/types/generated/ossa-0.3.2.types.d.ts +367 -0
  137. package/dist/types/generated/ossa-0.3.2.types.d.ts.map +1 -0
  138. package/dist/types/generated/ossa-0.3.2.types.js +10 -0
  139. package/dist/types/generated/ossa-0.3.2.types.js.map +1 -0
  140. package/dist/types/generated/ossa-0.3.2.zod.d.ts +36 -0
  141. package/dist/types/generated/ossa-0.3.2.zod.d.ts.map +1 -0
  142. package/dist/types/generated/ossa-0.3.2.zod.js +25 -0
  143. package/dist/types/generated/ossa-0.3.2.zod.js.map +1 -0
  144. package/examples/adapters/drupal-eca-mapping.yaml +1 -1
  145. package/examples/adapters/drupal-eca-task.yaml +1 -1
  146. package/examples/adapters/drupal-flowdrop-mapping.yaml +1 -1
  147. package/examples/adapters/drupal-maestro-mapping.yaml +1 -1
  148. package/examples/adapters/mistral-agent.yaml +1 -1
  149. package/examples/adapters/symfony-messenger-task.yaml +1 -1
  150. package/examples/adapters/symfony-messenger-workflow.yaml +1 -1
  151. package/examples/adk-integration/code-review-workflow.yml +1 -1
  152. package/examples/adk-integration/customer-support.yml +1 -1
  153. package/examples/adk-integration/data-pipeline.yml +1 -1
  154. package/examples/advanced/reasoning-agent.yaml +1 -1
  155. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  156. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  157. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  158. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  159. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  160. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  161. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  162. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  163. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  164. package/examples/agents/architecture-healer-enterprise.yaml +1 -1
  165. package/examples/agents/dependency-healer-npm.yaml +1 -1
  166. package/examples/agents/spec-healer-openapi.yaml +1 -1
  167. package/examples/agents/wiki-healer-production.yaml +1 -1
  168. package/examples/agents-md/code-agent.ossa.json +36 -11
  169. package/examples/agents-md/monorepo-agent.ossa.yaml +1 -1
  170. package/examples/anthropic/claude-assistant.ossa.json +4 -4
  171. package/examples/autogen/multi-agent.ossa.json +2 -2
  172. package/examples/autonomous-evolution/self-evolving-agent.ossa.yaml +1 -1
  173. package/examples/claude-code/code-reviewer.ossa.yaml +1 -1
  174. package/examples/claude-code/ossa-validator.ossa.yaml +1 -1
  175. package/examples/common_npm/agent-router.ossa.yaml +1 -1
  176. package/examples/contracts/data-consumer.ossa.yaml +1 -1
  177. package/examples/contracts/data-producer-v2.ossa.yaml +1 -1
  178. package/examples/contracts/data-producer.ossa.yaml +1 -1
  179. package/examples/crewai/research-team.ossa.json +2 -2
  180. package/examples/cursor/code-review-agent.ossa.json +2 -2
  181. package/examples/drupal/ai_agents_ossa-module/.agents/example-agent/agent.ossa.yaml +1 -1
  182. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -1
  183. package/examples/extensions/agents-md-advanced.yml +1 -1
  184. package/examples/extensions/agents-md-basic.yml +1 -1
  185. package/examples/extensions/agents-md-sync.yml +1 -1
  186. package/examples/extensions/agents-md-v1.yml +1 -1
  187. package/examples/extensions/drupal-v1.yml +1 -1
  188. package/examples/extensions/encryption-multi-provider.yaml +4 -4
  189. package/examples/extensions/kagent-v1.yml +1 -1
  190. package/examples/extensions/knowledge-sources.yaml +1 -1
  191. package/examples/extensions/mcp-full-featured.yaml +1 -1
  192. package/examples/getting-started/01-minimal-agent.ossa.yaml +3 -3
  193. package/examples/getting-started/02-agent-with-tools.ossa.yaml +1 -1
  194. package/examples/getting-started/03-agent-with-safety.ossa.yaml +1 -1
  195. package/examples/getting-started/04-agent-with-messaging.ossa.yaml +2 -2
  196. package/examples/getting-started/05-workflow-composition.ossa.yaml +1 -1
  197. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  198. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  199. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  200. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  201. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  202. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -1
  203. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  204. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  205. package/examples/langchain/chain-agent.ossa.json +2 -2
  206. package/examples/langflow/workflow-agent.ossa.json +2 -2
  207. package/examples/langgraph/state-machine-agent.ossa.json +2 -2
  208. package/examples/llamaindex/rag-agent.ossa.json +2 -2
  209. package/examples/messaging/dependency-healer.ossa.yaml +1 -1
  210. package/examples/messaging/incident-responder.ossa.yaml +1 -1
  211. package/examples/messaging/routing-rules.ossa.yaml +3 -3
  212. package/examples/messaging/security-scanner.ossa.yaml +1 -1
  213. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  214. package/examples/multi-agent/conditional-router.ossa.yaml +1 -1
  215. package/examples/multi-agent/parallel-execution.ossa.yaml +1 -1
  216. package/examples/multi-agent/sequential-pipeline.ossa.yaml +1 -1
  217. package/examples/observability/activity-stream-full.yaml +1 -1
  218. package/examples/openai/basic-agent.ossa.yaml +1 -1
  219. package/examples/openai/multi-tool-agent.ossa.json +2 -2
  220. package/examples/openai/swarm-agent.ossa.json +2 -2
  221. package/examples/production/document-analyzer-openai.yml +1 -1
  222. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  223. package/examples/real-world/gitlab-cicd-optimizer.ossa.yaml +1 -1
  224. package/examples/real-world/rag-documentation-assistant.ossa.yaml +1 -1
  225. package/examples/runtime-adapters/bedrock-claude-example.ossa.yaml +1 -1
  226. package/examples/schema/reusable-components.yaml +1 -1
  227. package/examples/showcase/ci-pipeline.ossa.yaml +59 -0
  228. package/examples/showcase/code-assistant.ossa.yaml +118 -0
  229. package/examples/showcase/code-reviewer.ossa.yaml +61 -0
  230. package/examples/showcase/compliance-validator.ossa.yaml +62 -0
  231. package/examples/showcase/content-writer.ossa.yaml +67 -0
  232. package/examples/showcase/data-transformer.ossa.yaml +78 -0
  233. package/examples/showcase/doc-generator.ossa.yaml +68 -0
  234. package/examples/showcase/security-scanner.ossa.yaml +65 -0
  235. package/examples/showcase/test-generator.ossa.yaml +63 -0
  236. package/examples/showcase/workflow-orchestrator.ossa.yaml +129 -0
  237. package/examples/tasks/batch-email-sender.yaml +1 -1
  238. package/examples/tasks/data-transform.yaml +1 -1
  239. package/examples/tasks/publish-content.yaml +1 -1
  240. package/examples/templates/ossa-compliance.yaml +1 -1
  241. package/examples/unified/security-scanner.ossa.yaml +1 -1
  242. package/examples/vercel/edge-agent.ossa.json +2 -2
  243. package/examples/workflows/batch-email-campaign.yaml +1 -1
  244. package/examples/workflows/content-review-publish.yaml +1 -1
  245. package/examples/workflows/simple-etl.yaml +1 -1
  246. package/llms-ctx-full.txt +39 -0
  247. package/llms-ctx.txt +39 -0
  248. package/openapi/agent-communication.yaml +1 -1
  249. package/openapi/agent-crud.yaml +8 -8
  250. package/openapi/agent-discovery.yaml +2 -2
  251. package/openapi/agent-identity.yaml +8 -8
  252. package/openapi/cli-commands.openapi.yaml +231 -0
  253. package/openapi/core/ossa-core-api.openapi.yaml +1 -1
  254. package/openapi/core/ossa-registry-api.openapi.yaml +1 -1
  255. package/openapi/core/ossa-registry.openapi.yaml +1 -1
  256. package/openapi/core/unified-agent-gateway.openapi.yaml +1 -1
  257. package/openapi/github-sync.yaml +1 -1
  258. package/openapi/protocols/sse-streams.yaml +1 -1
  259. package/openapi/protocols/websocket-events.yaml +2 -2
  260. package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +2 -2
  261. package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +1 -1
  262. package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +1 -1
  263. package/openapi/reference-implementations/critic-agent-api.openapi.yaml +2 -2
  264. package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +2 -2
  265. package/openapi/reference-implementations/drupal-agent-api.openapi.yaml +1 -1
  266. package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +1 -1
  267. package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +2 -2
  268. package/openapi/reference-implementations/governor-agent-api.openapi.yaml +1 -1
  269. package/openapi/reference-implementations/helm-generator.openapi.yaml +1 -1
  270. package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +1 -1
  271. package/openapi/reference-implementations/judge-agent-api.openapi.yaml +1 -1
  272. package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +2 -2
  273. package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +1 -1
  274. package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +2 -2
  275. package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +1 -1
  276. package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +2 -2
  277. package/openapi/reference-implementations/self-evolving-ecosystem.openapi.yaml +1 -1
  278. package/openapi/reference-implementations/worker-agent-api.openapi.yaml +2 -2
  279. package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +1 -1
  280. package/package.json +13 -3
  281. package/spec/extensions/openapi/ossa-openapi-extensions.schema.json +804 -0
  282. package/spec/v0.3.0/examples/drupal-content-writer.ossa.yaml +1 -1
  283. package/spec/v0.3.0/examples/drupal-moderation-assistant.ossa.yaml +1 -1
  284. package/spec/v0.3.0/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +1 -1
  285. package/spec/v0.3.0/runtime-bindings/anthropic.yaml +209 -0
  286. package/spec/v0.3.1/examples/agent-with-identity.ossa.yaml +68 -0
  287. package/spec/v0.3.1/examples/drupal-content-writer.ossa.yaml +1 -1
  288. package/spec/v0.3.1/examples/drupal-moderation-assistant.ossa.yaml +1 -1
  289. package/spec/v0.3.1/examples/multi-provider-identity.ossa.yaml +236 -0
  290. package/spec/v0.3.1/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +1 -1
  291. package/spec/v0.3.1/extensions/agent-identity.yaml +594 -0
  292. package/spec/v0.3.1/ossa-0.3.1.schema.json +300 -21
  293. package/spec/v0.3.2/MIGRATION-v0.3.1-to-v0.3.2.md +293 -0
  294. package/spec/v0.3.2/UNIFIED-SCHEMA.md +120 -0
  295. package/spec/v0.3.2/access_tiers.yaml +375 -0
  296. package/spec/v0.3.2/adapters/drupal.md +541 -0
  297. package/spec/v0.3.2/adapters/symfony.md +659 -0
  298. package/spec/v0.3.2/agent-test.schema.json +75 -0
  299. package/spec/v0.3.2/examples/access-tiers/README.md +106 -0
  300. package/spec/v0.3.2/examples/access-tiers/code-critic.ossa.yaml +119 -0
  301. package/spec/v0.3.2/examples/access-tiers/compliance-governor.ossa.yaml +234 -0
  302. package/spec/v0.3.2/examples/access-tiers/deployment-operator.ossa.yaml +201 -0
  303. package/spec/v0.3.2/examples/access-tiers/doc-generator.ossa.yaml +117 -0
  304. package/spec/v0.3.2/examples/access-tiers/security-scanner.ossa.yaml +133 -0
  305. package/spec/v0.3.2/examples/agent-with-identity.ossa.yaml +68 -0
  306. package/spec/v0.3.2/examples/drupal-content-writer.ossa.yaml +110 -0
  307. package/spec/v0.3.2/examples/drupal-moderation-assistant.ossa.yaml +96 -0
  308. package/spec/v0.3.2/examples/multi-provider-identity.ossa.yaml +236 -0
  309. package/spec/v0.3.2/examples/quick-wins/complete-agent-with-quick-wins.ossa.yaml +144 -0
  310. package/spec/v0.3.2/examples/tasks/data-transform.ossa.yaml +147 -0
  311. package/spec/v0.3.2/examples/tasks/publish-content.ossa.yaml +125 -0
  312. package/spec/v0.3.2/examples/workflows/content-publishing.ossa.yaml +190 -0
  313. package/spec/v0.3.2/examples/workflows/deployment-pipeline.ossa.yaml +247 -0
  314. package/spec/v0.3.2/extensions/agent-identity.yaml +594 -0
  315. package/spec/v0.3.2/extensions/drupal.md +417 -0
  316. package/spec/v0.3.2/infrastructure/service-ports.yaml +324 -0
  317. package/spec/{v0.3.1/ossa-0.3.0.schema.json → v0.3.2/ossa-0.3.2.schema.json} +563 -34
  318. package/spec/v0.3.2/protocols/delegation.yaml +239 -0
  319. package/spec/v0.3.2/protocols/sse.md +494 -0
  320. package/spec/v0.3.2/protocols/webrtc.md +600 -0
  321. package/spec/v0.3.2/protocols/websocket.md +362 -0
  322. package/spec/v0.3.2/runtime/RUNTIME.md +457 -0
  323. package/spec/v0.3.2/runtime/memory-model.yaml +871 -0
  324. package/spec/v0.3.2/runtime/runtime.yaml +926 -0
  325. package/spec/v0.3.2/schemas/agent-unified.yaml +165 -0
  326. package/spec/v0.3.2/schemas/capabilities.yaml +102 -0
  327. package/spec/v0.3.2/schemas/functions.yaml +75 -0
  328. package/spec/v0.3.2/schemas/messaging/channel.schema.json +245 -0
  329. package/spec/v0.3.2/schemas/messaging/delivery-receipt.schema.json +192 -0
  330. package/spec/v0.3.2/schemas/messaging/message.schema.json +205 -0
  331. package/spec/v0.3.2/schemas/messaging/subscription.schema.json +214 -0
  332. package/spec/v0.3.2/schemas/runtime.yaml +102 -0
  333. package/spec/v0.3.2/schemas/taxonomy.yaml +533 -0
  334. package/spec/v0.3.2/schemas/unified-llm.yaml +91 -0
  335. package/spec/v0.3.2/taxonomy.yaml +363 -0
  336. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +0 -60
  337. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +0 -68
  338. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +0 -106
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
- "$id": "https://openstandardagents.org/schemas/v0.3.1/manifest.json",
4
- "title": "OSSA v0.3.1 Manifest Schema",
5
- "description": "Open Standard for Scalable AI Agents (OSSA) v0.3.1 - Unified Task Schema. Supports Agent (agentic loops with LLM), Task (deterministic workflow steps), and Workflow (composition of Tasks and Agents) kinds Includes Agent-to-Agent Messaging Extension.",
3
+ "$id": "https://openstandardagents.org/schemas/v0.3.2/manifest.json",
4
+ "title": "OSSA v0.3.2 Manifest Schema",
5
+ "description": "Open Standard for Scalable AI Agents (OSSA) v0.3.2 - Unified Task Schema with Access Tiers & Separation of Duties. Supports Agent (agentic loops with LLM), Task (deterministic workflow steps), and Workflow (composition of Tasks and Agents) kinds. Includes Agent-to-Agent Messaging Extension and Access Control Tiers for privilege separation.",
6
6
  "type": "object",
7
7
  "required": [
8
8
  "apiVersion",
@@ -13,9 +13,9 @@
13
13
  "apiVersion": {
14
14
  "type": "string",
15
15
  "pattern": "^ossa/v(0\\.3\\.[0-9]+(-[a-zA-Z0-9]+)?|0\\.2\\.[2-9](-dev)?|1)(\\.[0-9]+)?(-[a-zA-Z0-9]+)?$",
16
- "description": "OSSA API version (v0.3.1+ supports Task and Workflow kinds)",
16
+ "description": "OSSA API version (v0.3.2+ supports Task and Workflow kinds)",
17
17
  "examples": [
18
- "ossa/v0.3.1",
18
+ "ossa/v0.3.2",
19
19
  "ossa/v1",
20
20
  "ossa/v0.2.9"
21
21
  ]
@@ -110,6 +110,447 @@
110
110
  }
111
111
  ],
112
112
  "definitions": {
113
+ "AccessTier": {
114
+ "type": "object",
115
+ "description": "Access tier configuration for separation of duties (v0.3.2+). Defines privilege levels and role separations for agents.",
116
+ "required": ["tier"],
117
+ "properties": {
118
+ "tier": {
119
+ "type": "string",
120
+ "enum": ["tier_1_read", "tier_2_write_limited", "tier_3_write_elevated", "tier_4_policy"],
121
+ "description": "Access tier level: tier_1_read (analyzers), tier_2_write_limited (workers), tier_3_write_elevated (operators), tier_4_policy (governors)"
122
+ },
123
+ "permissions": {
124
+ "type": "array",
125
+ "description": "Explicit permissions granted to this agent",
126
+ "items": {
127
+ "type": "string",
128
+ "enum": [
129
+ "read_code",
130
+ "read_configs",
131
+ "read_metrics",
132
+ "read_logs",
133
+ "read_issues",
134
+ "read_mrs",
135
+ "execute_queries",
136
+ "write_docs",
137
+ "write_tests",
138
+ "write_scaffolds",
139
+ "write_configs_draft",
140
+ "create_issues",
141
+ "create_mrs_draft",
142
+ "execute_sandboxed",
143
+ "write_production_code",
144
+ "merge_mrs",
145
+ "delete_branches",
146
+ "modify_infrastructure",
147
+ "modify_secrets",
148
+ "execute_deployments",
149
+ "modify_pipelines",
150
+ "modify_configs",
151
+ "execute_commands",
152
+ "define_policies",
153
+ "publish_policies",
154
+ "audit_compliance",
155
+ "report_violations"
156
+ ]
157
+ },
158
+ "uniqueItems": true
159
+ },
160
+ "prohibited": {
161
+ "type": "array",
162
+ "description": "Explicitly prohibited actions for this agent",
163
+ "items": {
164
+ "type": "string"
165
+ },
166
+ "uniqueItems": true
167
+ },
168
+ "audit_level": {
169
+ "type": "string",
170
+ "enum": ["standard", "detailed", "comprehensive"],
171
+ "default": "standard",
172
+ "description": "Audit logging level: standard (30 days), detailed (90 days), comprehensive (365 days)"
173
+ },
174
+ "requires_approval": {
175
+ "type": "boolean",
176
+ "default": false,
177
+ "description": "Whether operations require approval chain"
178
+ },
179
+ "approval_chain": {
180
+ "type": "string",
181
+ "enum": ["standard", "elevated", "critical"],
182
+ "description": "Approval workflow to use when requires_approval is true"
183
+ },
184
+ "isolation": {
185
+ "type": "string",
186
+ "enum": ["none", "standard", "strict"],
187
+ "default": "none",
188
+ "description": "Isolation level: none (default), standard (limited delegation), strict (no execution, policy only)"
189
+ }
190
+ },
191
+ "additionalProperties": false
192
+ },
193
+ "SeparationOfDuties": {
194
+ "type": "object",
195
+ "description": "Role separation rules for preventing conflicts of interest",
196
+ "properties": {
197
+ "role": {
198
+ "type": "string",
199
+ "description": "Primary role of this agent",
200
+ "enum": [
201
+ "analyzer",
202
+ "auditor",
203
+ "scanner",
204
+ "reviewer",
205
+ "monitor",
206
+ "generator",
207
+ "scaffolder",
208
+ "documenter",
209
+ "test_writer",
210
+ "deployer",
211
+ "operator",
212
+ "executor",
213
+ "maintainer",
214
+ "governor",
215
+ "policy_definer",
216
+ "compliance_officer",
217
+ "approver",
218
+ "critic",
219
+ "remediator",
220
+ "enforcer"
221
+ ]
222
+ },
223
+ "conflicts_with": {
224
+ "type": "array",
225
+ "description": "Roles that this agent must NOT also perform (separation of duties)",
226
+ "items": {
227
+ "type": "string"
228
+ },
229
+ "uniqueItems": true
230
+ },
231
+ "can_delegate_to": {
232
+ "type": "array",
233
+ "description": "Roles/tiers this agent can delegate tasks to",
234
+ "items": {
235
+ "type": "string"
236
+ },
237
+ "uniqueItems": true
238
+ },
239
+ "prohibited_actions": {
240
+ "type": "array",
241
+ "description": "Specific actions this role must never perform",
242
+ "items": {
243
+ "type": "string",
244
+ "enum": ["approve", "merge", "execute", "deploy", "delete", "modify_production", "define_policies", "bypass_approvals"]
245
+ },
246
+ "uniqueItems": true
247
+ }
248
+ },
249
+ "additionalProperties": false
250
+ },
251
+ "DelegationConfig": {
252
+ "type": "object",
253
+ "description": "Configuration for delegating tasks to other agents",
254
+ "properties": {
255
+ "enabled": {
256
+ "type": "boolean",
257
+ "default": true,
258
+ "description": "Whether this agent can delegate to others"
259
+ },
260
+ "allowed_tiers": {
261
+ "type": "array",
262
+ "description": "Tiers this agent can delegate to",
263
+ "items": {
264
+ "type": "string",
265
+ "enum": ["tier_1_read", "tier_2_write_limited", "tier_3_write_elevated"]
266
+ },
267
+ "uniqueItems": true
268
+ },
269
+ "allowed_operations": {
270
+ "type": "array",
271
+ "description": "Operations that can be delegated",
272
+ "items": {
273
+ "type": "string"
274
+ }
275
+ },
276
+ "requires": {
277
+ "type": "array",
278
+ "description": "Requirements for delegation",
279
+ "items": {
280
+ "type": "string",
281
+ "enum": ["delegation_token", "audit_trail", "violation_report", "task_specification", "approval"]
282
+ }
283
+ }
284
+ },
285
+ "additionalProperties": false
286
+ },
287
+ "TaxonomyClassification": {
288
+ "type": "object",
289
+ "description": "Hierarchical taxonomy classification for agents (v0.3.2+). Links to taxonomy.yaml spec.",
290
+ "required": ["domain"],
291
+ "properties": {
292
+ "domain": {
293
+ "type": "string",
294
+ "enum": ["security", "infrastructure", "documentation", "backend", "frontend", "data", "agents", "development", "content"],
295
+ "description": "Primary domain classification - every agent belongs to exactly one domain"
296
+ },
297
+ "subdomain": {
298
+ "type": "string",
299
+ "description": "Subdomain within the primary domain (e.g., auth, ci-cd, api-docs)"
300
+ },
301
+ "capability": {
302
+ "type": "string",
303
+ "pattern": "^[a-z][a-z0-9_]*$",
304
+ "description": "Primary capability this agent provides"
305
+ },
306
+ "concerns": {
307
+ "type": "array",
308
+ "description": "Cross-cutting concerns that apply to this agent",
309
+ "items": {
310
+ "type": "string",
311
+ "enum": ["quality", "observability", "governance", "performance", "architecture", "cost", "reliability"]
312
+ },
313
+ "uniqueItems": true
314
+ },
315
+ "recommended_tier": {
316
+ "type": "string",
317
+ "enum": ["tier_1_read", "tier_2_write_limited", "tier_3_write_elevated", "tier_4_policy"],
318
+ "description": "Recommended access tier based on domain defaults"
319
+ }
320
+ },
321
+ "additionalProperties": false
322
+ },
323
+ "AgentIdentity": {
324
+ "type": "object",
325
+ "description": "Comprehensive agent identity configuration for service accounts, authentication, and observability",
326
+ "properties": {
327
+ "provider": {
328
+ "type": "string",
329
+ "enum": ["gitlab", "github", "azure-devops", "bitbucket", "generic"],
330
+ "description": "Identity provider type for service account integration"
331
+ },
332
+ "service_account": {
333
+ "type": "object",
334
+ "description": "Service account details for automated operations",
335
+ "required": ["username", "email"],
336
+ "properties": {
337
+ "id": {
338
+ "oneOf": [{"type": "integer"}, {"type": "string"}],
339
+ "description": "Provider-specific account ID"
340
+ },
341
+ "username": {
342
+ "type": "string",
343
+ "pattern": "^[a-z0-9_\\[\\]-]+$",
344
+ "minLength": 1,
345
+ "maxLength": 64,
346
+ "description": "Service account username"
347
+ },
348
+ "email": {
349
+ "type": "string",
350
+ "format": "email",
351
+ "description": "Service account email for git attribution"
352
+ },
353
+ "display_name": {
354
+ "type": "string",
355
+ "description": "Human-readable display name"
356
+ },
357
+ "roles": {
358
+ "type": "array",
359
+ "items": {
360
+ "type": "string",
361
+ "enum": ["developer", "maintainer", "owner", "reporter", "guest"]
362
+ },
363
+ "description": "Roles assigned to this service account"
364
+ }
365
+ }
366
+ },
367
+ "authentication": {
368
+ "type": "object",
369
+ "description": "Authentication method configuration",
370
+ "properties": {
371
+ "method": {
372
+ "type": "string",
373
+ "enum": ["personal_access_token", "project_access_token", "group_access_token", "deploy_token", "oauth2", "ssh_key", "mtls", "github_app", "azure_service_principal"],
374
+ "default": "personal_access_token",
375
+ "description": "Authentication method type"
376
+ },
377
+ "scopes": {
378
+ "type": "array",
379
+ "items": {"type": "string"},
380
+ "description": "Required token scopes (provider-specific)"
381
+ },
382
+ "auto_refresh": {
383
+ "type": "boolean",
384
+ "default": false,
385
+ "description": "Automatically refresh token before expiry"
386
+ },
387
+ "expiry_warning_days": {
388
+ "type": "integer",
389
+ "default": 7,
390
+ "minimum": 1,
391
+ "maximum": 90,
392
+ "description": "Days before expiry to warn about token rotation"
393
+ },
394
+ "rotation_policy": {
395
+ "type": "object",
396
+ "properties": {
397
+ "enabled": {"type": "boolean", "default": false},
398
+ "interval_days": {"type": "integer", "default": 90, "minimum": 7, "maximum": 365},
399
+ "notify_on_rotation": {"type": "boolean", "default": true}
400
+ }
401
+ }
402
+ }
403
+ },
404
+ "token_source": {
405
+ "type": "object",
406
+ "description": "Token/credential source configuration with priority order",
407
+ "properties": {
408
+ "env_var": {
409
+ "type": "string",
410
+ "pattern": "^[A-Z][A-Z0-9_]*$",
411
+ "description": "Environment variable name containing the token (highest priority)"
412
+ },
413
+ "file_path": {
414
+ "type": "string",
415
+ "description": "Path to token file (second priority, supports ~ expansion)"
416
+ },
417
+ "vault": {
418
+ "type": "object",
419
+ "properties": {
420
+ "path": {"type": "string", "description": "Vault secret path"},
421
+ "key": {"type": "string", "default": "value"},
422
+ "role": {"type": "string", "description": "Vault role for authentication"}
423
+ }
424
+ },
425
+ "kubernetes_secret": {
426
+ "type": "object",
427
+ "properties": {
428
+ "name": {"type": "string"},
429
+ "namespace": {"type": "string"},
430
+ "key": {"type": "string", "default": "token"}
431
+ }
432
+ }
433
+ }
434
+ },
435
+ "patterns": {
436
+ "type": "array",
437
+ "items": {"type": "string"},
438
+ "description": "Glob patterns for auto-detection based on working directory (picomatch syntax)"
439
+ },
440
+ "fallback": {
441
+ "type": "array",
442
+ "items": {
443
+ "type": "object",
444
+ "required": ["provider", "service_account"],
445
+ "properties": {
446
+ "provider": {"type": "string", "enum": ["gitlab", "github", "azure-devops", "bitbucket", "generic"]},
447
+ "service_account": {"$ref": "#/definitions/AgentIdentity/properties/service_account"},
448
+ "token_source": {"$ref": "#/definitions/AgentIdentity/properties/token_source"},
449
+ "condition": {
450
+ "type": "object",
451
+ "properties": {
452
+ "pattern_match": {"type": "array", "items": {"type": "string"}},
453
+ "platform_unavailable": {"type": "boolean"}
454
+ }
455
+ }
456
+ }
457
+ },
458
+ "description": "Fallback identity chain for high availability"
459
+ },
460
+ "dora_tracking": {
461
+ "type": "object",
462
+ "description": "DORA metrics tracking configuration",
463
+ "properties": {
464
+ "enabled": {"type": "boolean", "default": false},
465
+ "metrics": {
466
+ "type": "array",
467
+ "items": {
468
+ "type": "string",
469
+ "enum": ["deployment_frequency", "lead_time", "change_failure_rate", "mttr"]
470
+ },
471
+ "uniqueItems": true
472
+ },
473
+ "labels": {
474
+ "type": "object",
475
+ "additionalProperties": {"type": "string"},
476
+ "description": "Additional labels for metrics"
477
+ },
478
+ "prometheus": {
479
+ "type": "object",
480
+ "properties": {
481
+ "push_gateway": {"type": "string", "format": "uri"},
482
+ "job_name": {"type": "string"}
483
+ }
484
+ }
485
+ }
486
+ },
487
+ "session": {
488
+ "type": "object",
489
+ "description": "Session management for Claude Code integration",
490
+ "properties": {
491
+ "init_on_start": {"type": "boolean", "default": true},
492
+ "propagate_to_subprocesses": {"type": "boolean", "default": true},
493
+ "git_attribution": {"type": "boolean", "default": true},
494
+ "heartbeat_interval": {"type": "integer", "default": 300, "minimum": 30, "maximum": 3600},
495
+ "timeout": {"type": "integer", "default": 3600, "minimum": 60, "maximum": 86400},
496
+ "hooks": {
497
+ "type": "object",
498
+ "properties": {
499
+ "pre_prompt_submit": {"type": "boolean", "default": true},
500
+ "post_session": {"type": "boolean", "default": false}
501
+ }
502
+ }
503
+ }
504
+ },
505
+ "observability": {
506
+ "type": "object",
507
+ "description": "OpenTelemetry service identity for distributed tracing",
508
+ "properties": {
509
+ "service_name": {"type": "string"},
510
+ "service_namespace": {"type": "string"},
511
+ "service_version": {"type": "string", "pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+(-[a-zA-Z0-9.]+)?$"},
512
+ "service_instance_id": {"type": "string"},
513
+ "resource_attributes": {
514
+ "type": "object",
515
+ "additionalProperties": {"type": "string"}
516
+ }
517
+ }
518
+ },
519
+ "security": {
520
+ "type": "object",
521
+ "description": "Security policies for identity management",
522
+ "properties": {
523
+ "token_encryption": {
524
+ "type": "string",
525
+ "enum": ["none", "at_rest", "in_transit", "both"],
526
+ "default": "both"
527
+ },
528
+ "minimum_token_length": {"type": "integer", "default": 32},
529
+ "prohibited_actions": {
530
+ "type": "array",
531
+ "items": {"type": "string"}
532
+ },
533
+ "required_approvals": {
534
+ "type": "object",
535
+ "properties": {
536
+ "force_push": {"type": "boolean", "default": true},
537
+ "delete_protected_branch": {"type": "boolean", "default": true},
538
+ "modify_ci_config": {"type": "boolean", "default": false}
539
+ }
540
+ },
541
+ "rate_limits": {
542
+ "type": "object",
543
+ "properties": {
544
+ "requests_per_minute": {"type": "integer", "default": 60},
545
+ "requests_per_hour": {"type": "integer", "default": 1000},
546
+ "git_operations_per_hour": {"type": "integer", "default": 100}
547
+ }
548
+ }
549
+ }
550
+ }
551
+ },
552
+ "additionalProperties": false
553
+ },
113
554
  "Metadata": {
114
555
  "type": "object",
115
556
  "required": [
@@ -513,7 +954,7 @@
513
954
  },
514
955
  "messaging": {
515
956
  "$ref": "#/definitions/MessagingExtension",
516
- "description": "Agent-to-agent messaging configuration (v0.3.1+)"
957
+ "description": "Agent-to-agent messaging configuration (v0.3.2+)"
517
958
  },
518
959
  "functions": {
519
960
  "type": "array",
@@ -523,27 +964,29 @@
523
964
  }
524
965
  },
525
966
  "identity": {
526
- "type": "object",
527
- "description": "OpenTelemetry service identity for tracing and observability",
528
- "properties": {
529
- "service_name": {
530
- "type": "string",
531
- "description": "Service name for OpenTelemetry traces"
532
- },
533
- "service_namespace": {
534
- "type": "string",
535
- "description": "Service namespace (e.g., production, staging, development)"
536
- },
537
- "service_version": {
538
- "type": "string",
539
- "description": "Service version (semver recommended)"
540
- },
541
- "service_instance_id": {
542
- "type": "string",
543
- "description": "Unique instance identifier"
544
- }
545
- },
546
- "additionalProperties": false
967
+ "$ref": "#/definitions/AgentIdentity",
968
+ "description": "Agent identity configuration including service accounts, authentication, and observability (v0.3.2+)"
969
+ },
970
+ "access": {
971
+ "$ref": "#/definitions/AccessTier",
972
+ "description": "Access tier configuration for separation of duties (v0.3.2+). Defines privilege level and allowed operations."
973
+ },
974
+ "separation": {
975
+ "$ref": "#/definitions/SeparationOfDuties",
976
+ "description": "Role separation configuration to prevent conflicts of interest (v0.3.2+)"
977
+ },
978
+ "delegation": {
979
+ "$ref": "#/definitions/DelegationConfig",
980
+ "description": "Delegation configuration for multi-agent hierarchies (v0.3.2+)"
981
+ },
982
+ "type": {
983
+ "type": "string",
984
+ "enum": ["analyzer", "worker", "operator", "supervisor", "orchestrator", "governor", "specialist", "critic"],
985
+ "description": "Agent type classification aligned with access tiers (v0.3.2+)"
986
+ },
987
+ "taxonomy": {
988
+ "$ref": "#/definitions/TaxonomyClassification",
989
+ "description": "Taxonomy classification for domain and cross-cutting concerns (v0.3.2+)"
547
990
  },
548
991
  "compliance": {
549
992
  "type": "object",
@@ -959,6 +1402,10 @@
959
1402
  },
960
1403
  "additionalProperties": false
961
1404
  }
1405
+ },
1406
+ "kubernetes": {
1407
+ "$ref": "#/definitions/KubernetesConfig",
1408
+ "description": "Kubernetes-specific configuration (KAS-inspired)"
962
1409
  }
963
1410
  },
964
1411
  "additionalProperties": false
@@ -1437,10 +1884,25 @@
1437
1884
  "type": "object",
1438
1885
  "description": "Conditions that trigger fallback",
1439
1886
  "properties": {
1440
- "on_error": { "type": "boolean", "description": "Trigger on any error from primary" },
1441
- "max_retries": { "type": "integer", "description": "Retries before falling back" },
1442
- "error_codes": { "type": "array", "items": { "type": "integer" }, "description": "Specific error codes to trigger on" },
1443
- "latency_threshold_ms": { "type": "integer", "description": "Trigger when latency exceeds this threshold" }
1887
+ "on_error": {
1888
+ "type": "boolean",
1889
+ "description": "Trigger on any error from primary"
1890
+ },
1891
+ "max_retries": {
1892
+ "type": "integer",
1893
+ "description": "Retries before falling back"
1894
+ },
1895
+ "error_codes": {
1896
+ "type": "array",
1897
+ "items": {
1898
+ "type": "integer"
1899
+ },
1900
+ "description": "Specific error codes to trigger on"
1901
+ },
1902
+ "latency_threshold_ms": {
1903
+ "type": "integer",
1904
+ "description": "Trigger when latency exceeds this threshold"
1905
+ }
1444
1906
  },
1445
1907
  "additionalProperties": true
1446
1908
  }
@@ -1611,10 +2073,14 @@
1611
2073
  "approval_required": {
1612
2074
  "description": "Whether human approval is required, or list of specific actions requiring approval",
1613
2075
  "anyOf": [
1614
- { "type": "boolean" },
2076
+ {
2077
+ "type": "boolean"
2078
+ },
1615
2079
  {
1616
2080
  "type": "array",
1617
- "items": { "type": "string" },
2081
+ "items": {
2082
+ "type": "string"
2083
+ },
1618
2084
  "description": "List of action types that require human approval"
1619
2085
  }
1620
2086
  ]
@@ -2240,7 +2706,7 @@
2240
2706
  },
2241
2707
  "MessagingExtension": {
2242
2708
  "type": "object",
2243
- "description": "Agent-to-agent messaging configuration (v0.3.1+)",
2709
+ "description": "Agent-to-agent messaging configuration (v0.3.2+)",
2244
2710
  "properties": {
2245
2711
  "publishes": {
2246
2712
  "type": "array",
@@ -2782,6 +3248,69 @@
2782
3248
  }
2783
3249
  },
2784
3250
  "additionalProperties": false
3251
+ },
3252
+ "KubernetesConfig": {
3253
+ "type": "object",
3254
+ "description": "Kubernetes-specific runtime configuration (KAS-inspired)",
3255
+ "properties": {
3256
+ "namespace": {
3257
+ "type": "string",
3258
+ "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$",
3259
+ "description": "Kubernetes namespace (DNS-1123 subdomain)"
3260
+ },
3261
+ "service_account": {
3262
+ "type": "string",
3263
+ "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$",
3264
+ "description": "Kubernetes service account name"
3265
+ },
3266
+ "api_server_url": {
3267
+ "type": "string",
3268
+ "format": "uri",
3269
+ "description": "Kubernetes API server URL (similar to KAS private API URL)"
3270
+ },
3271
+ "network_family": {
3272
+ "type": "string",
3273
+ "enum": [
3274
+ "tcp",
3275
+ "tcp4",
3276
+ "tcp6"
3277
+ ],
3278
+ "default": "tcp",
3279
+ "description": "Network family (KAS pattern: tcp, tcp4, tcp6)"
3280
+ },
3281
+ "health_check_endpoint": {
3282
+ "type": "string",
3283
+ "format": "uri",
3284
+ "description": "Health check endpoint URL"
3285
+ },
3286
+ "config_map_ref": {
3287
+ "type": "string",
3288
+ "description": "Reference to Kubernetes ConfigMap"
3289
+ },
3290
+ "secret_ref": {
3291
+ "type": "string",
3292
+ "description": "Reference to Kubernetes Secret"
3293
+ },
3294
+ "rbac": {
3295
+ "type": "object",
3296
+ "properties": {
3297
+ "role": {
3298
+ "type": "string",
3299
+ "description": "Kubernetes Role name"
3300
+ },
3301
+ "cluster_role": {
3302
+ "type": "string",
3303
+ "description": "Kubernetes ClusterRole name"
3304
+ },
3305
+ "role_binding": {
3306
+ "type": "string",
3307
+ "description": "Kubernetes RoleBinding name"
3308
+ }
3309
+ },
3310
+ "additionalProperties": false
3311
+ }
3312
+ },
3313
+ "additionalProperties": false
2785
3314
  }
2786
3315
  }
2787
3316
  }