chore: remove kyleosophy easter egg#24174
Merged
f0ssel merged 3 commits intorelease/2.32from Apr 9, 2026
Merged
Conversation
Remove the Kyleosophy alternative completion chimes feature (added in PR #23891). The original completion chime, ChimeButton, and cross-tab dedup logic are preserved. - Delete chime_1.mp3 through chime_8.mp3 static assets - Remove getKylesophyEnabled, setKylesophyEnabled, isKylesophyForced, KYLEOSOPHY_SOUNDS, lastSoundUrl from chime.ts - Revert playChimeAudio/playChime to original single-sound signatures - Remove kyleosophy tests and stories - Remove Kyleosophy settings toggle from AgentSettingsBehaviorPageView (cherry picked from commit d03a7c8)
Contributor
There was a problem hiding this comment.
Pull request overview
Removes the “Kyleosophy” alternative completion-chime easter egg from the Agents UI by deleting the extra audio assets, removing the preference/toggle wiring, and reverting the chime helper back to always using the default /chime.mp3.
Changes:
- Remove Kyleosophy preference helpers + random sound selection from
utils/chime.tsand prune related tests. - Remove the Kyleosophy toggle section from the Agent settings behavior page and its Storybook stories.
- Add planning docs for a future
AgentSettingsBehaviorPageViewdecomposition effort.
Reviewed changes
Copilot reviewed 6 out of 14 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| site/static/chime_1.mp3 | Removes Kyleosophy audio asset. |
| site/static/chime_2.mp3 | Removes Kyleosophy audio asset. |
| site/static/chime_3.mp3 | Removes Kyleosophy audio asset. |
| site/static/chime_4.mp3 | Removes Kyleosophy audio asset. |
| site/static/chime_5.mp3 | Removes Kyleosophy audio asset. |
| site/static/chime_6.mp3 | Removes Kyleosophy audio asset. |
| site/static/chime_7.mp3 | Removes Kyleosophy audio asset. |
| site/static/chime_8.mp3 | Removes Kyleosophy audio asset. |
| site/src/pages/AgentsPage/utils/chime.ts | Reverts chime logic to always play /chime.mp3 and removes Kyleosophy-related exports/state. |
| site/src/pages/AgentsPage/utils/chime.test.ts | Deletes Kyleosophy-related test coverage and imports. |
| site/src/pages/AgentsPage/AgentSettingsBehaviorPageView.tsx | Removes the Kyleosophy settings UI and its associated state/imports. |
| site/src/pages/AgentsPage/AgentSettingsBehaviorPageView.stories.tsx | Removes Kyleosophy-related Storybook stories. |
| docs/plans/agent-settings-behavior-decomposition.md | Adds a plan doc (includes Kyleosophy removal as Phase 0 plus future refactor steps). |
| docs/plans/agent-settings-behavior-decomposition-research.md | Adds research notes supporting the decomposition plan. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
f0ssel
approved these changes
Apr 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Remove the Kyleosophy alternative completion chimes easter egg (added in #23891).
(cherry picked from commit d03a7c8)