Skip to content

Commit c01fde2

Browse files
committed
Pass --thinking-display summarized in claude aliases
Add `--thinking-display summarized` to cc, claude, ccw, and cc-orc so thinking output stays tidy in the terminal. ccraw stays vanilla. Also flip default viewMode from verbose to focus for a cleaner UI.
1 parent 03b71e3 commit c01fde2

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

container/.devcontainer/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@
4141

4242
### Configuration
4343

44+
- **Thinking display set to summarized**`cc`, `claude`, `ccw`, and `cc-orc` aliases now pass `--thinking-display summarized`, keeping the terminal tidy while still surfacing thinking. `ccraw` is unaffected (stays vanilla).
45+
- **View mode set to focus**`viewMode` changed from `verbose` to `focus` in default settings for a cleaner terminal UI.
4446
- **Default model updated**`ANTHROPIC_MODEL` changed from `claude-opus-4-6[1m]` to `claude-opus-4-7`
4547
- **Thinking tokens reduced**`MAX_THINKING_TOKENS` reduced from 63999 to 31999; adaptive thinking disabled (`CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING: 1`)
4648
- **Effort level increased**`CLAUDE_CODE_EFFORT_LEVEL` changed from `medium` to `max`

container/.devcontainer/defaults/codeforge/config/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
},
5252
"autoMemoryDirectory": "./.claude/memory",
5353
"plansDirectory": "./.claude/plans",
54-
"viewMode": "verbose",
54+
"viewMode": "focus",
5555
"spinnerVerbs": {
5656
"mode": "replace",
5757
"verbs": [

container/.devcontainer/scripts/setup-aliases.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ _OMC_DISALLOWED_TOOLS=(
114114
mcp__oh-my-claude__coworker_task
115115
)
116116
117-
alias cc='CLAUDE_CODE_ADDITIONAL_DIRECTORIES_CLAUDE_MD=1 "\$_CLAUDE_WRAP" "\$_CLAUDE_BIN" --system-prompt-file "\$CLAUDE_CONFIG_DIR/main-system-prompt.md" --permission-mode plan --allow-dangerously-skip-permissions "\${_OMC_DISALLOWED_TOOLS[@]}"'
118-
alias claude='CLAUDE_CODE_ADDITIONAL_DIRECTORIES_CLAUDE_MD=1 "\$_CLAUDE_WRAP" "\$_CLAUDE_BIN" --system-prompt-file "\$CLAUDE_CONFIG_DIR/main-system-prompt.md" --permission-mode plan --allow-dangerously-skip-permissions "\${_OMC_DISALLOWED_TOOLS[@]}"'
117+
alias cc='CLAUDE_CODE_ADDITIONAL_DIRECTORIES_CLAUDE_MD=1 "\$_CLAUDE_WRAP" "\$_CLAUDE_BIN" --system-prompt-file "\$CLAUDE_CONFIG_DIR/main-system-prompt.md" --permission-mode plan --allow-dangerously-skip-permissions --thinking-display summarized "\${_OMC_DISALLOWED_TOOLS[@]}"'
118+
alias claude='CLAUDE_CODE_ADDITIONAL_DIRECTORIES_CLAUDE_MD=1 "\$_CLAUDE_WRAP" "\$_CLAUDE_BIN" --system-prompt-file "\$CLAUDE_CONFIG_DIR/main-system-prompt.md" --permission-mode plan --allow-dangerously-skip-permissions --thinking-display summarized "\${_OMC_DISALLOWED_TOOLS[@]}"'
119119
alias ccraw='command "\$_CLAUDE_BIN"'
120-
alias ccw='CLAUDE_CODE_ADDITIONAL_DIRECTORIES_CLAUDE_MD=1 "\$_CLAUDE_WRAP" "\$_CLAUDE_BIN" --system-prompt-file "\$CLAUDE_CONFIG_DIR/writing-system-prompt.md" --permission-mode plan --allow-dangerously-skip-permissions "\${_OMC_DISALLOWED_TOOLS[@]}"'
121-
alias cc-orc='CLAUDE_CODE_ADDITIONAL_DIRECTORIES_CLAUDE_MD=1 "\$_CLAUDE_WRAP" "\$_CLAUDE_BIN" --system-prompt-file "\$CLAUDE_CONFIG_DIR/orchestrator-system-prompt.md" --permission-mode plan --allow-dangerously-skip-permissions "\${_OMC_DISALLOWED_TOOLS[@]}"'
120+
alias ccw='CLAUDE_CODE_ADDITIONAL_DIRECTORIES_CLAUDE_MD=1 "\$_CLAUDE_WRAP" "\$_CLAUDE_BIN" --system-prompt-file "\$CLAUDE_CONFIG_DIR/writing-system-prompt.md" --permission-mode plan --allow-dangerously-skip-permissions --thinking-display summarized "\${_OMC_DISALLOWED_TOOLS[@]}"'
121+
alias cc-orc='CLAUDE_CODE_ADDITIONAL_DIRECTORIES_CLAUDE_MD=1 "\$_CLAUDE_WRAP" "\$_CLAUDE_BIN" --system-prompt-file "\$CLAUDE_CONFIG_DIR/orchestrator-system-prompt.md" --permission-mode plan --allow-dangerously-skip-permissions --thinking-display summarized "\${_OMC_DISALLOWED_TOOLS[@]}"'
122122
alias ccr-apply='codeforge config apply && (ccr restart 2>/dev/null || ccr start) && echo "CCR config applied and restarted"'
123123
alias omc-apply='codeforge config apply && (omc proxy restart 2>/dev/null || omc proxy start) && echo "OMC config applied and proxy restarted"'
124124

0 commit comments

Comments
 (0)