Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v1.0.71 Home All releases olderv1.0.70 v1.0.72newer
Claude Code v1.0.71

StatusLine Display

What: Customizable status line at the bottom of your terminal showing contextual information Why: Provides at-a-glance information about your current session, model, and working directory How to use:

# Configure in ~/.claude/settings.json
{
  "statusLine": {
    "type": "command",
    "command": "cat | jq -r '\"\\(.model.display_name) in \\(.workspace.current_dir)\"'",
    "padding": 1
  }
}

Details:

  • Receives JSON input with session_id, model info, workspace paths, and more
  • Updates every 300ms (debounced) to show current context
  • Can display any command output, limited to first line
  • Supports ANSI color codes for custom styling

See this entry in the whole of v1.0.71 →