You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DEPRECATED — Claude Code uses ~/.claude/ by default
CLAUDE_CODE_HOME_DIR
claude.claude_home_dir
$HOME
Safeguard: home dir root — Claude uses $CLAUDE_CODE_HOME_DIR/.claude/
Repos
Variable
YAML Key
Default
Description
AGENTICORE_REPOS_ROOT
repos.root
~/agenticore-repos
Root directory for cloned repos
AGENTICORE_MAX_PARALLEL_JOBS
repos.max_parallel_jobs
3
Max concurrent jobs
AGENTICORE_JOB_TTL
repos.job_ttl_seconds
86400
Job TTL in seconds (24h default)
AGENTICORE_SHARED_FS_ROOT
repos.shared_fs_root
(none)
Shared RWX filesystem root (Kubernetes). When set, enables K8s mode: profiles are materialised to /shared/jobs/{job-id}/ instead of the repo working dir.
AGENTICORE_JOBS_DIR
repos.jobs_dir
~/.agenticore/jobs
Override job JSON file directory. In K8s use /shared/job-state.
AGENTICORE_POD_NAME
repos.pod_name
hostname
Pod identity recorded on each job. Set from K8s Downward API (metadata.name).
AGENTICORE_WORKTREE_ROOT
repos.worktree_root
~/.agenticore/worktrees
Root directory for bespoke worktrees. In Kubernetes, use an emptyDir mount (e.g. /app/worktrees). Worktrees are ephemeral and live on local disk, NOT shared FS.
Redis
Variable
YAML Key
Default
Description
REDIS_URL
redis.url
(none)
Redis connection URL
REDIS_KEY_PREFIX
redis.key_prefix
agenticore
Key namespace prefix
OTEL
Variable
YAML Key
Default
Description
AGENTICORE_OTEL_ENABLED
otel.enabled
true
Enable OTEL telemetry
OTEL_EXPORTER_OTLP_ENDPOINT
otel.endpoint
http://otel-collector:4317
OTLP collector endpoint
OTEL_EXPORTER_OTLP_PROTOCOL
otel.protocol
grpc
OTLP protocol (grpc or http)
AGENTICORE_OTEL_LOG_PROMPTS
otel.log_prompts
false
Log user prompts in telemetry
AGENTICORE_OTEL_LOG_TOOL_DETAILS
otel.log_tool_details
true
Log tool call details
Anthropic
Variable
YAML Key
Default
Description
CLAUDE_CODE_OAUTH_TOKEN
(env only)
(none)
Long-lived OAuth token for direct Anthropic auth. When set, ANTHROPIC_AUTH_TOKEN and ANTHROPIC_BASE_URL are removed from the job env.
ANTHROPIC_AUTH_TOKEN
(env only)
(none)
Static API key (fallback when CLAUDE_CODE_OAUTH_TOKEN is not set)
ANTHROPIC_BASE_URL
(env only)
(none)
Custom API endpoint (e.g. LiteLLM proxy)
GitHub
Variable
YAML Key
Default
Description
GITHUB_TOKEN
github.token
(none)
GitHub PAT for auto-PR + private repo access
GITHUB_APP_ID
github.app_id
(none)
GitHub App numeric ID
GITHUB_APP_INSTALLATION_ID
github.app_installation_id
(none)
GitHub App installation ID
GITHUB_APP_PRIVATE_KEY_PATH
(env only)
(none)
Path to GitHub App PEM key file
GITHUB_APP_PRIVATE_KEY
(env only)
(none)
Raw PEM text (K8s --from-file secrets)
GITHUB_APP_PRIVATE_KEY_BASE64
(env only)
(none)
Base64-encoded PEM key
Langfuse
Variable
YAML Key
Default
Description
LANGFUSE_HOST
langfuse.host
https://cloud.langfuse.com
Langfuse API host
LANGFUSE_PUBLIC_KEY
langfuse.public_key
(none)
Enables Langfuse SDK tracing
LANGFUSE_SECRET_KEY
langfuse.secret_key
(none)
Langfuse SDK authentication
LANGFUSE_BASIC_AUTH
(env only)
(none)
Base64(public_key:secret_key) for OTEL collector
Agentihooks
agentihooks is a PyPI dependency of agenticore.pip install agenticore
pulls it transitively, so no configuration is required for the default
install path. The variables below are override escape hatches for
development against a live checkout or a non-PyPI fork/branch.
Variable
YAML Key
Default
Description
AGENTICORE_SHARED_FS_ROOT
repos.shared_fs_root
(empty)
PVC root for state — $HOME, .claude/, job-state/. /shared in k8s, $HOME locally.
AGENTICORE_CLONE_ROOT
repos.clone_root
(empty)
Clone parent — /app/clones (emptyDir, per-pod ephemeral) in k8s. Falls back to SHARED_FS_ROOT when unset.
AGENTICORE_AGENTIHOOKS_URL
agentihooks_url
(empty)
Clone ONCE to <CLONE_ROOT>/<dir-from-url> + uv pip install -e. Default install is from PyPI.
AGENTICORE_AGENTIHOOKS_BRANCH
agentihooks_branch
(empty)
Git ref checked out when URL is set.
AGENTICORE_AGENTIHOOKS_BUNDLE_URL
agentihooks_bundle_url
(empty)
Git URL for the bundle content repo (optional). Passed as --bundle to agentihooks init.
AGENTIHOOKS_PROFILE
(env only)
coding
Profile name passed to agentihooks init --profile.
Agentihub
Variable
YAML Key
Default
Description
AGENTICORE_AGENTIHUB_URL
agentihub_url
(empty)
Git URL for the agentihub repo (required for agent mode). Clone lands at <CLONE_ROOT>/<dir-from-url>.
AGENTIHUB_AGENT
(env only)
(empty)
Agent name to load (matches agents/{name}/ directory).
Repository Sync
agentihooks itself is a pip dependency — only cloned when
AGENTICORE_AGENTIHOOKS_URL is set (clone + editable install over PyPI).
The bundle is an optional addon. agentihub is required in agent mode. All
three repos clone ONCE at startup; no background watchers.
No background polling. To pick up upstream changes, trigger a sync on
demand or restart the pod. In agent mode, render_mcp_whitelist re-runs
agentihooks init --repo <pkg> before every completion, so per-agent
settings always reflect the on-disk bundle at request time.
On-demand sync
REST API:
# Sync all repos
curl -X POST http://localhost:8200/admin/sync
# Sync a specific repo
curl -X POST "http://localhost:8200/admin/sync?target=agentihub"
Valid targets: all (default), agentihooks, bundle, agentihub.
CLI (from inside the container):
# Sync all repos
agenticore hooks sync
# Sync a specific repo
agenticore hooks sync --target bundle
PATH vs URL
Setting a *_PATH variable tells agenticore to use that directory as-is —
no cloning, no git operations. This is useful for local development where
you have the repos already checked out. When both *_PATH and *_URL are
set, *_PATH takes precedence (agentihooks only; agentihub always clones
when *_URL is set).