Skip to main content

Overview

UseZombie uses structured error codes prefixed with UZ- to classify failures. Every failed request, run, or stage includes an error code in the API response, logs, and metrics. Use this reference to diagnose and remediate failures. The API error codes page is the canonical list of every code and its HTTP status. This page adds operator-facing remediation for the subset that shows up in executor and worker telemetry.

Executor errors

Errors originating from the executor or agent runtime.
CodeMeaningRemediation
UZ-EXEC-001Execution session create failedThe executor could not create a new execution session. Check runner availability with zombied doctor worker.
UZ-EXEC-002Stage start failedThe stage failed to start. Check runner configuration and executor logs for the underlying error.
UZ-EXEC-003Execution timeout killThe execution exceeded its timeout and was killed. Increase the timeout or simplify the spec.
UZ-EXEC-009Execution startup posture failureThe per-run sandbox posture check failed. Verify the runner’s security configuration (Landlock, cgroups v2, network namespace).
UZ-EXEC-012Runner agent init failedThe runner agent failed to initialize. Check configuration and executor logs.
UZ-EXEC-013Runner agent run failedThe runner agent exited with an error during execution. Check logs for details.
UZ-EXEC-014Runner invalid configThe runner configuration is invalid. Check config_json fields against the runner schema.

Credential errors

Errors related to credential retrieval or validation.
CodeMeaningRemediation
UZ-CRED-001Anthropic API key missingThe workspace has no anthropic_api_key in the vault. Set one via the credentials API.
UZ-CRED-003Platform LLM key missingNo active platform LLM key is configured. An admin must set one via the platform-keys API.

Startup errors

Errors that prevent the API or worker from starting. These surface in systemd logs rather than run output.
CodeMeaningRemediation
UZ-STARTUP-001Environment check failedRequired environment variables are missing. Run zombied doctor to see which ones.
UZ-STARTUP-002Config load failedConfiguration failed to load. Check that all required env vars are set.
UZ-STARTUP-003Database connect failedThe database is unreachable. Verify DATABASE_URL and that the database accepts connections.
UZ-STARTUP-004Redis connect failedRedis is unreachable. Verify REDIS_URL_API and REDIS_URL_WORKER.
UZ-STARTUP-005Migration check failedDatabase migration state could not be verified. Check DB connectivity.
UZ-STARTUP-007Redis group creation failedRedis connected but consumer group creation failed. Check Redis ACL permissions.