The agent can read, update, validate, and restore its own configuration file.
manage_config
Returns the full config.toml content with sensitive fields redacted:
api_key = "***REDACTED***" bot_token = "***REDACTED***" password = "***REDACTED***"
Read a specific TOML key path:
action: "get" key: "provider.models.primary" # Returns: "gpt-4o"
Update a specific key with a new value (TOML literal format):
action: "set" key: "state.working_memory_cap" value: "100"
Before writing:
.bak
.bak.1
.bak.2
Rollback to the most recent backup file.
.toml.lastgood
config.toml.lastgood
config.toml.bak
config.toml.bak.1
config.toml.bak.2