From d84f91ba3ab2674d03745eea96d94921457851a5 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 8 Feb 2026 17:03:03 +0000 Subject: [PATCH] refactor(claude/settings): move env and teammateMode to canonical positions Move `env` block to the top of settings and `teammateMode` to the end, keeping the file organized with related settings grouped together. Co-Authored-By: Claude Opus 4.6 --- claude/settings.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/claude/settings.json b/claude/settings.json index 17c9812..fa2184b 100644 --- a/claude/settings.json +++ b/claude/settings.json @@ -1,4 +1,7 @@ { + "env": { + "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" + }, "permissions": { "allow": [ "Bash(awk:*)", @@ -93,10 +96,6 @@ "command": "~/.claude/statusline.sh", "padding": 0 }, - "env": { - "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1" - }, - "teammateMode": "auto", "enabledPlugins": { "code-review@claude-plugins-official": true, "code-simplifier@claude-plugins-official": true, @@ -115,5 +114,6 @@ "swift-lsp@claude-plugins-official": false, "typescript-lsp@claude-plugins-official": true }, - "autoUpdatesChannel": "latest" + "autoUpdatesChannel": "latest", + "teammateMode": "auto" }