-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Add color-filters extension #24955
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Add color-filters extension #24955
Conversation
- Optimize performance and add comprehensive documentation - Initial commit: Raycast color filters extension
|
Congratulations on your new Raycast extension! 🚀 We're currently experiencing a high volume of incoming requests. As a result, the initial review may take up to 10-15 business days. Once the PR is approved and merged, the extension will be available on our Store. |
Greptile OverviewGreptile SummaryAdds a new Color Filters extension that enables users to control macOS Color Filters directly from Raycast using AppleScript UI automation. The extension provides 8 commands for toggling and switching between 5 filter types (Grayscale, Protanopia, Deuteranopia, Tritanopia, Color Tint). Key Changes:
Issues Found:
Confidence Score: 3/5
Important Files Changed
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
4 files reviewed, 4 comments
| @@ -0,0 +1,24 @@ | |||
| # Changelog | |||
|
|
|||
| ## [Initial Release] - 2026-01-29 | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use {PR_MERGE_DATE} placeholder instead of hardcoded date
| ## [Initial Release] - 2026-01-29 | |
| ## [Initial Release] - {PR_MERGE_DATE} |
Context Used: Rule from dashboard - What: Changelog entries must use {PR_MERGE_DATE} placeholder in titles, be placed at the top of th... (source)
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
| - `/Users/tj/TJDevelopment/color-filters-raycast/src/color-filters.ts` (lines 35-36) | ||
| - `/Users/tj/.local/bin/color-filter` (lines 8-9) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove hardcoded personal file paths from documentation - these paths (/Users/tj/...) won't exist for other users/maintainers
| // 2. Run: osascript -e 'tell application "System Events" to tell process "System Settings" to get entire contents of window 1' | ||
| // 3. Search the output for "Color Filters" checkbox and popup button | ||
| // 4. Update the paths below with the new hierarchy | ||
| // Also update: /Users/tj/.local/bin/color-filter (lines 8-9) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove reference to personal file path (/Users/tj/.local/bin/color-filter) - this won't exist for other users/maintainers
| { | ||
| "name": "select-color-filter", | ||
| "title": "Select Color Filter", | ||
| "description": "Choose a color filter from a list", | ||
| "mode": "view" | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing required metadata/ folder with Raycast-styled screenshots. The select-color-filter command is a view-type command, which requires professional metadata screenshots for the Raycast store. See: https://developers.raycast.com/basics/prepare-an-extension-for-store#screenshots
Context Used: Rule from dashboard - What: Extensions with view-type commands must include a metadata/ folder containing Raycast-styled... (source)




Description
Control macOS Color Filters directly from Raycast. This extension allows users to quickly toggle color filters on/off and switch between all 5 macOS filter types without opening System Settings.
Features:
Use Cases:
Technical Implementation:
Important Notes:
MAINTENANCE.mdfor future updatesCommands:
Screencast
Searching for Toggle Command
All Available Commands
Interactive Filter Selection View
Clean Result
Checklist
npm run buildand tested this distribution build in Raycastassetsfolder are used by the extension itselfREADMEare placed outside of themetadatafolder