# Example per-profile config — lives at ~/.hermes/profiles/<name>/config.yaml
#
# A profile is a separate Hermes home: its own config, .env (keys), SOUL.md,
# memory, sessions, skills and cron — isolated from your other agents.
#
# 1. Create the profile:        hermes profile create research
# 2. Drop settings like these into its config.yaml
#    (or set them via CLI:       research config set model.default anthropic/claude-sonnet-4)

model:
  default: anthropic/claude-sonnet-4    # this profile's model — set your own

terminal:
  cwd: /absolute/path/to/your/project   # where THIS agent's tools run
  home_mode: profile                    # strict per-profile isolation for tool subprocesses

# Personality / operating rules for this profile go in its SOUL.md (see SOUL.example.md).
# API keys go in this profile's own .env (e.g. ANTHROPIC_API_KEY=...), never in here.
#
# Full config reference: https://hermes-agent.nousresearch.com/docs/user-guide/configuration
