@bluefly/openstandardagents 0.2.5-RC → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (365) hide show
  1. package/.devfile.yaml +1 -1
  2. package/.env.example +1 -1
  3. package/.github/ISSUE_TEMPLATE/bug_report.yml +63 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.yml +40 -0
  5. package/.github/workflows/dependabot-comment.yml +34 -0
  6. package/.github/workflows/pr-comment.yml +33 -0
  7. package/.husky/pre-commit +5 -0
  8. package/.kiro/config.json +21 -0
  9. package/.kiro/settings/mcp.json +61 -0
  10. package/.kiro/specs/scripts-migration-api-first/design.md +883 -0
  11. package/.kiro/specs/scripts-migration-api-first/requirements.md +165 -0
  12. package/.kiro/specs/scripts-migration-api-first/tasks.md +539 -0
  13. package/.kiro/specs/{website-design-audit → website-brand-identity}/design.md +381 -0
  14. package/.kiro/specs/{website-design-audit → website-brand-identity}/requirements.md +88 -0
  15. package/.kiro/specs/website-brand-identity/tasks.md +981 -0
  16. package/.version.json +2 -2
  17. package/.wiki-config.json +24 -0
  18. package/CHANGELOG.md +34 -18
  19. package/CODEOWNERS +75 -0
  20. package/CONTRIBUTING.md +1 -1
  21. package/README.md +176 -239
  22. package/bin/ossa-dev +42 -0
  23. package/bin/ossa-export +32 -0
  24. package/bin/ossa-generate +60 -0
  25. package/bin/ossa-health +40 -0
  26. package/bin/ossa-init +26 -0
  27. package/dist/index.d.ts +1 -0
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +2 -0
  30. package/dist/index.js.map +1 -1
  31. package/dist/repositories/schema.repository.d.ts +6 -1
  32. package/dist/repositories/schema.repository.d.ts.map +1 -1
  33. package/dist/repositories/schema.repository.js +63 -36
  34. package/dist/repositories/schema.repository.js.map +1 -1
  35. package/dist/services/github-sync/github-client.d.ts +14 -0
  36. package/dist/services/github-sync/github-client.d.ts.map +1 -0
  37. package/dist/services/github-sync/github-client.js +41 -0
  38. package/dist/services/github-sync/github-client.js.map +1 -0
  39. package/dist/services/github-sync/gitlab-client.d.ts +17 -0
  40. package/dist/services/github-sync/gitlab-client.d.ts.map +1 -0
  41. package/dist/services/github-sync/gitlab-client.js +42 -0
  42. package/dist/services/github-sync/gitlab-client.js.map +1 -0
  43. package/dist/services/github-sync/schemas.d.ts +46 -0
  44. package/dist/services/github-sync/schemas.d.ts.map +1 -0
  45. package/dist/services/github-sync/schemas.js +36 -0
  46. package/dist/services/github-sync/schemas.js.map +1 -0
  47. package/dist/services/github-sync/sync.service.d.ts +27 -0
  48. package/dist/services/github-sync/sync.service.d.ts.map +1 -0
  49. package/dist/services/github-sync/sync.service.js +99 -0
  50. package/dist/services/github-sync/sync.service.js.map +1 -0
  51. package/dist/services/migration.service.d.ts +4 -3
  52. package/dist/services/migration.service.d.ts.map +1 -1
  53. package/dist/services/migration.service.js +11 -10
  54. package/dist/services/migration.service.js.map +1 -1
  55. package/dist/services/release-automation/release.service.js +1 -1
  56. package/dist/services/release-automation/release.service.js.map +1 -1
  57. package/dist/services/release-automation/schemas/release.schema.js +1 -1
  58. package/dist/services/runtime/claude/capability-mapper.d.ts +84 -0
  59. package/dist/services/runtime/claude/capability-mapper.d.ts.map +1 -0
  60. package/dist/services/runtime/claude/capability-mapper.js +245 -0
  61. package/dist/services/runtime/claude/capability-mapper.js.map +1 -0
  62. package/dist/services/runtime/claude/claude-adapter.d.ts +80 -0
  63. package/dist/services/runtime/claude/claude-adapter.d.ts.map +1 -0
  64. package/dist/services/runtime/claude/claude-adapter.js +287 -0
  65. package/dist/services/runtime/claude/claude-adapter.js.map +1 -0
  66. package/dist/services/runtime/claude/manifest-parser.d.ts +77 -0
  67. package/dist/services/runtime/claude/manifest-parser.d.ts.map +1 -0
  68. package/dist/services/runtime/claude/manifest-parser.js +169 -0
  69. package/dist/services/runtime/claude/manifest-parser.js.map +1 -0
  70. package/dist/services/runtime/claude/types.d.ts +115 -0
  71. package/dist/services/runtime/claude/types.d.ts.map +1 -0
  72. package/dist/services/runtime/claude/types.js +6 -0
  73. package/dist/services/runtime/claude/types.js.map +1 -0
  74. package/dist/services/validation.service.d.ts.map +1 -1
  75. package/dist/services/validation.service.js +12 -1
  76. package/dist/services/validation.service.js.map +1 -1
  77. package/dist/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  78. package/dist/spec/v0.2.6/CHANGELOG.md +401 -0
  79. package/dist/spec/v0.2.6/README.md +72 -0
  80. package/dist/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  81. package/dist/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  82. package/dist/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
  83. package/dist/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  84. package/dist/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  85. package/dist/spec/v0.2.6-dev/README.md +75 -0
  86. package/dist/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  87. package/dist/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  88. package/dist/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  89. package/dist/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  90. package/dist/spec/v0.2.7/core/agentgraph.md +324 -0
  91. package/dist/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  92. package/dist/spec/v0.2.8/CHANGELOG.md +401 -0
  93. package/dist/spec/v0.2.8/README.md +72 -0
  94. package/dist/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  95. package/dist/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  96. package/dist/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  97. package/dist/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
  98. package/dist/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  99. package/dist/types/index.d.ts +3 -2
  100. package/dist/types/index.d.ts.map +1 -1
  101. package/dist/utils/index.d.ts +6 -0
  102. package/dist/utils/index.d.ts.map +1 -0
  103. package/dist/utils/index.js +6 -0
  104. package/dist/utils/index.js.map +1 -0
  105. package/dist/utils/version.d.ts +68 -0
  106. package/dist/utils/version.d.ts.map +1 -0
  107. package/dist/utils/version.js +156 -0
  108. package/dist/utils/version.js.map +1 -0
  109. package/docs/brand-guide/01-brand-overview.md +37 -0
  110. package/docs/brand-guide/02-logo-usage.md +43 -0
  111. package/docs/brand-guide/03-color-palette.md +70 -0
  112. package/docs/brand-guide/04-typography.md +82 -0
  113. package/docs/brand-guide/05-voice-and-tone.md +108 -0
  114. package/docs/brand-guide/06-visual-elements.md +137 -0
  115. package/docs/brand-guide/07-application-examples.md +153 -0
  116. package/docs/brand-guide/OssaLogo/OssA_Logo.svg +21 -0
  117. package/docs/brand-guide/OssaLogo/brand.af +0 -0
  118. package/docs/brand-guide/README.md +107 -0
  119. package/docs/comparison.md +315 -0
  120. package/docs/operations/automation-roadmap.md +245 -0
  121. package/docs/operations/github-sync-strategy.md +357 -0
  122. package/eslint-report.json +1 -0
  123. package/examples/adk-integration/code-review-workflow.yml +1 -1
  124. package/examples/adk-integration/customer-support.yml +1 -1
  125. package/examples/adk-integration/data-pipeline.yml +1 -1
  126. package/examples/advanced/workflows/hybrid-model-strategy.yaml +1 -1
  127. package/examples/agent-manifests/critics/critic-agent.yaml +1 -1
  128. package/examples/agent-manifests/governors/governor-agent.yaml +1 -1
  129. package/examples/agent-manifests/integrators/integrator-agent.yaml +1 -1
  130. package/examples/agent-manifests/judges/judge-agent.yaml +1 -1
  131. package/examples/agent-manifests/monitors/monitor-agent.yaml +1 -1
  132. package/examples/agent-manifests/orchestrators/orchestrator-agent.yaml +1 -1
  133. package/examples/agent-manifests/sample-compliant-agent.yaml +1 -1
  134. package/examples/agent-manifests/workers/worker-agent.yaml +1 -1
  135. package/examples/anthropic/claude-assistant.ossa.json +5 -4
  136. package/examples/autogen/multi-agent.ossa.json +6 -4
  137. package/examples/claude-code/code-reviewer.ossa.yaml +78 -0
  138. package/examples/claude-code/ossa-validator.ossa.yaml +80 -0
  139. package/examples/common_npm/agent-router.ossa.yaml +1 -0
  140. package/examples/common_npm/agent-router.v0.2.2.ossa.yaml +1 -1
  141. package/examples/crewai/research-team.ossa.json +14 -5
  142. package/examples/cursor/code-review-agent.ossa.json +21 -6
  143. package/examples/drupal/gitlab-ml-recommender.ossa.yaml +1 -0
  144. package/examples/drupal/gitlab-ml-recommender.v0.2.2.ossa.yaml +1 -1
  145. package/examples/extensions/drupal-v1.yml +1 -1
  146. package/examples/extensions/kagent-v1.yml +1 -1
  147. package/examples/getting-started/hello-world-complete.ossa.yaml +1 -1
  148. package/examples/integration-patterns/agent-to-agent-orchestration.ossa.yaml +4 -4
  149. package/examples/kagent/compliance-validator.ossa.yaml +1 -1
  150. package/examples/kagent/cost-optimizer.ossa.yaml +1 -1
  151. package/examples/kagent/documentation-agent.ossa.yaml +1 -1
  152. package/examples/kagent/k8s-troubleshooter-v1.ossa.yaml +1 -0
  153. package/examples/kagent/k8s-troubleshooter-v1.v0.2.2.ossa.yaml +1 -1
  154. package/examples/kagent/k8s-troubleshooter.ossa.yaml +1 -1
  155. package/examples/kagent/security-scanner.ossa.yaml +1 -1
  156. package/examples/langchain/chain-agent.ossa.json +21 -5
  157. package/examples/langflow/workflow-agent.ossa.json +2 -3
  158. package/examples/langgraph/state-machine-agent.ossa.json +2 -3
  159. package/examples/llamaindex/rag-agent.ossa.json +2 -3
  160. package/examples/migration-guides/from-langchain-to-ossa.yaml +4 -4
  161. package/examples/multi-agent/README.md +74 -0
  162. package/examples/multi-agent/conditional-router.ossa.yaml +42 -0
  163. package/examples/multi-agent/parallel-execution.ossa.yaml +54 -0
  164. package/examples/multi-agent/sequential-pipeline.ossa.yaml +45 -0
  165. package/examples/openai/basic-agent.ossa.yaml +1 -1
  166. package/examples/openai/multi-tool-agent.ossa.json +33 -10
  167. package/examples/openai/swarm-agent.ossa.json +18 -5
  168. package/examples/production/document-analyzer-openai.yml +1 -1
  169. package/examples/quickstart/support-agent.ossa.yaml +1 -1
  170. package/examples/spec-examples/audit-agent.yml +1 -1
  171. package/examples/spec-examples/chat-agent.yml +1 -1
  172. package/examples/spec-examples/compliance-agent.yml +1 -1
  173. package/examples/spec-examples/monitoring-agent.yml +1 -1
  174. package/examples/spec-examples/workflow-agent.yml +1 -1
  175. package/examples/templates/ossa-compliance.yaml +1 -1
  176. package/examples/vercel/edge-agent.ossa.json +5 -4
  177. package/gl-code-quality-report.json +62 -0
  178. package/llms-ctx-full.txt +39 -0
  179. package/llms-ctx.txt +39 -0
  180. package/llms.txt +47 -0
  181. package/openapi/github-sync.yaml +115 -0
  182. package/package.json +26 -4
  183. package/scripts/README.md +103 -0
  184. package/scripts/auto-rebase-mrs.ts +106 -0
  185. package/scripts/batch-dependabot.sh +57 -0
  186. package/scripts/configure-gitlab-branch-protection.ts +95 -0
  187. package/scripts/create-issue-helper.ts +238 -0
  188. package/scripts/create-milestone-issue.ts +73 -0
  189. package/scripts/eslint-to-codequality.cjs +34 -0
  190. package/scripts/fix-schema-formats.js +82 -0
  191. package/scripts/generate-agents-catalog.ts +77 -0
  192. package/scripts/generate-api-docs.ts +218 -0
  193. package/scripts/generate-cli-docs.ts +410 -0
  194. package/scripts/generate-config-docs.ts +109 -0
  195. package/scripts/generate-errors-docs.ts +76 -0
  196. package/scripts/generate-examples-docs.ts +99 -0
  197. package/scripts/generate-llms-ctx.sh +17 -0
  198. package/scripts/generate-schema-docs.ts +317 -0
  199. package/scripts/generate-types-docs.ts +48 -0
  200. package/scripts/lowercase-docs.ts +43 -0
  201. package/scripts/manage-milestone-mrs.ts +279 -0
  202. package/scripts/rebase-all-mrs.sh +75 -0
  203. package/scripts/sync-github-pr.sh +48 -0
  204. package/scripts/sync-version.js +32 -0
  205. package/scripts/sync-wiki.sh +50 -0
  206. package/scripts/validate-all.js +127 -0
  207. package/scripts/validate-schema.ts +2 -1
  208. package/spec/v0.2.4/ossa-0.2.4.schema.json +85 -208
  209. package/spec/v0.2.6/CHANGELOG.md +401 -0
  210. package/spec/v0.2.6/README.md +72 -0
  211. package/spec/v0.2.6/migrations/v0.2.3-to-v0.2.4.md +599 -0
  212. package/spec/v0.2.6/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  213. package/spec/{v0.2.4/ossa-0.2.4-dev.schema.json → v0.2.6/ossa-0.2.6.schema.json} +128 -38
  214. package/spec/v0.2.6/ossa-0.2.6.yaml +581 -0
  215. package/spec/v0.2.6-dev/CHANGELOG.md +164 -0
  216. package/spec/v0.2.6-dev/README.md +75 -0
  217. package/spec/v0.2.6-dev/migrations/v0.2.2-to-v0.2.3.md +343 -0
  218. package/spec/v0.2.6-dev/migrations/v0.2.3-to-v0.2.4.md +599 -0
  219. package/spec/v0.2.6-dev/ossa-0.2.5.yaml +581 -0
  220. package/spec/v0.2.6-dev/ossa-0.2.6-dev.yaml +448 -0
  221. package/spec/v0.2.7/core/agentgraph.md +324 -0
  222. package/spec/v0.2.7/resources/agentgraph.yaml +135 -0
  223. package/spec/v0.2.8/CHANGELOG.md +401 -0
  224. package/spec/v0.2.8/README.md +72 -0
  225. package/spec/v0.2.8/migrations/v0.2.3-to-v0.2.4.md +599 -0
  226. package/spec/v0.2.8/migrations/v0.2.5-RC-to-v0.2.6.md +65 -0
  227. package/spec/v0.2.8/migrations/v0.2.6-to-v0.2.8.md +81 -0
  228. package/spec/v0.2.8/ossa-0.2.8.schema.json +3153 -0
  229. package/spec/v0.2.8/ossa-0.2.8.yaml +581 -0
  230. package/test-results/junit.xml +299 -0
  231. package/.kiro/specs/agent-buildkit-templates/design.md +0 -495
  232. package/.kiro/specs/agent-buildkit-templates/requirements.md +0 -165
  233. package/.kiro/specs/kiro-ide-supercharger/README.md +0 -202
  234. package/.kiro/specs/kiro-ide-supercharger/design.md +0 -1005
  235. package/.kiro/specs/kiro-ide-supercharger/requirements.md +0 -141
  236. package/.kiro/specs/kiro-ide-supercharger/tasks.md +0 -507
  237. package/bin/validate-ossa-0.2.5-RC.ts +0 -244
  238. package/docs/issue-19-completion-summary.md +0 -648
  239. package/docs/issue-19-validation.md +0 -351
  240. package/scripts/lib/exec.ts +0 -37
  241. package/scripts/lib/file-ops.ts +0 -58
  242. package/scripts/lib/version.ts +0 -83
  243. package/website/.lighthouserc.ts +0 -24
  244. package/website/.prettierrc +0 -10
  245. package/website/Dockerfile +0 -30
  246. package/website/app/about/page.tsx +0 -295
  247. package/website/app/blog/[slug]/page.tsx +0 -208
  248. package/website/app/blog/page.tsx +0 -249
  249. package/website/app/design-guide/page.tsx +0 -511
  250. package/website/app/docs/[[...slug]]/page.tsx +0 -847
  251. package/website/app/docs/core-concepts/project-structure/page.tsx +0 -349
  252. package/website/app/ecosystem/page.tsx +0 -375
  253. package/website/app/examples/page.tsx +0 -133
  254. package/website/app/globals.scss +0 -135
  255. package/website/app/layout.tsx +0 -106
  256. package/website/app/license/page.tsx +0 -183
  257. package/website/app/not-found.tsx +0 -18
  258. package/website/app/page.tsx +0 -474
  259. package/website/app/playground/page.tsx +0 -487
  260. package/website/app/robots.ts +0 -19
  261. package/website/app/rss.xml/route.ts +0 -74
  262. package/website/app/schema/page.tsx +0 -1001
  263. package/website/app/sitemap.ts +0 -56
  264. package/website/app/specification/page.tsx +0 -287
  265. package/website/components/InstallCommand.tsx +0 -96
  266. package/website/components/Logo.tsx +0 -97
  267. package/website/components/StructuredData.tsx +0 -65
  268. package/website/components/docs/DocsSearch.tsx +0 -104
  269. package/website/components/docs/DocsSidebar.tsx +0 -155
  270. package/website/components/docs/MarkdownContent.tsx +0 -401
  271. package/website/components/docs/VersionSelector.tsx +0 -105
  272. package/website/components/examples/ExamplesViewer.tsx +0 -293
  273. package/website/components/layout/Footer.tsx +0 -116
  274. package/website/components/layout/Header.tsx +0 -168
  275. package/website/components/schema/SchemaComponentsAccordion.tsx +0 -84
  276. package/website/components/schema/SchemaExplorer.tsx +0 -213
  277. package/website/content/blog/OpenAPI-AI-Agents-Standard.md +0 -285
  278. package/website/content/blog/Why-Formal-Standards-Matter-Now.md +0 -198
  279. package/website/content/blog/gitlab-kubernetes-agent-ecosystem.md +0 -286
  280. package/website/content/blog/introducing-ossa-framework.md +0 -328
  281. package/website/content/blog/ossa-production-results.md +0 -279
  282. package/website/content/blog/welcome-to-ossa.md +0 -43
  283. package/website/content/blog/why-ai-agents-need-open-standard.md +0 -98
  284. package/website/content/docs/00-HOME.md +0 -153
  285. package/website/content/docs/AIFlow-Framework-Integration-with-OSSA.md +0 -107
  286. package/website/content/docs/Examples.md +0 -71
  287. package/website/content/docs/OpenAPI-Extensions.md +0 -934
  288. package/website/content/docs/adapters/openai-adapter.md +0 -693
  289. package/website/content/docs/architecture/execution-flow.md +0 -335
  290. package/website/content/docs/architecture/multi-agent-systems.md +0 -737
  291. package/website/content/docs/architecture/overview.md +0 -121
  292. package/website/content/docs/architecture/stack-integration.md +0 -461
  293. package/website/content/docs/changelog.md +0 -246
  294. package/website/content/docs/contributing.md +0 -599
  295. package/website/content/docs/core-concepts/Project-Structure.md +0 -348
  296. package/website/content/docs/ecosystem/framework-support.md +0 -819
  297. package/website/content/docs/ecosystem/overview.md +0 -366
  298. package/website/content/docs/examples/AIFlow-Framework-Integration-with-OSSA.md +0 -107
  299. package/website/content/docs/examples/Migration-Guides.md +0 -214
  300. package/website/content/docs/for-audiences/Architects.md +0 -224
  301. package/website/content/docs/for-audiences/Developers.md +0 -220
  302. package/website/content/docs/for-audiences/Enterprises.md +0 -256
  303. package/website/content/docs/for-audiences/Students-Researchers.md +0 -122
  304. package/website/content/docs/getting-started/5-Minute-Overview.md +0 -85
  305. package/website/content/docs/getting-started/First-Agent.md +0 -196
  306. package/website/content/docs/getting-started/Hello-World.md +0 -184
  307. package/website/content/docs/getting-started/Installation.md +0 -155
  308. package/website/content/docs/getting-started/index.md +0 -92
  309. package/website/content/docs/getting-started/running-agents.md +0 -309
  310. package/website/content/docs/getting-started.md +0 -91
  311. package/website/content/docs/integrations/aiflow.md +0 -104
  312. package/website/content/docs/integrations/drupal.md +0 -105
  313. package/website/content/docs/migration-guides/00-INDEX.md +0 -76
  314. package/website/content/docs/migration-guides/README.md +0 -133
  315. package/website/content/docs/migration-guides/agent-schema-comparison.md +0 -232
  316. package/website/content/docs/migration-guides/anthropic-mcp-to-ossa.md +0 -1750
  317. package/website/content/docs/migration-guides/crewai-to-ossa.md +0 -274
  318. package/website/content/docs/migration-guides/drupal-eca-to-ossa.md +0 -2017
  319. package/website/content/docs/migration-guides/general-agent-schema.yml +0 -247
  320. package/website/content/docs/migration-guides/index.md +0 -133
  321. package/website/content/docs/migration-guides/langchain-to-ossa.md +0 -1714
  322. package/website/content/docs/migration-guides/langflow-to-ossa.md +0 -2075
  323. package/website/content/docs/migration-guides/migration-manifest.json +0 -64
  324. package/website/content/docs/migration-guides/openai-to-ossa.md +0 -1202
  325. package/website/content/docs/openapi-extensions/examples.md +0 -550
  326. package/website/content/docs/openapi-extensions/index.md +0 -551
  327. package/website/content/docs/openapi-extensions/operation-extensions.md +0 -457
  328. package/website/content/docs/openapi-extensions/root-extensions.md +0 -410
  329. package/website/content/docs/ossa-compliant-badge.md +0 -251
  330. package/website/content/docs/pre-release/index.md +0 -175
  331. package/website/content/docs/quick-reference.md +0 -17
  332. package/website/content/docs/readme.md +0 -35
  333. package/website/content/docs/schema-reference/agent-spec.md +0 -406
  334. package/website/content/docs/schema-reference/autonomy.md +0 -568
  335. package/website/content/docs/schema-reference/constraints.md +0 -543
  336. package/website/content/docs/schema-reference/index.md +0 -176
  337. package/website/content/docs/schema-reference/llm-config.md +0 -445
  338. package/website/content/docs/schema-reference/observability.md +0 -654
  339. package/website/content/docs/schema-reference/ossa-manifest.md +0 -309
  340. package/website/content/docs/schema-reference/taxonomy.md +0 -509
  341. package/website/content/docs/schema-reference/tools.md +0 -628
  342. package/website/content/docs/templates/blog-post.md +0 -43
  343. package/website/content/docs/use-cases/00-index.md +0 -395
  344. package/website/content/docs/use-cases/cicd-code-review.md +0 -1236
  345. package/website/content/docs/use-cases/customer-support.md +0 -1234
  346. package/website/content/docs/use-cases/enterprise-compliance.md +0 -1208
  347. package/website/content/docs/use-cases/research-multi-agent.md +0 -1161
  348. package/website/content/docs/versioning.md +0 -288
  349. package/website/lib/version.ts +0 -35
  350. package/website/lib/versions.json +0 -78
  351. package/website/next.config.ts +0 -18
  352. package/website/nginx.conf +0 -32
  353. package/website/package-lock.json +0 -9679
  354. package/website/package.json +0 -59
  355. package/website/postcss.config.mjs +0 -9
  356. package/website/scripts/fetch-versions.js +0 -166
  357. package/website/scripts/generate-examples-index.js +0 -163
  358. package/website/scripts/merge-docs-to-wiki.ts +0 -207
  359. package/website/scripts/sync-version.js +0 -72
  360. package/website/scripts/sync-wiki.ts +0 -322
  361. package/website/scripts/upload-wiki.ts +0 -199
  362. package/website/styles/_variables.scss +0 -36
  363. package/website/tailwind.config.ts +0 -136
  364. /package/dist/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
  365. /package/spec/v0.2.4/{ossa-0.2.4-dev.yaml → ossa-0.2.4.yaml} +0 -0
@@ -1,104 +0,0 @@
1
- # AIFlow Framework Integration with OSSA
2
-
3
- ## Overview
4
-
5
- AIFlow is a Python-based social agent framework that enables personality-driven, emotionally intelligent AI agents for autonomous social media content generation. This integration demonstrates how AIFlow agents are wrapped in OSSA 1.0 manifests for Kubernetes orchestration and deployment through agent-buildkit.
6
-
7
- For complete integration analysis, see: [agent-buildkit AIFlow Integration Guide](https://github.com/blueflyio/openstandardagents/wiki/AIFlow-Integration-with-OSSA-BuildKit-and-K-Agent)
8
-
9
- ## Core Components
10
-
11
- ### OSSA Manifest
12
-
13
- **Location**: [agent-buildkit/examples/aiflow-integration/social-agent-aiflow.ossa.yaml](https://github.com/blueflyio/openstandardagents/blob/development/examples/aiflow-integration/social-agent-aiflow.ossa.yaml)
14
-
15
- The manifest defines the agent's identity, runtime configuration, capabilities, and deployment requirements. It conforms to OSSA 1.0 specification.
16
-
17
- **Key Manifest Sections**:
18
-
19
- - **Agent Identity**: `social-agent-aiflow`, version 1.0.0, role: chat
20
- - **Runtime**: Docker image `aiflow/agent:1.0.0`, Python 3.12+, resource requirements
21
- - **Capabilities**: `generate_post`, `generate_response` with defined schemas
22
- - **Dependencies**: Required integration with `agent-brain` for cognitive functions
23
- - **Environment**: Required secrets for Anthropic API, Twitter API, Telegram Bot, PostgreSQL
24
-
25
- ### OpenAPI Specification
26
-
27
- **Location**: [agent-buildkit/openapi/aiflow-agent.openapi.yml](https://github.com/blueflyio/openstandardagents/blob/development/openapi/aiflow-agent.openapi.yml)
28
-
29
- The OpenAPI 3.1 specification defines the REST API interface for the AIFlow agent, including:
30
- - FastAPI bridge endpoints for AIFlow Sia runtime
31
- - Request/response schemas for all capabilities
32
- - Kubernetes metadata extensions (x-k-agent) for orchestration
33
- - Health check endpoints and observability metrics
34
-
35
- ### OSSA Schema
36
-
37
- **Location**: [OSSA/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json](https://github.com/blueflyio/openstandardagents/blob/development/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json)
38
-
39
- JSON Schema definition for OSSA 1.0 manifest validation. All agent manifests must conform to this schema.
40
-
41
- ## Validation
42
-
43
- ### OSSA Manifest Validation
44
-
45
- Validate the manifest against OSSA 1.0 schema:
46
-
47
- ```yaml
48
- ossa validate examples/aiflow-integration/social-agent-aiflow.ossa.yaml
49
- ```
50
-
51
- This checks:
52
- - Schema compliance against OSSA 1.0 specification
53
- - Required fields and type correctness
54
- - Capability schema definitions
55
- - Dependency declarations
56
- - Environment variable definitions
57
-
58
- ### OpenAPI Specification Validation
59
-
60
- Validate OpenAPI spec with strict mode and K-Agent metadata checks:
61
-
62
- ```yaml
63
- buildkit openapi validate --spec openapi/aiflow-agent.openapi.yml --strict
64
- ```
65
-
66
- This validates:
67
- - OpenAPI 3.1 syntax and semantics
68
- - x-k-agent extension metadata for Kubernetes
69
- - Endpoint schemas match OSSA capability definitions
70
- - Health check endpoint compliance
71
-
72
- ## Deployment
73
-
74
- Deploy via agent-buildkit orchestration:
75
-
76
- ```yaml
77
- buildkit orchestrate deploy --manifest examples/aiflow-integration/social-agent-aiflow.ossa.yaml
78
- ```
79
-
80
- This generates Kubernetes manifests and deploys the agent with:
81
- - Rolling deployment strategy
82
- - Horizontal Pod Autoscaling (HPA)
83
- - Health checks and readiness probes
84
- - Service account and RBAC configuration
85
- - ConfigMap for character definitions
86
- - Persistent volume for memory database
87
-
88
- ## Integration Architecture
89
-
90
- 1. **OSSA Manifest** → Defines agent structure and requirements
91
- 2. **OpenAPI Spec** → REST API contract with K8s metadata
92
- 3. **FastAPI Bridge** → Wraps AIFlow Sia runtime in REST API
93
- 4. **BuildKit Deployment** → Generates and applies K8s manifests
94
- 5. **Runtime Orchestration** → Kubernetes manages agent lifecycle
95
-
96
- ## Resources
97
-
98
- - **AIFlow Repository**: https://github.com/AIFlow-agent/AIFlow-Agent
99
- - **OSSA Project**: [openapi-ai-agents-standard](https://github.com/blueflyio/openstandardagents)
100
- - **Integration Guide**: [agent-buildkit Wiki](https://github.com/blueflyio/openstandardagents/wiki/AIFlow-Integration-with-OSSA-BuildKit-and-K-Agent)
101
- - **OSSA Specification Schema**: [OSSA 1.0 Schema](https://github.com/blueflyio/openstandardagents/blob/development/spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json)
102
- - **Example Manifest**: [social-agent-aiflow.ossa.yaml](https://github.com/blueflyio/openstandardagents/blob/development/examples/aiflow-integration/social-agent-aiflow.ossa.yaml)
103
- - **OpenAPI Spec**: [aiflow-agent.openapi.yml](https://github.com/blueflyio/openstandardagents/blob/development/openapi/aiflow-agent.openapi.yml)
104
-
@@ -1,105 +0,0 @@
1
- ---
2
- title: "Drupal Integration"
3
- ---
4
-
5
- # Drupal Integration
6
-
7
- Integrate OSSA agents with Drupal's LLM Platform.
8
-
9
- ## Overview
10
-
11
- The OSSA Drupal modules provide:
12
- - Agent management UI
13
- - Workflow orchestration
14
- - CrewAI integration
15
- - Marketplace for agents
16
-
17
- ## Available Modules
18
-
19
- | Module | Description |
20
- |--------|-------------|
21
- | ai_agents_ossa | Core OSSA integration |
22
- | ai_agents_orchestra | Workflow orchestration |
23
- | ai_agents_crewai | CrewAI framework bridge |
24
- | ai_agents_marketplace | Agent marketplace |
25
- | ai_agents_huggingface | HuggingFace models |
26
-
27
- ## Installation
28
-
29
- ### Via Composer
30
-
31
- ```bash
32
- composer require drupal/ai_agents_ossa
33
- drush en ai_agents_ossa
34
- ```
35
-
36
- ### Configuration
37
-
38
- 1. Go to `/admin/config/ai/agents`
39
- 2. Configure LLM provider credentials
40
- 3. Import OSSA manifests
41
-
42
- ## Creating Agents in Drupal
43
-
44
- ### Using the UI
45
-
46
- 1. Navigate to `/admin/content/agents`
47
- 2. Click "Add Agent"
48
- 3. Upload OSSA manifest or configure inline
49
-
50
- ### Using Drush
51
-
52
- ```bash
53
- # Import agent from manifest
54
- drush ai:agent:import path/to/agent.ossa.yaml
55
-
56
- # List agents
57
- drush ai:agent:list
58
-
59
- # Run agent
60
- drush ai:agent:run my-agent "Hello"
61
- ```
62
-
63
- ## Workflow Orchestration
64
-
65
- The `ai_agents_orchestra` module enables multi-agent workflows:
66
-
67
- ```yaml
68
- # workflow.ossa.yaml
69
- apiVersion: ossa/v0.2.x
70
- kind: AgentGraph
71
-
72
- metadata:
73
- name: support-workflow
74
-
75
- spec:
76
- agents:
77
- - ref: triage-agent
78
- - ref: resolver-agent
79
- edges:
80
- - from: triage-agent
81
- to: resolver-agent
82
- process: sequential
83
- ```
84
-
85
- ## ECA Integration
86
-
87
- OSSA agents work with Drupal's ECA (Event-Condition-Action):
88
-
89
- - Trigger agents on content events
90
- - Use agent responses in conditions
91
- - Chain multiple agents
92
-
93
- ## API Endpoints
94
-
95
- | Endpoint | Method | Description |
96
- |----------|--------|-------------|
97
- | `/api/agents` | GET | List agents |
98
- | `/api/agents/{id}/run` | POST | Run agent |
99
- | `/api/agents/{id}/status` | GET | Agent status |
100
-
101
- ## Next Steps
102
-
103
- - [OSSA Manifest Reference](/docs/schema-reference)
104
- - [Orchestra Module Docs](https://github.com/blueflyio/drupal/ai_agents_orchestra)
105
- - [CrewAI Integration](/docs/migration-guides/crewai-to-ossa)
@@ -1,76 +0,0 @@
1
- ---
2
- title: Migration Guides
3
- description: Migrate from existing AI frameworks to OSSA
4
- weight: 1
5
- ---
6
-
7
- # Migration Guides
8
-
9
- Comprehensive guides for migrating from popular AI agent frameworks to OSSA (Open Standard for Scalable Agents).
10
-
11
- ## Available Guides
12
-
13
- ### 🤖 Framework Migrations
14
-
15
- - **[Anthropic MCP to OSSA](./anthropic-mcp-to-ossa.md)** - Extend MCP servers with OSSA for production features
16
- - **[CrewAI to OSSA](./crewai-to-ossa.md)** - Migrate CrewAI crews to OSSA orchestration
17
- - **[LangChain to OSSA](./langchain-to-ossa.md)** - Convert LangChain agents to OSSA agents
18
- - **[Langflow to OSSA](./langflow-to-ossa.md)** - Transform visual flows into OSSA manifests
19
- - **[OpenAI to OSSA](./openai-to-ossa.md)** - Migrate OpenAI Assistants API to OSSA
20
-
21
- ### 🔧 Platform Migrations
22
-
23
- - **[Drupal ECA to OSSA](./drupal-eca-to-ossa.md)** - Convert Drupal automation rules to OSSA agents
24
-
25
- ## Migration Overview
26
-
27
- All OSSA migrations share common patterns:
28
-
29
- ### 1. Assessment Phase
30
- - Inventory existing agents/workflows
31
- - Map components to OSSA equivalents
32
- - Identify production requirements
33
-
34
- ### 2. Design Phase
35
- - Create OSSA agent manifests
36
- - Define capability schemas
37
- - Plan workflow execution
38
-
39
- ### 3. Implementation Phase
40
- - Implement agent logic
41
- - Add monitoring and policies
42
- - Configure deployment
43
-
44
- ### 4. Testing Phase
45
- - Unit test capabilities
46
- - Integration test workflows
47
- - Validate performance
48
-
49
- ### 5. Deployment Phase
50
- - Deploy to target environment
51
- - Configure monitoring
52
- - Run smoke tests
53
-
54
- ## Why Migrate to OSSA?
55
-
56
- ### Production Features
57
- - ✅ **Multi-Protocol Support** - HTTP, gRPC, WebSocket, MCP, A2A
58
- - ✅ **Enterprise Monitoring** - Traces, metrics, logs, health checks
59
- - ✅ **Kubernetes Native** - Deploy and scale on K8s
60
- - ✅ **OpenAPI Integration** - REST APIs for all agents
61
- - ✅ **Compliance Ready** - ISO42001, SOC2, GDPR support
62
-
63
- ### Framework Advantages
64
- - 🔓 **No Vendor Lock-in** - Use any LLM provider
65
- - 🌐 **Multi-Runtime** - Local, Docker, K8s, serverless
66
- - 🔌 **Interoperable** - Works with existing frameworks
67
- - 📊 **Observable** - Built-in monitoring and tracing
68
- - 🔒 **Secure** - Enterprise security and policies
69
-
70
- ## Getting Help
71
-
72
- - **Documentation**: [OSSA Wiki](https://github.com/blueflyio/openstandardagents/wiki/home)
73
- - **Issues**: [GitHub Issues](https://github.com/blueflyio/openstandardagents/issues)
74
- - **Discord**: [OSSA Community](https://github.com/blueflyio/openstandardagents/discussions)
75
-
76
- Ready to migrate? Choose your framework above and get started!
@@ -1,133 +0,0 @@
1
- ---
2
- title: "README"
3
- ---
4
-
5
- # Migration Guides
6
-
7
- Comprehensive guides for migrating to or extending with OSSA (Open Standards for Scalable Agents).
8
-
9
- ## Available Guides
10
-
11
- ### 1. [Anthropic MCP to OSSA](./Anthropic-MCP-to-OSSA.md)
12
- **Extend Anthropic Model Context Protocol servers with OSSA**
13
-
14
- - **Target Audience:** MCP server developers, Claude Desktop users
15
- - **Complexity:** Intermediate
16
- - **Time to Complete:** 2-4 hours
17
- - **Key Benefits:**
18
- - Keep MCP compatibility
19
- - Add HTTP/REST API support
20
- - Enable production monitoring
21
- - Deploy to Kubernetes
22
- - Multi-protocol access (MCP + OpenAPI + A2A)
23
-
24
- **Topics Covered:**
25
- - MCP servers → OSSA agents
26
- - MCP tools → OSSA capabilities
27
- - MCP resources → OSSA data sources
28
- - Dual-mode implementation (stdio + HTTP)
29
- - Integration patterns
30
- - 3 complete before/after examples
31
-
32
- ---
33
-
34
- ### 2. [LangChain to OSSA](./LangChain-to-OSSA.md)
35
- **Migrate Python LangChain agents to OSSA specification**
36
-
37
- - **Target Audience:** LangChain developers, Python AI engineers
38
- - **Complexity:** Intermediate to Advanced
39
- - **Time to Complete:** 4-8 hours
40
- - **Key Benefits:**
41
- - Language-agnostic deployment
42
- - Better orchestration
43
- - Production-ready infrastructure
44
- - Multi-framework support
45
-
46
- ---
47
-
48
- ## Quick Decision Guide
49
-
50
- **Choose the right guide based on your current stack:**
51
-
52
- ```
53
- Have MCP servers? → Use "Anthropic MCP to OSSA"
54
- ├─ Already working in Claude Desktop?
55
- │ └─ Keep MCP, add OSSA for production features
56
-
57
- Have LangChain agents? → Use "LangChain to OSSA"
58
- ├─ Python-based AI workflows?
59
- │ └─ Migrate to OSSA for better orchestration
60
-
61
- Starting fresh? → Check Getting Started guide
62
- └─ Use OSSA from day one
63
- ```
64
-
65
- ## Common Scenarios
66
-
67
- ### Scenario 1: "I have MCP servers for Claude Desktop"
68
- → **Use:** [Anthropic MCP to OSSA](./Anthropic-MCP-to-OSSA.md)
69
- - Extend with HTTP API
70
- - Add monitoring/metrics
71
- - Deploy to production
72
-
73
- ### Scenario 2: "I have LangChain Python agents"
74
- → **Use:** [LangChain to OSSA](./LangChain-to-OSSA.md)
75
- - Migrate to TypeScript/Node.js
76
- - Add multi-protocol support
77
- - Enable agent orchestration
78
-
79
- ### Scenario 3: "I want to expose my agent via multiple protocols"
80
- → **Use:** [Anthropic MCP to OSSA](./Anthropic-MCP-to-OSSA.md)
81
- - MCP for Claude Desktop
82
- - OpenAPI for REST clients
83
- - A2A for agent-to-agent communication
84
-
85
- ## Migration Roadmap
86
-
87
- ```
88
- 1. Assessment (1-2 hours)
89
- ├─ Inventory existing agents/servers
90
- ├─ Identify required features
91
- └─ Choose migration guide
92
-
93
- 2. Planning (2-4 hours)
94
- ├─ Map existing functionality to OSSA
95
- ├─ Design agent manifest
96
- └─ Plan deployment strategy
97
-
98
- 3. Implementation (4-8 hours)
99
- ├─ Create OSSA agent structure
100
- ├─ Migrate business logic
101
- ├─ Configure bridges (MCP, OpenAPI, etc.)
102
- └─ Add monitoring
103
-
104
- 4. Testing (2-4 hours)
105
- ├─ Test all protocols
106
- ├─ Verify backward compatibility
107
- └─ Load testing
108
-
109
- 5. Deployment (2-4 hours)
110
- ├─ Deploy to target environment
111
- ├─ Configure monitoring
112
- └─ Update client configurations
113
- ```
114
-
115
- ## Support
116
-
117
- - **Documentation:** `/Users/flux423/Sites/LLM/agent-buildkit/docs/`
118
- - **Examples:** `/Users/flux423/Sites/LLM/agent-buildkit/.agents/`
119
- - **OSSA Spec:** [OSSA Complete Reference](../OSSA-COMPLETE-AGENT-REFERENCE.md)
120
- - **BuildKit CLI:** `buildkit agents --help`
121
-
122
- ## Contributing
123
-
124
- Found an issue or want to add a migration guide?
125
-
126
- 1. Create an issue: [GitLab Issues](https://github.com/blueflyio/documentation/-/issues)
127
- 2. Submit a merge request with your guide
128
- 3. Follow the existing structure and format
129
-
130
- ---
131
-
132
- **Last Updated:** 2025-11-10
133
- **Maintained By:** Agent BuildKit Team
@@ -1,232 +0,0 @@
1
- # Agent Schema Comparison: GitLab Duo Agent vs General Agent
2
-
3
- ## Overview
4
-
5
- This document compares the GitLab Duo Agent API schema with a generalized agent schema to highlight the differences, similarities, and architectural approaches.
6
-
7
- ## 1. Core Agent Entity Comparison
8
-
9
- ### GitLab Duo Agent (CLIAgent)
10
- ```yaml
11
- CLIAgent:
12
- type: object
13
- properties:
14
- id: string (uuid)
15
- project_id: integer
16
- service_account_id: string
17
- service_account_username: string
18
- flow_id: string (uuid)
19
- status: [active, inactive, error]
20
- last_invocation: string (date-time, nullable)
21
- total_invocations: integer (default: 0)
22
- created_at: string (date-time)
23
- ```
24
-
25
- ### General Agent
26
- ```yaml
27
- Agent:
28
- type: object
29
- properties:
30
- id: string (uuid)
31
- name: string
32
- description: string
33
- agent_type: [cli, web, chat, workflow, autonomous]
34
- status: [active, inactive, paused, error, training]
35
- capabilities: array of strings
36
- configuration: object (model, provider, temperature, max_tokens)
37
- permissions: array of strings
38
- created_at: string (date-time)
39
- updated_at: string (date-time)
40
- last_activity: string (date-time)
41
- metadata: object
42
- ```
43
-
44
- ## 2. Key Differences
45
-
46
- ### A. Scope and Purpose
47
- - **GitLab Duo Agent**: Highly specialized for GitLab integration, focused on CLI agents that work within GitLab projects
48
- - **General Agent**: Universal design for various agent types (CLI, web, chat, workflow, autonomous)
49
-
50
- ### B. Integration Context
51
- - **GitLab Duo Agent**:
52
- - Tightly coupled with GitLab projects (`project_id`)
53
- - Uses GitLab service accounts for authentication
54
- - Linked to specific AI flows (`flow_id`)
55
- - Designed for GitLab-specific triggers (issue comments, MR comments, epic comments)
56
-
57
- - **General Agent**:
58
- - Platform-agnostic design
59
- - Generic permission system
60
- - Self-contained configuration
61
- - Supports various trigger types (manual, scheduled, event-based, API calls, webhooks)
62
-
63
- ### C. Status Management
64
- - **GitLab Duo Agent**: Simple 3-state system (`active`, `inactive`, `error`)
65
- - **General Agent**: More comprehensive 5-state system (`active`, `inactive`, `paused`, `error`, `training`)
66
-
67
- ### D. Capabilities Model
68
- - **GitLab Duo Agent**: Implicit capabilities through flow types (code_generation, code_review, etc.)
69
- - **General Agent**: Explicit capabilities array with predefined skill types
70
-
71
- ## 3. Execution Model Comparison
72
-
73
- ### GitLab Duo Agent Execution
74
- ```yaml
75
- InvokeCLIAgentRequest:
76
- required:
77
- - task_description
78
- - trigger_context
79
- properties:
80
- task_description: string
81
- trigger_context:
82
- trigger_type: [issue_comment, merge_request_comment, epic_comment]
83
- issue_iid: integer
84
- merge_request_iid: integer
85
- epic_id: integer
86
- comment_id: integer
87
- mentioned_by_user: string
88
-
89
- AgentInvocationResult:
90
- properties:
91
- invocation_id: string (uuid)
92
- status: [accepted, running, completed, failed]
93
- pipeline_id: integer (nullable)
94
- response_comment_id: integer (nullable)
95
- error_message: string (nullable)
96
- ```
97
-
98
- ### General Agent Execution
99
- ```yaml
100
- AgentExecution:
101
- properties:
102
- execution_id: string (uuid)
103
- agent_id: string (uuid)
104
- task:
105
- description: string
106
- input_data: object
107
- context: object
108
- status: [pending, running, completed, failed, cancelled]
109
- result:
110
- output: string
111
- artifacts: array
112
- metrics: object
113
- logs: array of log objects
114
- started_at: string (date-time)
115
- completed_at: string (date-time)
116
- duration_ms: integer
117
- ```
118
-
119
- ### Key Execution Differences
120
- - **GitLab Duo**: Focused on GitLab-specific responses (pipeline creation, comment responses)
121
- - **General Agent**: Generic execution with comprehensive logging and metrics
122
- - **GitLab Duo**: Simpler status tracking
123
- - **General Agent**: More detailed execution tracking with duration and metrics
124
-
125
- ## 4. Flow vs Agent Architecture
126
-
127
- ### GitLab Duo: Flow-Centric Architecture
128
- ```yaml
129
- AIFlow:
130
- properties:
131
- id: string (uuid)
132
- project_id: integer
133
- name: string
134
- description: string
135
- config_path: string
136
- flow_type: [code_generation, code_review, issue_analysis, merge_request_analysis, documentation_generation, testing_assistance, custom]
137
- ai_provider: [anthropic_claude, openai_codex, gitlab_managed]
138
- configuration: object (model, temperature, max_tokens, use_gitlab_managed_credentials)
139
- environment_variables: array
140
- status: [active, inactive, error]
141
- created_at: string (date-time)
142
- updated_at: string (date-time)
143
- ```
144
-
145
- ### General Agent: Agent-Centric Architecture
146
- ```yaml
147
- Agent:
148
- # Direct agent capabilities and configuration
149
- # No separate flow concept - agents contain their own capabilities
150
- ```
151
-
152
- ### Architectural Difference
153
- - **GitLab Duo**: Separates AI capabilities (flows) from execution agents (CLI agents)
154
- - **General Agent**: Combines capabilities and execution in a single agent entity
155
-
156
- ## 5. Trigger System Comparison
157
-
158
- ### GitLab Duo Triggers
159
- ```yaml
160
- FlowTrigger:
161
- properties:
162
- id: string (uuid)
163
- project_id: integer
164
- name: string
165
- service_account_id: string
166
- config_path: string
167
- event_types: [issue_comment_created, merge_request_comment_created, epic_comment_created]
168
- status: [active, inactive]
169
- created_at: string (date-time)
170
- ```
171
-
172
- ### General Agent Triggers
173
- ```yaml
174
- AgentTrigger:
175
- properties:
176
- id: string (uuid)
177
- agent_id: string (uuid)
178
- name: string
179
- trigger_type: [manual, scheduled, event_based, api_call, webhook]
180
- event_config:
181
- events: array
182
- conditions: object
183
- schedule:
184
- cron_expression: string
185
- timezone: string
186
- status: [active, inactive]
187
- created_at: string (date-time)
188
- last_triggered: string (date-time, nullable)
189
- ```
190
-
191
- ### Trigger Differences
192
- - **GitLab Duo**: Limited to GitLab-specific events, project-scoped
193
- - **General Agent**: Universal trigger types with scheduling support
194
- - **GitLab Duo**: Simple event configuration
195
- - **General Agent**: Complex event conditions and scheduling
196
-
197
- ## 6. Advanced Features
198
-
199
- ### General Agent Exclusive Features
200
- 1. **Agent Skills**: Modular capability system with input/output schemas
201
- 2. **Agent Memory**: Memory management with different memory types and embeddings
202
- 3. **Comprehensive Logging**: Structured logging with multiple levels
203
- 4. **Metrics and Performance**: Execution duration and performance tracking
204
- 5. **Metadata System**: Flexible metadata for extensibility
205
-
206
- ### GitLab Duo Exclusive Features
207
- 1. **GitLab Integration**: Deep integration with GitLab projects and service accounts
208
- 2. **AI Gateway**: Managed AI provider credentials through GitLab
209
- 3. **Environment Variables**: Project-specific environment variable management
210
- 4. **Pipeline Integration**: Direct CI/CD pipeline creation and management
211
-
212
- ## 7. Summary
213
-
214
- ### GitLab Duo Agent Schema Strengths
215
- - **Specialized**: Optimized for GitLab ecosystem integration
216
- - **Practical**: Focused on real-world GitLab automation scenarios
217
- - **Integrated**: Seamless connection with GitLab authentication and authorization
218
- - **Production-Ready**: Designed for actual deployment in GitLab environments
219
-
220
- ### General Agent Schema Strengths
221
- - **Universal**: Platform-agnostic design suitable for various environments
222
- - **Extensible**: Modular architecture with skills and memory systems
223
- - **Comprehensive**: Rich feature set for advanced agent capabilities
224
- - **Flexible**: Supports multiple agent types and execution patterns
225
-
226
- ### Architectural Philosophies
227
- - **GitLab Duo**: "Integration-first" - designed to work seamlessly within GitLab
228
- - **General Agent**: "Capability-first" - designed to maximize agent functionality
229
-
230
- ### Use Case Recommendations
231
- - **Use GitLab Duo Agent** when: Building GitLab-specific automation and AI assistants
232
- - **Use General Agent** when: Building universal agents that work across platforms or need advanced capabilities like memory, skills, and complex scheduling