{% extends "layout.html" %} {% block title %}Settings - Development Harness{% endblock %} {% block content %}

Settings

All configuration is stored in the database. No config files needed.

{% if saved is defined %}

Settings saved successfully.

{% endif %}

Credentials

API keys and tokens are stored securely in the database (never in source code).

General Settings

Change any setting. The agent can also manage these via harness config set.

Current Configuration

SettingValue
Default Agent{{ config.default_agent_backend }}
Default Approval Mode{{ config.default_approval_mode }}
Memory Backend{{ config.default_memory_backend }}
Server{{ config.server_host }}:{{ config.server_port }}
Log Level{{ config.log_level }}
Storage Dir{{ config.storage_dir }}

CLI Reference

harness config list                              # List all settings
harness config set server.port 9000              # Change a setting
harness config set-credential anthropic.api_key sk-...  # Store API key
harness config get default.approval_mode         # Read a setting
{% endblock %}