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.44 Home All releases olderv1.0.43 v1.0.45newer
Claude Code v1.0.44

New Features

1. Export Conversation Command 🆕

  • Added new /export command to save conversation history
  • Usage: /export [filename] or just /export
  • Export methods:
  • Copy to clipboard - Copies the entire conversation to system clipboard
  • Save to file - Saves conversation as a text file in the current directory
  • Automatically generates filename based on conversation content and timestamp if not specified
  • Example: conversation-2024-12-16-implement-dark-mode.txt

2. Process Suspension Support (Ctrl+Z) 🆕

  • Added ability to suspend Claude Code using Ctrl+Z (like traditional Unix applications)
  • When suspended, displays: "Claude Code has been suspended. Run fg to bring Claude Code back."
  • Resume with fg command to return to Claude Code
  • Note: Ctrl+U now handles undo operations (previously Ctrl+Z)

3. GitHub Actions OAuth Authentication 🆕

  • Added OAuth token support for GitHub Actions setup
  • New authentication flow creates long-lived tokens (1 year expiry)
  • Stores OAuth tokens as CLAUDE_CODE_OAUTH_TOKEN secret
  • Environment variable support: CLAUDE_CODE_OAUTH_TOKEN
  • Improved security for GitHub Actions integration

4. MCP Resource Management Improvements

  • Enhanced MCP (Model Context Protocol) resource handling
  • New resource listing and reading capabilities
  • Better integration with MCP servers and resources
  • Support for strictMcpConfig parameter for stricter configuration validation

See this entry in the whole of v1.0.44 →