ov-build/skills/settings/SKILL.md
Runtime configuration management for the ov CLI. MUST be invoked before any work involving: ov settings commands, runtime configuration, engine selection, bind address, storage paths, or secret backend configuration.
npx skillsauth add overthinkos/overthink-plugins settingsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage ov's runtime configuration stored in ~/.config/ov/settings.yml. Controls engine selection, networking, storage paths, secret backend, and agent forwarding.
| Action | Command | Description |
|--------|---------|-------------|
| Get a setting | ov settings get <key> | Show current value |
| Set a setting | ov settings set <key> <value> | Update a setting |
| List all | ov settings list | Show all settings with values |
| Reset to default | ov settings reset <key> | Remove override, use default |
| Config path | ov settings path | Print path to settings.yml |
| Migrate secrets | ov settings migrate-secrets [--dry-run] | Move plaintext credentials to keyring |
| Key | Default | Env Var | Description |
|-----|---------|---------|-------------|
| engine.build | docker | OV_ENGINE_BUILD | Build engine (docker/podman) |
| engine.run | docker | OV_ENGINE_RUN | Run engine (docker/podman) |
| run_mode | quadlet | OV_RUN_MODE | Deployment mode (quadlet/direct) |
| bind_address | 127.0.0.1 | OV_BIND_ADDRESS | Default bind address for ports |
| encrypted_storage_path | ~/.local/share/ov/encrypted | OV_ENCRYPTED_STORAGE_PATH | Base path for gocryptfs volumes |
| volumes_path | ~/.local/share/ov/volumes | OV_VOLUMES_PATH | Base path for bind-mounted volumes |
| secret_backend | auto | OV_SECRET_BACKEND | Credential backend (auto/keyring/kdbx/config) |
| keyring_collection_label | (empty) | OV_KEYRING_COLLECTION_LABEL | Preferred Secret Service collection label. Empty = iterate naturally (default alias → listing order). Set to pin ov to a specific collection in multi-database setups (e.g. KeePassXC with multiple open databases). See /ov-advanced:enc for the full iteration order. |
| forward_gpg_agent | true | OV_FORWARD_GPG_AGENT | Forward GPG agent into containers |
| forward_ssh_agent | true | OV_FORWARD_SSH_AGENT | Forward SSH agent into containers |
| secrets.kdbx_path | (none) | OV_KDBX_PATH | Path to KeePass .kdbx database |
| secrets.kdbx_cache | true | OV_KDBX_CACHE | Cache kdbx password in kernel keyring |
| secrets.kdbx_cache_timeout | 3600 | OV_KDBX_CACHE_TIMEOUT | Kernel keyring cache TTL (seconds) |
| hosts.<alias> | (none) | — | SSH target for ov --host <alias> remote execution. Free-form: host, user@host, user@host:port. Consulted by the top-level --host flag to re-exec ov commands on another machine over SSH. See /ov-core:ssh. |
# Switch to podman for both build and run
ov settings set engine.build podman
ov settings set engine.run podman
# Check current engine
ov settings get engine.build
# Change volume storage to NAS
ov settings set volumes_path /mnt/nas/ov-volumes
# Change encrypted storage location
ov settings set encrypted_storage_path /mnt/encrypted/ov
# Force KeePass backend
ov settings set secret_backend kdbx
# Migrate plaintext secrets from settings.yml to keyring
ov settings migrate-secrets
# Preview migration without changes
ov settings migrate-secrets --dry-run
Settings resolve in this order: environment variable > settings.yml > default value.
/ov-core:config -- deployment configuration (uses settings)/ov-build:secrets -- credential management/ov-core:doctor -- diagnose settings and secret storage health/ov-advanced:enc -- encrypted volume pathstools
OpenCharly CLI (charly) binary installed into container/VM images for in-container use. Use when working with charly binary deployment inside containers, native D-Bus support, or the full charly toolchain (charly binary + virtualization + gocryptfs + socat).
development
Operator CachyOS workstation profile — a kind:local template + target:local deploy that installs the full dev stack (30 candies) onto a CachyOS host via ShellExecutor. Lives in the overthinkos/cachyos submodule. MUST be invoked before editing or applying the charly-cachyos workstation profile.
tools
Fedora box with the full charly toolchain using shared candies. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Same candy list as charly-arch. Includes NVIDIA GPU runtime. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-fedora box.
tools
Arch Linux box with the full charly toolchain. Rootless-first — runs as uid=1000 with passwordless sudo (no root, no cap_add: ALL). Composes /charly-coder:charly-mcp so the box is reachable as an MCP gateway on port 18765. NVIDIA GPU runtime composed in. MUST be invoked before building, deploying, configuring, or troubleshooting the charly-arch box.