Environment Variables
Secrets
IDEON_OPENROUTER_API_KEYIDEON_REPLICATE_API_TOKENIDEON_DISABLE_KEYTAR(trueorfalse) — whentrue, Ideon does not attempt keychain access and uses env-only secret resolution
Model Settings
IDEON_MODELIDEON_TEMPERATUREIDEON_MAX_TOKENSIDEON_TOP_PIDEON_MODEL_REQUEST_TIMEOUT_MS
Output Paths
IDEON_MARKDOWN_OUTPUT_DIRIDEON_ASSET_OUTPUT_DIR
Generation Style
IDEON_STYLEIDEON_INTENTIDEON_TARGET_LENGTH(small,medium,large, or positive integer words)
Notifications
IDEON_NOTIFICATIONS_ENABLED(trueorfalse)
Example
IDEON_OPENROUTER_API_KEY=... \
IDEON_REPLICATE_API_TOKEN=... \
IDEON_DISABLE_KEYTAR=true \
IDEON_MODEL=moonshotai/kimi-k2.5 \
IDEON_TEMPERATURE=0.7 \
IDEON_MAX_TOKENS=2000 \
IDEON_TOP_P=1 \
IDEON_MODEL_REQUEST_TIMEOUT_MS=90000 \
IDEON_NOTIFICATIONS_ENABLED=false \
IDEON_MARKDOWN_OUTPUT_DIR=/output \
IDEON_ASSET_OUTPUT_DIR=/output/assets \
IDEON_STYLE=professional \
IDEON_INTENT=tutorial \
IDEON_TARGET_LENGTH=1200 \
ideon write "How teams scale editorial pipelines"
Notes
- Numeric vars are parsed into numbers and validated.
IDEON_TARGET_LENGTHsupports aliases (small=500,medium=900,large=1400) or explicit positive integer words.- Invalid numeric values are ignored during parsing and schema validation determines final acceptance.
- Env vars override saved and job-file settings where applicable.
- In environments where keychain services are unavailable (for example many containers), set
IDEON_DISABLE_KEYTAR=true. - Content targets (
contentTargets) are not configurable through env vars; use CLI--primary/--secondaryor job files.