@bluefly/openstandardagents 0.5.1 → 0.5.3

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 (2043) hide show
  1. package/.well-known/agent-card.json +28 -0
  2. package/.well-known/ossa.json +22 -0
  3. package/CHANGELOG.md +44 -26
  4. package/README.md +41 -697
  5. package/docs/README.md +59 -0
  6. package/docs/migration-v0.5.2.md +18 -0
  7. package/docs/spec.md +41 -0
  8. package/package.json +55 -371
  9. package/packages/cli/dist/cli.d.ts +1 -0
  10. package/packages/cli/dist/cli.js +128 -0
  11. package/packages/cli/package.json +25 -0
  12. package/packages/discovery/dist/index.d.ts +10 -0
  13. package/packages/discovery/dist/index.js +20 -0
  14. package/packages/discovery/package.json +25 -0
  15. package/packages/identity/dist/index.d.ts +3 -0
  16. package/packages/identity/dist/index.js +11 -0
  17. package/packages/identity/package.json +26 -0
  18. package/packages/policy/dist/index.d.ts +62 -0
  19. package/packages/policy/dist/index.js +17 -0
  20. package/packages/policy/package.json +22 -0
  21. package/packages/schema/package.json +14 -0
  22. package/packages/validator/dist/index.d.ts +13 -0
  23. package/packages/validator/dist/index.js +90 -0
  24. package/packages/validator/package.json +28 -0
  25. package/spec/reference/compliance-engine.openapi.yaml +84 -0
  26. package/spec/reference/reference-agents/advisor-pattern-example/manifest.ossa.yaml +57 -0
  27. package/spec/reference/reference-agents/compliance-auditor/manifest.ossa.yaml +0 -6
  28. package/spec/reference/reference-agents/doc-agent/manifest.ossa.yaml +1 -1
  29. package/spec/reference/reference-agents/mr-reviewer/manifest.ossa.yaml +1 -1
  30. package/spec/reference/reference-agents/mr-reviewer/system-prompt.md +1 -1
  31. package/spec/reference/reference-agents/ossa-validator-v0.3/manifest.ossa.yaml +1 -4
  32. package/spec/v0.5/agent-builder-openapi.yaml +1 -1
  33. package/spec/v0.5/agent-card.schema.json +2 -2
  34. package/spec/v0.5/agent.schema.json +289 -8
  35. package/spec/v0.5/conformance/profiles/baseline.json +7 -1
  36. package/spec/v0.5/extensions/a2a/a2a.schema.json +1 -1
  37. package/spec/v0.5/extensions/ag2/README.md +38 -0
  38. package/spec/v0.5/extensions/cognition/README.md +38 -0
  39. package/spec/v0.5/extensions/crewai/README.md +76 -0
  40. package/spec/v0.5/extensions/drupal/README.md +39 -0
  41. package/spec/v0.5/extensions/duadp/duadp-export-bundle.schema.json +47 -0
  42. package/spec/v0.5/extensions/duadp/duadp-validation-report.schema.json +54 -0
  43. package/spec/v0.5/extensions/economics/README.md +39 -0
  44. package/spec/v0.5/extensions/emotion.schema.json +47 -0
  45. package/spec/v0.5/extensions/evals/README.md +49 -0
  46. package/spec/v0.5/extensions/governance/README.md +61 -0
  47. package/spec/v0.5/extensions/governance/governance.schema.json +117 -0
  48. package/spec/v0.5/extensions/identity/README.md +50 -0
  49. package/spec/v0.5/extensions/kagent/kagent.schema.json +51 -0
  50. package/spec/v0.5/extensions/langchain/README.md +79 -0
  51. package/spec/v0.5/extensions/langgraph/README.md +97 -0
  52. package/spec/v0.5/extensions/memory/README.md +92 -0
  53. package/spec/v0.5/extensions/memory/governed-memory.schema.json +108 -0
  54. package/spec/v0.5/extensions/memory/memory-contract.schema.json +240 -0
  55. package/spec/v0.5/extensions/team/README.md +51 -0
  56. package/spec/v0.5/extensions/token-efficiency/README.md +55 -0
  57. package/spec/v0.5/invocation.openapi.yaml +120 -0
  58. package/spec/v0.5/memory-contract.schema.json +300 -0
  59. package/spec/v0.5/policy-binding.schema.json +38 -0
  60. package/spec/v0.5/registry.schema.json +31 -0
  61. package/spec/v0.5/role.schema.json +173 -0
  62. package/spec/v0.5/workflow.schema.json +53 -0
  63. package/.version.json +0 -7
  64. package/bin/ossa +0 -11
  65. package/bin/ossa-dev +0 -8
  66. package/bin/ossa-validate-all +0 -55
  67. package/bin/ossa-version +0 -23
  68. package/bin/postinstall +0 -62
  69. package/dist/.version.json +0 -7
  70. package/dist/adapters/a2a/a2a-protocol.d.ts +0 -398
  71. package/dist/adapters/a2a/a2a-protocol.js +0 -259
  72. package/dist/adapters/a2a/a2a-tool.d.ts +0 -110
  73. package/dist/adapters/a2a/a2a-tool.js +0 -351
  74. package/dist/adapters/a2a/agent-mesh.d.ts +0 -195
  75. package/dist/adapters/a2a/agent-mesh.js +0 -347
  76. package/dist/adapters/a2a/delegation.d.ts +0 -232
  77. package/dist/adapters/a2a/delegation.js +0 -236
  78. package/dist/adapters/a2a/index.d.ts +0 -18
  79. package/dist/adapters/a2a/index.js +0 -24
  80. package/dist/adapters/a2a/mcp-integration.d.ts +0 -259
  81. package/dist/adapters/a2a/mcp-integration.js +0 -331
  82. package/dist/adapters/a2a/mcp-transport.d.ts +0 -124
  83. package/dist/adapters/a2a/mcp-transport.js +0 -302
  84. package/dist/adapters/a2a/swarm-orchestration.d.ts +0 -278
  85. package/dist/adapters/a2a/swarm-orchestration.js +0 -322
  86. package/dist/adapters/agent-skills/exporter.d.ts +0 -98
  87. package/dist/adapters/agent-skills/exporter.js +0 -460
  88. package/dist/adapters/agent-skills/index.d.ts +0 -7
  89. package/dist/adapters/agent-skills/index.js +0 -6
  90. package/dist/adapters/anthropic/claude-optimizations.d.ts +0 -44
  91. package/dist/adapters/anthropic/claude-optimizations.js +0 -187
  92. package/dist/adapters/anthropic/client.d.ts +0 -56
  93. package/dist/adapters/anthropic/client.js +0 -105
  94. package/dist/adapters/anthropic/config-adapter.d.ts +0 -22
  95. package/dist/adapters/anthropic/config-adapter.js +0 -48
  96. package/dist/adapters/anthropic/config.d.ts +0 -149
  97. package/dist/adapters/anthropic/config.js +0 -157
  98. package/dist/adapters/anthropic/index.d.ts +0 -19
  99. package/dist/adapters/anthropic/index.js +0 -20
  100. package/dist/adapters/anthropic/messages.d.ts +0 -93
  101. package/dist/adapters/anthropic/messages.js +0 -285
  102. package/dist/adapters/anthropic/tools.d.ts +0 -111
  103. package/dist/adapters/anthropic/tools.js +0 -272
  104. package/dist/adapters/autogen/config-adapter.d.ts +0 -22
  105. package/dist/adapters/autogen/config-adapter.js +0 -72
  106. package/dist/adapters/base/adapter.interface.d.ts +0 -327
  107. package/dist/adapters/base/adapter.interface.js +0 -138
  108. package/dist/adapters/base/base-exporter.d.ts +0 -108
  109. package/dist/adapters/base/base-exporter.js +0 -165
  110. package/dist/adapters/base/common-file-generator.d.ts +0 -217
  111. package/dist/adapters/base/common-file-generator.js +0 -719
  112. package/dist/adapters/base/index.d.ts +0 -23
  113. package/dist/adapters/base/index.js +0 -29
  114. package/dist/adapters/base/manifest-validator.d.ts +0 -82
  115. package/dist/adapters/base/manifest-validator.js +0 -264
  116. package/dist/adapters/base/perfect-agent-utils.d.ts +0 -29
  117. package/dist/adapters/base/perfect-agent-utils.js +0 -327
  118. package/dist/adapters/base/template-engine.d.ts +0 -52
  119. package/dist/adapters/base/template-engine.js +0 -157
  120. package/dist/adapters/base/tool-params.d.ts +0 -42
  121. package/dist/adapters/base/tool-params.js +0 -123
  122. package/dist/adapters/browser/browser-exporter.d.ts +0 -26
  123. package/dist/adapters/browser/browser-exporter.js +0 -73
  124. package/dist/adapters/browser/browser-runner.d.ts +0 -23
  125. package/dist/adapters/browser/browser-runner.js +0 -46
  126. package/dist/adapters/browser/index.d.ts +0 -9
  127. package/dist/adapters/browser/index.js +0 -9
  128. package/dist/adapters/claude-agent-sdk/adapter.d.ts +0 -58
  129. package/dist/adapters/claude-agent-sdk/adapter.js +0 -705
  130. package/dist/adapters/claude-agent-sdk/index.d.ts +0 -9
  131. package/dist/adapters/claude-agent-sdk/index.js +0 -8
  132. package/dist/adapters/claude-agent-sdk/types.d.ts +0 -135
  133. package/dist/adapters/claude-agent-sdk/types.js +0 -14
  134. package/dist/adapters/claude-code/adapter.d.ts +0 -64
  135. package/dist/adapters/claude-code/adapter.js +0 -341
  136. package/dist/adapters/claude-code/types.d.ts +0 -154
  137. package/dist/adapters/claude-code/types.js +0 -6
  138. package/dist/adapters/crewai/adapter.d.ts +0 -109
  139. package/dist/adapters/crewai/adapter.js +0 -1769
  140. package/dist/adapters/crewai/converter.d.ts +0 -25
  141. package/dist/adapters/crewai/converter.js +0 -141
  142. package/dist/adapters/crewai/index.d.ts +0 -7
  143. package/dist/adapters/crewai/index.js +0 -6
  144. package/dist/adapters/crewai/types.d.ts +0 -29
  145. package/dist/adapters/crewai/types.js +0 -5
  146. package/dist/adapters/crewai-adapter.d.ts +0 -57
  147. package/dist/adapters/crewai-adapter.js +0 -166
  148. package/dist/adapters/cursor/adapter.d.ts +0 -75
  149. package/dist/adapters/cursor/adapter.js +0 -478
  150. package/dist/adapters/cursor/types.d.ts +0 -221
  151. package/dist/adapters/cursor/types.js +0 -6
  152. package/dist/adapters/docker/config-adapter.d.ts +0 -22
  153. package/dist/adapters/docker/config-adapter.js +0 -54
  154. package/dist/adapters/docker/docker-exporter.d.ts +0 -38
  155. package/dist/adapters/docker/docker-exporter.js +0 -648
  156. package/dist/adapters/docker/generators.d.ts +0 -85
  157. package/dist/adapters/docker/generators.js +0 -783
  158. package/dist/adapters/docker/index.d.ts +0 -10
  159. package/dist/adapters/docker/index.js +0 -9
  160. package/dist/adapters/docker/openclaw-bridge.d.ts +0 -57
  161. package/dist/adapters/docker/openclaw-bridge.js +0 -173
  162. package/dist/adapters/docker/types.d.ts +0 -87
  163. package/dist/adapters/docker/types.js +0 -5
  164. package/dist/adapters/drupal/adapter.d.ts +0 -59
  165. package/dist/adapters/drupal/adapter.js +0 -430
  166. package/dist/adapters/drupal/drupal-utils.d.ts +0 -213
  167. package/dist/adapters/drupal/drupal-utils.js +0 -313
  168. package/dist/adapters/drupal/generator.d.ts +0 -303
  169. package/dist/adapters/drupal/generator.js +0 -2628
  170. package/dist/adapters/drupal/index.d.ts +0 -114
  171. package/dist/adapters/drupal/index.js +0 -301
  172. package/dist/adapters/drupal/manifest-exporter.d.ts +0 -115
  173. package/dist/adapters/drupal/manifest-exporter.js +0 -584
  174. package/dist/adapters/drupal/twig-renderer.d.ts +0 -23
  175. package/dist/adapters/drupal/twig-renderer.js +0 -99
  176. package/dist/adapters/fusioninventory/config-adapter.d.ts +0 -22
  177. package/dist/adapters/fusioninventory/config-adapter.js +0 -145
  178. package/dist/adapters/fusioninventory/types.d.ts +0 -40
  179. package/dist/adapters/fusioninventory/types.js +0 -29
  180. package/dist/adapters/gitlab/agent-generator.d.ts +0 -103
  181. package/dist/adapters/gitlab/agent-generator.js +0 -909
  182. package/dist/adapters/gitlab/converter.d.ts +0 -35
  183. package/dist/adapters/gitlab/converter.js +0 -113
  184. package/dist/adapters/gitlab/external-agent-generator.d.ts +0 -70
  185. package/dist/adapters/gitlab/external-agent-generator.js +0 -347
  186. package/dist/adapters/gitlab/flow-generator.d.ts +0 -73
  187. package/dist/adapters/gitlab/flow-generator.js +0 -710
  188. package/dist/adapters/gitlab/index.d.ts +0 -15
  189. package/dist/adapters/gitlab/index.js +0 -11
  190. package/dist/adapters/gitlab/package-generator.d.ts +0 -180
  191. package/dist/adapters/gitlab/package-generator.js +0 -2400
  192. package/dist/adapters/gitlab/router-generator.d.ts +0 -113
  193. package/dist/adapters/gitlab/router-generator.js +0 -545
  194. package/dist/adapters/gitlab/trigger-generator.d.ts +0 -154
  195. package/dist/adapters/gitlab/trigger-generator.js +0 -279
  196. package/dist/adapters/gitlab/types.d.ts +0 -120
  197. package/dist/adapters/gitlab/types.js +0 -5
  198. package/dist/adapters/gitlab-duo/adapter.d.ts +0 -72
  199. package/dist/adapters/gitlab-duo/adapter.js +0 -350
  200. package/dist/adapters/index.d.ts +0 -14
  201. package/dist/adapters/index.js +0 -73
  202. package/dist/adapters/kubernetes/config-adapter.d.ts +0 -22
  203. package/dist/adapters/kubernetes/config-adapter.js +0 -112
  204. package/dist/adapters/kubernetes/generator.d.ts +0 -117
  205. package/dist/adapters/kubernetes/generator.js +0 -1386
  206. package/dist/adapters/kubernetes/index.d.ts +0 -7
  207. package/dist/adapters/kubernetes/index.js +0 -6
  208. package/dist/adapters/kubernetes/kagent-crd-generator.d.ts +0 -72
  209. package/dist/adapters/kubernetes/kagent-crd-generator.js +0 -237
  210. package/dist/adapters/kubernetes/types.d.ts +0 -62
  211. package/dist/adapters/kubernetes/types.js +0 -5
  212. package/dist/adapters/langchain/adapter.d.ts +0 -46
  213. package/dist/adapters/langchain/adapter.js +0 -289
  214. package/dist/adapters/langchain/converter.d.ts +0 -21
  215. package/dist/adapters/langchain/converter.js +0 -153
  216. package/dist/adapters/langchain/index.d.ts +0 -7
  217. package/dist/adapters/langchain/index.js +0 -6
  218. package/dist/adapters/langchain/types.d.ts +0 -27
  219. package/dist/adapters/langchain/types.js +0 -5
  220. package/dist/adapters/langchain-adapter.d.ts +0 -45
  221. package/dist/adapters/langchain-adapter.js +0 -132
  222. package/dist/adapters/langflow/platform-adapter.d.ts +0 -23
  223. package/dist/adapters/langflow/platform-adapter.js +0 -103
  224. package/dist/adapters/langflow-adapter.d.ts +0 -52
  225. package/dist/adapters/langflow-adapter.js +0 -247
  226. package/dist/adapters/langfuse.adapter.d.ts +0 -30
  227. package/dist/adapters/langfuse.adapter.js +0 -65
  228. package/dist/adapters/langsmith.adapter.d.ts +0 -29
  229. package/dist/adapters/langsmith.adapter.js +0 -62
  230. package/dist/adapters/mcp/adapter.d.ts +0 -49
  231. package/dist/adapters/mcp/adapter.js +0 -336
  232. package/dist/adapters/mcp/converter.d.ts +0 -32
  233. package/dist/adapters/mcp/converter.js +0 -343
  234. package/dist/adapters/mobile-agent/adapter.d.ts +0 -63
  235. package/dist/adapters/mobile-agent/adapter.js +0 -678
  236. package/dist/adapters/n8n/converter.d.ts +0 -17
  237. package/dist/adapters/n8n/converter.js +0 -77
  238. package/dist/adapters/n8n/index.d.ts +0 -7
  239. package/dist/adapters/n8n/index.js +0 -6
  240. package/dist/adapters/n8n/types.d.ts +0 -23
  241. package/dist/adapters/n8n/types.js +0 -5
  242. package/dist/adapters/npm/adapter.d.ts +0 -41
  243. package/dist/adapters/npm/adapter.js +0 -301
  244. package/dist/adapters/npm/converter.d.ts +0 -41
  245. package/dist/adapters/npm/converter.js +0 -357
  246. package/dist/adapters/npm/package-generator.d.ts +0 -93
  247. package/dist/adapters/npm/package-generator.js +0 -240
  248. package/dist/adapters/npm/type-aware-dependencies.d.ts +0 -19
  249. package/dist/adapters/npm/type-aware-dependencies.js +0 -160
  250. package/dist/adapters/npm/types.d.ts +0 -116
  251. package/dist/adapters/npm/types.js +0 -6
  252. package/dist/adapters/openai-agents/adapter.d.ts +0 -31
  253. package/dist/adapters/openai-agents/adapter.js +0 -346
  254. package/dist/adapters/openai-agents/config-adapter.d.ts +0 -25
  255. package/dist/adapters/openai-agents/config-adapter.js +0 -60
  256. package/dist/adapters/openai-agents/index.d.ts +0 -10
  257. package/dist/adapters/openai-agents/index.js +0 -10
  258. package/dist/adapters/openapi-adapter.d.ts +0 -93
  259. package/dist/adapters/openapi-adapter.js +0 -317
  260. package/dist/adapters/opentelemetry.adapter.d.ts +0 -142
  261. package/dist/adapters/opentelemetry.adapter.js +0 -375
  262. package/dist/adapters/phoenix.adapter.d.ts +0 -28
  263. package/dist/adapters/phoenix.adapter.js +0 -65
  264. package/dist/adapters/registry/platform-registry.d.ts +0 -69
  265. package/dist/adapters/registry/platform-registry.js +0 -94
  266. package/dist/adapters/semantic-kernel/config-adapter.d.ts +0 -22
  267. package/dist/adapters/semantic-kernel/config-adapter.js +0 -64
  268. package/dist/adapters/symfony/index.d.ts +0 -163
  269. package/dist/adapters/symfony/index.js +0 -272
  270. package/dist/adapters/symfony/platform-adapter.d.ts +0 -31
  271. package/dist/adapters/symfony/platform-adapter.js +0 -317
  272. package/dist/adapters/temporal/converter.d.ts +0 -17
  273. package/dist/adapters/temporal/converter.js +0 -96
  274. package/dist/adapters/temporal/index.d.ts +0 -7
  275. package/dist/adapters/temporal/index.js +0 -6
  276. package/dist/adapters/temporal/types.d.ts +0 -23
  277. package/dist/adapters/temporal/types.js +0 -5
  278. package/dist/adapters/warp/adapter.d.ts +0 -52
  279. package/dist/adapters/warp/adapter.js +0 -386
  280. package/dist/adapters/warp/types.d.ts +0 -140
  281. package/dist/adapters/warp/types.js +0 -6
  282. package/dist/api/index.d.ts +0 -13
  283. package/dist/api/index.js +0 -45
  284. package/dist/api/middleware/cors.d.ts +0 -6
  285. package/dist/api/middleware/cors.js +0 -17
  286. package/dist/api/middleware/error-handler.d.ts +0 -6
  287. package/dist/api/middleware/error-handler.js +0 -32
  288. package/dist/api/middleware/request-id.d.ts +0 -6
  289. package/dist/api/middleware/request-id.js +0 -12
  290. package/dist/api/middleware/validate.d.ts +0 -8
  291. package/dist/api/middleware/validate.js +0 -38
  292. package/dist/api/routes/agents-md.router.d.ts +0 -7
  293. package/dist/api/routes/agents-md.router.js +0 -93
  294. package/dist/api/routes/convert.router.d.ts +0 -6
  295. package/dist/api/routes/convert.router.js +0 -42
  296. package/dist/api/routes/export.router.d.ts +0 -6
  297. package/dist/api/routes/export.router.js +0 -44
  298. package/dist/api/routes/health.router.d.ts +0 -6
  299. package/dist/api/routes/health.router.js +0 -20
  300. package/dist/api/routes/manifests.router.d.ts +0 -6
  301. package/dist/api/routes/manifests.router.js +0 -128
  302. package/dist/api/routes/mcp.router.d.ts +0 -8
  303. package/dist/api/routes/mcp.router.js +0 -68
  304. package/dist/api/routes/skills.router.d.ts +0 -6
  305. package/dist/api/routes/skills.router.js +0 -53
  306. package/dist/api/routes/validate.router.d.ts +0 -7
  307. package/dist/api/routes/validate.router.js +0 -46
  308. package/dist/api/routes/version.router.d.ts +0 -6
  309. package/dist/api/routes/version.router.js +0 -28
  310. package/dist/api/routes/wizard.router.d.ts +0 -6
  311. package/dist/api/routes/wizard.router.js +0 -110
  312. package/dist/api/routes/workspace.router.d.ts +0 -6
  313. package/dist/api/routes/workspace.router.js +0 -52
  314. package/dist/api/server.d.ts +0 -10
  315. package/dist/api/server.js +0 -21
  316. package/dist/bot/agent-architecture_validator.d.ts +0 -8
  317. package/dist/bot/agent-architecture_validator.js +0 -15
  318. package/dist/bot/agent-ci_pipeline.d.ts +0 -7
  319. package/dist/bot/agent-ci_pipeline.js +0 -7
  320. package/dist/bot/agent-compliance.d.ts +0 -56
  321. package/dist/bot/agent-compliance.js +0 -222
  322. package/dist/bot/agent-dependency_updater.d.ts +0 -9
  323. package/dist/bot/agent-dependency_updater.js +0 -9
  324. package/dist/bot/agent-security_scanner.d.ts +0 -11
  325. package/dist/bot/agent-security_scanner.js +0 -21
  326. package/dist/cli/banner.d.ts +0 -25
  327. package/dist/cli/banner.js +0 -153
  328. package/dist/cli/commands/agent/discover-type.command.d.ts +0 -39
  329. package/dist/cli/commands/agent/discover-type.command.js +0 -332
  330. package/dist/cli/commands/agent-card.command.d.ts +0 -9
  331. package/dist/cli/commands/agent-card.command.js +0 -185
  332. package/dist/cli/commands/agent-wizard.command.d.ts +0 -21
  333. package/dist/cli/commands/agent-wizard.command.js +0 -1558
  334. package/dist/cli/commands/agents/delete.command.d.ts +0 -10
  335. package/dist/cli/commands/agents/delete.command.js +0 -105
  336. package/dist/cli/commands/agents/list.command.d.ts +0 -10
  337. package/dist/cli/commands/agents/list.command.js +0 -140
  338. package/dist/cli/commands/agents/persona.command.d.ts +0 -10
  339. package/dist/cli/commands/agents/persona.command.js +0 -519
  340. package/dist/cli/commands/agents/show.command.d.ts +0 -10
  341. package/dist/cli/commands/agents/show.command.js +0 -182
  342. package/dist/cli/commands/agents-local.command.d.ts +0 -10
  343. package/dist/cli/commands/agents-local.command.js +0 -281
  344. package/dist/cli/commands/agents-md/batch.command.d.ts +0 -3
  345. package/dist/cli/commands/agents-md/batch.command.js +0 -63
  346. package/dist/cli/commands/agents-md/generate.command.d.ts +0 -3
  347. package/dist/cli/commands/agents-md/generate.command.js +0 -43
  348. package/dist/cli/commands/agents-md/list.command.d.ts +0 -3
  349. package/dist/cli/commands/agents-md/list.command.js +0 -59
  350. package/dist/cli/commands/agents-md/validate.command.d.ts +0 -3
  351. package/dist/cli/commands/agents-md/validate.command.js +0 -42
  352. package/dist/cli/commands/agents-md.command.d.ts +0 -7
  353. package/dist/cli/commands/agents-md.command.js +0 -236
  354. package/dist/cli/commands/agents-sync.command.d.ts +0 -19
  355. package/dist/cli/commands/agents-sync.command.js +0 -278
  356. package/dist/cli/commands/agents.command.d.ts +0 -11
  357. package/dist/cli/commands/agents.command.js +0 -216
  358. package/dist/cli/commands/audit.d.ts +0 -8
  359. package/dist/cli/commands/audit.js +0 -268
  360. package/dist/cli/commands/build.command.d.ts +0 -7
  361. package/dist/cli/commands/build.command.js +0 -296
  362. package/dist/cli/commands/capability/create.command.d.ts +0 -7
  363. package/dist/cli/commands/capability/create.command.js +0 -225
  364. package/dist/cli/commands/capability/index.d.ts +0 -7
  365. package/dist/cli/commands/capability/index.js +0 -10
  366. package/dist/cli/commands/capability/validate.d.ts +0 -3
  367. package/dist/cli/commands/capability/validate.js +0 -62
  368. package/dist/cli/commands/catalog/config.d.ts +0 -54
  369. package/dist/cli/commands/catalog/config.js +0 -113
  370. package/dist/cli/commands/catalog/convert.command.d.ts +0 -8
  371. package/dist/cli/commands/catalog/convert.command.js +0 -106
  372. package/dist/cli/commands/catalog/index.d.ts +0 -17
  373. package/dist/cli/commands/catalog/index.js +0 -34
  374. package/dist/cli/commands/catalog/info.command.d.ts +0 -3
  375. package/dist/cli/commands/catalog/info.command.js +0 -137
  376. package/dist/cli/commands/catalog/list.command.d.ts +0 -8
  377. package/dist/cli/commands/catalog/list.command.js +0 -101
  378. package/dist/cli/commands/catalog/schemas.d.ts +0 -62
  379. package/dist/cli/commands/catalog/schemas.js +0 -55
  380. package/dist/cli/commands/catalog/search.command.d.ts +0 -3
  381. package/dist/cli/commands/catalog/search.command.js +0 -47
  382. package/dist/cli/commands/catalog/validate.command.d.ts +0 -8
  383. package/dist/cli/commands/catalog/validate.command.js +0 -140
  384. package/dist/cli/commands/compliance.command.d.ts +0 -19
  385. package/dist/cli/commands/compliance.command.js +0 -221
  386. package/dist/cli/commands/config.command.d.ts +0 -7
  387. package/dist/cli/commands/config.command.js +0 -92
  388. package/dist/cli/commands/conformance.command.d.ts +0 -14
  389. package/dist/cli/commands/conformance.command.js +0 -232
  390. package/dist/cli/commands/contract.command.d.ts +0 -15
  391. package/dist/cli/commands/contract.command.js +0 -381
  392. package/dist/cli/commands/daemon.command.d.ts +0 -9
  393. package/dist/cli/commands/daemon.command.js +0 -447
  394. package/dist/cli/commands/dependencies.command.d.ts +0 -15
  395. package/dist/cli/commands/dependencies.command.js +0 -274
  396. package/dist/cli/commands/deploy-enhanced.command.d.ts +0 -15
  397. package/dist/cli/commands/deploy-enhanced.command.js +0 -334
  398. package/dist/cli/commands/deploy.command.d.ts +0 -7
  399. package/dist/cli/commands/deploy.command.js +0 -83
  400. package/dist/cli/commands/deploy.d.ts +0 -22
  401. package/dist/cli/commands/deploy.js +0 -336
  402. package/dist/cli/commands/dev.command.d.ts +0 -20
  403. package/dist/cli/commands/dev.command.js +0 -78
  404. package/dist/cli/commands/diff.command.d.ts +0 -11
  405. package/dist/cli/commands/diff.command.js +0 -197
  406. package/dist/cli/commands/discover.d.ts +0 -15
  407. package/dist/cli/commands/discover.js +0 -219
  408. package/dist/cli/commands/docs.command.d.ts +0 -7
  409. package/dist/cli/commands/docs.command.js +0 -278
  410. package/dist/cli/commands/economics.command.d.ts +0 -9
  411. package/dist/cli/commands/economics.command.js +0 -113
  412. package/dist/cli/commands/enhance.command.d.ts +0 -10
  413. package/dist/cli/commands/enhance.command.js +0 -119
  414. package/dist/cli/commands/ensure-uuid.command.d.ts +0 -7
  415. package/dist/cli/commands/ensure-uuid.command.js +0 -153
  416. package/dist/cli/commands/estimate.command.d.ts +0 -12
  417. package/dist/cli/commands/estimate.command.js +0 -226
  418. package/dist/cli/commands/examples.command.d.ts +0 -10
  419. package/dist/cli/commands/examples.command.js +0 -73
  420. package/dist/cli/commands/export-enhanced.command.d.ts +0 -7
  421. package/dist/cli/commands/export-enhanced.command.js +0 -149
  422. package/dist/cli/commands/export.command.d.ts +0 -15
  423. package/dist/cli/commands/export.command.js +0 -1031
  424. package/dist/cli/commands/extension-team.command.d.ts +0 -15
  425. package/dist/cli/commands/extension-team.command.js +0 -126
  426. package/dist/cli/commands/framework.command.d.ts +0 -9
  427. package/dist/cli/commands/framework.command.js +0 -194
  428. package/dist/cli/commands/generate/conformance.d.ts +0 -3
  429. package/dist/cli/commands/generate/conformance.js +0 -106
  430. package/dist/cli/commands/generate-gaid.command.d.ts +0 -14
  431. package/dist/cli/commands/generate-gaid.command.js +0 -141
  432. package/dist/cli/commands/generate.command.d.ts +0 -18
  433. package/dist/cli/commands/generate.command.js +0 -247
  434. package/dist/cli/commands/github-sync.command.d.ts +0 -3
  435. package/dist/cli/commands/github-sync.command.js +0 -51
  436. package/dist/cli/commands/gitlab-agent.command.d.ts +0 -8
  437. package/dist/cli/commands/gitlab-agent.command.js +0 -201
  438. package/dist/cli/commands/governance.command.d.ts +0 -11
  439. package/dist/cli/commands/governance.command.js +0 -166
  440. package/dist/cli/commands/identity/plan.d.ts +0 -3
  441. package/dist/cli/commands/identity/plan.js +0 -182
  442. package/dist/cli/commands/import.command.d.ts +0 -7
  443. package/dist/cli/commands/import.command.js +0 -71
  444. package/dist/cli/commands/info.command.d.ts +0 -3
  445. package/dist/cli/commands/info.command.js +0 -45
  446. package/dist/cli/commands/init.command.d.ts +0 -7
  447. package/dist/cli/commands/init.command.js +0 -165
  448. package/dist/cli/commands/install.command.d.ts +0 -3
  449. package/dist/cli/commands/install.command.js +0 -43
  450. package/dist/cli/commands/knowledge-index.command.d.ts +0 -11
  451. package/dist/cli/commands/knowledge-index.command.js +0 -111
  452. package/dist/cli/commands/knowledge-query.command.d.ts +0 -11
  453. package/dist/cli/commands/knowledge-query.command.js +0 -118
  454. package/dist/cli/commands/knowledge.command.d.ts +0 -11
  455. package/dist/cli/commands/knowledge.command.js +0 -16
  456. package/dist/cli/commands/langchain.command.d.ts +0 -9
  457. package/dist/cli/commands/langchain.command.js +0 -113
  458. package/dist/cli/commands/langflow.command.d.ts +0 -9
  459. package/dist/cli/commands/langflow.command.js +0 -111
  460. package/dist/cli/commands/lifecycle.command.d.ts +0 -29
  461. package/dist/cli/commands/lifecycle.command.js +0 -495
  462. package/dist/cli/commands/lint.command.d.ts +0 -12
  463. package/dist/cli/commands/lint.command.js +0 -377
  464. package/dist/cli/commands/llms-txt.command.d.ts +0 -7
  465. package/dist/cli/commands/llms-txt.command.js +0 -118
  466. package/dist/cli/commands/manifest/diff.command.d.ts +0 -7
  467. package/dist/cli/commands/manifest/diff.command.js +0 -186
  468. package/dist/cli/commands/manifest/explain.command.d.ts +0 -7
  469. package/dist/cli/commands/manifest/explain.command.js +0 -193
  470. package/dist/cli/commands/manifest/index.d.ts +0 -7
  471. package/dist/cli/commands/manifest/index.js +0 -12
  472. package/dist/cli/commands/mcp.command.d.ts +0 -9
  473. package/dist/cli/commands/mcp.command.js +0 -112
  474. package/dist/cli/commands/memory.command.d.ts +0 -18
  475. package/dist/cli/commands/memory.command.js +0 -168
  476. package/dist/cli/commands/migrate-batch.command.d.ts +0 -19
  477. package/dist/cli/commands/migrate-batch.command.js +0 -223
  478. package/dist/cli/commands/migrate-langchain.command.d.ts +0 -23
  479. package/dist/cli/commands/migrate-langchain.command.js +0 -167
  480. package/dist/cli/commands/migrate.command.d.ts +0 -10
  481. package/dist/cli/commands/migrate.command.js +0 -103
  482. package/dist/cli/commands/platforms.command.d.ts +0 -7
  483. package/dist/cli/commands/platforms.command.js +0 -90
  484. package/dist/cli/commands/policy.command.d.ts +0 -11
  485. package/dist/cli/commands/policy.command.js +0 -85
  486. package/dist/cli/commands/publish.command.d.ts +0 -3
  487. package/dist/cli/commands/publish.command.js +0 -118
  488. package/dist/cli/commands/quickstart.command.d.ts +0 -10
  489. package/dist/cli/commands/quickstart.command.js +0 -238
  490. package/dist/cli/commands/register.d.ts +0 -12
  491. package/dist/cli/commands/register.js +0 -200
  492. package/dist/cli/commands/registry.command.d.ts +0 -18
  493. package/dist/cli/commands/registry.command.js +0 -433
  494. package/dist/cli/commands/release.command.d.ts +0 -10
  495. package/dist/cli/commands/release.command.js +0 -73
  496. package/dist/cli/commands/rollback.command.d.ts +0 -13
  497. package/dist/cli/commands/rollback.command.js +0 -169
  498. package/dist/cli/commands/run.command.d.ts +0 -7
  499. package/dist/cli/commands/run.command.js +0 -141
  500. package/dist/cli/commands/scaffold.command.d.ts +0 -19
  501. package/dist/cli/commands/scaffold.command.js +0 -240
  502. package/dist/cli/commands/schema.command.d.ts +0 -11
  503. package/dist/cli/commands/schema.command.js +0 -82
  504. package/dist/cli/commands/search.command.d.ts +0 -3
  505. package/dist/cli/commands/search.command.js +0 -74
  506. package/dist/cli/commands/serve-builder-routes.d.ts +0 -17
  507. package/dist/cli/commands/serve-builder-routes.js +0 -390
  508. package/dist/cli/commands/serve.command.d.ts +0 -7
  509. package/dist/cli/commands/serve.command.js +0 -237
  510. package/dist/cli/commands/sign.command.d.ts +0 -3
  511. package/dist/cli/commands/sign.command.js +0 -42
  512. package/dist/cli/commands/skills.command.d.ts +0 -10
  513. package/dist/cli/commands/skills.command.js +0 -649
  514. package/dist/cli/commands/standardize.command.d.ts +0 -19
  515. package/dist/cli/commands/standardize.command.js +0 -290
  516. package/dist/cli/commands/sync.command.d.ts +0 -3
  517. package/dist/cli/commands/sync.command.js +0 -51
  518. package/dist/cli/commands/taxonomy.command.d.ts +0 -10
  519. package/dist/cli/commands/taxonomy.command.js +0 -379
  520. package/dist/cli/commands/template.command.d.ts +0 -7
  521. package/dist/cli/commands/template.command.js +0 -159
  522. package/dist/cli/commands/test.command.d.ts +0 -12
  523. package/dist/cli/commands/test.command.js +0 -233
  524. package/dist/cli/commands/tool/create.command.d.ts +0 -12
  525. package/dist/cli/commands/tool/create.command.js +0 -276
  526. package/dist/cli/commands/tool/index.d.ts +0 -7
  527. package/dist/cli/commands/tool/index.js +0 -14
  528. package/dist/cli/commands/tool/list.command.d.ts +0 -7
  529. package/dist/cli/commands/tool/list.command.js +0 -268
  530. package/dist/cli/commands/tool/validate.command.d.ts +0 -7
  531. package/dist/cli/commands/tool/validate.command.js +0 -103
  532. package/dist/cli/commands/types/wizard-config.types.d.ts +0 -59
  533. package/dist/cli/commands/types/wizard-config.types.js +0 -34
  534. package/dist/cli/commands/update.command.d.ts +0 -3
  535. package/dist/cli/commands/update.command.js +0 -43
  536. package/dist/cli/commands/upgrade.command.d.ts +0 -9
  537. package/dist/cli/commands/upgrade.command.js +0 -179
  538. package/dist/cli/commands/usie-skills.command.d.ts +0 -24
  539. package/dist/cli/commands/usie-skills.command.js +0 -297
  540. package/dist/cli/commands/validate.command.d.ts +0 -11
  541. package/dist/cli/commands/validate.command.js +0 -396
  542. package/dist/cli/commands/verify.d.ts +0 -15
  543. package/dist/cli/commands/verify.js +0 -307
  544. package/dist/cli/commands/wizard-api-first.command.d.ts +0 -18
  545. package/dist/cli/commands/wizard-api-first.command.js +0 -1073
  546. package/dist/cli/commands/wizard-interactive.command.d.ts +0 -25
  547. package/dist/cli/commands/wizard-interactive.command.js +0 -3467
  548. package/dist/cli/commands/wizard.command.d.ts +0 -12
  549. package/dist/cli/commands/wizard.command.js +0 -844
  550. package/dist/cli/commands/workspace.command.d.ts +0 -16
  551. package/dist/cli/commands/workspace.command.js +0 -653
  552. package/dist/cli/extensions/gitlab-release.commands.d.ts +0 -19
  553. package/dist/cli/extensions/gitlab-release.commands.js +0 -345
  554. package/dist/cli/extensions/gitlab.extension.d.ts +0 -24
  555. package/dist/cli/extensions/gitlab.extension.js +0 -65
  556. package/dist/cli/extensions/index.d.ts +0 -63
  557. package/dist/cli/extensions/index.js +0 -182
  558. package/dist/cli/index.d.ts +0 -17
  559. package/dist/cli/index.js +0 -362
  560. package/dist/cli/schema-driven/index.d.ts +0 -27
  561. package/dist/cli/schema-driven/index.js +0 -34
  562. package/dist/cli/schema-driven/schema-loader.d.ts +0 -115
  563. package/dist/cli/schema-driven/schema-loader.js +0 -280
  564. package/dist/cli/schema-driven/ui-generator.d.ts +0 -88
  565. package/dist/cli/schema-driven/ui-generator.js +0 -335
  566. package/dist/cli/skills-wizard/skill-wizard.d.ts +0 -25
  567. package/dist/cli/skills-wizard/skill-wizard.js +0 -195
  568. package/dist/cli/templates/agent-templates.d.ts +0 -49
  569. package/dist/cli/templates/agent-templates.js +0 -237
  570. package/dist/cli/templates/enhanced-templates.d.ts +0 -32
  571. package/dist/cli/templates/enhanced-templates.js +0 -650
  572. package/dist/cli/utils/error-formatter.d.ts +0 -19
  573. package/dist/cli/utils/error-formatter.js +0 -352
  574. package/dist/cli/utils/gitlab-config.d.ts +0 -94
  575. package/dist/cli/utils/gitlab-config.js +0 -182
  576. package/dist/cli/utils/index.d.ts +0 -12
  577. package/dist/cli/utils/index.js +0 -17
  578. package/dist/cli/utils/logo.d.ts +0 -10
  579. package/dist/cli/utils/logo.js +0 -49
  580. package/dist/cli/utils/manifest-discovery.d.ts +0 -63
  581. package/dist/cli/utils/manifest-discovery.js +0 -201
  582. package/dist/cli/utils/manifest-loader.d.ts +0 -77
  583. package/dist/cli/utils/manifest-loader.js +0 -153
  584. package/dist/cli/utils/migration-reporter.d.ts +0 -96
  585. package/dist/cli/utils/migration-reporter.js +0 -253
  586. package/dist/cli/utils/output.d.ts +0 -134
  587. package/dist/cli/utils/output.js +0 -203
  588. package/dist/cli/utils/standard-options.d.ts +0 -144
  589. package/dist/cli/utils/standard-options.js +0 -246
  590. package/dist/cli/utils/validation-builder.d.ts +0 -121
  591. package/dist/cli/utils/validation-builder.js +0 -322
  592. package/dist/cli/wizard/data/agent-types.d.ts +0 -7
  593. package/dist/cli/wizard/data/agent-types.js +0 -192
  594. package/dist/cli/wizard/data/llm-providers.d.ts +0 -10
  595. package/dist/cli/wizard/data/llm-providers.js +0 -176
  596. package/dist/cli/wizard/data/taxonomy.d.ts +0 -39
  597. package/dist/cli/wizard/data/taxonomy.js +0 -138
  598. package/dist/cli/wizard/data/templates.d.ts +0 -10
  599. package/dist/cli/wizard/data/templates.js +0 -228
  600. package/dist/cli/wizard/engine/wizard-engine.d.ts +0 -47
  601. package/dist/cli/wizard/engine/wizard-engine.js +0 -193
  602. package/dist/cli/wizard/interactive-wizard.d.ts +0 -26
  603. package/dist/cli/wizard/interactive-wizard.js +0 -309
  604. package/dist/cli/wizard/steps/01-agent-type.d.ts +0 -7
  605. package/dist/cli/wizard/steps/01-agent-type.js +0 -35
  606. package/dist/cli/wizard/steps/02-basic-info.d.ts +0 -7
  607. package/dist/cli/wizard/steps/02-basic-info.js +0 -81
  608. package/dist/cli/wizard/steps/03-domain-capability.d.ts +0 -7
  609. package/dist/cli/wizard/steps/03-domain-capability.js +0 -98
  610. package/dist/cli/wizard/steps/04-llm-config.d.ts +0 -7
  611. package/dist/cli/wizard/steps/04-llm-config.js +0 -86
  612. package/dist/cli/wizard/steps/04a-persona.d.ts +0 -16
  613. package/dist/cli/wizard/steps/04a-persona.js +0 -297
  614. package/dist/cli/wizard/steps/05-tools.d.ts +0 -7
  615. package/dist/cli/wizard/steps/05-tools.js +0 -200
  616. package/dist/cli/wizard/steps/06-autonomy.d.ts +0 -7
  617. package/dist/cli/wizard/steps/06-autonomy.js +0 -87
  618. package/dist/cli/wizard/steps/07-observability.d.ts +0 -7
  619. package/dist/cli/wizard/steps/07-observability.js +0 -149
  620. package/dist/cli/wizard/steps/08-deployment.d.ts +0 -7
  621. package/dist/cli/wizard/steps/08-deployment.js +0 -122
  622. package/dist/cli/wizard/steps/08a-target-platforms.d.ts +0 -7
  623. package/dist/cli/wizard/steps/08a-target-platforms.js +0 -50
  624. package/dist/cli/wizard/steps/09-advanced.d.ts +0 -7
  625. package/dist/cli/wizard/steps/09-advanced.js +0 -160
  626. package/dist/cli/wizard/steps/09a-token-efficiency.d.ts +0 -8
  627. package/dist/cli/wizard/steps/09a-token-efficiency.js +0 -153
  628. package/dist/cli/wizard/steps/09b-separation-of-duties.d.ts +0 -7
  629. package/dist/cli/wizard/steps/09b-separation-of-duties.js +0 -93
  630. package/dist/cli/wizard/steps/09c-agents-md.d.ts +0 -8
  631. package/dist/cli/wizard/steps/09c-agents-md.js +0 -61
  632. package/dist/cli/wizard/steps/09d-drupal-tools-eca.d.ts +0 -8
  633. package/dist/cli/wizard/steps/09d-drupal-tools-eca.js +0 -52
  634. package/dist/cli/wizard/steps/09e-memory-management.d.ts +0 -9
  635. package/dist/cli/wizard/steps/09e-memory-management.js +0 -188
  636. package/dist/cli/wizard/steps/10-review.d.ts +0 -7
  637. package/dist/cli/wizard/steps/10-review.js +0 -173
  638. package/dist/cli/wizard/steps/12-agents-folder.d.ts +0 -7
  639. package/dist/cli/wizard/steps/12-agents-folder.js +0 -105
  640. package/dist/cli/wizard/steps/13-openapi-generation.d.ts +0 -7
  641. package/dist/cli/wizard/steps/13-openapi-generation.js +0 -68
  642. package/dist/cli/wizard/steps/14-workspace-registration.d.ts +0 -7
  643. package/dist/cli/wizard/steps/14-workspace-registration.js +0 -72
  644. package/dist/cli/wizard/steps/15-cost-estimation.d.ts +0 -7
  645. package/dist/cli/wizard/steps/15-cost-estimation.js +0 -135
  646. package/dist/cli/wizard/steps/16-best-practices.d.ts +0 -7
  647. package/dist/cli/wizard/steps/16-best-practices.js +0 -181
  648. package/dist/cli/wizard/steps/index.d.ts +0 -21
  649. package/dist/cli/wizard/steps/index.js +0 -21
  650. package/dist/cli/wizard/template-catalog.d.ts +0 -32
  651. package/dist/cli/wizard/template-catalog.js +0 -99
  652. package/dist/cli/wizard/types.d.ts +0 -132
  653. package/dist/cli/wizard/types.js +0 -6
  654. package/dist/cli/wizard/ui/banner.d.ts +0 -20
  655. package/dist/cli/wizard/ui/banner.js +0 -66
  656. package/dist/cli/wizard/ui/console.d.ts +0 -26
  657. package/dist/cli/wizard/ui/console.js +0 -102
  658. package/dist/cli/wizard/ui/wizard-ui.d.ts +0 -75
  659. package/dist/cli/wizard/ui/wizard-ui.js +0 -150
  660. package/dist/cli/wizard/use-cases.d.ts +0 -37
  661. package/dist/cli/wizard/use-cases.js +0 -157
  662. package/dist/cli/wizard/validators/index.d.ts +0 -11
  663. package/dist/cli/wizard/validators/index.js +0 -35
  664. package/dist/cli/workspace-validate.d.ts +0 -23
  665. package/dist/cli/workspace-validate.js +0 -117
  666. package/dist/confidence/index.d.ts +0 -67
  667. package/dist/confidence/index.js +0 -130
  668. package/dist/config/cli-config.d.ts +0 -33
  669. package/dist/config/cli-config.js +0 -107
  670. package/dist/config/defaults.d.ts +0 -197
  671. package/dist/config/defaults.js +0 -299
  672. package/dist/converters/skill-md-converter.d.ts +0 -72
  673. package/dist/converters/skill-md-converter.js +0 -169
  674. package/dist/data/marketplace-skills-catalog.d.ts +0 -119
  675. package/dist/data/marketplace-skills-catalog.js +0 -147
  676. package/dist/data/platform-matrix.d.ts +0 -43
  677. package/dist/data/platform-matrix.js +0 -497
  678. package/dist/deploy/base-driver.d.ts +0 -39
  679. package/dist/deploy/base-driver.js +0 -63
  680. package/dist/deploy/cloud/aws-driver.d.ts +0 -75
  681. package/dist/deploy/cloud/aws-driver.js +0 -349
  682. package/dist/deploy/cloud/azure-driver.d.ts +0 -54
  683. package/dist/deploy/cloud/azure-driver.js +0 -221
  684. package/dist/deploy/cloud/gcp-driver.d.ts +0 -56
  685. package/dist/deploy/cloud/gcp-driver.js +0 -216
  686. package/dist/deploy/docker-driver.d.ts +0 -32
  687. package/dist/deploy/docker-driver.js +0 -246
  688. package/dist/deploy/index.d.ts +0 -15
  689. package/dist/deploy/index.js +0 -28
  690. package/dist/deploy/k8s-driver.d.ts +0 -40
  691. package/dist/deploy/k8s-driver.js +0 -380
  692. package/dist/deploy/local-driver.d.ts +0 -20
  693. package/dist/deploy/local-driver.js +0 -150
  694. package/dist/deploy/types.d.ts +0 -104
  695. package/dist/deploy/types.js +0 -6
  696. package/dist/di-container.d.ts +0 -23
  697. package/dist/di-container.js +0 -200
  698. package/dist/errors/index.d.ts +0 -154
  699. package/dist/errors/index.js +0 -327
  700. package/dist/generated/types.d.ts +0 -691
  701. package/dist/generated/types.js +0 -6
  702. package/dist/index.d.ts +0 -12
  703. package/dist/index.js +0 -14
  704. package/dist/interfaces/governance-provider.interface.d.ts +0 -95
  705. package/dist/interfaces/governance-provider.interface.js +0 -17
  706. package/dist/mcp-server/index.d.ts +0 -21
  707. package/dist/mcp-server/index.js +0 -1866
  708. package/dist/mesh/advanced-routing.d.ts +0 -181
  709. package/dist/mesh/advanced-routing.js +0 -479
  710. package/dist/mesh/agent-graph.d.ts +0 -218
  711. package/dist/mesh/agent-graph.js +0 -493
  712. package/dist/mesh/client.d.ts +0 -144
  713. package/dist/mesh/client.js +0 -427
  714. package/dist/mesh/discovery-gkg.d.ts +0 -26
  715. package/dist/mesh/discovery-gkg.js +0 -92
  716. package/dist/mesh/discovery-providers.d.ts +0 -162
  717. package/dist/mesh/discovery-providers.js +0 -520
  718. package/dist/mesh/discovery.d.ts +0 -176
  719. package/dist/mesh/discovery.js +0 -289
  720. package/dist/mesh/index.d.ts +0 -92
  721. package/dist/mesh/index.js +0 -98
  722. package/dist/mesh/routing.d.ts +0 -158
  723. package/dist/mesh/routing.js +0 -363
  724. package/dist/mesh/types.d.ts +0 -889
  725. package/dist/mesh/types.js +0 -6
  726. package/dist/messaging/broker.d.ts +0 -76
  727. package/dist/messaging/broker.js +0 -147
  728. package/dist/messaging/channels.d.ts +0 -70
  729. package/dist/messaging/channels.js +0 -187
  730. package/dist/messaging/index.d.ts +0 -10
  731. package/dist/messaging/index.js +0 -10
  732. package/dist/messaging/protocols/memory.d.ts +0 -83
  733. package/dist/messaging/protocols/memory.js +0 -290
  734. package/dist/messaging/protocols/redis.d.ts +0 -83
  735. package/dist/messaging/protocols/redis.js +0 -223
  736. package/dist/messaging/types.d.ts +0 -180
  737. package/dist/messaging/types.js +0 -6
  738. package/dist/messenger/Commands/MessengerConsumeCommand.d.ts +0 -57
  739. package/dist/messenger/Commands/MessengerConsumeCommand.js +0 -49
  740. package/dist/messenger/Commands/MessengerFailedCommand.d.ts +0 -76
  741. package/dist/messenger/Commands/MessengerFailedCommand.js +0 -120
  742. package/dist/messenger/Commands/MessengerStatsCommand.d.ts +0 -61
  743. package/dist/messenger/Commands/MessengerStatsCommand.js +0 -80
  744. package/dist/messenger/Commands/index.d.ts +0 -10
  745. package/dist/messenger/Commands/index.js +0 -10
  746. package/dist/messenger/EventSubscriber/FailedMessageSubscriber.d.ts +0 -44
  747. package/dist/messenger/EventSubscriber/FailedMessageSubscriber.js +0 -64
  748. package/dist/messenger/Handler/AgentBatchHandler.d.ts +0 -80
  749. package/dist/messenger/Handler/AgentBatchHandler.js +0 -212
  750. package/dist/messenger/Handler/AgentExecutionHandler.d.ts +0 -76
  751. package/dist/messenger/Handler/AgentExecutionHandler.js +0 -136
  752. package/dist/messenger/Handler/index.d.ts +0 -9
  753. package/dist/messenger/Handler/index.js +0 -9
  754. package/dist/messenger/Message/AgentBatchMessage.d.ts +0 -115
  755. package/dist/messenger/Message/AgentBatchMessage.js +0 -102
  756. package/dist/messenger/Message/AgentExecutionMessage.d.ts +0 -98
  757. package/dist/messenger/Message/AgentExecutionMessage.js +0 -77
  758. package/dist/messenger/Message/index.d.ts +0 -9
  759. package/dist/messenger/Message/index.js +0 -9
  760. package/dist/messenger/Middleware/AuthenticationMiddleware.d.ts +0 -41
  761. package/dist/messenger/Middleware/AuthenticationMiddleware.js +0 -84
  762. package/dist/messenger/Middleware/LoggingMiddleware.d.ts +0 -30
  763. package/dist/messenger/Middleware/LoggingMiddleware.js +0 -59
  764. package/dist/messenger/Middleware/RateLimitMiddleware.d.ts +0 -67
  765. package/dist/messenger/Middleware/RateLimitMiddleware.js +0 -90
  766. package/dist/messenger/Middleware/ValidationMiddleware.d.ts +0 -39
  767. package/dist/messenger/Middleware/ValidationMiddleware.js +0 -96
  768. package/dist/messenger/Middleware/index.d.ts +0 -11
  769. package/dist/messenger/Middleware/index.js +0 -11
  770. package/dist/messenger/Monitoring/MetricsCollector.d.ts +0 -107
  771. package/dist/messenger/Monitoring/MetricsCollector.js +0 -80
  772. package/dist/messenger/Monitoring/QueueMonitor.d.ts +0 -74
  773. package/dist/messenger/Monitoring/QueueMonitor.js +0 -160
  774. package/dist/messenger/Monitoring/index.d.ts +0 -9
  775. package/dist/messenger/Monitoring/index.js +0 -9
  776. package/dist/messenger/index.d.ts +0 -38
  777. package/dist/messenger/index.js +0 -44
  778. package/dist/observability/index.d.ts +0 -13
  779. package/dist/observability/index.js +0 -14
  780. package/dist/observability/metrics.d.ts +0 -131
  781. package/dist/observability/metrics.js +0 -308
  782. package/dist/observability/middleware.d.ts +0 -64
  783. package/dist/observability/middleware.js +0 -225
  784. package/dist/package.json +0 -386
  785. package/dist/repositories/manifest.repository.d.ts +0 -26
  786. package/dist/repositories/manifest.repository.js +0 -96
  787. package/dist/repositories/schema.repository.d.ts +0 -54
  788. package/dist/repositories/schema.repository.js +0 -281
  789. package/dist/runtime/agent-runner.d.ts +0 -46
  790. package/dist/runtime/agent-runner.js +0 -346
  791. package/dist/runtime/crewai.runtime.d.ts +0 -30
  792. package/dist/runtime/crewai.runtime.js +0 -110
  793. package/dist/runtime/langchain.runtime.d.ts +0 -32
  794. package/dist/runtime/langchain.runtime.js +0 -75
  795. package/dist/runtime/langflow.runtime.d.ts +0 -65
  796. package/dist/runtime/langflow.runtime.js +0 -143
  797. package/dist/sdk.d.ts +0 -49
  798. package/dist/sdk.js +0 -66
  799. package/dist/sdks/index.d.ts +0 -15
  800. package/dist/sdks/index.js +0 -17
  801. package/dist/sdks/kagent/crd-generator.d.ts +0 -106
  802. package/dist/sdks/kagent/crd-generator.js +0 -1114
  803. package/dist/sdks/kagent/crd-parser.d.ts +0 -13
  804. package/dist/sdks/kagent/crd-parser.js +0 -92
  805. package/dist/sdks/kagent/index.d.ts +0 -10
  806. package/dist/sdks/kagent/index.js +0 -9
  807. package/dist/sdks/kagent/k8s-resources-generator.d.ts +0 -73
  808. package/dist/sdks/kagent/k8s-resources-generator.js +0 -286
  809. package/dist/sdks/kagent/kubectl-apply.d.ts +0 -35
  810. package/dist/sdks/kagent/kubectl-apply.js +0 -127
  811. package/dist/sdks/kagent/runtime-adapter.d.ts +0 -45
  812. package/dist/sdks/kagent/runtime-adapter.js +0 -129
  813. package/dist/sdks/kagent/tool-registry.d.ts +0 -25
  814. package/dist/sdks/kagent/tool-registry.js +0 -148
  815. package/dist/sdks/kagent/types.d.ts +0 -327
  816. package/dist/sdks/kagent/types.js +0 -10
  817. package/dist/sdks/kagent/validator.d.ts +0 -17
  818. package/dist/sdks/kagent/validator.js +0 -73
  819. package/dist/sdks/shared/index.d.ts +0 -24
  820. package/dist/sdks/shared/index.js +0 -28
  821. package/dist/sdks/shared/manifest-loader.d.ts +0 -41
  822. package/dist/sdks/shared/manifest-loader.js +0 -45
  823. package/dist/sdks/shared/schema-validator.d.ts +0 -34
  824. package/dist/sdks/shared/schema-validator.js +0 -103
  825. package/dist/sdks/shared/types.d.ts +0 -43
  826. package/dist/sdks/shared/types.js +0 -27
  827. package/dist/sdks/shared/validation.d.ts +0 -52
  828. package/dist/sdks/shared/validation.js +0 -41
  829. package/dist/services/agent-card-generator.d.ts +0 -77
  830. package/dist/services/agent-card-generator.js +0 -752
  831. package/dist/services/agent-services/qdrant.service.d.ts +0 -60
  832. package/dist/services/agent-services/qdrant.service.js +0 -168
  833. package/dist/services/agent-type-detector.service.d.ts +0 -72
  834. package/dist/services/agent-type-detector.service.js +0 -197
  835. package/dist/services/agents-md/agents-md-api.service.d.ts +0 -92
  836. package/dist/services/agents-md/agents-md-api.service.js +0 -162
  837. package/dist/services/agents-md/agents-md-discovery.service.d.ts +0 -50
  838. package/dist/services/agents-md/agents-md-discovery.service.js +0 -190
  839. package/dist/services/agents-md/agents-md-generator.service.d.ts +0 -29
  840. package/dist/services/agents-md/agents-md-generator.service.js +0 -252
  841. package/dist/services/agents-md/agents-md.service.d.ts +0 -65
  842. package/dist/services/agents-md/agents-md.service.js +0 -379
  843. package/dist/services/agents-md/repo-agents-md.service.d.ts +0 -87
  844. package/dist/services/agents-md/repo-agents-md.service.js +0 -202
  845. package/dist/services/ai-architect.service.d.ts +0 -48
  846. package/dist/services/ai-architect.service.js +0 -273
  847. package/dist/services/audit.d.ts +0 -86
  848. package/dist/services/audit.js +0 -279
  849. package/dist/services/codegen/codegen.service.d.ts +0 -77
  850. package/dist/services/codegen/codegen.service.js +0 -142
  851. package/dist/services/codegen/generators/manifest.generator.d.ts +0 -41
  852. package/dist/services/codegen/generators/manifest.generator.js +0 -178
  853. package/dist/services/codegen/generators/openapi-zod.generator.d.ts +0 -79
  854. package/dist/services/codegen/generators/openapi-zod.generator.js +0 -482
  855. package/dist/services/codegen/generators/openapi.generator.d.ts +0 -46
  856. package/dist/services/codegen/generators/openapi.generator.js +0 -157
  857. package/dist/services/codegen/generators/types.generator.d.ts +0 -27
  858. package/dist/services/codegen/generators/types.generator.js +0 -97
  859. package/dist/services/codegen/generators/vscode.generator.d.ts +0 -43
  860. package/dist/services/codegen/generators/vscode.generator.js +0 -163
  861. package/dist/services/codegen/generators/zod.generator.d.ts +0 -31
  862. package/dist/services/codegen/generators/zod.generator.js +0 -135
  863. package/dist/services/codegen/index.d.ts +0 -35
  864. package/dist/services/codegen/index.js +0 -38
  865. package/dist/services/conformance/conformance.service.d.ts +0 -75
  866. package/dist/services/conformance/conformance.service.js +0 -194
  867. package/dist/services/conformance/feature-detector.service.d.ts +0 -66
  868. package/dist/services/conformance/feature-detector.service.js +0 -161
  869. package/dist/services/conformance/index.d.ts +0 -10
  870. package/dist/services/conformance/index.js +0 -9
  871. package/dist/services/conformance/profile-loader.service.d.ts +0 -51
  872. package/dist/services/conformance/profile-loader.service.js +0 -192
  873. package/dist/services/conformance/score-calculator.service.d.ts +0 -50
  874. package/dist/services/conformance/score-calculator.service.js +0 -222
  875. package/dist/services/conformance/types.d.ts +0 -107
  876. package/dist/services/conformance/types.js +0 -6
  877. package/dist/services/convert/convert.service.d.ts +0 -26
  878. package/dist/services/convert/convert.service.js +0 -72
  879. package/dist/services/cost-estimation/optimization-patterns.d.ts +0 -23
  880. package/dist/services/cost-estimation/optimization-patterns.js +0 -147
  881. package/dist/services/cost-estimation/pricing.d.ts +0 -29
  882. package/dist/services/cost-estimation/pricing.js +0 -225
  883. package/dist/services/cost-estimation/scenario-estimator.d.ts +0 -59
  884. package/dist/services/cost-estimation/scenario-estimator.js +0 -145
  885. package/dist/services/cost-estimation/token-counter.service.d.ts +0 -51
  886. package/dist/services/cost-estimation/token-counter.service.js +0 -125
  887. package/dist/services/daemon/audit-log.service.d.ts +0 -37
  888. package/dist/services/daemon/audit-log.service.js +0 -81
  889. package/dist/services/daemon/execution.service.d.ts +0 -103
  890. package/dist/services/daemon/execution.service.js +0 -333
  891. package/dist/services/daemon/fs-watcher.service.d.ts +0 -55
  892. package/dist/services/daemon/fs-watcher.service.js +0 -182
  893. package/dist/services/daemon/pairing.service.d.ts +0 -61
  894. package/dist/services/daemon/pairing.service.js +0 -163
  895. package/dist/services/daemon/skill-aggregator.service.d.ts +0 -61
  896. package/dist/services/daemon/skill-aggregator.service.js +0 -336
  897. package/dist/services/daemon/sse-endpoints.d.ts +0 -68
  898. package/dist/services/daemon/sse-endpoints.js +0 -176
  899. package/dist/services/daemon/ws-server.d.ts +0 -66
  900. package/dist/services/daemon/ws-server.js +0 -258
  901. package/dist/services/deployment/deployment.service.d.ts +0 -19
  902. package/dist/services/deployment/deployment.service.js +0 -87
  903. package/dist/services/dev-server/dev-server.service.d.ts +0 -121
  904. package/dist/services/dev-server/dev-server.service.js +0 -290
  905. package/dist/services/dev-server/file-watcher.d.ts +0 -101
  906. package/dist/services/dev-server/file-watcher.js +0 -190
  907. package/dist/services/dev-server/live-validator.d.ts +0 -157
  908. package/dist/services/dev-server/live-validator.js +0 -301
  909. package/dist/services/dev-server/websocket-server.d.ts +0 -137
  910. package/dist/services/dev-server/websocket-server.js +0 -230
  911. package/dist/services/evals/evals-generator.service.d.ts +0 -90
  912. package/dist/services/evals/evals-generator.service.js +0 -1602
  913. package/dist/services/export/anthropic/anthropic-exporter.d.ts +0 -71
  914. package/dist/services/export/anthropic/anthropic-exporter.js +0 -590
  915. package/dist/services/export/anthropic/api-generator.d.ts +0 -39
  916. package/dist/services/export/anthropic/api-generator.js +0 -395
  917. package/dist/services/export/anthropic/index.d.ts +0 -18
  918. package/dist/services/export/anthropic/index.js +0 -16
  919. package/dist/services/export/anthropic/tools-generator.d.ts +0 -35
  920. package/dist/services/export/anthropic/tools-generator.js +0 -259
  921. package/dist/services/export/export-orchestrator.d.ts +0 -90
  922. package/dist/services/export/export-orchestrator.js +0 -181
  923. package/dist/services/export/export.service.d.ts +0 -30
  924. package/dist/services/export/export.service.js +0 -52
  925. package/dist/services/export/langchain/api-generator.d.ts +0 -17
  926. package/dist/services/export/langchain/api-generator.js +0 -375
  927. package/dist/services/export/langchain/callbacks-generator.d.ts +0 -63
  928. package/dist/services/export/langchain/callbacks-generator.js +0 -416
  929. package/dist/services/export/langchain/error-handling-generator.d.ts +0 -76
  930. package/dist/services/export/langchain/error-handling-generator.js +0 -526
  931. package/dist/services/export/langchain/index.d.ts +0 -17
  932. package/dist/services/export/langchain/index.js +0 -13
  933. package/dist/services/export/langchain/langchain-exporter.d.ts +0 -174
  934. package/dist/services/export/langchain/langchain-exporter.js +0 -961
  935. package/dist/services/export/langchain/langgraph-generator.d.ts +0 -86
  936. package/dist/services/export/langchain/langgraph-generator.js +0 -485
  937. package/dist/services/export/langchain/langserve-generator.d.ts +0 -95
  938. package/dist/services/export/langchain/langserve-generator.js +0 -813
  939. package/dist/services/export/langchain/memory-generator.d.ts +0 -71
  940. package/dist/services/export/langchain/memory-generator.js +0 -1182
  941. package/dist/services/export/langchain/openapi-generator.d.ts +0 -20
  942. package/dist/services/export/langchain/openapi-generator.js +0 -364
  943. package/dist/services/export/langchain/plan-execute-generator.d.ts +0 -60
  944. package/dist/services/export/langchain/plan-execute-generator.js +0 -679
  945. package/dist/services/export/langchain/streaming-generator.d.ts +0 -66
  946. package/dist/services/export/langchain/streaming-generator.js +0 -755
  947. package/dist/services/export/langchain/tools-generator.d.ts +0 -67
  948. package/dist/services/export/langchain/tools-generator.js +0 -543
  949. package/dist/services/export/npm/express-generator.d.ts +0 -23
  950. package/dist/services/export/npm/express-generator.js +0 -296
  951. package/dist/services/export/npm/index.d.ts +0 -13
  952. package/dist/services/export/npm/index.js +0 -11
  953. package/dist/services/export/npm/npm-exporter.d.ts +0 -182
  954. package/dist/services/export/npm/npm-exporter.js +0 -1773
  955. package/dist/services/export/npm/openapi-generator.d.ts +0 -19
  956. package/dist/services/export/npm/openapi-generator.js +0 -428
  957. package/dist/services/export/npm/package-json-generator.d.ts +0 -31
  958. package/dist/services/export/npm/package-json-generator.js +0 -156
  959. package/dist/services/export/npm/typescript-generator.d.ts +0 -69
  960. package/dist/services/export/npm/typescript-generator.js +0 -431
  961. package/dist/services/export/testing/index.d.ts +0 -8
  962. package/dist/services/export/testing/index.js +0 -7
  963. package/dist/services/export/testing/test-generator.d.ts +0 -178
  964. package/dist/services/export/testing/test-generator.js +0 -2546
  965. package/dist/services/extension-team/extension-team-kickoff.service.d.ts +0 -85
  966. package/dist/services/extension-team/extension-team-kickoff.service.js +0 -163
  967. package/dist/services/framework-import/langchain-importer.service.d.ts +0 -55
  968. package/dist/services/framework-import/langchain-importer.service.js +0 -157
  969. package/dist/services/framework-import/langflow-importer.service.d.ts +0 -85
  970. package/dist/services/framework-import/langflow-importer.service.js +0 -264
  971. package/dist/services/generation.service.d.ts +0 -65
  972. package/dist/services/generation.service.js +0 -356
  973. package/dist/services/git-rollback.service.d.ts +0 -75
  974. package/dist/services/git-rollback.service.js +0 -329
  975. package/dist/services/git.service.d.ts +0 -49
  976. package/dist/services/git.service.js +0 -162
  977. package/dist/services/github-sync/github-client.d.ts +0 -14
  978. package/dist/services/github-sync/github-client.js +0 -41
  979. package/dist/services/github-sync/gitlab-client.d.ts +0 -17
  980. package/dist/services/github-sync/gitlab-client.js +0 -42
  981. package/dist/services/github-sync/schemas.d.ts +0 -46
  982. package/dist/services/github-sync/schemas.js +0 -36
  983. package/dist/services/github-sync/sync.service.d.ts +0 -27
  984. package/dist/services/github-sync/sync.service.js +0 -101
  985. package/dist/services/gitlab-agent.service.d.ts +0 -94
  986. package/dist/services/gitlab-agent.service.js +0 -164
  987. package/dist/services/governance/cedar-provider.d.ts +0 -27
  988. package/dist/services/governance/cedar-provider.js +0 -109
  989. package/dist/services/governance/cedar-validator.service.d.ts +0 -32
  990. package/dist/services/governance/cedar-validator.service.js +0 -88
  991. package/dist/services/governance/governance-generator.service.d.ts +0 -120
  992. package/dist/services/governance/governance-generator.service.js +0 -1089
  993. package/dist/services/governance-client.service.d.ts +0 -39
  994. package/dist/services/governance-client.service.js +0 -124
  995. package/dist/services/id-card.service.d.ts +0 -109
  996. package/dist/services/id-card.service.js +0 -237
  997. package/dist/services/identity/identity.service.d.ts +0 -21
  998. package/dist/services/identity/identity.service.js +0 -36
  999. package/dist/services/import/framework-to-ossa.d.ts +0 -21
  1000. package/dist/services/import/framework-to-ossa.js +0 -171
  1001. package/dist/services/interfaces/governance-provider.interface.d.ts +0 -59
  1002. package/dist/services/interfaces/governance-provider.interface.js +0 -6
  1003. package/dist/services/knowledge-generation.service.d.ts +0 -46
  1004. package/dist/services/knowledge-generation.service.js +0 -96
  1005. package/dist/services/knowledge.service.d.ts +0 -88
  1006. package/dist/services/knowledge.service.js +0 -214
  1007. package/dist/services/llms-txt/llms-txt.service.d.ts +0 -59
  1008. package/dist/services/llms-txt/llms-txt.service.js +0 -540
  1009. package/dist/services/manifest/manifest-crud.service.d.ts +0 -119
  1010. package/dist/services/manifest/manifest-crud.service.js +0 -319
  1011. package/dist/services/mcp/bridge.service.d.ts +0 -63
  1012. package/dist/services/mcp/bridge.service.js +0 -222
  1013. package/dist/services/mcp-manifest/mcp-manifest.service.d.ts +0 -20
  1014. package/dist/services/mcp-manifest/mcp-manifest.service.js +0 -85
  1015. package/dist/services/messaging/example.d.ts +0 -6
  1016. package/dist/services/messaging/example.js +0 -260
  1017. package/dist/services/messaging/index.d.ts +0 -80
  1018. package/dist/services/messaging/index.js +0 -86
  1019. package/dist/services/messaging/memory-broker.d.ts +0 -103
  1020. package/dist/services/messaging/memory-broker.js +0 -436
  1021. package/dist/services/messaging/messaging.service.d.ts +0 -150
  1022. package/dist/services/messaging/messaging.service.js +0 -458
  1023. package/dist/services/messaging/messaging.types.d.ts +0 -319
  1024. package/dist/services/messaging/messaging.types.js +0 -68
  1025. package/dist/services/migration/langchain-migration.service.d.ts +0 -117
  1026. package/dist/services/migration/langchain-migration.service.js +0 -621
  1027. package/dist/services/migration-transform.service.d.ts +0 -82
  1028. package/dist/services/migration-transform.service.js +0 -322
  1029. package/dist/services/migration.service.d.ts +0 -132
  1030. package/dist/services/migration.service.js +0 -698
  1031. package/dist/services/multi-agent/team-generator.service.d.ts +0 -48
  1032. package/dist/services/multi-agent/team-generator.service.js +0 -584
  1033. package/dist/services/observability/observability-generator.service.d.ts +0 -54
  1034. package/dist/services/observability/observability-generator.service.js +0 -1419
  1035. package/dist/services/openapi-extensions-validation.d.ts +0 -20
  1036. package/dist/services/openapi-extensions-validation.js +0 -193
  1037. package/dist/services/registry/bundle.service.d.ts +0 -36
  1038. package/dist/services/registry/bundle.service.js +0 -70
  1039. package/dist/services/registry/index.service.d.ts +0 -76
  1040. package/dist/services/registry/index.service.js +0 -88
  1041. package/dist/services/registry/registry.service.d.ts +0 -39
  1042. package/dist/services/registry/registry.service.js +0 -169
  1043. package/dist/services/registry.service.d.ts +0 -34
  1044. package/dist/services/registry.service.js +0 -162
  1045. package/dist/services/release-automation/base-crud.service.d.ts +0 -93
  1046. package/dist/services/release-automation/base-crud.service.js +0 -68
  1047. package/dist/services/release-automation/generate-changelog.d.ts +0 -7
  1048. package/dist/services/release-automation/generate-changelog.js +0 -288
  1049. package/dist/services/release-automation/increment-dev-tag.d.ts +0 -7
  1050. package/dist/services/release-automation/increment-dev-tag.js +0 -160
  1051. package/dist/services/release-automation/index.d.ts +0 -12
  1052. package/dist/services/release-automation/index.js +0 -12
  1053. package/dist/services/release-automation/merge-request.service.d.ts +0 -119
  1054. package/dist/services/release-automation/merge-request.service.js +0 -212
  1055. package/dist/services/release-automation/milestone.service.d.ts +0 -104
  1056. package/dist/services/release-automation/milestone.service.js +0 -207
  1057. package/dist/services/release-automation/release-agent.service.d.ts +0 -39
  1058. package/dist/services/release-automation/release-agent.service.js +0 -43
  1059. package/dist/services/release-automation/release-buttons.d.ts +0 -7
  1060. package/dist/services/release-automation/release-buttons.js +0 -207
  1061. package/dist/services/release-automation/release.service.d.ts +0 -118
  1062. package/dist/services/release-automation/release.service.js +0 -207
  1063. package/dist/services/release-automation/schemas/release.schema.d.ts +0 -299
  1064. package/dist/services/release-automation/schemas/release.schema.js +0 -272
  1065. package/dist/services/release-automation/tag.service.d.ts +0 -99
  1066. package/dist/services/release-automation/tag.service.js +0 -183
  1067. package/dist/services/release-automation/webhook.service.d.ts +0 -37
  1068. package/dist/services/release-automation/webhook.service.js +0 -187
  1069. package/dist/services/runtime/anthropic.adapter.d.ts +0 -145
  1070. package/dist/services/runtime/anthropic.adapter.js +0 -521
  1071. package/dist/services/runtime/azure.adapter.d.ts +0 -389
  1072. package/dist/services/runtime/azure.adapter.js +0 -517
  1073. package/dist/services/runtime/bedrock.adapter.d.ts +0 -170
  1074. package/dist/services/runtime/bedrock.adapter.js +0 -665
  1075. package/dist/services/runtime/claude/capability-mapper.d.ts +0 -84
  1076. package/dist/services/runtime/claude/capability-mapper.js +0 -245
  1077. package/dist/services/runtime/claude/claude-adapter.d.ts +0 -80
  1078. package/dist/services/runtime/claude/claude-adapter.js +0 -283
  1079. package/dist/services/runtime/claude/manifest-parser.d.ts +0 -77
  1080. package/dist/services/runtime/claude/manifest-parser.js +0 -169
  1081. package/dist/services/runtime/claude/types.d.ts +0 -115
  1082. package/dist/services/runtime/claude/types.js +0 -6
  1083. package/dist/services/runtime/gemini.adapter.d.ts +0 -190
  1084. package/dist/services/runtime/gemini.adapter.js +0 -600
  1085. package/dist/services/runtime/mistral.adapter.d.ts +0 -201
  1086. package/dist/services/runtime/mistral.adapter.js +0 -652
  1087. package/dist/services/runtime/ollama.adapter.d.ts +0 -187
  1088. package/dist/services/runtime/ollama.adapter.js +0 -521
  1089. package/dist/services/runtime/openai.adapter.d.ts +0 -127
  1090. package/dist/services/runtime/openai.adapter.js +0 -247
  1091. package/dist/services/skill-registry.service.d.ts +0 -134
  1092. package/dist/services/skill-registry.service.js +0 -452
  1093. package/dist/services/skills/claude-skills.service.d.ts +0 -59
  1094. package/dist/services/skills/claude-skills.service.js +0 -275
  1095. package/dist/services/skills/skill-manifest.service.d.ts +0 -23
  1096. package/dist/services/skills/skill-manifest.service.js +0 -86
  1097. package/dist/services/skills-pipeline/index.d.ts +0 -9
  1098. package/dist/services/skills-pipeline/index.js +0 -9
  1099. package/dist/services/skills-pipeline/skills-export.service.d.ts +0 -86
  1100. package/dist/services/skills-pipeline/skills-export.service.js +0 -483
  1101. package/dist/services/skills-pipeline/skills-generator.service.d.ts +0 -118
  1102. package/dist/services/skills-pipeline/skills-generator.service.js +0 -648
  1103. package/dist/services/skills-pipeline/skills-install.service.d.ts +0 -42
  1104. package/dist/services/skills-pipeline/skills-install.service.js +0 -219
  1105. package/dist/services/skills-pipeline/skills-research.service.d.ts +0 -110
  1106. package/dist/services/skills-pipeline/skills-research.service.js +0 -466
  1107. package/dist/services/structure/agents-folder.service.d.ts +0 -37
  1108. package/dist/services/structure/agents-folder.service.js +0 -318
  1109. package/dist/services/taxonomy-service.d.ts +0 -103
  1110. package/dist/services/taxonomy-service.js +0 -343
  1111. package/dist/services/taxonomy-validator.service.d.ts +0 -25
  1112. package/dist/services/taxonomy-validator.service.js +0 -149
  1113. package/dist/services/taxonomy.service.d.ts +0 -132
  1114. package/dist/services/taxonomy.service.js +0 -342
  1115. package/dist/services/template-processor.service.d.ts +0 -34
  1116. package/dist/services/template-processor.service.js +0 -123
  1117. package/dist/services/template.service.d.ts +0 -54
  1118. package/dist/services/template.service.js +0 -154
  1119. package/dist/services/test-runner/mock-llm.service.d.ts +0 -77
  1120. package/dist/services/test-runner/mock-llm.service.js +0 -172
  1121. package/dist/services/test-runner/scenarios.d.ts +0 -36
  1122. package/dist/services/test-runner/scenarios.js +0 -202
  1123. package/dist/services/test-runner/test-runner.service.d.ts +0 -39
  1124. package/dist/services/test-runner/test-runner.service.js +0 -165
  1125. package/dist/services/trust/trust.service.d.ts +0 -47
  1126. package/dist/services/trust/trust.service.js +0 -236
  1127. package/dist/services/validation/best-practices-validator.d.ts +0 -84
  1128. package/dist/services/validation/best-practices-validator.js +0 -499
  1129. package/dist/services/validation/cost-estimator.d.ts +0 -69
  1130. package/dist/services/validation/cost-estimator.js +0 -223
  1131. package/dist/services/validation/enhanced-validator.d.ts +0 -78
  1132. package/dist/services/validation/enhanced-validator.js +0 -210
  1133. package/dist/services/validation/index.d.ts +0 -13
  1134. package/dist/services/validation/index.js +0 -9
  1135. package/dist/services/validation/security-validator.d.ts +0 -81
  1136. package/dist/services/validation/security-validator.js +0 -330
  1137. package/dist/services/validation-zod.service.d.ts +0 -36
  1138. package/dist/services/validation-zod.service.js +0 -325
  1139. package/dist/services/validation.service.d.ts +0 -50
  1140. package/dist/services/validation.service.js +0 -445
  1141. package/dist/services/validators/a2a.validator.d.ts +0 -16
  1142. package/dist/services/validators/a2a.validator.js +0 -63
  1143. package/dist/services/validators/anthropic.validator.d.ts +0 -9
  1144. package/dist/services/validators/anthropic.validator.js +0 -111
  1145. package/dist/services/validators/autogen.validator.d.ts +0 -12
  1146. package/dist/services/validators/autogen.validator.js +0 -151
  1147. package/dist/services/validators/contract.validator.d.ts +0 -91
  1148. package/dist/services/validators/contract.validator.js +0 -522
  1149. package/dist/services/validators/crewai.validator.d.ts +0 -12
  1150. package/dist/services/validators/crewai.validator.js +0 -152
  1151. package/dist/services/validators/cursor.validator.d.ts +0 -9
  1152. package/dist/services/validators/cursor.validator.js +0 -93
  1153. package/dist/services/validators/dependencies.validator.d.ts +0 -104
  1154. package/dist/services/validators/dependencies.validator.js +0 -388
  1155. package/dist/services/validators/index.d.ts +0 -20
  1156. package/dist/services/validators/index.js +0 -21
  1157. package/dist/services/validators/kagent.validator.d.ts +0 -13
  1158. package/dist/services/validators/kagent.validator.js +0 -205
  1159. package/dist/services/validators/langchain.validator.d.ts +0 -12
  1160. package/dist/services/validators/langchain.validator.js +0 -139
  1161. package/dist/services/validators/langflow.validator.d.ts +0 -9
  1162. package/dist/services/validators/langflow.validator.js +0 -98
  1163. package/dist/services/validators/langgraph.validator.d.ts +0 -12
  1164. package/dist/services/validators/langgraph.validator.js +0 -161
  1165. package/dist/services/validators/llamaindex.validator.d.ts +0 -9
  1166. package/dist/services/validators/llamaindex.validator.js +0 -125
  1167. package/dist/services/validators/mcp.validator.d.ts +0 -16
  1168. package/dist/services/validators/mcp.validator.js +0 -70
  1169. package/dist/services/validators/messaging.validator.d.ts +0 -77
  1170. package/dist/services/validators/messaging.validator.js +0 -298
  1171. package/dist/services/validators/openai.validator.d.ts +0 -9
  1172. package/dist/services/validators/openai.validator.js +0 -131
  1173. package/dist/services/validators/registry.d.ts +0 -21
  1174. package/dist/services/validators/registry.js +0 -42
  1175. package/dist/services/validators/vercel-ai.validator.d.ts +0 -9
  1176. package/dist/services/validators/vercel-ai.validator.js +0 -101
  1177. package/dist/services/version-detection.service.d.ts +0 -50
  1178. package/dist/services/version-detection.service.js +0 -209
  1179. package/dist/services/wizard/prompts.d.ts +0 -71
  1180. package/dist/services/wizard/prompts.js +0 -345
  1181. package/dist/services/wizard/wizard-state.service.d.ts +0 -111
  1182. package/dist/services/wizard/wizard-state.service.js +0 -548
  1183. package/dist/services/wizard/wizard.service.d.ts +0 -60
  1184. package/dist/services/wizard/wizard.service.js +0 -329
  1185. package/dist/services/workspace/workspace.service.d.ts +0 -44
  1186. package/dist/services/workspace/workspace.service.js +0 -203
  1187. package/dist/skills/test-skill/README.md +0 -36
  1188. package/dist/skills/test-skill/SKILL.md +0 -31
  1189. package/dist/skills/test-skill/index.d.ts +0 -31
  1190. package/dist/skills/test-skill/install.js +0 -44
  1191. package/dist/skills/test-skill/package.json +0 -36
  1192. package/dist/spec/extensions/a2a-messaging.md +0 -471
  1193. package/dist/spec/extensions/cognition.schema.json +0 -87
  1194. package/dist/spec/extensions/knowledge-graph/knowledge-graph.schema.json +0 -386
  1195. package/dist/spec/extensions/manifest-extensions.md +0 -550
  1196. package/dist/spec/extensions/openapi/ossa-openapi-extensions.schema.json +0 -804
  1197. package/dist/spec/extensions/role-manifest.md +0 -188
  1198. package/dist/spec/extensions/skills-compatibility.md +0 -292
  1199. package/dist/spec/layer4-economics/duadp-examples.json +0 -44
  1200. package/dist/spec/ossa-audit-api.yaml +0 -311
  1201. package/dist/spec/reference/reference-agents/compliance-auditor/manifest.ossa.yaml +0 -527
  1202. package/dist/spec/reference/reference-agents/doc-agent/manifest.ossa.yaml +0 -776
  1203. package/dist/spec/reference/reference-agents/mr-reviewer/manifest.ossa.yaml +0 -249
  1204. package/dist/spec/reference/reference-agents/mr-reviewer/system-prompt.md +0 -154
  1205. package/dist/spec/reference/reference-agents/ossa-validator-v0.3/manifest.ossa.yaml +0 -548
  1206. package/dist/spec/reference/reference-agents/ossa-validator-v0.3/system-prompt.md +0 -135
  1207. package/dist/spec/reference/reference-agents/pipeline-fixer/manifest.ossa.yaml +0 -336
  1208. package/dist/spec/reference/reference-agents/release-orchestrator/README.md +0 -35
  1209. package/dist/spec/reference/reference-agents/release-orchestrator/manifest.ossa.yaml +0 -233
  1210. package/dist/spec/registry/README.md +0 -478
  1211. package/dist/spec/registry/openapi.yaml +0 -1124
  1212. package/dist/spec/registry/project-registry.schema.json +0 -62
  1213. package/dist/spec/registry/registry-api.schema.json +0 -731
  1214. package/dist/spec/registry/registry-api.yaml +0 -144
  1215. package/dist/spec/registry/registry-spec.md +0 -2239
  1216. package/dist/spec/schema/agent-test.schema.json +0 -117
  1217. package/dist/spec/schema/components/activity-stream.schema.json +0 -94
  1218. package/dist/spec/schema/components/adapter.schema.json +0 -33
  1219. package/dist/spec/schema/components/constraints.schema.json +0 -84
  1220. package/dist/spec/schema/components/dependencies.schema.json +0 -147
  1221. package/dist/spec/schema/components/encryption.schema.json +0 -115
  1222. package/dist/spec/schema/components/identity.schema.json +0 -126
  1223. package/dist/spec/schema/components/index.json +0 -37
  1224. package/dist/spec/schema/components/llm-config.schema.json +0 -67
  1225. package/dist/spec/schema/components/metadata.schema.json +0 -52
  1226. package/dist/spec/schema/components/tool.schema.json +0 -64
  1227. package/dist/spec/schema/extensions/a2a.extension.schema.json +0 -127
  1228. package/dist/spec/uadp/README.md +0 -393
  1229. package/dist/spec/uadp/openapi.yaml +0 -387
  1230. package/dist/spec/uadp/schemas/uadp-agents-response.schema.json +0 -68
  1231. package/dist/spec/uadp/schemas/uadp-federation-response.schema.json +0 -46
  1232. package/dist/spec/uadp/schemas/uadp-manifest.schema.json +0 -82
  1233. package/dist/spec/uadp/schemas/uadp-skills-response.schema.json +0 -72
  1234. package/dist/spec/v0.4/agent-card.schema.json +0 -477
  1235. package/dist/spec/v0.4/agent.schema.json +0 -1581
  1236. package/dist/spec/v0.4/conformance/profiles/baseline.json +0 -19
  1237. package/dist/spec/v0.4/conformance/profiles/enterprise.json +0 -20
  1238. package/dist/spec/v0.4/extensions/a2a/README.md +0 -193
  1239. package/dist/spec/v0.4/extensions/a2a/a2a.schema.json +0 -77
  1240. package/dist/spec/v0.4/extensions/ag2/ag2.schema.json +0 -277
  1241. package/dist/spec/v0.4/extensions/cognition/cognition.schema.json +0 -94
  1242. package/dist/spec/v0.4/extensions/cognition/thought-node.schema.json +0 -80
  1243. package/dist/spec/v0.4/extensions/crewai/crewai.schema.json +0 -256
  1244. package/dist/spec/v0.4/extensions/drupal/drupal.schema.json +0 -318
  1245. package/dist/spec/v0.4/extensions/evals/evals.schema.json +0 -597
  1246. package/dist/spec/v0.4/extensions/governance/governance-extension.yaml +0 -161
  1247. package/dist/spec/v0.4/extensions/identity/identity.schema.json +0 -302
  1248. package/dist/spec/v0.4/extensions/kagent/README.md +0 -315
  1249. package/dist/spec/v0.4/extensions/kagent/kagent.schema.json +0 -624
  1250. package/dist/spec/v0.4/extensions/langchain/langchain.schema.json +0 -243
  1251. package/dist/spec/v0.4/extensions/langgraph/langgraph.schema.json +0 -211
  1252. package/dist/spec/v0.4/extensions/mcp/README.md +0 -276
  1253. package/dist/spec/v0.4/extensions/mcp/mcp.schema.json +0 -84
  1254. package/dist/spec/v0.4/extensions/memory/memory.schema.json +0 -7
  1255. package/dist/spec/v0.4/extensions/team/team.schema.json +0 -304
  1256. package/dist/spec/v0.4/extensions/token-efficiency/token-efficiency.schema.json +0 -47
  1257. package/dist/spec/v0.4/mcp.schema.json +0 -1
  1258. package/dist/spec/v0.4/skill.schema.json +0 -1
  1259. package/dist/spec/v0.4/validator.schema.json +0 -282
  1260. package/dist/spec/v0.5/agent-builder-openapi.yaml +0 -230
  1261. package/dist/spec/v0.5/agent-card.schema.json +0 -477
  1262. package/dist/spec/v0.5/agent.schema.json +0 -1658
  1263. package/dist/spec/v0.5/conformance/profiles/baseline.json +0 -19
  1264. package/dist/spec/v0.5/conformance/profiles/enterprise.json +0 -20
  1265. package/dist/spec/v0.5/extensions/a2a/README.md +0 -193
  1266. package/dist/spec/v0.5/extensions/a2a/a2a.schema.json +0 -77
  1267. package/dist/spec/v0.5/extensions/ag2/ag2.schema.json +0 -277
  1268. package/dist/spec/v0.5/extensions/cognition/cognition.schema.json +0 -171
  1269. package/dist/spec/v0.5/extensions/cognition/thought-node.schema.json +0 -80
  1270. package/dist/spec/v0.5/extensions/crewai/crewai.schema.json +0 -256
  1271. package/dist/spec/v0.5/extensions/drupal/drupal.schema.json +0 -318
  1272. package/dist/spec/v0.5/extensions/economics/context-pack.schema.json +0 -91
  1273. package/dist/spec/v0.5/extensions/economics/execution-profile.schema.json +0 -148
  1274. package/dist/spec/v0.5/extensions/economics/failure-semantics.schema.json +0 -32
  1275. package/dist/spec/v0.5/extensions/economics/replay-packet.schema.json +0 -120
  1276. package/dist/spec/v0.5/extensions/evals/evals.schema.json +0 -597
  1277. package/dist/spec/v0.5/extensions/governance/governance-extension.yaml +0 -161
  1278. package/dist/spec/v0.5/extensions/identity/identity.schema.json +0 -302
  1279. package/dist/spec/v0.5/extensions/kagent/README.md +0 -315
  1280. package/dist/spec/v0.5/extensions/kagent/kagent.schema.json +0 -624
  1281. package/dist/spec/v0.5/extensions/langchain/langchain.schema.json +0 -243
  1282. package/dist/spec/v0.5/extensions/langgraph/langgraph.schema.json +0 -211
  1283. package/dist/spec/v0.5/extensions/mcp/README.md +0 -276
  1284. package/dist/spec/v0.5/extensions/mcp/mcp.schema.json +0 -84
  1285. package/dist/spec/v0.5/extensions/memory/memory.schema.json +0 -7
  1286. package/dist/spec/v0.5/extensions/team/team.schema.json +0 -304
  1287. package/dist/spec/v0.5/extensions/token-efficiency/token-efficiency.schema.json +0 -47
  1288. package/dist/spec/v0.5/mcp.schema.json +0 -1
  1289. package/dist/spec/v0.5/memory-hierarchy.yaml +0 -120
  1290. package/dist/spec/v0.5/role.schema.json +0 -268
  1291. package/dist/spec/v0.5/skill.schema.json +0 -1
  1292. package/dist/spec/v0.5/validator.schema.json +0 -282
  1293. package/dist/spec/v1/agent-card.schema.json +0 -254
  1294. package/dist/spec/v1/mcp.schema.json +0 -183
  1295. package/dist/spec/v1/skill.schema.json +0 -346
  1296. package/dist/testing/fixtures.d.ts +0 -61
  1297. package/dist/testing/fixtures.js +0 -298
  1298. package/dist/testing/index.d.ts +0 -10
  1299. package/dist/testing/index.js +0 -10
  1300. package/dist/testing/reporters/base.d.ts +0 -24
  1301. package/dist/testing/reporters/base.js +0 -5
  1302. package/dist/testing/reporters/console.d.ts +0 -18
  1303. package/dist/testing/reporters/console.js +0 -78
  1304. package/dist/testing/reporters/json.d.ts +0 -29
  1305. package/dist/testing/reporters/json.js +0 -40
  1306. package/dist/testing/runner.d.ts +0 -96
  1307. package/dist/testing/runner.js +0 -392
  1308. package/dist/transports/index.d.ts +0 -8
  1309. package/dist/transports/index.js +0 -11
  1310. package/dist/transports/sse.d.ts +0 -166
  1311. package/dist/transports/sse.js +0 -314
  1312. package/dist/transports/webrtc.d.ts +0 -183
  1313. package/dist/transports/webrtc.js +0 -481
  1314. package/dist/transports/websocket.d.ts +0 -205
  1315. package/dist/transports/websocket.js +0 -407
  1316. package/dist/types/architect.d.ts +0 -48
  1317. package/dist/types/architect.js +0 -7
  1318. package/dist/types/cognition.zod.d.ts +0 -312
  1319. package/dist/types/cognition.zod.js +0 -223
  1320. package/dist/types/dynamic-agent-types.d.ts +0 -158
  1321. package/dist/types/dynamic-agent-types.js +0 -473
  1322. package/dist/types/generated/ossa-0.3.2.types.d.ts +0 -367
  1323. package/dist/types/generated/ossa-0.3.2.types.js +0 -10
  1324. package/dist/types/generated/ossa-0.3.2.zod.d.ts +0 -36
  1325. package/dist/types/generated/ossa-0.3.2.zod.js +0 -25
  1326. package/dist/types/generated/ossa-0.3.3.types.d.ts +0 -367
  1327. package/dist/types/generated/ossa-0.3.3.types.js +0 -10
  1328. package/dist/types/generated/ossa-0.3.3.zod.d.ts +0 -36
  1329. package/dist/types/generated/ossa-0.3.3.zod.js +0 -25
  1330. package/dist/types/generated/ossa-0.3.4.types.d.ts +0 -430
  1331. package/dist/types/generated/ossa-0.3.4.types.js +0 -10
  1332. package/dist/types/generated/ossa-0.3.4.zod.d.ts +0 -340
  1333. package/dist/types/generated/ossa-0.3.4.zod.js +0 -120
  1334. package/dist/types/identity.d.ts +0 -82
  1335. package/dist/types/identity.js +0 -10
  1336. package/dist/types/identity.zod.d.ts +0 -622
  1337. package/dist/types/identity.zod.js +0 -272
  1338. package/dist/types/index.d.ts +0 -711
  1339. package/dist/types/index.js +0 -32
  1340. package/dist/types/llms-txt.zod.d.ts +0 -320
  1341. package/dist/types/llms-txt.zod.js +0 -82
  1342. package/dist/types/mcp-server-manifest.d.ts +0 -83
  1343. package/dist/types/mcp-server-manifest.js +0 -17
  1344. package/dist/types/messaging.d.ts +0 -116
  1345. package/dist/types/messaging.js +0 -6
  1346. package/dist/types/openapi-extensions.d.ts +0 -164
  1347. package/dist/types/openapi-extensions.js +0 -6
  1348. package/dist/types/personality.d.ts +0 -141
  1349. package/dist/types/personality.js +0 -72
  1350. package/dist/types/personality.zod.d.ts +0 -483
  1351. package/dist/types/personality.zod.js +0 -190
  1352. package/dist/types/policy.d.ts +0 -377
  1353. package/dist/types/policy.js +0 -84
  1354. package/dist/types/prompts.d.ts +0 -219
  1355. package/dist/types/prompts.js +0 -163
  1356. package/dist/types/prompts.zod.d.ts +0 -252
  1357. package/dist/types/prompts.zod.js +0 -113
  1358. package/dist/types/protocols.d.ts +0 -158
  1359. package/dist/types/protocols.js +0 -8
  1360. package/dist/types/role.d.ts +0 -126
  1361. package/dist/types/role.js +0 -38
  1362. package/dist/types/security.d.ts +0 -123
  1363. package/dist/types/security.js +0 -9
  1364. package/dist/types/skill.d.ts +0 -116
  1365. package/dist/types/skill.js +0 -35
  1366. package/dist/types/task.d.ts +0 -222
  1367. package/dist/types/task.js +0 -40
  1368. package/dist/types/tool.d.ts +0 -73
  1369. package/dist/types/tool.js +0 -66
  1370. package/dist/types/workflow.d.ts +0 -283
  1371. package/dist/types/workflow.js +0 -51
  1372. package/dist/utils/constants.d.ts +0 -31
  1373. package/dist/utils/constants.js +0 -31
  1374. package/dist/utils/http-client.d.ts +0 -22
  1375. package/dist/utils/http-client.js +0 -51
  1376. package/dist/utils/index.d.ts +0 -12
  1377. package/dist/utils/index.js +0 -12
  1378. package/dist/utils/logger.d.ts +0 -82
  1379. package/dist/utils/logger.js +0 -250
  1380. package/dist/utils/manifest-scanner.d.ts +0 -41
  1381. package/dist/utils/manifest-scanner.js +0 -71
  1382. package/dist/utils/path-validator.d.ts +0 -24
  1383. package/dist/utils/path-validator.js +0 -70
  1384. package/dist/utils/proxy-resolver.d.ts +0 -36
  1385. package/dist/utils/proxy-resolver.js +0 -59
  1386. package/dist/utils/type-guards.d.ts +0 -59
  1387. package/dist/utils/type-guards.js +0 -190
  1388. package/dist/utils/user-agent.d.ts +0 -11
  1389. package/dist/utils/user-agent.js +0 -17
  1390. package/dist/utils/version.d.ts +0 -79
  1391. package/dist/utils/version.js +0 -239
  1392. package/dist/utils/yaml-parser.d.ts +0 -29
  1393. package/dist/utils/yaml-parser.js +0 -38
  1394. package/dist/validation/enhanced-validator.d.ts +0 -38
  1395. package/dist/validation/enhanced-validator.js +0 -242
  1396. package/dist/validation/error-codes.d.ts +0 -170
  1397. package/dist/validation/error-codes.js +0 -1160
  1398. package/dist/validation/error-formatter.d.ts +0 -81
  1399. package/dist/validation/error-formatter.js +0 -375
  1400. package/dist/validation/index.d.ts +0 -19
  1401. package/dist/validation/index.js +0 -26
  1402. package/dist/validation/linter.d.ts +0 -36
  1403. package/dist/validation/linter.js +0 -453
  1404. package/dist/validation/progressive-scorer.d.ts +0 -123
  1405. package/dist/validation/progressive-scorer.js +0 -370
  1406. package/dist/validation/validation-context.d.ts +0 -86
  1407. package/dist/validation/validation-context.js +0 -138
  1408. package/dist/validation/validator-registry.d.ts +0 -158
  1409. package/dist/validation/validator-registry.js +0 -245
  1410. package/dist/validation/validator.d.ts +0 -42
  1411. package/dist/validation/validator.js +0 -290
  1412. package/dist/validation/version-compliance.d.ts +0 -17
  1413. package/dist/validation/version-compliance.js +0 -25
  1414. package/dist/version-management/api/server.d.ts +0 -3
  1415. package/dist/version-management/api/server.js +0 -75
  1416. package/dist/version-management/cli/index.d.ts +0 -3
  1417. package/dist/version-management/cli/index.js +0 -219
  1418. package/dist/version-management/core/version-manager.d.ts +0 -108
  1419. package/dist/version-management/core/version-manager.js +0 -322
  1420. package/dist/version-management/index.d.ts +0 -3
  1421. package/dist/version-management/index.js +0 -2
  1422. package/dist/version.d.ts +0 -62
  1423. package/dist/version.js +0 -76
  1424. package/examples/a2a/agent-handoff.ossa.yaml +0 -202
  1425. package/examples/a2a/service-discovery.ossa.yaml +0 -194
  1426. package/examples/adapters/anthropic-quickstart.ts +0 -66
  1427. package/examples/adapters/crewai-quickstart.py +0 -86
  1428. package/examples/adapters/drupal-eca-mapping.yaml +0 -153
  1429. package/examples/adapters/drupal-eca-task.yaml +0 -48
  1430. package/examples/adapters/drupal-flowdrop-mapping.yaml +0 -463
  1431. package/examples/adapters/drupal-maestro-mapping.yaml +0 -369
  1432. package/examples/adapters/langchain-quickstart.ts +0 -40
  1433. package/examples/adapters/mistral-README.md +0 -367
  1434. package/examples/adapters/mistral-agent.yaml +0 -147
  1435. package/examples/adapters/symfony-messenger-task.yaml +0 -135
  1436. package/examples/adapters/symfony-messenger-workflow.yaml +0 -352
  1437. package/examples/adk-integration/code-review-workflow.yml +0 -136
  1438. package/examples/adk-integration/customer-support.yml +0 -263
  1439. package/examples/adk-integration/data-pipeline.yml +0 -173
  1440. package/examples/advanced/patterns/compliance-context-production.json +0 -53
  1441. package/examples/advanced/patterns/model-router.ts +0 -274
  1442. package/examples/advanced/patterns/smart-model-routing.ts +0 -300
  1443. package/examples/advanced/reasoning-agent.yaml +0 -136
  1444. package/examples/advanced/workflows/hybrid-model-strategy.yaml +0 -215
  1445. package/examples/agent-manifests/critics/critic-agent.yaml +0 -149
  1446. package/examples/agent-manifests/governors/governor-agent.yaml +0 -128
  1447. package/examples/agent-manifests/integrators/integrator-agent.yaml +0 -103
  1448. package/examples/agent-manifests/judges/judge-agent.yaml +0 -153
  1449. package/examples/agent-manifests/monitors/monitor-agent.yaml +0 -122
  1450. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +0 -247
  1451. package/examples/agent-manifests/sample-compliant-agent.yaml +0 -160
  1452. package/examples/agent-manifests/v0.4-identity-security-protocols-full.ossa.yaml +0 -159
  1453. package/examples/agent-manifests/v0.4-minimal-identity-security-protocols.ossa.yaml +0 -37
  1454. package/examples/agent-manifests/v0.5-identity-security-protocols.ossa.yaml +0 -159
  1455. package/examples/agent-manifests/v0.5-minimal.ossa.yaml +0 -37
  1456. package/examples/agent-manifests/workers/worker-agent.yaml +0 -82
  1457. package/examples/agent-mesh/DISCOVERY.md +0 -679
  1458. package/examples/agent-mesh/README.ts +0 -311
  1459. package/examples/agent-mesh/basic-usage.ts +0 -461
  1460. package/examples/agent-mesh/discovery-system.ts +0 -670
  1461. package/examples/agent-skills/SKILLS_CATALOG.md +0 -341
  1462. package/examples/agent-skills/ossa-agent-authoring/SKILL.md +0 -62
  1463. package/examples/agent-skills/react-best-practices/SKILL.md +0 -158
  1464. package/examples/agent-skills/react-best-practices/references/react-performance-guidelines.md +0 -500
  1465. package/examples/agent-taxonomy-example.ossa.yaml +0 -89
  1466. package/examples/agents/01-customer-support-bot/.env.example +0 -32
  1467. package/examples/agents/01-customer-support-bot/Dockerfile +0 -30
  1468. package/examples/agents/01-customer-support-bot/README.md +0 -295
  1469. package/examples/agents/01-customer-support-bot/agent.ossa.yaml +0 -165
  1470. package/examples/agents/01-customer-support-bot/docker-compose.yml +0 -55
  1471. package/examples/agents/01-customer-support-bot/openapi.yaml +0 -238
  1472. package/examples/agents/01-customer-support-bot/package.json +0 -48
  1473. package/examples/agents/02-code-review-agent/README.md +0 -72
  1474. package/examples/agents/02-code-review-agent/agent.ossa.yaml +0 -288
  1475. package/examples/agents/02-code-review-agent/docker-compose.yml +0 -22
  1476. package/examples/agents/02-code-review-agent/openapi.yaml +0 -150
  1477. package/examples/agents/03-data-analysis-agent/README.md +0 -51
  1478. package/examples/agents/03-data-analysis-agent/agent.ossa.yaml +0 -152
  1479. package/examples/agents/03-data-analysis-agent/openapi.yaml +0 -74
  1480. package/examples/agents/04-content-moderator/README.md +0 -55
  1481. package/examples/agents/04-content-moderator/agent.ossa.yaml +0 -131
  1482. package/examples/agents/04-content-moderator/openapi.yaml +0 -50
  1483. package/examples/agents/05-sales-assistant/README.md +0 -37
  1484. package/examples/agents/05-sales-assistant/agent.ossa.yaml +0 -158
  1485. package/examples/agents/05-sales-assistant/openapi.yaml +0 -59
  1486. package/examples/agents/06-devops-agent/README.md +0 -39
  1487. package/examples/agents/06-devops-agent/agent.ossa.yaml +0 -188
  1488. package/examples/agents/06-devops-agent/openapi.yaml +0 -51
  1489. package/examples/agents/07-research-assistant/README.md +0 -31
  1490. package/examples/agents/07-research-assistant/agent.ossa.yaml +0 -185
  1491. package/examples/agents/07-research-assistant/openapi.yaml +0 -56
  1492. package/examples/agents/08-email-triage-agent/README.md +0 -33
  1493. package/examples/agents/08-email-triage-agent/agent.ossa.yaml +0 -133
  1494. package/examples/agents/08-email-triage-agent/openapi.yaml +0 -41
  1495. package/examples/agents/09-security-scanner/README.md +0 -49
  1496. package/examples/agents/09-security-scanner/agent.ossa.yaml +0 -220
  1497. package/examples/agents/09-security-scanner/openapi.yaml +0 -46
  1498. package/examples/agents/10-meeting-assistant/README.md +0 -53
  1499. package/examples/agents/10-meeting-assistant/agent.ossa.yaml +0 -203
  1500. package/examples/agents/10-meeting-assistant/docker-compose.yml +0 -27
  1501. package/examples/agents/10-meeting-assistant/openapi.yaml +0 -131
  1502. package/examples/agents/COMPLETION_REPORT.txt +0 -272
  1503. package/examples/agents/INDEX.md +0 -296
  1504. package/examples/agents/README.md +0 -452
  1505. package/examples/agents/SUMMARY.md +0 -362
  1506. package/examples/agents/TEST_RESULTS.md +0 -458
  1507. package/examples/agents/architecture-healer-enterprise.yaml +0 -143
  1508. package/examples/agents/dependency-healer-npm.yaml +0 -81
  1509. package/examples/agents/security-audit-agent.ossa.yaml +0 -234
  1510. package/examples/agents/spec-healer-openapi.yaml +0 -59
  1511. package/examples/agents/wiki-healer-production.yaml +0 -131
  1512. package/examples/agents-md/code-agent.ossa.json +0 -125
  1513. package/examples/agents-md/monorepo-agent.ossa.yaml +0 -199
  1514. package/examples/agentscope/react-assistant/README.md +0 -111
  1515. package/examples/agentscope/react-assistant/agent.ossa.yaml +0 -136
  1516. package/examples/agentscope/react-assistant/skills/code-analysis/SKILL.md +0 -18
  1517. package/examples/agentscope/react-assistant/skills/question-answering/SKILL.md +0 -18
  1518. package/examples/anthropic/claude-assistant.ossa.json +0 -46
  1519. package/examples/anthropic-adapter-example.ts +0 -374
  1520. package/examples/anthropic-simple.ts +0 -70
  1521. package/examples/architecture/model-configuration/ollama-integration.ts +0 -110
  1522. package/examples/autogen/multi-agent.ossa.json +0 -39
  1523. package/examples/autonomous-evolution/self-evolving-agent.ossa.yaml +0 -34
  1524. package/examples/bridge-configurations.yaml +0 -346
  1525. package/examples/bridges/.gitlab-ci.yml +0 -293
  1526. package/examples/bridges/Dockerfile.production +0 -87
  1527. package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
  1528. package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
  1529. package/examples/bridges/aiflow-bridge-enhanced.py +0 -462
  1530. package/examples/bridges/aiflow-bridge-example.yml +0 -310
  1531. package/examples/bridges/aiflow-phoenix-tracing.py +0 -310
  1532. package/examples/bridges/aiflow-registration-api.openapi.yml +0 -439
  1533. package/examples/bridges/k8s/configmap.yaml +0 -121
  1534. package/examples/bridges/k8s/deployment-simple.yaml +0 -34
  1535. package/examples/bridges/k8s/deployment.yaml +0 -275
  1536. package/examples/bridges/k8s/hpa.yaml +0 -126
  1537. package/examples/bridges/k8s/ingress.yaml +0 -155
  1538. package/examples/bridges/kagent-bridge-example.yml +0 -94
  1539. package/examples/bridges/load-tests/Dockerfile +0 -28
  1540. package/examples/bridges/load-tests/k6-load-test.js +0 -302
  1541. package/examples/bridges/load-tests/requirements.txt +0 -20
  1542. package/examples/bridges/loadtest/k6-scenarios.js +0 -270
  1543. package/examples/bridges/phase4/SLO-SLA.yaml +0 -249
  1544. package/examples/bridges/phase4/chaos-tests.yaml +0 -226
  1545. package/examples/bridges/requirements.txt +0 -24
  1546. package/examples/bridges/test_aiflow_integration.py +0 -341
  1547. package/examples/build-once-use-everywhere/README.md +0 -184
  1548. package/examples/build-once-use-everywhere/agent.ossa.yaml +0 -38
  1549. package/examples/build-once-use-everywhere/deploy-config.yaml +0 -32
  1550. package/examples/ci/multi-project-release-example.yml +0 -401
  1551. package/examples/claude-code/code-reviewer.ossa.yaml +0 -86
  1552. package/examples/claude-code/ossa-validator.ossa.yaml +0 -86
  1553. package/examples/common_npm/agent-router.ossa.yaml +0 -61
  1554. package/examples/compliance-agent.yml +0 -155
  1555. package/examples/contracts/data-consumer.ossa.yaml +0 -171
  1556. package/examples/contracts/data-producer-v2.ossa.yaml +0 -229
  1557. package/examples/contracts/data-producer.ossa.yaml +0 -219
  1558. package/examples/coordinator-agent/README.md +0 -180
  1559. package/examples/coordinator-agent/index.ts +0 -440
  1560. package/examples/coordinator-agent/manifest.yaml +0 -41
  1561. package/examples/crewai/research-team.ossa.json +0 -45
  1562. package/examples/cursor/code-review-agent.ossa.json +0 -62
  1563. package/examples/deployment-workflow.md +0 -601
  1564. package/examples/drupal/QUICKSTART.md +0 -453
  1565. package/examples/drupal/ai_agents_agentscope/README.md +0 -62
  1566. package/examples/drupal/ai_agents_agentscope/ai_agents_agentscope.info.yml +0 -13
  1567. package/examples/drupal/ai_agents_agentscope/ai_agents_agentscope.services.yml +0 -4
  1568. package/examples/drupal/ai_agents_agentscope/config/install/ai_agents_agentscope.settings.yml +0 -3
  1569. package/examples/drupal/ai_agents_agentscope/config/schema/ai_agents_agentscope.schema.yml +0 -14
  1570. package/examples/drupal/ai_agents_agentscope/src/AgentScopeRuntime.php +0 -11
  1571. package/examples/drupal/ai_agents_agentscope/src/Plugin/AiAgent/AgentScopeAgent.php +0 -10
  1572. package/examples/drupal/ai_agents_agentscope/src/Plugin/AiProvider/AgentScopeProvider.php +0 -217
  1573. package/examples/drupal/ai_agents_agentscope/src/Plugin/Derivative/AgentScopeDeriver.php +0 -10
  1574. package/examples/drupal/ai_agents_agentscope/src/Service/AgentScopeAdapter.php +0 -9
  1575. package/examples/drupal/ai_agents_ossa-module/.agents/example-agent/agent.ossa.yaml +0 -30
  1576. package/examples/drupal/content-moderator.ossa.yaml +0 -217
  1577. package/examples/drupal/drupal-contributor-agent/.eslintrc.json +0 -58
  1578. package/examples/drupal/drupal-contributor-agent/.prettierrc.json +0 -10
  1579. package/examples/drupal/drupal-contributor-agent/package.json +0 -55
  1580. package/examples/drupal/drupal-contributor-agent/src/core/index.ts +0 -10
  1581. package/examples/drupal/drupal-contributor-agent/src/index.ts +0 -17
  1582. package/examples/drupal/drupal-contributor-agent/src/types/index.ts +0 -180
  1583. package/examples/drupal/drupal-contributor-agent/tsconfig.json +0 -36
  1584. package/examples/drupal/drupal-contributor.ossa.yaml +0 -247
  1585. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +0 -69
  1586. package/examples/economics/marketplace-agent.ossa.json +0 -210
  1587. package/examples/enterprise/agent.yml +0 -452
  1588. package/examples/export/langchain/production-agent-with-memory/README.md +0 -373
  1589. package/examples/export/langchain/production-agent-with-memory/agent.ossa.yaml +0 -87
  1590. package/examples/export/langchain/production-agent-with-streaming/README.md +0 -617
  1591. package/examples/export/langchain/production-agent-with-streaming/agent.ossa.yaml +0 -86
  1592. package/examples/export/langchain/production-agent-with-streaming/client-example.py +0 -263
  1593. package/examples/export/langchain/production-agent-with-tools/README.md +0 -296
  1594. package/examples/export/langchain/production-agent-with-tools/agent.ossa.yaml +0 -215
  1595. package/examples/export/langchain-export-example.ts +0 -246
  1596. package/examples/export/langserve-export-example.ts +0 -246
  1597. package/examples/export/test-generation-example.ts +0 -457
  1598. package/examples/extensions/agents-md-advanced.yml +0 -177
  1599. package/examples/extensions/agents-md-basic.yml +0 -74
  1600. package/examples/extensions/agents-md-sync.yml +0 -96
  1601. package/examples/extensions/agents-md-v1.yml +0 -176
  1602. package/examples/extensions/drupal-v1.yml +0 -266
  1603. package/examples/extensions/encryption-multi-provider.yaml +0 -120
  1604. package/examples/extensions/kagent-v1.yml +0 -167
  1605. package/examples/extensions/knowledge-sources.yaml +0 -59
  1606. package/examples/extensions/mcp-full-featured.yaml +0 -150
  1607. package/examples/genetics/breeding-agent.ossa.json +0 -194
  1608. package/examples/getting-started/01-minimal-agent.ossa.yaml +0 -51
  1609. package/examples/getting-started/02-agent-with-tools.ossa.yaml +0 -229
  1610. package/examples/getting-started/03-agent-with-safety.ossa.yaml +0 -137
  1611. package/examples/getting-started/04-agent-with-messaging.ossa.yaml +0 -392
  1612. package/examples/getting-started/05-workflow-composition.ossa.yaml +0 -153
  1613. package/examples/getting-started/README.md +0 -69
  1614. package/examples/getting-started/hello-world-complete.ossa.yaml +0 -112
  1615. package/examples/gitlab-agents/DEPLOYMENT.md +0 -331
  1616. package/examples/gitlab-agents/daily-code-scan/.env.example +0 -11
  1617. package/examples/gitlab-agents/daily-code-scan/.gitlab-ci.yml +0 -34
  1618. package/examples/gitlab-agents/daily-code-scan/Dockerfile +0 -18
  1619. package/examples/gitlab-agents/daily-code-scan/README.md +0 -80
  1620. package/examples/gitlab-agents/daily-code-scan/package.json +0 -28
  1621. package/examples/gitlab-agents/daily-code-scan/src/gitlab-client.ts +0 -135
  1622. package/examples/gitlab-agents/daily-code-scan/src/index.ts +0 -50
  1623. package/examples/gitlab-agents/daily-code-scan/src/types.ts +0 -22
  1624. package/examples/gitlab-agents/daily-code-scan/src/workflow.ts +0 -109
  1625. package/examples/gitlab-agents/daily-code-scan/tsconfig.json +0 -24
  1626. package/examples/gitlab-agents/duo-comment-responder/.env.example +0 -14
  1627. package/examples/gitlab-agents/duo-comment-responder/.gitlab-ci.yml +0 -34
  1628. package/examples/gitlab-agents/duo-comment-responder/Dockerfile +0 -18
  1629. package/examples/gitlab-agents/duo-comment-responder/README.md +0 -98
  1630. package/examples/gitlab-agents/duo-comment-responder/package.json +0 -29
  1631. package/examples/gitlab-agents/duo-comment-responder/src/gitlab-client.ts +0 -56
  1632. package/examples/gitlab-agents/duo-comment-responder/src/index.ts +0 -103
  1633. package/examples/gitlab-agents/duo-comment-responder/src/llm-client.ts +0 -75
  1634. package/examples/gitlab-agents/duo-comment-responder/src/types.ts +0 -22
  1635. package/examples/gitlab-agents/duo-comment-responder/src/workflow.ts +0 -135
  1636. package/examples/gitlab-agents/duo-comment-responder/tsconfig.json +0 -24
  1637. package/examples/gitlab-agents/duo-comment-responder/webhook-config.json +0 -11
  1638. package/examples/gitlab-agents/gitlab-ci-agent.ossa.yaml +0 -221
  1639. package/examples/gitlab-agents/k8s/deploy-all.yaml +0 -341
  1640. package/examples/gitlab-agents/mr-reviewer/.env.example +0 -14
  1641. package/examples/gitlab-agents/mr-reviewer/.gitlab-ci.yml +0 -34
  1642. package/examples/gitlab-agents/mr-reviewer/Dockerfile +0 -18
  1643. package/examples/gitlab-agents/mr-reviewer/README.md +0 -98
  1644. package/examples/gitlab-agents/mr-reviewer/package.json +0 -29
  1645. package/examples/gitlab-agents/mr-reviewer/src/gitlab-client.ts +0 -136
  1646. package/examples/gitlab-agents/mr-reviewer/src/index.ts +0 -103
  1647. package/examples/gitlab-agents/mr-reviewer/src/llm-client.ts +0 -95
  1648. package/examples/gitlab-agents/mr-reviewer/src/types.ts +0 -22
  1649. package/examples/gitlab-agents/mr-reviewer/src/workflow.ts +0 -144
  1650. package/examples/gitlab-agents/mr-reviewer/tsconfig.json +0 -24
  1651. package/examples/gitlab-agents/mr-reviewer/webhook-config.json +0 -11
  1652. package/examples/gitlab-agents/pipeline-auto-fix/.env.example +0 -14
  1653. package/examples/gitlab-agents/pipeline-auto-fix/.gitlab-ci.yml +0 -34
  1654. package/examples/gitlab-agents/pipeline-auto-fix/Dockerfile +0 -18
  1655. package/examples/gitlab-agents/pipeline-auto-fix/README.md +0 -98
  1656. package/examples/gitlab-agents/pipeline-auto-fix/package.json +0 -29
  1657. package/examples/gitlab-agents/pipeline-auto-fix/src/gitlab-client.ts +0 -76
  1658. package/examples/gitlab-agents/pipeline-auto-fix/src/index.ts +0 -103
  1659. package/examples/gitlab-agents/pipeline-auto-fix/src/llm-client.ts +0 -79
  1660. package/examples/gitlab-agents/pipeline-auto-fix/src/types.ts +0 -22
  1661. package/examples/gitlab-agents/pipeline-auto-fix/src/workflow.ts +0 -146
  1662. package/examples/gitlab-agents/pipeline-auto-fix/tsconfig.json +0 -24
  1663. package/examples/gitlab-agents/pipeline-auto-fix/webhook-config.json +0 -11
  1664. package/examples/gitlab-agents/pre-commit-quality-check/.env.example +0 -11
  1665. package/examples/gitlab-agents/pre-commit-quality-check/.gitlab-ci.yml +0 -34
  1666. package/examples/gitlab-agents/pre-commit-quality-check/Dockerfile +0 -18
  1667. package/examples/gitlab-agents/pre-commit-quality-check/README.md +0 -80
  1668. package/examples/gitlab-agents/pre-commit-quality-check/package.json +0 -28
  1669. package/examples/gitlab-agents/pre-commit-quality-check/src/gitlab-client.ts +0 -20
  1670. package/examples/gitlab-agents/pre-commit-quality-check/src/index.ts +0 -50
  1671. package/examples/gitlab-agents/pre-commit-quality-check/src/types.ts +0 -22
  1672. package/examples/gitlab-agents/pre-commit-quality-check/src/workflow.ts +0 -63
  1673. package/examples/gitlab-agents/pre-commit-quality-check/tsconfig.json +0 -24
  1674. package/examples/gitlab-agents/pre-push-validation/.env.example +0 -11
  1675. package/examples/gitlab-agents/pre-push-validation/.gitlab-ci.yml +0 -34
  1676. package/examples/gitlab-agents/pre-push-validation/Dockerfile +0 -18
  1677. package/examples/gitlab-agents/pre-push-validation/README.md +0 -80
  1678. package/examples/gitlab-agents/pre-push-validation/package.json +0 -28
  1679. package/examples/gitlab-agents/pre-push-validation/src/gitlab-client.ts +0 -20
  1680. package/examples/gitlab-agents/pre-push-validation/src/index.ts +0 -50
  1681. package/examples/gitlab-agents/pre-push-validation/src/types.ts +0 -22
  1682. package/examples/gitlab-agents/pre-push-validation/src/workflow.ts +0 -63
  1683. package/examples/gitlab-agents/pre-push-validation/tsconfig.json +0 -24
  1684. package/examples/gitlab-duo/EXTERNAL_AGENTS.md +0 -466
  1685. package/examples/gitlab-duo/README.md +0 -307
  1686. package/examples/gitlab-duo/code-review-flow.yaml +0 -62
  1687. package/examples/gitlab-duo/external-agent-example.ts +0 -192
  1688. package/examples/gitlab-duo/generated/custom-vars-agent.yaml +0 -45
  1689. package/examples/gitlab-duo/generated/go-agent.yaml +0 -41
  1690. package/examples/gitlab-duo/generated/python-agent.yaml +0 -43
  1691. package/examples/gitlab-duo/generated/webhook-agent.yaml +0 -52
  1692. package/examples/hierarchical-agent.ossa.yaml +0 -83
  1693. package/examples/hierarchical-crewai.ossa.yaml +0 -96
  1694. package/examples/infrastructure/token-rotation/README.md +0 -119
  1695. package/examples/infrastructure/token-rotation/manifest.ossa.yaml +0 -73
  1696. package/examples/infrastructure/token-rotation/openapi.yaml +0 -133
  1697. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +0 -115
  1698. package/examples/kagent/README.md +0 -32
  1699. package/examples/kagent/compliance-validator.ossa.yaml +0 -100
  1700. package/examples/kagent/cost-optimizer.ossa.yaml +0 -81
  1701. package/examples/kagent/documentation-agent.ossa.yaml +0 -79
  1702. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +0 -87
  1703. package/examples/kagent/k8s-troubleshooter.ossa.yaml +0 -102
  1704. package/examples/kagent/ossa-kagent-anthropic.ossa.yaml +0 -36
  1705. package/examples/kagent/ossa-kagent-mcp-tools.ossa.yaml +0 -40
  1706. package/examples/kagent/ossa-kagent-multi-tool.ossa.yaml +0 -41
  1707. package/examples/kagent/ossa-kagent-poc.ossa.yaml +0 -32
  1708. package/examples/kagent/security-scanner.ossa.yaml +0 -84
  1709. package/examples/knowledge-graph/drupal-agent-with-kg.ossa.yaml +0 -289
  1710. package/examples/langchain/chain-agent.ossa.json +0 -58
  1711. package/examples/langflow/workflow-agent.ossa.json +0 -38
  1712. package/examples/langgraph/state-machine-agent.ossa.json +0 -58
  1713. package/examples/lifecycle/mentoring-agent.ossa.json +0 -293
  1714. package/examples/llamaindex/rag-agent.ossa.json +0 -40
  1715. package/examples/mcp/browser-puppeteer.ossa.yaml +0 -232
  1716. package/examples/mcp/database-mcp.ossa.yaml +0 -134
  1717. package/examples/mcp/filesystem-mcp.ossa.yaml +0 -101
  1718. package/examples/messaging/dependency-healer.ossa.yaml +0 -354
  1719. package/examples/messaging/incident-responder.ossa.yaml +0 -477
  1720. package/examples/messaging/routing-rules.ossa.yaml +0 -200
  1721. package/examples/messaging/security-scanner.ossa.yaml +0 -335
  1722. package/examples/migration-guides/from-langchain-to-ossa.yaml +0 -309
  1723. package/examples/migrations/crewai-to-ossa/README.md +0 -66
  1724. package/examples/migrations/langchain/01-python-react-agent-after.ossa.yaml +0 -38
  1725. package/examples/migrations/langchain/01-python-react-agent-before.py +0 -62
  1726. package/examples/migrations/langchain/02-typescript-conversational-after.ossa.yaml +0 -40
  1727. package/examples/migrations/langchain/02-typescript-conversational-before.ts +0 -79
  1728. package/examples/migrations/langchain/03-sequential-chain-after.ossa.yaml +0 -95
  1729. package/examples/migrations/langchain/03-sequential-chain-before.py +0 -100
  1730. package/examples/migrations/langchain/04-config-based-after.ossa.yaml +0 -54
  1731. package/examples/migrations/langchain/04-config-based-before.yaml +0 -52
  1732. package/examples/migrations/langchain/INTEGRATION-EXAMPLE.txt +0 -335
  1733. package/examples/migrations/langchain/USAGE.txt +0 -121
  1734. package/examples/migrations/langchain/test-migrations.ts +0 -135
  1735. package/examples/migrations/langchain-to-ossa/README.md +0 -73
  1736. package/examples/migrations/swarm-to-ossa/COMPARISON.md +0 -350
  1737. package/examples/migrations/swarm-to-ossa/INDEX.md +0 -355
  1738. package/examples/migrations/swarm-to-ossa/MIGRATION-FLOW.md +0 -410
  1739. package/examples/migrations/swarm-to-ossa/QUICKSTART.md +0 -453
  1740. package/examples/migrations/swarm-to-ossa/README.md +0 -665
  1741. package/examples/migrations/swarm-to-ossa/after-handoffs.ossa.yaml +0 -482
  1742. package/examples/migrations/swarm-to-ossa/after-triage-agent.ossa.yaml +0 -315
  1743. package/examples/migrations/swarm-to-ossa/before-triage-agent.py +0 -234
  1744. package/examples/minimal/agent.yml +0 -152
  1745. package/examples/minimal/openapi.yaml +0 -95
  1746. package/examples/mistral-adapter-example.ts +0 -435
  1747. package/examples/mistral-simple.ts +0 -56
  1748. package/examples/mr-reviewer-with-governance.ossa.yaml +0 -130
  1749. package/examples/multi-agent/README.md +0 -74
  1750. package/examples/multi-agent/conditional-router.ossa.yaml +0 -42
  1751. package/examples/multi-agent/parallel-execution.ossa.yaml +0 -54
  1752. package/examples/multi-agent/sequential-pipeline.ossa.yaml +0 -45
  1753. package/examples/multi-agent-research-workflow.ossa.yaml +0 -133
  1754. package/examples/multi-platform/single-manifest/README.md +0 -72
  1755. package/examples/multi-platform/single-manifest/agent.ossa.yaml +0 -32
  1756. package/examples/npm-export-example.ts +0 -150
  1757. package/examples/observability/activity-stream-full.yaml +0 -133
  1758. package/examples/observability/gitlab-ci-template.yml +0 -304
  1759. package/examples/openai/basic-agent.ossa.yaml +0 -60
  1760. package/examples/openai/multi-tool-agent.ossa.json +0 -188
  1761. package/examples/openai/swarm-agent.ossa.json +0 -72
  1762. package/examples/openapi-extensions/README.md +0 -87
  1763. package/examples/openapi-extensions/minimal-agent-api.openapi.yml +0 -288
  1764. package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +0 -633
  1765. package/examples/openapi-extensions/worker-agent-api.openapi.yml +0 -533
  1766. package/examples/ossa-templates/01-code-assistant.ossa.yaml +0 -114
  1767. package/examples/ossa-templates/02-security-scanner.ossa.yaml +0 -103
  1768. package/examples/ossa-templates/03-ci-pipeline.ossa.yaml +0 -100
  1769. package/examples/ossa-templates/04-code-reviewer.ossa.yaml +0 -116
  1770. package/examples/ossa-templates/05-doc-generator.ossa.yaml +0 -102
  1771. package/examples/ossa-templates/06-compliance-validator.ossa.yaml +0 -132
  1772. package/examples/ossa-templates/07-workflow-orchestrator.ossa.yaml +0 -110
  1773. package/examples/ossa-templates/08-content-writer.ossa.yaml +0 -136
  1774. package/examples/ossa-templates/09-test-generator.ossa.yaml +0 -113
  1775. package/examples/ossa-templates/10-data-transformer.ossa.yaml +0 -102
  1776. package/examples/ossa-templates/11-react-performance-expert.ossa.yaml +0 -384
  1777. package/examples/ossa-templates/12-typescript-type-safety-expert.ossa.yaml +0 -265
  1778. package/examples/ossa-templates/13-accessibility-champion.ossa.yaml +0 -264
  1779. package/examples/ossa-templates/14-security-hardening-agent.ossa.yaml +0 -267
  1780. package/examples/ossa-templates/README.md +0 -98
  1781. package/examples/pipeline-agent.ossa.yaml +0 -196
  1782. package/examples/platform-specific/claude-code-subagent.yaml +0 -185
  1783. package/examples/platform-specific/cursor-coding-agent.yaml +0 -175
  1784. package/examples/platform-specific/warp-terminal-agent.yaml +0 -122
  1785. package/examples/production/agent.yml +0 -713
  1786. package/examples/production/document-analyzer-openai.yml +0 -134
  1787. package/examples/production-ready/01-customer-support-bot/.env.example +0 -32
  1788. package/examples/production-ready/01-customer-support-bot/Dockerfile +0 -30
  1789. package/examples/production-ready/01-customer-support-bot/README.md +0 -295
  1790. package/examples/production-ready/01-customer-support-bot/agent.ossa.yaml +0 -165
  1791. package/examples/production-ready/01-customer-support-bot/docker-compose.yml +0 -55
  1792. package/examples/production-ready/01-customer-support-bot/openapi.yaml +0 -238
  1793. package/examples/production-ready/01-customer-support-bot/package.json +0 -48
  1794. package/examples/production-ready/02-code-review-agent/README.md +0 -72
  1795. package/examples/production-ready/02-code-review-agent/agent.ossa.yaml +0 -239
  1796. package/examples/production-ready/02-code-review-agent/docker-compose.yml +0 -22
  1797. package/examples/production-ready/02-code-review-agent/openapi.yaml +0 -150
  1798. package/examples/production-ready/03-data-analysis-agent/README.md +0 -51
  1799. package/examples/production-ready/03-data-analysis-agent/agent.ossa.yaml +0 -97
  1800. package/examples/production-ready/03-data-analysis-agent/openapi.yaml +0 -74
  1801. package/examples/production-ready/04-content-moderator/README.md +0 -55
  1802. package/examples/production-ready/04-content-moderator/agent.ossa.yaml +0 -131
  1803. package/examples/production-ready/04-content-moderator/openapi.yaml +0 -50
  1804. package/examples/production-ready/05-sales-assistant/README.md +0 -37
  1805. package/examples/production-ready/05-sales-assistant/agent.ossa.yaml +0 -158
  1806. package/examples/production-ready/05-sales-assistant/openapi.yaml +0 -59
  1807. package/examples/production-ready/06-devops-agent/README.md +0 -39
  1808. package/examples/production-ready/06-devops-agent/agent.ossa.yaml +0 -141
  1809. package/examples/production-ready/06-devops-agent/openapi.yaml +0 -51
  1810. package/examples/production-ready/07-research-assistant/README.md +0 -31
  1811. package/examples/production-ready/07-research-assistant/agent.ossa.yaml +0 -127
  1812. package/examples/production-ready/07-research-assistant/openapi.yaml +0 -56
  1813. package/examples/production-ready/08-email-triage-agent/README.md +0 -33
  1814. package/examples/production-ready/08-email-triage-agent/agent.ossa.yaml +0 -133
  1815. package/examples/production-ready/08-email-triage-agent/openapi.yaml +0 -41
  1816. package/examples/production-ready/09-security-scanner/README.md +0 -49
  1817. package/examples/production-ready/09-security-scanner/agent.ossa.yaml +0 -174
  1818. package/examples/production-ready/09-security-scanner/openapi.yaml +0 -46
  1819. package/examples/production-ready/10-meeting-assistant/README.md +0 -53
  1820. package/examples/production-ready/10-meeting-assistant/agent.ossa.yaml +0 -203
  1821. package/examples/production-ready/10-meeting-assistant/docker-compose.yml +0 -27
  1822. package/examples/production-ready/10-meeting-assistant/openapi.yaml +0 -131
  1823. package/examples/production-ready/COMPLETION_REPORT.txt +0 -272
  1824. package/examples/production-ready/INDEX.md +0 -296
  1825. package/examples/production-ready/README.md +0 -452
  1826. package/examples/production-ready/SUMMARY.md +0 -362
  1827. package/examples/production-ready/TEST_RESULTS.md +0 -458
  1828. package/examples/quickstart/support-agent.ossa.yaml +0 -57
  1829. package/examples/rag-agent/README.md +0 -136
  1830. package/examples/rag-agent/index.ts +0 -272
  1831. package/examples/rag-agent/manifest.yaml +0 -45
  1832. package/examples/real-world/gitlab-cicd-optimizer.ossa.yaml +0 -171
  1833. package/examples/real-world/rag-documentation-assistant.ossa.yaml +0 -229
  1834. package/examples/reference-implementations/README.md +0 -321
  1835. package/examples/reference-implementations/curl-scripts/README.md +0 -277
  1836. package/examples/reference-implementations/python-client/README.md +0 -282
  1837. package/examples/reference-implementations/python-client/examples/basic_usage.py +0 -84
  1838. package/examples/reference-implementations/python-client/examples/publish_agent.py +0 -137
  1839. package/examples/reference-implementations/python-client/ossa_client/__init__.py +0 -80
  1840. package/examples/reference-implementations/python-client/ossa_client/agents.py +0 -240
  1841. package/examples/reference-implementations/python-client/ossa_client/client.py +0 -164
  1842. package/examples/reference-implementations/python-client/ossa_client/discovery.py +0 -153
  1843. package/examples/reference-implementations/python-client/ossa_client/messaging.py +0 -227
  1844. package/examples/reference-implementations/python-client/requirements.txt +0 -2
  1845. package/examples/reference-implementations/python-client/setup.py +0 -40
  1846. package/examples/reference-implementations/typescript-client/README.md +0 -227
  1847. package/examples/reference-implementations/typescript-client/examples/basic-usage.ts +0 -86
  1848. package/examples/reference-implementations/typescript-client/examples/messaging.ts +0 -185
  1849. package/examples/reference-implementations/typescript-client/examples/publish-agent.ts +0 -138
  1850. package/examples/reference-implementations/typescript-client/package.json +0 -40
  1851. package/examples/reference-implementations/typescript-client/src/agents.ts +0 -285
  1852. package/examples/reference-implementations/typescript-client/src/client.ts +0 -161
  1853. package/examples/reference-implementations/typescript-client/src/discovery.ts +0 -244
  1854. package/examples/reference-implementations/typescript-client/src/index.ts +0 -67
  1855. package/examples/reference-implementations/typescript-client/src/messaging.ts +0 -385
  1856. package/examples/reference-implementations/typescript-client/tsconfig.json +0 -25
  1857. package/examples/registry/USAGE.txt +0 -105
  1858. package/examples/registry/agents/code-reviewer/agent.yaml +0 -159
  1859. package/examples/registry/agents/security-scanner/agent.yaml +0 -128
  1860. package/examples/registry/index.json +0 -5
  1861. package/examples/roles/drupal-developer.role.yaml +0 -37
  1862. package/examples/roles/platform-operator.role.yaml +0 -28
  1863. package/examples/roles/security-auditor.role.yaml +0 -27
  1864. package/examples/runtime-adapters/bedrock-claude-example.ossa.yaml +0 -99
  1865. package/examples/schema/reusable-components.yaml +0 -95
  1866. package/examples/service-registry-usage.ts +0 -423
  1867. package/examples/showcase/PRODUCTION_EXAMPLES.md +0 -499
  1868. package/examples/showcase/ci-pipeline.ossa.yaml +0 -55
  1869. package/examples/showcase/code-assistant.ossa.yaml +0 -104
  1870. package/examples/showcase/code-reviewer.ossa.yaml +0 -58
  1871. package/examples/showcase/compliance-checker.ossa.yaml +0 -207
  1872. package/examples/showcase/compliance-validator.ossa.yaml +0 -61
  1873. package/examples/showcase/content-writer.ossa.yaml +0 -70
  1874. package/examples/showcase/customer-support.ossa.yaml +0 -344
  1875. package/examples/showcase/data-processing-pipeline.ossa.yaml +0 -254
  1876. package/examples/showcase/data-transformer.ossa.yaml +0 -76
  1877. package/examples/showcase/doc-generator.ossa.yaml +0 -66
  1878. package/examples/showcase/full-power-agent.ossa.yaml +0 -350
  1879. package/examples/showcase/security-scanner-enhanced.ossa.yaml +0 -304
  1880. package/examples/showcase/security-scanner.ossa.yaml +0 -66
  1881. package/examples/showcase/team-leader.ossa.yaml +0 -306
  1882. package/examples/showcase/test-generator.ossa.yaml +0 -37
  1883. package/examples/showcase/workflow-orchestrator.ossa.yaml +0 -114
  1884. package/examples/single-agent.ossa.yaml +0 -40
  1885. package/examples/skills/drupal-code-analysis/skill.ossa.yaml +0 -111
  1886. package/examples/skills/git-commit-review/skill.ossa.yaml +0 -86
  1887. package/examples/skills/tdd-workflow/skill.ossa.yaml +0 -93
  1888. package/examples/skills-example.ossa.yaml +0 -140
  1889. package/examples/spec-examples/audit-agent.yml +0 -147
  1890. package/examples/spec-examples/chat-agent.yml +0 -189
  1891. package/examples/spec-examples/compliance-agent.yml +0 -204
  1892. package/examples/spec-examples/data-processing-agent.yml +0 -132
  1893. package/examples/spec-examples/development-agent.yml +0 -138
  1894. package/examples/spec-examples/edge-agent.yml +0 -101
  1895. package/examples/spec-examples/integration-agent.yml +0 -129
  1896. package/examples/spec-examples/monitoring-agent.yml +0 -130
  1897. package/examples/spec-examples/serverless-agent.yml +0 -82
  1898. package/examples/spec-examples/workflow-agent.yml +0 -223
  1899. package/examples/subagents-pipeline.ossa.yaml +0 -76
  1900. package/examples/swarm/pso-optimizer.ossa.json +0 -171
  1901. package/examples/swarm-agent.ossa.yaml +0 -98
  1902. package/examples/swarm-handoff.ossa.yaml +0 -67
  1903. package/examples/tasks/batch-email-sender.yaml +0 -105
  1904. package/examples/tasks/data-transform.yaml +0 -82
  1905. package/examples/tasks/publish-content.yaml +0 -86
  1906. package/examples/team-agent.ossa.yaml +0 -110
  1907. package/examples/team-lead-teammate.ossa.yaml +0 -78
  1908. package/examples/templates/ossa-compliance.yaml +0 -56
  1909. package/examples/token-efficiency/security-scanner.ossa.yaml +0 -53
  1910. package/examples/typescript/advanced/demo-registry.ts +0 -168
  1911. package/examples/typescript/mcpb-agent-example.ts +0 -358
  1912. package/examples/unified/security-scanner.ossa.yaml +0 -308
  1913. package/examples/validation/error-codes-demo.ts +0 -254
  1914. package/examples/vercel/edge-agent.ossa.json +0 -44
  1915. package/examples/workflow-agent/README.md +0 -175
  1916. package/examples/workflow-agent/index.ts +0 -408
  1917. package/examples/workflow-agent/manifest.yaml +0 -41
  1918. package/examples/workflows/batch-email-campaign.yaml +0 -140
  1919. package/examples/workflows/content-review-publish.yaml +0 -156
  1920. package/examples/workflows/simple-etl.yaml +0 -151
  1921. package/openapi/CHANGELOG.md +0 -21
  1922. package/openapi/README.md +0 -46
  1923. package/openapi/agent-cognition-sessions.yaml +0 -580
  1924. package/openapi/agent-communication.yaml +0 -1120
  1925. package/openapi/agent-crud.yaml +0 -1102
  1926. package/openapi/agent-discovery.yaml +0 -715
  1927. package/openapi/agent-identity.yaml +0 -652
  1928. package/openapi/agent-taxonomy.yaml +0 -378
  1929. package/openapi/agents-md-service.yaml +0 -411
  1930. package/openapi/cli/openapi.yaml +0 -1732
  1931. package/openapi/core/ossa-core-api.openapi.yaml +0 -1321
  1932. package/openapi/core/ossa-registry-api.openapi.yaml +0 -1043
  1933. package/openapi/core/ossa-registry.openapi.yaml +0 -964
  1934. package/openapi/core/unified-agent-gateway.openapi.yaml +0 -897
  1935. package/openapi/daemon-api.openapi.yaml +0 -968
  1936. package/openapi/dev-cli/openapi.yaml +0 -992
  1937. package/openapi/github-sync.yaml +0 -158
  1938. package/openapi/marketplace-plugin.openapi.yaml +0 -2358
  1939. package/openapi/ossa-api.openapi.yaml +0 -1237
  1940. package/openapi/ossa-cli-enhancements.openapi.yaml +0 -608
  1941. package/openapi/ossa-cli.yaml +0 -1051
  1942. package/openapi/protocols/sse-streams.yaml +0 -471
  1943. package/openapi/protocols/websocket-events.yaml +0 -434
  1944. package/openapi/reference-implementations/aiflow-bridge-api.openapi.yaml +0 -153
  1945. package/openapi/reference-implementations/compliance-agent-api.openapi.yaml +0 -204
  1946. package/openapi/reference-implementations/crewai-agent-api.openapi.yaml +0 -160
  1947. package/openapi/reference-implementations/critic-agent-api.openapi.yaml +0 -177
  1948. package/openapi/reference-implementations/document-analyzer-api.openapi.yaml +0 -223
  1949. package/openapi/reference-implementations/drupal-agent-api.openapi.yaml +0 -399
  1950. package/openapi/reference-implementations/getting-started-hello-world-api.openapi.yaml +0 -160
  1951. package/openapi/reference-implementations/gitlab-ml-recommender-api.openapi.yaml +0 -155
  1952. package/openapi/reference-implementations/governor-agent-api.openapi.yaml +0 -211
  1953. package/openapi/reference-implementations/helm-generator.openapi.yaml +0 -431
  1954. package/openapi/reference-implementations/integrator-agent-api.openapi.yaml +0 -175
  1955. package/openapi/reference-implementations/judge-agent-api.openapi.yaml +0 -154
  1956. package/openapi/reference-implementations/k8s-troubleshooter-api.openapi.yaml +0 -181
  1957. package/openapi/reference-implementations/langchain-agent-api.openapi.yaml +0 -182
  1958. package/openapi/reference-implementations/monitor-agent-api.openapi.yaml +0 -184
  1959. package/openapi/reference-implementations/orchestrator-agent-api.openapi.yaml +0 -264
  1960. package/openapi/reference-implementations/quickstart-support-agent-api.openapi.yaml +0 -195
  1961. package/openapi/reference-implementations/self-evolving-ecosystem.openapi.yaml +0 -1664
  1962. package/openapi/reference-implementations/worker-agent-api.openapi.yaml +0 -219
  1963. package/openapi/reference-implementations/workflow-orchestrator-api.openapi.yaml +0 -207
  1964. package/openapi/registry.yaml +0 -49
  1965. package/openapi/release-automation.openapi.yaml +0 -178
  1966. package/openapi/schemas/common/agent.yaml +0 -264
  1967. package/openapi/schemas/common/economics.yaml +0 -98
  1968. package/openapi/schemas/common/errors.yaml +0 -85
  1969. package/openapi/schemas/common/metadata.yaml +0 -86
  1970. package/openapi/schemas/common/pagination.yaml +0 -84
  1971. package/openapi/schemas/common/security.yaml +0 -96
  1972. package/openapi/schemas/discovery.json +0 -488
  1973. package/openapi/schemas/index.yaml +0 -95
  1974. package/openapi/uadp-asyncapi.yaml +0 -434
  1975. package/openapi/uadp-openapi.yaml +0 -865
  1976. package/openapi/version-management.openapi.yaml +0 -761
  1977. package/spec/extensions/a2a-messaging.md +0 -471
  1978. package/spec/extensions/cognition.schema.json +0 -87
  1979. package/spec/extensions/knowledge-graph/knowledge-graph.schema.json +0 -386
  1980. package/spec/extensions/manifest-extensions.md +0 -550
  1981. package/spec/extensions/openapi/ossa-openapi-extensions.schema.json +0 -804
  1982. package/spec/extensions/role-manifest.md +0 -188
  1983. package/spec/extensions/skills-compatibility.md +0 -292
  1984. package/spec/layer4-economics/duadp-examples.json +0 -44
  1985. package/spec/ossa-audit-api.yaml +0 -311
  1986. package/spec/schema/agent-test.schema.json +0 -117
  1987. package/spec/schema/components/activity-stream.schema.json +0 -94
  1988. package/spec/schema/components/adapter.schema.json +0 -33
  1989. package/spec/schema/components/constraints.schema.json +0 -84
  1990. package/spec/schema/components/dependencies.schema.json +0 -147
  1991. package/spec/schema/components/encryption.schema.json +0 -115
  1992. package/spec/schema/components/identity.schema.json +0 -126
  1993. package/spec/schema/components/index.json +0 -37
  1994. package/spec/schema/components/llm-config.schema.json +0 -67
  1995. package/spec/schema/components/metadata.schema.json +0 -52
  1996. package/spec/schema/components/tool.schema.json +0 -64
  1997. package/spec/schema/extensions/a2a.extension.schema.json +0 -127
  1998. package/spec/uadp/README.md +0 -393
  1999. package/spec/uadp/openapi.yaml +0 -387
  2000. package/spec/uadp/schemas/uadp-agents-response.schema.json +0 -68
  2001. package/spec/uadp/schemas/uadp-federation-response.schema.json +0 -46
  2002. package/spec/uadp/schemas/uadp-manifest.schema.json +0 -82
  2003. package/spec/uadp/schemas/uadp-skills-response.schema.json +0 -72
  2004. package/spec/v0.4/agent-card.schema.json +0 -477
  2005. package/spec/v0.4/agent.schema.json +0 -1581
  2006. package/spec/v0.4/conformance/profiles/baseline.json +0 -19
  2007. package/spec/v0.4/conformance/profiles/enterprise.json +0 -20
  2008. package/spec/v0.4/extensions/a2a/README.md +0 -193
  2009. package/spec/v0.4/extensions/a2a/a2a.schema.json +0 -77
  2010. package/spec/v0.4/extensions/ag2/ag2.schema.json +0 -277
  2011. package/spec/v0.4/extensions/cognition/cognition.schema.json +0 -94
  2012. package/spec/v0.4/extensions/cognition/thought-node.schema.json +0 -80
  2013. package/spec/v0.4/extensions/crewai/crewai.schema.json +0 -256
  2014. package/spec/v0.4/extensions/drupal/drupal.schema.json +0 -318
  2015. package/spec/v0.4/extensions/evals/evals.schema.json +0 -597
  2016. package/spec/v0.4/extensions/governance/governance-extension.yaml +0 -161
  2017. package/spec/v0.4/extensions/identity/identity.schema.json +0 -302
  2018. package/spec/v0.4/extensions/kagent/README.md +0 -315
  2019. package/spec/v0.4/extensions/kagent/kagent.schema.json +0 -624
  2020. package/spec/v0.4/extensions/langchain/langchain.schema.json +0 -243
  2021. package/spec/v0.4/extensions/langgraph/langgraph.schema.json +0 -211
  2022. package/spec/v0.4/extensions/mcp/README.md +0 -276
  2023. package/spec/v0.4/extensions/mcp/mcp.schema.json +0 -84
  2024. package/spec/v0.4/extensions/memory/memory.schema.json +0 -7
  2025. package/spec/v0.4/extensions/team/team.schema.json +0 -304
  2026. package/spec/v0.4/extensions/token-efficiency/token-efficiency.schema.json +0 -47
  2027. package/spec/v0.4/mcp.schema.json +0 -1
  2028. package/spec/v0.4/skill.schema.json +0 -1
  2029. package/spec/v0.4/validator.schema.json +0 -282
  2030. package/spec/v1/agent-card.schema.json +0 -254
  2031. package/spec/v1/mcp.schema.json +0 -183
  2032. package/spec/v1/skill.schema.json +0 -346
  2033. package/templates/agent-types/claude-agent.ossa.yaml +0 -83
  2034. package/templates/agent-types/kagent.ossa.yaml +0 -110
  2035. package/templates/agent-types/langchain-agent.ossa.yaml +0 -106
  2036. package/templates/agent-types/openapi-agent.ossa.yaml +0 -121
  2037. package/templates/agent-types/swarm-agents.ossa.yaml +0 -168
  2038. package/templates/ci-cd/github-actions.deploy.yml +0 -272
  2039. package/templates/ci-cd/gitlab-ci.deploy.yml +0 -205
  2040. package/templates/validators/capability-compatibility.ossa.yaml +0 -174
  2041. package/templates/validators/coordination-consistency.ossa.yaml +0 -160
  2042. package/templates/validators/pattern-requirements.ossa.yaml +0 -182
  2043. package/templates/validators/transport-compatibility.ossa.yaml +0 -185
@@ -1,1664 +0,0 @@
1
- openapi: 3.1.0
2
- info:
3
- title: Self-Evolving Agent Ecosystem API
4
- version: 0.3.3
5
- description: |
6
- 🚀 REVOLUTIONARY Self-Evolving Agent Ecosystem - NEVER DONE BEFORE
7
-
8
- This is the FIRST OSSA-compliant platform that combines:
9
- 1. Multi-Agent Hierarchical Coordination Matrix
10
- 2. Privacy-Preserving Federated Learning
11
- 3. Psychology-Driven Gamification (Flow State Optimization)
12
- 4. Cognitive Load ResearchKit Integration
13
- 5. AI-Powered Dynamic Revenue Optimization
14
- 6. Real-Time Self-Evolution & Adaptation
15
-
16
- Production Architecture:
17
- - OpenAPI-First: This spec IS the single source of truth
18
- - DRY: Zero duplication across all 53+ agents
19
- - CRUD: Full lifecycle management
20
- - SOLID: Clean architecture, dependency injection
21
- - Type-Safe: Zod + TypeScript auto-generation
22
-
23
- OSSA Compliance: v0.1.9
24
- Reference: https://github.com/blueflyio/openstandardagents
25
- contact:
26
- name: LLM Platform Innovation Team
27
- url: https://github.com/blueflyio/openstandardagents
28
- license:
29
- name: MIT
30
- servers:
31
- - url: http://localhost:9000/api/v1
32
- description: Local development
33
- - url: http://evolution.local.bluefly.io/api/v1
34
- description: Local OrbStack
35
- - url: https://evolution.llm.bluefly.io/api/v1
36
- description: Production
37
- tags:
38
- - name: Ecosystem
39
- description: Self-evolving ecosystem management
40
- - name: Agents
41
- description: Multi-agent coordination and orchestration
42
- - name: Learning
43
- description: Federated learning and collective intelligence
44
- - name: Psychology
45
- description: Flow state and motivation optimization
46
- - name: Research
47
- description: Cognitive load studies and ResearchKit
48
- - name: Revenue
49
- description: Dynamic pricing and monetization
50
- - name: Evolution
51
- description: Real-time adaptation and self-improvement
52
- - name: Health
53
- description: System health and metrics
54
- components:
55
- schemas:
56
- Ecosystem:
57
- type: object
58
- required:
59
- - id
60
- - name
61
- - status
62
- - agents
63
- - coordinationMatrix
64
- - evolutionState
65
- properties:
66
- id:
67
- type: string
68
- format: uuid
69
- name:
70
- type: string
71
- example: Production Ecosystem
72
- status:
73
- type: string
74
- enum:
75
- - initializing
76
- - evolving
77
- - stable
78
- - optimizing
79
- - adapting
80
- agents:
81
- type: array
82
- items:
83
- $ref: "#/components/schemas/Agent"
84
- coordinationMatrix:
85
- $ref: "#/components/schemas/CoordinationMatrix"
86
- evolutionState:
87
- $ref: "#/components/schemas/EvolutionState"
88
- learningMetrics:
89
- $ref: "#/components/schemas/LearningMetrics"
90
- performanceMetrics:
91
- $ref: "#/components/schemas/PerformanceMetrics"
92
- created:
93
- type: string
94
- format: date-time
95
- updated:
96
- type: string
97
- format: date-time
98
- Agent:
99
- type: object
100
- required:
101
- - id
102
- - name
103
- - type
104
- - role
105
- - capabilities
106
- - status
107
- properties:
108
- id:
109
- type: string
110
- format: uuid
111
- name:
112
- type: string
113
- example: Drupal Security Compliance Agent
114
- type:
115
- type: string
116
- enum:
117
- - orchestrator
118
- - worker
119
- - critic
120
- - integrator
121
- - specialist
122
- description: OSSA agent type
123
- role:
124
- type: string
125
- enum:
126
- - security_compliance
127
- - performance_optimization
128
- - research_innovation
129
- - knowledge_management
130
- - infrastructure_ops
131
- - revenue_optimization
132
- capabilities:
133
- type: array
134
- items:
135
- type: string
136
- example:
137
- - iso42001_compliance
138
- - nist_rmf_validation
139
- - audit_automation
140
- status:
141
- type: string
142
- enum:
143
- - active
144
- - learning
145
- - adapting
146
- - idle
147
- - error
148
- performance:
149
- $ref: "#/components/schemas/AgentPerformance"
150
- learning:
151
- $ref: "#/components/schemas/AgentLearning"
152
- coordination:
153
- type: array
154
- items:
155
- $ref: "#/components/schemas/CoordinationLink"
156
- CoordinationMatrix:
157
- type: object
158
- description: Hierarchical coordination between agents
159
- properties:
160
- orchestrators:
161
- type: array
162
- items:
163
- type: string
164
- format: uuid
165
- workers:
166
- type: array
167
- items:
168
- type: string
169
- format: uuid
170
- specialists:
171
- type: array
172
- items:
173
- type: string
174
- format: uuid
175
- dependencies:
176
- type: array
177
- items:
178
- $ref: "#/components/schemas/AgentDependency"
179
- communicationProtocol:
180
- type: string
181
- enum:
182
- - event_driven
183
- - request_response
184
- - streaming
185
- - pub_sub
186
- conflictResolution:
187
- type: string
188
- enum:
189
- - consensus
190
- - priority_based
191
- - ai_mediation
192
- - escalation
193
- AgentDependency:
194
- type: object
195
- properties:
196
- from:
197
- type: string
198
- format: uuid
199
- to:
200
- type: string
201
- format: uuid
202
- type:
203
- type: string
204
- enum:
205
- - requires
206
- - provides
207
- - collaborates
208
- - monitors
209
- strength:
210
- type: number
211
- minimum: 0
212
- maximum: 1
213
- description: Dependency strength (0-1)
214
- CoordinationLink:
215
- type: object
216
- properties:
217
- targetAgentId:
218
- type: string
219
- format: uuid
220
- linkType:
221
- type: string
222
- enum:
223
- - peer
224
- - supervisor
225
- - subordinate
226
- - collaborator
227
- communicationFrequency:
228
- type: number
229
- description: Messages per hour
230
- successRate:
231
- type: number
232
- minimum: 0
233
- maximum: 1
234
- FederatedLearningSession:
235
- type: object
236
- required:
237
- - id
238
- - modelType
239
- - participants
240
- - privacyBudget
241
- properties:
242
- id:
243
- type: string
244
- format: uuid
245
- modelType:
246
- type: string
247
- enum:
248
- - code_completion
249
- - bug_prediction
250
- - productivity_optimization
251
- - collaboration_enhancement
252
- - cognitive_load_prediction
253
- participants:
254
- type: array
255
- items:
256
- type: string
257
- format: uuid
258
- description: Agent IDs participating in learning
259
- privacyBudget:
260
- type: number
261
- description: Differential privacy epsilon
262
- example: 1
263
- rounds:
264
- type: integer
265
- minimum: 1
266
- default: 10
267
- convergenceThreshold:
268
- type: number
269
- default: 0.01
270
- status:
271
- type: string
272
- enum:
273
- - pending
274
- - training
275
- - aggregating
276
- - completed
277
- - failed
278
- metrics:
279
- $ref: "#/components/schemas/LearningMetrics"
280
- LearningMetrics:
281
- type: object
282
- properties:
283
- accuracy:
284
- type: number
285
- minimum: 0
286
- maximum: 1
287
- loss:
288
- type: number
289
- f1Score:
290
- type: number
291
- precision:
292
- type: number
293
- recall:
294
- type: number
295
- trainingRounds:
296
- type: integer
297
- convergenceRate:
298
- type: number
299
- privacyBudgetUsed:
300
- type: number
301
- FlowStateOptimization:
302
- type: object
303
- description: Real-time flow state optimization based on Csikszentmihalyi research
304
- required:
305
- - developerId
306
- - currentState
307
- properties:
308
- developerId:
309
- type: string
310
- format: uuid
311
- currentState:
312
- type: string
313
- enum:
314
- - flow
315
- - anxiety
316
- - boredom
317
- - apathy
318
- - arousal
319
- - control
320
- - worry
321
- - relaxation
322
- skillLevel:
323
- type: number
324
- minimum: 0
325
- maximum: 100
326
- challengeLevel:
327
- type: number
328
- minimum: 0
329
- maximum: 100
330
- cognitiveLoad:
331
- type: number
332
- minimum: 0
333
- maximum: 100
334
- engagement:
335
- type: number
336
- minimum: 0
337
- maximum: 1
338
- recommendations:
339
- type: array
340
- items:
341
- type: string
342
- description: AI recommendations to optimize flow
343
- GamificationEvent:
344
- type: object
345
- required:
346
- - eventType
347
- - developerId
348
- - timestamp
349
- properties:
350
- eventType:
351
- type: string
352
- enum:
353
- - achievement_unlocked
354
- - level_up
355
- - badge_earned
356
- - challenge_completed
357
- - leaderboard_rank_change
358
- - skill_mastered
359
- - flow_state_achieved
360
- developerId:
361
- type: string
362
- format: uuid
363
- achievement:
364
- $ref: "#/components/schemas/Achievement"
365
- context:
366
- type: object
367
- additionalProperties: true
368
- timestamp:
369
- type: string
370
- format: date-time
371
- impact:
372
- $ref: "#/components/schemas/MotivationImpact"
373
- Achievement:
374
- type: object
375
- properties:
376
- id:
377
- type: string
378
- name:
379
- type: string
380
- description:
381
- type: string
382
- category:
383
- type: string
384
- enum:
385
- - productivity
386
- - quality
387
- - collaboration
388
- - learning
389
- - innovation
390
- - security
391
- rarity:
392
- type: string
393
- enum:
394
- - common
395
- - uncommon
396
- - rare
397
- - epic
398
- - legendary
399
- points:
400
- type: integer
401
- gameCenterId:
402
- type: string
403
- description: Game Center achievement ID
404
- MotivationImpact:
405
- type: object
406
- description: Psychological impact on developer motivation
407
- properties:
408
- autonomy:
409
- type: number
410
- minimum: -1
411
- maximum: 1
412
- mastery:
413
- type: number
414
- minimum: -1
415
- maximum: 1
416
- purpose:
417
- type: number
418
- minimum: -1
419
- maximum: 1
420
- socialConnection:
421
- type: number
422
- minimum: -1
423
- maximum: 1
424
- overallMotivation:
425
- type: number
426
- minimum: 0
427
- maximum: 100
428
- CognitiveLoadStudy:
429
- type: object
430
- description: ResearchKit cognitive load measurement
431
- required:
432
- - studyId
433
- - participantId
434
- - sessionId
435
- properties:
436
- studyId:
437
- type: string
438
- format: uuid
439
- participantId:
440
- type: string
441
- format: uuid
442
- description: Anonymized participant ID
443
- sessionId:
444
- type: string
445
- format: uuid
446
- biometricData:
447
- $ref: "#/components/schemas/BiometricData"
448
- behavioralData:
449
- $ref: "#/components/schemas/BehavioralData"
450
- nasaTLX:
451
- $ref: "#/components/schemas/NASATLX"
452
- cognitiveLoad:
453
- $ref: "#/components/schemas/CognitiveLoad"
454
- consent:
455
- type: boolean
456
- description: Participant consent status
457
- BiometricData:
458
- type: object
459
- properties:
460
- heartRateVariability:
461
- type: number
462
- description: HRV in milliseconds
463
- eyeTracking:
464
- type: object
465
- properties:
466
- fixationDuration:
467
- type: number
468
- saccadeVelocity:
469
- type: number
470
- blinkRate:
471
- type: number
472
- keystrokeDynamics:
473
- type: object
474
- properties:
475
- typingSpeed:
476
- type: number
477
- errorRate:
478
- type: number
479
- pauseFrequency:
480
- type: number
481
- BehavioralData:
482
- type: object
483
- properties:
484
- taskCompletionTime:
485
- type: number
486
- description: Time in seconds
487
- contextSwitches:
488
- type: integer
489
- helpRequests:
490
- type: integer
491
- aiInteractions:
492
- type: integer
493
- codeQualityScore:
494
- type: number
495
- NASATLX:
496
- type: object
497
- description: NASA Task Load Index
498
- properties:
499
- mentalDemand:
500
- type: integer
501
- minimum: 0
502
- maximum: 100
503
- physicalDemand:
504
- type: integer
505
- minimum: 0
506
- maximum: 100
507
- temporalDemand:
508
- type: integer
509
- minimum: 0
510
- maximum: 100
511
- performance:
512
- type: integer
513
- minimum: 0
514
- maximum: 100
515
- effort:
516
- type: integer
517
- minimum: 0
518
- maximum: 100
519
- frustration:
520
- type: integer
521
- minimum: 0
522
- maximum: 100
523
- CognitiveLoad:
524
- type: object
525
- properties:
526
- overall:
527
- type: number
528
- minimum: 0
529
- maximum: 100
530
- intrinsic:
531
- type: number
532
- extraneous:
533
- type: number
534
- germane:
535
- type: number
536
- prediction:
537
- type: string
538
- enum:
539
- - low
540
- - medium
541
- - high
542
- - overload
543
- recommendations:
544
- type: array
545
- items:
546
- type: string
547
- DynamicPricing:
548
- type: object
549
- required:
550
- - tier
551
- - basePrice
552
- - optimizedPrice
553
- properties:
554
- tier:
555
- type: string
556
- enum:
557
- - freemium
558
- - developer
559
- - team
560
- - enterprise
561
- basePrice:
562
- type: number
563
- format: decimal
564
- optimizedPrice:
565
- type: number
566
- format: decimal
567
- marketConditions:
568
- $ref: "#/components/schemas/MarketConditions"
569
- customerProfile:
570
- $ref: "#/components/schemas/CustomerProfile"
571
- willingnessToPay:
572
- type: number
573
- description: Estimated willingness to pay (ML model)
574
- conversionProbability:
575
- type: number
576
- minimum: 0
577
- maximum: 1
578
- revenueImpact:
579
- type: number
580
- description: Expected revenue change
581
- MarketConditions:
582
- type: object
583
- properties:
584
- competitorPricing:
585
- type: object
586
- additionalProperties:
587
- type: number
588
- demandIndex:
589
- type: number
590
- seasonality:
591
- type: string
592
- economicIndicators:
593
- type: object
594
- CustomerProfile:
595
- type: object
596
- properties:
597
- segment:
598
- type: string
599
- enum:
600
- - individual
601
- - small_team
602
- - enterprise
603
- - education
604
- - open_source
605
- usagePatterns:
606
- type: object
607
- valueRealized:
608
- type: number
609
- description: Measured value in dollars/month
610
- engagementScore:
611
- type: number
612
- churnRisk:
613
- type: number
614
- minimum: 0
615
- maximum: 1
616
- EvolutionState:
617
- type: object
618
- description: Current state of ecosystem self-evolution
619
- properties:
620
- generation:
621
- type: integer
622
- description: Evolution generation number
623
- fitnessScore:
624
- type: number
625
- minimum: 0
626
- maximum: 100
627
- adaptationHistory:
628
- type: array
629
- items:
630
- $ref: "#/components/schemas/AdaptationEvent"
631
- currentOptimizations:
632
- type: array
633
- items:
634
- type: string
635
- learningRate:
636
- type: number
637
- mutationProbability:
638
- type: number
639
- minimum: 0
640
- maximum: 1
641
- AdaptationEvent:
642
- type: object
643
- properties:
644
- timestamp:
645
- type: string
646
- format: date-time
647
- type:
648
- type: string
649
- enum:
650
- - agent_added
651
- - agent_removed
652
- - capability_enhanced
653
- - coordination_optimized
654
- - performance_improved
655
- - cost_reduced
656
- impact:
657
- type: number
658
- fitnessChange:
659
- type: number
660
- description:
661
- type: string
662
- AgentPerformance:
663
- type: object
664
- properties:
665
- responseTime:
666
- type: number
667
- description: Average response time in ms
668
- throughput:
669
- type: number
670
- description: Tasks per minute
671
- accuracy:
672
- type: number
673
- minimum: 0
674
- maximum: 1
675
- errorRate:
676
- type: number
677
- resourceUtilization:
678
- type: number
679
- minimum: 0
680
- maximum: 1
681
- learningVelocity:
682
- type: number
683
- AgentLearning:
684
- type: object
685
- properties:
686
- modelVersion:
687
- type: string
688
- trainingRounds:
689
- type: integer
690
- accuracy:
691
- type: number
692
- lastUpdated:
693
- type: string
694
- format: date-time
695
- personalizationLevel:
696
- type: number
697
- minimum: 0
698
- maximum: 1
699
- knowledgeGraph:
700
- type: object
701
- description: Agent's knowledge representation
702
- PerformanceMetrics:
703
- type: object
704
- properties:
705
- ecosystemHealth:
706
- type: number
707
- minimum: 0
708
- maximum: 100
709
- agentCoordination:
710
- type: number
711
- minimum: 0
712
- maximum: 1
713
- learningEfficiency:
714
- type: number
715
- adaptationSpeed:
716
- type: number
717
- costEfficiency:
718
- type: number
719
- userSatisfaction:
720
- type: number
721
- minimum: 0
722
- maximum: 5
723
- CreateEcosystemRequest:
724
- type: object
725
- required:
726
- - name
727
- - initialAgents
728
- properties:
729
- name:
730
- type: string
731
- description:
732
- type: string
733
- initialAgents:
734
- type: array
735
- items:
736
- type: object
737
- required:
738
- - name
739
- - type
740
- - role
741
- properties:
742
- name:
743
- type: string
744
- type:
745
- type: string
746
- enum:
747
- - orchestrator
748
- - worker
749
- - critic
750
- - integrator
751
- - specialist
752
- role:
753
- type: string
754
- capabilities:
755
- type: array
756
- items:
757
- type: string
758
- coordinationStrategy:
759
- type: string
760
- enum:
761
- - hierarchical
762
- - mesh
763
- - hybrid
764
- default: hierarchical
765
- learningEnabled:
766
- type: boolean
767
- default: true
768
- gamificationEnabled:
769
- type: boolean
770
- default: true
771
- StartFederatedLearningRequest:
772
- type: object
773
- required:
774
- - modelType
775
- - participantAgentIds
776
- properties:
777
- modelType:
778
- type: string
779
- enum:
780
- - code_completion
781
- - bug_prediction
782
- - productivity_optimization
783
- - collaboration_enhancement
784
- - cognitive_load_prediction
785
- participantAgentIds:
786
- type: array
787
- items:
788
- type: string
789
- format: uuid
790
- privacyBudget:
791
- type: number
792
- default: 1
793
- rounds:
794
- type: integer
795
- default: 10
796
- convergenceThreshold:
797
- type: number
798
- default: 0.01
799
- OptimizeFlowStateRequest:
800
- type: object
801
- required:
802
- - developerId
803
- - currentMetrics
804
- properties:
805
- developerId:
806
- type: string
807
- format: uuid
808
- currentMetrics:
809
- type: object
810
- properties:
811
- skillLevel:
812
- type: number
813
- challengeLevel:
814
- type: number
815
- cognitiveLoad:
816
- type: number
817
- engagement:
818
- type: number
819
- preferences:
820
- type: object
821
- properties:
822
- preferredChallengeLevel:
823
- type: string
824
- enum:
825
- - easy
826
- - moderate
827
- - challenging
828
- - expert
829
- learningGoals:
830
- type: array
831
- items:
832
- type: string
833
- OptimizePricingRequest:
834
- type: object
835
- required:
836
- - tier
837
- - customerId
838
- properties:
839
- tier:
840
- type: string
841
- enum:
842
- - freemium
843
- - developer
844
- - team
845
- - enterprise
846
- customerId:
847
- type: string
848
- format: uuid
849
- marketData:
850
- $ref: "#/components/schemas/MarketConditions"
851
- targetMetric:
852
- type: string
853
- enum:
854
- - revenue
855
- - conversion
856
- - retention
857
- - ltv
858
- default: revenue
859
- EvolutionTrigger:
860
- type: object
861
- required:
862
- - triggerType
863
- properties:
864
- triggerType:
865
- type: string
866
- enum:
867
- - performance_degradation
868
- - new_capability_needed
869
- - cost_optimization
870
- - user_feedback
871
- - market_change
872
- - security_threat
873
- context:
874
- type: object
875
- additionalProperties: true
876
- priority:
877
- type: string
878
- enum:
879
- - low
880
- - medium
881
- - high
882
- - critical
883
- autoExecute:
884
- type: boolean
885
- default: false
886
- Error:
887
- type: object
888
- required:
889
- - error
890
- - message
891
- properties:
892
- error:
893
- type: string
894
- message:
895
- type: string
896
- details:
897
- type: object
898
- additionalProperties: true
899
- securitySchemes:
900
- bearerAuth:
901
- type: http
902
- scheme: bearer
903
- bearerFormat: JWT
904
- security:
905
- - bearerAuth: []
906
- paths:
907
- /health:
908
- get:
909
- tags:
910
- - Health
911
- summary: Ecosystem health check
912
- security: []
913
- responses:
914
- "200":
915
- description: Healthy
916
- content:
917
- application/json:
918
- schema:
919
- type: object
920
- properties:
921
- status:
922
- type: string
923
- enum:
924
- - healthy
925
- - degraded
926
- - critical
927
- ecosystems:
928
- type: integer
929
- activeAgents:
930
- type: integer
931
- learningActiveSessions:
932
- type: integer
933
- evolutionGeneration:
934
- type: integer
935
- timestamp:
936
- type: string
937
- format: date-time
938
- x-ossa-capability: reference-get-/health
939
- description: Ecosystem health check
940
- operationId: getHealth
941
- /ecosystems:
942
- get:
943
- tags:
944
- - Ecosystem
945
- summary: List all ecosystems
946
- parameters:
947
- - name: status
948
- in: query
949
- schema:
950
- type: string
951
- enum:
952
- - initializing
953
- - evolving
954
- - stable
955
- - optimizing
956
- - adapting
957
- responses:
958
- "200":
959
- description: List of ecosystems
960
- content:
961
- application/json:
962
- schema:
963
- type: object
964
- properties:
965
- ecosystems:
966
- type: array
967
- items:
968
- $ref: "#/components/schemas/Ecosystem"
969
- count:
970
- type: integer
971
- x-ossa-capability: reference-get-/ecosystems
972
- description: List all ecosystems
973
- operationId: getEcosystems
974
- post:
975
- tags:
976
- - Ecosystem
977
- summary: Create new ecosystem
978
- requestBody:
979
- required: true
980
- content:
981
- application/json:
982
- schema:
983
- $ref: "#/components/schemas/CreateEcosystemRequest"
984
- responses:
985
- "201":
986
- description: Ecosystem created
987
- content:
988
- application/json:
989
- schema:
990
- $ref: "#/components/schemas/Ecosystem"
991
- x-ossa-capability: reference-post-/ecosystems
992
- x-ossa-autonomy:
993
- level: supervised
994
- approval_required: true
995
- description: Create new ecosystem
996
- operationId: postEcosystems
997
- /ecosystems/{ecosystemId}:
998
- get:
999
- tags:
1000
- - Ecosystem
1001
- summary: Get ecosystem details
1002
- parameters:
1003
- - name: ecosystemId
1004
- in: path
1005
- required: true
1006
- schema:
1007
- type: string
1008
- format: uuid
1009
- responses:
1010
- "200":
1011
- description: Ecosystem found
1012
- content:
1013
- application/json:
1014
- schema:
1015
- $ref: "#/components/schemas/Ecosystem"
1016
- x-ossa-capability: reference-get-/ecosystems/{ecosystem-id}
1017
- description: Get ecosystem details
1018
- operationId: getEcosystemsEcosystemid
1019
- put:
1020
- tags:
1021
- - Ecosystem
1022
- summary: Update ecosystem
1023
- parameters:
1024
- - name: ecosystemId
1025
- in: path
1026
- required: true
1027
- schema:
1028
- type: string
1029
- format: uuid
1030
- requestBody:
1031
- required: true
1032
- content:
1033
- application/json:
1034
- schema:
1035
- type: object
1036
- properties:
1037
- name:
1038
- type: string
1039
- coordinationStrategy:
1040
- type: string
1041
- learningEnabled:
1042
- type: boolean
1043
- responses:
1044
- "200":
1045
- description: Updated
1046
- content:
1047
- application/json:
1048
- schema:
1049
- $ref: "#/components/schemas/Ecosystem"
1050
- x-ossa-capability: reference-put-/ecosystems/{ecosystem-id}
1051
- x-ossa-autonomy:
1052
- level: supervised
1053
- approval_required: true
1054
- description: Update ecosystem
1055
- operationId: putEcosystemsEcosystemid
1056
- delete:
1057
- tags:
1058
- - Ecosystem
1059
- summary: Delete ecosystem
1060
- parameters:
1061
- - name: ecosystemId
1062
- in: path
1063
- required: true
1064
- schema:
1065
- type: string
1066
- format: uuid
1067
- responses:
1068
- "204":
1069
- description: Deleted
1070
- x-ossa-capability: reference-delete-/ecosystems/{ecosystem-id}
1071
- x-ossa-autonomy:
1072
- level: supervised
1073
- approval_required: true
1074
- description: Delete ecosystem
1075
- operationId: deleteEcosystemsEcosystemid
1076
- /ecosystems/{ecosystemId}/agents:
1077
- get:
1078
- tags:
1079
- - Agents
1080
- summary: List agents in ecosystem
1081
- parameters:
1082
- - name: ecosystemId
1083
- in: path
1084
- required: true
1085
- schema:
1086
- type: string
1087
- format: uuid
1088
- - name: type
1089
- in: query
1090
- schema:
1091
- type: string
1092
- enum:
1093
- - orchestrator
1094
- - worker
1095
- - critic
1096
- - integrator
1097
- - specialist
1098
- - name: role
1099
- in: query
1100
- schema:
1101
- type: string
1102
- responses:
1103
- "200":
1104
- description: List of agents
1105
- content:
1106
- application/json:
1107
- schema:
1108
- type: object
1109
- properties:
1110
- agents:
1111
- type: array
1112
- items:
1113
- $ref: "#/components/schemas/Agent"
1114
- x-ossa-capability: reference-get-/ecosystems/{ecosystem-id}/agents
1115
- description: List agents in ecosystem
1116
- operationId: getEcosystemsEcosystemidAgents
1117
- post:
1118
- tags:
1119
- - Agents
1120
- summary: Add agent to ecosystem
1121
- parameters:
1122
- - name: ecosystemId
1123
- in: path
1124
- required: true
1125
- schema:
1126
- type: string
1127
- format: uuid
1128
- requestBody:
1129
- required: true
1130
- content:
1131
- application/json:
1132
- schema:
1133
- type: object
1134
- required:
1135
- - name
1136
- - type
1137
- - role
1138
- properties:
1139
- name:
1140
- type: string
1141
- type:
1142
- type: string
1143
- enum:
1144
- - orchestrator
1145
- - worker
1146
- - critic
1147
- - integrator
1148
- - specialist
1149
- role:
1150
- type: string
1151
- capabilities:
1152
- type: array
1153
- items:
1154
- type: string
1155
- responses:
1156
- "201":
1157
- description: Agent added
1158
- content:
1159
- application/json:
1160
- schema:
1161
- $ref: "#/components/schemas/Agent"
1162
- x-ossa-capability: reference-post-/ecosystems/{ecosystem-id}/agents
1163
- x-ossa-autonomy:
1164
- level: supervised
1165
- approval_required: true
1166
- description: Add agent to ecosystem
1167
- operationId: postEcosystemsEcosystemidAgents
1168
- /ecosystems/{ecosystemId}/coordination:
1169
- get:
1170
- tags:
1171
- - Agents
1172
- summary: Get coordination matrix
1173
- parameters:
1174
- - name: ecosystemId
1175
- in: path
1176
- required: true
1177
- schema:
1178
- type: string
1179
- format: uuid
1180
- responses:
1181
- "200":
1182
- description: Coordination matrix
1183
- content:
1184
- application/json:
1185
- schema:
1186
- $ref: "#/components/schemas/CoordinationMatrix"
1187
- x-ossa-capability: reference-get-/ecosystems/{ecosystem-id}/coordination
1188
- description: Get coordination matrix
1189
- operationId: getEcosystemsEcosystemidCoordination
1190
- /ecosystems/{ecosystemId}/coordinate:
1191
- post:
1192
- tags:
1193
- - Agents
1194
- summary: Coordinate agent action
1195
- description: Coordinate complex multi-agent workflow
1196
- parameters:
1197
- - name: ecosystemId
1198
- in: path
1199
- required: true
1200
- schema:
1201
- type: string
1202
- format: uuid
1203
- requestBody:
1204
- required: true
1205
- content:
1206
- application/json:
1207
- schema:
1208
- type: object
1209
- required:
1210
- - workflowType
1211
- - targetAgents
1212
- properties:
1213
- workflowType:
1214
- type: string
1215
- enum:
1216
- - code_review
1217
- - security_scan
1218
- - performance_optimization
1219
- - research_study
1220
- - pricing_optimization
1221
- targetAgents:
1222
- type: array
1223
- items:
1224
- type: string
1225
- format: uuid
1226
- context:
1227
- type: object
1228
- additionalProperties: true
1229
- responses:
1230
- "200":
1231
- description: Coordination result
1232
- content:
1233
- application/json:
1234
- schema:
1235
- type: object
1236
- properties:
1237
- workflowId:
1238
- type: string
1239
- format: uuid
1240
- status:
1241
- type: string
1242
- results:
1243
- type: array
1244
- items:
1245
- type: object
1246
- x-ossa-capability: reference-post-/ecosystems/{ecosystem-id}/coordinate
1247
- x-ossa-autonomy:
1248
- level: supervised
1249
- approval_required: true
1250
- operationId: postEcosystemsEcosystemidCoordinate
1251
- /learning/federated/sessions:
1252
- post:
1253
- tags:
1254
- - Learning
1255
- summary: Start federated learning session
1256
- requestBody:
1257
- required: true
1258
- content:
1259
- application/json:
1260
- schema:
1261
- $ref: "#/components/schemas/StartFederatedLearningRequest"
1262
- responses:
1263
- "201":
1264
- description: Session started
1265
- content:
1266
- application/json:
1267
- schema:
1268
- $ref: "#/components/schemas/FederatedLearningSession"
1269
- x-ossa-capability: reference-post-/learning/federated/sessions
1270
- x-ossa-autonomy:
1271
- level: supervised
1272
- approval_required: true
1273
- description: Start federated learning session
1274
- operationId: postLearningFederatedSessions
1275
- /learning/federated/sessions/{sessionId}:
1276
- get:
1277
- tags:
1278
- - Learning
1279
- summary: Get learning session status
1280
- parameters:
1281
- - name: sessionId
1282
- in: path
1283
- required: true
1284
- schema:
1285
- type: string
1286
- format: uuid
1287
- responses:
1288
- "200":
1289
- description: Session details
1290
- content:
1291
- application/json:
1292
- schema:
1293
- $ref: "#/components/schemas/FederatedLearningSession"
1294
- x-ossa-capability: reference-get-/learning/federated/sessions/{session-id}
1295
- description: Get learning session status
1296
- operationId: getLearningFederatedSessionsSessionid
1297
- /learning/federated/sessions/{sessionId}/results:
1298
- get:
1299
- tags:
1300
- - Learning
1301
- summary: Get federated learning results
1302
- parameters:
1303
- - name: sessionId
1304
- in: path
1305
- required: true
1306
- schema:
1307
- type: string
1308
- format: uuid
1309
- responses:
1310
- "200":
1311
- description: Learning results
1312
- content:
1313
- application/json:
1314
- schema:
1315
- type: object
1316
- properties:
1317
- finalModel:
1318
- type: object
1319
- metrics:
1320
- $ref: "#/components/schemas/LearningMetrics"
1321
- privacyGuarantees:
1322
- type: object
1323
- x-ossa-capability: reference-get-/learning/federated/sessions/{session-id}/results
1324
- description: Get federated learning results
1325
- operationId: getLearningFederatedSessionsSessionidResults
1326
- /psychology/flow-state:
1327
- post:
1328
- tags:
1329
- - Psychology
1330
- summary: Optimize developer flow state
1331
- requestBody:
1332
- required: true
1333
- content:
1334
- application/json:
1335
- schema:
1336
- $ref: "#/components/schemas/OptimizeFlowStateRequest"
1337
- responses:
1338
- "200":
1339
- description: Flow state optimization
1340
- content:
1341
- application/json:
1342
- schema:
1343
- $ref: "#/components/schemas/FlowStateOptimization"
1344
- x-ossa-capability: reference-post-/psychology/flow-state
1345
- x-ossa-autonomy:
1346
- level: supervised
1347
- approval_required: true
1348
- description: Optimize developer flow state
1349
- operationId: postPsychologyFlowState
1350
- /psychology/motivation/{developerId}:
1351
- get:
1352
- tags:
1353
- - Psychology
1354
- summary: Get developer motivation profile
1355
- parameters:
1356
- - name: developerId
1357
- in: path
1358
- required: true
1359
- schema:
1360
- type: string
1361
- format: uuid
1362
- responses:
1363
- "200":
1364
- description: Motivation profile
1365
- content:
1366
- application/json:
1367
- schema:
1368
- $ref: "#/components/schemas/MotivationImpact"
1369
- x-ossa-capability: reference-get-/psychology/motivation/{developer-id}
1370
- description: Get developer motivation profile
1371
- operationId: getPsychologyMotivationDeveloperid
1372
- /psychology/gamification/events:
1373
- post:
1374
- tags:
1375
- - Psychology
1376
- summary: Record gamification event
1377
- requestBody:
1378
- required: true
1379
- content:
1380
- application/json:
1381
- schema:
1382
- $ref: "#/components/schemas/GamificationEvent"
1383
- responses:
1384
- "201":
1385
- description: Event recorded
1386
- x-ossa-capability: reference-post-/psychology/gamification/events
1387
- x-ossa-autonomy:
1388
- level: supervised
1389
- approval_required: true
1390
- description: Record gamification event
1391
- operationId: postPsychologyGamificationEvents
1392
- /research/cognitive-load:
1393
- post:
1394
- tags:
1395
- - Research
1396
- summary: Submit cognitive load study data
1397
- requestBody:
1398
- required: true
1399
- content:
1400
- application/json:
1401
- schema:
1402
- $ref: "#/components/schemas/CognitiveLoadStudy"
1403
- responses:
1404
- "201":
1405
- description: Data recorded
1406
- "403":
1407
- description: Consent not provided
1408
- x-ossa-capability: reference-post-/research/cognitive-load
1409
- x-ossa-autonomy:
1410
- level: supervised
1411
- approval_required: true
1412
- description: Submit cognitive load study data
1413
- operationId: postResearchCognitiveLoad
1414
- /research/studies/{studyId}/insights:
1415
- get:
1416
- tags:
1417
- - Research
1418
- summary: Get research insights
1419
- parameters:
1420
- - name: studyId
1421
- in: path
1422
- required: true
1423
- schema:
1424
- type: string
1425
- format: uuid
1426
- responses:
1427
- "200":
1428
- description: Research insights
1429
- content:
1430
- application/json:
1431
- schema:
1432
- type: object
1433
- properties:
1434
- insights:
1435
- type: array
1436
- items:
1437
- type: object
1438
- significance:
1439
- type: number
1440
- recommendations:
1441
- type: array
1442
- items:
1443
- type: string
1444
- x-ossa-capability: reference-get-/research/studies/{study-id}/insights
1445
- description: Get research insights
1446
- operationId: getResearchStudiesStudyidInsights
1447
- /revenue/pricing/optimize:
1448
- post:
1449
- tags:
1450
- - Revenue
1451
- summary: Optimize pricing dynamically
1452
- requestBody:
1453
- required: true
1454
- content:
1455
- application/json:
1456
- schema:
1457
- $ref: "#/components/schemas/OptimizePricingRequest"
1458
- responses:
1459
- "200":
1460
- description: Optimized pricing
1461
- content:
1462
- application/json:
1463
- schema:
1464
- $ref: "#/components/schemas/DynamicPricing"
1465
- x-ossa-capability: reference-post-/revenue/pricing/optimize
1466
- x-ossa-autonomy:
1467
- level: supervised
1468
- approval_required: true
1469
- description: Optimize pricing dynamically
1470
- operationId: postRevenuePricingOptimize
1471
- /revenue/customer/{customerId}/value:
1472
- get:
1473
- tags:
1474
- - Revenue
1475
- summary: Calculate customer value
1476
- parameters:
1477
- - name: customerId
1478
- in: path
1479
- required: true
1480
- schema:
1481
- type: string
1482
- format: uuid
1483
- responses:
1484
- "200":
1485
- description: Customer value metrics
1486
- content:
1487
- application/json:
1488
- schema:
1489
- type: object
1490
- properties:
1491
- ltv:
1492
- type: number
1493
- monthlyValue:
1494
- type: number
1495
- churnRisk:
1496
- type: number
1497
- upsellOpportunity:
1498
- type: object
1499
- x-ossa-capability: reference-get-/revenue/customer/{customer-id}/value
1500
- description: Calculate customer value
1501
- operationId: getRevenueCustomerCustomeridValue
1502
- /evolution/trigger:
1503
- post:
1504
- tags:
1505
- - Evolution
1506
- summary: Trigger ecosystem evolution
1507
- requestBody:
1508
- required: true
1509
- content:
1510
- application/json:
1511
- schema:
1512
- $ref: "#/components/schemas/EvolutionTrigger"
1513
- responses:
1514
- "202":
1515
- description: Evolution triggered
1516
- content:
1517
- application/json:
1518
- schema:
1519
- type: object
1520
- properties:
1521
- evolutionId:
1522
- type: string
1523
- format: uuid
1524
- status:
1525
- type: string
1526
- estimatedCompletion:
1527
- type: string
1528
- format: date-time
1529
- x-ossa-capability: reference-post-/evolution/trigger
1530
- x-ossa-autonomy:
1531
- level: supervised
1532
- approval_required: true
1533
- description: Trigger ecosystem evolution
1534
- operationId: postEvolutionTrigger
1535
- /evolution/{ecosystemId}/status:
1536
- get:
1537
- tags:
1538
- - Evolution
1539
- summary: Get evolution status
1540
- parameters:
1541
- - name: ecosystemId
1542
- in: path
1543
- required: true
1544
- schema:
1545
- type: string
1546
- format: uuid
1547
- responses:
1548
- "200":
1549
- description: Evolution state
1550
- content:
1551
- application/json:
1552
- schema:
1553
- $ref: "#/components/schemas/EvolutionState"
1554
- x-ossa-capability: reference-get-/evolution/{ecosystem-id}/status
1555
- description: Get evolution status
1556
- operationId: getEvolutionEcosystemidStatus
1557
- /evolution/{ecosystemId}/adapt:
1558
- post:
1559
- tags:
1560
- - Evolution
1561
- summary: Execute adaptation
1562
- description: Real-time ecosystem adaptation based on feedback
1563
- parameters:
1564
- - name: ecosystemId
1565
- in: path
1566
- required: true
1567
- schema:
1568
- type: string
1569
- format: uuid
1570
- requestBody:
1571
- required: true
1572
- content:
1573
- application/json:
1574
- schema:
1575
- type: object
1576
- properties:
1577
- adaptationType:
1578
- type: string
1579
- enum:
1580
- - add_capability
1581
- - remove_capability
1582
- - optimize_coordination
1583
- - enhance_performance
1584
- - reduce_cost
1585
- parameters:
1586
- type: object
1587
- additionalProperties: true
1588
- responses:
1589
- "200":
1590
- description: Adaptation executed
1591
- content:
1592
- application/json:
1593
- schema:
1594
- type: object
1595
- properties:
1596
- adaptationId:
1597
- type: string
1598
- format: uuid
1599
- impactPrediction:
1600
- type: object
1601
- rollbackPlan:
1602
- type: object
1603
- x-ossa-capability: reference-post-/evolution/{ecosystem-id}/adapt
1604
- x-ossa-autonomy:
1605
- level: supervised
1606
- approval_required: true
1607
- operationId: postEvolutionEcosystemidAdapt
1608
- /metrics/ecosystem/{ecosystemId}:
1609
- get:
1610
- tags:
1611
- - Health
1612
- summary: Get comprehensive ecosystem metrics
1613
- parameters:
1614
- - name: ecosystemId
1615
- in: path
1616
- required: true
1617
- schema:
1618
- type: string
1619
- format: uuid
1620
- - name: timeframe
1621
- in: query
1622
- schema:
1623
- type: string
1624
- enum:
1625
- - 1h
1626
- - 6h
1627
- - 24h
1628
- - 7d
1629
- - 30d
1630
- default: 24h
1631
- responses:
1632
- "200":
1633
- description: Ecosystem metrics
1634
- content:
1635
- application/json:
1636
- schema:
1637
- type: object
1638
- properties:
1639
- performance:
1640
- $ref: "#/components/schemas/PerformanceMetrics"
1641
- learning:
1642
- $ref: "#/components/schemas/LearningMetrics"
1643
- evolution:
1644
- $ref: "#/components/schemas/EvolutionState"
1645
- agents:
1646
- type: array
1647
- items:
1648
- $ref: "#/components/schemas/AgentPerformance"
1649
- x-ossa-capability: reference-get-/metrics/ecosystem/{ecosystem-id}
1650
- description: Get comprehensive ecosystem metrics
1651
- operationId: getMetricsEcosystemEcosystemid
1652
- x-ossa-metadata:
1653
- version: 0.3.3
1654
- compliance:
1655
- level: standard
1656
- observability:
1657
- tracing: true
1658
- metrics: true
1659
- logging: true
1660
- x-ossa:
1661
- version: 0.5.0
1662
- agent:
1663
- id: reference-implementations-self-evolving-ecosystem
1664
- type: specialist