@bluefly/openstandardagents 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (371) hide show
  1. package/.env.example +41 -0
  2. package/.eslintrc.cjs +43 -0
  3. package/.github/PULL_REQUEST_TEMPLATE.md +39 -0
  4. package/.github/dependabot.yml +58 -0
  5. package/.github/workflows/ci.yml +154 -0
  6. package/.github/workflows/codeql.yml +41 -0
  7. package/.github/workflows/dependabot-auto-merge.yml +28 -0
  8. package/.github/workflows/release.yml +103 -0
  9. package/.prettierignore +7 -0
  10. package/.prettierrc.json +10 -0
  11. package/.redocly.yaml +9 -0
  12. package/.releaserc.json +84 -0
  13. package/.releaserc.json.disabled +81 -0
  14. package/CHANGELOG.md +152 -0
  15. package/CONTRIBUTING.md +249 -0
  16. package/LICENSE +190 -0
  17. package/README.md +280 -0
  18. package/bin/ossa +8 -0
  19. package/bin/validate-ossa-0.2.2.ts +244 -0
  20. package/dist/di-container.d.ts +18 -0
  21. package/dist/di-container.d.ts.map +1 -0
  22. package/dist/di-container.js +43 -0
  23. package/dist/di-container.js.map +1 -0
  24. package/dist/index.d.ts +13 -0
  25. package/dist/index.d.ts.map +1 -0
  26. package/dist/index.js +17 -0
  27. package/dist/index.js.map +1 -0
  28. package/dist/repositories/manifest.repository.d.ts +26 -0
  29. package/dist/repositories/manifest.repository.d.ts.map +1 -0
  30. package/dist/repositories/manifest.repository.js +90 -0
  31. package/dist/repositories/manifest.repository.js.map +1 -0
  32. package/dist/repositories/schema.repository.d.ts +30 -0
  33. package/dist/repositories/schema.repository.d.ts.map +1 -0
  34. package/dist/repositories/schema.repository.js +143 -0
  35. package/dist/repositories/schema.repository.js.map +1 -0
  36. package/dist/services/generation.service.d.ts +54 -0
  37. package/dist/services/generation.service.d.ts.map +1 -0
  38. package/dist/services/generation.service.js +298 -0
  39. package/dist/services/generation.service.js.map +1 -0
  40. package/dist/services/migration.service.d.ts +30 -0
  41. package/dist/services/migration.service.d.ts.map +1 -0
  42. package/dist/services/migration.service.js +231 -0
  43. package/dist/services/migration.service.js.map +1 -0
  44. package/dist/services/runtime/openai.adapter.d.ts +94 -0
  45. package/dist/services/runtime/openai.adapter.d.ts.map +1 -0
  46. package/dist/services/runtime/openai.adapter.js +209 -0
  47. package/dist/services/runtime/openai.adapter.js.map +1 -0
  48. package/dist/services/validation.service.d.ts +45 -0
  49. package/dist/services/validation.service.d.ts.map +1 -0
  50. package/dist/services/validation.service.js +362 -0
  51. package/dist/services/validation.service.js.map +1 -0
  52. package/dist/services/validators/anthropic.validator.d.ts +9 -0
  53. package/dist/services/validators/anthropic.validator.d.ts.map +1 -0
  54. package/dist/services/validators/anthropic.validator.js +105 -0
  55. package/dist/services/validators/anthropic.validator.js.map +1 -0
  56. package/dist/services/validators/autogen.validator.d.ts +9 -0
  57. package/dist/services/validators/autogen.validator.d.ts.map +1 -0
  58. package/dist/services/validators/autogen.validator.js +111 -0
  59. package/dist/services/validators/autogen.validator.js.map +1 -0
  60. package/dist/services/validators/crewai.validator.d.ts +9 -0
  61. package/dist/services/validators/crewai.validator.d.ts.map +1 -0
  62. package/dist/services/validators/crewai.validator.js +117 -0
  63. package/dist/services/validators/crewai.validator.js.map +1 -0
  64. package/dist/services/validators/cursor.validator.d.ts +9 -0
  65. package/dist/services/validators/cursor.validator.d.ts.map +1 -0
  66. package/dist/services/validators/cursor.validator.js +88 -0
  67. package/dist/services/validators/cursor.validator.js.map +1 -0
  68. package/dist/services/validators/index.d.ts +15 -0
  69. package/dist/services/validators/index.d.ts.map +1 -0
  70. package/dist/services/validators/index.js +15 -0
  71. package/dist/services/validators/index.js.map +1 -0
  72. package/dist/services/validators/langchain.validator.d.ts +9 -0
  73. package/dist/services/validators/langchain.validator.d.ts.map +1 -0
  74. package/dist/services/validators/langchain.validator.js +103 -0
  75. package/dist/services/validators/langchain.validator.js.map +1 -0
  76. package/dist/services/validators/langflow.validator.d.ts +9 -0
  77. package/dist/services/validators/langflow.validator.d.ts.map +1 -0
  78. package/dist/services/validators/langflow.validator.js +92 -0
  79. package/dist/services/validators/langflow.validator.js.map +1 -0
  80. package/dist/services/validators/langgraph.validator.d.ts +9 -0
  81. package/dist/services/validators/langgraph.validator.d.ts.map +1 -0
  82. package/dist/services/validators/langgraph.validator.js +123 -0
  83. package/dist/services/validators/langgraph.validator.js.map +1 -0
  84. package/dist/services/validators/llamaindex.validator.d.ts +9 -0
  85. package/dist/services/validators/llamaindex.validator.d.ts.map +1 -0
  86. package/dist/services/validators/llamaindex.validator.js +121 -0
  87. package/dist/services/validators/llamaindex.validator.js.map +1 -0
  88. package/dist/services/validators/openai.validator.d.ts +9 -0
  89. package/dist/services/validators/openai.validator.d.ts.map +1 -0
  90. package/dist/services/validators/openai.validator.js +126 -0
  91. package/dist/services/validators/openai.validator.js.map +1 -0
  92. package/dist/services/validators/vercel-ai.validator.d.ts +9 -0
  93. package/dist/services/validators/vercel-ai.validator.d.ts.map +1 -0
  94. package/dist/services/validators/vercel-ai.validator.js +99 -0
  95. package/dist/services/validators/vercel-ai.validator.js.map +1 -0
  96. package/dist/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  97. package/dist/spec/v0.1.9/ecosystem-compliance.json +235 -0
  98. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  99. package/dist/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  100. package/dist/spec/v0.1.9/reasoning-compliance.json +654 -0
  101. package/dist/spec/v0.2.2/kagent-enhancements.json +395 -0
  102. package/dist/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  103. package/dist/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  104. package/dist/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  105. package/dist/spec/v0.2.3/CHANGELOG.md +176 -0
  106. package/dist/spec/v0.2.3/README.md +154 -0
  107. package/dist/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  108. package/dist/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  109. package/dist/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  110. package/dist/spec/v0.2.4-dev/CHANGELOG.md +403 -0
  111. package/dist/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  112. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
  113. package/dist/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
  114. package/dist/spec/v0.2.5-dev/CHANGELOG.md +171 -0
  115. package/dist/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
  116. package/dist/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
  117. package/dist/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
  118. package/dist/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
  119. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
  120. package/dist/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
  121. package/dist/types/index.d.ts +178 -0
  122. package/dist/types/index.d.ts.map +1 -0
  123. package/dist/types/index.js +6 -0
  124. package/dist/types/index.js.map +1 -0
  125. package/dist/types/openapi-extensions.d.ts +164 -0
  126. package/dist/types/openapi-extensions.d.ts.map +1 -0
  127. package/dist/types/openapi-extensions.js +6 -0
  128. package/dist/types/openapi-extensions.js.map +1 -0
  129. package/docs/OSSA-COMPLIANT-BADGE.md +248 -0
  130. package/docs/README.md +31 -0
  131. package/docs/VERSIONING.md +284 -0
  132. package/docs/agent-openapi-spec.yml +942 -0
  133. package/docs/getting-started.md +87 -0
  134. package/docs/migration/general-agent-schema.yml +255 -0
  135. package/docs/migration/migration-manifest.json +64 -0
  136. package/docs/openapi-extensions.md +930 -0
  137. package/docs/schemas/openapi-extensions.schema.json +486 -0
  138. package/examples/adk-integration/code-review-workflow.yml +136 -0
  139. package/examples/adk-integration/customer-support.yml +263 -0
  140. package/examples/adk-integration/data-pipeline.yml +173 -0
  141. package/examples/advanced/patterns/compliance-context-production.json +53 -0
  142. package/examples/advanced/patterns/model-router.ts +274 -0
  143. package/examples/advanced/patterns/smart-model-routing.ts +248 -0
  144. package/examples/advanced/workflows/hybrid-model-strategy.yaml +232 -0
  145. package/examples/agent-manifests/critics/critic-agent.yaml +149 -0
  146. package/examples/agent-manifests/governors/governor-agent.yaml +128 -0
  147. package/examples/agent-manifests/integrators/integrator-agent.yaml +103 -0
  148. package/examples/agent-manifests/judges/judge-agent.yaml +153 -0
  149. package/examples/agent-manifests/monitors/monitor-agent.yaml +122 -0
  150. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +247 -0
  151. package/examples/agent-manifests/sample-compliant-agent.yaml +147 -0
  152. package/examples/agent-manifests/workers/worker-agent.yaml +82 -0
  153. package/examples/anthropic/claude-assistant.ossa.json +45 -0
  154. package/examples/architecture/model-configuration/ollama-integration.ts +110 -0
  155. package/examples/autogen/multi-agent.ossa.json +37 -0
  156. package/examples/bridge-configurations.yaml +346 -0
  157. package/examples/bridges/Dockerfile.production +87 -0
  158. package/examples/bridges/__pycache__/aiflow-bridge-enhanced.cpython-313.pyc +0 -0
  159. package/examples/bridges/__pycache__/aiflow-phoenix-tracing.cpython-313.pyc +0 -0
  160. package/examples/bridges/__pycache__/test_aiflow_integration.cpython-313.pyc +0 -0
  161. package/examples/bridges/aiflow-bridge-enhanced.py +462 -0
  162. package/examples/bridges/aiflow-bridge-example.yml +310 -0
  163. package/examples/bridges/aiflow-phoenix-tracing.py +310 -0
  164. package/examples/bridges/aiflow-registration-api.openapi.yml +439 -0
  165. package/examples/bridges/k8s/configmap.yaml +121 -0
  166. package/examples/bridges/k8s/deployment-simple.yaml +34 -0
  167. package/examples/bridges/k8s/deployment.yaml +275 -0
  168. package/examples/bridges/k8s/hpa.yaml +126 -0
  169. package/examples/bridges/k8s/ingress.yaml +155 -0
  170. package/examples/bridges/kagent-bridge-example.yml +94 -0
  171. package/examples/bridges/load-tests/Dockerfile +28 -0
  172. package/examples/bridges/load-tests/k6-load-test.js +302 -0
  173. package/examples/bridges/load-tests/requirements.txt +20 -0
  174. package/examples/bridges/loadtest/k6-scenarios.js +270 -0
  175. package/examples/bridges/phase4/SLO-SLA.yaml +249 -0
  176. package/examples/bridges/phase4/chaos-tests.yaml +226 -0
  177. package/examples/bridges/requirements.txt +24 -0
  178. package/examples/bridges/test_aiflow_integration.py +341 -0
  179. package/examples/common_npm/agent-router.ossa.yaml +182 -0
  180. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +60 -0
  181. package/examples/compliance-agent.yml +155 -0
  182. package/examples/crewai/research-team.ossa.json +36 -0
  183. package/examples/cursor/code-review-agent.ossa.json +47 -0
  184. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +609 -0
  185. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +68 -0
  186. package/examples/enterprise/agent.yml +452 -0
  187. package/examples/extensions/drupal-v1.yml +266 -0
  188. package/examples/extensions/kagent-v1.yml +167 -0
  189. package/examples/getting-started/hello-world-complete.ossa.yaml +266 -0
  190. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +376 -0
  191. package/examples/kagent/README.md +31 -0
  192. package/examples/kagent/compliance-validator.ossa.yaml +111 -0
  193. package/examples/kagent/cost-optimizer.ossa.yaml +93 -0
  194. package/examples/kagent/documentation-agent.ossa.yaml +91 -0
  195. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +269 -0
  196. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +106 -0
  197. package/examples/kagent/k8s-troubleshooter.ossa.yaml +257 -0
  198. package/examples/kagent/security-scanner.ossa.yaml +140 -0
  199. package/examples/langchain/chain-agent.ossa.json +42 -0
  200. package/examples/langflow/workflow-agent.ossa.json +39 -0
  201. package/examples/langgraph/state-machine-agent.ossa.json +59 -0
  202. package/examples/llamaindex/rag-agent.ossa.json +41 -0
  203. package/examples/migration-guides/from-langchain-to-ossa.yaml +309 -0
  204. package/examples/minimal/agent.yml +152 -0
  205. package/examples/minimal/openapi.yaml +95 -0
  206. package/examples/openai/swarm-agent.ossa.json +59 -0
  207. package/examples/openapi-extensions/README.md +87 -0
  208. package/examples/openapi-extensions/minimal-agent-api.openapi.yml +288 -0
  209. package/examples/openapi-extensions/orchestrator-agent-api.openapi.yml +633 -0
  210. package/examples/openapi-extensions/worker-agent-api.openapi.yml +533 -0
  211. package/examples/production/agent.yml +713 -0
  212. package/examples/production/document-analyzer-openai.yml +134 -0
  213. package/examples/quickstart/support-agent.ossa.yaml +59 -0
  214. package/examples/service-registry-usage.ts +423 -0
  215. package/examples/spec-examples/audit-agent.yml +147 -0
  216. package/examples/spec-examples/chat-agent.yml +189 -0
  217. package/examples/spec-examples/compliance-agent.yml +204 -0
  218. package/examples/spec-examples/data-processing-agent.yml +132 -0
  219. package/examples/spec-examples/development-agent.yml +138 -0
  220. package/examples/spec-examples/edge-agent.yml +101 -0
  221. package/examples/spec-examples/integration-agent.yml +129 -0
  222. package/examples/spec-examples/monitoring-agent.yml +130 -0
  223. package/examples/spec-examples/serverless-agent.yml +82 -0
  224. package/examples/spec-examples/workflow-agent.yml +223 -0
  225. package/examples/templates/ossa-compliance.yaml +56 -0
  226. package/examples/typescript/advanced/demo-registry.ts +168 -0
  227. package/examples/typescript/mcpb-agent-example.ts +358 -0
  228. package/examples/vercel/edge-agent.ossa.json +43 -0
  229. package/infrastructure/docker-compose.yml +33 -0
  230. package/junit.xml +1 -0
  231. package/openapi/drupal-agent-api.openapi.yaml +348 -0
  232. package/openapi/gitlab-orchestrator.openapi.yaml +330 -0
  233. package/openapi/helm-generator.openapi.yaml +389 -0
  234. package/openapi/ossa-core-api.openapi.yaml +1448 -0
  235. package/openapi/ossa-registry-api.openapi.yaml +980 -0
  236. package/openapi/ossa-registry.openapi.yaml +782 -0
  237. package/openapi/self-evolving-ecosystem.openapi.yaml +1530 -0
  238. package/openapi/unified-agent-gateway.openapi.yaml +833 -0
  239. package/ossa-website-swarm-tasks.json +105 -0
  240. package/package.json +132 -0
  241. package/release.config.js +64 -0
  242. package/spec/v0.1.9/agent-autonomous-extensions.json +234 -0
  243. package/spec/v0.1.9/ecosystem-compliance.json +235 -0
  244. package/spec/v0.1.9/ossa-v0.1.9.schema.json +695 -0
  245. package/spec/v0.1.9/ossa-v0.1.9.schema.json.backup +695 -0
  246. package/spec/v0.1.9/reasoning-compliance.json +654 -0
  247. package/spec/v0.2.2/kagent-enhancements.json +395 -0
  248. package/spec/v0.2.2/ossa-0.2.2.schema.json +906 -0
  249. package/spec/v0.2.2/ossa-0.2.2.yaml +448 -0
  250. package/spec/v0.2.2/ossa-reasoning-compliance-1.0.schema.json +424 -0
  251. package/spec/v0.2.3/CHANGELOG.md +176 -0
  252. package/spec/v0.2.3/README.md +154 -0
  253. package/spec/v0.2.3/migrations/v0.2.2-to-v0.2.3.md +343 -0
  254. package/spec/v0.2.3/ossa-0.2.3.schema.json +1397 -0
  255. package/spec/v0.2.3/ossa-0.2.3.yaml +448 -0
  256. package/spec/v0.2.4-dev/CHANGELOG.md +403 -0
  257. package/spec/v0.2.4-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  258. package/spec/v0.2.4-dev/ossa-0.2.4-dev.schema.json +1696 -0
  259. package/spec/v0.2.4-dev/ossa-0.2.4-dev.yaml +581 -0
  260. package/spec/v0.2.5-dev/CHANGELOG.md +171 -0
  261. package/spec/v0.2.5-dev/examples/customer-support-graph.ossa.yaml +362 -0
  262. package/spec/v0.2.5-dev/examples/parallel-processors.ossa.yaml +464 -0
  263. package/spec/v0.2.5-dev/examples/research-team.ossa.yaml +440 -0
  264. package/spec/v0.2.5-dev/migrations/v0.2.4-to-v0.2.5.md +317 -0
  265. package/spec/v0.2.5-dev/ossa-0.2.5-dev.schema.json +1732 -0
  266. package/spec/v0.2.5-dev/ossa-0.2.5-dev.yaml +409 -0
  267. package/test-results.xml +1 -0
  268. package/website/.lighthouserc.js +20 -0
  269. package/website/.prettierrc +10 -0
  270. package/website/Dockerfile +17 -0
  271. package/website/app/about/page.tsx +295 -0
  272. package/website/app/api/validate/route.ts +88 -0
  273. package/website/app/blog/[slug]/page.tsx +167 -0
  274. package/website/app/blog/page.tsx +162 -0
  275. package/website/app/docs/[[...slug]]/page.tsx +349 -0
  276. package/website/app/docs/core-concepts/project-structure/page.tsx +349 -0
  277. package/website/app/ecosystem/page.tsx +375 -0
  278. package/website/app/examples/page.tsx +123 -0
  279. package/website/app/globals.css +108 -0
  280. package/website/app/layout.tsx +106 -0
  281. package/website/app/page.tsx +409 -0
  282. package/website/app/playground/page.tsx +507 -0
  283. package/website/app/robots.ts +19 -0
  284. package/website/app/rss.xml/route.ts +74 -0
  285. package/website/app/schema/page.tsx +970 -0
  286. package/website/app/sitemap.ts +56 -0
  287. package/website/app/specification/page.tsx +211 -0
  288. package/website/components/InstallCommand.tsx +96 -0
  289. package/website/components/Logo.tsx +24 -0
  290. package/website/components/StructuredData.tsx +65 -0
  291. package/website/components/docs/DocsSearch.tsx +104 -0
  292. package/website/components/docs/DocsSidebar.tsx +118 -0
  293. package/website/components/docs/MarkdownContent.tsx +183 -0
  294. package/website/components/docs/VersionSelector.tsx +49 -0
  295. package/website/components/examples/ExamplesViewer.tsx +293 -0
  296. package/website/components/layout/Footer.tsx +111 -0
  297. package/website/components/layout/Header.tsx +170 -0
  298. package/website/components/schema/SchemaExplorer.tsx +213 -0
  299. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +285 -0
  300. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +209 -0
  301. package/website/content/blog/introducing-ossa-framework.md +328 -0
  302. package/website/content/blog/ossa-production-results.md +279 -0
  303. package/website/content/blog/welcome-to-ossa.md +43 -0
  304. package/website/content/blog/why-ai-agents-need-open-standard.md +98 -0
  305. package/website/content/docs/00-HOME.md +160 -0
  306. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +107 -0
  307. package/website/content/docs/OpenAPI-Extensions.md +498 -0
  308. package/website/content/docs/architecture/execution-flow.md +335 -0
  309. package/website/content/docs/architecture/multi-agent-systems.md +737 -0
  310. package/website/content/docs/architecture/overview.md +121 -0
  311. package/website/content/docs/architecture/stack-integration.md +461 -0
  312. package/website/content/docs/changelog.md +246 -0
  313. package/website/content/docs/contributing.md +599 -0
  314. package/website/content/docs/core-concepts/project-structure.md +348 -0
  315. package/website/content/docs/ecosystem/framework-support.md +821 -0
  316. package/website/content/docs/ecosystem/overview.md +366 -0
  317. package/website/content/docs/examples/Migration-Guides.md +214 -0
  318. package/website/content/docs/examples.md +71 -0
  319. package/website/content/docs/for-audiences/Enterprises.md +256 -0
  320. package/website/content/docs/for-audiences/Students-Researchers.md +122 -0
  321. package/website/content/docs/for-audiences/architects.md +224 -0
  322. package/website/content/docs/for-audiences/developers.md +220 -0
  323. package/website/content/docs/getting-started/5-minute-overview.md +85 -0
  324. package/website/content/docs/getting-started/Hello-World.md +184 -0
  325. package/website/content/docs/getting-started/first-agent.md +196 -0
  326. package/website/content/docs/getting-started/installation.md +155 -0
  327. package/website/content/docs/getting-started/running-agents.md +107 -0
  328. package/website/content/docs/integrations/aiflow.md +104 -0
  329. package/website/content/docs/integrations/drupal.md +105 -0
  330. package/website/content/docs/migration-guides/00-index.md +76 -0
  331. package/website/content/docs/migration-guides/README.md +133 -0
  332. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +1750 -0
  333. package/website/content/docs/migration-guides/crewai-to-ossa.md +274 -0
  334. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +2017 -0
  335. package/website/content/docs/migration-guides/index.md +133 -0
  336. package/website/content/docs/migration-guides/langchain-to-ossa.md +1714 -0
  337. package/website/content/docs/migration-guides/langflow-to-ossa.md +2075 -0
  338. package/website/content/docs/migration-guides/openai-to-ossa.md +1202 -0
  339. package/website/content/docs/openapi-extensions/examples.md +550 -0
  340. package/website/content/docs/openapi-extensions/index.md +495 -0
  341. package/website/content/docs/openapi-extensions/operation-extensions.md +398 -0
  342. package/website/content/docs/openapi-extensions/root-extensions.md +364 -0
  343. package/website/content/docs/pre-release/index.md +175 -0
  344. package/website/content/docs/quick-reference.md +17 -0
  345. package/website/content/docs/schema-reference/agent-spec.md +406 -0
  346. package/website/content/docs/schema-reference/autonomy.md +568 -0
  347. package/website/content/docs/schema-reference/constraints.md +543 -0
  348. package/website/content/docs/schema-reference/index.md +176 -0
  349. package/website/content/docs/schema-reference/llm-config.md +445 -0
  350. package/website/content/docs/schema-reference/observability.md +654 -0
  351. package/website/content/docs/schema-reference/ossa-manifest.md +309 -0
  352. package/website/content/docs/schema-reference/taxonomy.md +509 -0
  353. package/website/content/docs/schema-reference/tools.md +628 -0
  354. package/website/content/docs/templates/blog-post.md +43 -0
  355. package/website/content/docs/use-cases/00-index.md +395 -0
  356. package/website/content/docs/use-cases/cicd-code-review.md +1236 -0
  357. package/website/content/docs/use-cases/customer-support.md +1234 -0
  358. package/website/content/docs/use-cases/enterprise-compliance.md +1208 -0
  359. package/website/content/docs/use-cases/research-multi-agent.md +1161 -0
  360. package/website/lib/version.ts +18 -0
  361. package/website/next.config.js +17 -0
  362. package/website/next.config.ts +16 -0
  363. package/website/nginx.conf +32 -0
  364. package/website/package-lock.json +9145 -0
  365. package/website/package.json +53 -0
  366. package/website/postcss.config.js +7 -0
  367. package/website/postcss.config.mjs +9 -0
  368. package/website/scripts/sync-version.js +44 -0
  369. package/website/scripts/sync-wiki.ts +261 -0
  370. package/website/tailwind.config.js +58 -0
  371. package/website/tailwind.config.ts +65 -0
@@ -0,0 +1,1732 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://openstandardagents.org/schemas/v0.2.5-dev/agent.json",
4
+ "title": "OSSA v0.2.5-dev Agent Manifest Schema",
5
+ "description": "Open Standard for Scalable AI Agents (OSSA) - The OpenAPI for AI Agents. Specification for declarative agent definition with framework-agnostic portability. v0.2.5-dev adds multi-agent composition support via AgentGraph.",
6
+ "type": "object",
7
+ "required": [
8
+ "apiVersion",
9
+ "kind",
10
+ "metadata"
11
+ ],
12
+ "properties": {
13
+ "apiVersion": {
14
+ "type": "string",
15
+ "pattern": "^ossa/v(0\\.2\\.[2-5]|1)(\\.[0-9]+)?(-[a-zA-Z0-9]+)?$",
16
+ "description": "OSSA API version (supports ossa/v0.2.2 through v0.2.5-dev, or ossa/v1 for compatibility)",
17
+ "examples": [
18
+ "ossa/v1",
19
+ "ossa/v0.2.5-dev",
20
+ "ossa/v0.2.4",
21
+ "ossa/v0.2.3",
22
+ "ossa/v0.2.2"
23
+ ]
24
+ },
25
+ "kind": {
26
+ "type": "string",
27
+ "enum": [
28
+ "Agent",
29
+ "AgentGraph"
30
+ ],
31
+ "description": "Resource type - 'Agent' for single agents, 'AgentGraph' for multi-agent compositions"
32
+ },
33
+ "metadata": {
34
+ "$ref": "#/definitions/Metadata"
35
+ },
36
+ "spec": {
37
+ "description": "Specification for the resource - AgentSpec for Agent kind, AgentGraphSpec for AgentGraph kind",
38
+ "oneOf": [
39
+ {
40
+ "$ref": "#/definitions/AgentSpec"
41
+ },
42
+ {
43
+ "$ref": "#/definitions/AgentGraphSpec"
44
+ }
45
+ ]
46
+ },
47
+ "extensions": {
48
+ "type": "object",
49
+ "description": "Framework-specific extensions for integration with kagent, buildkit, drupal, librechat, mcp, langchain, crewai, openai_agents, cursor, langflow, autogen, vercel_ai, llamaindex, langgraph, anthropic, google_adk, microsoft_af, metagpt, and other frameworks",
50
+ "properties": {
51
+ "kagent": {
52
+ "$ref": "#/definitions/KAgentExtension"
53
+ },
54
+ "buildkit": {
55
+ "$ref": "#/definitions/BuildKitExtension"
56
+ },
57
+ "drupal": {
58
+ "$ref": "#/definitions/DrupalExtension"
59
+ },
60
+ "librechat": {
61
+ "$ref": "#/definitions/LibreChatExtension"
62
+ },
63
+ "mcp": {
64
+ "$ref": "#/definitions/MCPExtension"
65
+ },
66
+ "langchain": {
67
+ "$ref": "#/definitions/LangChainExtension"
68
+ },
69
+ "crewai": {
70
+ "$ref": "#/definitions/CrewAIExtension"
71
+ },
72
+ "openai_agents": {
73
+ "$ref": "#/definitions/OpenAIAgentsExtension"
74
+ },
75
+ "cursor": {
76
+ "$ref": "#/definitions/CursorExtension"
77
+ },
78
+ "langflow": {
79
+ "$ref": "#/definitions/LangflowExtension"
80
+ },
81
+ "autogen": {
82
+ "$ref": "#/definitions/AutoGenExtension"
83
+ },
84
+ "vercel_ai": {
85
+ "$ref": "#/definitions/VercelAIExtension"
86
+ },
87
+ "llamaindex": {
88
+ "$ref": "#/definitions/LlamaIndexExtension"
89
+ },
90
+ "langgraph": {
91
+ "$ref": "#/definitions/LangGraphExtension"
92
+ },
93
+ "anthropic": {
94
+ "$ref": "#/definitions/AnthropicExtension"
95
+ },
96
+ "google_adk": {
97
+ "$ref": "#/definitions/GoogleADKExtension"
98
+ },
99
+ "microsoft_af": {
100
+ "$ref": "#/definitions/MicrosoftAFExtension"
101
+ },
102
+ "metagpt": {
103
+ "$ref": "#/definitions/MetaGPTExtension"
104
+ }
105
+ },
106
+ "additionalProperties": true
107
+ }
108
+ },
109
+ "additionalProperties": false,
110
+ "definitions": {
111
+ "Metadata": {
112
+ "type": "object",
113
+ "required": [
114
+ "name"
115
+ ],
116
+ "properties": {
117
+ "name": {
118
+ "type": "string",
119
+ "pattern": "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$",
120
+ "maxLength": 253,
121
+ "description": "Agent identifier (DNS-1123 subdomain format for Kubernetes compatibility)"
122
+ },
123
+ "version": {
124
+ "type": "string",
125
+ "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$",
126
+ "description": "Semantic version (semver 2.0.0)"
127
+ },
128
+ "description": {
129
+ "type": "string",
130
+ "maxLength": 2000,
131
+ "description": "Human-readable description of agent purpose and capabilities"
132
+ },
133
+ "labels": {
134
+ "type": "object",
135
+ "additionalProperties": {
136
+ "type": "string",
137
+ "maxLength": 63
138
+ },
139
+ "description": "Key-value labels for organization and filtering"
140
+ },
141
+ "annotations": {
142
+ "type": "object",
143
+ "additionalProperties": {
144
+ "type": "string"
145
+ },
146
+ "description": "Arbitrary metadata for tooling (not used for filtering)"
147
+ }
148
+ },
149
+ "additionalProperties": false
150
+ },
151
+ "AgentSpec": {
152
+ "type": "object",
153
+ "required": [
154
+ "role"
155
+ ],
156
+ "properties": {
157
+ "taxonomy": {
158
+ "$ref": "#/definitions/Taxonomy"
159
+ },
160
+ "role": {
161
+ "type": "string",
162
+ "minLength": 1,
163
+ "description": "Agent role/system prompt describing behavior and capabilities"
164
+ },
165
+ "llm": {
166
+ "$ref": "#/definitions/LLMConfig"
167
+ },
168
+ "tools": {
169
+ "type": "array",
170
+ "items": {
171
+ "$ref": "#/definitions/Tool"
172
+ },
173
+ "description": "Available tools/capabilities for the agent"
174
+ },
175
+ "autonomy": {
176
+ "$ref": "#/definitions/Autonomy"
177
+ },
178
+ "constraints": {
179
+ "$ref": "#/definitions/Constraints"
180
+ },
181
+ "observability": {
182
+ "$ref": "#/definitions/Observability"
183
+ }
184
+ },
185
+ "additionalProperties": true
186
+ },
187
+ "AgentGraphSpec": {
188
+ "type": "object",
189
+ "required": [
190
+ "agents"
191
+ ],
192
+ "description": "Specification for multi-agent composition graphs",
193
+ "properties": {
194
+ "agents": {
195
+ "type": "array",
196
+ "minItems": 1,
197
+ "items": {
198
+ "$ref": "#/definitions/AgentRef"
199
+ },
200
+ "description": "Array of agent references that compose this graph"
201
+ },
202
+ "edges": {
203
+ "type": "array",
204
+ "items": {
205
+ "$ref": "#/definitions/GraphEdge"
206
+ },
207
+ "description": "Connections between agents defining execution flow"
208
+ },
209
+ "process": {
210
+ "type": "string",
211
+ "enum": [
212
+ "sequential",
213
+ "parallel",
214
+ "hierarchical",
215
+ "conditional",
216
+ "loop"
217
+ ],
218
+ "default": "sequential",
219
+ "description": "Execution pattern for the agent graph"
220
+ },
221
+ "entry_point": {
222
+ "type": "string",
223
+ "description": "Starting agent ref (metadata.name of the first agent)"
224
+ },
225
+ "exit_points": {
226
+ "type": "array",
227
+ "items": {
228
+ "type": "string"
229
+ },
230
+ "description": "Agent refs that can terminate the graph execution"
231
+ },
232
+ "state": {
233
+ "$ref": "#/definitions/GraphState"
234
+ },
235
+ "observability": {
236
+ "$ref": "#/definitions/Observability"
237
+ },
238
+ "constraints": {
239
+ "$ref": "#/definitions/Constraints"
240
+ }
241
+ },
242
+ "additionalProperties": true
243
+ },
244
+ "AgentRef": {
245
+ "type": "object",
246
+ "required": [
247
+ "ref"
248
+ ],
249
+ "properties": {
250
+ "ref": {
251
+ "type": "string",
252
+ "description": "Reference to agent metadata.name"
253
+ },
254
+ "role": {
255
+ "type": "string",
256
+ "description": "Role of this agent within the graph context"
257
+ },
258
+ "inline": {
259
+ "$ref": "#/definitions/AgentSpec",
260
+ "description": "Inline agent specification (alternative to ref)"
261
+ },
262
+ "config": {
263
+ "type": "object",
264
+ "description": "Agent-specific configuration overrides for this graph context",
265
+ "additionalProperties": true
266
+ }
267
+ },
268
+ "additionalProperties": false
269
+ },
270
+ "GraphEdge": {
271
+ "type": "object",
272
+ "required": [
273
+ "from",
274
+ "to"
275
+ ],
276
+ "properties": {
277
+ "from": {
278
+ "type": "string",
279
+ "description": "Source agent ref"
280
+ },
281
+ "to": {
282
+ "type": "string",
283
+ "description": "Target agent ref"
284
+ },
285
+ "condition": {
286
+ "type": "string",
287
+ "description": "Condition expression for this edge (e.g., 'output.status == success')"
288
+ },
289
+ "priority": {
290
+ "type": "integer",
291
+ "minimum": 0,
292
+ "default": 0,
293
+ "description": "Edge priority for conflict resolution (higher = preferred)"
294
+ },
295
+ "transform": {
296
+ "type": "string",
297
+ "description": "Data transformation expression between agents"
298
+ },
299
+ "metadata": {
300
+ "type": "object",
301
+ "description": "Additional edge metadata",
302
+ "additionalProperties": true
303
+ }
304
+ },
305
+ "additionalProperties": false
306
+ },
307
+ "GraphState": {
308
+ "type": "object",
309
+ "description": "Shared state configuration for the agent graph",
310
+ "properties": {
311
+ "schema": {
312
+ "type": "object",
313
+ "description": "JSON Schema for the shared state structure"
314
+ },
315
+ "initial": {
316
+ "type": "object",
317
+ "description": "Initial state values"
318
+ },
319
+ "persistence": {
320
+ "type": "string",
321
+ "enum": [
322
+ "none",
323
+ "memory",
324
+ "redis",
325
+ "database"
326
+ ],
327
+ "default": "memory",
328
+ "description": "State persistence mechanism"
329
+ }
330
+ },
331
+ "additionalProperties": false
332
+ },
333
+ "Taxonomy": {
334
+ "type": "object",
335
+ "required": [
336
+ "domain"
337
+ ],
338
+ "properties": {
339
+ "domain": {
340
+ "type": "string",
341
+ "description": "Primary domain classification",
342
+ "examples": [
343
+ "infrastructure",
344
+ "security",
345
+ "compliance",
346
+ "documentation"
347
+ ]
348
+ },
349
+ "subdomain": {
350
+ "type": "string",
351
+ "description": "Secondary classification within domain",
352
+ "examples": [
353
+ "kubernetes",
354
+ "vulnerability",
355
+ "generation"
356
+ ]
357
+ },
358
+ "capability": {
359
+ "type": "string",
360
+ "description": "Specific capability or function",
361
+ "examples": [
362
+ "troubleshooting",
363
+ "scanning",
364
+ "optimization"
365
+ ]
366
+ }
367
+ },
368
+ "additionalProperties": false
369
+ },
370
+ "LLMConfig": {
371
+ "type": "object",
372
+ "required": [
373
+ "provider",
374
+ "model"
375
+ ],
376
+ "properties": {
377
+ "provider": {
378
+ "type": "string",
379
+ "enum": [
380
+ "openai",
381
+ "anthropic",
382
+ "google",
383
+ "azure",
384
+ "ollama",
385
+ "custom"
386
+ ],
387
+ "description": "LLM provider"
388
+ },
389
+ "model": {
390
+ "type": "string",
391
+ "description": "Model identifier",
392
+ "examples": [
393
+ "gpt-4",
394
+ "claude-3-sonnet-20240229",
395
+ "gemini-pro"
396
+ ]
397
+ },
398
+ "temperature": {
399
+ "type": "number",
400
+ "minimum": 0,
401
+ "maximum": 2,
402
+ "description": "Sampling temperature for response generation"
403
+ },
404
+ "maxTokens": {
405
+ "type": "integer",
406
+ "minimum": 1,
407
+ "description": "Maximum tokens per request"
408
+ },
409
+ "topP": {
410
+ "type": "number",
411
+ "minimum": 0,
412
+ "maximum": 1,
413
+ "description": "Nucleus sampling parameter"
414
+ },
415
+ "frequencyPenalty": {
416
+ "type": "number",
417
+ "minimum": -2,
418
+ "maximum": 2,
419
+ "description": "Frequency penalty for token generation"
420
+ },
421
+ "presencePenalty": {
422
+ "type": "number",
423
+ "minimum": -2,
424
+ "maximum": 2,
425
+ "description": "Presence penalty for token generation"
426
+ }
427
+ },
428
+ "additionalProperties": false
429
+ },
430
+ "Tool": {
431
+ "type": "object",
432
+ "required": [
433
+ "type"
434
+ ],
435
+ "properties": {
436
+ "type": {
437
+ "type": "string",
438
+ "enum": [
439
+ "mcp",
440
+ "kubernetes",
441
+ "http",
442
+ "grpc",
443
+ "function",
444
+ "custom"
445
+ ],
446
+ "description": "Tool integration type"
447
+ },
448
+ "name": {
449
+ "type": "string",
450
+ "description": "Tool name/identifier"
451
+ },
452
+ "server": {
453
+ "type": "string",
454
+ "description": "MCP server name (for type=mcp)"
455
+ },
456
+ "namespace": {
457
+ "type": "string",
458
+ "description": "Kubernetes namespace (for type=kubernetes or mcp)"
459
+ },
460
+ "endpoint": {
461
+ "type": "string",
462
+ "format": "uri",
463
+ "description": "HTTP/gRPC endpoint (for type=http/grpc)"
464
+ },
465
+ "capabilities": {
466
+ "type": "array",
467
+ "items": {
468
+ "type": "string"
469
+ },
470
+ "description": "Specific capabilities/operations from this tool"
471
+ },
472
+ "config": {
473
+ "type": "object",
474
+ "description": "Tool-specific configuration",
475
+ "additionalProperties": true
476
+ },
477
+ "auth": {
478
+ "type": "object",
479
+ "properties": {
480
+ "type": {
481
+ "type": "string",
482
+ "enum": [
483
+ "bearer",
484
+ "oauth2",
485
+ "mtls",
486
+ "apikey",
487
+ "none"
488
+ ]
489
+ },
490
+ "credentials": {
491
+ "type": "string",
492
+ "description": "Reference to secret/credential (not the actual secret)"
493
+ }
494
+ }
495
+ }
496
+ },
497
+ "additionalProperties": false
498
+ },
499
+ "Autonomy": {
500
+ "type": "object",
501
+ "properties": {
502
+ "level": {
503
+ "type": "string",
504
+ "enum": [
505
+ "supervised",
506
+ "autonomous",
507
+ "fully_autonomous"
508
+ ],
509
+ "description": "Level of autonomy for agent decision-making"
510
+ },
511
+ "approval_required": {
512
+ "type": "boolean",
513
+ "description": "Whether human approval is required for actions"
514
+ },
515
+ "allowed_actions": {
516
+ "type": "array",
517
+ "items": {
518
+ "type": "string"
519
+ },
520
+ "description": "Whitelist of permitted actions"
521
+ },
522
+ "blocked_actions": {
523
+ "type": "array",
524
+ "items": {
525
+ "type": "string"
526
+ },
527
+ "description": "Blacklist of forbidden actions"
528
+ },
529
+ "escalation_policy": {
530
+ "type": "object",
531
+ "description": "Rules for escalating to human oversight"
532
+ }
533
+ },
534
+ "additionalProperties": false
535
+ },
536
+ "Constraints": {
537
+ "type": "object",
538
+ "properties": {
539
+ "cost": {
540
+ "type": "object",
541
+ "properties": {
542
+ "maxTokensPerDay": {
543
+ "type": "integer",
544
+ "minimum": 0
545
+ },
546
+ "maxTokensPerRequest": {
547
+ "type": "integer",
548
+ "minimum": 0
549
+ },
550
+ "maxCostPerDay": {
551
+ "type": "number",
552
+ "minimum": 0
553
+ },
554
+ "currency": {
555
+ "type": "string",
556
+ "pattern": "^[A-Z]{3}$",
557
+ "default": "USD"
558
+ }
559
+ }
560
+ },
561
+ "performance": {
562
+ "type": "object",
563
+ "properties": {
564
+ "maxLatencySeconds": {
565
+ "type": "number",
566
+ "minimum": 0
567
+ },
568
+ "maxConcurrentRequests": {
569
+ "type": "integer",
570
+ "minimum": 1
571
+ },
572
+ "timeoutSeconds": {
573
+ "type": "number",
574
+ "minimum": 0
575
+ }
576
+ }
577
+ },
578
+ "resources": {
579
+ "type": "object",
580
+ "properties": {
581
+ "cpu": {
582
+ "type": "string",
583
+ "description": "CPU limit (Kubernetes format: 100m, 1, 2.5)"
584
+ },
585
+ "memory": {
586
+ "type": "string",
587
+ "description": "Memory limit (Kubernetes format: 128Mi, 1Gi)"
588
+ },
589
+ "gpu": {
590
+ "type": "string",
591
+ "description": "GPU requirement"
592
+ }
593
+ }
594
+ }
595
+ },
596
+ "additionalProperties": false
597
+ },
598
+ "Observability": {
599
+ "type": "object",
600
+ "properties": {
601
+ "tracing": {
602
+ "type": "object",
603
+ "properties": {
604
+ "enabled": {
605
+ "type": "boolean",
606
+ "default": true
607
+ },
608
+ "exporter": {
609
+ "type": "string",
610
+ "enum": [
611
+ "otlp",
612
+ "jaeger",
613
+ "zipkin",
614
+ "custom"
615
+ ]
616
+ },
617
+ "endpoint": {
618
+ "type": "string",
619
+ "format": "uri"
620
+ }
621
+ }
622
+ },
623
+ "metrics": {
624
+ "type": "object",
625
+ "properties": {
626
+ "enabled": {
627
+ "type": "boolean",
628
+ "default": true
629
+ },
630
+ "exporter": {
631
+ "type": "string",
632
+ "enum": [
633
+ "prometheus",
634
+ "otlp",
635
+ "custom"
636
+ ]
637
+ },
638
+ "endpoint": {
639
+ "type": "string",
640
+ "format": "uri"
641
+ }
642
+ }
643
+ },
644
+ "logging": {
645
+ "type": "object",
646
+ "properties": {
647
+ "level": {
648
+ "type": "string",
649
+ "enum": [
650
+ "debug",
651
+ "info",
652
+ "warn",
653
+ "error"
654
+ ],
655
+ "default": "info"
656
+ },
657
+ "format": {
658
+ "type": "string",
659
+ "enum": [
660
+ "json",
661
+ "text"
662
+ ],
663
+ "default": "json"
664
+ }
665
+ }
666
+ }
667
+ },
668
+ "additionalProperties": false
669
+ },
670
+ "KAgentExtension": {
671
+ "type": "object",
672
+ "description": "kagent.dev Kubernetes-native agent deployment extension",
673
+ "properties": {
674
+ "kubernetes": {
675
+ "type": "object",
676
+ "properties": {
677
+ "namespace": {
678
+ "type": "string",
679
+ "default": "default",
680
+ "description": "Target Kubernetes namespace"
681
+ },
682
+ "labels": {
683
+ "type": "object",
684
+ "additionalProperties": {
685
+ "type": "string"
686
+ },
687
+ "description": "Kubernetes labels for agent CRD"
688
+ },
689
+ "annotations": {
690
+ "type": "object",
691
+ "additionalProperties": {
692
+ "type": "string"
693
+ },
694
+ "description": "Kubernetes annotations"
695
+ }
696
+ }
697
+ },
698
+ "deployment": {
699
+ "type": "object",
700
+ "properties": {
701
+ "replicas": {
702
+ "type": "integer",
703
+ "minimum": 1,
704
+ "default": 1
705
+ },
706
+ "strategy": {
707
+ "type": "string",
708
+ "enum": ["rolling-update", "recreate"],
709
+ "default": "rolling-update"
710
+ }
711
+ }
712
+ },
713
+ "api_version": {
714
+ "type": "string",
715
+ "description": "kagent.dev API version (e.g., kagent.dev/v1alpha2)",
716
+ "default": "kagent.dev/v1alpha2"
717
+ }
718
+ },
719
+ "additionalProperties": true
720
+ },
721
+ "BuildKitExtension": {
722
+ "type": "object",
723
+ "description": "Agent BuildKit deployment and orchestration extension",
724
+ "properties": {
725
+ "deployment": {
726
+ "type": "object",
727
+ "properties": {
728
+ "replicas": {
729
+ "type": "object",
730
+ "properties": {
731
+ "min": {
732
+ "type": "integer",
733
+ "default": 1
734
+ },
735
+ "max": {
736
+ "type": "integer",
737
+ "default": 4
738
+ }
739
+ }
740
+ }
741
+ }
742
+ },
743
+ "container": {
744
+ "type": "object",
745
+ "properties": {
746
+ "image": {
747
+ "type": "string",
748
+ "description": "Container image"
749
+ },
750
+ "runtime": {
751
+ "type": "string",
752
+ "enum": ["docker", "podman", "containerd"],
753
+ "default": "docker"
754
+ },
755
+ "resources": {
756
+ "type": "object",
757
+ "description": "Container resource limits"
758
+ }
759
+ }
760
+ }
761
+ },
762
+ "additionalProperties": true
763
+ },
764
+ "DrupalExtension": {
765
+ "type": "object",
766
+ "description": "Drupal LLM Platform integration extension",
767
+ "properties": {
768
+ "module": {
769
+ "type": "string",
770
+ "pattern": "^[a-z][a-z0-9_]*$",
771
+ "description": "Drupal module that owns this agent"
772
+ },
773
+ "service": {
774
+ "type": "string",
775
+ "pattern": "^[a-z][a-z0-9_]*\\.[a-z][a-z0-9_]*$",
776
+ "description": "Drupal service ID (module.service format)"
777
+ },
778
+ "dependencies": {
779
+ "type": "array",
780
+ "items": {
781
+ "type": "string",
782
+ "pattern": "^[a-z][a-z0-9_]*$"
783
+ },
784
+ "description": "Required Drupal modules"
785
+ },
786
+ "database": {
787
+ "type": "object",
788
+ "properties": {
789
+ "tables": {
790
+ "type": "array",
791
+ "items": {
792
+ "type": "string"
793
+ }
794
+ },
795
+ "migrations": {
796
+ "type": "array",
797
+ "items": {
798
+ "type": "string"
799
+ }
800
+ }
801
+ }
802
+ }
803
+ },
804
+ "additionalProperties": true
805
+ },
806
+ "LibreChatExtension": {
807
+ "type": "object",
808
+ "description": "LibreChat integration extension",
809
+ "properties": {
810
+ "enabled": {
811
+ "type": "boolean",
812
+ "default": true
813
+ },
814
+ "agent_id": {
815
+ "type": "string",
816
+ "description": "LibreChat agent identifier"
817
+ },
818
+ "endpoint": {
819
+ "type": "string",
820
+ "format": "uri",
821
+ "description": "LibreChat API endpoint"
822
+ },
823
+ "authentication": {
824
+ "type": "object",
825
+ "description": "LibreChat authentication configuration"
826
+ }
827
+ },
828
+ "additionalProperties": true
829
+ },
830
+ "MCPExtension": {
831
+ "type": "object",
832
+ "description": "Model Context Protocol (MCP) extension",
833
+ "properties": {
834
+ "enabled": {
835
+ "type": "boolean",
836
+ "default": true
837
+ },
838
+ "server_type": {
839
+ "type": "string",
840
+ "enum": ["stdio", "sse", "websocket"],
841
+ "default": "stdio"
842
+ },
843
+ "server_name": {
844
+ "type": "string",
845
+ "description": "MCP server name"
846
+ },
847
+ "config": {
848
+ "type": "object",
849
+ "description": "MCP server configuration"
850
+ }
851
+ },
852
+ "additionalProperties": true
853
+ },
854
+ "LangChainExtension": {
855
+ "type": "object",
856
+ "description": "LangChain framework integration extension",
857
+ "properties": {
858
+ "enabled": {
859
+ "type": "boolean",
860
+ "default": false
861
+ },
862
+ "tool_class": {
863
+ "type": "string",
864
+ "description": "LangChain tool class name"
865
+ },
866
+ "chain_type": {
867
+ "type": "string",
868
+ "enum": ["llm", "retrieval", "agent", "sequential", "custom"]
869
+ },
870
+ "memory": {
871
+ "type": "object",
872
+ "properties": {
873
+ "type": {
874
+ "type": "string",
875
+ "enum": ["buffer", "summary", "conversation", "vector"]
876
+ },
877
+ "max_tokens": {
878
+ "type": "integer"
879
+ }
880
+ }
881
+ }
882
+ },
883
+ "additionalProperties": true
884
+ },
885
+ "CrewAIExtension": {
886
+ "type": "object",
887
+ "description": "CrewAI framework integration extension",
888
+ "properties": {
889
+ "enabled": {
890
+ "type": "boolean",
891
+ "default": false
892
+ },
893
+ "agent_type": {
894
+ "type": "string",
895
+ "enum": ["worker", "manager", "researcher", "analyst", "custom"]
896
+ },
897
+ "role": {
898
+ "type": "string",
899
+ "description": "CrewAI agent role"
900
+ },
901
+ "goal": {
902
+ "type": "string",
903
+ "description": "CrewAI agent goal"
904
+ },
905
+ "backstory": {
906
+ "type": "string",
907
+ "description": "CrewAI agent backstory"
908
+ },
909
+ "tools": {
910
+ "type": "array",
911
+ "items": {
912
+ "type": "string"
913
+ },
914
+ "description": "CrewAI tool names"
915
+ },
916
+ "crew": {
917
+ "type": "object",
918
+ "description": "CrewAI crew configuration for AgentGraph",
919
+ "properties": {
920
+ "process": {
921
+ "type": "string",
922
+ "enum": ["sequential", "hierarchical"],
923
+ "description": "CrewAI process type"
924
+ },
925
+ "verbose": {
926
+ "type": "boolean",
927
+ "default": false
928
+ },
929
+ "manager_llm": {
930
+ "type": "string",
931
+ "description": "LLM for manager agent in hierarchical process"
932
+ }
933
+ }
934
+ }
935
+ },
936
+ "additionalProperties": true
937
+ },
938
+ "OpenAIAgentsExtension": {
939
+ "type": "object",
940
+ "description": "OpenAI Agents SDK integration extension",
941
+ "properties": {
942
+ "enabled": {
943
+ "type": "boolean",
944
+ "default": false,
945
+ "description": "Enable OpenAI Agents SDK bridge"
946
+ },
947
+ "agent_id": {
948
+ "type": "string",
949
+ "description": "OpenAI agent ID (optional, auto-generated if not provided)"
950
+ },
951
+ "instructions": {
952
+ "type": "string",
953
+ "description": "Agent instructions/prompt (overrides spec.role if provided)"
954
+ },
955
+ "model": {
956
+ "type": "string",
957
+ "enum": [
958
+ "gpt-4o",
959
+ "gpt-4o-mini",
960
+ "gpt-4-turbo",
961
+ "gpt-3.5-turbo"
962
+ ],
963
+ "default": "gpt-4o-mini",
964
+ "description": "OpenAI model to use for the agent"
965
+ },
966
+ "tools_mapping": {
967
+ "type": "array",
968
+ "description": "Map OSSA capabilities to OpenAI tools",
969
+ "items": {
970
+ "type": "object",
971
+ "required": [
972
+ "ossa_capability"
973
+ ],
974
+ "properties": {
975
+ "ossa_capability": {
976
+ "type": "string",
977
+ "description": "OSSA capability name to map"
978
+ },
979
+ "openai_tool_name": {
980
+ "type": "string",
981
+ "description": "OpenAI tool name (defaults to ossa_capability if not provided)"
982
+ },
983
+ "description": {
984
+ "type": "string",
985
+ "description": "Tool description (defaults to OSSA capability description)"
986
+ },
987
+ "parameters": {
988
+ "type": "object",
989
+ "description": "OpenAI tool parameter schema (auto-generated from OSSA input_schema if not provided)"
990
+ }
991
+ },
992
+ "additionalProperties": false
993
+ }
994
+ },
995
+ "sub_agents": {
996
+ "type": "array",
997
+ "description": "Sub-agent handoffs configuration",
998
+ "items": {
999
+ "type": "object",
1000
+ "required": [
1001
+ "agent_id",
1002
+ "ossa_agent_ref"
1003
+ ],
1004
+ "properties": {
1005
+ "agent_id": {
1006
+ "type": "string",
1007
+ "description": "OpenAI sub-agent identifier"
1008
+ },
1009
+ "ossa_agent_ref": {
1010
+ "type": "string",
1011
+ "description": "Reference to OSSA agent (metadata.name or agent ID)"
1012
+ },
1013
+ "handoff_conditions": {
1014
+ "type": "array",
1015
+ "items": {
1016
+ "type": "string"
1017
+ },
1018
+ "description": "Conditions that trigger handoff to this sub-agent"
1019
+ },
1020
+ "instructions": {
1021
+ "type": "string",
1022
+ "description": "Sub-agent specific instructions"
1023
+ }
1024
+ },
1025
+ "additionalProperties": false
1026
+ }
1027
+ },
1028
+ "guardrails": {
1029
+ "type": "object",
1030
+ "description": "Safety guardrails configuration",
1031
+ "properties": {
1032
+ "enabled": {
1033
+ "type": "boolean",
1034
+ "default": true
1035
+ },
1036
+ "policies": {
1037
+ "type": "array",
1038
+ "items": {
1039
+ "type": "string"
1040
+ },
1041
+ "description": "Guardrail policy names (maps to OSSA compliance frameworks)"
1042
+ },
1043
+ "max_tool_calls": {
1044
+ "type": "integer",
1045
+ "minimum": 1,
1046
+ "description": "Maximum tool calls per agent execution"
1047
+ },
1048
+ "timeout_seconds": {
1049
+ "type": "integer",
1050
+ "minimum": 1,
1051
+ "description": "Maximum execution time in seconds"
1052
+ }
1053
+ },
1054
+ "additionalProperties": false
1055
+ },
1056
+ "memory": {
1057
+ "type": "object",
1058
+ "description": "Session memory configuration",
1059
+ "properties": {
1060
+ "enabled": {
1061
+ "type": "boolean",
1062
+ "default": false
1063
+ },
1064
+ "type": {
1065
+ "type": "string",
1066
+ "enum": [
1067
+ "session",
1068
+ "persistent"
1069
+ ],
1070
+ "default": "session",
1071
+ "description": "Memory storage type"
1072
+ },
1073
+ "max_messages": {
1074
+ "type": "integer",
1075
+ "minimum": 1,
1076
+ "description": "Maximum messages to retain in memory"
1077
+ }
1078
+ },
1079
+ "additionalProperties": false
1080
+ },
1081
+ "tracing": {
1082
+ "type": "object",
1083
+ "description": "Observability and tracing configuration",
1084
+ "properties": {
1085
+ "enabled": {
1086
+ "type": "boolean",
1087
+ "default": true
1088
+ },
1089
+ "provider": {
1090
+ "type": "string",
1091
+ "enum": [
1092
+ "langfuse",
1093
+ "langsmith",
1094
+ "custom"
1095
+ ],
1096
+ "default": "langfuse",
1097
+ "description": "Tracing provider"
1098
+ },
1099
+ "endpoint": {
1100
+ "type": "string",
1101
+ "format": "uri",
1102
+ "description": "Custom tracing endpoint (for provider=custom)"
1103
+ }
1104
+ },
1105
+ "additionalProperties": false
1106
+ }
1107
+ },
1108
+ "additionalProperties": true
1109
+ },
1110
+ "CursorExtension": {
1111
+ "type": "object",
1112
+ "description": "Cursor IDE agent integration extension",
1113
+ "properties": {
1114
+ "enabled": {
1115
+ "type": "boolean",
1116
+ "default": true,
1117
+ "description": "Enable Cursor IDE integration"
1118
+ },
1119
+ "agent_type": {
1120
+ "type": "string",
1121
+ "enum": ["composer", "chat", "background", "cloud"],
1122
+ "default": "composer",
1123
+ "description": "Cursor agent type"
1124
+ },
1125
+ "workspace_config": {
1126
+ "type": "object",
1127
+ "properties": {
1128
+ "rules_file": {
1129
+ "type": "string",
1130
+ "description": "Path to .cursorrules file"
1131
+ },
1132
+ "context_files": {
1133
+ "type": "array",
1134
+ "items": {
1135
+ "type": "string"
1136
+ },
1137
+ "description": "Files to include in agent context"
1138
+ },
1139
+ "ignore_patterns": {
1140
+ "type": "array",
1141
+ "items": {
1142
+ "type": "string"
1143
+ },
1144
+ "description": "Glob patterns to exclude from context"
1145
+ }
1146
+ }
1147
+ },
1148
+ "capabilities": {
1149
+ "type": "object",
1150
+ "properties": {
1151
+ "code_generation": {
1152
+ "type": "boolean",
1153
+ "default": true
1154
+ },
1155
+ "code_review": {
1156
+ "type": "boolean",
1157
+ "default": false
1158
+ },
1159
+ "refactoring": {
1160
+ "type": "boolean",
1161
+ "default": false
1162
+ },
1163
+ "testing": {
1164
+ "type": "boolean",
1165
+ "default": false
1166
+ }
1167
+ }
1168
+ },
1169
+ "model": {
1170
+ "type": "object",
1171
+ "properties": {
1172
+ "provider": {
1173
+ "type": "string",
1174
+ "enum": ["openai", "anthropic", "custom"],
1175
+ "default": "openai"
1176
+ },
1177
+ "name": {
1178
+ "type": "string",
1179
+ "description": "Model name"
1180
+ }
1181
+ }
1182
+ }
1183
+ },
1184
+ "additionalProperties": true
1185
+ },
1186
+ "LangflowExtension": {
1187
+ "type": "object",
1188
+ "description": "Langflow workflow orchestration extension",
1189
+ "properties": {
1190
+ "enabled": {
1191
+ "type": "boolean",
1192
+ "default": false
1193
+ },
1194
+ "flow_id": {
1195
+ "type": "string",
1196
+ "description": "Langflow flow identifier"
1197
+ },
1198
+ "flow_name": {
1199
+ "type": "string",
1200
+ "description": "Human-readable flow name"
1201
+ },
1202
+ "endpoint": {
1203
+ "type": "string",
1204
+ "format": "uri",
1205
+ "description": "Langflow API endpoint"
1206
+ },
1207
+ "api_key": {
1208
+ "type": "string",
1209
+ "description": "Langflow API key (reference to secret)"
1210
+ },
1211
+ "components": {
1212
+ "type": "array",
1213
+ "items": {
1214
+ "type": "object",
1215
+ "properties": {
1216
+ "id": {
1217
+ "type": "string"
1218
+ },
1219
+ "type": {
1220
+ "type": "string"
1221
+ },
1222
+ "name": {
1223
+ "type": "string"
1224
+ }
1225
+ }
1226
+ }
1227
+ },
1228
+ "dataflow": {
1229
+ "type": "object",
1230
+ "description": "Data flow configuration"
1231
+ }
1232
+ },
1233
+ "additionalProperties": true
1234
+ },
1235
+ "AutoGenExtension": {
1236
+ "type": "object",
1237
+ "description": "AutoGen multi-agent framework extension",
1238
+ "properties": {
1239
+ "enabled": {
1240
+ "type": "boolean",
1241
+ "default": false
1242
+ },
1243
+ "agent_type": {
1244
+ "type": "string",
1245
+ "enum": ["assistant", "user_proxy", "groupchat", "custom"],
1246
+ "description": "AutoGen agent type"
1247
+ },
1248
+ "system_message": {
1249
+ "type": "string",
1250
+ "description": "System message for AutoGen agent"
1251
+ },
1252
+ "human_input_mode": {
1253
+ "type": "string",
1254
+ "enum": ["ALWAYS", "NEVER", "TERMINATE"],
1255
+ "default": "NEVER"
1256
+ },
1257
+ "code_execution": {
1258
+ "type": "object",
1259
+ "properties": {
1260
+ "enabled": {
1261
+ "type": "boolean",
1262
+ "default": false
1263
+ },
1264
+ "work_dir": {
1265
+ "type": "string"
1266
+ },
1267
+ "use_docker": {
1268
+ "type": "boolean",
1269
+ "default": false
1270
+ }
1271
+ }
1272
+ },
1273
+ "max_consecutive_auto_reply": {
1274
+ "type": "integer",
1275
+ "minimum": 1,
1276
+ "default": 10
1277
+ },
1278
+ "groupchat": {
1279
+ "type": "object",
1280
+ "properties": {
1281
+ "agents": {
1282
+ "type": "array",
1283
+ "items": {
1284
+ "type": "string"
1285
+ }
1286
+ },
1287
+ "max_round": {
1288
+ "type": "integer",
1289
+ "minimum": 1
1290
+ }
1291
+ }
1292
+ }
1293
+ },
1294
+ "additionalProperties": true
1295
+ },
1296
+ "VercelAIExtension": {
1297
+ "type": "object",
1298
+ "description": "Vercel AI SDK integration extension",
1299
+ "properties": {
1300
+ "enabled": {
1301
+ "type": "boolean",
1302
+ "default": false
1303
+ },
1304
+ "runtime": {
1305
+ "type": "string",
1306
+ "enum": ["edge", "nodejs"],
1307
+ "default": "edge"
1308
+ },
1309
+ "stream": {
1310
+ "type": "boolean",
1311
+ "default": true
1312
+ },
1313
+ "route": {
1314
+ "type": "string"
1315
+ },
1316
+ "tools": {
1317
+ "type": "array",
1318
+ "items": {
1319
+ "type": "object",
1320
+ "properties": {
1321
+ "name": {
1322
+ "type": "string"
1323
+ },
1324
+ "description": {
1325
+ "type": "string"
1326
+ },
1327
+ "parameters": {
1328
+ "type": "object"
1329
+ }
1330
+ }
1331
+ }
1332
+ },
1333
+ "experimental": {
1334
+ "type": "object",
1335
+ "additionalProperties": true
1336
+ }
1337
+ },
1338
+ "additionalProperties": true
1339
+ },
1340
+ "LlamaIndexExtension": {
1341
+ "type": "object",
1342
+ "description": "LlamaIndex framework integration extension",
1343
+ "properties": {
1344
+ "enabled": {
1345
+ "type": "boolean",
1346
+ "default": false
1347
+ },
1348
+ "agent_type": {
1349
+ "type": "string",
1350
+ "enum": ["query_engine", "chat_engine", "retriever", "custom"]
1351
+ },
1352
+ "llm": {
1353
+ "type": "object",
1354
+ "properties": {
1355
+ "provider": {
1356
+ "type": "string",
1357
+ "enum": ["openai", "anthropic", "local", "custom"]
1358
+ },
1359
+ "model": {
1360
+ "type": "string"
1361
+ },
1362
+ "temperature": {
1363
+ "type": "number",
1364
+ "minimum": 0,
1365
+ "maximum": 2
1366
+ }
1367
+ }
1368
+ },
1369
+ "vector_store": {
1370
+ "type": "object",
1371
+ "properties": {
1372
+ "type": {
1373
+ "type": "string",
1374
+ "enum": ["pinecone", "weaviate", "chroma", "qdrant", "milvus", "custom"]
1375
+ },
1376
+ "config": {
1377
+ "type": "object",
1378
+ "additionalProperties": true
1379
+ }
1380
+ }
1381
+ },
1382
+ "retrieval": {
1383
+ "type": "object",
1384
+ "properties": {
1385
+ "top_k": {
1386
+ "type": "integer",
1387
+ "minimum": 1,
1388
+ "default": 5
1389
+ },
1390
+ "similarity_top_k": {
1391
+ "type": "integer",
1392
+ "minimum": 1
1393
+ }
1394
+ }
1395
+ },
1396
+ "tools": {
1397
+ "type": "array",
1398
+ "items": {
1399
+ "type": "object",
1400
+ "properties": {
1401
+ "name": {
1402
+ "type": "string"
1403
+ },
1404
+ "type": {
1405
+ "type": "string"
1406
+ }
1407
+ }
1408
+ }
1409
+ }
1410
+ },
1411
+ "additionalProperties": true
1412
+ },
1413
+ "LangGraphExtension": {
1414
+ "type": "object",
1415
+ "description": "LangGraph state machine agent extension",
1416
+ "properties": {
1417
+ "enabled": {
1418
+ "type": "boolean",
1419
+ "default": false
1420
+ },
1421
+ "graph_name": {
1422
+ "type": "string"
1423
+ },
1424
+ "state_schema": {
1425
+ "type": "object"
1426
+ },
1427
+ "nodes": {
1428
+ "type": "array",
1429
+ "items": {
1430
+ "type": "object",
1431
+ "properties": {
1432
+ "name": {
1433
+ "type": "string"
1434
+ },
1435
+ "function": {
1436
+ "type": "string"
1437
+ }
1438
+ }
1439
+ }
1440
+ },
1441
+ "edges": {
1442
+ "type": "array",
1443
+ "items": {
1444
+ "type": "object",
1445
+ "properties": {
1446
+ "from": {
1447
+ "type": "string"
1448
+ },
1449
+ "to": {
1450
+ "type": "string"
1451
+ },
1452
+ "condition": {
1453
+ "type": "string"
1454
+ }
1455
+ }
1456
+ }
1457
+ },
1458
+ "checkpoint": {
1459
+ "type": "object",
1460
+ "properties": {
1461
+ "enabled": {
1462
+ "type": "boolean",
1463
+ "default": false
1464
+ },
1465
+ "type": {
1466
+ "type": "string",
1467
+ "enum": ["memory", "sqlite", "postgres", "custom"]
1468
+ }
1469
+ }
1470
+ }
1471
+ },
1472
+ "additionalProperties": true
1473
+ },
1474
+ "AnthropicExtension": {
1475
+ "type": "object",
1476
+ "description": "Anthropic Claude API integration extension",
1477
+ "properties": {
1478
+ "enabled": {
1479
+ "type": "boolean",
1480
+ "default": false
1481
+ },
1482
+ "model": {
1483
+ "type": "string",
1484
+ "enum": [
1485
+ "claude-3-5-sonnet-20241022",
1486
+ "claude-3-5-haiku-20241022",
1487
+ "claude-3-opus-20240229",
1488
+ "claude-3-sonnet-20240229",
1489
+ "claude-3-haiku-20240307"
1490
+ ],
1491
+ "default": "claude-3-5-sonnet-20241022"
1492
+ },
1493
+ "system": {
1494
+ "type": "string"
1495
+ },
1496
+ "max_tokens": {
1497
+ "type": "integer",
1498
+ "minimum": 1,
1499
+ "maximum": 4096,
1500
+ "default": 4096
1501
+ },
1502
+ "temperature": {
1503
+ "type": "number",
1504
+ "minimum": 0,
1505
+ "maximum": 1,
1506
+ "default": 1
1507
+ },
1508
+ "tools": {
1509
+ "type": "array",
1510
+ "items": {
1511
+ "type": "object",
1512
+ "properties": {
1513
+ "name": {
1514
+ "type": "string"
1515
+ },
1516
+ "description": {
1517
+ "type": "string"
1518
+ },
1519
+ "input_schema": {
1520
+ "type": "object"
1521
+ }
1522
+ },
1523
+ "required": ["name", "description", "input_schema"]
1524
+ }
1525
+ },
1526
+ "streaming": {
1527
+ "type": "boolean",
1528
+ "default": false
1529
+ },
1530
+ "stop_sequences": {
1531
+ "type": "array",
1532
+ "items": {
1533
+ "type": "string"
1534
+ }
1535
+ }
1536
+ },
1537
+ "additionalProperties": true
1538
+ },
1539
+ "GoogleADKExtension": {
1540
+ "type": "object",
1541
+ "description": "Google Agent Development Kit (ADK) integration extension for multi-agent orchestration",
1542
+ "properties": {
1543
+ "enabled": {
1544
+ "type": "boolean",
1545
+ "default": false
1546
+ },
1547
+ "agent_type": {
1548
+ "type": "string",
1549
+ "enum": ["llm_agent", "sequential_agent", "parallel_agent", "loop_agent", "custom"],
1550
+ "description": "ADK agent type"
1551
+ },
1552
+ "model": {
1553
+ "type": "string",
1554
+ "description": "Gemini model to use (e.g., gemini-2.0-flash-exp)"
1555
+ },
1556
+ "instruction": {
1557
+ "type": "string",
1558
+ "description": "Agent instruction/prompt"
1559
+ },
1560
+ "sub_agents": {
1561
+ "type": "array",
1562
+ "description": "Sub-agents for orchestration agents",
1563
+ "items": {
1564
+ "type": "string"
1565
+ }
1566
+ },
1567
+ "tools": {
1568
+ "type": "array",
1569
+ "items": {
1570
+ "type": "object",
1571
+ "properties": {
1572
+ "name": {
1573
+ "type": "string"
1574
+ },
1575
+ "type": {
1576
+ "type": "string",
1577
+ "enum": ["function", "google_search", "code_execution", "custom"]
1578
+ }
1579
+ }
1580
+ }
1581
+ },
1582
+ "session": {
1583
+ "type": "object",
1584
+ "properties": {
1585
+ "service": {
1586
+ "type": "string",
1587
+ "enum": ["in_memory", "database", "vertex_ai"],
1588
+ "default": "in_memory"
1589
+ }
1590
+ }
1591
+ }
1592
+ },
1593
+ "additionalProperties": true
1594
+ },
1595
+ "MicrosoftAFExtension": {
1596
+ "type": "object",
1597
+ "description": "Microsoft AutoGen/Magentic-One Agent Framework integration extension",
1598
+ "properties": {
1599
+ "enabled": {
1600
+ "type": "boolean",
1601
+ "default": false
1602
+ },
1603
+ "framework": {
1604
+ "type": "string",
1605
+ "enum": ["autogen_v0.4", "magentic_one", "semantic_kernel"],
1606
+ "default": "autogen_v0.4",
1607
+ "description": "Microsoft agent framework variant"
1608
+ },
1609
+ "team_type": {
1610
+ "type": "string",
1611
+ "enum": ["round_robin", "selector", "swarm", "magentic_one"],
1612
+ "description": "Team orchestration type"
1613
+ },
1614
+ "agent_type": {
1615
+ "type": "string",
1616
+ "enum": ["assistant", "code_executor", "user_proxy", "orchestrator", "web_surfer", "file_surfer", "coder"],
1617
+ "description": "Agent type within the team"
1618
+ },
1619
+ "model_client": {
1620
+ "type": "object",
1621
+ "properties": {
1622
+ "type": {
1623
+ "type": "string",
1624
+ "enum": ["openai", "azure_openai", "anthropic"]
1625
+ },
1626
+ "model": {
1627
+ "type": "string"
1628
+ }
1629
+ }
1630
+ },
1631
+ "tools": {
1632
+ "type": "array",
1633
+ "items": {
1634
+ "type": "object",
1635
+ "properties": {
1636
+ "name": {
1637
+ "type": "string"
1638
+ },
1639
+ "type": {
1640
+ "type": "string",
1641
+ "enum": ["function", "code_executor", "mcp"]
1642
+ }
1643
+ }
1644
+ }
1645
+ },
1646
+ "termination": {
1647
+ "type": "object",
1648
+ "properties": {
1649
+ "type": {
1650
+ "type": "string",
1651
+ "enum": ["text_mention", "max_messages", "token_limit", "custom"]
1652
+ },
1653
+ "condition": {
1654
+ "type": "string"
1655
+ }
1656
+ }
1657
+ }
1658
+ },
1659
+ "additionalProperties": true
1660
+ },
1661
+ "MetaGPTExtension": {
1662
+ "type": "object",
1663
+ "description": "MetaGPT multi-agent framework integration extension for software development teams",
1664
+ "properties": {
1665
+ "enabled": {
1666
+ "type": "boolean",
1667
+ "default": false
1668
+ },
1669
+ "role": {
1670
+ "type": "string",
1671
+ "enum": ["product_manager", "architect", "project_manager", "engineer", "qa_engineer", "custom"],
1672
+ "description": "MetaGPT role type"
1673
+ },
1674
+ "sop": {
1675
+ "type": "object",
1676
+ "description": "Standard Operating Procedure configuration",
1677
+ "properties": {
1678
+ "name": {
1679
+ "type": "string",
1680
+ "description": "SOP name (e.g., 'software_development')"
1681
+ },
1682
+ "phases": {
1683
+ "type": "array",
1684
+ "items": {
1685
+ "type": "string"
1686
+ },
1687
+ "description": "SOP phases (e.g., ['requirements', 'design', 'implementation', 'testing'])"
1688
+ }
1689
+ }
1690
+ },
1691
+ "actions": {
1692
+ "type": "array",
1693
+ "description": "MetaGPT actions this agent can perform",
1694
+ "items": {
1695
+ "type": "object",
1696
+ "properties": {
1697
+ "name": {
1698
+ "type": "string"
1699
+ },
1700
+ "type": {
1701
+ "type": "string"
1702
+ }
1703
+ }
1704
+ }
1705
+ },
1706
+ "memory": {
1707
+ "type": "object",
1708
+ "properties": {
1709
+ "type": {
1710
+ "type": "string",
1711
+ "enum": ["role_memory", "team_memory", "long_term"]
1712
+ }
1713
+ }
1714
+ },
1715
+ "environment": {
1716
+ "type": "object",
1717
+ "properties": {
1718
+ "workspace": {
1719
+ "type": "string",
1720
+ "description": "Workspace directory"
1721
+ },
1722
+ "max_budget": {
1723
+ "type": "number",
1724
+ "description": "Maximum budget in USD"
1725
+ }
1726
+ }
1727
+ }
1728
+ },
1729
+ "additionalProperties": true
1730
+ }
1731
+ }
1732
+ }