Problem
Claude Code by default shows "Try..." suggestions after conversations, such as:
Try "write a test for <filepath>"
Try "fix lint errors"
If you find these suggestions distracting, you can disable them through configuration.
Remote Config Gets Overwritten
Claude Code uses GrowthBook as a feature toggle system. These configurations are stored in ~/.claude.json:
"cachedGrowthBookFeatures": {
"tengu_willow_mode": "hint_v2",
"tengu_prompt_suggestion": true
}These values are remotely cached, periodically refreshed and overwritten by Anthropic's server. Direct modification is ineffective.
Solution
Add officially supported configuration in ~/.claude/settings.json:
{
"promptSuggestionEnabled": false
}This local configuration has higher priority than remotely delivered GrowthBook configuration.
Configuration Explanation
| Setting | Purpose |
|---|---|
promptSuggestionEnabled | Disable all prompt suggestions in input box and after conversations |
tengu_willow_mode | Controls "Try..." suggestions after conversations (gets remotely overwritten) |
tengu_prompt_suggestion | Controls gray placeholder hints in input box (gets remotely overwritten) |
Verification
After modification, restart Claude Code, suggestions should no longer appear.
cat ~/.claude/settings.jsonAdditional Notes
tengu_*is Anthropic's internal codename, not Tencent Cloud configuration- GrowthBook is Anthropic's feature toggle service for dynamically controlling client features
- If you want to restore suggestions later, change
promptSuggestionEnabledtotrueor remove the configuration
Related Links
Last updated: 2026-05-04