From 203ae178ca50c53db37d3ce8d5bcdef6d94c2d3f Mon Sep 17 00:00:00 2001 From: Sven Geboers Date: Fri, 1 May 2026 00:09:14 +0200 Subject: [PATCH] chore: add compound-engineering config example Commit the example config file so teammates can see available settings. The .local.yaml variant remains gitignored for machine-local state. --- .compound-engineering/config.local.example.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .compound-engineering/config.local.example.yaml diff --git a/.compound-engineering/config.local.example.yaml b/.compound-engineering/config.local.example.yaml new file mode 100644 index 0000000..a9e33d7 --- /dev/null +++ b/.compound-engineering/config.local.example.yaml @@ -0,0 +1,12 @@ +# Compound Engineering -- local config +# Copy to .compound-engineering/config.local.yaml in your project root. +# All settings are optional. Invalid values fall through to defaults. + +# --- Work delegation (Codex) --- + +# work_delegate: codex # codex | false (default: false) +# work_delegate_consent: true # true | false (default: false) +# work_delegate_sandbox: yolo # yolo | full-auto (default: yolo) +# work_delegate_decision: auto # auto | ask (default: auto) +# work_delegate_model: gpt-5.4 # any valid codex model (default: gpt-5.4) +# work_delegate_effort: high # minimal | low | medium | high | xhigh (default: high)