Files
templates/blueprints/agent-zero/template.toml
Luis 989bf839b6 feat: add Agent Zero autonomous AI agent blueprint (#791)
* feat: add Agent Zero autonomous AI agent blueprint

Added Agent Zero blueprint with SVG logo, Docker Compose configuration for v1.9, and template for deployment. Agent Zero is an open-source autonomous AI agent framework with memory and tool use capabilities.

* feat(meta): add documentation link to agent-zero metadata

Added docs URL to the links section in meta.json to provide direct access to the project documentation at https://www.agent-zero.ai/p/docs/

* fix: add length parameter to password helper
2026-07-07 15:03:09 -06:00

16 lines
276 B
TOML

[variables]
main_domain = "${domain}"
auth_login = "${username}"
auth_password = "${password:32}"
[config]
env = [
"AUTH_LOGIN=${auth_login}",
"AUTH_PASSWORD=${auth_password}",
]
mounts = []
[[config.domains]]
serviceName = "agent-zero"
port = 80
host = "${main_domain}"