logoalt Hacker News

wood_spirittoday at 6:41 AM1 replyview on HN

Thank you thank you you give me hope :)

But how do you see the current thinking level and how do you change it? I’ve been clicking around and searching and adding “effortLevel”:”high” to .claude/settings.json but no idea if this actually has any effect etc.


Replies

varshartoday at 8:51 AM

As per Anthropic support (for Mac and Linux respectively) -

  $ echo 'export ANTHROPIC_EFFORT="high"' >> ~/.zshrc source ~/.zshrc
  $ echo 'export ANTHROPIC_EFFORT="high"' >> ~/.bashrc source ~/.bashrc
I prefer settings.json (VSCode) -

  "claudeCode.environmentVariables": [
    { "name": "ANTHROPIC_MODEL", "value": "claude-opus-4-6" },
    { "name": "CLAUDE_CODE_EFFORT_LEVEL", "value": "high" }
  ], ...