@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
@@ -0,0 +1,62 @@
1
+ [
2
+ {
3
+ "description": "'options' is defined but never used. Allowed unused args must match /^_/u.",
4
+ "check_name": "@typescript-eslint/no-unused-vars",
5
+ "fingerprint": "2f9f79fe8e23387068b611520413b327",
6
+ "severity": "minor",
7
+ "location": {
8
+ "path": "src/cli/commands/setup.command.ts",
9
+ "lines": {
10
+ "begin": 214
11
+ }
12
+ }
13
+ },
14
+ {
15
+ "description": "'project' is assigned a value but never used.",
16
+ "check_name": "@typescript-eslint/no-unused-vars",
17
+ "fingerprint": "7402441c276d946f9420395c18052f97",
18
+ "severity": "minor",
19
+ "location": {
20
+ "path": "src/services/release-automation/webhook.service.ts",
21
+ "lines": {
22
+ "begin": 50
23
+ }
24
+ }
25
+ },
26
+ {
27
+ "description": "'project' is assigned a value but never used.",
28
+ "check_name": "@typescript-eslint/no-unused-vars",
29
+ "fingerprint": "71675c76efa40f112f4d1fa38384c254",
30
+ "severity": "minor",
31
+ "location": {
32
+ "path": "src/services/release-automation/webhook.service.ts",
33
+ "lines": {
34
+ "begin": 117
35
+ }
36
+ }
37
+ },
38
+ {
39
+ "description": "'project' is assigned a value but never used.",
40
+ "check_name": "@typescript-eslint/no-unused-vars",
41
+ "fingerprint": "94df01d04ebcbbc20035fbde29eb21ea",
42
+ "severity": "minor",
43
+ "location": {
44
+ "path": "src/services/release-automation/webhook.service.ts",
45
+ "lines": {
46
+ "begin": 145
47
+ }
48
+ }
49
+ },
50
+ {
51
+ "description": "'options' is defined but never used. Allowed unused args must match /^_/u.",
52
+ "check_name": "@typescript-eslint/no-unused-vars",
53
+ "fingerprint": "400e20d0938c08417406c37c76e4f043",
54
+ "severity": "minor",
55
+ "location": {
56
+ "path": "src/services/runtime/claude/claude-adapter.ts",
57
+ "lines": {
58
+ "begin": 268
59
+ }
60
+ }
61
+ }
62
+ ]
@@ -0,0 +1,39 @@
1
+ <project title="Open Standard for Scalable Agents (OSSA)" summary="OSSA is a vendor-neutral, open specification for defining, deploying, and orchestrating AI agents across platforms. It provides a standardized schema for agent capabilities, triggers, outputs, and lifecycle management integrated with GitLab Ultimate and Duo Platform.">Key features:
2
+ - Vendor-neutral agent definitions using YAML schemas
3
+ - GitLab Duo Platform integration with 12 specialized agents
4
+ - Kubernetes-native deployment with GitOps
5
+ - Multi-agent orchestration with meta-orchestrator
6
+ - Self-healing automation across 8 healing agents
7
+ - AgentFlow lifecycle with custom fields
8
+ - Semantic versioning and milestone-driven releases<core specification><doc title="OSSA Schema v0.2.8" desc="Complete agent definition schema with capabilities, triggers, and outputs"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="AgentFlow Lifecycle" desc="9-state workflow (Triage → To Do → In Progress → Done/Canceled)"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Custom Fields" desc="8 fields for agent coordination (agent_assigned, agent_status, commit_type, priority, release_type)"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Bot Waves" desc="5-wave orchestration model for parallel agent execution"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc></core specification><agents><doc title="12 OSSA Agents Registry" desc="Canonical list (wiki-aggregator, ts-prod, ts-local, ossa-local, native-local, ml-prod, ml-local, infra-prod, gitlab-lib-ci, gitlab-lib-local, drupal-prod, drupal-local)"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Meta-Orchestrator" desc="Agent that manages all other agents with routing logic and wave coordination"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Wiki Healer" desc="Autonomous documentation agent with continuous wiki sync"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Security Healer" desc="Vulnerability scanning with SAST, DAST, dependency, secret, and container scanning"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Test Generator" desc="Coverage-driven test generation with property-based testing"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc></agents><integration><doc title="GitLab Duo Platform" desc="Complete integration with Issue-to-MR flow, Software Development flow, and Security Analyst"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="AutoDevOps" desc="Auto Build, Test, Deploy, Security scanning, Review Apps, and Release Evidence"><!doctype html><html lang=en-us dir=ltr><head><script src=https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js></script><script src=https://cdn.cookielaw.org/scripttemplates/otSDKStub.js data-domain-script=7f944245-c5cd-4eed-a90e-dd955adfdd08></script><script type=text/javascript>function OptanonWrapper(){}</script><script>const callback=(e)=>{for(const t of e)t.type==="childList"&&t.addedNodes.forEach(e=>{e.nodeName==="IMG"&&document.querySelectorAll('img:not([src^="http"]):not([data-ot-ignore])').forEach(e=>{e.setAttribute("data-ot-ignore","")})})},config={attributes:!0,childList:!0,subtree:!0,attributeFilter:["src"]},observer=new MutationObserver(callback);observer.observe(document.documentElement,config)</script><script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","GTM-NJXWQL"),gtag("consent","default",{analytics_storage:"granted",ad_storage:"granted",functionality_storage:"granted",wait_for_update:500}),gtag("consent","default",{analytics_storage:"denied",ad_storage:"denied",functionality_storage:"denied",region:["AT","BE","BG","HR","CY","CZ","DK","EE","FI","FR","DE","GR","HU","IE","IT","LV","LT","LU","MT","NL","PL","PT","RO","SK","SI","ES","SE","IS","LI","NO","GB","PE","RU"],wait_for_update:500}),window.geofeed=e=>{dataLayer.push({event:"OneTrustCountryLoad",oneTrustCountryId:e.country.toString()})};const json=document.createElement("script");json.setAttribute("src","https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location/geofeed"),document.head.appendChild(json)</script><meta charset=utf-8><meta name=viewport content="width=device-width"><title>Auto DevOps | GitLab Docs</title><link rel=icon href=/favicon.ico sizes=any><link rel=icon href=/favicon.svg type=image/svg+xml><link rel=apple-touch-icon href=/apple-touch-icon.png><link rel=manifest href=/manifests/manifest.webmanifest><meta name=theme-color content="#FC6D26"><link rel=canonical href=https://docs.gitlab.com/topics/autodevops/><link rel=alternate hreflang=en-us href=https://docs.gitlab.com/topics/autodevops/><link rel=alternate hreflang=x-default href=https://docs.gitlab.com/topics/autodevops/><meta name=description content="Automated DevOps, language detection, deployment, and customization."><script type=application/ld+json>{"@context":"https://schema.org","@type":"WebSite","name":"GitLab Docs","url":"https://docs.gitlab.com/"}</script><link rel=preload href=/gitlab_ui/fonts/GitLabSans.woff2 type=font/woff2 as=font crossorigin><link rel=prefetch href=/gitlab_ui/fonts/GitLabSans-Italic.woff2 crossorigin><link rel=prefetch href=/gitlab_ui/fonts/GitLabMono.woff2 crossorigin><link rel=stylesheet href=/gitlab_ui/ui/index.css><link rel=stylesheet href=/vite/main.css><link rel=stylesheet href=/css/syntax-dark.min.css id=syntax-dark-theme><link rel=stylesheet href=/css/syntax-light.min.css id=syntax-light-theme><script>(function(){const p="gitlab-docs-theme",g="gitlab-docs-layout",e={LIGHT:"light",DARK:"dark",AUTO:"auto"},i={FIXED:"fixed",FLUID:"fluid"},d="light",f="fixed";let r=!1;const t=localStorage?.getItem(p),m=localStorage?.getItem(g),l=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?e.DARK:e.LIGHT;function h(){return t&&(t===e.LIGHT||t===e.DARK)?t:(t===e.AUTO&&(r=!0),l||d)}function u(){return m===i.FLUID?i.FLUID:f}const s=h(),c=u(),n=document.documentElement;n.classList.remove("gl-dark","gl-light"),n.classList.add(s===e.DARK?"gl-dark":"gl-light"),c===i.FLUID&&(n.classList.add("fluid"),n.classList.remove("fixed"));const a=document.getElementById("syntax-dark-theme"),o=document.getElementById("syntax-light-theme");a&&o&&(s===e.DARK?(a.disabled=!1,o.disabled=!0):(a.disabled=!0,o.disabled=!1)),window.__initialTheme=r?e.AUTO:s,window.__initialLayout=c})()</script><meta name=gitlab_docs_base_url content="/"><meta name=gitlab_docs_page_owner data-stage=Verify data-group="Runner Core"><meta class=elastic name=gitlab_docs_version content="18.7"><meta class=elastic name=gitlab_docs_section content="use_gitlab"><meta class=elastic name=gitlab_docs_breadcrumbs content="Use GitLab › Use CI/CD to build your application"><script>window.pageMetadata={trail:[{path:"user/",title:"Use GitLab"},{path:"topics/build_your_application/",title:"Use CI/CD to build your application"},{path:"topics/autodevops/",title:"Auto DevOps"}]}</script><meta name=gitlab_docs_legacy_path content="/ee/topics/autodevops/index.html"><meta name=gitlab_docs_hugo_launch_version content="17.9"><script>const ELASTIC_CLOUD_ID="gitlab-docs-website:dXMtY2VudHJhbDEuZ2NwLmNsb3VkLmVzLmlvJDQwZTQyYTQzMTJiZjQyMzNiMzBiZTg0MTU5YjlkNmE1JGMxODg4Y2U5OTY0YzQzZjc5ZjQ1YTk5NDZmMjI0ODg0",ELASTIC_KEY="cDFpLWJaSUJXVHBqWWI4VGZKN3M6eENBSjl4WDRSRnlCUW94ajRQazhLQQ==",ELASTIC_INDEX="search-gitlab-docs-hugo"</script><script type=module src=/vite/elastic_search.js></script><script type=module src=/vite/history.js></script><script>const FS_IDENTIFIER="AIzaSyCLdi3jHHjkmLji9D8uj_RNPMHcdrYoIW4",RECAPTCHA_PUBLIC_KEY="6Le4R3UrAAAAALsIlK_siq0_UhPD-0rD-ImF1gfO"</script><meta name=google-site-verification content="AcGSBNaKDWnLgcYotlVibGy6STm2Y6_KJSaRxrA90xY"><meta name=google-site-verification content="6eFQOFLxYAer08ROqc3I-SAi44F9NmvH7PrUUBR3oCI"><meta name=google-site-verification content="xAUTWp3CDg-tU1LVVwsM9OrVhLR7L3SmiyKzkOuPNos"><meta name=google-site-verification content="F0zzwaMpiyWFcPQ1Lqu18qN3EnuQsqFXbySl_29yvHs"><meta name=google-site-verification content="nwo1bVaU0t9TZxZyM-aOI6-CofaH9GRL-uBPbdREWgc"><meta name=google-site-verification content="rWoHrtHEmIX0t28oOb1ZEDMYZb_EZA6rr6ZOl5otEPI"><meta name=google-site-verification content="fSxr8-uslxcuFL0N-oECp3Tm0RPNEGX97wbdayKOEL8"><meta name=google-site-verification content="ISxyLVnZqU8oY3jwrK7EO9o-2DOTvLJwPse7bZz6yhs"><meta name=google-site-verification content="x1WspIvz3ZHqS0gezfX_P-qiRDOeP2Oyrd68zrU2ErI"><meta name=google-site-verification content="DfXB2Za52GT3zs_vuLIAL4Mi3M3K4qxXcg7MAs0CUqo"><meta name=google-site-verification content="BCEBC2LC7A1NzO9Com1oBrWK88tV_QXfUL0i9mwXPL0"><meta name=google-site-verification content="a2lNcHMorfS43aoISjZt5_BBPo-H1UaTKMQdBgZO9iY"><meta name=google-site-verification content="0s16pP9MelY6wDHRf-izXb5pwLU01IogP-Uc_e8f3GU"><meta name=google-site-verification content="H474RNof35Xp8fLg02fZbg9Dzxdtfch6vtcjzpmUraU"><meta name=google-site-verification content="E0FlhpgBGeE7d1pQ6amdcIWPMDLDeu15-HLQVoDTguE"><meta name=google-site-verification content="opQd7_rXtPy-pX5CO_XZiztzeQEsXnB3j6Y1_dZAizA"><meta name=google-site-verification content="06Kq4AoXdmBOjOAkbPvnYGtSxnn4Q9QBqEO55PLlw5c"><meta name=google-site-verification content="djBBokRFSWV_VRlSE51V5TZSPzMC6hml5l-Sb22WglE"><meta name=google-site-verification content="UOW6nOsvbyMeIySuamzbws4kNC_WqehamWfoxxtKjZ8"><meta name=google-site-verification content="hXU1Gsdba74DUbvbdUHRl9o0cQeiwXIhAdIllOG6p8E"><meta name=google-site-verification content="YFeHIAPk9lE76ubVMeq4P0sQVnzo2-a4k1oU_bPY8yE"><meta name=google-site-verification content="h8ICI4eDkvXmYaGDuLTLoWuXnLn-KUkChqYB-roMRsw"><meta name=google-site-verification content="9QW7feFNlCpMLPm7vAWEU-v14vdzb0Bb3RAk-8e_a18"><meta name=google-site-verification content="26kXLBOjaYRb2UwzWTDl1I1nzA2NxMunhp7SUtxGV6E"><meta name=google-site-verification content="jr3C8t6vKGPyN9GV3esdHY_xGYyQaUNznIl-Un2RObA"><meta name=google-site-verification content="WdlBpRU0ec1ieKqrTY_772OhG23FY45VQ4Lv9DyLJ_Y"><meta name=google-site-verification content="n9i6B9q4Xjr_etK2nQGZH1msoo7vIv9SXV8SQLOUA7c"><meta name=zd-site-verification content="ony3w7hk1vs6tfyrc51mld"><meta name=zd-site-verification content="gtuq65qdzt6n31viazi6hj"></head><body data-elastic-exclude><nav data-ga-section=header data-elastic-exclude><div class="header-wrapper gl-w-full gl-fixed gl-z-4"><div class=header><div class="header-top gl-flex gl-items-center"><a href=#skipTarget class="gl-sr-only skip-link">Skip to main content</a>
9
+ <a class=navbar-logo href=/><span class=gl-sr-only>Go to GitLab Docs homepage</span></a><div class="mobile-header gl-w-full gl-text-base"><div class=mobile-header-overlay></div><div class="header-right collapse gl-z-4 gl-border-t lg:gl-border-0"><div class="search-wrapper lg:gl-ml-4 lg:gl-grow"><div class="js-elastic-search-form gl-spinner-container"><span role=status aria-label=Loading class="gl-ml-3 gl-align-text-bottom! gl-spinner gl-spinner gl-spinner-sm"></span></div></div><div class="gl-flex gl-flex-col gl-gap-3 gl-mt-5 lg:gl-mt-0 lg:gl-flex-row lg:gl-items-center gl-ml-auto"><a class="whats-new gl-button btn-default btn-default-tertiary gl-hidden lg:gl-block" href=https://about.gitlab.com/releases/categories/releases/ target=_blank rel="noopener noreferrer">What's new?</a><div data-vue-app=versions-menu></div><div data-vue-app=appearance-toggle></div><div class="gl-flex gl-justify-evenly lg:gl-justify-normal gl-items-center gl-gap-5"><a class="whats-new gl-button btn-default btn-default-tertiary gl-w-full lg:gl-hidden hover:gl-no-underline" href=https://about.gitlab.com/releases/categories/releases/ target=_blank rel="noopener noreferrer">What's new?</a>
10
+ <a class="free-trial-btn cta-button gl-button btn-confirm gl-w-full hover:gl-no-underline" href="https://gitlab.com/-/trial_registrations/new?glm_source=docs.gitlab.com&amp;amp;glm_content=navigation-cta-docs" target=_blank rel="noopener noreferrer" role=button>Get free trial</a></div></div></div></div><button class="navbar-toggle gl-button btn-default lg:gl-hidden" data-toggle=collapse data-target=.header-right>
11
+ <span class=navbar-toggle-icon></span>
12
+ <span class=gl-sr-only>Toggle menu</span></button></div><div class="header-bottom gl-border-t lg:gl-border-b"><ul class="subheader-menu gl-hidden lg:gl-flex gl-list-none gl-text-base gl-space-x-5 gl-py-4 gl-pl-0 gl-mb-0"><li><a href=/user/ class=active>Use GitLab</a></li><li><a href=/user/gitlab_duo/>GitLab Duo</a></li><li><a href=/api/>Extend</a></li><li><a href=/install/>Install</a></li><li><a href=/administration/>Administer</a></li><li><a href=/subscriptions/>Subscribe</a></li><li><a href=/development/>Contribute</a></li><li><a href=/solutions/>Solutions</a></li></ul></div></div></div></nav><main data-ga-section=content-body><div data-vue-app=version-banner class="vue-loading gl-sticky gl-z-2 archive-banner"></div><div class="template-single gl-flex gl-h-full"><div data-vue-app=sidebar-menu data-ga-section=side-nav class=sidebar-container></div><div data-pagefind-body class=main-content><div class=docs-content><div class="gl-flex gl-h-5 gl-items-center gl-my-6"><div data-vue-app=open-sidebar></div><div data-vue-app=breadcrumb-nav></div></div><hr class="gl-border-t gl-px-5 lg:gl-hidden"><div class="gl-pt-4 gl-mt-4 lg:gl-pt-0 lg:gl-mt-0 lg:gl-border-t-0"><h1 id=skipTarget class=gl-mb-6>Auto DevOps</h1></div><div data-elastic-include><div class="availability gl-pl-4 gl-mb-5"><ul class="gl-list-none gl-p-0 gl-m-0"><li><span class=gl-font-bold>Tier</span>: Free, Premium, Ultimate</li><li><span class=gl-font-bold>Offering</span>: GitLab.com, GitLab Self-Managed, GitLab Dedicated</li></ul></div><p>Auto DevOps turns your code into production-ready applications without the usual configuration overhead.
13
+ The entire DevOps lifecycle is pre-configured using industry best practices. Start with the defaults
14
+ to ship quickly, then customize when you need more control. No complex configuration files or deep
15
+ DevOps expertise is required.</p><p>With Auto DevOps you get:</p><ul><li>CI/CD pipelines that automatically detect your language and framework</li><li>Built-in security scanning to find vulnerabilities before they reach production</li><li>Code quality and performance testing on every commit</li><li>Ready-to-use review apps for previewing changes in a live environment</li><li>Quick deployments to Kubernetes clusters</li><li>Progressive deployment strategies that reduce risk and downtime</li></ul><p><i class="fa fa-youtube-play youtube" aria-hidden=true></i>
16
+ For an introduction to Auto DevOps, watch <a href=https://youtu.be/0Tc0YYBxqi4>Auto DevOps</a>.</p><h2 id=auto-devops-features>Auto DevOps features</h2><p>Auto DevOps supports development during each of the <a href=/topics/autodevops/stages/>DevOps stages</a>.</p><table><thead><tr><th>Stage</th><th>Auto DevOps feature</th></tr></thead><tbody><tr><td>Build</td><td><a href=/topics/autodevops/stages/#auto-build>Auto Build</a></td></tr><tr><td>Build</td><td><a href=/topics/autodevops/stages/#auto-dependency-scanning>Auto Dependency Scanning</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-test>Auto Test</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-browser-performance-testing>Auto Browser Performance Testing</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-code-intelligence>Auto Code Intelligence</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-code-quality>Auto Code Quality</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-container-scanning>Auto container scanning</a></td></tr><tr><td>Deploy</td><td><a href=/topics/autodevops/stages/#auto-review-apps>Auto Review Apps</a></td></tr><tr><td>Deploy</td><td><a href=/topics/autodevops/stages/#auto-deploy>Auto Deploy</a></td></tr><tr><td>Secure</td><td><a href=/topics/autodevops/stages/#auto-dast>Auto Dynamic Application Security Testing (DAST)</a></td></tr><tr><td>Secure</td><td><a href=/topics/autodevops/stages/#auto-sast>Auto static application security testing (SAST)</a></td></tr><tr><td>Secure</td><td><a href=/topics/autodevops/stages/#auto-secret-detection>Auto Secret Detection</a></td></tr></tbody></table><h3 id=comparison-to-application-platforms-and-paas>Comparison to application platforms and PaaS</h3><p>Auto DevOps provides features often included in an application
17
+ platform or in a Platform as a Service (PaaS).</p><p>Inspired by <a href=https://www.heroku.com/>Heroku</a>, Auto DevOps goes beyond it
18
+ in multiple ways:</p><ul><li>Auto DevOps works with any Kubernetes cluster.</li><li>There is no additional cost.</li><li>You can use a cluster hosted by yourself or on any public cloud.</li><li>Auto DevOps offers an incremental graduation path. If you need to <a href=/topics/autodevops/customize/>customize</a>, start by changing the templates and evolve from there.</li></ul><h2 id=get-started-with-auto-devops>Get started with Auto DevOps</h2><p>To get started, you only need to <a href=/topics/autodevops/#enable-or-disable-auto-devops>enable Auto DevOps</a>.
19
+ This is enough to run an Auto DevOps pipeline to build and
20
+ test your application.</p><p>If you want to build, test, and deploy your app:</p><ol><li>View the <a href=/topics/autodevops/requirements/>requirements for deployment</a>.</li><li><a href=/topics/autodevops/#enable-or-disable-auto-devops>Enable Auto DevOps</a>.</li><li><a href=/topics/autodevops/#deploy-your-app-to-a-cloud-provider>Deploy your app to a cloud provider</a>.</li></ol><h3 id=enable-or-disable-auto-devops>Enable or disable Auto DevOps</h3><p>Auto DevOps runs pipelines automatically only if a <a href=/topics/autodevops/stages/#auto-build><code>Dockerfile</code> or matching buildpack</a> exists.</p><p>You can enable or disable Auto DevOps for a project or an entire group. Instance administrators
21
+ can also <a href=/administration/settings/continuous_integration/#configure-auto-devops-for-all-projects>set Auto DevOps as the default</a>
22
+ for all projects in an instance.</p><p>Before enabling Auto DevOps, consider <a href=/topics/autodevops/requirements/>preparing it for deployment</a>.
23
+ If you don&rsquo;t, Auto DevOps can build and test your app, but cannot deploy it.</p><h4 id=per-project>Per project</h4><p>To use Auto DevOps for individual projects, you can enable it in a
24
+ project-by-project basis. If you intend to use it for more projects,
25
+ you can enable it for a <a href=/topics/autodevops/#per-group>group</a> or an
26
+ <a href=/administration/settings/continuous_integration/#configure-auto-devops-for-all-projects>instance</a>.
27
+ This can save you the time of enabling it in each project.</p><p>Prerequisites:</p><ul><li>You must have at least the Maintainer role for the project.</li><li>Ensure your project does not have a <code>.gitlab-ci.yml</code> present. If present, your CI/CD configuration takes
28
+ precedence over the Auto DevOps pipeline.</li></ul><p>To enable Auto DevOps for a project:</p><ol><li>On the left sidebar, select <strong>Search or go to</strong> and find your project. If you&rsquo;ve <a href=/user/interface_redesign/#turn-new-navigation-on-or-off>turned on the new navigation</a>, this field is on the top bar.</li><li>Select <strong>Settings</strong> > <strong>CI/CD</strong>.</li><li>Expand <strong>Auto DevOps</strong>.</li><li>Select the <strong>Default to Auto DevOps pipeline</strong> checkbox.</li><li>Optional but recommended. Add the <a href=/topics/autodevops/requirements/#auto-devops-base-domain>base domain</a>.</li><li>Optional but recommended. Choose the <a href=/topics/autodevops/requirements/#auto-devops-deployment-strategy>deployment strategy</a>.</li><li>Select <strong>Save changes</strong>.</li></ol><p>GitLab triggers the Auto DevOps pipeline on the default branch.</p><p>To disable it, follow the same process and clear the
29
+ <strong>Default to Auto DevOps pipeline</strong> checkbox.</p><h4 id=per-group>Per group</h4><p>When you enable Auto DevOps for a group, the subgroups and
30
+ projects in that group inherit the configuration. You can save time by
31
+ enabling Auto DevOps for a group instead of enabling it for each
32
+ subgroup or project.</p><p>When enabled for a group, you can still disable Auto DevOps
33
+ for the subgroups and projects where you don&rsquo;t want to use it.</p><p>Prerequisites:</p><ul><li>You must have the Owner role for the group.</li></ul><p>To enable Auto DevOps for a group:</p><ol><li>On the left sidebar, select <strong>Search or go to</strong> and find your group. If you&rsquo;ve <a href=/user/interface_redesign/#turn-new-navigation-on-or-off>turned on the new navigation</a>, this field is on the top bar.</li><li>Select <strong>Settings</strong> > <strong>CI/CD</strong>.</li><li>Expand <strong>Auto DevOps</strong>.</li><li>Select the <strong>Default to Auto DevOps pipeline</strong> checkbox.</li><li>Select <strong>Save changes</strong>.</li></ol><p>To disable Auto DevOps for a group, follow the same process and
34
+ clear the <strong>Default to Auto DevOps pipeline</strong> checkbox.</p><p>After enabling Auto DevOps for a group, you can trigger the
35
+ Auto DevOps pipeline for any project that belongs to that group:</p><ol><li>On the left sidebar, select <strong>Search or go to</strong> and find your project. If you&rsquo;ve <a href=/user/interface_redesign/#turn-new-navigation-on-or-off>turned on the new navigation</a>, this field is on the top bar.</li><li>Make sure the project doesn&rsquo;t contain a <code>.gitlab-ci.yml</code> file.</li><li>Select <strong>Build</strong> > <strong>Pipelines</strong>.</li><li>To trigger the Auto DevOps pipeline, select <strong>New pipeline</strong>.</li></ol><h3 id=deploy-your-app-to-a-cloud-provider>Deploy your app to a cloud provider</h3><ul><li><a href=/topics/autodevops/cloud_deployments/auto_devops_with_gke/>Use Auto DevOps to deploy to a Kubernetes cluster on Google Kubernetes Engine (GKE)</a></li><li><a href=/topics/autodevops/cloud_deployments/auto_devops_with_eks/>Use Auto DevOps to deploy to a Kubernetes cluster on Amazon Elastic Kubernetes Service (EKS)</a></li><li><a href=/topics/autodevops/cloud_deployments/auto_devops_with_ec2/>Use Auto DevOps to deploy to EC2</a></li><li><a href=/topics/autodevops/cloud_deployments/auto_devops_with_ecs/>Use Auto DevOps to deploy to ECS</a></li></ul><h2 id=upgrade-auto-devops-dependencies-when-updating-gitlab>Upgrade Auto DevOps dependencies when updating GitLab</h2><p>When updating GitLab, you might need to upgrade Auto DevOps dependencies to
36
+ match your new GitLab version:</p><ul><li><a href=/topics/autodevops/upgrading_auto_deploy_dependencies/>Upgrading Auto DevOps resources</a>:<ul><li>Auto DevOps template.</li><li>Auto Deploy template.</li><li>Auto Deploy image.</li><li>Helm.</li><li>Kubernetes.</li><li>Environment variables.</li></ul></li><li><a href=/topics/autodevops/upgrading_postgresql/>Upgrading PostgreSQL</a>.</li></ul><h2 id=private-registry-support>Private registry support</h2><p>There is no guarantee that you can use a private container registry with Auto DevOps.</p><p>Instead, use the <a href=/user/packages/container_registry/>GitLab container registry</a> with Auto DevOps to
37
+ simplify configuration and prevent any unforeseen issues.</p><h2 id=install-applications-behind-a-proxy>Install applications behind a proxy</h2><p>The GitLab integration with Helm does not support installing applications when
38
+ behind a proxy.</p><p>If you want to do so, you must inject proxy settings into the
39
+ installation pods at runtime.</p><h2 id=related-topics>Related topics</h2><ul><li><a href=/ci/>Continuous methodologies</a></li><li><a href=https://docs.docker.com>Docker</a></li><li><a href=https://docs.gitlab.com/runner/>GitLab Runner</a></li><li><a href=https://helm.sh/docs/>Helm</a></li><li><a href=https://kubernetes.io/docs/home/>Kubernetes</a></li><li><a href=https://prometheus.io/docs/introduction/overview/>Prometheus</a></li></ul><h2 id=troubleshooting>Troubleshooting</h2><p>See <a href=/topics/autodevops/troubleshooting/>troubleshooting Auto DevOps</a>.</p></div><div data-vue-app=back-to-top-button></div></div><div class="feedback gl-min-h-8" data-ga-section=feedback data-elastic-exclude><div data-component=docs-feedback></div></div></div><aside class=sidebar-right><div data-ga-section=toc data-vue-app=toc></div></aside></div></main><footer data-ga-section=footer><section data-ga-section=footer><div id=footer class="footer-section container gl-grid gl-grid-cols-2 gl-grid-rows-3 gl-grid-rows-auto gl-gap-8 lg:gl-grid-cols-5 lg:gl-grid-rows-1 lg:gl-justify-items-center gl-px-8 gl-py-8 lg:gl-py-10"><div class="gl-col-span-2 lg:gl-col-span-1 gl-row-start-1"><div class="docs-title gl-flex gl-items-center"><a href=/><img src=/gitlab-logo-footer.svg alt="GitLab Docs logo" class=logo width=176 height=24></a></div><ul class="docs-social gl-list-none gl-flex"><li><a href=https://www.facebook.com/gitlab class=facebook><span class=gl-sr-only>Facebook</span></a></li><li><a href=https://www.linkedin.com/company/gitlab-com class=linkedin><span class=gl-sr-only>LinkedIn</span></a></li><li><a href=https://twitter.com/gitlab class=twitter><span class=gl-sr-only>Twitter</span></a></li><li><a href=https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg class=youtube><span class=gl-sr-only>YouTube</span></a></li></ul><a href=https://creativecommons.org/licenses/by-sa/4.0/ target=_blank rel="license noopener noreferrer" class=gl-mt-0><img src=/by-sa.svg alt="Creative Commons License" width=80 height=15></a></div><div class="gl-col-span-1 gl-row-start-2 lg:gl-row-start-1"><div class="footer-section-title gl-heading-3">Company</div><ul class="gl-list-none gl-p-0"><li><a href=https://about.gitlab.com/company/>About GitLab</a></li><li><a href=https://about.gitlab.com/pricing/>View pricing</a></li><li><a href=https://about.gitlab.com/free-trial/>Try GitLab for free</a></li></ul></div><div class="gl-col-span-1 gl-row-start-2 lg:gl-row-start-1"><div class="footer-section-title gl-heading-3">Feedback</div><ul class="gl-list-none gl-p-0"><li><a href=https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/topics/autodevops/_index.md>View page source</a></li><li><a href=https://gitlab.com/-/ide/project/gitlab-org/gitlab/edit/master/-/doc/topics/autodevops/_index.md>Edit in web IDE</a></li><li><a href=https://about.gitlab.com/community/contribute/>Contribute to GitLab</a></li><li><a href="https://gitlab.com/gitlab-org/gitlab/-/issues/new?issuable_template=Documentation">Suggest updates</a></li></ul></div><div class="gl-col-span-1 gl-row-start-3 lg:gl-row-start-1"><div class="footer-section-title gl-heading-3">Help & Community</div><ul class="gl-list-none gl-p-0"><li><a href=https://university.gitlab.com/pages/certifications>Get certified</a></li><li><a href=https://about.gitlab.com/support/>Get support</a></li><li><a href="https://forum.gitlab.com/new-topic?title=topic%20title&amp;body=topic%20body&amp;tags=docs-feedback">Post on the GitLab forum</a></li></ul></div><div class="gl-col-span-1 gl-row-start-3 lg:gl-row-start-1"><div class="footer-section-title gl-heading-3">Resources</div><ul class="gl-list-none gl-p-0"><li><a href=https://about.gitlab.com/terms/>Terms</a></li><li><a href=https://about.gitlab.com/privacy/>Privacy statement</a></li><li><a href=/legal/use_generative_ai/>Use of generative AI</a></li><li><a href=/legal/licensing_policy/>Acceptable use of user licenses</a></li><li><button id=ot-sdk-btn class=ot-sdk-show-settings></button></li></ul></div></div></section></footer><script type=module src=/vite/main.js></script><script async>(function(e,t,n,s,o){e[s]=e[s]||[],e[s].push({"gtm.start":(new Date).getTime(),event:"gtm.js"});var a=t.getElementsByTagName(n)[0],i=t.createElement(n),r=s!="dataLayer"?"&l="+s:"";i.async=!0,i.src="https://www.googletagmanager.com/gtm.js?id="+o+r,a.parentNode.insertBefore(i,a)})(window,document,"script","dataLayer","GTM-NJXWQL")</script><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NJXWQL" height=0 width=0 style=display:none;visibility:hidden></iframe></noscript><script async>(function(){var e,t=!1;function n(){t===!1&&(t=!0,Munchkin.init("194-VVC-221",{useBeaconAPI:!0}))}e=document.createElement("script"),e.type="text/javascript",e.async=!0,e.src="https://munchkin.marketo.net/munchkin.js",e.onreadystatechange=function(){(this.readyState=="complete"||this.readyState=="loaded")&&n()},e.onload=n,document.getElementsByTagName("head")[0].appendChild(e)})()</script><script async src=https://cdn.bizible.com/scripts/bizible.js></script><script async>_linkedin_partner_id="30694",window._linkedin_data_partner_ids=window._linkedin_data_partner_ids||[],window._linkedin_data_partner_ids.push(_linkedin_partner_id),function(){var t=document.getElementsByTagName("script")[0],e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src="https://snap.licdn.com/li.lms-analytics/insight.min.js",t.parentNode.insertBefore(e,t)}()</script><noscript><img height=1 width=1 style=display:none alt src="https://dc.ads.linkedin.com/collect/?pid=30694&fmt=gif"></noscript></body></html></doc><doc title="Release Automation" desc="Milestone-driven releases with semantic versioning and changelog generation"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Repository Audit" desc="Automated compliance checks across 10 categories"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc></integration><examples><doc title="OSSA Schema Examples" desc="35+ example agent definitions"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Healing Agents" desc="8 self-healing agent schemas (wiki, architecture, spec, infra, dependency, service-discovery, test, security)"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="GitLab Components" desc="Reusable CI/CD components for agent workflows"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc></examples><optional><doc title="Buildkit Integration" desc="Task queue orchestration with claim, heartbeat, and release commands"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Compliance Profiles" desc="FedRAMP, SOC2, ISO42001 compliance specifications"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Type System" desc="Formal OSSA type system specification"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Testing Framework" desc="AgentTest resource for agent validation"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc></optional></project>
package/llms-ctx.txt ADDED
@@ -0,0 +1,39 @@
1
+ <project title="Open Standard for Scalable Agents (OSSA)" summary="OSSA is a vendor-neutral, open specification for defining, deploying, and orchestrating AI agents across platforms. It provides a standardized schema for agent capabilities, triggers, outputs, and lifecycle management integrated with GitLab Ultimate and Duo Platform.">Key features:
2
+ - Vendor-neutral agent definitions using YAML schemas
3
+ - GitLab Duo Platform integration with 12 specialized agents
4
+ - Kubernetes-native deployment with GitOps
5
+ - Multi-agent orchestration with meta-orchestrator
6
+ - Self-healing automation across 8 healing agents
7
+ - AgentFlow lifecycle with custom fields
8
+ - Semantic versioning and milestone-driven releases<core specification><doc title="OSSA Schema v0.2.8" desc="Complete agent definition schema with capabilities, triggers, and outputs"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="AgentFlow Lifecycle" desc="9-state workflow (Triage → To Do → In Progress → Done/Canceled)"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Custom Fields" desc="8 fields for agent coordination (agent_assigned, agent_status, commit_type, priority, release_type)"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Bot Waves" desc="5-wave orchestration model for parallel agent execution"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc></core specification><agents><doc title="12 OSSA Agents Registry" desc="Canonical list (wiki-aggregator, ts-prod, ts-local, ossa-local, native-local, ml-prod, ml-local, infra-prod, gitlab-lib-ci, gitlab-lib-local, drupal-prod, drupal-local)"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Meta-Orchestrator" desc="Agent that manages all other agents with routing logic and wave coordination"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Wiki Healer" desc="Autonomous documentation agent with continuous wiki sync"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Security Healer" desc="Vulnerability scanning with SAST, DAST, dependency, secret, and container scanning"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Test Generator" desc="Coverage-driven test generation with property-based testing"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc></agents><integration><doc title="GitLab Duo Platform" desc="Complete integration with Issue-to-MR flow, Software Development flow, and Security Analyst"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="AutoDevOps" desc="Auto Build, Test, Deploy, Security scanning, Review Apps, and Release Evidence"><!doctype html><html lang=en-us dir=ltr><head><script src=https://cdn.cookielaw.org/consent/7f944245-c5cd-4eed-a90e-dd955adfdd08/OtAutoBlock.js></script><script src=https://cdn.cookielaw.org/scripttemplates/otSDKStub.js data-domain-script=7f944245-c5cd-4eed-a90e-dd955adfdd08></script><script type=text/javascript>function OptanonWrapper(){}</script><script>const callback=(e)=>{for(const t of e)t.type==="childList"&&t.addedNodes.forEach(e=>{e.nodeName==="IMG"&&document.querySelectorAll('img:not([src^="http"]):not([data-ot-ignore])').forEach(e=>{e.setAttribute("data-ot-ignore","")})})},config={attributes:!0,childList:!0,subtree:!0,attributeFilter:["src"]},observer=new MutationObserver(callback);observer.observe(document.documentElement,config)</script><script>window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments)}gtag("js",new Date),gtag("config","GTM-NJXWQL"),gtag("consent","default",{analytics_storage:"granted",ad_storage:"granted",functionality_storage:"granted",wait_for_update:500}),gtag("consent","default",{analytics_storage:"denied",ad_storage:"denied",functionality_storage:"denied",region:["AT","BE","BG","HR","CY","CZ","DK","EE","FI","FR","DE","GR","HU","IE","IT","LV","LT","LU","MT","NL","PL","PT","RO","SK","SI","ES","SE","IS","LI","NO","GB","PE","RU"],wait_for_update:500}),window.geofeed=e=>{dataLayer.push({event:"OneTrustCountryLoad",oneTrustCountryId:e.country.toString()})};const json=document.createElement("script");json.setAttribute("src","https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location/geofeed"),document.head.appendChild(json)</script><meta charset=utf-8><meta name=viewport content="width=device-width"><title>Auto DevOps | GitLab Docs</title><link rel=icon href=/favicon.ico sizes=any><link rel=icon href=/favicon.svg type=image/svg+xml><link rel=apple-touch-icon href=/apple-touch-icon.png><link rel=manifest href=/manifests/manifest.webmanifest><meta name=theme-color content="#FC6D26"><link rel=canonical href=https://docs.gitlab.com/topics/autodevops/><link rel=alternate hreflang=en-us href=https://docs.gitlab.com/topics/autodevops/><link rel=alternate hreflang=x-default href=https://docs.gitlab.com/topics/autodevops/><meta name=description content="Automated DevOps, language detection, deployment, and customization."><script type=application/ld+json>{"@context":"https://schema.org","@type":"WebSite","name":"GitLab Docs","url":"https://docs.gitlab.com/"}</script><link rel=preload href=/gitlab_ui/fonts/GitLabSans.woff2 type=font/woff2 as=font crossorigin><link rel=prefetch href=/gitlab_ui/fonts/GitLabSans-Italic.woff2 crossorigin><link rel=prefetch href=/gitlab_ui/fonts/GitLabMono.woff2 crossorigin><link rel=stylesheet href=/gitlab_ui/ui/index.css><link rel=stylesheet href=/vite/main.css><link rel=stylesheet href=/css/syntax-dark.min.css id=syntax-dark-theme><link rel=stylesheet href=/css/syntax-light.min.css id=syntax-light-theme><script>(function(){const p="gitlab-docs-theme",g="gitlab-docs-layout",e={LIGHT:"light",DARK:"dark",AUTO:"auto"},i={FIXED:"fixed",FLUID:"fluid"},d="light",f="fixed";let r=!1;const t=localStorage?.getItem(p),m=localStorage?.getItem(g),l=window.matchMedia&&window.matchMedia("(prefers-color-scheme: dark)").matches?e.DARK:e.LIGHT;function h(){return t&&(t===e.LIGHT||t===e.DARK)?t:(t===e.AUTO&&(r=!0),l||d)}function u(){return m===i.FLUID?i.FLUID:f}const s=h(),c=u(),n=document.documentElement;n.classList.remove("gl-dark","gl-light"),n.classList.add(s===e.DARK?"gl-dark":"gl-light"),c===i.FLUID&&(n.classList.add("fluid"),n.classList.remove("fixed"));const a=document.getElementById("syntax-dark-theme"),o=document.getElementById("syntax-light-theme");a&&o&&(s===e.DARK?(a.disabled=!1,o.disabled=!0):(a.disabled=!0,o.disabled=!1)),window.__initialTheme=r?e.AUTO:s,window.__initialLayout=c})()</script><meta name=gitlab_docs_base_url content="/"><meta name=gitlab_docs_page_owner data-stage=Verify data-group="Runner Core"><meta class=elastic name=gitlab_docs_version content="18.7"><meta class=elastic name=gitlab_docs_section content="use_gitlab"><meta class=elastic name=gitlab_docs_breadcrumbs content="Use GitLab › Use CI/CD to build your application"><script>window.pageMetadata={trail:[{path:"user/",title:"Use GitLab"},{path:"topics/build_your_application/",title:"Use CI/CD to build your application"},{path:"topics/autodevops/",title:"Auto DevOps"}]}</script><meta name=gitlab_docs_legacy_path content="/ee/topics/autodevops/index.html"><meta name=gitlab_docs_hugo_launch_version content="17.9"><script>const ELASTIC_CLOUD_ID="gitlab-docs-website:dXMtY2VudHJhbDEuZ2NwLmNsb3VkLmVzLmlvJDQwZTQyYTQzMTJiZjQyMzNiMzBiZTg0MTU5YjlkNmE1JGMxODg4Y2U5OTY0YzQzZjc5ZjQ1YTk5NDZmMjI0ODg0",ELASTIC_KEY="cDFpLWJaSUJXVHBqWWI4VGZKN3M6eENBSjl4WDRSRnlCUW94ajRQazhLQQ==",ELASTIC_INDEX="search-gitlab-docs-hugo"</script><script type=module src=/vite/elastic_search.js></script><script type=module src=/vite/history.js></script><script>const FS_IDENTIFIER="AIzaSyCLdi3jHHjkmLji9D8uj_RNPMHcdrYoIW4",RECAPTCHA_PUBLIC_KEY="6Le4R3UrAAAAALsIlK_siq0_UhPD-0rD-ImF1gfO"</script><meta name=google-site-verification content="AcGSBNaKDWnLgcYotlVibGy6STm2Y6_KJSaRxrA90xY"><meta name=google-site-verification content="6eFQOFLxYAer08ROqc3I-SAi44F9NmvH7PrUUBR3oCI"><meta name=google-site-verification content="xAUTWp3CDg-tU1LVVwsM9OrVhLR7L3SmiyKzkOuPNos"><meta name=google-site-verification content="F0zzwaMpiyWFcPQ1Lqu18qN3EnuQsqFXbySl_29yvHs"><meta name=google-site-verification content="nwo1bVaU0t9TZxZyM-aOI6-CofaH9GRL-uBPbdREWgc"><meta name=google-site-verification content="rWoHrtHEmIX0t28oOb1ZEDMYZb_EZA6rr6ZOl5otEPI"><meta name=google-site-verification content="fSxr8-uslxcuFL0N-oECp3Tm0RPNEGX97wbdayKOEL8"><meta name=google-site-verification content="ISxyLVnZqU8oY3jwrK7EO9o-2DOTvLJwPse7bZz6yhs"><meta name=google-site-verification content="x1WspIvz3ZHqS0gezfX_P-qiRDOeP2Oyrd68zrU2ErI"><meta name=google-site-verification content="DfXB2Za52GT3zs_vuLIAL4Mi3M3K4qxXcg7MAs0CUqo"><meta name=google-site-verification content="BCEBC2LC7A1NzO9Com1oBrWK88tV_QXfUL0i9mwXPL0"><meta name=google-site-verification content="a2lNcHMorfS43aoISjZt5_BBPo-H1UaTKMQdBgZO9iY"><meta name=google-site-verification content="0s16pP9MelY6wDHRf-izXb5pwLU01IogP-Uc_e8f3GU"><meta name=google-site-verification content="H474RNof35Xp8fLg02fZbg9Dzxdtfch6vtcjzpmUraU"><meta name=google-site-verification content="E0FlhpgBGeE7d1pQ6amdcIWPMDLDeu15-HLQVoDTguE"><meta name=google-site-verification content="opQd7_rXtPy-pX5CO_XZiztzeQEsXnB3j6Y1_dZAizA"><meta name=google-site-verification content="06Kq4AoXdmBOjOAkbPvnYGtSxnn4Q9QBqEO55PLlw5c"><meta name=google-site-verification content="djBBokRFSWV_VRlSE51V5TZSPzMC6hml5l-Sb22WglE"><meta name=google-site-verification content="UOW6nOsvbyMeIySuamzbws4kNC_WqehamWfoxxtKjZ8"><meta name=google-site-verification content="hXU1Gsdba74DUbvbdUHRl9o0cQeiwXIhAdIllOG6p8E"><meta name=google-site-verification content="YFeHIAPk9lE76ubVMeq4P0sQVnzo2-a4k1oU_bPY8yE"><meta name=google-site-verification content="h8ICI4eDkvXmYaGDuLTLoWuXnLn-KUkChqYB-roMRsw"><meta name=google-site-verification content="9QW7feFNlCpMLPm7vAWEU-v14vdzb0Bb3RAk-8e_a18"><meta name=google-site-verification content="26kXLBOjaYRb2UwzWTDl1I1nzA2NxMunhp7SUtxGV6E"><meta name=google-site-verification content="jr3C8t6vKGPyN9GV3esdHY_xGYyQaUNznIl-Un2RObA"><meta name=google-site-verification content="WdlBpRU0ec1ieKqrTY_772OhG23FY45VQ4Lv9DyLJ_Y"><meta name=google-site-verification content="n9i6B9q4Xjr_etK2nQGZH1msoo7vIv9SXV8SQLOUA7c"><meta name=zd-site-verification content="ony3w7hk1vs6tfyrc51mld"><meta name=zd-site-verification content="gtuq65qdzt6n31viazi6hj"></head><body data-elastic-exclude><nav data-ga-section=header data-elastic-exclude><div class="header-wrapper gl-w-full gl-fixed gl-z-4"><div class=header><div class="header-top gl-flex gl-items-center"><a href=#skipTarget class="gl-sr-only skip-link">Skip to main content</a>
9
+ <a class=navbar-logo href=/><span class=gl-sr-only>Go to GitLab Docs homepage</span></a><div class="mobile-header gl-w-full gl-text-base"><div class=mobile-header-overlay></div><div class="header-right collapse gl-z-4 gl-border-t lg:gl-border-0"><div class="search-wrapper lg:gl-ml-4 lg:gl-grow"><div class="js-elastic-search-form gl-spinner-container"><span role=status aria-label=Loading class="gl-ml-3 gl-align-text-bottom! gl-spinner gl-spinner gl-spinner-sm"></span></div></div><div class="gl-flex gl-flex-col gl-gap-3 gl-mt-5 lg:gl-mt-0 lg:gl-flex-row lg:gl-items-center gl-ml-auto"><a class="whats-new gl-button btn-default btn-default-tertiary gl-hidden lg:gl-block" href=https://about.gitlab.com/releases/categories/releases/ target=_blank rel="noopener noreferrer">What's new?</a><div data-vue-app=versions-menu></div><div data-vue-app=appearance-toggle></div><div class="gl-flex gl-justify-evenly lg:gl-justify-normal gl-items-center gl-gap-5"><a class="whats-new gl-button btn-default btn-default-tertiary gl-w-full lg:gl-hidden hover:gl-no-underline" href=https://about.gitlab.com/releases/categories/releases/ target=_blank rel="noopener noreferrer">What's new?</a>
10
+ <a class="free-trial-btn cta-button gl-button btn-confirm gl-w-full hover:gl-no-underline" href="https://gitlab.com/-/trial_registrations/new?glm_source=docs.gitlab.com&amp;amp;glm_content=navigation-cta-docs" target=_blank rel="noopener noreferrer" role=button>Get free trial</a></div></div></div></div><button class="navbar-toggle gl-button btn-default lg:gl-hidden" data-toggle=collapse data-target=.header-right>
11
+ <span class=navbar-toggle-icon></span>
12
+ <span class=gl-sr-only>Toggle menu</span></button></div><div class="header-bottom gl-border-t lg:gl-border-b"><ul class="subheader-menu gl-hidden lg:gl-flex gl-list-none gl-text-base gl-space-x-5 gl-py-4 gl-pl-0 gl-mb-0"><li><a href=/user/ class=active>Use GitLab</a></li><li><a href=/user/gitlab_duo/>GitLab Duo</a></li><li><a href=/api/>Extend</a></li><li><a href=/install/>Install</a></li><li><a href=/administration/>Administer</a></li><li><a href=/subscriptions/>Subscribe</a></li><li><a href=/development/>Contribute</a></li><li><a href=/solutions/>Solutions</a></li></ul></div></div></div></nav><main data-ga-section=content-body><div data-vue-app=version-banner class="vue-loading gl-sticky gl-z-2 archive-banner"></div><div class="template-single gl-flex gl-h-full"><div data-vue-app=sidebar-menu data-ga-section=side-nav class=sidebar-container></div><div data-pagefind-body class=main-content><div class=docs-content><div class="gl-flex gl-h-5 gl-items-center gl-my-6"><div data-vue-app=open-sidebar></div><div data-vue-app=breadcrumb-nav></div></div><hr class="gl-border-t gl-px-5 lg:gl-hidden"><div class="gl-pt-4 gl-mt-4 lg:gl-pt-0 lg:gl-mt-0 lg:gl-border-t-0"><h1 id=skipTarget class=gl-mb-6>Auto DevOps</h1></div><div data-elastic-include><div class="availability gl-pl-4 gl-mb-5"><ul class="gl-list-none gl-p-0 gl-m-0"><li><span class=gl-font-bold>Tier</span>: Free, Premium, Ultimate</li><li><span class=gl-font-bold>Offering</span>: GitLab.com, GitLab Self-Managed, GitLab Dedicated</li></ul></div><p>Auto DevOps turns your code into production-ready applications without the usual configuration overhead.
13
+ The entire DevOps lifecycle is pre-configured using industry best practices. Start with the defaults
14
+ to ship quickly, then customize when you need more control. No complex configuration files or deep
15
+ DevOps expertise is required.</p><p>With Auto DevOps you get:</p><ul><li>CI/CD pipelines that automatically detect your language and framework</li><li>Built-in security scanning to find vulnerabilities before they reach production</li><li>Code quality and performance testing on every commit</li><li>Ready-to-use review apps for previewing changes in a live environment</li><li>Quick deployments to Kubernetes clusters</li><li>Progressive deployment strategies that reduce risk and downtime</li></ul><p><i class="fa fa-youtube-play youtube" aria-hidden=true></i>
16
+ For an introduction to Auto DevOps, watch <a href=https://youtu.be/0Tc0YYBxqi4>Auto DevOps</a>.</p><h2 id=auto-devops-features>Auto DevOps features</h2><p>Auto DevOps supports development during each of the <a href=/topics/autodevops/stages/>DevOps stages</a>.</p><table><thead><tr><th>Stage</th><th>Auto DevOps feature</th></tr></thead><tbody><tr><td>Build</td><td><a href=/topics/autodevops/stages/#auto-build>Auto Build</a></td></tr><tr><td>Build</td><td><a href=/topics/autodevops/stages/#auto-dependency-scanning>Auto Dependency Scanning</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-test>Auto Test</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-browser-performance-testing>Auto Browser Performance Testing</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-code-intelligence>Auto Code Intelligence</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-code-quality>Auto Code Quality</a></td></tr><tr><td>Test</td><td><a href=/topics/autodevops/stages/#auto-container-scanning>Auto container scanning</a></td></tr><tr><td>Deploy</td><td><a href=/topics/autodevops/stages/#auto-review-apps>Auto Review Apps</a></td></tr><tr><td>Deploy</td><td><a href=/topics/autodevops/stages/#auto-deploy>Auto Deploy</a></td></tr><tr><td>Secure</td><td><a href=/topics/autodevops/stages/#auto-dast>Auto Dynamic Application Security Testing (DAST)</a></td></tr><tr><td>Secure</td><td><a href=/topics/autodevops/stages/#auto-sast>Auto static application security testing (SAST)</a></td></tr><tr><td>Secure</td><td><a href=/topics/autodevops/stages/#auto-secret-detection>Auto Secret Detection</a></td></tr></tbody></table><h3 id=comparison-to-application-platforms-and-paas>Comparison to application platforms and PaaS</h3><p>Auto DevOps provides features often included in an application
17
+ platform or in a Platform as a Service (PaaS).</p><p>Inspired by <a href=https://www.heroku.com/>Heroku</a>, Auto DevOps goes beyond it
18
+ in multiple ways:</p><ul><li>Auto DevOps works with any Kubernetes cluster.</li><li>There is no additional cost.</li><li>You can use a cluster hosted by yourself or on any public cloud.</li><li>Auto DevOps offers an incremental graduation path. If you need to <a href=/topics/autodevops/customize/>customize</a>, start by changing the templates and evolve from there.</li></ul><h2 id=get-started-with-auto-devops>Get started with Auto DevOps</h2><p>To get started, you only need to <a href=/topics/autodevops/#enable-or-disable-auto-devops>enable Auto DevOps</a>.
19
+ This is enough to run an Auto DevOps pipeline to build and
20
+ test your application.</p><p>If you want to build, test, and deploy your app:</p><ol><li>View the <a href=/topics/autodevops/requirements/>requirements for deployment</a>.</li><li><a href=/topics/autodevops/#enable-or-disable-auto-devops>Enable Auto DevOps</a>.</li><li><a href=/topics/autodevops/#deploy-your-app-to-a-cloud-provider>Deploy your app to a cloud provider</a>.</li></ol><h3 id=enable-or-disable-auto-devops>Enable or disable Auto DevOps</h3><p>Auto DevOps runs pipelines automatically only if a <a href=/topics/autodevops/stages/#auto-build><code>Dockerfile</code> or matching buildpack</a> exists.</p><p>You can enable or disable Auto DevOps for a project or an entire group. Instance administrators
21
+ can also <a href=/administration/settings/continuous_integration/#configure-auto-devops-for-all-projects>set Auto DevOps as the default</a>
22
+ for all projects in an instance.</p><p>Before enabling Auto DevOps, consider <a href=/topics/autodevops/requirements/>preparing it for deployment</a>.
23
+ If you don&rsquo;t, Auto DevOps can build and test your app, but cannot deploy it.</p><h4 id=per-project>Per project</h4><p>To use Auto DevOps for individual projects, you can enable it in a
24
+ project-by-project basis. If you intend to use it for more projects,
25
+ you can enable it for a <a href=/topics/autodevops/#per-group>group</a> or an
26
+ <a href=/administration/settings/continuous_integration/#configure-auto-devops-for-all-projects>instance</a>.
27
+ This can save you the time of enabling it in each project.</p><p>Prerequisites:</p><ul><li>You must have at least the Maintainer role for the project.</li><li>Ensure your project does not have a <code>.gitlab-ci.yml</code> present. If present, your CI/CD configuration takes
28
+ precedence over the Auto DevOps pipeline.</li></ul><p>To enable Auto DevOps for a project:</p><ol><li>On the left sidebar, select <strong>Search or go to</strong> and find your project. If you&rsquo;ve <a href=/user/interface_redesign/#turn-new-navigation-on-or-off>turned on the new navigation</a>, this field is on the top bar.</li><li>Select <strong>Settings</strong> > <strong>CI/CD</strong>.</li><li>Expand <strong>Auto DevOps</strong>.</li><li>Select the <strong>Default to Auto DevOps pipeline</strong> checkbox.</li><li>Optional but recommended. Add the <a href=/topics/autodevops/requirements/#auto-devops-base-domain>base domain</a>.</li><li>Optional but recommended. Choose the <a href=/topics/autodevops/requirements/#auto-devops-deployment-strategy>deployment strategy</a>.</li><li>Select <strong>Save changes</strong>.</li></ol><p>GitLab triggers the Auto DevOps pipeline on the default branch.</p><p>To disable it, follow the same process and clear the
29
+ <strong>Default to Auto DevOps pipeline</strong> checkbox.</p><h4 id=per-group>Per group</h4><p>When you enable Auto DevOps for a group, the subgroups and
30
+ projects in that group inherit the configuration. You can save time by
31
+ enabling Auto DevOps for a group instead of enabling it for each
32
+ subgroup or project.</p><p>When enabled for a group, you can still disable Auto DevOps
33
+ for the subgroups and projects where you don&rsquo;t want to use it.</p><p>Prerequisites:</p><ul><li>You must have the Owner role for the group.</li></ul><p>To enable Auto DevOps for a group:</p><ol><li>On the left sidebar, select <strong>Search or go to</strong> and find your group. If you&rsquo;ve <a href=/user/interface_redesign/#turn-new-navigation-on-or-off>turned on the new navigation</a>, this field is on the top bar.</li><li>Select <strong>Settings</strong> > <strong>CI/CD</strong>.</li><li>Expand <strong>Auto DevOps</strong>.</li><li>Select the <strong>Default to Auto DevOps pipeline</strong> checkbox.</li><li>Select <strong>Save changes</strong>.</li></ol><p>To disable Auto DevOps for a group, follow the same process and
34
+ clear the <strong>Default to Auto DevOps pipeline</strong> checkbox.</p><p>After enabling Auto DevOps for a group, you can trigger the
35
+ Auto DevOps pipeline for any project that belongs to that group:</p><ol><li>On the left sidebar, select <strong>Search or go to</strong> and find your project. If you&rsquo;ve <a href=/user/interface_redesign/#turn-new-navigation-on-or-off>turned on the new navigation</a>, this field is on the top bar.</li><li>Make sure the project doesn&rsquo;t contain a <code>.gitlab-ci.yml</code> file.</li><li>Select <strong>Build</strong> > <strong>Pipelines</strong>.</li><li>To trigger the Auto DevOps pipeline, select <strong>New pipeline</strong>.</li></ol><h3 id=deploy-your-app-to-a-cloud-provider>Deploy your app to a cloud provider</h3><ul><li><a href=/topics/autodevops/cloud_deployments/auto_devops_with_gke/>Use Auto DevOps to deploy to a Kubernetes cluster on Google Kubernetes Engine (GKE)</a></li><li><a href=/topics/autodevops/cloud_deployments/auto_devops_with_eks/>Use Auto DevOps to deploy to a Kubernetes cluster on Amazon Elastic Kubernetes Service (EKS)</a></li><li><a href=/topics/autodevops/cloud_deployments/auto_devops_with_ec2/>Use Auto DevOps to deploy to EC2</a></li><li><a href=/topics/autodevops/cloud_deployments/auto_devops_with_ecs/>Use Auto DevOps to deploy to ECS</a></li></ul><h2 id=upgrade-auto-devops-dependencies-when-updating-gitlab>Upgrade Auto DevOps dependencies when updating GitLab</h2><p>When updating GitLab, you might need to upgrade Auto DevOps dependencies to
36
+ match your new GitLab version:</p><ul><li><a href=/topics/autodevops/upgrading_auto_deploy_dependencies/>Upgrading Auto DevOps resources</a>:<ul><li>Auto DevOps template.</li><li>Auto Deploy template.</li><li>Auto Deploy image.</li><li>Helm.</li><li>Kubernetes.</li><li>Environment variables.</li></ul></li><li><a href=/topics/autodevops/upgrading_postgresql/>Upgrading PostgreSQL</a>.</li></ul><h2 id=private-registry-support>Private registry support</h2><p>There is no guarantee that you can use a private container registry with Auto DevOps.</p><p>Instead, use the <a href=/user/packages/container_registry/>GitLab container registry</a> with Auto DevOps to
37
+ simplify configuration and prevent any unforeseen issues.</p><h2 id=install-applications-behind-a-proxy>Install applications behind a proxy</h2><p>The GitLab integration with Helm does not support installing applications when
38
+ behind a proxy.</p><p>If you want to do so, you must inject proxy settings into the
39
+ installation pods at runtime.</p><h2 id=related-topics>Related topics</h2><ul><li><a href=/ci/>Continuous methodologies</a></li><li><a href=https://docs.docker.com>Docker</a></li><li><a href=https://docs.gitlab.com/runner/>GitLab Runner</a></li><li><a href=https://helm.sh/docs/>Helm</a></li><li><a href=https://kubernetes.io/docs/home/>Kubernetes</a></li><li><a href=https://prometheus.io/docs/introduction/overview/>Prometheus</a></li></ul><h2 id=troubleshooting>Troubleshooting</h2><p>See <a href=/topics/autodevops/troubleshooting/>troubleshooting Auto DevOps</a>.</p></div><div data-vue-app=back-to-top-button></div></div><div class="feedback gl-min-h-8" data-ga-section=feedback data-elastic-exclude><div data-component=docs-feedback></div></div></div><aside class=sidebar-right><div data-ga-section=toc data-vue-app=toc></div></aside></div></main><footer data-ga-section=footer><section data-ga-section=footer><div id=footer class="footer-section container gl-grid gl-grid-cols-2 gl-grid-rows-3 gl-grid-rows-auto gl-gap-8 lg:gl-grid-cols-5 lg:gl-grid-rows-1 lg:gl-justify-items-center gl-px-8 gl-py-8 lg:gl-py-10"><div class="gl-col-span-2 lg:gl-col-span-1 gl-row-start-1"><div class="docs-title gl-flex gl-items-center"><a href=/><img src=/gitlab-logo-footer.svg alt="GitLab Docs logo" class=logo width=176 height=24></a></div><ul class="docs-social gl-list-none gl-flex"><li><a href=https://www.facebook.com/gitlab class=facebook><span class=gl-sr-only>Facebook</span></a></li><li><a href=https://www.linkedin.com/company/gitlab-com class=linkedin><span class=gl-sr-only>LinkedIn</span></a></li><li><a href=https://twitter.com/gitlab class=twitter><span class=gl-sr-only>Twitter</span></a></li><li><a href=https://www.youtube.com/channel/UCnMGQ8QHMAnVIsI3xJrihhg class=youtube><span class=gl-sr-only>YouTube</span></a></li></ul><a href=https://creativecommons.org/licenses/by-sa/4.0/ target=_blank rel="license noopener noreferrer" class=gl-mt-0><img src=/by-sa.svg alt="Creative Commons License" width=80 height=15></a></div><div class="gl-col-span-1 gl-row-start-2 lg:gl-row-start-1"><div class="footer-section-title gl-heading-3">Company</div><ul class="gl-list-none gl-p-0"><li><a href=https://about.gitlab.com/company/>About GitLab</a></li><li><a href=https://about.gitlab.com/pricing/>View pricing</a></li><li><a href=https://about.gitlab.com/free-trial/>Try GitLab for free</a></li></ul></div><div class="gl-col-span-1 gl-row-start-2 lg:gl-row-start-1"><div class="footer-section-title gl-heading-3">Feedback</div><ul class="gl-list-none gl-p-0"><li><a href=https://gitlab.com/gitlab-org/gitlab/-/blob/master/doc/topics/autodevops/_index.md>View page source</a></li><li><a href=https://gitlab.com/-/ide/project/gitlab-org/gitlab/edit/master/-/doc/topics/autodevops/_index.md>Edit in web IDE</a></li><li><a href=https://about.gitlab.com/community/contribute/>Contribute to GitLab</a></li><li><a href="https://gitlab.com/gitlab-org/gitlab/-/issues/new?issuable_template=Documentation">Suggest updates</a></li></ul></div><div class="gl-col-span-1 gl-row-start-3 lg:gl-row-start-1"><div class="footer-section-title gl-heading-3">Help & Community</div><ul class="gl-list-none gl-p-0"><li><a href=https://university.gitlab.com/pages/certifications>Get certified</a></li><li><a href=https://about.gitlab.com/support/>Get support</a></li><li><a href="https://forum.gitlab.com/new-topic?title=topic%20title&amp;body=topic%20body&amp;tags=docs-feedback">Post on the GitLab forum</a></li></ul></div><div class="gl-col-span-1 gl-row-start-3 lg:gl-row-start-1"><div class="footer-section-title gl-heading-3">Resources</div><ul class="gl-list-none gl-p-0"><li><a href=https://about.gitlab.com/terms/>Terms</a></li><li><a href=https://about.gitlab.com/privacy/>Privacy statement</a></li><li><a href=/legal/use_generative_ai/>Use of generative AI</a></li><li><a href=/legal/licensing_policy/>Acceptable use of user licenses</a></li><li><button id=ot-sdk-btn class=ot-sdk-show-settings></button></li></ul></div></div></section></footer><script type=module src=/vite/main.js></script><script async>(function(e,t,n,s,o){e[s]=e[s]||[],e[s].push({"gtm.start":(new Date).getTime(),event:"gtm.js"});var a=t.getElementsByTagName(n)[0],i=t.createElement(n),r=s!="dataLayer"?"&l="+s:"";i.async=!0,i.src="https://www.googletagmanager.com/gtm.js?id="+o+r,a.parentNode.insertBefore(i,a)})(window,document,"script","dataLayer","GTM-NJXWQL")</script><noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NJXWQL" height=0 width=0 style=display:none;visibility:hidden></iframe></noscript><script async>(function(){var e,t=!1;function n(){t===!1&&(t=!0,Munchkin.init("194-VVC-221",{useBeaconAPI:!0}))}e=document.createElement("script"),e.type="text/javascript",e.async=!0,e.src="https://munchkin.marketo.net/munchkin.js",e.onreadystatechange=function(){(this.readyState=="complete"||this.readyState=="loaded")&&n()},e.onload=n,document.getElementsByTagName("head")[0].appendChild(e)})()</script><script async src=https://cdn.bizible.com/scripts/bizible.js></script><script async>_linkedin_partner_id="30694",window._linkedin_data_partner_ids=window._linkedin_data_partner_ids||[],window._linkedin_data_partner_ids.push(_linkedin_partner_id),function(){var t=document.getElementsByTagName("script")[0],e=document.createElement("script");e.type="text/javascript",e.async=!0,e.src="https://snap.licdn.com/li.lms-analytics/insight.min.js",t.parentNode.insertBefore(e,t)}()</script><noscript><img height=1 width=1 style=display:none alt src="https://dc.ads.linkedin.com/collect/?pid=30694&fmt=gif"></noscript></body></html></doc><doc title="Release Automation" desc="Milestone-driven releases with semantic versioning and changelog generation"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Repository Audit" desc="Automated compliance checks across 10 categories"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc></integration><examples><doc title="OSSA Schema Examples" desc="35+ example agent definitions"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="Healing Agents" desc="8 self-healing agent schemas (wiki, architecture, spec, infra, dependency, service-discovery, test, security)"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc><doc title="GitLab Components" desc="Reusable CI/CD components for agent workflows"><html><body>You are being <a href="https://gitlab.com/users/sign_in">redirected</a>.</body></html></doc></examples></project>
package/llms.txt ADDED
@@ -0,0 +1,47 @@
1
+ # Open Standard for Scalable Agents (OSSA)
2
+
3
+ > OSSA is a vendor-neutral, open specification for defining, deploying, and orchestrating AI agents across platforms. It provides a standardized schema for agent capabilities, triggers, outputs, and lifecycle management integrated with GitLab Ultimate and Duo Platform.
4
+
5
+ Key features:
6
+ - Vendor-neutral agent definitions using YAML schemas
7
+ - GitLab Duo Platform integration with 12 specialized agents
8
+ - Kubernetes-native deployment with GitOps
9
+ - Multi-agent orchestration with meta-orchestrator
10
+ - Self-healing automation across 8 healing agents
11
+ - AgentFlow lifecycle with custom fields
12
+ - Semantic versioning and milestone-driven releases
13
+
14
+ ## Core Specification
15
+
16
+ - [OSSA Schema v0.2.8](https://gitlab.com/blueflyio/openstandardagents/-/blob/main/spec/ossa-schema.yaml): Complete agent definition schema with capabilities, triggers, and outputs
17
+ - [AgentFlow Lifecycle](https://gitlab.com/blueflyio/openstandardagents/-/wikis/AgentFlow-Lifecycle): 9-state workflow (Triage → To Do → In Progress → Done/Canceled)
18
+ - [Custom Fields](https://gitlab.com/blueflyio/openstandardagents/-/wikis/Custom-Field-Enforcement): 8 fields for agent coordination (agent_assigned, agent_status, commit_type, priority, release_type)
19
+ - [Bot Waves](https://gitlab.com/blueflyio/openstandardagents/-/wikis/Specialized-Bot-Deployment): 5-wave orchestration model for parallel agent execution
20
+
21
+ ## Agents
22
+
23
+ - [12 OSSA Agents Registry](https://gitlab.com/blueflyio/openstandardagents/-/wikis/Specialized-Bot-Deployment): Canonical list (wiki-aggregator, ts-prod, ts-local, ossa-local, native-local, ml-prod, ml-local, infra-prod, gitlab-lib-ci, gitlab-lib-local, drupal-prod, drupal-local)
24
+ - [Meta-Orchestrator](https://gitlab.com/blueflyio/openstandardagents/-/issues/83): Agent that manages all other agents with routing logic and wave coordination
25
+ - [Wiki Healer](https://gitlab.com/blueflyio/openstandardagents/-/issues/75): Autonomous documentation agent with continuous wiki sync
26
+ - [Security Healer](https://gitlab.com/blueflyio/openstandardagents/-/issues/82): Vulnerability scanning with SAST, DAST, dependency, secret, and container scanning
27
+ - [Test Generator](https://gitlab.com/blueflyio/openstandardagents/-/issues/81): Coverage-driven test generation with property-based testing
28
+
29
+ ## Integration
30
+
31
+ - [GitLab Duo Platform](https://gitlab.com/blueflyio/openstandardagents/-/issues/73): Complete integration with Issue-to-MR flow, Software Development flow, and Security Analyst
32
+ - [AutoDevOps](https://docs.gitlab.com/topics/autodevops/): Auto Build, Test, Deploy, Security scanning, Review Apps, and Release Evidence
33
+ - [Release Automation](https://gitlab.com/blueflyio/openstandardagents/-/issues/74): Milestone-driven releases with semantic versioning and changelog generation
34
+ - [Repository Audit](https://gitlab.com/blueflyio/openstandardagents/-/issues/84): Automated compliance checks across 10 categories
35
+
36
+ ## Examples
37
+
38
+ - [OSSA Schema Examples](https://gitlab.com/blueflyio/openstandardagents/-/tree/main/examples): 35+ example agent definitions
39
+ - [Healing Agents](https://gitlab.com/blueflyio/openstandardagents/-/tree/main/schemas): 8 self-healing agent schemas (wiki, architecture, spec, infra, dependency, service-discovery, test, security)
40
+ - [GitLab Components](https://gitlab.com/blueflyio/agent-platform/gitlab_components): Reusable CI/CD components for agent workflows
41
+
42
+ ## Optional
43
+
44
+ - [Buildkit Integration](https://gitlab.com/blueflyio/openstandardagents/-/wikis/Buildkit): Task queue orchestration with claim, heartbeat, and release commands
45
+ - [Compliance Profiles](https://gitlab.com/blueflyio/openstandardagents/-/issues/71): FedRAMP, SOC2, ISO42001 compliance specifications
46
+ - [Type System](https://gitlab.com/blueflyio/openstandardagents/-/issues/70): Formal OSSA type system specification
47
+ - [Testing Framework](https://gitlab.com/blueflyio/openstandardagents/-/issues/72): AgentTest resource for agent validation
@@ -0,0 +1,115 @@
1
+ openapi: 3.1.0
2
+ info:
3
+ title: GitHub Sync API
4
+ version: 1.0.0
5
+ description: API for syncing GitHub PRs to GitLab
6
+
7
+ servers:
8
+ - url: http://localhost:3000
9
+ description: Development
10
+
11
+ paths:
12
+ /sync/pr/{number}:
13
+ post:
14
+ summary: Sync GitHub PR to GitLab
15
+ operationId: syncPR
16
+ tags: [Sync]
17
+ parameters:
18
+ - name: number
19
+ in: path
20
+ required: true
21
+ schema:
22
+ type: integer
23
+ responses:
24
+ '200':
25
+ description: MR created
26
+ content:
27
+ application/json:
28
+ schema:
29
+ $ref: '#/components/schemas/GitLabMR'
30
+
31
+ /sync/batch:
32
+ post:
33
+ summary: Batch sync PRs
34
+ operationId: batchSync
35
+ tags: [Sync]
36
+ requestBody:
37
+ content:
38
+ application/json:
39
+ schema:
40
+ type: object
41
+ properties:
42
+ author:
43
+ type: string
44
+ example: app/dependabot
45
+ responses:
46
+ '200':
47
+ description: Batch MR created
48
+ content:
49
+ application/json:
50
+ schema:
51
+ $ref: '#/components/schemas/GitLabMR'
52
+
53
+ /sync/list:
54
+ get:
55
+ summary: List syncable PRs
56
+ operationId: listPRs
57
+ tags: [Sync]
58
+ parameters:
59
+ - name: author
60
+ in: query
61
+ schema:
62
+ type: string
63
+ responses:
64
+ '200':
65
+ description: List of PRs
66
+ content:
67
+ application/json:
68
+ schema:
69
+ type: array
70
+ items:
71
+ $ref: '#/components/schemas/GitHubPR'
72
+
73
+ components:
74
+ schemas:
75
+ GitHubPR:
76
+ type: object
77
+ required: [number, title, author, state]
78
+ properties:
79
+ number:
80
+ type: integer
81
+ title:
82
+ type: string
83
+ body:
84
+ type: string
85
+ nullable: true
86
+ author:
87
+ type: object
88
+ properties:
89
+ login:
90
+ type: string
91
+ state:
92
+ type: string
93
+ enum: [open, closed]
94
+
95
+ GitLabMR:
96
+ type: object
97
+ required: [iid, title, source_branch, target_branch, state, web_url]
98
+ properties:
99
+ iid:
100
+ type: integer
101
+ title:
102
+ type: string
103
+ description:
104
+ type: string
105
+ nullable: true
106
+ source_branch:
107
+ type: string
108
+ target_branch:
109
+ type: string
110
+ state:
111
+ type: string
112
+ enum: [opened, closed, merged]
113
+ web_url:
114
+ type: string
115
+ format: uri
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@bluefly/openstandardagents",
3
- "version": "0.2.5-RC",
3
+ "version": "0.2.8",
4
4
  "exports": {
5
- "./schema": "./spec/v0.2.5-RC/ossa-0.2.5-RC.schema.json",
5
+ "./schema": "./spec/v0.2.8/ossa-0.2.8.schema.json",
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
8
8
  "import": "./dist/index.js",
@@ -56,7 +56,7 @@
56
56
  },
57
57
  "homepage": "https://openstandardagents.org",
58
58
  "scripts": {
59
- "version:sync": "tsx scripts/sync-versions.ts",
59
+ "version:sync": "node scripts/sync-version.js",
60
60
  "version:bump": "tsx scripts/bump-version.ts",
61
61
  "version:enhanced": "tsx scripts/enhanced-version-manager.ts",
62
62
  "version:check": "tsx scripts/sync-versions.ts --check",
@@ -78,13 +78,31 @@
78
78
  "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
79
79
  "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
80
80
  "validate:schema": "tsx scripts/validate-schema.ts",
81
+ "docs:api:generate": "tsx scripts/generate-api-docs.ts",
82
+ "docs:cli:generate": "tsx scripts/generate-cli-docs.ts",
83
+ "docs:schema:generate": "tsx scripts/generate-schema-docs.ts",
84
+ "docs:examples:generate": "tsx scripts/generate-examples-docs.ts",
85
+ "docs:agents:generate": "tsx scripts/generate-agents-catalog.ts",
86
+ "docs:types:generate": "tsx scripts/generate-types-docs.ts",
87
+ "docs:errors:generate": "tsx scripts/generate-errors-docs.ts",
88
+ "docs:config:generate": "tsx scripts/generate-config-docs.ts",
89
+ "docs:lowercase": "tsx scripts/lowercase-docs.ts",
90
+ "docs:generate": "npm run docs:api:generate && npm run docs:cli:generate && npm run docs:schema:generate && npm run docs:examples:generate && npm run docs:agents:generate && npm run docs:types:generate && npm run docs:errors:generate && npm run docs:config:generate && npm run docs:lowercase",
91
+ "docs:validate": "echo 'Documentation validation not yet implemented'",
92
+ "docs:lint": "echo 'Documentation linting not yet implemented'",
81
93
  "validate:examples": "node -r ts-node/register tests/integration/examples/validate-all-examples.test.ts",
82
94
  "validate:power-suite": "tsx bin/validate-ossa.ts",
83
95
  "gen:types": "tsx scripts/gen-types.ts",
84
96
  "gen:zod": "tsx scripts/gen-zod.ts",
85
97
  "gen:all": "npm run gen:types && npm run gen:zod",
86
98
  "cli:legacy": "node cli/bin/ossa --help",
87
- "prepublishOnly": "npm run clean && npm run build && npm run test && npm run lint"
99
+ "prepublishOnly": "npm run clean && npm run build && npm run test && npm run lint",
100
+ "validate:all": "node scripts/validate-all.js",
101
+ "fix:schemas": "node scripts/fix-schema-formats.js",
102
+ "prepare": "husky install || true",
103
+ "sync:pr": "tsx src/cli/commands/github-sync.command.ts pr",
104
+ "sync:batch": "tsx src/cli/commands/github-sync.command.ts batch",
105
+ "sync:list": "tsx src/cli/commands/github-sync.command.ts list"
88
106
  },
89
107
  "keywords": [
90
108
  "ossa",
@@ -100,6 +118,9 @@
100
118
  "author": "OSSA Standards Team",
101
119
  "license": "Apache-2.0",
102
120
  "dependencies": {
121
+ "@anthropic-ai/sdk": "^0.71.0",
122
+ "@gitbeaker/node": "^35.8.1",
123
+ "@octokit/rest": "^20.0.0",
103
124
  "ajv": "^8.12.0",
104
125
  "ajv-formats": "^3.0.1",
105
126
  "axios": "^1.12.2",
@@ -130,6 +151,7 @@
130
151
  "eslint-config-prettier": "^10.1.8",
131
152
  "eslint-plugin-prettier": "^5.5.4",
132
153
  "jest": "^29.7.0",
154
+ "jest-junit": "^16.0.0",
133
155
  "json-schema-to-typescript": "^15.0.4",
134
156
  "json-schema-to-zod": "^2.6.1",
135
157
  "prettier": "^3.6.2",