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
| ### Frontend tasks | |
| For [frontend design tasks](https://developers.openai.com/blog/designing-delightful-frontends-with-gpt-5-4), avoid generic, overbuilt layouts. | |
| **Hard rules** | |
| - **One composition:** The first viewport should read as a single composition, not a dashboard unless it actually is one. | |
| - **Brand first:** On branded pages, make the brand or product name hero-level. It should not be reduced to nav text or an eyebrow, and no headline should overpower it. | |
| - **Brand test:** If removing the nav makes the first viewport feel like another brand, branding is too weak. | |
| - **Typography:** Use expressive, intentional fonts. Avoid default stacks (Inter, Roboto, Arial, system). | |
| - **Background:** Avoid flat, single-color backgrounds; use gradients, images, or subtle patterns. |
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
| #!/usr/bin/osascript | |
| on run argv | |
| if (count of argv) is 0 then | |
| set deviceName to "Living Room" | |
| else | |
| set deviceName to item 1 of argv | |
| end if | |
| tell application "System Events" |
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
Show hidden characters
| { | |
| "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", | |
| "extends": ["ultracite"], | |
| "formatter": { | |
| "indentStyle": "tab", | |
| "indentWidth": 4, | |
| "lineWidth": 80 | |
| }, | |
| "javascript": { | |
| "formatter": { |