Claude Code v2.1.139 Adds /goal Command for Async Long-Running Tasks

✍️ OpenClawRadar📅 Published: May 12, 2026🔗 Source
Claude Code v2.1.139 Adds /goal Command for Async Long-Running Tasks
Ad

Claude Code just shipped v2.1.139 with a major async mode — the new /goal command. This is a proper fire-and-forget loop: set a completion condition like "all tests pass and the PR is ready", and Claude will keep grinding across turns until it hits that condition.

How It Works

/goal takes a natural language description of what "done" looks like. Example:

/goal all tests pass and the PR is ready

Claude then runs autonomously, looping on tasks, checking condition after each turn, and only stopping when the condition is met (or it gets stuck). You can walk away and come back later — no need to keep prompting.

Ad

New Agents View

Alongside /goal, the update adds a claude agents view that shows every active session in three states: working, blocked on you, or done. This addresses the pain point of juggling multiple sessions and losing track of which one needs your input.

Notable Details

  • Version: v2.1.139 (104 changes in this release)
  • This is the first fire-and-forget loop Claude Code has shipped.
  • Upgrade via: claude upgrade or reinstall.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Root Cause of Claude Code VS Code Extension Session Title Corruption Identified
Tools

Root Cause of Claude Code VS Code Extension Session Title Corruption Identified

A developer has identified the architectural root cause for session title corruption in Claude Code's VS Code extension, affecting 20+ GitHub issues. The problem stems from the extension reading titles via a raw string search in session files, leading to three failure modes.

OpenClawRadar
Codeflash Analysis: 118 Performance Bugs Found in Two PRs Written with Claude Code
Tools

Codeflash Analysis: 118 Performance Bugs Found in Two PRs Written with Claude Code

Codeflash measured performance of two major features built with Claude Code and found 118 functions running up to 446x slower than necessary. The analysis revealed patterns of inefficient algorithms, redundant computation, missing caching, and suboptimal data structures.

OpenClawRadar
MCP Server Directory Lists 1000+ Servers Across 20 Categories
Tools

MCP Server Directory Lists 1000+ Servers Across 20 Categories

A curated directory provides install commands and config snippets for over 1000 MCP servers across categories including databases, developer tools, browser automation, AI/ML, and cloud/devops. The directory is free to browse and submit to.

OpenClawRadar
Measuring Claude Code MCP Stack: Cache Friendliness vs. Byte Savings, and a 2-Line Fix for Prompt Cache
Tools

Measuring Claude Code MCP Stack: Cache Friendliness vs. Byte Savings, and a 2-Line Fix for Prompt Cache

Greg Shevchenko benchmarks MCP compressors and retrieval layers on two axes: byte savings and cache friendliness. A 2-line fix (sort rg hits, sort map entries) boosts cache from ~0% to 100% with no byte-savings loss. Open-source harness included.

OpenClawRadar