Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@
# LLM_MODEL is no longer read from .env — this line is kept for reference only.
# LLM_MODEL=anthropic/claude-opus-4.6

# =============================================================================
# EXTERNAL SECRET SOURCE (Infisical)
# =============================================================================
# These are bootstrap credentials only. Store regular provider keys
# (OPENROUTER_API_KEY, ANTHROPIC_API_KEY, etc.) in Infisical and enable
# secrets.infisical in ~/.hermes/config.yaml or with:
# hermes secrets infisical setup
#
# INFISICAL_CLIENT_ID=
# INFISICAL_CLIENT_SECRET=
# INFISICAL_PROJECT_ID=
# INFISICAL_API_URL=https://us.infisical.com

# =============================================================================
# LLM PROVIDER (NovitaAI)
# =============================================================================
Expand Down
3 changes: 3 additions & 0 deletions agent/secret_sources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@
- ``bitwarden`` — Bitwarden Secrets Manager (`bws` CLI). See
``agent.secret_sources.bitwarden`` for the integration and
``hermes_cli.secrets_cli`` for the user-facing setup wizard.
- ``infisical`` — Infisical Universal Auth. See
``agent.secret_sources.infisical`` for the integration and
``hermes_cli.infisical_secrets_cli`` for the user-facing setup wizard.
"""
Loading