Skip to content

Environment variables

Every env var the template reads at runtime.

Required

VariableWhat
OPENAI_API_KEYLiteLLM gateway master key (or direct provider key if not using a gateway). Read by graph/llm.py.

External secrets manager (ADR 0080)

VariableDefaultWhat
INFISICAL_CLIENT_ID(unset)Universal-auth machine-identity client id — the env fallback for secrets_manager.client_id (secrets.yaml wins when present).
INFISICAL_CLIENT_SECRET(unset)Machine-identity client secret — env fallback for secrets_manager.client_secret.
PROTOAGENT_NO_SECRETS_HYDRATE(unset)Any non-empty value disables secrets-manager env hydration entirely (debugging escape hatch).

Identity

VariableDefaultWhat
AGENT_NAMEprotoagentShort slug. Used as the Prometheus metric prefix, Langfuse trace tag, and in log labels. Should match what you used when forking.
<AGENT_NAME>_API_KEY(unset — no auth)Expected value of the X-API-Key header if you want to require auth on /a2a and /v1/*. Uppercased, non-alphanumeric → underscore. e.g. MY_AGENT_API_KEY.

Paths & overrides

VariableDefaultWhat
PROTOAGENT_CONFIG_DIR<repo>/configWritable config root — live langgraph-config.yaml, secrets.yaml, .setup-complete, and the live skills/ + plugins/ dirs. The desktop sidecar points this at the per-user app-data dir.
PROTOAGENT_WORKSPACE(a workspace dir)Overrides the default project root for the on-by-default fenced filesystem toolset.
PROTOAGENT_MODEL(unset)Overrides model.name on every config load — used by evals/sweep.py to run one agent against many models without editing YAML.
PROTOAGENT_INSTANCE(unset)Opt-in data-scoping key (ADR 0004): namespaces the knowledge/notes/tasks/checkpoint stores so several agents share a backend without colliding. Seeded from instance.id in config.

Deployment / UI tier (ADR 0010)

VariableDefaultWhat
PROTOAGENT_UIconsoleUI deployment tier (or --ui): console (React console at /app + API/A2A), none (API + A2A + /metrics only — the lean headless stack). full is a deprecated alias for console (the Gradio tier was removed; it logs a warning). The Docker image defaults to none.
PROTOAGENT_HOST127.0.0.1Bind address (or --host). Defaults to loopback so a local/desktop run isn't exposed on all interfaces — the operator/console API (/api/*, /api/chat, /v1/*) is otherwise reachable by anything that can hit the port. The container entrypoint + deploy manifests set 0.0.0.0 because their boundary is the published port + network policy, not the in-container bind. Binding non-loopback without an A2A auth token refuses to start unless PROTOAGENT_ALLOW_OPEN=1.
PROTOAGENT_ALLOW_OPEN(unset)Set 1 to allow a non-loopback bind with no auth token — the boot gate otherwise refuses it, because the open operator API includes plugin install+enable (code execution) and config rewrite. Only opt in when a network boundary fences the port (the bundled compose publishes to 127.0.0.1 only and sets this; a k8s NetworkPolicy is the other intended case). The startup log still carries a security WARNING.
PROTOAGENT_HEADLESS(unset)Deprecated alias for PROTOAGENT_UI=console (or --headless).
PROTOAGENT_HEADLESS_SETUP(unset)Set 1/true to auto-complete setup from a validated config even outside the none tier (no wizard). The none tier implies this.

Setup without the wizard: python -m server --setup validates the live config (model.api_base set + key resolvable via secrets.yaml/OPENAI_API_KEY) and writes .setup-complete, then exits. In the none tier the server auto-completes the same way on boot, or fails fast if the config is invalid. Readiness is exposed at GET /healthz (503 until the graph compiles).

Fleet (ADR 0042)

The hub spawns local fleet members as detached --ui none processes on their own ports.

VariableDefaultPurpose
PROTOAGENT_FLEET_AUTOSTART(unset)Comma-separated member ids or display names the hub (re)starts on boot (ADR 0072) — a container recreate or host restart kills the members' detached processes and fleet.json keeps now-dead pids, so without this a declared crew stays down until re-activated by hand. The config key fleet.autostart: [id, …] is the durable form; this env var is the Docker/headless fallback. Idempotent (already-running members skipped), best-effort (a missing workspace is logged and skipped), and hub-only. Pairs with the config-as-code deploy pattern — see the fleet guide.
PROTOAGENT_FLEET_KEEP_MEMBERS_ON_EXIT(unset)By default the hub spins its local members down when it shuts down ("host down → fleet down" — keeps a rebuilt hub from leaving members running stale code; sessions resume from their instance.id-scoped checkpoints on the next switch, so it stops processes, not work). Set 1/true to keep members running across a hub restart — for genuinely long-running detached agents.
PROTOAGENT_FLEET_MAX_WARM0Keep-N-warm cap: at most this many members stay running; switching to another resumes it and evicts the least-recently-active beyond the cap (0/unset = unlimited).
PROTOAGENT_FLEET_WARM_GRACE0Seconds a just-active member is spared from keep-warm eviction (may be mid background turn); 0 = pure LRU.

Authentication — A2A bearer token

VariableDefaultWhat
A2A_AUTH_TOKEN(unset — open mode)Required bearer token for the A2A routes and the operator/console + OpenAI-compat APIs — /a2a, /api/*, /api/chat, /v1/*. When set, requests without Authorization: Bearer <token> get 401. Constant-time comparison (hmac.compare_digest).

When unset, startup logs a WARNING ("A2A auth token not configured — endpoint is open") and accepts all traffic — fine for local dev (and safe behind the loopback-default bind, see PROTOAGENT_HOST), not for an exposed deployment. A non-loopback bind with no token refuses to start unless PROTOAGENT_ALLOW_OPEN=1 (see above). When set, the agent card advertises securitySchemes.bearer.

Scope. The guard covers everything that can drive the agent: /a2a, the operator API (/api/* — run subagents, rewrite config/SOUL, schedule jobs), /api/chat, and /v1/*. Public (never guarded): /healthz, /.well-known/agent-card.json, /metrics, the static console at /app, and the read-only /api/events SSE stream (browsers' EventSource can't send an Authorization header; it exposes only activity/inbox events, no action).

Console. When a token is set, the React console sends it as a bearer on every API + A2A call. On the first 401 the console prompts for the token ("Authentication required") and stores it in localStorage["protoagent.authToken"] — no devtools needed; local/desktop runs (no token) need nothing.

A2A agent-card endpoint

VariableDefaultWhat
A2A_PUBLIC_URL(unset — http://127.0.0.1:<bound-port>)The externally-reachable base URL advertised in the agent card's supportedInterfaces[].url (where peers send message/send). Set this for any deployed agent — behind a proxy / in a container the bound port isn't the address clients use. The /a2a JSON-RPC suffix is appended automatically (e.g. A2A_PUBLIC_URL=https://gina.example.com → card url https://gina.example.com/a2a). Unset, it falls back to the actually-bound loopback port (correct for local + the dynamic-port desktop sidecar, where the caller is on the same host). Fleet members don't set this themselves — the supervisor derives it as {hub_public_url}/agents/<slug> so each member advertises its own A2A tenant sub-path (ADR 0042); an explicit per-workspace value still wins.

This is independent of the legacy <AGENT_NAME>_API_KEY header-based scheme (X-API-Key) documented above. You can enable one, both, or neither; bearer is the preferred mechanism going forward.

Memory

Session memory is enabled by default. See architecture § Session memory for the full rationale.

VariableDefaultWhat
MEMORY_PATH/sandbox/memory/Directory where SessionSummaryMiddleware writes JSON session summaries and where KnowledgeMiddleware.load_memory() reads them. Writes are atomic (temp file + rename).
PROTOAGENT_DISABLE_MEMORY(unset)Set to 1 (or any non-empty value) to suppress disk persistence without changing langgraph-config.yaml. Loading still occurs if summaries exist from prior runs.

To persist memory across container restarts, mount a volume at whatever MEMORY_PATH resolves to. Without a volume the directory is ephemeral.

Knowledge store

The bundled KnowledgeStore (sqlite + FTS5) is enabled by default. See Configuration § knowledge for the full guide.

VariableDefaultWhat
KNOWLEDGE_DB_PATH(unset — uses YAML knowledge.db_path)Runtime override for the sqlite path. Falls back to ~/.protoagent/knowledge/agent.db when the resolved path is unwritable (e.g. running locally without /sandbox).

To opt out entirely, set middleware.knowledge: false in YAML. The memory tools (memory_ingest, memory_recall, etc.) are dropped from the agent loop when the store is disabled.

Notes, tasks & goals (agent-global working stores)

The agent's notebook, task board, and goals are agent-global — one persistent, instance-scoped store each, shared by the agent's tools and the operator console. They are not per-project (there's no .automaker/notes/ or .beads/ inside project directories); operator.allowed_dirs is purely the filesystem fence for file/shell tools, unrelated to these stores. Each falls back from a non-writable /sandbox to ~/.protoagent/… for local dev and is instance-scoped via PROTOAGENT_INSTANCE.

VariableDefaultWhat
NOTES_PATH/sandbox/notes/workspace.jsonThe console Notes panel workspace + the notes_* tools.
TASKS_DB_PATH/sandbox/tasks/issues.dbThe in-process tasks issue store (the task_* tools + the console Tasks panel).
GOAL_PATH/sandbox/goalsDirectory of per-session goal JSON files (goal mode).

Audit log

VariableDefaultWhat
AUDIT_PATH/sandbox/audit/audit.jsonlDirectory + filename of the JSONL audit log written by AuditMiddleware. Read by evals/verify.py for side-effect assertions.

Scheduler

The bundled scheduler is enabled by default. See Schedule future work and Configuration § scheduler for the full guide. Enable/disable lives in YAML (middleware.scheduler) so the drawer can toggle without a restart.

VariableDefaultWhat
SCHEDULER_DB_DIR/sandbox/schedulerParent directory for <agent_name>/jobs.db. Falls back to ~/.protoagent/scheduler/<agent_name>/jobs.db when unwritable.
SCHEDULER_INVOKE_URLhttp://127.0.0.1:<active_port>Where to POST message/send when a job fires. Override only if the agent's A2A endpoint isn't on localhost.
SCHEDULER_FIRE_TIMEOUT_S600How long a fire waits for the turn (message/send blocks until the turn is terminal). Must exceed a real turn — too low false-fails long turns. Fires run off the poll loop, so this doesn't stall the cadence.
SCHEDULER_DISABLED(unset)Runtime escape hatch — set to 1 / true to drop the scheduler tools entirely without editing YAML. middleware.scheduler: false is the canonical opt-out.

Tracing (optional)

VariableWhat
LANGFUSE_PUBLIC_KEYLangfuse project public key
LANGFUSE_SECRET_KEYLangfuse project secret key
LANGFUSE_HOSTLangfuse host URL (e.g. https://langfuse.company.com). Falls back to LANGFUSE_URL, then http://host.docker.internal:3001.
PROTOAGENT_FLEET_TRACE_EXPORTFleet trace export (the flywheel Observe, #1897). Unset → off (or the telemetry.fleet_trace_export config toggle decides). 1/on → on at <instance>/fleet-traces/; a path → on there; 0/off → hard-off, overriding the config toggle. See Observability ▸ Fleet trace export.

If both Langfuse keys are unset, distributed tracing is disabled and every helper in tracing.py becomes a no-op. Fleet trace export is independent — it needs no Langfuse.

Logging

VariableDefaultWhat
LOG_LEVELINFOPython logging level. Valid: DEBUG, INFO, WARNING, ERROR.
LOG_FORMATtextSet to json to emit one JSON object per log line (keys: ts, level, logger, message, plus exc/exc_type on errors and any extra= fields) — parse-stable for aggregators (Loki, CloudWatch, Datadog). Anything else keeps the human-readable format. Same level + stderr stream either way.

The template configures logging at startup (observability/logging_config.py) — without an explicit level, Python's default WARNING would hide logger.info(...) lines like "webhook delivered", making A2A issues invisible in container logs.

Streaming / origin verification

VariableDefaultWhat
A2A_ALLOWED_ORIGINS(unset — allow all, with WARNING)Comma-separated list of allowed Origin header values for SSE and WebSocket streaming endpoints (/a2a streaming methods, /message:stream, /tasks/{id}:subscribe). Example: https://app.example.com,https://admin.example.com. Set to * to explicitly disable origin verification without the WARNING log. Origin values are compared case-insensitively.

When unset, all origins are accepted but a WARNING is logged at startup. When set, requests whose Origin header does not match any entry receive a 403 Forbidden response. A missing Origin header is treated as an empty string and will be rejected when verification is enabled.

Push notifications / SSRF guard

VariableDefaultWhat
PUSH_NOTIFICATION_ALLOWED_HOSTS(empty)Comma-separated hostnames that bypass the private-IP check when accepting webhook URLs. Example: automaker-server,internal-hooks.
PUSH_NOTIFICATION_ALLOWED_CIDRS(empty)Comma-separated CIDR blocks explicitly allowed. Example: 10.0.0.0/8,172.16.0.0/12.

Without these set, the handler rejects webhook URLs that resolve to private / loopback / link-local IPs — defends against SSRF where a client registers http://169.254.169.254/... or http://10.0.0.1/... as a callback.

Server bind

The server binds host 0.0.0.0; the port is set by the --port CLI flag (default 7870) — uvicorn.run(app, host="0.0.0.0", port=args.port). The A2A handler, REST API, metrics, and agent card are all served on that one port. (There is no GRADIO_SERVER_NAME / GRADIO_SERVER_PORT env — those are not read.)

Plugin env fallbacks

Plugins prefer in-app config (Settings), but read env as a Docker/headless fallback. The external Discord plugin (installable from Settings ▸ Plugins ▸ Discover) reads:

VariableWhat
DISCORD_BOT_TOKENBot token for the discord plugin's gateway (fallback for discord.bot_token).
DISCORD_ADMIN_IDSComma-separated Discord user IDs allowed to DM the bot (fallback for discord.admin_ids).

Other external plugins (e.g. a Google or Slack integration) declare and read their own env fallbacks — see that plugin's docs.

Peer federation (A2A peer-consult tools)

Register peer agents so this agent can consult them via the peer_list / peer_consult tools (added to the toolset only when at least one peer is set). See tools/peer_tools.py.

VariableWhat
PEER_<HANDLE>_URLBase URL of a peer agent (its /a2a endpoint is derived). <HANDLE> becomes the peer name (e.g. PEER_ALICE_URL → peer alice).
PEER_<HANDLE>_TOKENOptional bearer token sent to that peer if it requires auth.

Release pipeline (shared release-tools Action)

These are CI secrets, not env vars the template reads at runtime. The Discord-release step of release.yml delegates to the shared protoLabsAI/release-tools Action, which reads them from the job env.

VariableWhat
GATEWAY_API_KEYBearer token for the protoLabs LLM gateway; the Action rewrites raw commits into themed notes.
DISCORD_RELEASE_WEBHOOKDiscord channel webhook. If unset (post-discord: false), notes generate but aren't posted.

Not set by the template

The core runtime stays credential-light, but some bundled tools/plugins do read their own env: the GitHub read tools authenticate via GITHUB_TOKEN / GH_TOKEN (or gh's ambient login), and the Discord plugin reads the fallbacks above. Any other tool-specific credentials belong in your fork's tools/plugins, not the shared runtime.

Part of the protoLabs autonomous development studio.