SpyBara
Go Premium

Documentation 2026-01-29 21:03 UTC to 2026-01-30 18:07 UTC

4 files changed +29 −7. View all changes and history on the product overview
2026
Sat 31 03:42 Fri 30 18:07 Thu 29 21:03 Wed 28 15:06 Tue 27 21:01 Mon 26 21:03 Sun 25 03:34 Sat 24 03:29 Fri 23 21:01 Thu 22 21:03 Wed 21 21:05 Tue 20 21:03 Mon 19 21:01 Fri 16 21:01 Wed 14 06:02 Mon 12 21:02 Sun 11 18:02 Sat 10 21:01 Fri 9 21:01 Thu 8 21:02 Wed 7 21:01 Tue 6 21:01 Sat 3 18:02

analytics.md +5 −1

Details

27### Enable contribution metrics27### Enable contribution metrics

28 28 

29<Note>29<Note>

30 Contribution metrics are in public beta and available on Claude for Teams and Claude for Enterprise plans.30 Contribution metrics are in public beta and available on Claude for Teams and Claude for Enterprise plans. These metrics only cover users within your claude.ai organization. Usage through the Claude Console API or third-party integrations is not included.

31</Note>31</Note>

32 32 

33Usage and adoption data is available for all Claude for Teams and Claude for Enterprise accounts. Contribution metrics require additional setup to connect your GitHub organization.33Usage and adoption data is available for all Claude for Teams and Claude for Enterprise accounts. Contribution metrics require additional setup to connect your GitHub organization.


61 61 

62### Review summary metrics62### Review summary metrics

63 63 

64<Note>

65 These metrics are deliberately conservative and represent an underestimate of Claude Code's actual impact. Only lines and PRs where there is high confidence in Claude Code's involvement are counted.

66</Note>

67 

64The dashboard displays these summary metrics at the top:68The dashboard displays these summary metrics at the top:

65 69 

66* **PRs with CC**: total count of merged pull requests that contain at least one line of code written with Claude Code70* **PRs with CC**: total count of merged pull requests that contain at least one line of code written with Claude Code

headless.md +17 −0

Details

77 ```77 ```

78</Tip>78</Tip>

79 79 

80### Stream responses

81 

82Use `--output-format stream-json` with `--verbose` and `--include-partial-messages` to receive tokens as they're generated. Each line is a JSON object representing an event:

83 

84```bash theme={null}

85claude -p "Explain recursion" --output-format stream-json --verbose --include-partial-messages

86```

87 

88The following example uses [jq](https://jqlang.github.io/jq/) to filter for text deltas and display just the streaming text. The `-r` flag outputs raw strings (no quotes) and `-j` joins without newlines so tokens stream continuously:

89 

90```bash theme={null}

91claude -p "Write a poem" --output-format stream-json --verbose --include-partial-messages | \

92 jq -rj 'select(.type == "stream_event" and .event.delta.type? == "text_delta") | .event.delta.text'

93```

94 

95For programmatic streaming with callbacks and message objects, see [Stream responses in real-time](https://platform.claude.com/docs/en/agent-sdk/streaming-output) in the Agent SDK documentation.

96 

80### Auto-approve tools97### Auto-approve tools

81 98 

82Use `--allowedTools` to let Claude use certain tools without prompting. This example runs a test suite and fixes failures, allowing Claude to execute Bash commands and read/edit files without asking for permission:99Use `--allowedTools` to let Claude use certain tools without prompting. This example runs a test suite and fixes failures, allowing Claude to execute Bash commands and read/edit files without asking for permission:

settings.md +1 −0

Details

167| `alwaysThinkingEnabled` | Enable [extended thinking](/en/common-workflows#use-extended-thinking-thinking-mode) by default for all sessions. Typically configured via the `/config` command rather than editing directly | `true` |167| `alwaysThinkingEnabled` | Enable [extended thinking](/en/common-workflows#use-extended-thinking-thinking-mode) by default for all sessions. Typically configured via the `/config` command rather than editing directly | `true` |

168| `plansDirectory` | Customize where plan files are stored. Path is relative to project root. Default: `~/.claude/plans` | `"./plans"` |168| `plansDirectory` | Customize where plan files are stored. Path is relative to project root. Default: `~/.claude/plans` | `"./plans"` |

169| `showTurnDuration` | Show turn duration messages after responses (e.g., "Cooked for 1m 6s"). Set to `false` to hide these messages | `true` |169| `showTurnDuration` | Show turn duration messages after responses (e.g., "Cooked for 1m 6s"). Set to `false` to hide these messages | `true` |

170| `spinnerVerbs` | Customize the action verbs shown in the spinner and turn duration messages. Set `mode` to `"replace"` to use only your verbs, or `"append"` to add them to the defaults | `{"mode": "append", "verbs": ["Pondering", "Crafting"]}` |

170| `language` | Configure Claude's preferred response language (e.g., `"japanese"`, `"spanish"`, `"french"`). Claude will respond in this language by default | `"japanese"` |171| `language` | Configure Claude's preferred response language (e.g., `"japanese"`, `"spanish"`, `"french"`). Claude will respond in this language by default | `"japanese"` |

171| `autoUpdatesChannel` | Release channel to follow for updates. Use `"stable"` for a version that is typically about one week old and skips versions with major regressions, or `"latest"` (default) for the most recent release | `"stable"` |172| `autoUpdatesChannel` | Release channel to follow for updates. Use `"stable"` for a version that is typically about one week old and skips versions with major regressions, or `"latest"` (default) for the most recent release | `"stable"` |

172| `spinnerTipsEnabled` | Show tips in the spinner while Claude is working. Set to `false` to disable tips (default: `true`) | `false` |173| `spinnerTipsEnabled` | Show tips in the spinner while Claude is working. Set to `false` to disable tips (default: `true`) | `false` |

setup.md +6 −6

Details

8 8 

9## System requirements9## System requirements

10 10 

11* **Operating Systems**: macOS 13.0+, Ubuntu 20.04+/Debian 10+, or Windows 10+ (with WSL 1, WSL 2, or Git for Windows)11* **Operating Systems**: macOS 13.0+, Ubuntu 20.04+/Debian 10+, or Windows 10 1809+ / Windows Server 2019+ (with WSL 1, WSL 2, or Git for Windows)

12* **Hardware**: 4 GB+ RAM12* **Hardware**: 4 GB+ RAM

13* **Network**: Internet connection required (see [network configuration](/en/network-config#network-access-requirements))13* **Network**: Internet connection required (see [network configuration](/en/network-config#network-access-requirements))

14* **Shell**: Works best in Bash or Zsh14* **Shell**: Works best in Bash or Zsh


27 <Tab title="Native Install (Recommended)">27 <Tab title="Native Install (Recommended)">

28 **macOS, Linux, WSL:**28 **macOS, Linux, WSL:**

29 29 

30 ```bash theme={null}30 ```bash theme={null} theme={null} theme={null} theme={null} theme={null}

31 curl -fsSL https://claude.ai/install.sh | bash31 curl -fsSL https://claude.ai/install.sh | bash

32 ```32 ```

33 33 

34 **Windows PowerShell:**34 **Windows PowerShell:**

35 35 

36 ```powershell theme={null}36 ```powershell theme={null} theme={null} theme={null} theme={null} theme={null}

37 irm https://claude.ai/install.ps1 | iex37 irm https://claude.ai/install.ps1 | iex

38 ```38 ```

39 39 

40 **Windows CMD:**40 **Windows CMD:**

41 41 

42 ```batch theme={null}42 ```batch theme={null} theme={null} theme={null} theme={null} theme={null}

43 curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd43 curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

44 ```44 ```

45 45 


49 </Tab>49 </Tab>

50 50 

51 <Tab title="Homebrew">51 <Tab title="Homebrew">

52 ```sh theme={null}52 ```sh theme={null} theme={null} theme={null} theme={null} theme={null}

53 brew install --cask claude-code53 brew install --cask claude-code

54 ```54 ```

55 55 


59 </Tab>59 </Tab>

60 60 

61 <Tab title="WinGet">61 <Tab title="WinGet">

62 ```powershell theme={null}62 ```powershell theme={null} theme={null} theme={null} theme={null} theme={null}

63 winget install Anthropic.ClaudeCode63 winget install Anthropic.ClaudeCode

64 ```64 ```

65 65