Stream‑stall ヒント文言とタイミングの更新 (v2.1.185)
Claude Code v2.1.185 では、ストリームが停止した際に表示されるヒントメッセージとトリガー条件を変更し、ユーザーへの情報提供を改善しました。
背景
ストリーム停止時のヒント文言とタイミングが更新されました。 従来は "No response from API · Retrying in …" と表示され、10 秒間の無通信で再試行が開始されていました。この表現はユーザーに誤解を与えるケースがあり、より具体的な情報提供が求められていました。
技術的な変更
CHANGELOG.md に新エントリが追加され、変更内容が明示されています。 追加されたセクションは以下の通りです。
@@ -1,5 +1,9 @@
# Changelog
+## 2.1.185
+
+- The stream-stall hint now reads "Waiting for API response · will retry in …" instead of "No response from API · Retrying in …", and triggers after 20s of silence instead of 10s
+
## 2.1.183
- Improved auto mode safety: destructive git commands (`git reset --hard`, `git checkout -- .`, `git clean -fd`, `git stash drop`) are now blocked when you didn't ask to discard local work, `git commit --amend` is blocked when the commit wasn't made by the agent this session, and `terraform destroy`/`pulumi destroy`/`cdk destroy` are blocked unless you asked for the specific stack
feed.xml でも同様のリリース情報が Atom フィードに反映されました。 既存の <updated> タグは新しいリリース日時に更新され、v2.1.185 用の <entry> が追加されています。不要になった古いエントリ (v2.1.159) は削除されています。
@@ -6,7 +6,14 @@
<author><name>Anthropic</name></author>
<link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/blob/main/CHANGELOG.md"/>
<link rel="self" type="application/atom+xml" href="https://raw.githubusercontent.com/anthropics/claude-code/main/feed.xml"/>
- <updated>2026-06-19T01:20:44Z</updated>
+ <updated>2026-06-20T20:59:12Z</updated>
+ <entry>
+ <id>https://github.com/anthropics/claude-code/releases/tag/v2.1.185</id>
+ <title>Claude Code v2.1.185</title>
+ <link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.185"/>
+ <updated>2026-06-20T20:59:12Z</updated>
+ <content type="html"><p>• The stream-stall hint now reads "Waiting for API response · will retry in …" instead of "No response from API · Retrying in …", and triggers after 20s of silence instead of 10s</p></content>
+ </entry>
<entry>
<id>https://github.com/anthropics/claude-code/releases/tag/v2.1.183</id>
@@ -434,11 +441,4 @@
<p>• Removed the JetBrains plugin install suggestion from startup</p>
<p>• Renamed the dynamic-workflow trigger keyword from workflow to ultracode. The word "workflow" no longer triggers a run; asking for one in your own words still works. The trigger keyword is highlighted in violet in the prompt input</p></content>
</entry>
- <entry>
- <id>https://github.com/anthropics/claude-code/releases/tag/v2.1.159</id>
- <title>Claude Code v2.1.159</title>
- <link rel="alternate" type="text/html" href="https://github.com/anthropics/claude-code/releases/tag/v2.1.159"/>
- <updated>2026-05-31T19:42:41Z</updated>
- <content type="html"><p>• Internal infrastructure improvements (no user-facing changes)</p></content>
- </entry>
</feed>
設計判断
変更はユーザー向けメッセージと公開フィードの更新に留まります。 実装コードには影響がなく、既存の機能や API が変更されることはありません。そのため、互換性リスクはゼロです。ドキュメントと Atom フィードを同時に更新することで、リリース情報が一貫して伝搬され、外部ツールが最新のヒント内容を取得できるようになります。
まとめ
この PR は、ストリーム停止時のヒント文言とトリガー条件を改良し、CHANGELOG と Atom フィードに反映させたドキュメント更新です。機能面での影響はありませんが、ユーザー体験と情報公開の一貫性が向上しました。