Skip to content

No Feedback Prompts

Remove every feedback survey prompt Claude Code can show you.

ID no-feedback · Default on · Compatible * · Source

What it does

Hides session rating prompts ("How is Claude doing this session?"), post-compact surveys, memory surveys, transcript share prompts, and frustration-detection prompts. All of them.

How it works

Everything those prompts render comes from a single React component called FeedbackSurvey. The patch finds it by searching for the unique string " Thanks for sharing your transcript!" (with the leading space, which disambiguates it from any other occurrence), picks the smallest enclosing function — the component itself, not a wrapper — and inserts return null; as the first statement of its body. The component still mounts but immediately returns nothing.

Released under the MIT License.