← Back to all entries
2026-02-10 🧭 Daily News

Cowork Lands on Windows & Claude Code Gets Faster Multi-Agent Infrastructure

Cowork Lands on Windows & Claude Code Gets Faster Multi-Agent Infrastructure — visual for 2026-02-10

🧭 Claude Cowork Arrives on Windows — Full Feature Parity from Day One

Claude Cowork is now available on Windows, bringing the file-managing desktop agent to roughly 70% of the global desktop computing market. The Windows release ships with full feature parity with the macOS version: file access, multi-step task execution, Office integration (the Excel and PowerPoint integrations previewed yesterday), and MCP connectors for integrating external services. Persistent agent threads are available to Pro and Max plan subscribers.

The launch is particularly significant for enterprise customers whose IT fleets are predominantly Windows — a segment that had been waiting since the January macOS launch. Microsoft's own IT team was among the early access participants cited in Anthropic's announcement, which noted that Windows Cowork integrates with Windows Credential Manager for secure secrets handling.

Windows-specific setup note: Cowork on Windows requires Windows 11 or Windows 10 version 22H2 or later. The workspace folder designation uses standard Windows paths — use forward slashes in CLAUDE.md references even on Windows, as the agent normalises path separators internally.

Cowork Windows desktop automation enterprise retrospective

🧭 Claude Code: 500ms Faster Startup & Native Git Worktree Agent Isolation

A Claude Code point release this week delivers two improvements that developers using Agent Teams will immediately notice. First, a 500ms startup-time reduction achieved by deferring SessionStart hook execution until after the initial UI render — making Claude Code feel substantially snappier when opening new sessions. Second, agents running inside Agent Teams sessions can now declaratively run in isolated git worktrees, so each parallel subagent operates on its own branch without file-system collisions.

The worktree isolation flag is available as an opt-in property on any subagent spawned via TeammateTool, and integrates cleanly with existing PR review pipelines. Worktree startup time was also improved by reading git refs directly, skipping redundant remote fetches on large repositories.

// In your agent team configuration:
{
  "teammates": [
    {
      "role": "parser-agent",
      "worktree": true,
      "branch": "agent/parser-refactor"
    }
  ]
}
Claude Code performance multi-agent git worktrees retrospective