Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/coding-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

### Fixed

- Restored the literal `Working` text shimmer on turn start by supplying the generated working indicator options.

### Removed

## [2026.9.5] - 2026-09-05
Expand Down
22 changes: 22 additions & 0 deletions packages/coding-agent/src/modes/interactive/changes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@

## 2026-09-05 - Restore Working text shimmer on turn start

### What changed

- `packages/coding-agent/src/modes/interactive/interactive-mode.ts` now supplies the generated working indicator options when a turn starts.

### Why

- The turn-start path previously passed the unset raw options field, disabling the literal `Working` text shimmer formatter.

### Why this lives in the fork

- Interactive mode owns the working status indicator and its animation configuration.

### Why an extension could not handle it

- `InteractiveMode.showWorkingStatusIndicator` is engine-owned interactive TUI behavior below the extension API.

### Expected merge conflict zones

- LOW: `InteractiveMode.showWorkingStatusIndicator` working-indicator construction.

## 2026-09-05 - Render Astra configuration updates as non-interactive session entries

### What changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3156,7 +3156,7 @@ export class InteractiveMode {
new WorkingStatusIndicator(
this.ui,
this.workingMessage ?? this.defaultWorkingMessage,
this.workingIndicatorOptions,
this.getWorkingIndicatorOptions(),
),
);
}
Expand Down