feat: add/update ZeroClaw template (v0.7.0-beta.1040)#797
Open
theonlyhennygod wants to merge 1 commit intoDokploy:mainfrom
Open
feat: add/update ZeroClaw template (v0.7.0-beta.1040)#797theonlyhennygod wants to merge 1 commit intoDokploy:mainfrom
theonlyhennygod wants to merge 1 commit intoDokploy:mainfrom
Conversation
built with Refined Cloudflare Pages Action⚡ Cloudflare Pages Deployment
|
| @@ -0,0 +1,16 @@ | |||
| [variables] | |||
| main_domain = "${domain}" | |||
| api_key = "${password:64}" | |||
There was a problem hiding this comment.
API_KEY auto-generated but must be the user's provider API key
According to the official ZeroClaw environment variable docs, API_KEY is the "Primary provider API key" used to authenticate with the chosen LLM provider (OpenRouter by default). Generating it as ${password:64} produces a random string that will be rejected by OpenRouter, so the deployed service can start but cannot make any AI calls. The user's real provider API key must be supplied here — it should not be auto-generated.
Suggested change
| api_key = "${password:64}" | |
| api_key = "" |
Consider leaving it as a plain empty variable so that Dokploy prompts the user to enter their actual OpenRouter (or other provider) API key before the service is usable.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ghcr.io/zeroclaw-labs/zeroclaw:${VERSION}Checklist
Testing
Links
Greptile Summary
This PR adds the ZeroClaw (v0.7.0-beta.1040) template — a self-hosted, Rust-based autonomous AI assistant. The blueprint structure,
docker-compose.yml, andmeta.jsonentry are all correct, and the Strapi removal visible in the diff is the deduplication script legitimately removing a pre-existing duplicate entry.API_KEYis the LLM provider credential, not a gateway key. Per ZeroClaw's official environment variable docs,API_KEYis the "Primary provider API key." Setting it to${password:64}(a random 64-char string) causes the service to start and pass health checks, but every AI call will fail with an authentication error from the provider. The user's real OpenRouter (or other provider) API key must be supplied — it should not be auto-generated.Confidence Score: 4/5
Mergeable after fixing the API_KEY variable — as-is the service boots but all AI functionality is broken.
One P1 finding: auto-generating the primary LLM provider API key as a random password means any deployment from this template will start but be non-functional for AI tasks. The rest of the blueprint follows all Dokploy conventions correctly.
blueprints/zeroclaw/template.toml — api_key variable definition needs to accept user-provided value instead of auto-generating.
Comments Outside Diff (1)
blueprints/zeroclaw/zeroclaw.png, line 1 (link)The project guidelines specify "SVG preferred, ~128x128px" for template logos. Using PNG works, but an SVG would scale cleanly at all resolutions in the Dokploy UI.
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
Reviews (1): Last reviewed commit: "feat: add/update ZeroClaw template (v0.7..." | Re-trigger Greptile