@bluefly/openstandardagents 0.4.6 → 0.4.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (300) hide show
  1. package/.version.json +3 -3
  2. package/CHANGELOG.md +16 -0
  3. package/README.md +1 -0
  4. package/dist/.version.json +3 -3
  5. package/dist/adapters/mcp/converter.js +4 -3
  6. package/dist/adapters/npm/adapter.js +2 -1
  7. package/dist/adapters/openai-agents/adapter.js +1 -1
  8. package/dist/cli/commands/config.command.d.ts +7 -0
  9. package/dist/cli/commands/config.command.js +92 -0
  10. package/dist/cli/commands/migrate.command.js +1 -1
  11. package/dist/cli/commands/sign.command.d.ts +3 -0
  12. package/dist/cli/commands/sign.command.js +42 -0
  13. package/dist/cli/commands/skills.command.js +4 -6
  14. package/dist/config/cli-config.d.ts +33 -0
  15. package/dist/config/cli-config.js +107 -0
  16. package/dist/mcp-server/index.js +0 -0
  17. package/dist/package.json +8 -9
  18. package/dist/services/governance/cedar-provider.js +2 -1
  19. package/dist/services/release-automation/base-crud.service.d.ts +93 -0
  20. package/dist/services/release-automation/base-crud.service.js +68 -0
  21. package/dist/services/release-automation/generate-changelog.d.ts +7 -0
  22. package/dist/services/release-automation/generate-changelog.js +288 -0
  23. package/dist/services/release-automation/increment-dev-tag.d.ts +7 -0
  24. package/dist/services/release-automation/increment-dev-tag.js +160 -0
  25. package/dist/services/release-automation/index.d.ts +12 -0
  26. package/dist/services/release-automation/index.js +12 -0
  27. package/dist/services/release-automation/merge-request.service.d.ts +119 -0
  28. package/dist/services/release-automation/merge-request.service.js +212 -0
  29. package/dist/services/release-automation/milestone.service.d.ts +104 -0
  30. package/dist/services/release-automation/milestone.service.js +207 -0
  31. package/dist/services/release-automation/release-agent.service.d.ts +39 -0
  32. package/dist/services/release-automation/release-agent.service.js +43 -0
  33. package/dist/services/release-automation/release-buttons.d.ts +7 -0
  34. package/dist/services/release-automation/release-buttons.js +207 -0
  35. package/dist/services/release-automation/release.service.d.ts +118 -0
  36. package/dist/services/release-automation/release.service.js +207 -0
  37. package/dist/services/release-automation/schemas/release.schema.d.ts +299 -0
  38. package/dist/services/release-automation/schemas/release.schema.js +272 -0
  39. package/dist/services/release-automation/tag.service.d.ts +99 -0
  40. package/dist/services/release-automation/tag.service.js +183 -0
  41. package/dist/services/release-automation/webhook.service.d.ts +37 -0
  42. package/dist/services/release-automation/webhook.service.js +187 -0
  43. package/dist/skills/test-skill/README.md +36 -0
  44. package/dist/skills/test-skill/SKILL.md +31 -0
  45. package/dist/skills/test-skill/index.d.ts +31 -0
  46. package/dist/skills/test-skill/install.js +44 -0
  47. package/dist/skills/test-skill/package.json +36 -0
  48. package/dist/spec/reference/reference-agents/compliance-auditor/manifest.ossa.yaml +1 -1
  49. package/dist/spec/reference/reference-agents/doc-agent/manifest.ossa.yaml +1 -1
  50. package/dist/spec/reference/reference-agents/mr-reviewer/manifest.ossa.yaml +1 -1
  51. package/dist/spec/reference/reference-agents/ossa-validator-v0.3/manifest.ossa.yaml +1 -1
  52. package/dist/spec/reference/reference-agents/pipeline-fixer/manifest.ossa.yaml +1 -1
  53. package/dist/spec/reference/reference-agents/release-orchestrator/manifest.ossa.yaml +1 -1
  54. package/dist/spec/uadp/README.md +393 -0
  55. package/dist/spec/uadp/openapi.yaml +387 -0
  56. package/dist/spec/uadp/schemas/uadp-agents-response.schema.json +68 -0
  57. package/dist/spec/uadp/schemas/uadp-federation-response.schema.json +46 -0
  58. package/dist/spec/uadp/schemas/uadp-manifest.schema.json +82 -0
  59. package/dist/spec/uadp/schemas/uadp-skills-response.schema.json +72 -0
  60. package/dist/spec/v0.4/agent-card.schema.json +1 -1
  61. package/dist/spec/v0.4/agent.schema.json +15 -15
  62. package/dist/spec/v0.4/extensions/a2a/a2a.schema.json +1 -1
  63. package/dist/spec/v0.4/extensions/ag2/ag2.schema.json +1 -1
  64. package/dist/spec/v0.4/extensions/crewai/crewai.schema.json +1 -1
  65. package/dist/spec/v0.4/extensions/kagent/kagent.schema.json +1 -1
  66. package/dist/spec/v0.4/extensions/langchain/langchain.schema.json +1 -1
  67. package/dist/spec/v0.4/extensions/langgraph/langgraph.schema.json +1 -1
  68. package/dist/spec/v0.4/extensions/mcp/mcp.schema.json +1 -1
  69. package/dist/spec/v0.5/agent-card.schema.json +477 -0
  70. package/dist/spec/v0.5/agent.schema.json +1556 -0
  71. package/dist/spec/v0.5/conformance/profiles/baseline.json +19 -0
  72. package/dist/spec/v0.5/conformance/profiles/enterprise.json +20 -0
  73. package/dist/spec/v0.5/extensions/a2a/README.md +193 -0
  74. package/dist/spec/v0.5/extensions/a2a/a2a.schema.json +77 -0
  75. package/dist/spec/v0.5/extensions/ag2/ag2.schema.json +277 -0
  76. package/dist/spec/v0.5/extensions/cognition/cognition.schema.json +94 -0
  77. package/dist/spec/v0.5/extensions/cognition/thought-node.schema.json +80 -0
  78. package/dist/spec/v0.5/extensions/crewai/crewai.schema.json +256 -0
  79. package/dist/spec/v0.5/extensions/drupal/drupal.schema.json +318 -0
  80. package/dist/spec/v0.5/extensions/evals/evals.schema.json +597 -0
  81. package/dist/spec/v0.5/extensions/governance/governance-extension.yaml +161 -0
  82. package/dist/spec/v0.5/extensions/identity/identity.schema.json +302 -0
  83. package/dist/spec/v0.5/extensions/kagent/README.md +315 -0
  84. package/dist/spec/v0.5/extensions/kagent/kagent.schema.json +624 -0
  85. package/dist/spec/v0.5/extensions/langchain/langchain.schema.json +243 -0
  86. package/dist/spec/v0.5/extensions/langgraph/langgraph.schema.json +211 -0
  87. package/dist/spec/v0.5/extensions/mcp/README.md +276 -0
  88. package/dist/spec/v0.5/extensions/mcp/mcp.schema.json +84 -0
  89. package/dist/spec/v0.5/extensions/memory/memory.schema.json +7 -0
  90. package/dist/spec/v0.5/extensions/team/team.schema.json +304 -0
  91. package/dist/spec/v0.5/extensions/token-efficiency/token-efficiency.schema.json +47 -0
  92. package/dist/spec/v0.5/mcp.schema.json +1 -0
  93. package/dist/spec/v0.5/skill.schema.json +1 -0
  94. package/dist/spec/v0.5/validator.schema.json +282 -0
  95. package/dist/validation/error-codes.js +1 -1
  96. package/examples/a2a/agent-handoff.ossa.yaml +1 -1
  97. package/examples/a2a/service-discovery.ossa.yaml +1 -1
  98. package/examples/adapters/drupal-eca-mapping.yaml +1 -1
  99. package/examples/adapters/drupal-eca-task.yaml +1 -1
  100. package/examples/adapters/drupal-flowdrop-mapping.yaml +1 -1
  101. package/examples/adapters/drupal-maestro-mapping.yaml +1 -1
  102. package/examples/adapters/mistral-agent.yaml +1 -1
  103. package/examples/adapters/symfony-messenger-task.yaml +1 -1
  104. package/examples/adapters/symfony-messenger-workflow.yaml +1 -1
  105. package/examples/adk-integration/code-review-workflow.yml +1 -1
  106. package/examples/adk-integration/customer-support.yml +1 -1
  107. package/examples/adk-integration/data-pipeline.yml +1 -1
  108. package/examples/advanced/reasoning-agent.yaml +1 -1
  109. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  110. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  111. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  112. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  113. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  114. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  115. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  116. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  117. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  118. package/examples/agent-taxonomy-example.ossa.yaml +1 -1
  119. package/examples/agents/01-customer-support-bot/agent.ossa.yaml +1 -1
  120. package/examples/agents/02-code-review-agent/agent.ossa.yaml +1 -1
  121. package/examples/agents/03-data-analysis-agent/agent.ossa.yaml +1 -1
  122. package/examples/agents/04-content-moderator/agent.ossa.yaml +1 -1
  123. package/examples/agents/05-sales-assistant/agent.ossa.yaml +1 -1
  124. package/examples/agents/06-devops-agent/agent.ossa.yaml +1 -1
  125. package/examples/agents/07-research-assistant/agent.ossa.yaml +1 -1
  126. package/examples/agents/08-email-triage-agent/agent.ossa.yaml +1 -1
  127. package/examples/agents/09-security-scanner/agent.ossa.yaml +1 -1
  128. package/examples/agents/10-meeting-assistant/agent.ossa.yaml +1 -1
  129. package/examples/agents/architecture-healer-enterprise.yaml +1 -1
  130. package/examples/agents/dependency-healer-npm.yaml +1 -1
  131. package/examples/agents/spec-healer-openapi.yaml +1 -1
  132. package/examples/agents/wiki-healer-production.yaml +1 -1
  133. package/examples/agents-md/monorepo-agent.ossa.yaml +1 -1
  134. package/examples/agentscope/react-assistant/README.md +111 -0
  135. package/examples/agentscope/react-assistant/agent.ossa.yaml +132 -0
  136. package/examples/agentscope/react-assistant/skills/code-analysis/SKILL.md +18 -0
  137. package/examples/agentscope/react-assistant/skills/question-answering/SKILL.md +18 -0
  138. package/examples/autonomous-evolution/self-evolving-agent.ossa.yaml +1 -1
  139. package/examples/bridges/.gitlab-ci.yml +2 -2
  140. package/examples/build-once-use-everywhere/agent.ossa.yaml +1 -1
  141. package/examples/claude-code/code-reviewer.ossa.yaml +1 -1
  142. package/examples/claude-code/ossa-validator.ossa.yaml +1 -1
  143. package/examples/common_npm/agent-router.ossa.yaml +1 -1
  144. package/examples/contracts/data-consumer.ossa.yaml +1 -1
  145. package/examples/contracts/data-producer-v2.ossa.yaml +1 -1
  146. package/examples/contracts/data-producer.ossa.yaml +1 -1
  147. package/examples/drupal/QUICKSTART.md +17 -3
  148. package/examples/drupal/ai_agents_agentscope/README.md +62 -0
  149. package/examples/drupal/ai_agents_agentscope/ai_agents_agentscope.info.yml +13 -0
  150. package/examples/drupal/ai_agents_agentscope/ai_agents_agentscope.services.yml +4 -0
  151. package/examples/drupal/ai_agents_agentscope/config/install/ai_agents_agentscope.settings.yml +3 -0
  152. package/examples/drupal/ai_agents_agentscope/config/schema/ai_agents_agentscope.schema.yml +14 -0
  153. package/examples/drupal/ai_agents_agentscope/src/AgentScopeRuntime.php +11 -0
  154. package/examples/drupal/ai_agents_agentscope/src/Plugin/AiAgent/AgentScopeAgent.php +10 -0
  155. package/examples/drupal/ai_agents_agentscope/src/Plugin/AiProvider/AgentScopeProvider.php +217 -0
  156. package/examples/drupal/ai_agents_agentscope/src/Plugin/Derivative/AgentScopeDeriver.php +10 -0
  157. package/examples/drupal/ai_agents_agentscope/src/Service/AgentScopeAdapter.php +9 -0
  158. package/examples/drupal/content-moderator.ossa.yaml +1 -1
  159. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -1
  160. package/examples/export/langchain/production-agent-with-memory/agent.ossa.yaml +1 -1
  161. package/examples/export/langchain/production-agent-with-tools/agent.ossa.yaml +1 -1
  162. package/examples/extensions/agents-md-advanced.yml +1 -1
  163. package/examples/extensions/agents-md-basic.yml +1 -1
  164. package/examples/extensions/agents-md-sync.yml +1 -1
  165. package/examples/extensions/agents-md-v1.yml +1 -1
  166. package/examples/extensions/drupal-v1.yml +1 -1
  167. package/examples/extensions/encryption-multi-provider.yaml +4 -4
  168. package/examples/extensions/kagent-v1.yml +1 -1
  169. package/examples/extensions/knowledge-sources.yaml +1 -1
  170. package/examples/extensions/mcp-full-featured.yaml +1 -1
  171. package/examples/getting-started/01-minimal-agent.ossa.yaml +1 -1
  172. package/examples/getting-started/02-agent-with-tools.ossa.yaml +1 -1
  173. package/examples/getting-started/03-agent-with-safety.ossa.yaml +1 -1
  174. package/examples/getting-started/04-agent-with-messaging.ossa.yaml +1 -1
  175. package/examples/getting-started/05-workflow-composition.ossa.yaml +1 -1
  176. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  177. package/examples/gitlab-agents/daily-code-scan/.gitlab-ci.yml +2 -2
  178. package/examples/gitlab-agents/duo-comment-responder/.gitlab-ci.yml +2 -2
  179. package/examples/gitlab-agents/mr-reviewer/.gitlab-ci.yml +2 -2
  180. package/examples/gitlab-agents/pipeline-auto-fix/.gitlab-ci.yml +2 -2
  181. package/examples/gitlab-agents/pre-commit-quality-check/.gitlab-ci.yml +2 -2
  182. package/examples/gitlab-agents/pre-push-validation/.gitlab-ci.yml +2 -2
  183. package/examples/hierarchical-agent.ossa.yaml +1 -1
  184. package/examples/infrastructure/token-rotation/manifest.ossa.yaml +1 -1
  185. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +1 -1
  186. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  187. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  188. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  189. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -1
  190. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  191. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  192. package/examples/knowledge-graph/drupal-agent-with-kg.ossa.yaml +1 -1
  193. package/examples/mcp/browser-puppeteer.ossa.yaml +1 -1
  194. package/examples/mcp/database-mcp.ossa.yaml +1 -1
  195. package/examples/mcp/filesystem-mcp.ossa.yaml +1 -1
  196. package/examples/messaging/dependency-healer.ossa.yaml +1 -1
  197. package/examples/messaging/incident-responder.ossa.yaml +1 -1
  198. package/examples/messaging/routing-rules.ossa.yaml +1 -1
  199. package/examples/messaging/security-scanner.ossa.yaml +1 -1
  200. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  201. package/examples/migrations/langchain/01-python-react-agent-after.ossa.yaml +1 -1
  202. package/examples/migrations/langchain/02-typescript-conversational-after.ossa.yaml +1 -1
  203. package/examples/migrations/langchain/03-sequential-chain-after.ossa.yaml +1 -1
  204. package/examples/migrations/langchain/04-config-based-after.ossa.yaml +1 -1
  205. package/examples/migrations/swarm-to-ossa/after-handoffs.ossa.yaml +6 -6
  206. package/examples/migrations/swarm-to-ossa/after-triage-agent.ossa.yaml +3 -3
  207. package/examples/mr-reviewer-with-governance.ossa.yaml +1 -1
  208. package/examples/multi-agent/conditional-router.ossa.yaml +1 -1
  209. package/examples/multi-agent/parallel-execution.ossa.yaml +1 -1
  210. package/examples/multi-agent/sequential-pipeline.ossa.yaml +1 -1
  211. package/examples/multi-agent-research-workflow.ossa.yaml +1 -1
  212. package/examples/multi-platform/single-manifest/agent.ossa.yaml +1 -1
  213. package/examples/observability/activity-stream-full.yaml +1 -1
  214. package/examples/openai/basic-agent.ossa.yaml +1 -1
  215. package/examples/ossa-templates/01-code-assistant.ossa.yaml +1 -1
  216. package/examples/ossa-templates/02-security-scanner.ossa.yaml +1 -1
  217. package/examples/ossa-templates/03-ci-pipeline.ossa.yaml +1 -1
  218. package/examples/ossa-templates/04-code-reviewer.ossa.yaml +1 -1
  219. package/examples/ossa-templates/05-doc-generator.ossa.yaml +1 -1
  220. package/examples/ossa-templates/06-compliance-validator.ossa.yaml +1 -1
  221. package/examples/ossa-templates/07-workflow-orchestrator.ossa.yaml +1 -1
  222. package/examples/ossa-templates/08-content-writer.ossa.yaml +1 -1
  223. package/examples/ossa-templates/09-test-generator.ossa.yaml +1 -1
  224. package/examples/ossa-templates/10-data-transformer.ossa.yaml +1 -1
  225. package/examples/ossa-templates/11-react-performance-expert.ossa.yaml +1 -1
  226. package/examples/ossa-templates/12-typescript-type-safety-expert.ossa.yaml +1 -1
  227. package/examples/ossa-templates/13-accessibility-champion.ossa.yaml +1 -1
  228. package/examples/ossa-templates/14-security-hardening-agent.ossa.yaml +1 -1
  229. package/examples/pipeline-agent.ossa.yaml +1 -1
  230. package/examples/production/document-analyzer-openai.yml +1 -1
  231. package/examples/production-ready/01-customer-support-bot/agent.ossa.yaml +1 -1
  232. package/examples/production-ready/02-code-review-agent/agent.ossa.yaml +1 -1
  233. package/examples/production-ready/03-data-analysis-agent/agent.ossa.yaml +1 -1
  234. package/examples/production-ready/04-content-moderator/agent.ossa.yaml +1 -1
  235. package/examples/production-ready/05-sales-assistant/agent.ossa.yaml +1 -1
  236. package/examples/production-ready/06-devops-agent/agent.ossa.yaml +1 -1
  237. package/examples/production-ready/07-research-assistant/agent.ossa.yaml +1 -1
  238. package/examples/production-ready/08-email-triage-agent/agent.ossa.yaml +1 -1
  239. package/examples/production-ready/09-security-scanner/agent.ossa.yaml +1 -1
  240. package/examples/production-ready/10-meeting-assistant/agent.ossa.yaml +1 -1
  241. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  242. package/examples/real-world/gitlab-cicd-optimizer.ossa.yaml +1 -1
  243. package/examples/real-world/rag-documentation-assistant.ossa.yaml +1 -1
  244. package/examples/registry/agents/code-reviewer/agent.yaml +1 -1
  245. package/examples/registry/agents/security-scanner/agent.yaml +1 -1
  246. package/examples/runtime-adapters/bedrock-claude-example.ossa.yaml +1 -1
  247. package/examples/schema/reusable-components.yaml +1 -1
  248. package/examples/showcase/ci-pipeline.ossa.yaml +1 -1
  249. package/examples/showcase/code-assistant.ossa.yaml +1 -1
  250. package/examples/showcase/code-reviewer.ossa.yaml +1 -1
  251. package/examples/showcase/compliance-checker.ossa.yaml +1 -1
  252. package/examples/showcase/compliance-validator.ossa.yaml +1 -1
  253. package/examples/showcase/content-writer.ossa.yaml +1 -1
  254. package/examples/showcase/customer-support.ossa.yaml +1 -1
  255. package/examples/showcase/data-processing-pipeline.ossa.yaml +1 -1
  256. package/examples/showcase/data-transformer.ossa.yaml +1 -1
  257. package/examples/showcase/doc-generator.ossa.yaml +1 -1
  258. package/examples/showcase/full-power-agent.ossa.yaml +1 -1
  259. package/examples/showcase/security-scanner-enhanced.ossa.yaml +1 -1
  260. package/examples/showcase/security-scanner.ossa.yaml +1 -1
  261. package/examples/showcase/team-leader.ossa.yaml +1 -1
  262. package/examples/showcase/test-generator.ossa.yaml +1 -1
  263. package/examples/showcase/workflow-orchestrator.ossa.yaml +1 -1
  264. package/examples/skills-example.ossa.yaml +1 -1
  265. package/examples/swarm-agent.ossa.yaml +1 -1
  266. package/examples/tasks/batch-email-sender.yaml +1 -1
  267. package/examples/tasks/data-transform.yaml +1 -1
  268. package/examples/tasks/publish-content.yaml +1 -1
  269. package/examples/team-agent.ossa.yaml +1 -1
  270. package/examples/templates/ossa-compliance.yaml +1 -1
  271. package/examples/unified/security-scanner.ossa.yaml +1 -1
  272. package/examples/workflows/batch-email-campaign.yaml +1 -1
  273. package/examples/workflows/content-review-publish.yaml +1 -1
  274. package/examples/workflows/simple-etl.yaml +1 -1
  275. package/package.json +6 -7
  276. package/spec/reference/reference-agents/compliance-auditor/manifest.ossa.yaml +1 -1
  277. package/spec/reference/reference-agents/doc-agent/manifest.ossa.yaml +1 -1
  278. package/spec/reference/reference-agents/mr-reviewer/manifest.ossa.yaml +1 -1
  279. package/spec/reference/reference-agents/ossa-validator-v0.3/manifest.ossa.yaml +1 -1
  280. package/spec/reference/reference-agents/pipeline-fixer/manifest.ossa.yaml +1 -1
  281. package/spec/reference/reference-agents/release-orchestrator/manifest.ossa.yaml +1 -1
  282. package/spec/v0.4/agent-card.schema.json +1 -1
  283. package/spec/v0.4/agent.schema.json +84 -15
  284. package/spec/v0.4/extensions/a2a/a2a.schema.json +1 -1
  285. package/spec/v0.4/extensions/ag2/ag2.schema.json +1 -1
  286. package/spec/v0.4/extensions/crewai/crewai.schema.json +1 -1
  287. package/spec/v0.4/extensions/kagent/kagent.schema.json +1 -1
  288. package/spec/v0.4/extensions/langchain/langchain.schema.json +1 -1
  289. package/spec/v0.4/extensions/langgraph/langgraph.schema.json +1 -1
  290. package/spec/v0.4/extensions/mcp/mcp.schema.json +1 -1
  291. package/templates/agent-types/claude-agent.ossa.yaml +1 -1
  292. package/templates/agent-types/kagent.ossa.yaml +1 -1
  293. package/templates/agent-types/langchain-agent.ossa.yaml +1 -1
  294. package/templates/agent-types/openapi-agent.ossa.yaml +1 -1
  295. package/templates/agent-types/swarm-agents.ossa.yaml +1 -1
  296. package/templates/ci-cd/gitlab-ci.deploy.yml +2 -2
  297. package/templates/validators/capability-compatibility.ossa.yaml +1 -1
  298. package/templates/validators/coordination-consistency.ossa.yaml +1 -1
  299. package/templates/validators/pattern-requirements.ossa.yaml +1 -1
  300. package/templates/validators/transport-compatibility.ossa.yaml +1 -1
@@ -0,0 +1,19 @@
1
+ {
2
+ "id": "baseline",
3
+ "name": "OSSA Baseline Profile",
4
+ "version": "0.3.0",
5
+ "description": "Minimum required features for OSSA agent conformance",
6
+ "required": {
7
+ "features": ["apiVersion", "kind", "metadata.name", "spec.role", "spec.llm"],
8
+ "weight": 0.6
9
+ },
10
+ "optional": {
11
+ "features": ["spec.tools", "spec.autonomy", "spec.observability"],
12
+ "weight": 0.4
13
+ },
14
+ "constraints": {},
15
+ "scoring": {
16
+ "pass_threshold": 0.6,
17
+ "warn_threshold": 0.8
18
+ }
19
+ }
@@ -0,0 +1,20 @@
1
+ {
2
+ "id": "enterprise",
3
+ "name": "OSSA Enterprise Profile",
4
+ "version": "0.3.0",
5
+ "description": "Enterprise-grade conformance with observability and constraints",
6
+ "extends": "baseline",
7
+ "required": {
8
+ "features": ["metadata.name", "spec.role", "spec.llm", "spec.constraints", "spec.observability", "spec.observability.tracing", "spec.constraints.cost"],
9
+ "weight": 0.6
10
+ },
11
+ "optional": {
12
+ "features": ["spec.tools", "spec.autonomy", "metadata.labels"],
13
+ "weight": 0.4
14
+ },
15
+ "constraints": {},
16
+ "scoring": {
17
+ "pass_threshold": 0.7,
18
+ "warn_threshold": 0.9
19
+ }
20
+ }
@@ -0,0 +1,193 @@
1
+ # A2A (Agent-to-Agent) Communication Extension
2
+
3
+ **Version**: 0.4.6
4
+ **Status**: Stable
5
+ **Protocol**: Production-Ready A2A
6
+
7
+ ## Overview
8
+
9
+ The A2A extension enables production-ready agent-to-agent communication with service discovery, message routing, task delegation, completion signals, and checkpoint synchronization.
10
+
11
+ ## Features
12
+
13
+ - **Service Discovery**: DNS, Consul, Kubernetes, Registry-based discovery
14
+ - **Message Routing**: Direct, broadcast, round-robin, capability-based routing
15
+ - **Task Delegation**: Multi-level delegation with handoff support
16
+ - **Completion Signals**: Standardized task completion signaling
17
+ - **Checkpoint Sync**: Distributed checkpoint synchronization
18
+ - **Authentication**: mTLS, OAuth2, API Key, JWT support
19
+ - **Resilience**: Retry policies, circuit breakers, health checks
20
+ - **Observability**: Distributed tracing, metrics, logging
21
+
22
+ ## Schema Reference
23
+
24
+ ### Basic A2A Configuration
25
+
26
+ ```yaml
27
+ extensions:
28
+ a2a:
29
+ enabled: true
30
+ protocol:
31
+ type: json-rpc
32
+ version: "2.0"
33
+ messageFormat: json
34
+ timeout: 30
35
+ endpoints:
36
+ - agentId: "@security-scanner"
37
+ url: "http://security-scanner:8080/a2a"
38
+ capabilities: ["security-scan", "vulnerability-check"]
39
+ priority: 10
40
+ ```
41
+
42
+ ### Service Discovery
43
+
44
+ ```yaml
45
+ extensions:
46
+ a2a:
47
+ discovery:
48
+ enabled: true
49
+ mechanism: registry
50
+ registryUrl: "https://registry.example.com/agents"
51
+ refreshInterval: 60
52
+ healthCheck:
53
+ enabled: true
54
+ interval: 30
55
+ timeout: 5
56
+ endpoint: "/health"
57
+ ```
58
+
59
+ ### Routing Configuration
60
+
61
+ ```yaml
62
+ extensions:
63
+ a2a:
64
+ routing:
65
+ strategy: capability-based
66
+ defaultAgent: "@fallback-agent"
67
+ routingRules:
68
+ - name: "security-routing"
69
+ condition: "message.type == 'security-scan'"
70
+ target: "@security-scanner"
71
+ priority: 10
72
+ - name: "code-review-routing"
73
+ condition: "message.type == 'code-review'"
74
+ target: "@mr-reviewer"
75
+ priority: 5
76
+ ```
77
+
78
+ ### Task Delegation
79
+
80
+ ```yaml
81
+ extensions:
82
+ a2a:
83
+ delegation:
84
+ enabled: true
85
+ maxDepth: 3
86
+ timeout: 300
87
+ handoff:
88
+ enabled: true
89
+ preserveContext: true
90
+ handoffRules:
91
+ - name: "escalation"
92
+ condition: "signal == 'escalate'"
93
+ target: "@senior-reviewer"
94
+ message: "Escalating to senior reviewer"
95
+ ```
96
+
97
+ ### Completion Signals
98
+
99
+ ```yaml
100
+ extensions:
101
+ a2a:
102
+ completionSignals:
103
+ enabled: true
104
+ signals: ["continue", "complete", "blocked", "escalate", "checkpoint"]
105
+ handlers:
106
+ - signal: escalate
107
+ action: handoff
108
+ target: "@senior-agent"
109
+ - signal: checkpoint
110
+ action: checkpoint
111
+ config:
112
+ storage: agent-brain
113
+ ```
114
+
115
+ ### Authentication
116
+
117
+ ```yaml
118
+ extensions:
119
+ a2a:
120
+ authentication:
121
+ type: mtls
122
+ mtls:
123
+ certPath: "/certs/client.crt"
124
+ keyPath: "/certs/client.key"
125
+ caPath: "/certs/ca.crt"
126
+ verifyPeer: true
127
+ ```
128
+
129
+ ## Use Cases
130
+
131
+ ### 1. Multi-Agent Code Review System
132
+
133
+ ```yaml
134
+ apiVersion: ossa/v0.4.6
135
+ kind: Agent
136
+ metadata:
137
+ name: mr-coordinator
138
+ spec:
139
+ extensions:
140
+ a2a:
141
+ enabled: true
142
+ protocol:
143
+ type: json-rpc
144
+ version: "2.0"
145
+ endpoints:
146
+ - agentId: "@security-scanner"
147
+ url: "http://security-scanner:8080/a2a"
148
+ capabilities: ["security-scan"]
149
+ - agentId: "@performance-analyzer"
150
+ url: "http://performance-analyzer:8080/a2a"
151
+ capabilities: ["performance-analysis"]
152
+ routing:
153
+ strategy: capability-based
154
+ delegation:
155
+ enabled: true
156
+ maxDepth: 2
157
+ ```
158
+
159
+ ### 2. Service Discovery with Kubernetes
160
+
161
+ ```yaml
162
+ apiVersion: ossa/v0.4.6
163
+ kind: Agent
164
+ metadata:
165
+ name: distributed-agent
166
+ spec:
167
+ extensions:
168
+ a2a:
169
+ enabled: true
170
+ discovery:
171
+ enabled: true
172
+ mechanism: kubernetes
173
+ refreshInterval: 60
174
+ protocol:
175
+ type: grpc
176
+ version: "1.0"
177
+ ```
178
+
179
+ ## Best Practices
180
+
181
+ 1. **Service Discovery**: Use registry or Kubernetes for dynamic environments
182
+ 2. **Authentication**: Always use mTLS or OAuth2 in production
183
+ 3. **Circuit Breakers**: Enable to prevent cascading failures
184
+ 4. **Health Checks**: Configure for automatic unhealthy agent removal
185
+ 5. **Delegation Depth**: Keep maxDepth <= 3 to avoid deep chains
186
+ 6. **Timeouts**: Set appropriate timeouts for agent response times
187
+ 7. **Observability**: Enable tracing for debugging distributed workflows
188
+
189
+ ## References
190
+
191
+ - [OSSA v0.4.6 Specification](../../README.md)
192
+ - [MCP Extension](../mcp/README.md)
193
+ - [Kagent Extension](../kagent/README.md)
@@ -0,0 +1,77 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://openstandardagents.org/schemas/v0.4.6/extensions/a2a.json",
4
+ "title": "A2A Extension Schema",
5
+ "description": "Agent-to-Agent communication extension for OSSA",
6
+ "type": "object",
7
+ "properties": {
8
+ "service_discovery": {
9
+ "type": "object",
10
+ "description": "Service discovery configuration",
11
+ "properties": {
12
+ "enabled": { "type": "boolean", "default": true },
13
+ "registry_url": { "type": "string", "format": "uri" },
14
+ "health_check_interval": { "type": "integer", "minimum": 0 },
15
+ "timeout": { "type": "integer", "minimum": 0 }
16
+ }
17
+ },
18
+ "agent_card": {
19
+ "type": "object",
20
+ "description": "Agent identity card for A2A",
21
+ "properties": {
22
+ "agent_uri": { "type": "string", "pattern": "^uadp://" },
23
+ "capabilities": { "type": "array", "items": { "type": "string" } },
24
+ "protocols": {
25
+ "type": "array",
26
+ "items": {
27
+ "type": "string",
28
+ "enum": ["json-rpc", "grpc", "http", "websocket"]
29
+ }
30
+ },
31
+ "endpoints": {
32
+ "type": "array",
33
+ "items": {
34
+ "type": "object",
35
+ "properties": {
36
+ "url": { "type": "string", "format": "uri" },
37
+ "protocol": { "type": "string" },
38
+ "auth_required": { "type": "boolean" }
39
+ }
40
+ }
41
+ }
42
+ },
43
+ "required": ["agent_uri", "capabilities"]
44
+ },
45
+ "handoff_protocol": {
46
+ "type": "object",
47
+ "description": "Task handoff configuration",
48
+ "properties": {
49
+ "strategy": {
50
+ "type": "string",
51
+ "enum": ["capability_match", "load_balance", "round_robin", "custom"]
52
+ },
53
+ "timeout": { "type": "integer" },
54
+ "retry_policy": {
55
+ "type": "object",
56
+ "properties": {
57
+ "max_retries": { "type": "integer" },
58
+ "backoff_ms": { "type": "integer" }
59
+ }
60
+ }
61
+ }
62
+ },
63
+ "auth": {
64
+ "type": "object",
65
+ "description": "Authentication configuration",
66
+ "properties": {
67
+ "method": {
68
+ "type": "string",
69
+ "enum": ["jwt", "oauth2", "api_key", "mtls"]
70
+ },
71
+ "issuer": { "type": "string" },
72
+ "audience": { "type": "string" }
73
+ }
74
+ }
75
+ },
76
+ "additionalProperties": false
77
+ }
@@ -0,0 +1,277 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://openstandardagents.org/schemas/v0.4.6/extensions/ag2/ag2.json",
4
+ "title": "AG2 (AutoGen) Extension",
5
+ "description": "Native integration with Microsoft AG2 (AutoGen) for multi-agent conversations, group chats, nested chats, and swarm topologies.",
6
+ "type": "object",
7
+ "properties": {
8
+ "enabled": {
9
+ "type": "boolean",
10
+ "default": true,
11
+ "description": "Enable AG2 integration"
12
+ },
13
+ "pattern": {
14
+ "type": "string",
15
+ "enum": ["group_chat", "nested_chat", "swarm", "sequential", "two_agent"],
16
+ "description": "AG2 conversation pattern"
17
+ },
18
+ "group_chat": {
19
+ "$ref": "#/definitions/GroupChatConfig",
20
+ "description": "Group chat configuration"
21
+ },
22
+ "nested_chat": {
23
+ "$ref": "#/definitions/NestedChatConfig",
24
+ "description": "Nested chat configuration"
25
+ },
26
+ "swarm": {
27
+ "$ref": "#/definitions/SwarmConfig",
28
+ "description": "Swarm topology configuration"
29
+ },
30
+ "code_execution": {
31
+ "$ref": "#/definitions/CodeExecutionConfig",
32
+ "description": "Code execution configuration"
33
+ },
34
+ "human_input_mode": {
35
+ "type": "string",
36
+ "enum": ["ALWAYS", "NEVER", "TERMINATE"],
37
+ "default": "NEVER",
38
+ "description": "When to request human input"
39
+ },
40
+ "max_consecutive_auto_reply": {
41
+ "type": "integer",
42
+ "minimum": 0,
43
+ "description": "Maximum consecutive auto-replies"
44
+ }
45
+ },
46
+ "additionalProperties": false,
47
+ "definitions": {
48
+ "GroupChatConfig": {
49
+ "type": "object",
50
+ "description": "Group chat configuration",
51
+ "required": ["participants", "manager"],
52
+ "properties": {
53
+ "participants": {
54
+ "type": "array",
55
+ "minItems": 2,
56
+ "items": {
57
+ "type": "string",
58
+ "pattern": "^@[a-z0-9-]+$"
59
+ },
60
+ "description": "Agent IDs participating in group chat"
61
+ },
62
+ "manager": {
63
+ "type": "string",
64
+ "pattern": "^@[a-z0-9-]+$",
65
+ "description": "Group chat manager agent ID"
66
+ },
67
+ "max_round": {
68
+ "type": "integer",
69
+ "minimum": 1,
70
+ "maximum": 100,
71
+ "default": 10,
72
+ "description": "Maximum conversation rounds"
73
+ },
74
+ "speaker_selection_method": {
75
+ "type": "string",
76
+ "enum": ["auto", "manual", "round_robin", "random"],
77
+ "default": "auto",
78
+ "description": "Speaker selection method"
79
+ },
80
+ "allow_repeat_speaker": {
81
+ "type": "boolean",
82
+ "default": true,
83
+ "description": "Allow same agent to speak consecutively"
84
+ },
85
+ "transitions": {
86
+ "type": "object",
87
+ "additionalProperties": {
88
+ "type": "array",
89
+ "items": {
90
+ "type": "string"
91
+ }
92
+ },
93
+ "description": "Allowed speaker transitions"
94
+ },
95
+ "enable_clear_history": {
96
+ "type": "boolean",
97
+ "default": false,
98
+ "description": "Allow clearing conversation history"
99
+ }
100
+ },
101
+ "additionalProperties": false
102
+ },
103
+ "NestedChatConfig": {
104
+ "type": "object",
105
+ "description": "Nested chat configuration",
106
+ "required": ["triggers"],
107
+ "properties": {
108
+ "triggers": {
109
+ "type": "array",
110
+ "items": {
111
+ "$ref": "#/definitions/NestedChatTrigger"
112
+ },
113
+ "description": "Nested chat triggers"
114
+ },
115
+ "max_depth": {
116
+ "type": "integer",
117
+ "minimum": 1,
118
+ "default": 3,
119
+ "description": "Maximum nesting depth"
120
+ }
121
+ },
122
+ "additionalProperties": false
123
+ },
124
+ "NestedChatTrigger": {
125
+ "type": "object",
126
+ "description": "Nested chat trigger",
127
+ "required": ["condition", "chat_queue"],
128
+ "properties": {
129
+ "condition": {
130
+ "type": "string",
131
+ "description": "Trigger condition (function or expression)"
132
+ },
133
+ "chat_queue": {
134
+ "type": "array",
135
+ "items": {
136
+ "type": "object",
137
+ "required": ["recipient", "message"],
138
+ "properties": {
139
+ "recipient": {
140
+ "type": "string",
141
+ "pattern": "^@[a-z0-9-]+$",
142
+ "description": "Recipient agent ID"
143
+ },
144
+ "message": {
145
+ "type": "string",
146
+ "description": "Message to send"
147
+ },
148
+ "summary_method": {
149
+ "type": "string",
150
+ "enum": ["last_msg", "reflection_with_llm"],
151
+ "default": "last_msg"
152
+ }
153
+ }
154
+ },
155
+ "description": "Chat queue for nested conversation"
156
+ }
157
+ },
158
+ "additionalProperties": false
159
+ },
160
+ "SwarmConfig": {
161
+ "type": "object",
162
+ "description": "Swarm topology configuration",
163
+ "required": ["agents", "handoffs"],
164
+ "properties": {
165
+ "agents": {
166
+ "type": "array",
167
+ "items": {
168
+ "$ref": "#/definitions/SwarmAgent"
169
+ },
170
+ "description": "Swarm agents"
171
+ },
172
+ "handoffs": {
173
+ "type": "array",
174
+ "items": {
175
+ "$ref": "#/definitions/SwarmHandoff"
176
+ },
177
+ "description": "Agent handoff rules"
178
+ },
179
+ "update_agent_state_before_reply": {
180
+ "type": "array",
181
+ "items": {
182
+ "type": "object"
183
+ },
184
+ "description": "State update functions"
185
+ }
186
+ },
187
+ "additionalProperties": false
188
+ },
189
+ "SwarmAgent": {
190
+ "type": "object",
191
+ "description": "Swarm agent definition",
192
+ "required": ["id", "name"],
193
+ "properties": {
194
+ "id": {
195
+ "type": "string",
196
+ "pattern": "^@[a-z0-9-]+$",
197
+ "description": "Agent ID"
198
+ },
199
+ "name": {
200
+ "type": "string",
201
+ "description": "Agent name"
202
+ },
203
+ "system_message": {
204
+ "type": "string",
205
+ "description": "Agent system message"
206
+ },
207
+ "functions": {
208
+ "type": "array",
209
+ "items": {
210
+ "type": "string"
211
+ },
212
+ "description": "Available functions"
213
+ }
214
+ },
215
+ "additionalProperties": false
216
+ },
217
+ "SwarmHandoff": {
218
+ "type": "object",
219
+ "description": "Swarm handoff rule",
220
+ "required": ["from", "to", "condition"],
221
+ "properties": {
222
+ "from": {
223
+ "type": "string",
224
+ "pattern": "^@[a-z0-9-]+$",
225
+ "description": "Source agent ID"
226
+ },
227
+ "to": {
228
+ "type": "string",
229
+ "pattern": "^@[a-z0-9-]+$",
230
+ "description": "Target agent ID"
231
+ },
232
+ "condition": {
233
+ "type": "string",
234
+ "description": "Handoff condition"
235
+ },
236
+ "available": {
237
+ "type": "string",
238
+ "description": "Availability condition"
239
+ }
240
+ },
241
+ "additionalProperties": false
242
+ },
243
+ "CodeExecutionConfig": {
244
+ "type": "object",
245
+ "description": "Code execution configuration",
246
+ "properties": {
247
+ "work_dir": {
248
+ "type": "string",
249
+ "description": "Working directory for code execution"
250
+ },
251
+ "use_docker": {
252
+ "oneOf": [
253
+ {
254
+ "type": "boolean"
255
+ },
256
+ {
257
+ "type": "string"
258
+ }
259
+ ],
260
+ "description": "Use Docker for code execution (bool or image name)"
261
+ },
262
+ "timeout": {
263
+ "type": "integer",
264
+ "minimum": 1,
265
+ "default": 60,
266
+ "description": "Code execution timeout in seconds"
267
+ },
268
+ "last_n_messages": {
269
+ "type": "integer",
270
+ "minimum": 1,
271
+ "description": "Number of recent messages to include in code execution context"
272
+ }
273
+ },
274
+ "additionalProperties": false
275
+ }
276
+ }
277
+ }
@@ -0,0 +1,94 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://openstandardagents.org/schemas/v0.5/extensions/cognition.schema.json",
4
+ "title": "OSSA Cognition Extension (v0.5.0 draft)",
5
+ "description": "Reasoning pattern, thought schema, trace configuration, and governance for auditable agent cognition. First-class spec-level primitive for NIST/FedRAMP alignment.",
6
+ "type": "object",
7
+ "properties": {
8
+ "pattern": {
9
+ "type": "string",
10
+ "enum": [
11
+ "sequential",
12
+ "tree_of_thought",
13
+ "react",
14
+ "plan_and_execute"
15
+ ],
16
+ "description": "Cognitive architecture pattern: sequential (linear chain), tree_of_thought (branching), react (reason-act-observe), plan_and_execute"
17
+ },
18
+ "constraints": {
19
+ "type": "object",
20
+ "properties": {
21
+ "max_depth": {
22
+ "type": "integer",
23
+ "minimum": 1,
24
+ "description": "Max thought steps before forced convergence"
25
+ },
26
+ "branching": {
27
+ "type": "boolean",
28
+ "default": true,
29
+ "description": "Allow alternative reasoning paths"
30
+ },
31
+ "revision": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "description": "Allow backtracking and revision of prior thoughts"
35
+ },
36
+ "confidence_threshold": {
37
+ "type": "number",
38
+ "minimum": 0,
39
+ "maximum": 1,
40
+ "description": "Minimum confidence to proceed without human review"
41
+ }
42
+ },
43
+ "additionalProperties": false
44
+ },
45
+ "trace": {
46
+ "type": "object",
47
+ "properties": {
48
+ "format": {
49
+ "type": "string",
50
+ "enum": ["otel_spans", "ossa_native", "both"],
51
+ "default": "both",
52
+ "description": "Trace format for observability"
53
+ },
54
+ "storage": {
55
+ "type": "string",
56
+ "enum": ["vector", "graph", "both"],
57
+ "default": "graph",
58
+ "description": "Where thought graphs are stored (vector=embeddings, graph=Neo4j-style)"
59
+ },
60
+ "retention": {
61
+ "type": "string",
62
+ "pattern": "^(\\d+d|\\d+w|\\d+\\s*days?)$",
63
+ "description": "Retention period (e.g. 90d, 30 days)"
64
+ }
65
+ },
66
+ "additionalProperties": false
67
+ },
68
+ "governance": {
69
+ "type": "object",
70
+ "properties": {
71
+ "human_review_triggers": {
72
+ "type": "array",
73
+ "items": {
74
+ "type": "object",
75
+ "properties": {
76
+ "confidence_below": { "type": "number", "minimum": 0, "maximum": 1 },
77
+ "contradiction_detected": { "type": "boolean" },
78
+ "branch_depth_exceeds": { "type": "integer", "minimum": 1 }
79
+ },
80
+ "additionalProperties": true
81
+ },
82
+ "description": "Conditions that escalate to human review"
83
+ },
84
+ "audit_required": {
85
+ "type": "boolean",
86
+ "default": false,
87
+ "description": "Whether reasoning chain must be retained for compliance audit"
88
+ }
89
+ },
90
+ "additionalProperties": false
91
+ }
92
+ },
93
+ "additionalProperties": false
94
+ }