feat(config): add enable-awesome experiment to show custom ASCII art

- Add ENABLE_AWESOME experiment flag (45758820).
- Update settings schema and regenerate JSON schema.
- Implement config.isAwesomeEnabled() wrapper.
- Add 'matt' ASCII art and update Header component to use it.
- Add unit tests for the new flag.
This commit is contained in:
mkorwel
2026-02-19 21:24:42 -06:00
committed by Matt Korwel
parent 24bbeb11c7
commit 14a7be90d4
8 changed files with 64 additions and 1 deletions
@@ -2217,6 +2217,15 @@ const SETTINGS_SCHEMA = {
'Enable the experimental Topic & Update communication model for reduced chattiness and structured progress reporting.',
showInDialog: true,
},
'enable-awesome': {
type: 'boolean',
label: 'Enable Awesome',
category: 'Experimental',
requiresRestart: false,
default: false,
description: "When enabled, the ASCII art says 'matt'.",
showInDialog: true,
},
},
},
extensions: {