Large integer precision error in Bash command output rendering · Issue #11506 · anthropics/claude-code · GitHub

Cloud Code incorrectly displays large integers in Bash command output, showing a different value than what is actually output by the command.

Steps to reproduce

  1. Run the following command in Cloud Code:
echo '348555896224571969'

or with jq:

echo '{"value": 348555896224571969}' | jq -c .value

expected behavior

Cloud Code should appear: 348555896224571969

actual behavior

Cloud Code displays: 348555896224571970 (off 1)

verification

Running the same command in native terminal gives the correct output: 348555896224571969

Environment

  • Cloud Code Version: v2.0.37
  • Model: Sonnet 4.5 (Cloud Max)
  • Platform: macOS (Darwin 24.3.0)

screenshot

image



Leave a Comment