diff --git a/CHANGELOG.md b/CHANGELOG.md
index 93fb8cdd..5b40469c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
## [Unreleased]
+### Changed
+
+- Clarify `Compact tool activity` semantics: the setting now describes compact inline activity that preserves the agent timeline, matching the current long-running turn behavior where thinking cards, visible progress notes, and tool Activity bursts stay in chronological order instead of being described as one top-of-turn collapsed block.
+
## [v0.51.82] — 2026-05-17 — Release BF (stage-375 — 2-PR batch — table renderer pipe protection + Catppuccin appearance skin)
### Added
diff --git a/api/config.py b/api/config.py
index ea890e63..6320ed09 100644
--- a/api/config.py
+++ b/api/config.py
@@ -4057,7 +4057,7 @@ _SETTINGS_DEFAULTS = {
"rtl": False, # right-to-left chat layout (chat messages + composer only)
"notifications_enabled": False, # browser notification when tab is in background
"show_thinking": True, # show/hide thinking/reasoning blocks in chat view
- "simplified_tool_calling": True, # group tools/thinking into one quiet activity disclosure
+ "simplified_tool_calling": True, # render tools/thinking as compact inline timeline activity
"api_redact_enabled": True, # redact sensitive data (API keys, secrets) from API responses
"sidebar_density": "compact", # compact | detailed
"auto_title_refresh_every": "0", # adaptive title refresh: 0=off, 5/10/20=every N exchanges
diff --git a/static/index.html b/static/index.html
index b56dda19..271cc33d 100644
--- a/static/index.html
+++ b/static/index.html
@@ -1047,7 +1047,7 @@
Compact tool activity
-
Group thinking and tool calls into one collapsed activity section per assistant turn.
+ Show thinking and tool calls as compact inline activity while preserving the agent timeline.