Add where-is-my-cursor extension#20892
Add where-is-my-cursor extension#20892raycastbot merged 2 commits intoraycast:mainfrom luciodaou:ext/where-is-my-cursor
Conversation
- fix - Icon - better readme - Initial release
|
Congratulations on your new Raycast extension! 🚀 Due to our current reduced availability during summer, 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. |
|
It dims the screen where is the cursors at. Only a small radius is not dimmed, so it's easy to locate the cursor. |
There was a problem hiding this comment.
Greptile Summary
This PR introduces a new "Where is my Cursor?" extension that provides a visual aid to help users locate their cursor on screen, particularly useful in multi-monitor setups. The extension consists of a single no-view command that executes a Swift binary (LocateCursor) located in the assets folder. When triggered, the Swift application dims the entire screen except for a clear circular area around the cursor position, making it easy to spot.
The implementation includes several key files: a package.json defining the extension metadata and single command, a main TypeScript file (where-is-my-cursor.ts) that executes the Swift binary using Node's exec() function, and the Swift source code (LocateCursor.swift) that creates an overlay window with semi-transparent dimming effects. The Swift implementation handles multi-screen environments by detecting which screen contains the cursor and creates a borderless, mouse-transparent overlay that automatically disappears after 1 second.
This extension addresses a common accessibility need where users lose track of their cursor, especially on large displays or multiple monitors. The approach of using a compiled Swift binary allows for system-level access to screen overlay functionality and cursor positioning that would be difficult to achieve through standard web technologies.
Confidence score: 0/5
- This PR contains critical security and compliance violations that make it unsafe to merge
- Score reflects the inclusion of a compiled binary executable and missing required files for new extensions
- Pay immediate attention to the binary executable in assets folder and missing metadata screenshots
Critical Issues Identified:
-
Binary Executable Violation: The PR includes a compiled binary file (
assets/LocateCursor) which violates Raycast extension guidelines. Extensions should not include compiled binaries as they cannot be audited for security, may not work across different architectures, and pose significant security risks. -
Missing Required Files:
- No
.prettierrcfile with required Raycast code style (printWidth: 120,singleQuote: false) - Missing
metadatafolder with screenshots (required for new extensions per guidelines) - Empty
main.tsxfile that should contain the primary command implementation
- No
-
Improper Error Handling: The
where-is-my-cursor.tsfile usesexec()without proper async/await handling, which could lead to race conditions and doesn't wait for command completion. -
PR Description Issues: The PR description is missing the required description explaining what the extension does and lacks a screencast/screenshot.
Additional Concerns:
- The Swift code uses hardcoded values (radius: 80, opacity: 0.8, duration: 1 second) that could be made configurable
- No validation that the binary exists or has proper execution permissions
- The approach bypasses Raycast's standard extension architecture
Context used:
Rule - Extensions must include at least one screenshot in a metadata folder for store submission. (link)
Rule - Extensions must include at least one screenshot in a metadata folder for store submission. (link)
Context - In Raycast extensions, ensure to use a consistent configuration for Prettier, specifically 'printWidth: 120' and 'singleQuote: false'. (link)
9 files reviewed, 2 comments
| export default async function main() { | ||
| exec(helperPath, (error) => { | ||
| if (error) { | ||
| showToast({ | ||
| style: Toast.Style.Failure, | ||
| title: "Failed to locate cursor", | ||
| message: error.message, | ||
| }); | ||
| } else { | ||
| showToast({ style: Toast.Style.Success, title: "Cursor located" }); | ||
| } | ||
| }); | ||
| } |
There was a problem hiding this comment.
logic: The async function doesn't await the exec completion. Consider using a Promise wrapper or execSync for proper async handling.
| exec(helperPath, (error) => { | ||
| if (error) { | ||
| showToast({ | ||
| style: Toast.Style.Failure, | ||
| title: "Failed to locate cursor", | ||
| message: error.message, | ||
| }); | ||
| } else { | ||
| showToast({ style: Toast.Style.Success, title: "Cursor located" }); | ||
| } | ||
| }); |
There was a problem hiding this comment.
style: Consider using showFailureToast from @raycast/utils instead of manually creating failure toasts: showFailureToast(error, { title: "Failed to locate cursor" });
| exec(helperPath, (error) => { | |
| if (error) { | |
| showToast({ | |
| style: Toast.Style.Failure, | |
| title: "Failed to locate cursor", | |
| message: error.message, | |
| }); | |
| } else { | |
| showToast({ style: Toast.Style.Success, title: "Cursor located" }); | |
| } | |
| }); | |
| exec(helperPath, (error) => { | |
| if (error) { | |
| showFailureToast(error, { title: "Failed to locate cursor" }); | |
| } else { | |
| showToast({ style: Toast.Style.Success, title: "Cursor located" }); | |
| } | |
| }); |
pernielsentikaer
left a comment
There was a problem hiding this comment.
Hi 👋
Looks good to me, approved 🔥
|
Published to the Raycast Store: |
|
🎉 🎉 🎉 Such a great contribution deserves a reward, but unfortunately we couldn't find your Raycast account based on your GitHub username (@luciodaou). |
* Add where-is-my-cursor extension - fix - Icon - better readme - Initial release * Update CHANGELOG.md and optimise images --------- Co-authored-by: raycastbot <bot@raycast.com>
- feat: bump to version 1.6 - Update CODEOWNERs - Add chainscout extension (#20712) - Update CODEOWNERs - tabler: add download actions (#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (#20686) - Update CODEOWNERs - Add jitsi extension (#20680) - Update CODEOWNERs - Add time-calculator extension (#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (#20647) - Update CODEOWNERs - Add synology-download-station extension (#20643) - Add owl extension (#20777) - Update CODEOWNERs - Update synonyms extension (#20879) - Update scira extension (#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (#20906) - [Color Picker] Fix Convert Color command (#20913) - Update v0-by-vercel extension (#20923) - Update CODEOWNERs - Add v0-by-vercel extension (#20792) - Add `.gitattributes` & get rid of `\r\n` (#20498) - [Brand Icons] Add support for creating social badges through cross-extension (#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (#20885) - Update certificate-viewer extension (#20894) - Update CODEOWNERs - Add yap extension (#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (#20427) - Update CODEOWNERs - Add emojis-com extension (#20875) - Add dodo-payments extension (#20669) - Update CODEOWNERs - Add twingate extension (#20580) - Update CODEOWNERs - Update brave-search-with-results extension (#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (#20892) - Update image-wallet extension (#20806) - Add proton-authenticator extension (#20773) - Update CODEOWNERs - Add sharding-tools extension (#20394) - Update CODEOWNERs - Add Save Link extension (#20521) - Update CODEOWNERs - Update display-modes extension (#20260) - Update CODEOWNERs - Update craftdocs extension (#19976) - Update CODEOWNERs - Update aerospace extension (#20847) - Update aws extension (#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (#20493) - Update at-profile extension (#20853) - Update aws extension (#20856) - Update grammari-x extension (#20848) - Update preferences.md (#20855) - Update youtrack extension (#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (#20553) - Update CODEOWNERs - Add kiro extension (#20790) - Update freeagent extension (#20844) - [Badges] Add shortcut for picking logo (#20849) - Update CODEOWNERs - Update svgl extension (#20852) - Add docklock-plus extension (#20419) - Update slugify-file-folder-names extension (#20528) - Update CODEOWNERs - Add freeagent extension (#20828) - Update CODEOWNERs - Update aws extension (#20809) - Update CODEOWNERs - Add sefaria extension (#20378) - Update CODEOWNERs - Add tokenizer extension (#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (#20817) - Add ag-audioflow extension (#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (#20830) - Update CODEOWNERs - Adding new social platforms (#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (#20813) - [GitLab] Add windows support (#20824) - Update raindrop-io extension (#20820) - Update CODEOWNERs - Update timezone-buddy extension (#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (#19456) - Fix token expired auth flow in SendAI extension (#20711) - Update CODEOWNERs - Add commit-issue-parser extension (#20395) - Update CODEOWNERs - Add ozbargain-deals extension (#20288) - Update mermaid-to-image extension (#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/justinlokos/Developer/raycast-extensions/extensions/granola/node_modules/.bin:/Users/justinlokos/Developer/raycast-extensions/extensions/granola/node_modules/.bin:/Users/justinlokos/Developer/raycast-extensions/extensions/node_modules/.bin:/Users/justinlokos/Developer/raycast-extensions/node_modules/.bin:/Users/justinlokos/Developer/node_modules/.bin:/Users/justinlokos/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/opt/homebrew/Cellar/node@20/20.19.0_1/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/justinlokos/.nvm/versions/node/v22.15.0/bin:/Users/justinlokos/.nvm/versions/node/v22.15.0/bin:/opt/homebrew/opt/node@20/bin:/Users/justinlokos/.rbenv/shims:/Users/justinlokos/.bun/bin:/Users/justinlokos/anaconda3/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/justinlokos/chromedriver:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/Library/TeX/texbin:/Applications/Wireshark.app/Contents/MacOS:/Users/justinlokos/.local/bin:/Users/justinlokos/.nvm/versions/node/v22.15.0/bin:/opt/homebrew/opt/node@20/bin:/Users/justinlokos/.rbenv/shims:/Users/justinlokos/.bun/bin:/Users/justinlokos/Library/pnpm:/Users/justinlokos/anaconda3/bin:/Users/justinlokos/.cargo/bin:/Users/justinlokos/.orbstack/bin:/Users/justinlokos/.cache/lm-studio/bin:/Users/justinlokos/Library/Android/sdk/tools:/Users/justinlokos/Library/Android/sdk/tools/bin:/Users/justinlokos/Library/Android/sdk/platform-tools:/Users/justinlokos/Developer/depot_tools:/Users/justinlokos/.cursor/extensions/ms-python.debugpy-2025.8.0-darwin-arm64/bundled/scripts/noConfigScripts:/Users/justinlokos/.orbstack/bin:/Users/justinlokos/.cache/lm-studio/bin:/Users/justinlokos/Library/Android/sdk/tools:/Users/justinlokos/Library/Android/sdk/tools/bin:/Users/justinlokos/Library/Android/sdk/platform-tools:/Users/justinlokos/Developer/depot_tools (#20458) - Update system-monitor extension (#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (#20558) - Update CODEOWNERs - Update wol extension (#20601) - Update CODEOWNERs - Add google-lens extension (#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (#20747) - Update visual-studio-code extension (#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (#20563) - Add dia-skills extension (#20548) - Update letterboxd extension (#20615) - end-of-life - Windows support (#20701) - Gemini/updatemodels-July (#20662) - Fix: Support currency format in transaction amount validation (#20399) - Update CODEOWNERs - feat: Update Rewind Icon (#20744) - Update CODEOWNERs - Update hypersonic extension (#20462) - Update CODEOWNERs - Update grok-ai extension (#20734) - Add network-proxy extension (#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (#20460) - Update defbro extension (#20367) - Show Artist\'s name when liking current track (#20583) - Update wechat-devtool extension (#20668) - Add character tabulation to Unicode Symbols extension (#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (#20168) - Update nusmods extension (#20625) - Update quick-notes extension (#20569) - Update CODEOWNERs - Deleted directory (#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (#20749) - Renames the extension from "hoarder" to "karakeep". (#20113) - Update pr-bot.ts (#20775) - Update CODEOWNERs - Update pomodoro extension (#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (#20221) - Update CODEOWNERs - Add VLC extension (#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (#20702) - Update Project Hub Extension - Add Recent Projects Section (#20561) - Update arc extension (#20761) - Update extension (#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (#20626) - Add `Host.io` extension - get full domain data for any domain (#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (#20502) - Update youversion-suggest extension (#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (#20357) - Deprecate Ghost Docs Extension (#20690) - Update CODEOWNERs - author update (#20705) - [Badges][Brand Icons] Bugfixes & improvements (#20545) - Update public_raycast_extensions.txt (#20688) - Update CODEOWNERs - Update pieces-raycast extension (#20296) - feat[Backstage plugin]: configurable Backstage API URL (#20398) - Update whisper-dictation extension (#20482) - Update CODEOWNERs - Update endoflife (#20651) - Update T3 chat\'s icon (#20599) - Update CODEOWNERs - feat: add windows support mymind extension (#20239) - [Mastodon] Add support for Windows (#20448) - [NeoDB] Add support for Windows (#20471) - Update CODEOWNERs - [NUSMods] Add support for Raycast Windows (#20240) - [Todoist] Windows support (#20487) - Update gdrive homepage url (#20608) - Update CODEOWNERs - Arc: Fix trying to open a tab with `open` (#20579) - Update Zerion author to original one (#20582) - Update CODEOWNERs - Update zerion author (#20581) - feat: Backstage plugin supports static token (#20383) - [groq] Remove Llama Guard 4 12B 128K (#20507) - Update CODEOWNERs - Add preference to toggle default reuse open GitHub search tab (resolves #20488) (#20489) - Add weread-sync extension (#20205) - Docs: update for the new API release - Update CODEOWNERs - Add cloudflare-email-routing extension (#20305) - Update dpm-lol extension (#20491) - macosicons: fix API error handling for non-JSON responses (#20172) - Update CODEOWNERs - [Perplexity] Add Perplexity desktop app support to extension (#20393) - Parse Zed local workspace paths from binary format correctly (#20086) - Docs: update for the new API release - Update prepare-an-extension-for-store.md (#20473) - Update wechat-devtool extension (#20406) - [Update] [IP Geolocation] Optimize extension icons (#20467) - Update CODEOWNERs - [World Clock] Avoid accessing the `.map` function on possibly undefined data (#20469) - Update CODEOWNERs - [Update] [Easy New File] Support Default Directory (#20449) - update pr merge dates (#20457) - Update grammaring extension (#20464) - [raycast2github] Fix name mapping (#20472) - Update CODEOWNERs - Add extension for opening new instances of apps (#20432) - Update CODEOWNERs - Update remove-paywall extension (#20331) - Update CODEOWNERs - Update registries to use the official npmjs registry (#20440) - Add paste-to-markdown extension (#19999) - Update CODEOWNERs - Update vscode-project-manager extension (#20446) - [Easings] Add spring animations (#20445) - Update CODEOWNERs - Update groq extension (#20439) - [Brand Icons] Use `pacote` for downloading & extracting icons (#20391) - [espanso] support import (#20400) - Update secret-browser-commands extension (#19948) - Fixing issue in ext/beehiiv (#20437) - Update CODEOWNERs - Update change-case extension (#20002) - Update ideate extension (#20063) - Update `Appwrite` extension - DB, Storage, User Enhancements (#20386) - Update `Oracle Cloud (OCI)` extension - implement provider w/ context + basic objectstorage command (#20405) - [valkey commands search] Migrate to useFetch and group the commands (#20421) - Update `Neon` extension - add project, delete projects + Modernize to use latest Raycast config (#20402) - [espanso] add binary path option (#20280) - [Larajobs] update metadata image + chore (#20417) - feat(readwise-reader:) add option to open in Reader desktop app (#20424) - Update URL unshortener (#20385) - Update granola extension (#20384) - feat(readwise-reader): add ability to include tags when saving links (#20388) - Update background-sounds (#20387) - Update ScreenOCR (#20408) - Update instagram-media-downloader extension (#20413) - Update yu-gi-oh-card-lookup extension (#20414) - Update CODEOWNERs - Add pdf-compression extension (#20194) - Update CODEOWNERs - Add control kef extension (#20127) - Update pr-bot.ts (#20376) - Update Tasklink extension (#20375) - Update CODEOWNERs - Added open-in-textmate extension (#20266) - Update CODEOWNERs - Update ente-auth extension (#20122) - [SteamGridDB] Add support for Windows (#20364) - Update CODEOWNERs - [Update] [DocSearch] Add TailwindCSS v4, Next.js, MassTransit and Pinia documentations (#20254) - Update CODEOWNERs - FocusFLOW (#20214) - Update repology-search (#20370) - Update CODEOWNERs - Add WeChat DevTool extension (#20222) - Update URL-unshortener (#20136) - [ProtonDB] Add support for Windows (#20338) - Fix GIF Search extension updates (#20360) - PR bot assignee constant (#20358) - run pr bot on ready to review (#20356) - [TourBox] Add support for Windows (#20337) - add debugging for draft pr review assigning (#20353) - Update `Name.com` extension - ✨ AI Enhancements (add 3 Tools) + Migrate API (Legacy v4 to Core v1) + Modernize (#20340) - PR bot should check PR files in existing extensions too (#20352) - Update CODEOWNERs - Add console logs to PR Bot for testing (#20351) - Add rounding-number extension (#20232) - Update CODEOWNERs - toggle-desktop-visibility for mac os 26 tahoe (#20225) - Update zipline extension (#20336) - Update CODEOWNERs - Update slack extension (#19219) - Update FHIR extension (#20329) - Update CODEOWNERs - Update CODEOWNERs - [Easy Dictionary] Remove the unused icon file (#20333) - Update aerospace extension - Changed the icon to the new design. (#20342) - things: handle JXA scripts with no result (#20341) - Update trenit extension (#20215) - Apply "AI Extension" label for new extensions as well as existing ones (#20306) - Update `Short.io` extension - `search-links` now allows you to view links independent of default + fix: `shorten-link-with-domain` persists Default Domain properly (#20327) - Create new message when no number match found (#20326) - Update CODEOWNERs - Support for OTP codes that include a hyphen (#20236) - Update anytype extension (#20227) - Update CODEOWNERs - Update ray-boop extension (#20231) - Update easydict extension (#20190) - Update CODEOWNERs - Add quick-jump extension (#20050) - Update CODEOWNERs - Add zipline extension (#20157) - Update CODEOWNERs - Add ship24-client extension (#20170) - Update Raycast X link in README (#20318) - things: improve project detection to not depend on existing projects (#20300) - noteplan 3 | fix #20116 Daily plan not displaying (#20308) - Update CODEOWNERs - feat(notion): show properties in page preview (#20111) - Update CODEOWNERs - fix: typescript error handling (#20298) - Update spotify-player extension (#20178) - Update CODEOWNERs - New Extension : Percentage Calculator (#20195) - Update CODEOWNERs - Update g-cloud extension (#20210) - Update Lightshot Gallery extension (#20246) - [HoudahSpot Search] fix fallback text not used (#20295) - Update CODEOWNERs - Update browser-bookmarks extension (#20187) - Add trip search command to Norwegian Public Transport extension (#20226) - Update CODEOWNERs - Add FHIR extension (#20163) - Update CODEOWNERs - Update xecutor extension (#20159) - Add climbing-grade-converter extension (#20134) - Update Cider extension (#20241) - Update CODEOWNERs - change author (#20289) - things: enhance error reporting + troubleshooting hints (#20224) - [Update] [Hide Files] new icon style (#20253) - [Update] [Bing Wallpaper] Add refresh interval (#20249) - Update CODEOWNERs - [Update] [Browser tabs] new icon style (#20251) - [Update] [Maven Central Repository] new icon style (#20252) - Add clipyai extension (#19740) - Update CODEOWNERs - Update CODEOWNERs - Update `Larajobs` extension - filter by Type, Salary, Tag (#20286) - [zed-recent-projects] Adds a preference checkbox to use the Zed development Sqlite database (#19803) - Add Metabase AI Tools (#17673) - Update CODEOWNERs - Add squeeze extension (#20083) - Update CODEOWNERs - Update CODEOWNERs - Add `Upstash` extension - List Redis Databases, View Details & Usage, Create Database + List Vector Indices, Create Index, Delete Index (#20274) - Update `HoudahSpot Search` extension - fix: text passed as "undefined" when Argument is empty in fallback mode + add `metadata` image + Modernize + `chore` (#20250) - [Spaceship] Toggle Domain Transfer Lock + Get Domain Auth Code + Add AAAA, CNAME DNS Records (#20243) - Update `Keygen` extension - List & Add Products + Color License based on Status + show: Expiry, Scheme, Valid in License (#20228) - Update `Sanity` extension - update logo + modernize (#20220) - Update CODEOWNERs - Update `MailerSend` extension - View API Quota + Filter Domain Activity by Type + View, Rename, Toggle (Pause/Unpause) Tokens (#20197) - [Say] Fix duplicate lines in Configure Say command (#20245) - [Update][Are.na] show status accessory w/ color in search channels + remove auto-generated types (#20265) - Update CODEOWNERs - [ccusage]: fix(#20056) resolve custom npx path issue in ccusage CLI commands (#20262) - update[send-ai]: added new features in the extension (#20273) - [Image Modification] Bug Fixes (#20282) - Update curl extension (#20284) - Update f1-standings extension (#20217) - Update CODEOWNERs - Add csfd extension (#18344) - Docs: Update the utils docs - Update CODEOWNERs - Add rewiser extension (#20023) - Update `Resend` extension - Update Icons + Modernize to use latest config + chore: remove `node-fetch`, `cross-fetch` (#20179) - Update CODEOWNERs - Major update to Kaleidoscope extension, see README and CHANGELOG. (#20076) - [catppuccin] update data source (#20216) - update extension raycast-Gemini - safety-setting (#19277) - Update CODEOWNERs - Add ray-boop extension (#20108) - Update CODEOWNERs - [Spotify Player] Fix for Search command not working issue (#20183) - Update CODEOWNERs - Add new raycast extension - SendAI (#20104) - things: fix project update actions (#20161) - Update `Wave` extension - Add new customers through `Form` + Remove customers after confirming (`Alert`) + Move "Business Customers" to its own file + Modernize to latest config (#20185) - Spotify Lyric Finder Improvements (#20154) - Update CODEOWNERs - Add certificate-viewer extension (#20110) - Update CODEOWNERs - Add markdown-preview extension (#20052) - Update CODEOWNERs - Add somafm-for-raycast extension (#20027) - feat: add getThumbnailUrl to optimize image loading and update components to use it (#20177) - Update CODEOWNERs - feat: add resend wallpaper extension (#20169) - Update CODEOWNERs - Update `Polar` extension - View Products and their Media + Optionally BYOK + Remove `node-fetch` (#20156) - Update CODEOWNERs - Add Instant Translate feature to Google Translate extension (#20093) - Add quick-quit extension (#19869) - extensions/messages: docs: add note about automation permissions for sending messages (#20148) - Update `Doppler` extension - View Logs of a Config + "Open In Doppler" component (#20164) - Try/catch AI label PR bot (#20165) - Auto-label AI extensions in PRs (#20160) - Update CODEOWNERs - Update apple-notes extension (#19613) - Update CODEOWNERs - Add roblox-creator-docs extension (#20024) - Update music extension (#19654) - Update CODEOWNERs - Update apple-notes extension (#20138) - Update zeabur extension (#20140) - Update `radicle` extension - remove need for `radicle-httpd` (#20141) - Update CODEOWNERs - Update spotify-player extension (#19950) - Update CODEOWNERs - Add windsurf extension (#20046) - Add stacks extension (#19863) - Update CODEOWNERs - Add markdown-styler extension (#19967) - Update CODEOWNERs - Update CODEOWNERs - Update `Pocket` extension - add an Alert in Show informing users to Export + required url in create (#20126) - Update `Obsidian Tasks` add `preference` to show description in details markdown (List Tasks) (#20098) - [create-link]: Add customizable templates and tab selection feature (#20120) - Update preferences.md (#20131) - Update CODEOWNERs - [Get SSH Keys] OpenInFinder + Key as Icon (#20117) - No `-lossless` flag on `dwebp` (#20125) - feat: add Gen-PDF MCP Server to the registry (#19924) - Update CODEOWNERs - Update CODEOWNERs - Add tidal extension (#19784) - Add image-shield extension (#19969) - Update CODEOWNERs - Update cobalt extension (#20090) - Update sequoia-tiling extension (#20101) - Update lookaway extension (#20092) - Update media-converter extension: proper user preferences (#20081) - docker,dockerhub,drafts,ensk-is,seo-lighthouse: Update to use newer version of `tar-fs`. (#20068) - Update CODEOWNERs - Add Default Formality Configuration Option (#19656) - Update CODEOWNERs - Add sidecar extension (#19980) - [GitLab] Group milestones on issue and mr create form (#20072) - Update CODEOWNERs - Update CODEOWNERs - Update `Short.io` extension - Add Domain inside `shorten-link-with-domain` + Modernize extension to use latest Raycast config (#20070) - fix: replace youtube-transcript lib (#20080) - Add sequoia-tiling extension (#19877) - Update CODEOWNERs - Update github extension (#20073) - Update CODEOWNERs - Support device name for audio device selection (#19995) - New: Password.Link Extension (#19996) - Update CODEOWNERs - Add clipmate extension (#19958) - Update CODEOWNERs - Add regex-batch-renamer extension (#19849) - [Bitwarden] Catch OTPAuth initialization (#20064) - Update CODEOWNERs - Update quick-notes extension (#19965) - Update linkding extension (#19756) - Update media-converter extension (#20061) - Update CODEOWNERs - Update docker extension (#19817) - [ChatGPT Quick Actions] API pricing fix (#19964) - Update raycast-zoxide extension (#20032) - Update whisper-dictation extension (#19989) - Browser Bookmarks: Add support for Dia and Ghost Browser (#19971) - Update CODEOWNERs - Add duan-raycast-extension extension (#19765) - Update CODEOWNERs - Add ideate extension (#19791) - Update CODEOWNERs - Update transmission extension to fix error on showing a list (#19809) - Update CODEOWNERs - Update Markdown to ADF library (#19972) - Update CODEOWNERs - DotMate - Raycast Extension for Dotfile Management (#19819) - Update media-converter extension: better installation (#19808) - Update wp-bones extension (#19953) - Update CODEOWNERs - Update CODEOWNERs - Update project-code-to-text extension (#19921) - Add `MailerSend` extension - View Domains, View Domain Activity (24 hours), View Templates, View Users (#20022) - Update CODEOWNERs - Add psn extension (#19914) - Update CODEOWNERs - Add minio-manager extension (#19906) - Fix Slack extension YAML (#19865) - Better handling of cloc command to show statistics (#20040) - Aerospace - add monitor name to switch apps action (#19899) - Updated Font Awesome version, added support for more icon types (#19963) - Update CODEOWNERs - Update translate extension (#19933) - Update openrouter-model-search extension (#20028) - [ccusage] Hotfix critical React Hooks Rules violations and improve loading states (#20033) - [Google Translate] Show auto detected language in Quick Translate (#20036) - [Bitwarden] fix: check if user can access BrowserExtension (#20029) - Update CODEOWNERs - Update tailwindcss extension - add default action preference to `Search Colors` command (#19707) - Add claude-code-cheatsheet extension (#19828) - Update Repository Manager (#19994) - [ccusage] Major v2.0.0 upgrade: AI extension support and architecture refactor (#20019) - [Google Translate ] fix quick translate with Chinese auto detected language (#19991) - Update CODEOWNERs - Add redirect-trace extension (#19854) - Update workouts extension (#20018) - Update raycast-wallpaper extension (#20017) - Fix Slack powershell script (#20014) - Linear: Fix SVGs to include xmlns (#20012) - Feat: Add permalink to Dub Link page (#20004) - [Google Translate] Improve UX for quick language change in Translate Form (#19990) - Update react-native-directory extension (#19992) - [Bitwarden] Catch authenticator initialization error (#19997) - [Dribbble, Uplabs] Remove Dribbble and Uplabs extensions (#19913) - Update youtrack extension (#19983) - Fix Slack extension: search messages from specific user (#19731) - [Daminik] use URL instead of Slug in Preferences (#19934) - Docs: update for the new API release - Update youtrack extension (#19925) - Update workouts extension (#19981) - [Update] [Raycast Wallpaper] More Auto Switch Interval (#19952) - [Update] [Easy New File] Supports Form layout (#19954) - [Google translate] fix Chinese and some other languages (#19957) - [Update] [Life Progress] (#19959) - Update compressx extension (#19966) - Patched breaking API change (#19974) - Update `Coolify` extension - fix: Unable to delete Databases in `Resources` + view `ENVs` of **applications** and **services** (#19940) - [MyIdlers] - Domain, Shared, Reseller and Server are now split into "Active" and "Inactive" sections (#19968) - [Brand Icons] Routine maintenance (#19912) - Update CODEOWNERs - [ccusage] Clean up unused dependencies and exports (#19916) - Add kusto-reference extension (#19836) - Update CODEOWNERs - Make sure extensions use official npm registry (#19911) - Update safari extension (#19829) - Update CODEOWNERs - Housekeep Knip config (#19903) - [Confluence Search] Use the npm official registry (#19901) - Update CODEOWNERs - [ClickUp] persist priority on create (super minor fix) + add some missing icons (#19904) - Update CODEOWNERs - [Gitlab] Add issue filter on issues menu item (#19769) - [Google Translate] add all the languages from google translate, remove flags (#19905) - Release more extensions on Windows (#19896) - Update `SolusVM 2` extension - Reinstall Server + View,Create,Remove Snapshots + Invite,Remove Members (#19900) - Update CODEOWNERs - Add openrouter extension (#19831) - Update CODEOWNERs - Add ccusage extension (#19792) - Update CODEOWNERs - Add open-in-trae extension (#19705) - Update CODEOWNERs - [dust-tt] update auth provider (#19783) - Update CODEOWNERs - Update CODEOWNERs - Update aws extension (#19476) - [Promptlab] Use the npm official registry (#19895) - Update CODEOWNERs - Add loan-calculator extension (#19781) - Update CODEOWNERs - Update CODEOWNERs - [Markdown to Plain Text] Use the npm official registry (#19894) - Update Wifi Password Reveal (#19402) - Update CODEOWNERs - [Bitbucket Search] Use the npm official registry (#19891) - Update CODEOWNERs - [Akkoma] Use the npm official registry (#19893) - Update CODEOWNERs - Update CODEOWNERs - [Find OpenGL Enum] Use npm official registry (#19889) - Add microblog extension (#19777) - Update CODEOWNERs - Add beehiiv extension (#19770) - Update CODEOWNERs - Preview visibility, toast fix, and png w/ background option (#19855) - Folder search/drag n drop (#19841) - Update slugify-file-folder-names extension (#19850) - Update `NameSilo` extension - View Contact Profiles + View & Configure Email Forwards + Modernize (#19871) - Ext/popcorn: Fix stream selection bug, and added more support for other addons (#19873) - Update zeabur extension (#19881) - Update CODEOWNERs - Adds glossary extension (#19502) - Update flush-dns extension (#18964) - Update CODEOWNERs - Add geoconverter extension (#19759) - Add Keboola MCP Server to the Model Context Protocol registry (#19753) - Update CODEOWNERs - Update CODEOWNERs - Bitbucket feature (#19739) - Add nyc-train-tracker extension (#19185) - Update CODEOWNERs - Add popcorn extension (#19823) - Update google-scholar extension (#19796) - Update quick-git extension (#19778) - Update Harpoon extension (#19798) - Update instagram-media-downloader extension (#19789) - Update mozilla icon (#19801) - [Xcode] AI Tools & Improvements (#17875) - Update CODEOWNERs - Add `Keygen` extension - View Licenses & Policies + Create Licenses & Policies (#19802) - Update CODEOWNERs - [ClickUp] allow creating task w/o priority + add OpenInClickUp Action (#19787) - Update `Mixpanel` extension - Support All Server Regions + Update Logo + better Error Handling + Modernize (#19821) - Update CODEOWNERs - Add bookmark/save to queue for Matter (#19434) - Update wip extension (#19837) - Update CODEOWNERs - Update Okta search extension (#19825) - Add image-search extension (#19672) - Update CODEOWNERs - Add chronometer extension (#19295) - Add url-editor-pro extension (#19661) - Update CODEOWNERs - Add shutdown-timer extension (#19650) - Docs: update for the new API release - Docs: Update the utils docs - Update CODEOWNERs - Add AWS Audit Manager and update Amazon Bedrock details in aws-servic… (#19685) - Add Creation Date option for sorting (#19682) - Add clipboard-sequential-paste extension (#19679) - Update CODEOWNERs - Add open-docker extension (#19671) - Cleanup unused lockfile (#19659) - [Hue] Fix certificate handling (#19658) - chore: update icon path in the README.md file (#19773) - Update CODEOWNERs - Update CODEOWNERs - Add `Dokploy` extension - Add Instances then manage services and docker containers (#19668) - Update `Geist UI Components` extension - Modernize + Update Logo + Add Hooks, metadata images (#19775) - add ai incident search to incident.io extension (#19631) - [Hookmark Search] Fix bookmark properties encoding (#19543) - Updated to new version extension (#19358) - Update dexcom-reader extension (#19642) - Add priority levels mapping (#19771) - Docs: update for the new API release - Expected Delivery Date Formatting Overhaul (#19649) - Update `Brand.dev` extension - add fonts, stock, email, phone + remove "verified" + change Browser Action + Modernize (#19645) - Update CODEOWNERs - [WP Plugins] add pagination + add shortcut to "Download" + Modernize (#19683) - Fix search authentication errors - resolves #19400 (#19450) - Update CODEOWNERs - docs: update Shadcn Vue icon path (#19639) - Update shadcn-vue extension (#19637) - Update lucide-icons extension (#19763) - fix: only index field must be required others if not input should fall to defaultValue (#19747) - Update CODEOWNERs - chore: update firecrawl version + add integration parameter (#19725) - Update finderutils extension (#19751) - Update google-scholar extension (#19761) - Docs: update for the new API release - Update web3bio extension (#19629) - [browser-tabs] Fix for Duplicate Tabs Issue (#19665) - [Folder-Search] - Major Improvements: Bug Fixes, Error Handling, Performance (#19663) - Update CODEOWNERs - Update zen-browser extension (#19611) - Fix: Add latest OpenAI models and consolidation system (#19592) - Update CODEOWNERs - Add yomicast extension (#19573) - Add chhoto-url extension (#19567) - [Laravel Herd] (#19733) - Update CODEOWNERs - Update audio-device extension (#19074) - Update code-saver extension (#19687) - Update grammaring extension (#19681) - Update `HetrixTools` extension - Add Status Pages command + modernize to use latest config (#19728) - Update vmware-vcenter extension (#19716) - Update CODEOWNERs - Add force kill to kill-process extension (#19607) - Update docker extension (#19698) - Update CODEOWNERs - Update CODEOWNERs - Add quick-git extension (#19405) - Add copee extension (#19526) - Update CODEOWNERs - Add rize-io-sessions extension (#19677) - Update CODEOWNERs - Add advanced-speech-to-text extension (#19517) - Update CODEOWNERs - Clipsign - extension for creating, saving, and instantly copying your e‑signature (#19453) - Update CODEOWNERs - Update `HubSpot` extension - You can now `copy` some properties of a Contact through new "Copy to Clipboard..." submenu (#19652) - Update project-code-to-text extension (#19676) - Update CODEOWNERs - Update `Country Lookup` - Offline Support since API is now limited + Modernize (#19693) - Update quick-event extension (#19258) - Update CODEOWNERs - Update prism-launcher extension (#19601) - Fix obsidian-raycast bug on note creating (#19635) - Update CODEOWNERs - Add whisper-dictation extension (#19532) - Update CODEOWNERs - Updated the URL for the Prisma MCP server (#19472) - Add open-latest-url-from-clipboard extension (#19624) - Update CODEOWNERs - Update shadcn-ui extension (#19525) - Update CODEOWNERs - Update CODEOWNERs - Improve Flight Details Layout: Combined Times & Side-by-Side Terminal/Gate (#19521) - Add analog-film-library extension (#19514) - Update CODEOWNERs - Add volumio-control extension (#19504) - Update CODEOWNERs - [Color Picker] Fix returned value from callback-launch command (#19619) - [GitHub] Add preference to exclude repositories from other commands (#17468) - Update CODEOWNERs - Add diff-view extension (#19463) - Add kagimcp server (#19568) - [Bitwarden] Fix Authenticator "TypeError: t is not a function" (#19616) - Include Outlook in app description (#19594) - Update CODEOWNERs - add Open Documentation (#19500) - Update sportssync extension (#19483) - Update CODEOWNERs - macosicons: include user applications (#19482) - [Brand Icons] Add compatibility with Simple Icons 15 (#19478) - Docs: update for the new API release - Update prism-launcher extension (#19599) - [United Nations] Maintenance & fix news format (#19584) - Update prism-launcher extension (#19598) - Update CODEOWNERs - Apple reminders/show which list reminder is from (#19343) - Update battery-optimizer extension (#19190) - Update awork extension (#19558) - Update CODEOWNERs - feat: Add history command (#19589) - Update system-monitor extension (#19595) - Update Ext/window sizer (#19580) - Enhanced Date Format Support (#19539) - [TRELLO] Allow for unassigned card and update dependencies (#19519) - Update `Oracle Cloud` extension - (Confirm and) Terminate Instance + Add "Open in OCI" `Action` (#19534) - Update Ext/window sizer (#19541) - Update `Cloudflare` extension - Add A,AAAA,TXT DNS Records + Delete any DNS Record + Improve error handling function + Modernize extension to use latest Raycast config (#19552) - Update wp-cli-command-explorer extension (#19559) - Update CODEOWNERs - Update reverso-context extension (#19452) - Update CODEOWNERs - Add project-code-to-text extension (#18996) - Update CODEOWNERs - Add project-hub extension (#19293) - Update CODEOWNERs - Update GemOptions.tsx (#19136) - Update checksum (#19492) - Update CODEOWNERs - Update united-nations extension (#19528) - Update downloads-manager extension (#19407) - Update CODEOWNERs - Move `josephlou` to past contributors (#19522) - Update aave-search extension (#19366) - Update CODEOWNERs - Add dexcom-reader extension (#19141) - Update CODEOWNERs - Update digitalocean extension addressing issue displaying automated deployments (#19432) - Update Fabric extension - location and tag selection (#19470) - Wikipedia language improvements (#19473) - Update Ext/window-sizer (#19499) - Update CODEOWNERs - Add slugify-file-folder-names extension (#19422) - Update messages extension (#19426) - macosicons: fix lint (#19497) - Update CODEOWNERs - Add google-scholar extension (#19392) - Update CODEOWNERs - Add `SolusVM 2` extension - Manage Servers + View,Update Members + View,Create API Tokens & Settings + View ISOs (#19486) - Update CODEOWNERs - feat: add Anytype MCP Server to the registry (#19506) - Add `Appwrite` extension - Add multiple projects and view various services (#19510) - Update CODEOWNERs - Add foodle-recipes extension (#19084) - Update CODEOWNERs - Add cangjie extension (#19308) - Update CODEOWNERs - feat(google-calendar): create events with natural language duration input (#19317) - Update CODEOWNERs - Improved Category Search & Fixed Budget Details (#19451) - Update qrcode-generator extension (#19455) - Fix Toggle Grayscale exstension (#19236) - Add unix-timestamp-converter extension (#18949) - Update parcel extension (#19466) - Fix Slack emoji search missing scope error - resolves #19441 (#19447) - feat: add Thena MCP entry to official entries (#19379) - Update Ext/Window Sizer (#19459) - [2FA Directory] filter by category (like the Website) + modernize to use latest Raycast config (#19454) - Update CODEOWNERs - Update todoist extension (#19309) - Update CODEOWNERs - [git-repos] Fix issue with the path of the repository (#19440) - Folder search fallback bug fix (#19449) - Update CODEOWNERs - Update CODEOWNERs - Update parcel extension (#19356) - Add fisher extension (#19213) - Update CODEOWNERs - Fix: React Rules of Hooks violation in New Tab command (#19384) - Docs: update for the new API release - Update prompt-stash extension - increase character limit and refactor validations (#19428) - Update stock-tracker extension (#19424) - feat(deepcast): Return to root state preference (#19430) - Update subwatch extension (#19433) - Update CODEOWNERs - Update linkding extension (#19436) - Update media-converter extension (#19385) - Update CODEOWNERs - [Dock] add MenuBar Item + add metadata image + Modernize (#19393) - feat: add Grafana MCP to registry (#19240) - Major improvement to Elgato Key LightsElgato enhancements (#19374) - Update anytype extension (#19418) - Update CODEOWNERs - feat(preferences): Option to Close Raycast After Translation (#19386) - Update mullvad extension (#19382) - Update CODEOWNERs - Update CODEOWNERs - Update stock-tracker extension (#19411) - Update t3-chat extension (#19412) - Update CODEOWNERs - Add Secret Browser Commands extension (#19396) - Update CODEOWNERs - Update linkding extension (#19395) - Update sql-format extension (#19398) - Update zeabur extension (#19413) - Update `Google Books` extension - feat: filter results by category, use `useFetch` for caching + docs: add CHANGELOG + modernize: use latest Raycast config (#19414) - Update Ext/window sizer (#19416) - Update CODEOWNERs - Ability to copy song\'s artist and title (#19368) - Update CODEOWNERs - DEVONthink 4 (#19375) - Add position-size-calculator extension (#19123) - Update CODEOWNERs - Add ratingsdb extension (#19298) - Update Ext/window sizer (#19348) - Update `ClickUp` extension - choose status from Dropdown in \'capture\' (close #19331) + update README (#19370) - Update Extension: Easy New File (#19364) - Updated openpgp version (#19367) - Update CODEOWNERs - Add Claude Sonnet 4 (#19362) - Update CODEOWNERs - Add paste-from-kindle extension (#19275) - Update CODEOWNERs - Ext/appcleaner (#19355) - Update prism-launcher extension (#19346) - Update CODEOWNERs - Update aws extension (#19347) - Update 1bookmark extension (#19350) - Update instagram-media-downloader extension (#19360) - Docs: update for the new API release - Antinote: Support for Setapp version (#19345) - feat(ci): comment when changelog missing (#19305) - Update CODEOWNERs - Update jenkins extension (#19286) - Update prism-launcher extension (#19330) - Docs: update for the new API release - Update downloads-manager extension (#19340) - Update CODEOWNERs - Add open-gem-documentation extension (#18998) - Update miro extension (#18702) - Fix open with IINA action (#19251) - Update CODEOWNERs - Add notes limit for AI usage (#19332) - Update CODEOWNERs - added searching by permissions (#18817) - Update CODEOWNERs - Add Keka extension (#19326) - Updated the Prisma MCP server entry. (#19334) - Update CODEOWNERs - Add AI Budget Tools, Enhanced Natural Language Queries, and Bug FixesF/raynab ai (#18611) - Add azure-icons extension (#19224) - Update CODEOWNERs - Update spotify-player extension (#18815) - Update CODEOWNERs - Update Credits for One Thing Extension (#19303) - Ext/penflow ai (#18799) - Docs: update for the new API release - Update clarify extension (#19222) - Update CODEOWNERs - Add grammaring extension (#19220) - Update CODEOWNERs - Add instagram media downloader extension (#19191) - Add paperless-ngx MCP server entry to the registry (#19300) - Update cloud-cli-login-statuses extension (#19284) - [Dropover] Fix special characters in filenames and update docs (#19318) - [Rebrandly] Update Links + Modernize (#19319) - Update Ext/window sizer (#19316) - Update CODEOWNERs - Update CODEOWNERs - Update brand-fetch extension (#19012) - Update CODEOWNERs - Update prism-launcher extension (#19117) - feat(superwhisper): add search history (#18810) - Add hammerspoon extension (#18922) - MCP: Fix lint issues (#19310) - Added the Shopify Dev MCP server (#19307) - Update CODEOWNERs - Update obsidian-tasks extension (#19151) - Add untis extension (#18735) - Update curl extension (#18931) - Dovetail extension: Pagination with query filtering (#19163) - Update CODEOWNERs - Fix tldraw project URLs (#19291) - Add Claude PR Assistant workflow (#19292) - Fix link to Smithery (#19285) - Update CODEOWNERs - Add rae-dictionary-raycast extension (#19171) - Supahabits: New command goals (#19282) - [Say] Routine maintenance (#19283) - Update CODEOWNERs - Update t3-chat extension - add beta checkbox (#19133) - Add Safari command to close other tabs (#19280) - When PRs are marked as ready for review, auto assign to Per (#19281) - Update CODEOWNERs - Add `Creem` extension - List,Create Products + List Payments (#19205) - Update CODEOWNERs - ✨ Add frecency sorting to gitmoji (#18974) - Update Ext/window-sizer (#19234) - Apple Mail add new command and AI tool (#19228) - Update `Unkey` extension - Modernize + Migrate broken endpoints to new ones to prevent crash (#19247) - Update Markdown Codeblock (#19271) - Update polymarket extension (#19273) - Update 1bookmark extension (#19255) - Update `cPanel` extension - Modernize + Manage API Tokens (create, revoke) + new function wrapping native `fetch` (#19274) - Init apify mcp server (#19193) - Update granola extension (#19215) - Added the Prisma MCP server (#19201) - Add Zeabur official MCP server to registry (#19217) - Update CODEOWNERs - Add are-na extension (#18646) - Update CODEOWNERs - Add slack-summarizer extension (#19032) - Update nostr extension (#19209) - Update CODEOWNERs - Update paperless-ngx extension (#19197) - Update CODEOWNERs - Add tableau-navigator extension (#19086) - Update CODEOWNERs - MCP: fix spawn ... ENOENT issue (#18399) - Update CODEOWNERs - Add quikwallet extension (#19047) - [Markdown Navigator] Remove duplicate files (#19208) - [Unifi] Remove outdated files (#19207) - [Trek] Remove outdated files (#19211) - [Expo] Remove duplicate files (#19210) - Update CHANGELOG.md (#19227) - Update danish-tax-calculator extension (#19200) - Bot: Only allow the OP to close the issue with a comment (#19196) - Docs: update for the new API release - Update raycast-icons extension (#18682) - [Sentry] Show projects for non US Sentry orgs (#18758) - Update package.json (#19195) - Update CODEOWNERs - Danish Tax Calculator (#19194) - feat: add Nuxt official MCP server to registry (#19034) - Update zen-browser extension (#19013) - Update CODEOWNERs - Add video-converter extension (#19030) - Update CODEOWNERs - Update polymarket extension (#19089) - Add wp-cli-command-explorer extension (#19063) - update extension raycast-gemini (#19021) - Update CODEOWNERs - Add smallpdf extension (#19041) - Update coin-caster extension (#19166) - Update CODEOWNERs - Update vuejs-documentation extension (#19072) - Update CODEOWNERs - Update qrcode-generator extension (#18792) - Update CODEOWNERs - add(KDE Connect): KDE Connect in Raycast (#18928) - Update CODEOWNERs - Add shell-alias extension (#19028) - Update lift-calculator extension (#19118) - Update servicenow extension (#19148) - Fix request loops (#19143) - Fixing two super small typos on the readme for the Obsidian plugin (#19139) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Clockify Extension: UX Improvement for "Start new Timer" functionality (#19026) - Update CODEOWNERs - Add setlist-fm extension (#19119) - Update zerion extension (#19132) - Update CODEOWNERs - Gitlab Extension: My merge requests & label based filtering (#19007) - Update CODEOWNERs - Add file-organizer extension (#18877) - Update CODEOWNERs - Update `Two-Factor Authentication Code Generator` - Rename Codes + Modernize + Add README (#19019) - [NixPkgs Search] Fetch version number from NixOS/nixos-search repo and compose url dynamically (#19025) - Update flibusta-search extension (#19131) - Update omnifocus extension (#19024) - Update tidal-controller extension (#18437) - Update CODEOWNERs - Add Mac network location changer (#18961) - LoL Esports AI tools (#18563) - Update servicenow extension (#18834) - Update at-profile extension (#18554) - Update shopify-theme-resources extension (#18991) - [Image Modification] Add support for QSpace Pro and ForkLift (#19108) - Update CODEOWNERs - Update kill-node-modules extension (#19039) - Update CODEOWNERs - Add grok-ai extension (#18566) - Update CODEOWNERs - Add subwatch extension (#18929) - Ente Auth - fix preferred values (#19029) - Update README.md (#19106) - Update CODEOWNERs - Update arc extension (#19062) - TickTick support AI Extension (#17531) - Update CODEOWNERs - Add domain field to fastmail-masked-email extension (#19066) - Apple Mail: Fix OTP codes across multiple mail accounts (#19033) - Update hardcover extension (#19065) - Update how-long-to-beat extension (#19042) - Update dovetail extension (#19102) - Update daily-sites extension (#19097) - Update Ext/window sizer (#19103) - Update index.tsx (#19067) - Docs: update for the new API release - Docs: update for the new API release - Update OpenVPN description to reflect recent changes (#18788) - Update CODEOWNERs - Add raycast-zoxide extension (#18908) - Update mermaid-to-image extension (#18975) - Update CODEOWNERs - fix(docs): mcp incorrect home page link (#19045) - Add search-domain extension (#18837) - Update CODEOWNERs - Add selfhst-icons extension (#18904) - Update CODEOWNERs - Update CODEOWNERs - Add option to automatically create labels in Todoist quick add command (#18892) - Add daily-sites extension (#18763) - Update CODEOWNERs - MCP Registry: Initial commit (#19015) - Docs: update for the new API release - feat(font-search): add postscript names menu (#19003) - Messages Paste OTP Regex Update (#18896) - Update Ext/window sizer (#19017) - Update CODEOWNERs - Add lipsum extension (#18784) - adding needed changes (#18987) - Update CODEOWNERs - feat: Rename NuxtUI extension to just Nuxt (#17887) - Update CODEOWNERs - [beszel-extension] Added AI tools for interacting with beszel (#17790) - Update CODEOWNERs - Update at-profile extension (#18881) - Update CODEOWNERs - Add flibusta-search extension (#18260) - Update CODEOWNERs - Update doge-tracker extension (#18950) - Update CODEOWNERs - Update CODEOWNERs - Update raycast-ollama extension (#18910) - feat(download-manager): add reload action (#18822) - Add `Name.com` extension - View Account Balance + View Domains + View DNS Records + Delete DNS Record (#18982) - Update CODEOWNERs - DeepWiki extension (#18804) - Update CODEOWNERs - add primary action switch to `one-time-password` (#18800) - Update google-chrome extension (#18794) - Update Ext/window sizer (#18988) - Update Ext/surge outbound switcher (#18989) - Update CODEOWNERs - Update prompt-stash extension (#18887) - Add geoping extension (#18957) - Update CODEOWNERs - Update migadu extension (#18930) - Update anytype extension (#18993) - Update CODEOWNERs - Add cocoa-core-data-timestamp-converter extension (#18656) - Add macports extension (#18773) - Update CODEOWNERs - Things - Set Reminders in Today and Upcoming (#18771) - Update git-assistant extension with rewrite of search git repositories command (#18948) - Update Ext/window sizer (#18963) - Update CODEOWNERs - Update meme-generator extension (#18844) - Update granola extension (#18972) - Update CODEOWNERs - Update package.json (#18970) - Update granola extension (#18915) - Update WIP extension (small typo fix) (#18962) - Docs: update for the new API release - Update CODEOWNERs - Update raindrop-io extension (#18882) - Update dust-tt extension (#18942) - Update Ext/window sizer (#18945) - Update CODEOWNERs - [Stripe] Fix "Open in Stripe Dashboard" action adding extra leading slash (#18953) - Update archiver extension (#18685) - Update CODEOWNERs - Folder Search Improvements (#18838) - Added "toggle connection" to tailscale extension (#18409) - Update esports-pass extension (#18920) - Update f1-standings extension (#18876) - Update CODEOWNERs - Add thock extension (#18618) - Update CODEOWNERs - Add tana-paste extension (#18355) - Update CODEOWNERs - Update granola extension (#18883) - Update CODEOWNERs - Update T3 Chat - new models (#18902) - Update draft-email.ts (#18895) - Update CODEOWNERs - Add zero extension (#18616) - [Apple Intelligence] Add localization (#18593) - Update research extension (#18769) - Update dolar-cripto-ar extension (#18873) - Update CODEOWNERs - [Doppler] Update doppler-share-secrets extension (#18523) - Update CODEOWNERs - Add barcuts-companion extension (#18737) - Update CODEOWNERs - New extension: Granola AI Meeting Notes (#17618) - [Spotify Player] Enable AI interaction with your queue (#18693) - Docs: update for the new API release - feat: replaced Exivo extension iconm due to trademark restrictions (#18868) - Make some extensions available on Windows (#18869) - Update animated-window-manager extension (#18865) - Update lingo-rep-raycast extension (#18721) - Update ugly-face extension (#18866) - refactor: respect system appearance (#18856) - Apple Mail: Paste latest OTP code (#18657) - Update CODEOWNERs - Add superhuman extension (#18391) - Update CODEOWNERs - Add animated-window-manager extension (#18712) - Update homeassistant extension (#18234) - Update CODEOWNERs - Update swift-command extension (#18761) - Update CODEOWNERs - Add tautulli extension (#18023) - Update CODEOWNERs - Add qutebrowser-tabs extension (#18694) - fix: update description in dia extension. (#18853) - Update CODEOWNERs - fix: fix not find zsh file (#18854) - Add nusmods extension (#18757) - Weather: Fix icon for Fog (#18849) - refactor: support more offset (#18850) - refactor: replace keystroke with key code (#18848) - Update origami extension (#18846) - Update system-information extension (#18783) - FIX code extraction imessage-2fa extension (#18836) - PurpleAir Extension Improvements: Multiple Sensor and Nearest Sensor (#18716) - Update f1-standings extension (#17861) - YoutubeMusic: Fixed Issue - remove Like and Like Songs (#18631) - [YubiKey Code] - Replace usage of WindowManagement.getActiveWindow with getFrontmostApplication (#18831) - Update CODEOWNERs - Add gotify extension (#18679) - Ext/window sizer fix screenshots and README (#18827) - Update CODEOWNERs - Add Verification/Sign-in Link Detection (#18695) - Dia (The Browser Company) extension (#18667) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Add cloud-cli-login-statuses extension (#18058) - [YubiKey Code] - Sort accounts by usage (#18781) - [hacker-news-top-stories] Add notification support (#18798) - Update threads extension (#18813) - Update Ext/window sizer (#18814) - Update CODEOWNERs - Revert "Update bmrks extension (#18539)" (#18811) - update extension raycast-gemini (#18666) - Update tinyimg extension (#18720) - Update xcode extension (#18746) - Update 1bookmark extension (#18664) - Update CODEOWNERs - Update aws extension (#18650) - [Things] Fix menu bar `Complete` action (#18641) - Update CODEOWNERs - Add nostr extension (#18637) - Docs: update for the new API release - Update CODEOWNERs - Add window-sizer extension (#18635) - Update CODEOWNERs - Add hardcover extension (#18628) - Update CODEOWNERs - Update quit-applications extension (#18617) - Update CODEOWNERs - Mark all extensions which uses AppleScript as macOS only (#18742) - Slack: enhance Search Emojis command with AI-powered suggestions (#18625) - Update CODEOWNERs - Update zen-browser extension (#18751) - Made use of Search API optional (#18410) - Update CODEOWNERs - Add magic-home extension (#18219) - Update CODEOWNERs - Add ton-address extension (#18683) - Update svelte-docs extension (#18749) - Update CODEOWNERs - Update hacker-news-top-stories extension (#18747) - Update bmrks extension (#18539) - Update CODEOWNERs - Add lookaway extension (#18589) - Update CODEOWNERs - Updating Raycast handle (#18738) - Update CODEOWNERs - Update regex-repl extension (#18724) - Update notis extension (#18727) - Update CODEOWNERs - Add `Canva` extension - View Designs and Open in Browser (#18645) - [SABnzbd] add README + Modernize to use latest config (#18670) - Update CODEOWNERs - Add go-to-rewind-timestamp extension (#18514) - Update CODEOWNERs - Update toggl-track extension (#18543) - Update CODEOWNERs - Update CODEOWNERs - Update thesaurus extension (#18569) - Update warp extension (#18504) - Handle undefined downloads in subtitle formatting (#18729) - Update mercado-libre extension (#18725) - Update tuple extension (#18718) - Update CODEOWNERs - Add origami extension (#18314) - Update README.md (#18719) - Update quick-event extension (#17943) - Update anytype extension (#18218) - Update sportssync extension (#18240) - Update CODEOWNERs - add new extension Pumble (#18253) - Update CODEOWNERs - Add macOSIcons.com extension (#18386) - fix(pianoman): Cannot read properties of undefined (#18591) - Update zeabur extension (#18675) - Supahabits/stats (#18700) - Update CODEOWNERs - Update genius-lyrics extension (#18696) - chore(mcp): improve instruction and examples given (#18537) - Update CODEOWNERs - Add donut extension (#18711) - [Expo] Add support for Two Factor authentication (#18202) - Update CODEOWNERs - Update zen-browser extension (#18068) - Update CODEOWNERs - Update raindrop-io extension (#18668) - Update trovu extension (#18277) - Added "Create new Incognito Window" action for Chrome extension (#18262) - Update hacker-news-top-stories extension (#18705) - Update svelte-docs extension (#18686) - handle non existing file selection (#18674) - Ext/surge outbound switcher (#18633) - Update betterdisplay extension (#17535) - Update CODEOWNERs - Add lyric-fever-control extension (#18538) - 🐛 fix(wakatime): Fix Reported Store Issues & Update Dependencies (#18638) - Update CODEOWNERs - Update google-calendar extension (#18636) - fix details block in information doc (#18627) - Update CODEOWNERs - Update (#18632) - Update CODEOWNERs - Add playtester extension (#18492) - Docs: update for the new API release - Update CODEOWNERs - Add asciimath-to-latex-converter extension (#18496) - GitHub: Fix pull request filtering logic (#18624) - feat(search-chatwork): mod scope to use search contacts commands with OAuth (#18542) - Update CODEOWNERs - [Asana] modernize + close after creating task (close Issue) (#18531) - Update CODEOWNERs - Update package.json (#18483) - Update CODEOWNERs - Add dpm-lol extension (#18476) - Update CODEOWNERs - Update nba-game-viewer extension (#18623) - Add liquipedia-matches extension (#18455) - Update CODEOWNERs - Add git-worktrees extension (#18418) - Update CODEOWNERs - Update linkding extension (#18395) - Arc extension: (Re-)Add support to open blank incognito window (#18427) - Update CODEOWNERs - Update raycast-svgo extension (#18560) - Auto language detection and some small fixes (#18221) - Add steam-player-counts extension (#18435) - Linear: Update API and fixes (#18601) - Todoist: Fix AI get-tasks (#18603) - Update awork extension (#18580) - Update CODEOWNERs - Update lucide-icons extension (#18428) - Update aws extension (#18552) - Update CODEOWNERs - Add cerebras extension (#18508) - Update CODEOWNERs - Add manage runtimes and delete unsupported runtimes commands to Xcode extension (#18463) - Update CODEOWNERs - Update link-cleaner extension (#18422) - Update airpods-noise-control extension (#18126) - [Github extension] add support for merge queue and "merge when ready" (#18045) - Update ihosts to support remote hosts (#18176) - Update CODEOWNERs - Update CODEOWNERs - [ADB] Add Uninstall command (#18091) - Update paste-as-plain-text extension (#18574) - Update deepcast extension (#18598) - Update CODEOWNERs - Add hacker-news-500 extension (#18431) - GIF Search: Use `Clipboard` API to copy GIF instead of AppleScript. (#18588) - Todoist: New API, improvements and bug fixes (#18518) - Update CODEOWNERs - Update raycast2github.json (#18575) - Update dust-tt extension (#18578) - Update cal-com-share-meeting-links extension (#18577) - Update ns-nl-search extension (#18576) - Commands and Navigation Enhancements (#18528) - Update CODEOWNERs - Add `Netherlands Railways Find a train` extension (#18420) - Update CODEOWNERs - Update `CricketCast` extension - Modernize + Better Score Error Handling (#18555) - Update Connect to VPN extension (#18406) - Update CODEOWNERs - Update jetbrains extension (#18545) - Update copymoveto extension (#18535) - Update CODEOWNERs - Update github-profile extension (#18551) - Enable Chat Actions When Viewing Previous Conversations (#18547) - html-colors: add filtering option to group colors by shade (#18529) - [Things] Display only incomplete todo in the menu bar (#18515) - Update WeChat (#18345) - Update `Spaceship` extension - Modernize + DNS Enhancements (#18571) - Update CODEOWNERs - Update CODEOWNERs - parcel: add "Track on Website" and improve client (#18333) - Add paystack extension (#18375) - Update CODEOWNERs - Update gg-deals extension (#18519) - Update dub extension (#18517) - Fix 404 error by replacing the repo where we get the name from (#18525) - Improved fallback command and flickering during search (#18533) - feat(bento-me): improve UI. (#18521) - Update CODEOWNERs - Update clockify extension (#18401) - Update CODEOWNERs - Add "Obsidian Tasks" Extension (#18390) - Ai extensions/elgato key light (#17822) - Update utilities.md (#18510) - Update CODEOWNERs - Add virustotal extension (#18373) - Update CODEOWNERs - things: detect URLs in notes (#18362) - Update CODEOWNERs - Update deno-deploy extension (#17840) - Update dad-jokes extension (#18494) - Slack (#18156) - Delivery Tracker: Manually Mark as Delivered and Delete All Delivered Deliveries (#18485) - fix: gcloud path for non homebrew intel package installations (#18493) - Update CODEOWNERs - [Canvascast] Fix bugs with announcements and downloads (#18100) - Update adhan-time extension (#18204) - Update CODEOWNERs - Slack: New Command: Send Message (ISSUE-15424) (#16580) - Update antd-open-browser extension (#18299) - Update image-flow extension (#18470) - feat(himalaya): Update for Himalaya `v1.0.0` (#18388) - Add Find Features and AI Extension Support (#18195) - Add movie runtime information to Letterboxd (#18089) - Update CODEOWNERs - Update evernote extension (#17889) - Add g-cloud extension (#18093) - Update CODEOWNERs - Add awork extension (#17791) - Update laravel-herd extension (#18477) - feat(search-composer-packagist): display abandon package (#18307) - [Polar] Update Polar SDK Version (#18475) - Update CODEOWNERs - Add `Pastery` extension - Search Pastes, Create Paste, Delete Paste (#18404) - [Polar] Fix non-recoverable state when OAuth access tokens expires (#18471) - Docs: update for the new API release - Update CODEOWNERs - Update `Unsplash` extension - add Pagination, Caching + Modernize (close Issue) (#18384) - Update CODEOWNERs - Add jsrepo extension (#18346) - Update producthunt extension (#18442) - docs: asset folder clearing hint (#18320) - Update CODEOWNERs - Update vercast extension (#18297) - Update pcloud extension (#18291) - Update CODEOWNERs - Add image-to-ascii extension (#18282) - Update Tailscale extension (#18281) - [braid] Fetch icons dynamically from github (#18469) - [Bitwarden] Add authenticator primary action preference (#18464) - Improve URL retrieval with clipboard fallback (#18461) - Update dict-cc extension (#18443) - Update CODEOWNERs - Add valkey-commands-search extension (#18268) - Update CODEOWNERs - Update CODEOWNERs - Update reflect extension (#18294) - Add pollenflug extension (#17787) - Update CODEOWNERs - Add image-flow extension (#17383) - Update CODEOWNERs - Add laravel-herd extension (#18318) - Update 1bookmark extension (#18413) - [Bitwarden] Authenticator command (#18322) - Update quick-notes extension (#18389) - Update `My Idlers` extension - Optimistically delete Server (#18421) - Update CODEOWNERs - Update raycast-svgo extension (#18426) - [Contentful] fix: video assets not showing thumbnail (#18441) - Docs: update for the new API release - feat: added logic for properly counting CJK characters as words (#18430) - Update CODEOWNERs - Update tidal-controller extension (#18275) - Update CODEOWNERs - Update CODEOWNERs - Update obsidian extension (#18394) - Add surge-outbound-switcher extension (#18065) - Update CODEOWNERs - Add mistral extension (#18237) - add error handling when user tries to update todo from menu bar (#18047) - Update producthunt extension (#18352) - Update CODEOWNERs - Added Llama 4 models (#18424) - Add lift-calculator extension (#18245) - Fix the `mastodon` extension (#18407) - Update CODEOWNERs - Update mail extension (#18349) - feat(KeePassXC): add favicon support and better preference descriptions. (#18278) - Update CODEOWNERs - Add caschys-blog extension (#17768) - Update CODEOWNERs - Update dub extension (#17813) - Update whatsapp extension (#17474) - Fix the `dub` extension (#18292) - fabric: update description (#18267) - Update package.json (#18374) - Update CODEOWNERs - Add smart-calendars-ai-create-events-using-ai extension (#18235) - Add handoff-toggle extension (#18228) - [Folder-Cleaner] feat: Clean One & Hooks (#18360) - Update CHANGELOG.md (#18372) - Update CODEOWNERs - Update gmail-accounts (#18332) - Update omni-news extension (#18327) - feat: add `bento.me` extension. (#18354) - Update CODEOWNERs - Misc: Update vulnerable version of axios (#18310) - Update CODEOWNERs - Add repository favorites feature to Bitbucket extension (#17652) - Update zed-recent-projects extension (#18340) - Update CODEOWNERs - Update tailwindcss extension (#18358) - Add time-logs extension (#17696) - python package search fix (#18300) - Update CODEOWNERs - [Update Figma Files] Adds ability to clear cache (#18367) - Add builtbybit extension (#18098) - Update CODEOWNERs - Update ssh-manager extension (#17885) - Update CODEOWNERs - Clean up split surrogate pairs (#18321) - noteplan 3 | add quicklink action (#17894) - Update stockholm-public-transport extension (#18020) - Update CODEOWNERs - Update supernotes extension to enable AI tools (#17475) - Added missing endtab tag (#17986) - Update CODEOWNERs - Update raydocs extension (#17450) - Update google-calendar extension (#17852) - Update svgl extension (#17527) - Apple Mail: Support email accounts with multiple sender addresses (#18217) - Update coin-caster extension (#18315) - [RSS Reader] fix feeds not moving (close issue) (#18313) - zed-recent-projects - show git branch label for repositories (#18311) - Update CODEOWNERs - Update kagi-search extension (#18191) - Update CODEOWNERs - Add Finder File Actions extension (#17705) - Update CHANGELOG.md (#18293) - Update: Search Router (#18250) - Update CODEOWNERs - Add TinyIMG extension (#18231) - Update CODEOWNERs - Add aliyun-flow extension (#18114) - Update CODEOWNERs - Add exivo extension (#18078) - Update CODEOWNERs - Add fullscreentext extension (#17346) - [HackMD]: Enable new AI extension capabilities (#17363) - Update CODEOWNERs - Add lavinprognoser extension (#17200) - Update pipedrive extension (#18241) - Update CODEOWNERs - Update 1bookmark extension (#18243) - Update cal-com-share-meeting-links extension (#18273) - Update Package.json - schoology extension (#18286) - Docs: update for the new API release - Add Default Sort MenuBar - #17271 (#18226) - Update CODEOWNERs - Add simple-http extension (#18128) - Update CODEOWNERs - Update firecrawl extension (#18206) - Update pcloud extension (#18238) - [Language Detector] Add new detector - franc (#18246) - Update memos extension (#18254) - Update CODEOWNERs - Update translate extension (#18187) - Update CODEOWNERs - Add Translit extension (#17114) - Update CODEOWNERs - Add essay extension (#18142) - Update CODEOWNERs - Update browser-history extension (#18227) - Update CODEOWNERs - Deepseek/fix mar (#18170) - Update arc extension (#18208) - Update CODEOWNERs - Update CODEOWNERs - Update active contributors (#18222) - Add ntfy extension (#18188) - Update CODEOWNERs - Update aave-search extension (#18263) - Add create-link extension (#17999) - Update zeabur extension (#18257) - Update CODEOWNERs - Add rename-images-with-ai extension (#17799) - Update CODEOWNERs - [Groq…
- Update extension name and add publish guide - Memory optimization for large Obsidian vaults (20,000+ notes) - 修复文件过大、过多导致内存堆栈溢出的问题 - Update CODEOWNERs - Update ship24-client extension (#21059) - Add openrouter-models-finder extension (#21005) - Update CODEOWNERs - Add zsh-aliases extension (#20985) - Update CODEOWNERs - Add ray-clicker extension (#20979) - Update `Wave` - Enhance `Invoice` to show amounts due and paid + Move "Business Products And Services" to its own file + Add new product or service (#21052) - Update password-generator extension to guarantee presence of character choices (#20976) - Update CODEOWNERs - [Forked Extensions] Initial release (#20968) - Update CODEOWNERs - Update todoist extension (#20984) - Docs: Update the utils docs - Update brreg extension (#21027) - Docs: update for the new API release - feat: adding the calculation time for MOROCCO (#20917) - Update CODEOWNERs - feat(model-context-protocol-registry): linear mcp server (#20895) - [defbro] Dynamic detection of defbro command path (issue #20881) (#20882) - Brew: Close Raycast in case the brew cmd typed in raycast window (#20780) - Hot Fix: Granola authentication to support WorkOS tokens (#21039) - Update CODEOWNERs - Add vixai extension (#20772) - Update lookaway extension (#21038) - Update CODEOWNERs - Bitaxe initial commit (#20750) - Update CODEOWNERs - Update cyberchef extension with custom Instance URL (#20735) - Update duckduckgo-image-search extension (#21034) - 🐛 fix browser-extension for zen browser (#21035) - Update CODEOWNERs - Add positron extension (#20596) - Update CODEOWNERs - Add french-company-search extension (#20865) - Update minio-manager extension (#20999) - Update change case extension (#20960) - Update grammari-x extension (#20998) - Support for scientific notation and decimal encoding in converter (#21011) - Update Claude Code Cheatsheet - Add v1.0.55-v1.0.81 features (#21004) - Update CODEOWNERs - Update trakt-manager extension (#20854) - [Language Detector] Add support for Windows (#20832) - Update quick-git extension (#21001) - Update CODEOWNERs - Update `SwitchHosts` extension - modernize + icons + markdown + add hook + remove `setTimeout`,`node-fetch` (#21017) - Update `Clockify` extension - Select Tag During Start + More Precise Types + Modernize (#21002) - Update `cPanel` extension (#20977) - Update google lens extension (#21019) - Update CODEOWNERs - Add invisible-text-detector extension (#20926) - Update CODEOWNERs - Add word4you extension (#20638) - Update CODEOWNERs - Add radarr extension (#20904) - Update CODEOWNERs - feat(8ball): add preference to choose default action (copy/paste) and… (#20947) - Update CODEOWNERs - Update deepwiki extension (#20955) - Update CODEOWNERs - Update dodo-payments extension (#20956) - Update vercast extension (#20838) - Update CODEOWNERs - Update search-gule-sider extension (#20911) - [Groq] model update and improvements (#20630) - Add support for password protected YubiKeys in yubikey-code (#20938) - [Time Tracking] rename in Edit Form + Modernize (#20922) - [Brand.dev] trigger search via search text (QoL) (#20944) - Update CODEOWNERs - Add unblocked-answers extension (#20696) - Update CODEOWNERs - Add chainscout extension (#20712) - Update CODEOWNERs - tabler: add download actions (#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (#20686) - Update CODEOWNERs - Add jitsi extension (#20680) - Update CODEOWNERs - Add time-calculator extension (#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (#20647) - Update CODEOWNERs - Add synology-download-station extension (#20643) - Add owl extension (#20777) - Update CODEOWNERs - Update synonyms extension (#20879) - Update scira extension (#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (#20906) - [Color Picker] Fix Convert Color command (#20913) - Update v0-by-vercel extension (#20923) - Update CODEOWNERs - Add v0-by-vercel extension (#20792) - Add `.gitattributes` & get rid of `\r\n` (#20498) - [Brand Icons] Add support for creating social badges through cross-extension (#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (#20885) - Update certificate-viewer extension (#20894) - Update CODEOWNERs - Add yap extension (#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (#20427) - Update CODEOWNERs - Add emojis-com extension (#20875) - Add dodo-payments extension (#20669) - Update CODEOWNERs - Add twingate extension (#20580) - Update CODEOWNERs - Update brave-search-with-results extension (#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (#20892) - Update image-wallet extension (#20806) - Add proton-authenticator extension (#20773) - Update CODEOWNERs - Add sharding-tools extension (#20394) - Update CODEOWNERs - Add Save Link extension (#20521) - Update CODEOWNERs - Update display-modes extension (#20260) - Update CODEOWNERs - Update craftdocs extension (#19976) - Update CODEOWNERs - Update aerospace extension (#20847) - Update aws extension (#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (#20493) - Update at-profile extension (#20853) - Update aws extension (#20856) - Update grammari-x extension (#20848) - Update preferences.md (#20855) - Update youtrack extension (#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (#20553) - Update CODEOWNERs - Add kiro extension (#20790) - Update freeagent extension (#20844) - [Badges] Add shortcut for picking logo (#20849) - Update CODEOWNERs - Update svgl extension (#20852) - Add docklock-plus extension (#20419) - Update slugify-file-folder-names extension (#20528) - Update CODEOWNERs - Add freeagent extension (#20828) - Update CODEOWNERs - Update aws extension (#20809) - Update CODEOWNERs - Add sefaria extension (#20378) - Update CODEOWNERs - Add tokenizer extension (#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (#20817) - Add ag-audioflow extension (#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (#20830) - Update CODEOWNERs - Adding new social platforms (#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (#20813) - [GitLab] Add windows support (#20824) - Update raindrop-io extension (#20820) - Update CODEOWNERs - Update timezone-buddy extension (#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (#19456) - Fix token expired auth flow in SendAI extension (#20711) - Update CODEOWNERs - Add commit-issue-parser extension (#20395) - Update CODEOWNERs - Add ozbargain-deals extension (#20288) - Update mermaid-to-image extension (#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/oldwinter/.codeium/windsurf/bin:/Users/oldwinter/.local/share/mise/installs/bun/1.2.20/bin:/Users/oldwinter/.local/share/mise/installs/go/1.25.0/bin:/Users/oldwinter/.local/share/mise/installs/java/openjdk-21.0.2/bin:/Users/oldwinter/.local/share/mise/installs/node/24.6.0/bin:/Users/oldwinter/.local/share/mise/installs/python/3.11.13/bin:/Users/oldwinter/.local/share/mise/installs/ruby/3.2.9/bin:/Users/oldwinter/.cargo/bin:/Users/oldwinter/.local/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/Applications/Little Snitch.app/Contents/Components:/Users/oldwinter/.orbstack/bin:/Users/oldwinter/.local/bin:/Users/oldwinter/Library/Application Support/JetBrains/Toolbox/scripts (#20458) - Update system-monitor extension (#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (#20558) - Update CODEOWNERs - Update wol extension (#20601) - Update CODEOWNERs - Add google-lens extension (#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (#20747) - Update visual-studio-code extension (#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (#20563) - Add dia-skills extension (#20548) - Update letterboxd extension (#20615) - end-of-life - Windows support (#20701) - Gemini/updatemodels-July (#20662) - Fix: Support currency format in transaction amount validation (#20399) - Update CODEOWNERs - feat: Update Rewind Icon (#20744) - Update CODEOWNERs - Update hypersonic extension (#20462) - Update CODEOWNERs - Update grok-ai extension (#20734) - Add network-proxy extension (#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (#20460) - Update defbro extension (#20367) - Show Artist\'s name when liking current track (#20583) - Update wechat-devtool extension (#20668) - Add character tabulation to Unicode Symbols extension (#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (#20168) - Update nusmods extension (#20625) - Update quick-notes extension (#20569) - Update CODEOWNERs - Deleted directory (#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (#20749) - Renames the extension from "hoarder" to "karakeep". (#20113) - Update pr-bot.ts (#20775) - Update CODEOWNERs - Update pomodoro extension (#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (#20221) - Update CODEOWNERs - Add VLC extension (#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (#20702) - Update Project Hub Extension - Add Recent Projects Section (#20561) - Update arc extension (#20761) - Update extension (#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (#20626) - Add `Host.io` extension - get full domain data for any domain (#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (#20502) - Update youversion-suggest extension (#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (#20357) - Deprecate Ghost Docs Extension (#20690) - Update CODEOWNERs - author update (#20705) - [Badges][Brand Icons] Bugfixes & improvements (#20545) - Update public_raycast_extensions.txt (#20688) - Update CODEOWNERs - Update pieces-raycast extension (#20296) - feat[Backstage plugin]: configurable Backstage API URL (#20398) - Update whisper-dictation extension (#20482) - Update CODEOWNERs - Update endoflife (#20651) - Update T3 chat\'s icon (#20599) - Update CODEOWNERs - feat: add windows support mymind extension (#20239) - [Mastodon] Add support for Windows (#20448) - [NeoDB] Add support for Windows (#20471) - Update CODEOWNERs - [NUSMods] Add support for Raycast Windows (#20240) - [Todoist] Windows support (#20487) - Update gdrive homepage url (#20608) - Update CODEOWNERs - Arc: Fix trying to open a tab with `open` (#20579) - Update Zerion author to original one (#20582) - Update CODEOWNERs - Update zerion author (#20581) - feat: Backstage plugin supports static token (#20383) - [groq] Remove Llama Guard 4 12B 128K (#20507) - Update CODEOWNERs - Add preference to toggle default reuse open GitHub search tab (resolves #20488) (#20489) - Add weread-sync extension (#20205) - Docs: update for the new API release - Update CODEOWNERs - Add cloudflare-email-routing extension (#20305) - Update dpm-lol extension (#20491) - macosicons: fix API error handling for non-JSON responses (#20172) - Update CODEOWNERs - [Perplexity] Add Perplexity desktop app support to extension (#20393) - Parse Zed local workspace paths from binary format correctly (#20086) - Docs: update for the new API release - Update prepare-an-extension-for-store.md (#20473) - Update wechat-devtool extension (#20406) - [Update] [IP Geolocation] Optimize extension icons (#20467) - Update CODEOWNERs - [World Clock] Avoid accessing the `.map` function on possibly undefined data (#20469) - Update CODEOWNERs - [Update] [Easy New File] Support Default Directory (#20449) - update pr merge dates (#20457) - Update grammaring extension (#20464) - [raycast2github] Fix name mapping (#20472) - Update CODEOWNERs - Add extension for opening new instances of apps (#20432) - Update CODEOWNERs - Update remove-paywall extension (#20331) - Update CODEOWNERs - Update registries to use the official npmjs registry (#20440) - Add paste-to-markdown extension (#19999) - Update CODEOWNERs - Update vscode-project-manager extension (#20446) - [Easings] Add spring animations (#20445) - Update CODEOWNERs - Update groq extension (#20439) - [Brand Icons] Use `pacote` for downloading & extracting icons (#20391) - [espanso] support import (#20400) - Update secret-browser-commands extension (#19948) - Fixing issue in ext/beehiiv (#20437) - Update CODEOWNERs - Update change-case extension (#20002) - Update ideate extension (#20063) - Update `Appwrite` extension - DB, Storage, User Enhancements (#20386) - Update `Oracle Cloud (OCI)` extension - implement provider w/ context + basic objectstorage command (#20405) - [valkey commands search] Migrate to useFetch and group the commands (#20421) - Update `Neon` extension - add project, delete projects + Modernize to use latest Raycast config (#20402) - [espanso] add binary path option (#20280) - [Larajobs] update metadata image + chore (#20417) - feat(readwise-reader:) add option to open in Reader desktop app (#20424) - Update URL unshortener (#20385) - Update granola extension (#20384) - feat(readwise-reader): add ability to include tags when saving links (#20388) - Update background-sounds (#20387) - Update ScreenOCR (#20408) - Update instagram-media-downloader extension (#20413) - Update yu-gi-oh-card-lookup extension (#20414) - Update CODEOWNERs - Add pdf-compression extension (#20194) - Update CODEOWNERs - Add control kef extension (#20127) - Update pr-bot.ts (#20376) - Update Tasklink extension (#20375) - Update CODEOWNERs - Added open-in-textmate extension (#20266) - Update CODEOWNERs - Update ente-auth extension (#20122) - [SteamGridDB] Add support for Windows (#20364) - Update CODEOWNERs - [Update] [DocSearch] Add TailwindCSS v4, Next.js, MassTransit and Pinia documentations (#20254) - Update CODEOWNERs - FocusFLOW (#20214) - Update repology-search (#20370) - Update CODEOWNERs - Add WeChat DevTool extension (#20222) - Update URL-unshortener (#20136) - [ProtonDB] Add support for Windows (#20338) - Fix GIF Search extension updates (#20360) - PR bot assignee constant (#20358) - run pr bot on ready to review (#20356) - [TourBox] Add support for Windows (#20337) - add debugging for draft pr review assigning (#20353) - Update `Name.com` extension - ✨ AI Enhancements (add 3 Tools) + Migrate API (Legacy v4 to Core v1) + Modernize (#20340) - PR bot should check PR files in existing extensions too (#20352) - Update CODEOWNERs - Add console logs to PR Bot for testing (#20351) - Add rounding-number extension (#20232) - Update CODEOWNERs - toggle-desktop-visibility for mac os 26 tahoe (#20225) - Update zipline extension (#20336) - Update CODEOWNERs - Update slack extension (#19219) - Update FHIR extension (#20329) - Update CODEOWNERs - Update CODEOWNERs - [Easy Dictionary] Remove the unused icon file (#20333) - Update aerospace extension - Changed the icon to the new design. (#20342) - things: handle JXA scripts with no result (#20341) - Update trenit extension (#20215) - Apply "AI Extension" label for new extensions as well as existing ones (#20306) - Update `Short.io` extension - `search-links` now allows you to view links independent of default + fix: `shorten-link-with-domain` persists Default Domain properly (#20327) - Create new message when no number match found (#20326) - Update CODEOWNERs - Support for OTP codes that include a hyphen (#20236) - Update anytype extension (#20227) - Update CODEOWNERs - Update ray-boop extension (#20231) - Update easydict extension (#20190) - Update CODEOWNERs - Add quick-jump extension (#20050) - Update CODEOWNERs - Add zipline extension (#20157) - Update CODEOWNERs - Add ship24-client extension (#20170) - Update Raycast X link in README (#20318) - things: improve project detection to not depend on existing projects (#20300) - noteplan 3 | fix #20116 Daily plan not displaying (#20308) - Update CODEOWNERs - feat(notion): show properties in page preview (#20111) - Update CODEOWNERs - fix: typescript error handling (#20298) - Update spotify-player extension (#20178) - Update CODEOWNERs - New Extension : Percentage Calculator (#20195) - Update CODEOWNERs - Update g-cloud extension (#20210) - Update Lightshot Gallery extension (#20246) - [HoudahSpot Search] fix fallback text not used (#20295) - Update CODEOWNERs - Update browser-bookmarks extension (#20187) - Add trip search command to Norwegian Public Transport extension (#20226) - Update CODEOWNERs - Add FHIR extension (#20163) - Update CODEOWNERs - Update xecutor extension (#20159) - Add climbing-grade-converter extension (#20134) - Update Cider extension (#20241) - Update CODEOWNERs - change author (#20289) - things: enhance error reporting + troubleshooting hints (#20224) - [Update] [Hide Files] new icon style (#20253) - [Update] [Bing Wallpaper] Add refresh interval (#20249) - Update CODEOWNERs - [Update] [Browser tabs] new icon style (#20251) - [Update] [Maven Central Repository] new icon style (#20252) - Add clipyai extension (#19740) - Update CODEOWNERs - Update CODEOWNERs - Update `Larajobs` extension - filter by Type, Salary, Tag (#20286) - [zed-recent-projects] Adds a preference checkbox to use the Zed development Sqlite database (#19803) - Add Metabase AI Tools (#17673) - Update CODEOWNERs - Add squeeze extension (#20083) - Update CODEOWNERs - Update CODEOWNERs - Add `Upstash` extension - List Redis Databases, View Details & Usage, Create Database + List Vector Indices, Create Index, Delete Index (#20274) - Update `HoudahSpot Search` extension - fix: text passed as "undefined" when Argument is empty in fallback mode + add `metadata` image + Modernize + `chore` (#20250) - [Spaceship] Toggle Domain Transfer Lock + Get Domain Auth Code + Add AAAA, CNAME DNS Records (#20243) - Update `Keygen` extension - List & Add Products + Color License based on Status + show: Expiry, Scheme, Valid in License (#20228) - Update `Sanity` extension - update logo + modernize (#20220) - Update CODEOWNERs - Update `MailerSend` extension - View API Quota + Filter Domain Activity by Type + View, Rename, Toggle (Pause/Unpause) Tokens (#20197) - [Say] Fix duplicate lines in Configure Say command (#20245) - [Update][Are.na] show status accessory w/ color in search channels + remove auto-generated types (#20265) - Update CODEOWNERs - [ccusage]: fix(#20056) resolve custom npx path issue in ccusage CLI commands (#20262) - update[send-ai]: added new features in the extension (#20273) - [Image Modification] Bug Fixes (#20282) - Update curl extension (#20284) - Update f1-standings extension (#20217) - Update CODEOWNERs - Add csfd extension (#18344) - Docs: Update the utils docs - Update CODEOWNERs - Add rewiser extension (#20023) - Update `Resend` extension - Update Icons + Modernize to use latest config + chore: remove `node-fetch`, `cross-fetch` (#20179) - Update CODEOWNERs - Major update to Kaleidoscope extension, see README and CHANGELOG. (#20076) - [catppuccin] update data source (#20216) - update extension raycast-Gemini - safety-setting (#19277) - Update CODEOWNERs - Add ray-boop extension (#20108) - Update CODEOWNERs - [Spotify Player] Fix for Search command not working issue (#20183) - Update CODEOWNERs - Add new raycast extension - SendAI (#20104) - things: fix project update actions (#20161) - Update `Wave` extension - Add new customers through `Form` + Remove customers after confirming (`Alert`) + Move "Business Customers" to its own file + Modernize to latest config (#20185) - Spotify Lyric Finder Improvements (#20154) - Update CODEOWNERs - Add certificate-viewer extension (#20110) - Update CODEOWNERs - Add markdown-preview extension (#20052) - Update CODEOWNERs - Add somafm-for-raycast extension (#20027) - feat: add getThumbnailUrl to optimize image loading and update components to use it (#20177) - Update CODEOWNERs - feat: add resend wallpaper extension (#20169) - Update CODEOWNERs - Update `Polar` extension - View Products and their Media + Optionally BYOK + Remove `node-fetch` (#20156) - Update CODEOWNERs - Add Instant Translate feature to Google Translate extension (#20093) - Add quick-quit extension (#19869) - extensions/messages: docs: add note about automation permissions for sending messages (#20148) - Update `Doppler` extension - View Logs of a Config + "Open In Doppler" component (#20164) - Try/catch AI label PR bot (#20165) - Auto-label AI extensions in PRs (#20160) - Update CODEOWNERs - Update apple-notes extension (#19613) - Update CODEOWNERs - Add roblox-creator-docs extension (#20024) - Update music extension (#19654) - Update CODEOWNERs - Update apple-notes extension (#20138) - Update zeabur extension (#20140) - Update `radicle` extension - remove need for `radicle-httpd` (#20141) - Update CODEOWNERs - Update spotify-player extension (#19950) - Update CODEOWNERs - Add windsurf extension (#20046) - Add stacks extension (#19863) - Update CODEOWNERs - Add markdown-styler extension (#19967) - Update CODEOWNERs - Update CODEOWNERs - Update `Pocket` extension - add an Alert in Show informing users to Export + required url in create (#20126) - Update `Obsidian Tasks` add `preference` to show description in details markdown (List Tasks) (#20098) - [create-link]: Add customizable templates and tab selection feature (#20120) - Update preferences.md (#20131) - Update CODEOWNERs - [Get SSH Keys] OpenInFinder + Key as Icon (#20117) - No `-lossless` flag on `dwebp` (#20125) - feat: add Gen-PDF MCP Server to the registry (#19924) - Update CODEOWNERs - Update CODEOWNERs - Add tidal extension (#19784) - Add image-shield extension (#19969) - Update CODEOWNERs - Update cobalt extension (#20090) - Update sequoia-tiling extension (#20101) - Update lookaway extension (#20092) - Update media-converter extension: proper user preferences (#20081) - docker,dockerhub,drafts,ensk-is,seo-lighthouse: Update to use newer version of `tar-fs`. (#20068) - Update CODEOWNERs - Add Default Formality Configuration Option (#19656) - Update CODEOWNERs - Add sidecar extension (#19980) - [GitLab] Group milestones on issue and mr create form (#20072) - Update CODEOWNERs - Update CODEOWNERs - Update `Short.io` extension - Add Domain inside `shorten-link-with-domain` + Modernize extension to use latest Raycast config (#20070) - fix: replace youtube-transcript lib (#20080) - Add sequoia-tiling extension (#19877) - Update CODEOWNERs - Update github extension (#20073) - Update CODEOWNERs - Support device name for audio device selection (#19995) - New: Password.Link Extension (#19996) - Update CODEOWNERs - Add clipmate extension (#19958) - Update CODEOWNERs - Add regex-batch-renamer extension (#19849) - [Bitwarden] Catch OTPAuth initialization (#20064) - Update CODEOWNERs - Update quick-notes extension (#19965) - Update linkding extension (#19756) - Update media-converter extension (#20061) - Update CODEOWNERs - Update docker extension (#19817) - [ChatGPT Quick Actions] API pricing fix (#19964) - Update raycast-zoxide extension (#20032) - Update whisper-dictation extension (#19989) - Browser Bookmarks: Add support for Dia and Ghost Browser (#19971) - Update CODEOWNERs - Add duan-raycast-extension extension (#19765) - Update CODEOWNERs - Add ideate extension (#19791) - Update CODEOWNERs - Update transmission extension to fix error on showing a list (#19809) - Update CODEOWNERs - Update Markdown to ADF library (#19972) - Update CODEOWNERs - DotMate - Raycast Extension for Dotfile Management (#19819) - Update media-converter extension: better installation (#19808) - Update wp-bones extension (#19953) - Update CODEOWNERs - Update CODEOWNERs - Update project-code-to-text extension (#19921) - Add `MailerSend` extension - View Domains, View Domain Activity (24 hours), View Templates, View Users (#20022) - Update CODEOWNERs - Add psn extension (#19914) - Update CODEOWNERs - Add minio-manager extension (#19906) - Fix Slack extension YAML (#19865) - Better handling of cloc command to show statistics (#20040) - Aerospace - add monitor name to switch apps action (#19899) - Updated Font Awesome version, added support for more icon types (#19963) - Update CODEOWNERs - Update translate extension (#19933) - Update openrouter-model-search extension (#20028) - [ccusage] Hotfix critical React Hooks Rules violations and improve loading states (#20033) - [Google Translate] Show auto detected language in Quick Translate (#20036) - [Bitwarden] fix: check if user can access BrowserExtension (#20029) - Update CODEOWNERs - Update tailwindcss extension - add default action preference to `Search Colors` command (#19707) - Add claude-code-cheatsheet extension (#19828) - Update Repository Manager (#19994) - [ccusage] Major v2.0.0 upgrade: AI extension support and architecture refactor (#20019) - [Google Translate ] fix quick translate with Chinese auto detected language (#19991) - Update CODEOWNERs - Add redirect-trace extension (#19854) - Update workouts extension (#20018) - Update raycast-wallpaper extension (#20017) - Fix Slack powershell script (#20014) - Linear: Fix SVGs to include xmlns (#20012) - Feat: Add permalink to Dub Link page (#20004) - [Google Translate] Improve UX for quick language change in Translate Form (#19990) - Update react-native-directory extension (#19992) - [Bitwarden] Catch authenticator initialization error (#19997) - [Dribbble, Uplabs] Remove Dribbble and Uplabs extensions (#19913) - Update youtrack extension (#19983) - Fix Slack extension: search messages from specific user (#19731) - [Daminik] use URL instead of Slug in Preferences (#19934) - Docs: update for the new API release - Update youtrack extension (#19925) - Update workouts extension (#19981) - [Update] [Raycast Wallpaper] More Auto Switch Interval (#19952) - [Update] [Easy New File] Supports Form layout (#19954) - [Google translate] fix Chinese and some other languages (#19957) - [Update] [Life Progress] (#19959) - Update compressx extension (#19966) - Patched breaking API change (#19974) - Update `Coolify` extension - fix: Unable to delete Databases in `Resources` + view `ENVs` of **applications** and **services** (#19940) - [MyIdlers] - Domain, Shared, Reseller and Server are now split into "Active" and "Inactive" sections (#19968) - [Brand Icons] Routine maintenance (#19912) - Update CODEOWNERs - [ccusage] Clean up unused dependencies and exports (#19916) - Add kusto-reference extension (#19836) - Update CODEOWNERs - Make sure extensions use official npm registry (#19911) - Update safari extension (#19829) - Update CODEOWNERs - Housekeep Knip config (#19903) - [Confluence Search] Use the npm official registry (#19901) - Update CODEOWNERs - [ClickUp] persist priority on create (super minor fix) + add some missing icons (#19904) - Update CODEOWNERs - [Gitlab] Add issue filter on issues menu item (#19769) - [Google Translate] add all the languages from google translate, remove flags (#19905) - Release more extensions on Windows (#19896) - Update `SolusVM 2` extension - Reinstall Server + View,Create,Remove Snapshots + Invite,Remove Members (#19900) - Update CODEOWNERs - Add openrouter extension (#19831) - Update CODEOWNERs - Add ccusage extension (#19792) - Update CODEOWNERs - Add open-in-trae extension (#19705) - Update CODEOWNERs - [dust-tt] update auth provider (#19783) - Update CODEOWNERs - Update CODEOWNERs - Update aws extension (#19476) - [Promptlab] Use the npm official registry (#19895) - Update CODEOWNERs - Add loan-calculator extension (#19781) - Update CODEOWNERs - Update CODEOWNERs - [Markdown to Plain Text] Use the npm official registry (#19894) - Update Wifi Password Reveal (#19402) - Update CODEOWNERs - [Bitbucket Search] Use the npm official registry (#19891) - Update CODEOWNERs - [Akkoma] Use the npm official registry (#19893) - Update CODEOWNERs - Update CODEOWNERs - [Find OpenGL Enum] Use npm official registry (#19889) - Add microblog extension (#19777) - Update CODEOWNERs - Add beehiiv extension (#19770) - Update CODEOWNERs - Preview visibility, toast fix, and png w/ background option (#19855) - Folder search/drag n drop (#19841) - Update slugify-file-folder-names extension (#19850) - Update `NameSilo` extension - View Contact Profiles + View & Configure Email Forwards + Modernize (#19871) - Ext/popcorn: Fix stream selection bug, and added more support for other addons (#19873) - Update zeabur extension (#19881) - Update CODEOWNERs - Adds glossary extension (#19502) - Update flush-dns extension (#18964) - Update CODEOWNERs - Add geoconverter extension (#19759) - Add Keboola MCP Server to the Model Context Protocol registry (#19753) - Update CODEOWNERs - Update CODEOWNERs - Bitbucket feature (#19739) - Add nyc-train-tracker extension (#19185) - Update CODEOWNERs - Add popcorn extension (#19823) - Update google-scholar extension (#19796) - Update quick-git extension (#19778) - Update Harpoon extension (#19798) - Update instagram-media-downloader extension (#19789) - Update mozilla icon (#19801) - [Xcode] AI Tools & Improvements (#17875) - Update CODEOWNERs - Add `Keygen` extension - View Licenses & Policies + Create Licenses & Policies (#19802) - Update CODEOWNERs - [ClickUp] allow creating task w/o priority + add OpenInClickUp Action (#19787) - Update `Mixpanel` extension - Support All Server Regions + Update Logo + better Error Handling + Modernize (#19821) - Update CODEOWNERs - Add bookmark/save to queue for Matter (#19434) - Update wip extension (#19837) - Update CODEOWNERs - Update Okta search extension (#19825) - Add image-search extension (#19672) - Update CODEOWNERs - Add chronometer extension (#19295) - Add url-editor-pro extension (#19661) - Update CODEOWNERs - Add shutdown-timer extension (#19650) - Docs: update for the new API release - Docs: Update the utils docs - Update CODEOWNERs - Add AWS Audit Manager and update Amazon Bedrock details in aws-servic… (#19685) - Add Creation Date option for sorting (#19682) - Add clipboard-sequential-paste extension (#19679) - Update CODEOWNERs - Add open-docker extension (#19671) - Cleanup unused lockfile (#19659) - [Hue] Fix certificate handling (#19658) - chore: update icon path in the README.md file (#19773) - Update CODEOWNERs - Update CODEOWNERs - Add `Dokploy` extension - Add Instances then manage services and docker containers (#19668) - Update `Geist UI Components` extension - Modernize + Update Logo + Add Hooks, metadata images (#19775) - add ai incident search to incident.io extension (#19631) - [Hookmark Search] Fix bookmark properties encoding (#19543) - Updated to new version extension (#19358) - Update dexcom-reader extension (#19642) - Add priority levels mapping (#19771) - Docs: update for the new API release - Expected Delivery Date Formatting Overhaul (#19649) - Update `Brand.dev` extension - add fonts, stock, email, phone + remove "verified" + change Browser Action + Modernize (#19645) - Update CODEOWNERs - [WP Plugins] add pagination + add shortcut to "Download" + Modernize (#19683) - Fix search authentication errors - resolves #19400 (#19450) - Update CODEOWNERs - docs: update Shadcn Vue icon path (#19639) - Update shadcn-vue extension (#19637) - Update lucide-icons extension (#19763) - fix: only index field must be required others if not input should fall to defaultValue (#19747) - Update CODEOWNERs - chore: update firecrawl version + add integration parameter (#19725) - Update finderutils extension (#19751) - Update google-scholar extension (#19761) - Docs: update for the new API release - Update web3bio extension (#19629) - [browser-tabs] Fix for Duplicate Tabs Issue (#19665) - [Folder-Search] - Major Improvements: Bug Fixes, Error Handling, Performance (#19663) - Update CODEOWNERs - Update zen-browser extension (#19611) - Fix: Add latest OpenAI models and consolidation system (#19592) - Update CODEOWNERs - Add yomicast extension (#19573) - Add chhoto-url extension (#19567) - [Laravel Herd] (#19733) - Update CODEOWNERs - Update audio-device extension (#19074) - Update code-saver extension (#19687) - Update grammaring extension (#19681) - Update `HetrixTools` extension - Add Status Pages command + modernize to use latest config (#19728) - Update vmware-vcenter extension (#19716) - Update CODEOWNERs - Add force kill to kill-process extension (#19607) - Update docker extension (#19698) - Update CODEOWNERs - Update CODEOWNERs - Add quick-git extension (#19405) - Add copee extension (#19526) - Update CODEOWNERs - Add rize-io-sessions extension (#19677) - Update CODEOWNERs - Add advanced-speech-to-text extension (#19517) - Update CODEOWNERs - Clipsign - extension for creating, saving, and instantly copying your e‑signature (#19453) - Update CODEOWNERs - Update `HubSpot` extension - You can now `copy` some properties of a Contact through new "Copy to Clipboard..." submenu (#19652) - Update project-code-to-text extension (#19676) - Update CODEOWNERs - Update `Country Lookup` - Offline Support since API is now limited + Modernize (#19693) - Update quick-event extension (#19258) - Update CODEOWNERs - Update prism-launcher extension (#19601) - Fix obsidian-raycast bug on note creating (#19635) - Update CODEOWNERs - Add whisper-dictation extension (#19532) - Update CODEOWNERs - Updated the URL for the Prisma MCP server (#19472) - Add open-latest-url-from-clipboard extension (#19624) - Update CODEOWNERs - Update shadcn-ui extension (#19525) - Update CODEOWNERs - Update CODEOWNERs - Improve Flight Details Layout: Combined Times & Side-by-Side Terminal/Gate (#19521) - Add analog-film-library extension (#19514) - Update CODEOWNERs - Add volumio-control extension (#19504) - Update CODEOWNERs - [Color Picker] Fix returned value from callback-launch command (#19619) - [GitHub] Add preference to exclude repositories from other commands (#17468) - Update CODEOWNERs - Add diff-view extension (#19463) - Add kagimcp server (#19568) - [Bitwarden] Fix Authenticator "TypeError: t is not a function" (#19616) - Include Outlook in app description (#19594) - Update CODEOWNERs - add Open Documentation (#19500) - Update sportssync extension (#19483) - Update CODEOWNERs - macosicons: include user applications (#19482) - [Brand Icons] Add compatibility with Simple Icons 15 (#19478) - Docs: update for the new API release - Update prism-launcher extension (#19599) - [United Nations] Maintenance & fix news format (#19584) - Update prism-launcher extension (#19598) - Update CODEOWNERs - Apple reminders/show which list reminder is from (#19343) - Update battery-optimizer extension (#19190) - Update awork extension (#19558) - Update CODEOWNERs - feat: Add history command (#19589) - Update system-monitor extension (#19595) - Update Ext/window sizer (#19580) - Enhanced Date Format Support (#19539) - [TRELLO] Allow for unassigned card and update dependencies (#19519) - Update `Oracle Cloud` extension - (Confirm and) Terminate Instance + Add "Open in OCI" `Action` (#19534) - Update Ext/window sizer (#19541) - Update `Cloudflare` extension - Add A,AAAA,TXT DNS Records + Delete any DNS Record + Improve error handling function + Modernize extension to use latest Raycast config (#19552) - Update wp-cli-command-explorer extension (#19559) - Update CODEOWNERs - Update reverso-context extension (#19452) - Update CODEOWNERs - Add project-code-to-text extension (#18996) - Update CODEOWNERs - Add project-hub extension (#19293) - Update CODEOWNERs - Update GemOptions.tsx (#19136) - Update checksum (#19492) - Update CODEOWNERs - Update united-nations extension (#19528) - Update downloads-manager extension (#19407) - Update CODEOWNERs - Move `josephlou` to past contributors (#19522) - Update aave-search extension (#19366) - Update CODEOWNERs - Add dexcom-reader extension (#19141) - Update CODEOWNERs - Update digitalocean extension addressing issue displaying automated deployments (#19432) - Update Fabric extension - location and tag selection (#19470) - Wikipedia language improvements (#19473) - Update Ext/window-sizer (#19499) - Update CODEOWNERs - Add slugify-file-folder-names extension (#19422) - Update messages extension (#19426) - macosicons: fix lint (#19497) - Update CODEOWNERs - Add google-scholar extension (#19392) - Update CODEOWNERs - Add `SolusVM 2` extension - Manage Servers + View,Update Members + View,Create API Tokens & Settings + View ISOs (#19486) - Update CODEOWNERs - feat: add Anytype MCP Server to the registry (#19506) - Add `Appwrite` extension - Add multiple projects and view various services (#19510) - Update CODEOWNERs - Add foodle-recipes extension (#19084) - Update CODEOWNERs - Add cangjie extension (#19308) - Update CODEOWNERs - feat(google-calendar): create events with natural language duration input (#19317) - Update CODEOWNERs - Improved Category Search & Fixed Budget Details (#19451) - Update qrcode-generator extension (#19455) - Fix Toggle Grayscale exstension (#19236) - Add unix-timestamp-converter extension (#18949) - Update parcel extension (#19466) - Fix Slack emoji search missing scope error - resolves #19441 (#19447) - feat: add Thena MCP entry to official entries (#19379) - Update Ext/Window Sizer (#19459) - [2FA Directory] filter by category (like the Website) + modernize to use latest Raycast config (#19454) - Update CODEOWNERs - Update todoist extension (#19309) - Update CODEOWNERs - [git-repos] Fix issue with the path of the repository (#19440) - Folder search fallback bug fix (#19449) - Update CODEOWNERs - Update CODEOWNERs - Update parcel extension (#19356) - Add fisher extension (#19213) - Update CODEOWNERs - Fix: React Rules of Hooks violation in New Tab command (#19384) - Docs: update for the new API release - Update prompt-stash extension - increase character limit and refactor validations (#19428) - Update stock-tracker extension (#19424) - feat(deepcast): Return to root state preference (#19430) - Update subwatch extension (#19433) - Update CODEOWNERs - Update linkding extension (#19436) - Update media-converter extension (#19385) - Update CODEOWNERs - [Dock] add MenuBar Item + add metadata image + Modernize (#19393) - feat: add Grafana MCP to registry (#19240) - Major improvement to Elgato Key LightsElgato enhancements (#19374) - Update anytype extension (#19418) - Update CODEOWNERs - feat(preferences): Option to Close Raycast After Translation (#19386) - Update mullvad extension (#19382) - Update CODEOWNERs - Update CODEOWNERs - Update stock-tracker extension (#19411) - Update t3-chat extension (#19412) - Update CODEOWNERs - Add Secret Browser Commands extension (#19396) - Update CODEOWNERs - Update linkding extension (#19395) - Update sql-format extension (#19398) - Update zeabur extension (#19413) - Update `Google Books` extension - feat: filter results by category, use `useFetch` for caching + docs: add CHANGELOG + modernize: use latest Raycast config (#19414) - Update Ext/window sizer (#19416) - Update CODEOWNERs - Ability to copy song\'s artist and title (#19368) - Update CODEOWNERs - DEVONthink 4 (#19375) - Add position-size-calculator extension (#19123) - Update CODEOWNERs - Add ratingsdb extension (#19298) - Update Ext/window sizer (#19348) - Update `ClickUp` extension - choose status from Dropdown in \'capture\' (close #19331) + update README (#19370) - Update Extension: Easy New File (#19364) - Updated openpgp version (#19367) - Update CODEOWNERs - Add Claude Sonnet 4 (#19362) - Update CODEOWNERs - Add paste-from-kindle extension (#19275) - Update CODEOWNERs - Ext/appcleaner (#19355) - Update prism-launcher extension (#19346) - Update CODEOWNERs - Update aws extension (#19347) - Update 1bookmark extension (#19350) - Update instagram-media-downloader extension (#19360) - Docs: update for the new API release - Antinote: Support for Setapp version (#19345) - feat(ci): comment when changelog missing (#19305) - Update CODEOWNERs - Update jenkins extension (#19286) - Update prism-launcher extension (#19330) - Docs: update for the new API release - Update downloads-manager extension (#19340) - Update CODEOWNERs - Add open-gem-documentation extension (#18998) - Update miro extension (#18702) - Fix open with IINA action (#19251) - Update CODEOWNERs - Add notes limit for AI usage (#19332) - Update CODEOWNERs - added searching by permissions (#18817) - Update CODEOWNERs - Add Keka extension (#19326) - Updated the Prisma MCP server entry. (#19334) - Update CODEOWNERs - Add AI Budget Tools, Enhanced Natural Language Queries, and Bug FixesF/raynab ai (#18611) - Add azure-icons extension (#19224) - Update CODEOWNERs - Update spotify-player extension (#18815) - Update CODEOWNERs - Update Credits for One Thing Extension (#19303) - Ext/penflow ai (#18799) - Docs: update for the new API release - Update clarify extension (#19222) - Update CODEOWNERs - Add grammaring extension (#19220) - Update CODEOWNERs - Add instagram media downloader extension (#19191) - Add paperless-ngx MCP server entry to the registry (#19300) - Update cloud-cli-login-statuses extension (#19284) - [Dropover] Fix special characters in filenames and update docs (#19318) - [Rebrandly] Update Links + Modernize (#19319) - Update Ext/window sizer (#19316) - Update CODEOWNERs - Update CODEOWNERs - Update brand-fetch extension (#19012) - Update CODEOWNERs - Update prism-launcher extension (#19117) - feat(superwhisper): add search history (#18810) - Add hammerspoon extension (#18922) - MCP: Fix lint issues (#19310) - Added the Shopify Dev MCP server (#19307) - Update CODEOWNERs - Update obsidian-tasks extension (#19151) - Add untis extension (#18735) - Update curl extension (#18931) - Dovetail extension: Pagination with query filtering (#19163) - Update CODEOWNERs - Fix tldraw project URLs (#19291) - Add Claude PR Assistant workflow (#19292) - Fix link to Smithery (#19285) - Update CODEOWNERs - Add rae-dictionary-raycast extension (#19171) - Supahabits: New command goals (#19282) - [Say] Routine maintenance (#19283) - Update CODEOWNERs - Update t3-chat extension - add beta checkbox (#19133) - Add Safari command to close other tabs (#19280) - When PRs are marked as ready for review, auto assign to Per (#19281) - Update CODEOWNERs - Add `Creem` extension - List,Create Products + List Payments (#19205) - Update CODEOWNERs - ✨ Add frecency sorting to gitmoji (#18974) - Update Ext/window-sizer (#19234) - Apple Mail add new command and AI tool (#19228) - Update `Unkey` extension - Modernize + Migrate broken endpoints to new ones to prevent crash (#19247) - Update Markdown Codeblock (#19271) - Update polymarket extension (#19273) - Update 1bookmark extension (#19255) - Update `cPanel` extension - Modernize + Manage API Tokens (create, revoke) + new function wrapping native `fetch` (#19274) - Init apify mcp server (#19193) - Update granola extension (#19215) - Added the Prisma MCP server (#19201) - Add Zeabur official MCP server to registry (#19217) - Update CODEOWNERs - Add are-na extension (#18646) - Update CODEOWNERs - Add slack-summarizer extension (#19032) - Update nostr extension (#19209) - Update CODEOWNERs - Update paperless-ngx extension (#19197) - Update CODEOWNERs - Add tableau-navigator extension (#19086) - Update CODEOWNERs - MCP: fix spawn ... ENOENT issue (#18399) - Update CODEOWNERs - Add quikwallet extension (#19047) - [Markdown Navigator] Remove duplicate files (#19208) - [Unifi] Remove outdated files (#19207) - [Trek] Remove outdated files (#19211) - [Expo] Remove duplicate files (#19210) - Update CHANGELOG.md (#19227) - Update danish-tax-calculator extension (#19200) - Bot: Only allow the OP to close the issue with a comment (#19196) - Docs: update for the new API release - Update raycast-icons extension (#18682) - [Sentry] Show projects for non US Sentry orgs (#18758) - Update package.json (#19195) - Update CODEOWNERs - Danish Tax Calculator (#19194) - feat: add Nuxt official MCP server to registry (#19034) - Update zen-browser extension (#19013) - Update CODEOWNERs - Add video-converter extension (#19030) - Update CODEOWNERs - Update polymarket extension (#19089) - Add wp-cli-command-explorer extension (#19063) - update extension raycast-gemini (#19021) - Update CODEOWNERs - Add smallpdf extension (#19041) - Update coin-caster extension (#19166) - Update CODEOWNERs - Update vuejs-documentation extension (#19072) - Update CODEOWNERs - Update qrcode-generator extension (#18792) - Update CODEOWNERs - add(KDE Connect): KDE Connect in Raycast (#18928) - Update CODEOWNERs - Add shell-alias extension (#19028) - Update lift-calculator extension (#19118) - Update servicenow extension (#19148) - Fix request loops (#19143) - Fixing two super small typos on the readme for the Obsidian plugin (#19139) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Clockify Extension: UX Improvement for "Start new Timer" functionality (#19026) - Update CODEOWNERs - Add setlist-fm extension (#19119) - Update zerion extension (#19132) - Update CODEOWNERs - Gitlab Extension: My merge requests & label based filtering (#19007) - Update CODEOWNERs - Add file-organizer extension (#18877) - Update CODEOWNERs - Update `Two-Factor Authentication Code Generator` - Rename Codes + Modernize + Add README (#19019) - [NixPkgs Search] Fetch version number from NixOS/nixos-search repo and compose url dynamically (#19025) - Update flibusta-search extension (#19131) - Update omnifocus extension (#19024) - Update tidal-controller extension (#18437) - Update CODEOWNERs - Add Mac network location changer (#18961) - LoL Esports AI tools (#18563) - Update servicenow extension (#18834) - Update at-profile extension (#18554) - Update shopify-theme-resources extension (#18991) - [Image Modification] Add support for QSpace Pro and ForkLift (#19108) - Update CODEOWNERs - Update kill-node-modules extension (#19039) - Update CODEOWNERs - Add grok-ai extension (#18566) - Update CODEOWNERs - Add subwatch extension (#18929) - Ente Auth - fix preferred values (#19029) - Update README.md (#19106) - Update CODEOWNERs - Update arc extension (#19062) - TickTick support AI Extension (#17531) - Update CODEOWNERs - Add domain field to fastmail-masked-email extension (#19066) - Apple Mail: Fix OTP codes across multiple mail accounts (#19033) - Update hardcover extension (#19065) - Update how-long-to-beat extension (#19042) - Update dovetail extension (#19102) - Update daily-sites extension (#19097) - Update Ext/window sizer (#19103) - Update index.tsx (#19067) - Docs: update for the new API release - Docs: update for the new API release - Update OpenVPN description to reflect recent changes (#18788) - Update CODEOWNERs - Add raycast-zoxide extension (#18908) - Update mermaid-to-image extension (#18975) - Update CODEOWNERs - fix(docs): mcp incorrect home page link (#19045) - Add search-domain extension (#18837) - Update CODEOWNERs - Add selfhst-icons extension (#18904) - Update CODEOWNERs - Update CODEOWNERs - Add option to automatically create labels in Todoist quick add command (#18892) - Add daily-sites extension (#18763) - Update CODEOWNERs - MCP Registry: Initial commit (#19015) - Docs: update for the new API release - feat(font-search): add postscript names menu (#19003) - Messages Paste OTP Regex Update (#18896) - Update Ext/window sizer (#19017) - Update CODEOWNERs - Add lipsum extension (#18784) - adding needed changes (#18987) - Update CODEOWNERs - feat: Rename NuxtUI extension to just Nuxt (#17887) - Update CODEOWNERs - [beszel-extension] Added AI tools for interacting with beszel (#17790) - Update CODEOWNERs - Update at-profile extension (#18881) - Update CODEOWNERs - Add flibusta-search extension (#18260) - Update CODEOWNERs - Update doge-tracker extension (#18950) - Update CODEOWNERs - Update CODEOWNERs - Update raycast-ollama extension (#18910) - feat(download-manager): add reload action (#18822) - Add `Name.com` extension - View Account Balance + View Domains + View DNS Records + Delete DNS Record (#18982) - Update CODEOWNERs - DeepWiki extension (#18804) - Update CODEOWNERs - add primary action switch to `one-time-password` (#18800) - Update google-chrome extension (#18794) - Update Ext/window sizer (#18988) - Update Ext/surge outbound switcher (#18989) - Update CODEOWNERs - Update prompt-stash extension (#18887) - Add geoping extension (#18957) - Update CODEOWNERs - Update migadu extension (#18930) - Update anytype extension (#18993) - Update CODEOWNERs - Add cocoa-core-data-timestamp-converter extension (#18656) - Add macports extension (#18773) - Update CODEOWNERs - Things - Set Reminders in Today and Upcoming (#18771) - Update git-assistant extension with rewrite of search git repositories command (#18948) - Update Ext/window sizer (#18963) - Update CODEOWNERs - Update meme-generator extension (#18844) - Update granola extension (#18972) - Update CODEOWNERs - Update package.json (#18970) - Update granola extension (#18915) - Update WIP extension (small typo fix) (#18962) - Docs: update for the new API release - Update CODEOWNERs - Update raindrop-io extension (#18882) - Update dust-tt extension (#18942) - Update Ext/window sizer (#18945) - Update CODEOWNERs - [Stripe] Fix "Open in Stripe Dashboard" action adding extra leading slash (#18953) - Update archiver extension (#18685) - Update CODEOWNERs - Folder Search Improvements (#18838) - Added "toggle connection" to tailscale extension (#18409) - Update esports-pass extension (#18920) - Update f1-standings extension (#18876) - Update CODEOWNERs - Add thock extension (#18618) - Update CODEOWNERs - Add tana-paste extension (#18355) - Update CODEOWNERs - Update granola extension (#18883) - Update CODEOWNERs - Update T3 Chat - new models (#18902) - Update draft-email.ts (#18895) - Update CODEOWNERs - Add zero extension (#18616) - [Apple Intelligence] Add localization (#18593) - Update research extension (#18769) - Update dolar-cripto-ar extension (#18873) - Update CODEOWNERs - [Doppler] Update doppler-share-secrets extension (#18523) - Update CODEOWNERs - Add barcuts-companion extension (#18737) - Update CODEOWNERs - New extension: Granola AI Meeting Notes (#17618) - [Spotify Player] Enable AI interaction with your queue (#18693) - Docs: update for the new API release - feat: replaced Exivo extension iconm due to trademark restrictions (#18868) - Make some extensions available on Windows (#18869) - Update animated-window-manager extension (#18865) - Update lingo-rep-raycast extension (#18721) - Update ugly-face extension (#18866) - refactor: respect system appearance (#18856) - Apple Mail: Paste latest OTP code (#18657) - Update CODEOWNERs - Add superhuman extension (#18391) - Update CODEOWNERs - Add animated-window-manager extension (#18712) - Update homeassistant extension (#18234) - Update CODEOWNERs - Update swift-command extension (#18761) - Update CODEOWNERs - Add tautulli extension (#18023) - Update CODEOWNERs - Add qutebrowser-tabs extension (#18694) - fix: update description in dia extension. (#18853) - Update CODEOWNERs - fix: fix not find zsh file (#18854) - Add nusmods extension (#18757) - Weather: Fix icon for Fog (#18849) - refactor: support more offset (#18850) - refactor: replace keystroke with key code (#18848) - Update origami extension (#18846) - Update system-information extension (#18783) - FIX code extraction imessage-2fa extension (#18836) - PurpleAir Extension Improvements: Multiple Sensor and Nearest Sensor (#18716) - Update f1-standings extension (#17861) - YoutubeMusic: Fixed Issue - remove Like and Like Songs (#18631) - [YubiKey Code] - Replace usage of WindowManagement.getActiveWindow with getFrontmostApplication (#18831) - Update CODEOWNERs - Add gotify extension (#18679) - Ext/window sizer fix screenshots and README (#18827) - Update CODEOWNERs - Add Verification/Sign-in Link Detection (#18695) - Dia (The Browser Company) extension (#18667) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Add cloud-cli-login-statuses extension (#18058) - [YubiKey Code] - Sort accounts by usage (#18781) - [hacker-news-top-stories] Add notification support (#18798) - Update threads extension (#18813) - Update Ext/window sizer (#18814) - Update CODEOWNERs - Revert "Update bmrks extension (#18539)" (#18811) - update extension raycast-gemini (#18666) - Update tinyimg extension (#18720) - Update xcode extension (#18746) - Update 1bookmark extension (#18664) - Update CODEOWNERs - Update aws extension (#18650) - [Things] Fix menu bar `Complete` action (#18641) - Update CODEOWNERs - Add nostr extension (#18637) - Docs: update for the new API release - Update CODEOWNERs - Add window-sizer extension (#18635) - Update CODEOWNERs - Add hardcover extension (#18628) - Update CODEOWNERs - Update quit-applications extension (#18617) - Update CODEOWNERs - Mark all extensions which uses AppleScript as macOS only (#18742) - Slack: enhance Search Emojis command with AI-powered suggestions (#18625) - Update CODEOWNERs - Update zen-browser extension (#18751) - Made use of Search API optional (#18410) - Update CODEOWNERs - Add magic-home extension (#18219) - Update CODEOWNERs - Add ton-address extension (#18683) - Update svelte-docs extension (#18749) - Update CODEOWNERs - Update hacker-news-top-stories extension (#18747) - Update bmrks extension (#18539) - Update CODEOWNERs - Add lookaway extension (#18589) - Update CODEOWNERs - Updating Raycast handle (#18738) - Update CODEOWNERs - Update regex-repl extension (#18724) - Update notis extension (#18727) - Update CODEOWNERs - Add `Canva` extension - View Designs and Open in Browser (#18645) - [SABnzbd] add README + Modernize to use latest config (#18670) - Update CODEOWNERs - Add go-to-rewind-timestamp extension (#18514) - Update CODEOWNERs - Update toggl-track extension (#18543) - Update CODEOWNERs - Update CODEOWNERs - Update thesaurus extension (#18569) - Update warp extension (#18504) - Handle undefined downloads in subtitle formatting (#18729) - Update mercado-libre extension (#18725) - Update tuple extension (#18718) - Update CODEOWNERs - Add origami extension (#18314) - Update README.md (#18719) - Update quick-event extension (#17943) - Update anytype extension (#18218) - Update sportssync extension (#18240) - Update CODEOWNERs - add new extension Pumble (#18253) - Update CODEOWNERs - Add macOSIcons.com extension (#18386) - fix(pianoman): Cannot read properties of undefined (#18591) - Update zeabur extension (#18675) - Supahabits/stats (#18700) - Update CODEOWNERs - Update genius-lyrics extension (#18696) - chore(mcp): improve instruction and examples given (#18537) - Update CODEOWNERs - Add donut extension (#18711) - [Expo] Add support for Two Factor authentication (#18202) - Update CODEOWNERs - Update zen-browser extension (#18068) - Update CODEOWNERs - Update raindrop-io extension (#18668) - Update trovu extension (#18277) - Added "Create new Incognito Window" action for Chrome extension (#18262) - Update hacker-news-top-stories extension (#18705) - Update svelte-docs extension (#18686) - handle non existing file selection (#18674) - Ext/surge outbound switcher (#18633) - Update betterdisplay extension (#17535) - Update CODEOWNERs - Add lyric-fever-control extension (#18538) - 🐛 fix(wakatime): Fix Reported Store Issues & Update Dependencies (#18638) - Update CODEOWNERs - Update google-calendar extension (#18636) - fix details block in information doc (#18627) - Update CODEOWNERs - Update (#18632) - Update CODEOWNERs - Add playtester extension (#18492) - Docs: update for the new API release - Update CODEOWNERs - Add asciimath-to-latex-converter extension (#18496) - GitHub: Fix pull request filtering logic (#18624) - feat(search-chatwork): mod scope to use search contacts commands with OAuth (#18542) - Update CODEOWNERs - [Asana] modernize + close after creating task (close Issue) (#18531) - Update CODEOWNERs - Update package.json (#18483) - Update CODEOWNERs - Add dpm-lol extension (#18476) - Update CODEOWNERs - Update nba-game-viewer extension (#18623) - Add liquipedia-matches extension (#18455) - Update CODEOWNERs - Add git-worktrees extension (#18418) - Update CODEOWNERs - Update linkding extension (#18395) - Arc extension: (Re-)Add support to open blank incognito window (#18427) - Update CODEOWNERs - Update raycast-svgo extension (#18560) - Auto language detection and some small fixes (#18221) - Add steam-player-counts extension (#18435) - Linear: Update API and fixes (#18601) - Todoist: Fix AI get-tasks (#18603) - Update awork extension (#18580) - Update CODEOWNERs - Update lucide-icons extension (#18428) - Update aws extension (#18552) - Update CODEOWNERs - Add cerebras extension (#18508) - Update CODEOWNERs - Add manage runtimes and delete unsupported runtimes commands to Xcode extension (#18463) - Update CODEOWNERs - Update link-cleaner extension (#18422) - Update airpods-noise-control extension (#18126) - [Github extension] add support for merge queue and "merge when ready" (#18045) - Update ihosts to support remote hosts (#18176) - Update CODEOWNERs - Update CODEOWNERs - [ADB] Add Uninstall command (#18091) - Update paste-as-plain-text extension (#18574) - Update deepcast extension (#18598) - Update CODEOWNERs - Add hacker-news-500 extension (#18431) - GIF Search: Use `Clipboard` API to copy GIF instead of AppleScript. (#18588) - Todoist: New API, improvements and bug fixes (#18518) - Update CODEOWNERs - Update raycast2github.json (#18575) - Update dust-tt extension (#18578) - Update cal-com-share-meeting-links extension (#18577) - Update ns-nl-search extension (#18576) - Commands and Navigation Enhancements (#18528) - Update CODEOWNERs - Add `Netherlands Railways Find a train` extension (#18420) - Update CODEOWNERs - Update `CricketCast` extension - Modernize + Better Score Error Handling (#18555) - Update Connect to VPN extension (#18406) - Update CODEOWNERs - Update jetbrains extension (#18545) - Update copymoveto extension (#18535) - Update CODEOWNERs - Update github-profile extension (#18551) - Enable Chat Actions When Viewing Previous Conversations (#18547) - html-colors: add filtering option to group colors by shade (#18529) - [Things] Display only incomplete todo in the menu bar (#18515) - Update WeChat (#18345) - Update `Spaceship` extension - Modernize + DNS Enhancements (#18571) - Update CODEOWNERs - Update CODEOWNERs - parcel: add "Track on Website" and improve client (#18333) - Add paystack extension (#18375) - Update CODEOWNERs - Update gg-deals extension (#18519) - Update dub extension (#18517) - Fix 404 error by replacing the repo where we get the name from (#18525) - Improved fallback command and flickering during search (#18533) - feat(bento-me): improve UI. (#18521) - Update CODEOWNERs - Update clockify extension (#18401) - Update CODEOWNERs - Add "Obsidian Tasks" Extension (#18390) - Ai extensions/elgato key light (#17822) - Update utilities.md (#18510) - Update CODEOWNERs - Add virustotal extension (#18373) - Update CODEOWNERs - things: detect URLs in notes (#18362) - Update CODEOWNERs - Update deno-deploy extension (#17840) - Update dad-jokes extension (#18494) - Slack (#18156) - Delivery Tracker: Manually Mark as Delivered and Delete All Delivered Deliveries (#18485) - fix: gcloud path for non homebrew intel package installations (#18493) - Update CODEOWNERs - [Canvascast] Fix bugs with announcements and downloads (#18100) - Update adhan-time extension (#18204) - Update CODEOWNERs - Slack: New Command: Send Message (ISSUE-15424) (#16580) - Update antd-open-browser extension (#18299) - Update image-flow extension (#18470) - feat(himalaya): Update for Himalaya `v1.0.0` (#18388) - Add Find Features and AI Extension Support (#18195) - Add movie runtime information to Letterboxd (#18089) - Update CODEOWNERs - Update evernote extension (#17889) - Add g-cloud extension (#18093) - Update CODEOWNERs - Add awork extension (#17791) - Update laravel-herd extension (#18477) - feat(search-composer-packagist): display abandon package (#18307) - [Polar] Update Polar SDK Version (#18475) - Update CODEOWNERs - Add `Pastery` extension - Search Pastes, Create Paste, Delete Paste (#18404) - [Polar] Fix non-recoverable state when OAuth access tokens expires (#18471) - Docs: update for the new API release - Update CODEOWNERs - Update `Unsplash` extension - add Pagination, Caching + Modernize (close Issue) (#18384) - Update CODEOWNERs - Add jsrepo extension (#18346) - Update producthunt extension (#18442) - docs: asset folder clearing hint (#18320) - Update CODEOWNERs - Update vercast extension (#18297) - Update pcloud extension (#18291) - Update CODEOWNERs - Add image-to-ascii extension (#18282) - Update Tailscale extension (#18281) - [braid] Fetch icons dynamically from github (#18469) - [Bitwarden] Add authenticator primary action preference (#18464) - Improve URL retrieval with clipboard fallback (#18461) - Update dict-cc extension (#18443) - Update CODEOWNERs - Add valkey-commands-search extension (#18268) - Update CODEOWNERs - Update CODEOWNERs - Update reflect extension (#18294) - Add pollenflug extension (#17787) - Update CODEOWNERs - Add image-flow extension (#17383) - Update CODEOWNERs - Add laravel-herd extension (#18318) - Update 1bookmark extension (#18413) - [Bitwarden] Authenticator command (#18322) - Update quick-notes extension (#18389) - Update `My Idlers` extension - Optimistically delete Server (#18421) - Update CODEOWNERs - Update raycast-svgo extension (#18426) - [Contentful] fix: video assets not showing thumbnail (#18441) - Docs: update for the new API release - feat: added logic for properly counting CJK characters as words (#18430) - Update CODEOWNERs - Update tidal-controller extension (#18275) - Update CODEOWNERs - Update CODEOWNERs - Update obsidian extension (#18394) - Add surge-outbound-switcher extension (#18065) - Update CODEOWNERs - Add mistral extension (#18237) - add error handling when user tries to update todo from menu bar (#18047) - Update producthunt extension (#18352) - Update CODEOWNERs - Added Llama 4 models (#18424) - Add lift-calculator extension (#18245) - Fix the `mastodon` extension (#18407) - Update CODEOWNERs - Update mail extension (#18349) - feat(KeePassXC): add favicon support and better preference descriptions. (#18278) - Update CODEOWNERs - Add caschys-blog extension (#17768) - Update CODEOWNERs - Update dub extension (#17813) - Update whatsapp extension (#17474) - Fix the `dub` extension (#18292) - fabric: update description (#18267) - Update package.json (#18374) - Update CODEOWNERs - Add smart-calendars-ai-create-events-using-ai extension (#18235) - Add handoff-toggle extension (#18228) - [Folder-Cleaner] feat: Clean One & Hooks (#18360) - Update CHANGELOG.md (#18372) - Update CODEOWNERs - Update gmail-accounts (#18332) - Update omni-news extension (#18327) - feat: add `bento.me` extension. (#18354) - Update CODEOWNERs - Misc: Update vulnerable version of axios (#18310) - Update CODEOWNERs - Add repository favorites feature to Bitbucket extension (#17652) - Update zed-recent-projects extension (#18340) - Update CODEOWNERs - Update tailwindcss extension (#18358) - Add time-logs extension (#17696) - python package search fix (#18300) - Update CODEOWNERs - [Update Figma Files] Adds ability to clear cache (#18367) - Add builtbybit extension (#18098) - Update CODEOWNERs - Update ssh-manager extension (#17885) - Update CODEOWNERs - Clean up split surrogate pairs (#18321) - noteplan 3 | add quicklink action (#17894) - Update stockholm-public-transport extension (#18020) - Update CODEOWNERs - Update supernotes extension to enable AI tools (#1…
- v1.1.0 release - chore: update default cheatsheets - chore(icons): improve icon matching with smart patterns - chore(icons): add icon audit script and resolve merge conflict - Merge pull request #1 from smcnab1/chore/cheatsheets-audit-2024-12-19 - chore(cheatsheets): add normalised front-matter to active cheatsheets - chore(cheatsheets): add index.json for active cheatsheets - chore(cheatsheets): archive outdated cheatsheets - chore(cheatsheets): add audit script and dependencies - chore: add github icon - perf: optimize cheatsheet count loading in repository details - fix: improve sync time display in repository manager - fix: ensure lastSyncedAt is properly updated in repository manager - feat: add Favorites filter option - fix: correct slug usage for repository cheatsheet favoriting - feat: enable favoriting for repository cheatsheets - feat: add clickable repository links - feat: add clickable GitHub links for repository files - fix: display proper repository names instead of random IDs - feat: add HTML element processing for repository markdown - cleanup: remove debug section from show-cheatsheets - feat: use custom GitHub PNG icon for repository cheatsheets - debug: add error display and data count debugging - fix: implement proper GitHub SVG icon with white tint - feat: use custom GitHub SVG icon for repository cheatsheets - feat: move sort preference to extension settings - fix: replace sort dropdown with filter dropdown in search bar - fix: ensure consistent type-specific icons and clean subtitles - feat: update filter dropdown labels for better clarity - refactor: remove redundant copy-cheatsheet command - feat: simplify cheatsheet tags with type-specific icons - feat: integrate repository cheatsheets into main cheatsheet view - feat: add sync all repositories functionality to repo manager - feat: complete file exclusion filters for repository imports - feat: complete GitHub API integration for fetching .md files - feat: complete Milestone 1.1.0 - User Repository Basics - feat: move repository description to top of metadata section - fix: use Globe icon instead of Box for public repositories - feat: improve owner profile access in repository details - fix: improve repository list icon display - feat: improve avatar display and add owner profile access - feat: add GitHub owner avatars to repository displays - feat: improve cheatsheet filtering to exclude non-cheatsheet files - feat: enhance repository details page with metadata and cheatsheet listing - feat: implement repository cheatsheet storage and content syncing - feat: integrate GitHub OAuth for repository syncing - feat: enhance repository management with GitHub integration - feat: add Repos Manager command with repository management functionality - Update CHANGELOG.md and optimise images - Remove installation script and associated media files for Cheatsheets Remastered. Update README to include a screenshot section. - Update CHANGELOG to remove Unreleased section - chore: update CHANGELOG & fix state flicker - chore: remove ESLint configuration and update Prettier settings - feat: consolidate commands and update docs - chore: Update google-webfonts & fastify sheets format - fix: Fix README, CHANGELOG & add subtitles - Add files via upload - Update README.md - Add cheatsheets-remastered extension - Update CODEOWNERs - Add invisible-text-detector extension (#20926) - Update CODEOWNERs - Add word4you extension (#20638) - Update CODEOWNERs - Add radarr extension (#20904) - Update CODEOWNERs - feat(8ball): add preference to choose default action (copy/paste) and… (#20947) - Update CODEOWNERs - Update deepwiki extension (#20955) - Update CODEOWNERs - Update dodo-payments extension (#20956) - Update vercast extension (#20838) - Update CODEOWNERs - Update search-gule-sider extension (#20911) - [Groq] model update and improvements (#20630) - Add support for password protected YubiKeys in yubikey-code (#20938) - [Time Tracking] rename in Edit Form + Modernize (#20922) - [Brand.dev] trigger search via search text (QoL) (#20944) - Update CODEOWNERs - Add unblocked-answers extension (#20696) - Update CODEOWNERs - Add chainscout extension (#20712) - Update CODEOWNERs - tabler: add download actions (#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (#20686) - Update CODEOWNERs - Add jitsi extension (#20680) - Update CODEOWNERs - Add time-calculator extension (#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (#20647) - Update CODEOWNERs - Add synology-download-station extension (#20643) - Add owl extension (#20777) - Update CODEOWNERs - Update synonyms extension (#20879) - Update scira extension (#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (#20906) - [Color Picker] Fix Convert Color command (#20913) - Update v0-by-vercel extension (#20923) - Update CODEOWNERs - Add v0-by-vercel extension (#20792) - Add `.gitattributes` & get rid of `\r\n` (#20498) - [Brand Icons] Add support for creating social badges through cross-extension (#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (#20885) - Update certificate-viewer extension (#20894) - Update CODEOWNERs - Add yap extension (#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (#20427) - Update CODEOWNERs - Add emojis-com extension (#20875) - Add dodo-payments extension (#20669) - Update CODEOWNERs - Add twingate extension (#20580) - Update CODEOWNERs - Update brave-search-with-results extension (#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (#20892) - Update image-wallet extension (#20806) - Add proton-authenticator extension (#20773) - Update CODEOWNERs - Add sharding-tools extension (#20394) - Update CODEOWNERs - Add Save Link extension (#20521) - Update CODEOWNERs - Update display-modes extension (#20260) - Update CODEOWNERs - Update craftdocs extension (#19976) - Update CODEOWNERs - Update aerospace extension (#20847) - Update aws extension (#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (#20493) - Update at-profile extension (#20853) - Update aws extension (#20856) - Update grammari-x extension (#20848) - Update preferences.md (#20855) - Update youtrack extension (#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (#20553) - Update CODEOWNERs - Add kiro extension (#20790) - Update freeagent extension (#20844) - [Badges] Add shortcut for picking logo (#20849) - Update CODEOWNERs - Update svgl extension (#20852) - Add docklock-plus extension (#20419) - Update slugify-file-folder-names extension (#20528) - Update CODEOWNERs - Add freeagent extension (#20828) - Update CODEOWNERs - Update aws extension (#20809) - Update CODEOWNERs - Add sefaria extension (#20378) - Update CODEOWNERs - Add tokenizer extension (#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (#20817) - Add ag-audioflow extension (#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (#20830) - Update CODEOWNERs - Adding new social platforms (#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (#20813) - [GitLab] Add windows support (#20824) - Update raindrop-io extension (#20820) - Update CODEOWNERs - Update timezone-buddy extension (#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (#19456) - Fix token expired auth flow in SendAI extension (#20711) - Update CODEOWNERs - Add commit-issue-parser extension (#20395) - Update CODEOWNERs - Add ozbargain-deals extension (#20288) - Update mermaid-to-image extension (#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/sammcnab/.npm/_npx/daafed3b81e85078/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/extensions/cheatsheets-remastered/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/extensions/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/node_modules/.bin:/Users/sammcnab/github/node_modules/.bin:/Users/sammcnab/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/sammcnab/.nvm/versions/node/v22.18.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/sammcnab/github/raycast-extensions/extensions/cheatsheets-remastered/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/extensions/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/node_modules/.bin:/Users/sammcnab/github/node_modules/.bin:/Users/sammcnab/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/sammcnab/.nvm/versions/node/v22.18.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/sammcnab/.nvm/versions/node/v22.18.0/bin:/opt/homebrew/opt/openjdk@17/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Applications/Wireshark.app/Contents/MacOS:/usr/local/sbin:/Users/sammcnab/.nvm/versions/node/v22.18.0/bin:/Users/sammcnab/Library/pnpm:/opt/homebrew/opt/openjdk@17/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:/Users/sammcnab/Library/Python/3.9/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:/Users/sammcnab/Library/Python/3.9/bin (#20458) - Update system-monitor extension (#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (#20558) - Update CODEOWNERs - Update wol extension (#20601) - Update CODEOWNERs - Add google-lens extension (#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (#20747) - Update visual-studio-code extension (#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (#20563) - Add dia-skills extension (#20548) - Update letterboxd extension (#20615) - end-of-life - Windows support (#20701) - Gemini/updatemodels-July (#20662) - Fix: Support currency format in transaction amount validation (#20399) - Update CODEOWNERs - feat: Update Rewind Icon (#20744) - Update CODEOWNERs - Update hypersonic extension (#20462) - Update CODEOWNERs - Update grok-ai extension (#20734) - Add network-proxy extension (#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (#20460) - Update defbro extension (#20367) - Show Artist\'s name when liking current track (#20583) - Update wechat-devtool extension (#20668) - Add character tabulation to Unicode Symbols extension (#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (#20168) - Update nusmods extension (#20625) - Update quick-notes extension (#20569) - Update CODEOWNERs - Deleted directory (#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (#20749) - Renames the extension from "hoarder" to "karakeep". (#20113) - Update pr-bot.ts (#20775) - Update CODEOWNERs - Update pomodoro extension (#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (#20221) - Update CODEOWNERs - Add VLC extension (#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (#20702) - Update Project Hub Extension - Add Recent Projects Section (#20561) - Update arc extension (#20761) - Update extension (#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (#20626) - Add `Host.io` extension - get full domain data for any domain (#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (#20502) - Update youversion-suggest extension (#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (#20357) - Deprecate Ghost Docs Extension (#20690) - Update CODEOWNERs - author update (#20705) - [Badges][Brand Icons] Bugfixes & improvements (#20545) - Update public_raycast_extensions.txt (#20688) - Update CODEOWNERs - Update pieces-raycast extension (#20296) - feat[Backstage plugin]: configurable Backstage API URL (#20398) - Update whisper-dictation extension (#20482) - Update CODEOWNERs - Update endoflife (#20651) - Update T3 chat\'s icon (#20599) - Update CODEOWNERs - feat: add windows support mymind extension (#20239) - [Mastodon] Add support for Windows (#20448) - [NeoDB] Add support for Windows (#20471) - Update CODEOWNERs - [NUSMods] Add support for Raycast Windows (#20240) - [Todoist] Windows support (#20487) - Update gdrive homepage url (#20608) - Update CODEOWNERs - Arc: Fix trying to open a tab with `open` (#20579) - Update Zerion author to original one (#20582) - Update CODEOWNERs - Update zerion author (#20581) - feat: Backstage plugin supports static token (#20383) - [groq] Remove Llama Guard 4 12B 128K (#20507) - Update CODEOWNERs - Add preference to toggle default reuse open GitHub search tab (resolves #20488) (#20489) - Add weread-sync extension (#20205) - Docs: update for the new API release - Update CODEOWNERs - Add cloudflare-email-routing extension (#20305) - Update dpm-lol extension (#20491) - macosicons: fix API error handling for non-JSON responses (#20172) - Update CODEOWNERs - [Perplexity] Add Perplexity desktop app support to extension (#20393) - Parse Zed local workspace paths from binary format correctly (#20086) - Docs: update for the new API release - Update prepare-an-extension-for-store.md (#20473) - Update wechat-devtool extension (#20406) - [Update] [IP Geolocation] Optimize extension icons (#20467) - Update CODEOWNERs - [World Clock] Avoid accessing the `.map` function on possibly undefined data (#20469) - Update CODEOWNERs - [Update] [Easy New File] Support Default Directory (#20449) - update pr merge dates (#20457) - Update grammaring extension (#20464) - [raycast2github] Fix name mapping (#20472) - Update CODEOWNERs - Add extension for opening new instances of apps (#20432) - Update CODEOWNERs - Update remove-paywall extension (#20331) - Update CODEOWNERs - Update registries to use the official npmjs registry (#20440) - Add paste-to-markdown extension (#19999) - Update CODEOWNERs - Update vscode-project-manager extension (#20446) - [Easings] Add spring animations (#20445) - Update CODEOWNERs - Update groq extension (#20439) - [Brand Icons] Use `pacote` for downloading & extracting icons (#20391) - [espanso] support import (#20400) - Update secret-browser-commands extension (#19948) - Fixing issue in ext/beehiiv (#20437) - Update CODEOWNERs - Update change-case extension (#20002) - Update ideate extension (#20063) - Update `Appwrite` extension - DB, Storage, User Enhancements (#20386) - Update `Oracle Cloud (OCI)` extension - implement provider w/ context + basic objectstorage command (#20405) - [valkey commands search] Migrate to useFetch and group the commands (#20421) - Update `Neon` extension - add project, delete projects + Modernize to use latest Raycast config (#20402) - [espanso] add binary path option (#20280) - [Larajobs] update metadata image + chore (#20417) - feat(readwise-reader:) add option to open in Reader desktop app (#20424) - Update URL unshortener (#20385) - Update granola extension (#20384) - feat(readwise-reader): add ability to include tags when saving links (#20388) - Update background-sounds (#20387) - Update ScreenOCR (#20408) - Update instagram-media-downloader extension (#20413) - Update yu-gi-oh-card-lookup extension (#20414) - Update CODEOWNERs - Add pdf-compression extension (#20194) - Update CODEOWNERs - Add control kef extension (#20127) - Update pr-bot.ts (#20376) - Update Tasklink extension (#20375) - Update CODEOWNERs - Added open-in-textmate extension (#20266) - Update CODEOWNERs - Update ente-auth extension (#20122) - [SteamGridDB] Add support for Windows (#20364) - Update CODEOWNERs - [Update] [DocSearch] Add TailwindCSS v4, Next.js, MassTransit and Pinia documentations (#20254) - Update CODEOWNERs - FocusFLOW (#20214) - Update repology-search (#20370) - Update CODEOWNERs - Add WeChat DevTool extension (#20222) - Update URL-unshortener (#20136) - [ProtonDB] Add support for Windows (#20338) - Fix GIF Search extension updates (#20360) - PR bot assignee constant (#20358) - run pr bot on ready to review (#20356) - [TourBox] Add support for Windows (#20337) - add debugging for draft pr review assigning (#20353) - Update `Name.com` extension - ✨ AI Enhancements (add 3 Tools) + Migrate API (Legacy v4 to Core v1) + Modernize (#20340) - PR bot should check PR files in existing extensions too (#20352) - Update CODEOWNERs - Add console logs to PR Bot for testing (#20351) - Add rounding-number extension (#20232) - Update CODEOWNERs - toggle-desktop-visibility for mac os 26 tahoe (#20225) - Update zipline extension (#20336) - Update CODEOWNERs - Update slack extension (#19219) - Update FHIR extension (#20329) - Update CODEOWNERs - Update CODEOWNERs - [Easy Dictionary] Remove the unused icon file (#20333) - Update aerospace extension - Changed the icon to the new design. (#20342) - things: handle JXA scripts with no result (#20341) - Update trenit extension (#20215) - Apply "AI Extension" label for new extensions as well as existing ones (#20306) - Update `Short.io` extension - `search-links` now allows you to view links independent of default + fix: `shorten-link-with-domain` persists Default Domain properly (#20327) - Create new message when no number match found (#20326) - Update CODEOWNERs - Support for OTP codes that include a hyphen (#20236) - Update anytype extension (#20227) - Update CODEOWNERs - Update ray-boop extension (#20231) - Update easydict extension (#20190) - Update CODEOWNERs - Add quick-jump extension (#20050) - Update CODEOWNERs - Add zipline extension (#20157) - Update CODEOWNERs - Add ship24-client extension (#20170) - Update Raycast X link in README (#20318) - things: improve project detection to not depend on existing projects (#20300) - noteplan 3 | fix #20116 Daily plan not displaying (#20308) - Update CODEOWNERs - feat(notion): show properties in page preview (#20111) - Update CODEOWNERs - fix: typescript error handling (#20298) - Update spotify-player extension (#20178) - Update CODEOWNERs - New Extension : Percentage Calculator (#20195) - Update CODEOWNERs - Update g-cloud extension (#20210) - Update Lightshot Gallery extension (#20246) - [HoudahSpot Search] fix fallback text not used (#20295) - Update CODEOWNERs - Update browser-bookmarks extension (#20187) - Add trip search command to Norwegian Public Transport extension (#20226) - Update CODEOWNERs - Add FHIR extension (#20163) - Update CODEOWNERs - Update xecutor extension (#20159) - Add climbing-grade-converter extension (#20134) - Update Cider extension (#20241) - Update CODEOWNERs - change author (#20289) - things: enhance error reporting + troubleshooting hints (#20224) - [Update] [Hide Files] new icon style (#20253) - [Update] [Bing Wallpaper] Add refresh interval (#20249) - Update CODEOWNERs - [Update] [Browser tabs] new icon style (#20251) - [Update] [Maven Central Repository] new icon style (#20252) - Add clipyai extension (#19740) - Update CODEOWNERs - Update CODEOWNERs - Update `Larajobs` extension - filter by Type, Salary, Tag (#20286) - [zed-recent-projects] Adds a preference checkbox to use the Zed development Sqlite database (#19803) - Add Metabase AI Tools (#17673) - Update CODEOWNERs - Add squeeze extension (#20083) - Update CODEOWNERs - Update CODEOWNERs - Add `Upstash` extension - List Redis Databases, View Details & Usage, Create Database + List Vector Indices, Create Index, Delete Index (#20274) - Update `HoudahSpot Search` extension - fix: text passed as "undefined" when Argument is empty in fallback mode + add `metadata` image + Modernize + `chore` (#20250) - [Spaceship] Toggle Domain Transfer Lock + Get Domain Auth Code + Add AAAA, CNAME DNS Records (#20243) - Update `Keygen` extension - List & Add Products + Color License based on Status + show: Expiry, Scheme, Valid in License (#20228) - Update `Sanity` extension - update logo + modernize (#20220) - Update CODEOWNERs - Update `MailerSend` extension - View API Quota + Filter Domain Activity by Type + View, Rename, Toggle (Pause/Unpause) Tokens (#20197) - [Say] Fix duplicate lines in Configure Say command (#20245) - [Update][Are.na] show status accessory w/ color in search channels + remove auto-generated types (#20265) - Update CODEOWNERs - [ccusage]: fix(#20056) resolve custom npx path issue in ccusage CLI commands (#20262) - update[send-ai]: added new features in the extension (#20273) - [Image Modification] Bug Fixes (#20282) - Update curl extension (#20284) - Update f1-standings extension (#20217) - Update CODEOWNERs - Add csfd extension (#18344) - Docs: Update the utils docs - Update CODEOWNERs - Add rewiser extension (#20023) - Update `Resend` extension - Update Icons + Modernize to use latest config + chore: remove `node-fetch`, `cross-fetch` (#20179) - Update CODEOWNERs - Major update to Kaleidoscope extension, see README and CHANGELOG. (#20076) - [catppuccin] update data source (#20216) - update extension raycast-Gemini - safety-setting (#19277) - Update CODEOWNERs - Add ray-boop extension (#20108) - Update CODEOWNERs - [Spotify Player] Fix for Search command not working issue (#20183) - Update CODEOWNERs - Add new raycast extension - SendAI (#20104) - things: fix project update actions (#20161) - Update `Wave` extension - Add new customers through `Form` + Remove customers after confirming (`Alert`) + Move "Business Customers" to its own file + Modernize to latest config (#20185) - Spotify Lyric Finder Improvements (#20154) - Update CODEOWNERs - Add certificate-viewer extension (#20110) - Update CODEOWNERs - Add markdown-preview extension (#20052) - Update CODEOWNERs - Add somafm-for-raycast extension (#20027) - feat: add getThumbnailUrl to optimize image loading and update components to use it (#20177) - Update CODEOWNERs - feat: add resend wallpaper extension (#20169) - Update CODEOWNERs - Update `Polar` extension - View Products and their Media + Optionally BYOK + Remove `node-fetch` (#20156) - Update CODEOWNERs - Add Instant Translate feature to Google Translate extension (#20093) - Add quick-quit extension (#19869) - extensions/messages: docs: add note about automation permissions for sending messages (#20148) - Update `Doppler` extension - View Logs of a Config + "Open In Doppler" component (#20164) - Try/catch AI label PR bot (#20165) - Auto-label AI extensions in PRs (#20160) - Update CODEOWNERs - Update apple-notes extension (#19613) - Update CODEOWNERs - Add roblox-creator-docs extension (#20024) - Update music extension (#19654) - Update CODEOWNERs - Update apple-notes extension (#20138) - Update zeabur extension (#20140) - Update `radicle` extension - remove need for `radicle-httpd` (#20141) - Update CODEOWNERs - Update spotify-player extension (#19950) - Update CODEOWNERs - Add windsurf extension (#20046) - Add stacks extension (#19863) - Update CODEOWNERs - Add markdown-styler extension (#19967) - Update CODEOWNERs - Update CODEOWNERs - Update `Pocket` extension - add an Alert in Show informing users to Export + required url in create (#20126) - Update `Obsidian Tasks` add `preference` to show description in details markdown (List Tasks) (#20098) - [create-link]: Add customizable templates and tab selection feature (#20120) - Update preferences.md (#20131) - Update CODEOWNERs - [Get SSH Keys] OpenInFinder + Key as Icon (#20117) - No `-lossless` flag on `dwebp` (#20125) - feat: add Gen-PDF MCP Server to the registry (#19924) - Update CODEOWNERs - Update CODEOWNERs - Add tidal extension (#19784) - Add image-shield extension (#19969) - Update CODEOWNERs - Update cobalt extension (#20090) - Update sequoia-tiling extension (#20101) - Update lookaway extension (#20092) - Update media-converter extension: proper user preferences (#20081) - docker,dockerhub,drafts,ensk-is,seo-lighthouse: Update to use newer version of `tar-fs`. (#20068) - Update CODEOWNERs - Add Default Formality Configuration Option (#19656) - Update CODEOWNERs - Add sidecar extension (#19980) - [GitLab] Group milestones on issue and mr create form (#20072) - Update CODEOWNERs - Update CODEOWNERs - Update `Short.io` extension - Add Domain inside `shorten-link-with-domain` + Modernize extension to use latest Raycast config (#20070) - fix: replace youtube-transcript lib (#20080) - Add sequoia-tiling extension (#19877) - Update CODEOWNERs - Update github extension (#20073) - Update CODEOWNERs - Support device name for audio device selection (#19995) - New: Password.Link Extension (#19996) - Update CODEOWNERs - Add clipmate extension (#19958) - Update CODEOWNERs - Add regex-batch-renamer extension (#19849) - [Bitwarden] Catch OTPAuth initialization (#20064) - Update CODEOWNERs - Update quick-notes extension (#19965) - Update linkding extension (#19756) - Update media-converter extension (#20061) - Update CODEOWNERs - Update docker extension (#19817) - [ChatGPT Quick Actions] API pricing fix (#19964) - Update raycast-zoxide extension (#20032) - Update whisper-dictation extension (#19989) - Browser Bookmarks: Add support for Dia and Ghost Browser (#19971) - Update CODEOWNERs - Add duan-raycast-extension extension (#19765) - Update CODEOWNERs - Add ideate extension (#19791) - Update CODEOWNERs - Update transmission extension to fix error on showing a list (#19809) - Update CODEOWNERs - Update Markdown to ADF library (#19972) - Update CODEOWNERs - DotMate - Raycast Extension for Dotfile Management (#19819) - Update media-converter extension: better installation (#19808) - Update wp-bones extension (#19953) - Update CODEOWNERs - Update CODEOWNERs - Update project-code-to-text extension (#19921) - Add `MailerSend` extension - View Domains, View Domain Activity (24 hours), View Templates, View Users (#20022) - Update CODEOWNERs - Add psn extension (#19914) - Update CODEOWNERs - Add minio-manager extension (#19906) - Fix Slack extension YAML (#19865) - Better handling of cloc command to show statistics (#20040) - Aerospace - add monitor name to switch apps action (#19899) - Updated Font Awesome version, added support for more icon types (#19963) - Update CODEOWNERs - Update translate extension (#19933) - Update openrouter-model-search extension (#20028) - [ccusage] Hotfix critical React Hooks Rules violations and improve loading states (#20033) - [Google Translate] Show auto detected language in Quick Translate (#20036) - [Bitwarden] fix: check if user can access BrowserExtension (#20029) - Update CODEOWNERs - Update tailwindcss extension - add default action preference to `Search Colors` command (#19707) - Add claude-code-cheatsheet extension (#19828) - Update Repository Manager (#19994) - [ccusage] Major v2.0.0 upgrade: AI extension support and architecture refactor (#20019) - [Google Translate ] fix quick translate with Chinese auto detected language (#19991) - Update CODEOWNERs - Add redirect-trace extension (#19854) - Update workouts extension (#20018) - Update raycast-wallpaper extension (#20017) - Fix Slack powershell script (#20014) - Linear: Fix SVGs to include xmlns (#20012) - Feat: Add permalink to Dub Link page (#20004) - [Google Translate] Improve UX for quick language change in Translate Form (#19990) - Update react-native-directory extension (#19992) - [Bitwarden] Catch authenticator initialization error (#19997) - [Dribbble, Uplabs] Remove Dribbble and Uplabs extensions (#19913) - Update youtrack extension (#19983) - Fix Slack extension: search messages from specific user (#19731) - [Daminik] use URL instead of Slug in Preferences (#19934) - Docs: update for the new API release - Update youtrack extension (#19925) - Update workouts extension (#19981) - [Update] [Raycast Wallpaper] More Auto Switch Interval (#19952) - [Update] [Easy New File] Supports Form layout (#19954) - [Google translate] fix Chinese and some other languages (#19957) - [Update] [Life Progress] (#19959) - Update compressx extension (#19966) - Patched breaking API change (#19974) - Update `Coolify` extension - fix: Unable to delete Databases in `Resources` + view `ENVs` of **applications** and **services** (#19940) - [MyIdlers] - Domain, Shared, Reseller and Server are now split into "Active" and "Inactive" sections (#19968) - [Brand Icons] Routine maintenance (#19912) - Update CODEOWNERs - [ccusage] Clean up unused dependencies and exports (#19916) - Add kusto-reference extension (#19836) - Update CODEOWNERs - Make sure extensions use official npm registry (#19911) - Update safari extension (#19829) - Update CODEOWNERs - Housekeep Knip config (#19903) - [Confluence Search] Use the npm official registry (#19901) - Update CODEOWNERs - [ClickUp] persist priority on create (super minor fix) + add some missing icons (#19904) - Update CODEOWNERs - [Gitlab] Add issue filter on issues menu item (#19769) - [Google Translate] add all the languages from google translate, remove flags (#19905) - Release more extensions on Windows (#19896) - Update `SolusVM 2` extension - Reinstall Server + View,Create,Remove Snapshots + Invite,Remove Members (#19900) - Update CODEOWNERs - Add openrouter extension (#19831) - Update CODEOWNERs - Add ccusage extension (#19792) - Update CODEOWNERs - Add open-in-trae extension (#19705) - Update CODEOWNERs - [dust-tt] update auth provider (#19783) - Update CODEOWNERs - Update CODEOWNERs - Update aws extension (#19476) - [Promptlab] Use the npm official registry (#19895) - Update CODEOWNERs - Add loan-calculator extension (#19781) - Update CODEOWNERs - Update CODEOWNERs - [Markdown to Plain Text] Use the npm official registry (#19894) - Update Wifi Password Reveal (#19402) - Update CODEOWNERs - [Bitbucket Search] Use the npm official registry (#19891) - Update CODEOWNERs - [Akkoma] Use the npm official registry (#19893) - Update CODEOWNERs - Update CODEOWNERs - [Find OpenGL Enum] Use npm official registry (#19889) - Add microblog extension (#19777) - Update CODEOWNERs - Add beehiiv extension (#19770) - Update CODEOWNERs - Preview visibility, toast fix, and png w/ background option (#19855) - Folder search/drag n drop (#19841) - Update slugify-file-folder-names extension (#19850) - Update `NameSilo` extension - View Contact Profiles + View & Configure Email Forwards + Modernize (#19871) - Ext/popcorn: Fix stream selection bug, and added more support for other addons (#19873) - Update zeabur extension (#19881) - Update CODEOWNERs - Adds glossary extension (#19502) - Update flush-dns extension (#18964) - Update CODEOWNERs - Add geoconverter extension (#19759) - Add Keboola MCP Server to the Model Context Protocol registry (#19753) - Update CODEOWNERs - Update CODEOWNERs - Bitbucket feature (#19739) - Add nyc-train-tracker extension (#19185) - Update CODEOWNERs - Add popcorn extension (#19823) - Update google-scholar extension (#19796) - Update quick-git extension (#19778) - Update Harpoon extension (#19798) - Update instagram-media-downloader extension (#19789) - Update mozilla icon (#19801) - [Xcode] AI Tools & Improvements (#17875) - Update CODEOWNERs - Add `Keygen` extension - View Licenses & Policies + Create Licenses & Policies (#19802) - Update CODEOWNERs - [ClickUp] allow creating task w/o priority + add OpenInClickUp Action (#19787) - Update `Mixpanel` extension - Support All Server Regions + Update Logo + better Error Handling + Modernize (#19821) - Update CODEOWNERs - Add bookmark/save to queue for Matter (#19434) - Update wip extension (#19837) - Update CODEOWNERs - Update Okta search extension (#19825) - Add image-search extension (#19672) - Update CODEOWNERs - Add chronometer extension (#19295) - Add url-editor-pro extension (#19661) - Update CODEOWNERs - Add shutdown-timer extension (#19650) - Docs: update for the new API release - Docs: Update the utils docs - Update CODEOWNERs - Add AWS Audit Manager and update Amazon Bedrock details in aws-servic… (#19685) - Add Creation Date option for sorting (#19682) - Add clipboard-sequential-paste extension (#19679) - Update CODEOWNERs - Add open-docker extension (#19671) - Cleanup unused lockfile (#19659) - [Hue] Fix certificate handling (#19658) - chore: update icon path in the README.md file (#19773) - Update CODEOWNERs - Update CODEOWNERs - Add `Dokploy` extension - Add Instances then manage services and docker containers (#19668) - Update `Geist UI Components` extension - Modernize + Update Logo + Add Hooks, metadata images (#19775) - add ai incident search to incident.io extension (#19631) - [Hookmark Search] Fix bookmark properties encoding (#19543) - Updated to new version extension (#19358) - Update dexcom-reader extension (#19642) - Add priority levels mapping (#19771) - Docs: update for the new API release - Expected Delivery Date Formatting Overhaul (#19649) - Update `Brand.dev` extension - add fonts, stock, email, phone + remove "verified" + change Browser Action + Modernize (#19645) - Update CODEOWNERs - [WP Plugins] add pagination + add shortcut to "Download" + Modernize (#19683) - Fix search authentication errors - resolves #19400 (#19450) - Update CODEOWNERs - docs: update Shadcn Vue icon path (#19639) - Update shadcn-vue extension (#19637) - Update lucide-icons extension (#19763) - fix: only index field must be required others if not input should fall to defaultValue (#19747) - Update CODEOWNERs - chore: update firecrawl version + add integration parameter (#19725) - Update finderutils extension (#19751) - Update google-scholar extension (#19761) - Docs: update for the new API release - Update web3bio extension (#19629) - [browser-tabs] Fix for Duplicate Tabs Issue (#19665) - [Folder-Search] - Major Improvements: Bug Fixes, Error Handling, Performance (#19663) - Update CODEOWNERs - Update zen-browser extension (#19611) - Fix: Add latest OpenAI models and consolidation system (#19592) - Update CODEOWNERs - Add yomicast extension (#19573) - Add chhoto-url extension (#19567) - [Laravel Herd] (#19733) - Update CODEOWNERs - Update audio-device extension (#19074) - Update code-saver extension (#19687) - Update grammaring extension (#19681) - Update `HetrixTools` extension - Add Status Pages command + modernize to use latest config (#19728) - Update vmware-vcenter extension (#19716) - Update CODEOWNERs - Add force kill to kill-process extension (#19607) - Update docker extension (#19698) - Update CODEOWNERs - Update CODEOWNERs - Add quick-git extension (#19405) - Add copee extension (#19526) - Update CODEOWNERs - Add rize-io-sessions extension (#19677) - Update CODEOWNERs - Add advanced-speech-to-text extension (#19517) - Update CODEOWNERs - Clipsign - extension for creating, saving, and instantly copying your e‑signature (#19453) - Update CODEOWNERs - Update `HubSpot` extension - You can now `copy` some properties of a Contact through new "Copy to Clipboard..." submenu (#19652) - Update project-code-to-text extension (#19676) - Update CODEOWNERs - Update `Country Lookup` - Offline Support since API is now limited + Modernize (#19693) - Update quick-event extension (#19258) - Update CODEOWNERs - Update prism-launcher extension (#19601) - Fix obsidian-raycast bug on note creating (#19635) - Update CODEOWNERs - Add whisper-dictation extension (#19532) - Update CODEOWNERs - Updated the URL for the Prisma MCP server (#19472) - Add open-latest-url-from-clipboard extension (#19624) - Update CODEOWNERs - Update shadcn-ui extension (#19525) - Update CODEOWNERs - Update CODEOWNERs - Improve Flight Details Layout: Combined Times & Side-by-Side Terminal/Gate (#19521) - Add analog-film-library extension (#19514) - Update CODEOWNERs - Add volumio-control extension (#19504) - Update CODEOWNERs - [Color Picker] Fix returned value from callback-launch command (#19619) - [GitHub] Add preference to exclude repositories from other commands (#17468) - Update CODEOWNERs - Add diff-view extension (#19463) - Add kagimcp server (#19568) - [Bitwarden] Fix Authenticator "TypeError: t is not a function" (#19616) - Include Outlook in app description (#19594) - Update CODEOWNERs - add Open Documentation (#19500) - Update sportssync extension (#19483) - Update CODEOWNERs - macosicons: include user applications (#19482) - [Brand Icons] Add compatibility with Simple Icons 15 (#19478) - Docs: update for the new API release - Update prism-launcher extension (#19599) - [United Nations] Maintenance & fix news format (#19584) - Update prism-launcher extension (#19598) - Update CODEOWNERs - Apple reminders/show which list reminder is from (#19343) - Update battery-optimizer extension (#19190) - Update awork extension (#19558) - Update CODEOWNERs - feat: Add history command (#19589) - Update system-monitor extension (#19595) - Update Ext/window sizer (#19580) - Enhanced Date Format Support (#19539) - [TRELLO] Allow for unassigned card and update dependencies (#19519) - Update `Oracle Cloud` extension - (Confirm and) Terminate Instance + Add "Open in OCI" `Action` (#19534) - Update Ext/window sizer (#19541) - Update `Cloudflare` extension - Add A,AAAA,TXT DNS Records + Delete any DNS Record + Improve error handling function + Modernize extension to use latest Raycast config (#19552) - Update wp-cli-command-explorer extension (#19559) - Update CODEOWNERs - Update reverso-context extension (#19452) - Update CODEOWNERs - Add project-code-to-text extension (#18996) - Update CODEOWNERs - Add project-hub extension (#19293) - Update CODEOWNERs - Update GemOptions.tsx (#19136) - Update checksum (#19492) - Update CODEOWNERs - Update united-nations extension (#19528) - Update downloads-manager extension (#19407) - Update CODEOWNERs - Move `josephlou` to past contributors (#19522) - Update aave-search extension (#19366) - Update CODEOWNERs - Add dexcom-reader extension (#19141) - Update CODEOWNERs - Update digitalocean extension addressing issue displaying automated deployments (#19432) - Update Fabric extension - location and tag selection (#19470) - Wikipedia language improvements (#19473) - Update Ext/window-sizer (#19499) - Update CODEOWNERs - Add slugify-file-folder-names extension (#19422) - Update messages extension (#19426) - macosicons: fix lint (#19497) - Update CODEOWNERs - Add google-scholar extension (#19392) - Update CODEOWNERs - Add `SolusVM 2` extension - Manage Servers + View,Update Members + View,Create API Tokens & Settings + View ISOs (#19486) - Update CODEOWNERs - feat: add Anytype MCP Server to the registry (#19506) - Add `Appwrite` extension - Add multiple projects and view various services (#19510) - Update CODEOWNERs - Add foodle-recipes extension (#19084) - Update CODEOWNERs - Add cangjie extension (#19308) - Update CODEOWNERs - feat(google-calendar): create events with natural language duration input (#19317) - Update CODEOWNERs - Improved Category Search & Fixed Budget Details (#19451) - Update qrcode-generator extension (#19455) - Fix Toggle Grayscale exstension (#19236) - Add unix-timestamp-converter extension (#18949) - Update parcel extension (#19466) - Fix Slack emoji search missing scope error - resolves #19441 (#19447) - feat: add Thena MCP entry to official entries (#19379) - Update Ext/Window Sizer (#19459) - [2FA Directory] filter by category (like the Website) + modernize to use latest Raycast config (#19454) - Update CODEOWNERs - Update todoist extension (#19309) - Update CODEOWNERs - [git-repos] Fix issue with the path of the repository (#19440) - Folder search fallback bug fix (#19449) - Update CODEOWNERs - Update CODEOWNERs - Update parcel extension (#19356) - Add fisher extension (#19213) - Update CODEOWNERs - Fix: React Rules of Hooks violation in New Tab command (#19384) - Docs: update for the new API release - Update prompt-stash extension - increase character limit and refactor validations (#19428) - Update stock-tracker extension (#19424) - feat(deepcast): Return to root state preference (#19430) - Update subwatch extension (#19433) - Update CODEOWNERs - Update linkding extension (#19436) - Update media-converter extension (#19385) - Update CODEOWNERs - [Dock] add MenuBar Item + add metadata image + Modernize (#19393) - feat: add Grafana MCP to registry (#19240) - Major improvement to Elgato Key LightsElgato enhancements (#19374) - Update anytype extension (#19418) - Update CODEOWNERs - feat(preferences): Option to Close Raycast After Translation (#19386) - Update mullvad extension (#19382) - Update CODEOWNERs - Update CODEOWNERs - Update stock-tracker extension (#19411) - Update t3-chat extension (#19412) - Update CODEOWNERs - Add Secret Browser Commands extension (#19396) - Update CODEOWNERs - Update linkding extension (#19395) - Update sql-format extension (#19398) - Update zeabur extension (#19413) - Update `Google Books` extension - feat: filter results by category, use `useFetch` for caching + docs: add CHANGELOG + modernize: use latest Raycast config (#19414) - Update Ext/window sizer (#19416) - Update CODEOWNERs - Ability to copy song\'s artist and title (#19368) - Update CODEOWNERs - DEVONthink 4 (#19375) - Add position-size-calculator extension (#19123) - Update CODEOWNERs - Add ratingsdb extension (#19298) - Update Ext/window sizer (#19348) - Update `ClickUp` extension - choose status from Dropdown in \'capture\' (close #19331) + update README (#19370) - Update Extension: Easy New File (#19364) - Updated openpgp version (#19367) - Update CODEOWNERs - Add Claude Sonnet 4 (#19362) - Update CODEOWNERs - Add paste-from-kindle extension (#19275) - Update CODEOWNERs - Ext/appcleaner (#19355) - Update prism-launcher extension (#19346) - Update CODEOWNERs - Update aws extension (#19347) - Update 1bookmark extension (#19350) - Update instagram-media-downloader extension (#19360) - Docs: update for the new API release - Antinote: Support for Setapp version (#19345) - feat(ci): comment when changelog missing (#19305) - Update CODEOWNERs - Update jenkins extension (#19286) - Update prism-launcher extension (#19330) - Docs: update for the new API release - Update downloads-manager extension (#19340) - Update CODEOWNERs - Add open-gem-documentation extension (#18998) - Update miro extension (#18702) - Fix open with IINA action (#19251) - Update CODEOWNERs - Add notes limit for AI usage (#19332) - Update CODEOWNERs - added searching by permissions (#18817) - Update CODEOWNERs - Add Keka extension (#19326) - Updated the Prisma MCP server entry. (#19334) - Update CODEOWNERs - Add AI Budget Tools, Enhanced Natural Language Queries, and Bug FixesF/raynab ai (#18611) - Add azure-icons extension (#19224) - Update CODEOWNERs - Update spotify-player extension (#18815) - Update CODEOWNERs - Update Credits for One Thing Extension (#19303) - Ext/penflow ai (#18799) - Docs: update for the new API release - Update clarify extension (#19222) - Update CODEOWNERs - Add grammaring extension (#19220) - Update CODEOWNERs - Add instagram media downloader extension (#19191) - Add paperless-ngx MCP server entry to the registry (#19300) - Update cloud-cli-login-statuses extension (#19284) - [Dropover] Fix special characters in filenames and update docs (#19318) - [Rebrandly] Update Links + Modernize (#19319) - Update Ext/window sizer (#19316) - Update CODEOWNERs - Update CODEOWNERs - Update brand-fetch extension (#19012) - Update CODEOWNERs - Update prism-launcher extension (#19117) - feat(superwhisper): add search history (#18810) - Add hammerspoon extension (#18922) - MCP: Fix lint issues (#19310) - Added the Shopify Dev MCP server (#19307) - Update CODEOWNERs - Update obsidian-tasks extension (#19151) - Add untis extension (#18735) - Update curl extension (#18931) - Dovetail extension: Pagination with query filtering (#19163) - Update CODEOWNERs - Fix tldraw project URLs (#19291) - Add Claude PR Assistant workflow (#19292) - Fix link to Smithery (#19285) - Update CODEOWNERs - Add rae-dictionary-raycast extension (#19171) - Supahabits: New command goals (#19282) - [Say] Routine maintenance (#19283) - Update CODEOWNERs - Update t3-chat extension - add beta checkbox (#19133) - Add Safari command to close other tabs (#19280) - When PRs are marked as ready for review, auto assign to Per (#19281) - Update CODEOWNERs - Add `Creem` extension - List,Create Products + List Payments (#19205) - Update CODEOWNERs - ✨ Add frecency sorting to gitmoji (#18974) - Update Ext/window-sizer (#19234) - Apple Mail add new command and AI tool (#19228) - Update `Unkey` extension - Modernize + Migrate broken endpoints to new ones to prevent crash (#19247) - Update Markdown Codeblock (#19271) - Update polymarket extension (#19273) - Update 1bookmark extension (#19255) - Update `cPanel` extension - Modernize + Manage API Tokens (create, revoke) + new function wrapping native `fetch` (#19274) - Init apify mcp server (#19193) - Update granola extension (#19215) - Added the Prisma MCP server (#19201) - Add Zeabur official MCP server to registry (#19217) - Update CODEOWNERs - Add are-na extension (#18646) - Update CODEOWNERs - Add slack-summarizer extension (#19032) - Update nostr extension (#19209) - Update CODEOWNERs - Update paperless-ngx extension (#19197) - Update CODEOWNERs - Add tableau-navigator extension (#19086) - Update CODEOWNERs - MCP: fix spawn ... ENOENT issue (#18399) - Update CODEOWNERs - Add quikwallet extension (#19047) - [Markdown Navigator] Remove duplicate files (#19208) - [Unifi] Remove outdated files (#19207) - [Trek] Remove outdated files (#19211) - [Expo] Remove duplicate files (#19210) - Update CHANGELOG.md (#19227) - Update danish-tax-calculator extension (#19200) - Bot: Only allow the OP to close the issue with a comment (#19196) - Docs: update for the new API release - Update raycast-icons extension (#18682) - [Sentry] Show projects for non US Sentry orgs (#18758) - Update package.json (#19195) - Update CODEOWNERs - Danish Tax Calculator (#19194) - feat: add Nuxt official MCP server to registry (#19034) - Update zen-browser extension (#19013) - Update CODEOWNERs - Add video-converter extension (#19030) - Update CODEOWNERs - Update polymarket extension (#19089) - Add wp-cli-command-explorer extension (#19063) - update extension raycast-gemini (#19021) - Update CODEOWNERs - Add smallpdf extension (#19041) - Update coin-caster extension (#19166) - Update CODEOWNERs - Update vuejs-documentation extension (#19072) - Update CODEOWNERs - Update qrcode-generator extension (#18792) - Update CODEOWNERs - add(KDE Connect): KDE Connect in Raycast (#18928) - Update CODEOWNERs - Add shell-alias extension (#19028) - Update lift-calculator extension (#19118) - Update servicenow extension (#19148) - Fix request loops (#19143) - Fixing two super small typos on the readme for the Obsidian plugin (#19139) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Clockify Extension: UX Improvement for "Start new Timer" functionality (#19026) - Update CODEOWNERs - Add setlist-fm extension (#19119) - Update zerion extension (#19132) - Update CODEOWNERs - Gitlab Extension: My merge requests & label based filtering (#19007) - Update CODEOWNERs - Add file-organizer extension (#18877) - Update CODEOWNERs - Update `Two-Factor Authentication Code Generator` - Rename Codes + Modernize + Add README (#19019) - [NixPkgs Search] Fetch version number from NixOS/nixos-search repo and compose url dynamically (#19025) - Update flibusta-search extension (#19131) - Update omnifocus extension (#19024) - Update tidal-controller extension (#18437) - Update CODEOWNERs - Add Mac network location changer (#18961) - LoL Esports AI tools (#18563) - Update servicenow extension (#18834) - Update at-profile extension (#18554) - Update shopify-theme-resources extension (#18991) - [Image Modification] Add support for QSpace Pro and ForkLift (#19108) - Update CODEOWNERs - Update kill-node-modules extension (#19039) - Update CODEOWNERs - Add grok-ai extension (#18566) - Update CODEOWNERs - Add subwatch extension (#18929) - Ente Auth - fix preferred values (#19029) - Update README.md (#19106) - Update CODEOWNERs - Update arc extension (#19062) - TickTick support AI Extension (#17531) - Update CODEOWNERs - Add domain field to fastmail-masked-email extension (#19066) - Apple Mail: Fix OTP codes across multiple mail accounts (#19033) - Update hardcover extension (#19065) - Update how-long-to-beat extension (#19042) - Update dovetail extension (#19102) - Update daily-sites extension (#19097) - Update Ext/window sizer (#19103) - Update index.tsx (#19067) - Docs: update for the new API release - Docs: update for the new API release - Update OpenVPN description to reflect recent changes (#18788) - Update CODEOWNERs - Add raycast-zoxide extension (#18908) - Update mermaid-to-image extension (#18975) - Update CODEOWNERs - fix(docs): mcp incorrect home page link (#19045) - Add search-domain extension (#18837) - Update CODEOWNERs - Add selfhst-icons extension (#18904) - Update CODEOWNERs - Update CODEOWNERs - Add option to automatically create labels in Todoist quick add command (#18892) - Add daily-sites extension (#18763) - Update CODEOWNERs - MCP Registry: Initial commit (#19015) - Docs: update for the new API release - feat(font-search): add postscript names menu (#19003) - Messages Paste OTP Regex Update (#18896) - Update Ext/window sizer (#19017) - Update CODEOWNERs - Add lipsum extension (#18784) - adding needed changes (#18987) - Update CODEOWNERs - feat: Rename NuxtUI extension to just Nuxt (#17887) - Update CODEOWNERs - [beszel-extension] Added AI tools for interacting with beszel (#17790) - Update CODEOWNERs - Update at-profile extension (#18881) - Update CODEOWNERs - Add flibusta-search extension (#18260) - Update CODEOWNERs - Update doge-tracker extension (#18950) - Update CODEOWNERs - Update CODEOWNERs - Update raycast-ollama extension (#18910) - feat(download-manager): add reload action (#18822) - Add `Name.com` extension - View Account Balance + View Domains + View DNS Records + Delete DNS Record (#18982) - Update CODEOWNERs - DeepWiki extension (#18804) - Update CODEOWNERs - add primary action switch to `one-time-password` (#18800) - Update google-chrome extension (#18794) - Update Ext/window sizer (#18988) - Update Ext/surge outbound switcher (#18989) - Update CODEOWNERs - Update prompt-stash extension (#18887) - Add geoping extension (#18957) - Update CODEOWNERs - Update migadu extension (#18930) - Update anytype extension (#18993) - Update CODEOWNERs - Add cocoa-core-data-timestamp-converter extension (#18656) - Add macports extension (#18773) - Update CODEOWNERs - Things - Set Reminders in Today and Upcoming (#18771) - Update git-assistant extension with rewrite of search git repositories command (#18948) - Update Ext/window sizer (#18963) - Update CODEOWNERs - Update meme-generator extension (#18844) - Update granola extension (#18972) - Update CODEOWNERs - Update package.json (#18970) - Update granola extension (#18915) - Update WIP extension (small typo fix) (#18962) - Docs: update for the new API release - Update CODEOWNERs - Update raindrop-io extension (#18882) - Update dust-tt extension (#18942) - Update Ext/window sizer (#18945) - Update CODEOWNERs - [Stripe] Fix "Open in Stripe Dashboard" action adding extra leading slash (#18953) - Update archiver extension (#18685) - Update CODEOWNERs - Folder Search Improvements (#18838) - Added "toggle connection" to tailscale extension (#18409) - Update esports-pass extension (#18920) - Update f1-standings extension (#18876) - Update CODEOWNERs - Add thock extension (#18618) - Update CODEOWNERs - Add tana-paste extension (#18355) - Update CODEOWNERs - Update granola extension (#18883) - Update CODEOWNERs - Update T3 Chat - new models (#18902) - Update draft-email.ts (#18895) - Update CODEOWNERs - Add zero extension (#18616) - [Apple Intelligence] Add localization (#18593) - Update research extension (#18769) - Update dolar-cripto-ar extension (#18873) - Update CODEOWNERs - [Doppler] Update doppler-share-secrets extension (#18523) - Update CODEOWNERs - Add barcuts-companion extension (#18737) - Update CODEOWNERs - New extension: Granola AI Meeting Notes (#17618) - [Spotify Player] Enable AI interaction with your queue (#18693) - Docs: update for the new API release - feat: replaced Exivo extension iconm due to trademark restrictions (#18868) - Make some extensions available on Windows (#18869) - Update animated-window-manager extension (#18865) - Update lingo-rep-raycast extension (#18721) - Update ugly-face extension (#18866) - refactor: respect system appearance (#18856) - Apple Mail: Paste latest OTP code (#18657) - Update CODEOWNERs - Add superhuman extension (#18391) - Update CODEOWNERs - Add animated-window-manager extension (#18712) - Update homeassistant extension (#18234) - Update CODEOWNERs - Update swift-command extension (#18761) - Update CODEOWNERs - Add tautulli extension (#18023) - Update CODEOWNERs - Add qutebrowser-tabs extension (#18694) - fix: update description in dia extension. (#18853) - Update CODEOWNERs - fix: fix not find zsh file (#18854) - Add nusmods extension (#18757) - Weather: Fix icon for Fog (#18849) - refactor: support more offset (#18850) - refactor: replace keystroke with key code (#18848) - Update origami extension (#18846) - Update system-information extension (#18783) - FIX code extraction imessage-2fa extension (#18836) - PurpleAir Extension Improvements: Multiple Sensor and Nearest Sensor (#18716) - Update f1-standings extension (#17861) - YoutubeMusic: Fixed Issue - remove Like and Like Songs (#18631) - [YubiKey Code] - Replace usage of WindowManagement.getActiveWindow with getFrontmostApplication (#18831) - Update CODEOWNERs - Add gotify extension (#18679) - Ext/window sizer fix screenshots and README (#18827) - Update CODEOWNERs - Add Verification/Sign-in Link Detection (#18695) - Dia (The Browser Company) extension (#18667) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Add cloud-cli-login-statuses extension (#18058) - [YubiKey Code] - Sort accounts by usage (#18781) - [hacker-news-top-stories] Add notification support (#18798) - Update threads extension (#18813) - Update Ext/window sizer (#18814) - Update CODEOWNERs - Revert "Update bmrks extension (#18539)" (#18811) - update extension raycast-gemini (#18666) - Update tinyimg extension (#18720) - Update xcode extension (#18746) - Update 1bookmark extension (#18664) - Update CODEOWNERs - Update aws extension (#18650) - [Things] Fix menu bar `Complete` action (#18641) - Update CODEOWNERs - Add nostr extension (#18637) - Docs: update for the new API release - Update CODEOWNERs - Add window-sizer extension (#18635) - Update CODEOWNERs - Add hardcover extension (#18628) - Update CODEOWNERs - Update quit-applications extension (#18617) - Update CODEOWNERs - Mark all extensions which uses AppleScript as macOS only (#18742) - Slack: enhance Search Emojis command with AI-powered suggestions (#18625) - Update CODEOWNERs - Update zen-browser extension (#18751) - Made use of Search API optional (#18410) - Update CODEOWNERs - Add magic-home extension (#18219) - Update CODEOWNERs - Add ton-address extension (#18683) - Update svelte-docs extension (#18749) - Update CODEOWNERs - Update hacker-news-top-stories extension (#18747) - Update bmrks extension (#18539) - Update CODEOWNERs - Add lookaway extension (#18589) - Update CODEOWNERs - Updating Raycast handle (#18738) - Update CODEOWNERs - Update regex-repl extension (#18724) - Update notis extension (#18727) - Update CODEOWNERs - Add `Canva` extension - View Designs and Open in Browser (#18645) - [SABnzbd] add README + Modernize to use latest config (#18670) - Update CODEOWNERs - Add go-to-rewind-timestamp extension (#18514) - Update CODEOWNERs - Update toggl-track extension (#18543) - Update CODEOWNERs - Update CODEOWNERs - Update thesaurus extension (#18569) - Update warp extension (#18504) - Handle undefined downloads in subtitle formatting (#18729) - Update mercado-libre extension (#18725) - Update tuple extension (#18718) - Update CODEOWNERs - Add origami extension (#18314) - Update README.md (#18719) - Update quick-event extension (#17943) - Update anytype extension (#18218) - Update sportssync extension (#18240) - Update CODEOWNERs - add new extension Pumble (#18253) - Update CODEOWNERs - Add macOSIcons.com extension (#18386) - fix(pianoman): Cannot read properties of undefined (#18591) - Update zeabur extension (#18675) - Supahabits/stats (#18700) - Update CODEOWNERs - Update genius-lyrics extension (#18696) - chore(mcp): improve instruction and examples given (#18537) - Update CODEOWNERs - Add donut extension (#18711) - [Expo] Add support for Two Factor authentication (#18202) - Update CODEOWNERs - Update zen-browser extension (#18068) - Update CODEOWNERs - Update raindrop-io extension (#18668) - Update trovu extension (#18277) - Added "Create new Incognito Window" action for Chrome extension (#18262) - Update hacker-news-top-stories extension (#18705) - Update svelte-docs extension (#18686) - handle non existing file selection (#18674) - Ext/surge outbound switcher (#18633) - Update betterdisplay extension (#17535) - Update CODEOWNERs - Add lyric-fever-control extension (#18538) - 🐛 fix(wakatime): Fix Reported Store Issues & Update Dependencies (#18638) - Update CODEOWNERs - Update google-calendar extension (#18636) - fix details block in information doc (#18627) - Update CODEOWNERs - Update (#18632) - Update CODEOWNERs - Add playtester extension (#18492) - Docs: update for the new API release - Update CODEOWNERs - Add asciimath-to-latex-converter extension (#18496) - GitHub: Fix pull request filtering logic (#18624) - feat(search-chatwork): mod scope to use search contacts commands with OAuth (#18542) - Update CODEOWNERs - [Asana] modernize + close after creating task (close Issue) (#18531) - Update CODEOWNERs - Update package.json (#18483) - Update CODEOWNERs - Add dpm-lol extension (#18476) - Update CODEOWNERs - Update nba-game-viewer extension (#18623) - Add liquipedia-matches extension (#18455) - Update CODEOWNERs - Add git-worktrees extension (#18418) - Update CODEOWNERs - Update linkding extension (#18395) - Arc extension: (Re-)Add support to open blank incognito window (#18427) - Update CODEOWNERs - Update raycast-svgo extension (#18560) - Auto language detection and some small fixes (#18221) - Add steam-player-counts extension (#18435) - Linear: Update API and fixes (#18601) - Todoist: Fix AI get-tasks (#18603) - Update awork extension (#18580) - Update CODEOWNERs - Update lucide-icons extension (#18428) - Update aws extension (#18552) - Update CODEOWNERs - Add cerebras extension (#18508) - Update CODEOWNERs - Add manage runtimes and delete unsupported runtimes commands to Xcode extension (#18463) - Update CODEOWNERs - Update link-cleaner extension (#18422) - Update airpods-noise-control extension (#18126) - [Github extension] add support for merge queue and "merge when ready" (#18045) - Update ihosts to support remote hosts (#18176) - Update CODEOWNERs - Update CODEOWNERs - [ADB] Add Uninstall command (#18091) - Update paste-as-plain-text extension (#18574) - Update deepcast extension (#18598) - Update CODEOWNERs - Add hacker-news-500 extension (#18431) - GIF Search: Use `Clipboard` API to copy GIF instead of AppleScript. (#18588) - Todoist: New API, improvements and bug fixes (#18518) - Update CODEOWNERs - Update raycast2github.json (#18575) - Update dust-tt extension (#18578) - Update cal-com-share-meeting-links extension (#18577) - Update ns-nl-search extension (#18576) - Commands and Navigation Enhancements (#18528) - Update CODEOWNERs - Add `Netherlands Railways Find a train` extension (#18420) - Update CODEOWNERs - Update `CricketCast` extension - Modernize + Better Score Error Handling (#18555) - Update Connect to VPN extension (#18406) - Update CODEOWNERs - Update jetbrains extension (#18545) - Update copymoveto extension (#18535) - Update CODEOWNERs - Update github-profile extension (#18551) - Enable Chat Actions When Viewing Previous Conversations (#18547) - html-colors: add filtering option to group colors by shade (#18529) - [Things] Display only incomplete todo in the menu bar (#18515) - Update WeChat (#18345) - Update `Spaceship` extension - Modernize + DNS Enhancements (#18571) - Update CODEOWNERs - Update CODEOWNERs - parcel: add "Track on Website" and improve client (#18333) - Add paystack extension (#18375) - Update CODEOWNERs - Update gg-deals extension (#18519) - Update dub extension (#18517) - Fix 404 error by replacing the repo where we get the name from (#18525) - Improved fallback command and flickering during search (#18533) - feat(bento-me): improve UI. (#18521) - Update CODEOWNERs - Update clockify extension (#18401) - Update CODEOWNERs - Add "Obsidian Tasks" Extension (#18390) - Ai extensions/elgato key light (#17822) - Update utilities.md (#18510) - Update CODEOWNERs - Add virustotal extension (#18373) - Update CODEOWNERs - things: detect URLs in notes (#18362) - Update CODEOWNERs - Update deno-deploy extension (#17840) - Update dad-jokes extension (#18494) - Slack (#18156) - Delivery Tracker: Manually Mark as Delivered and Delete All Delivered Deliveries (#18485) - fix: gcloud path for non homebrew intel package installations (#18493) - Update CODEOWNERs - [Canvascast] Fix bugs with announcements and downloads (#18100) - Update adhan-time extension (#18204) - Update CODEOWNERs - Slack: New Command: Send Message (ISSUE-15424) (#16580) - Update antd-open-browser extension (#18299) - Update image-flow extension (#18470) - feat(himalaya): Update for Himalaya `v1.0.0` (#18388) - Add Find Features and AI Extension Support (#18195) - Add movie runtime information to Letterboxd (#18089) - Update CODEOWNERs - Update evernote extension (#17889) - Add g-cloud extension (#18093) - Update CODEOWNERs - Add awork extension (#17791) - Update laravel-herd extension (#18477) - feat(search-composer-packagist): display abandon package (#18307) - [Polar] Update Polar SDK Version (#18475) - Update CODEOWNERs - Add `Pastery` extension - Search Pastes, Create Paste, Delete Paste (#18404) - [Polar] Fix non-recoverable state when OAuth access tokens expires (#18471) - Docs: update for the new API release - Update CODEOWNERs - Update `Unsplash` extension - add Pagination, Caching + Modernize (close Issue) (#18384) - Update CODEOWNERs - Add jsrepo extension (#18346) - Update producthunt extension (#18442) - docs: asset folder clearing hint (#18320) - Update CODEOWNERs - Update vercast extension (#18297) - Update pcloud extension (#18291) - Update CODEOWNERs - Add image-to-ascii extension (#18282) - Update Tailscale extension (#18281) - [braid] Fetch icons dynamically from github (#18469) - [Bitwarden] Add authenticator primary action preference (#18464) - Improve URL retrieval with clipboard fallback (#18461) - Update dict-cc extension (#18443) - Update CODEOWNERs - Add valkey-commands-search extension (#18268) - Update CODEOWNERs - Update CODEOWNERs - Update reflect extension (#18294) - Add pollenflug extension (#17787) - Update CODEOWNERs - Add image-flow extension (#17383) - Update CODEOWNERs - Add laravel-herd extension (#18318) - Update 1bookmark extension (#18413) - [Bitwarden] Authenticator command (#18322) - Update quick-notes extension (#18389) - Update `My Idlers` extension - Optimistically delete Server (#18421) - Update CODEOWNERs - Update raycast-svgo extension (#18426) - [Contentful] fix: video assets not showing thumbnail (#18441) - Docs: update for the new API release - feat: added logic for properly counting CJK characters as words (#18430) - Update CODEOWNERs - Update tidal-controller extension (#18275) - Update CODEOWNERs - Update CODEOWNERs - Update obsidian extension (#18394) - Add surge-outbound-switcher extension (#18065) - Update CODEOWNERs - Add mistral extension (#18237) - add error handling when user tries to update todo from menu bar (…
- Merge branch \'main\' of https://github.com/RemiBonnet/raycast-extensions - Update Qovery extension with resolved merge conflicts and improvements - Update CODEOWNERs - Update `Proxmox` extension - show status in `tooltip` + token is now password + modernize to use latest Raycast config (#21349) - Update CODEOWNERs - Add red-note-post-viewer extension (#21315) - Fix documentation for screenshot extension: capture-to-clipboard command (#21311) - Update flibusta-search extension (#21327) - Mention Forked Extensions in dev doc (#21158) - Update CODEOWNERs - Fix todoist extension: Setting due date and time (#21331) - Update CODEOWNERs - Add plexus extension (#21289) - Update CODEOWNERs - Add r2-uploader extension (#21215) - Merge branch \'raycast:main\' into ext/qovery - Cursor Agents: Add a new tool to get back all repositories that are s… (#21337) - Update CODEOWNERs - [cursor-agents] Made `ref` optional in the agent launch form (#21334) - Cursor: Few smaller fixes (#21333) - Add error handling for launchCommand (#21332) - Update CODEOWNERs - Cursor Agents (#21328) - Update CODEOWNERs - Update memos extension (#21213) - Release more extensions on Windows (#21324) - Update CODEOWNERs - Update google-chrome extension (#21235) - Add lockfiles and registry rules to copilot instructions (#21254) - docs: update documentation (#21325) - Update CODEOWNERs - [Gandi] New Extension (#21120) - Update RAE Dictionary extension with latest improvements (#21307) - Update CODEOWNERs - Add `Visitor Queue` extension - View "Data Views" + View "Leads" + View "Contacts" (Windows supported!) (#21322) - Update zeabur extension (#21321) - Update CODEOWNERs - Add music-assistant-controls extension (#21249) - Update CODEOWNERs - Add ChartMogul extension (#21251) - [google-chrome-profiles] Refactor Chrome profile opening into dedicated no-view commands (#20623) - Fix incorrect error message in GitHub Enterprise issues search (#21231) - Update CODEOWNERs - Add hebrew-date-zmanim extension (#21292) - Update CODEOWNERs - Add atomberg-raycast-extension extension (#21185) - Improve error handling in GitHub Copilot extension (#21308) - feat(add-expense): Add "Category" selection dropdown to "Add Expense" form (#21224) - feat(shell-history): add option to reverse history order (#21304) - Update CODEOWNERs - Add vanishlink extension (#20996) - Revert "Renaming metadata images (#21305)" (#21306) - Update brreg extension (#21169) - Update brave-search-with-results extension (#20916) - [Farcaster] cleanup and migration (#21299) - Renaming metadata images (#21305) - Fix `pr-bot` for detecting touched extensions (#21250) - Update CODEOWNERs - Add Windows support and update dependencies (#21282) - Fix GitHub Copilot instructions to provide actionable code suggestions without character escaping (#21276) - Update CODEOWNERs - Update `solidtime` extension - use custom (self-hosted) URL + handle errors + 2 EmptyViews (#20602) - [Forked Extensions] Improve Sync actions (#21294) - [Bitwarden] Sync vault on command launch (#21300) - Update `Tally` extension - update many settings of a Form + fix: crash when no Form title + add shortcut to "Open in Tally" `Action` (#21302) - [Forked Extensions] Fix the fork action (#21281) - Update CODEOWNERs - Add tallinn-transport extension (#20762) - Update CODEOWNERs - [Mozilla Firefox] Refactor and fixes (#20767) - Update CODEOWNERs - [Whimsical]: First version, only AI (#20815) - feat(raindrop-io): prefill add form from launch context (#21261) - Update CODEOWNERs - Fix todoist extension: An error creating task (#21153) - [Forked Extensions] Improve error handlers and toasts (#21222) - Update CODEOWNERs - Update spotify-player extension (#21234) - Update CODEOWNERs - Update ado-search extension (#20586) - Update CODEOWNERs - Add sourcegraph-amp-dash-x extension (#20730) - Update CODEOWNERs - Update dotmate extension (#21129) - Update CODEOWNERs - Add barassistant extension (#21126) - Update `Airtable` extension - precise errors + `Add` Icon to **Bases** & **Fields** + `Add` support for **Personal Access Token** + `Simplify` OAuth + `Modernize` (#21262) - fix(readwise-reader): Use correct URL when opening articles (#21219) - Complete overhaul of "Where Is My Cursor?" extension (#21124) - Update stale PR message and timing settings (#21273) - Update `My Idlers` extension - Add Server (#21256) - Add Windows support and update dependencies (#21260) - [MapleStory.gg] Routine maintenance (#21266) - Remove useless .eslintrc.ts - Update @raycast/api package - Delete old screenshots - Update qovery extension - Update qovery extension - Update qovery extension - Update qovery extension - Fix command title to be properly Title Cased: \\'Find Qovery Services\\' - Update qovery extension - Add qovery extension - Update CODEOWNERs - Fuelx: Override @coinbase/wallet-sdk and cbw-sdk versions (#21247) - Add comprehensive GitHub Copilot instructions for extension reviews (#21243) (#21244) - Update polymarket extension (#21236) - Add AI tools to GitHub Copilot extension for task creation and repository management (#21228) - kill-process: Add support for Windows (#21240) - Gate some more extensions for Windows (#21239) - Fix formatting in README.md for GitHub Copilot (#21226) - Update CODEOWNERs - Add GitHub Copilot extension (#21225) - Update CODEOWNERs - Add Mobius Materials extension (#21136) - [Installed Extensions] Use Raycast buitl-in `Action.CopyToClipboard` (#21216) - notion: Fix opening page on windows (#21205) - Update CODEOWNERs - Update CODEOWNERs - Update spotify-player extension (#21208) - Add fuelix extension (#21067) - Update copy-path extension (#21168) - Update `MailerSend` extension - View Domain Webhooks (#21194) - [Forked Extensions] Polish `Sync Fork` & fix Git path for Windows (#21204) - Update freeagent extension (#21203) - Update One Time Password (#20176) - [Language Detector] Add support for internet slangs (#21201) - Docs: update for the new API release - Update CODEOWNERs - Vercel/Vercast: Bump deps, make available on Windows (#20758) - Update CODEOWNERs - apple-maps-search - Windows support (#20700) - Update roblox extension (#18919) - [Forked Extensions] Fix `Sync Fork` and check Git executable file (#21187) - Update CODEOWNERs - Whois: Add windows support (#20759) - Add \'Windows\' to exempt PR labels in stale.yml (#21176) - feat: Rube MCP Server added to the registry (#21146) - Update CODEOWNERs - Add `Lemon Squeezy` extension - List all orders in all your stores + List all products in all your stores (#21115) - Update awork extension (#21178) - Add cheatsheets-remastered extension (#20991) - Update CODEOWNERs - Add leap-new extension (#21175) - Update CODEOWNERs - Update `Console Dev` extension - Major Rewrite + Support Windows + Fix Parser (#21036) - Update CODEOWNERs - Add luxafor-controller extension (#21082) - Update youversion-suggest extension (#21074) - [Forked Extensions] Sync fork repo with upstream repo on GitHub (#21171) - Update CODEOWNERs - Add shopinfo-app extension (#20884) - Update awork extension (#21040) - Update CODEOWNERs - Update radarr extension (#21118) - Update Fathom Analytics menu bar icon and add shortcut (#21147) - Update CODEOWNERs - Update aave-search extension (#21149) - [Installed Extensions] Add support launching target extension (#21154) - [Steam] Routine maintenance (#21156) - Update ray-clicker extension (#21161) - Update gradient-generator extension (#21163) - Bugfix/issue-18862 MLB Schedule Fix, addition of Standings and Search Players command (#21167) - [Forked Extensions] Add support for Windows & improvements (#21060) - Update CODEOWNERs - Update CODEOWNERs - Update copy-path extension (#21134) - Fix Slack extension: Send message is not working. (#21148) - Update brreg extension (#21151) - Update CODEOWNERs - Update CODEOWNERs - [GitHub] Add Starred Repos command (#21110) - Add monkeytype extension (#21108) - Update CODEOWNERs - ray-so: Add Windows support (#20740) - Update ente-auth extension (#20663) - Update CODEOWNERs - Add obsidian-link-opener extension (#21021) - Update CODEOWNERs - Add crypto-search extension (#21084) - [Home Assistant] Port to windows (#21065) - feat: add [Generate QR Code from Selection] Command for [QR Code Generator] Extension (#20831) - Update CODEOWNERs - Update CODEOWNERs - Update google-chrome extension: Add reload/refresh tab action (#21140) - feat(endel): add Endel extension (#20788) - Update CODEOWNERs - Add chatgpt-search extension (#20721) - Update CODEOWNERs - Fix Jira extension: Deprecated Atlassian API methods (#21057) - Add odoo-companion extension (#21058) - Update brreg extension (#21046) - [spotify-player] Check for duplicate tracks before adding to a playlist (#20617) - Update aws extension (#21016) - ext/media-converter: hotfix: simple quality settings (#21092) - Update `logitech-litra` extension to support devices without a serial… (#21139) - Update CODEOWNERs - [Multilinks] Add Dia browser support (#21128) - Update 1password extension (#21142) - Update todoist extension (#21141) - Update `changedetection.io` extension - Create + Delete + modernize + add EmptyView (#21143) - Update openrouter-models-finder extension (#21100) - Fix a minor typo in video-downloader Installer view (#21102) - Update CODEOWNERs - Add Looma.fm extension with all reviewer feedback addressed (#20781) - Update CODEOWNERs - Add get-cat-images extension (#20964) - Update CODEOWNERs - feat(add-expense): add “Recent” section to “Add Expense” form (#21032) - Update CODEOWNERs - Add typora-note-creator extension (#20851) - Update commit-issue-parser extension (#21050) - [Surge] Routine maintenance (#21098) - [United Nations] Handle SIGTERM gracefully (#21086) - Update search index used in Statamic Docs extension (#21089) - Update CODEOWNERs - feat: support specifying issue type when creating an issue (#21043) - Update naver-search extension (#20235) - [Say] Allow stop saying & handle SIGTERM gracefully (#21081) - Update CODEOWNERs - [Spotify] Fix reading values from undefined (#20986) - Add gradient-generator extension (#21012) - Update CODEOWNERs - Update raycast-surge extension (#20578) - Add openrouter-quick-actions extension (#20958) - Update CODEOWNERs - Add scheduler extension (#20641) - Update CODEOWNERs - Add comet extension (#20632) - Update ray-clicker extension (#21088) - Update todoist extension (#21078) - Update CODEOWNERs - Update ship24-client extension (#21059) - Add openrouter-models-finder extension (#21005) - Update CODEOWNERs - Add zsh-aliases extension (#20985) - Update CODEOWNERs - Add ray-clicker extension (#20979) - Update `Wave` - Enhance `Invoice` to show amounts due and paid + Move "Business Products And Services" to its own file + Add new product or service (#21052) - Update password-generator extension to guarantee presence of character choices (#20976) - Update CODEOWNERs - [Forked Extensions] Initial release (#20968) - Update CODEOWNERs - Update todoist extension (#20984) - Docs: Update the utils docs - Update brreg extension (#21027) - Docs: update for the new API release - feat: adding the calculation time for MOROCCO (#20917) - Update CODEOWNERs - feat(model-context-protocol-registry): linear mcp server (#20895) - [defbro] Dynamic detection of defbro command path (issue #20881) (#20882) - Brew: Close Raycast in case the brew cmd typed in raycast window (#20780) - Hot Fix: Granola authentication to support WorkOS tokens (#21039) - Update CODEOWNERs - Add vixai extension (#20772) - Update lookaway extension (#21038) - Update CODEOWNERs - Bitaxe initial commit (#20750) - Update CODEOWNERs - Update cyberchef extension with custom Instance URL (#20735) - Update duckduckgo-image-search extension (#21034) - 🐛 fix browser-extension for zen browser (#21035) - Update CODEOWNERs - Add positron extension (#20596) - Update CODEOWNERs - Add french-company-search extension (#20865) - Update minio-manager extension (#20999) - Update change case extension (#20960) - Update grammari-x extension (#20998) - Support for scientific notation and decimal encoding in converter (#21011) - Update Claude Code Cheatsheet - Add v1.0.55-v1.0.81 features (#21004) - Update CODEOWNERs - Update trakt-manager extension (#20854) - [Language Detector] Add support for Windows (#20832) - Update quick-git extension (#21001) - Update CODEOWNERs - Update `SwitchHosts` extension - modernize + icons + markdown + add hook + remove `setTimeout`,`node-fetch` (#21017) - Update `Clockify` extension - Select Tag During Start + More Precise Types + Modernize (#21002) - Update `cPanel` extension (#20977) - Update google lens extension (#21019) - Update CODEOWNERs - Add invisible-text-detector extension (#20926) - Update CODEOWNERs - Add word4you extension (#20638) - Update CODEOWNERs - Add radarr extension (#20904) - Update CODEOWNERs - feat(8ball): add preference to choose default action (copy/paste) and… (#20947) - Update CODEOWNERs - Update deepwiki extension (#20955) - Update CODEOWNERs - Update dodo-payments extension (#20956) - Update vercast extension (#20838) - Update CODEOWNERs - Update search-gule-sider extension (#20911) - [Groq] model update and improvements (#20630) - Add support for password protected YubiKeys in yubikey-code (#20938) - [Time Tracking] rename in Edit Form + Modernize (#20922) - [Brand.dev] trigger search via search text (QoL) (#20944) - Update CODEOWNERs - Add unblocked-answers extension (#20696) - Update CODEOWNERs - Add chainscout extension (#20712) - Update CODEOWNERs - tabler: add download actions (#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (#20686) - Update CODEOWNERs - Add jitsi extension (#20680) - Update CODEOWNERs - Add time-calculator extension (#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (#20647) - Update CODEOWNERs - Add synology-download-station extension (#20643) - Add owl extension (#20777) - Update CODEOWNERs - Update synonyms extension (#20879) - Update scira extension (#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (#20906) - [Color Picker] Fix Convert Color command (#20913) - Update v0-by-vercel extension (#20923) - Update CODEOWNERs - Add v0-by-vercel extension (#20792) - Add `.gitattributes` & get rid of `\r\n` (#20498) - [Brand Icons] Add support for creating social badges through cross-extension (#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (#20885) - Update certificate-viewer extension (#20894) - Update CODEOWNERs - Add yap extension (#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (#20427) - Update CODEOWNERs - Add emojis-com extension (#20875) - Add dodo-payments extension (#20669) - Update CODEOWNERs - Add twingate extension (#20580) - Update CODEOWNERs - Update brave-search-with-results extension (#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (#20892) - Update image-wallet extension (#20806) - Add proton-authenticator extension (#20773) - Update CODEOWNERs - Add sharding-tools extension (#20394) - Update CODEOWNERs - Add Save Link extension (#20521) - Update CODEOWNERs - Update display-modes extension (#20260) - Update CODEOWNERs - Update craftdocs extension (#19976) - Update CODEOWNERs - Update aerospace extension (#20847) - Update aws extension (#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (#20493) - Update at-profile extension (#20853) - Update aws extension (#20856) - Update grammari-x extension (#20848) - Update preferences.md (#20855) - Update youtrack extension (#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (#20553) - Update CODEOWNERs - Add kiro extension (#20790) - Update freeagent extension (#20844) - [Badges] Add shortcut for picking logo (#20849) - Update CODEOWNERs - Update svgl extension (#20852) - Add docklock-plus extension (#20419) - Update slugify-file-folder-names extension (#20528) - Update CODEOWNERs - Add freeagent extension (#20828) - Update CODEOWNERs - Update aws extension (#20809) - Update CODEOWNERs - Add sefaria extension (#20378) - Update CODEOWNERs - Add tokenizer extension (#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (#20817) - Add ag-audioflow extension (#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (#20830) - Update CODEOWNERs - Adding new social platforms (#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (#20813) - [GitLab] Add windows support (#20824) - Update raindrop-io extension (#20820) - Update CODEOWNERs - Update timezone-buddy extension (#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (#19456) - Fix token expired auth flow in SendAI extension (#20711) - Update CODEOWNERs - Add commit-issue-parser extension (#20395) - Update CODEOWNERs - Add ozbargain-deals extension (#20288) - Update mermaid-to-image extension (#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/remibonnet/.npm/_npx/daafed3b81e85078/node_modules/.bin:/Users/remibonnet/Project/raycast-extensions/extensions/qovery/node_modules/.bin:/Users/remibonnet/Project/raycast-extensions/extensions/node_modules/.bin:/Users/remibonnet/Project/raycast-extensions/node_modules/.bin:/Users/remibonnet/Project/node_modules/.bin:/Users/remibonnet/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/usr/local/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/remibonnet/.codeium/windsurf/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/Users/remibonnet/.codeium/windsurf/bin (#20458) - Update system-monitor extension (#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (#20558) - Update CODEOWNERs - Update wol extension (#20601) - Update CODEOWNERs - Add google-lens extension (#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (#20747) - Update visual-studio-code extension (#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (#20563) - Add dia-skills extension (#20548) - Update letterboxd extension (#20615) - end-of-life - Windows support (#20701) - Gemini/updatemodels-July (#20662) - Fix: Support currency format in transaction amount validation (#20399) - Update CODEOWNERs - feat: Update Rewind Icon (#20744) - Update CODEOWNERs - Update hypersonic extension (#20462) - Update CODEOWNERs - Update grok-ai extension (#20734) - Add network-proxy extension (#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (#20460) - Update defbro extension (#20367) - Show Artist\'s name when liking current track (#20583) - Update wechat-devtool extension (#20668) - Add character tabulation to Unicode Symbols extension (#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (#20168) - Update nusmods extension (#20625) - Update quick-notes extension (#20569) - Update CODEOWNERs - Deleted directory (#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (#20749) - Renames the extension from "hoarder" to "karakeep". (#20113) - Update pr-bot.ts (#20775) - Update CODEOWNERs - Update pomodoro extension (#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (#20221) - Update CODEOWNERs - Add VLC extension (#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (#20702) - Update Project Hub Extension - Add Recent Projects Section (#20561) - Update arc extension (#20761) - Update extension (#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (#20626) - Add `Host.io` extension - get full domain data for any domain (#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (#20502) - Update youversion-suggest extension (#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (#20357) - Deprecate Ghost Docs Extension (#20690) - Update CODEOWNERs - author update (#20705) - [Badges][Brand Icons] Bugfixes & improvements (#20545) - Update public_raycast_extensions.txt (#20688) - Update CODEOWNERs - Update pieces-raycast extension (#20296) - feat[Backstage plugin]: configurable Backstage API URL (#20398) - Update whisper-dictation extension (#20482) - Update CODEOWNERs - Update endoflife (#20651) - Update T3 chat\'s icon (#20599) - Update CODEOWNERs - feat: add windows support mymind extension (#20239) - [Mastodon] Add support for Windows (#20448) - [NeoDB] Add support for Windows (#20471) - Update CODEOWNERs - [NUSMods] Add support for Raycast Windows (#20240) - [Todoist] Windows support (#20487) - Update gdrive homepage url (#20608) - Update CODEOWNERs - Arc: Fix trying to open a tab with `open` (#20579) - Update Zerion author to original one (#20582) - Update CODEOWNERs - Update zerion author (#20581) - feat: Backstage plugin supports static token (#20383) - [groq] Remove Llama Guard 4 12B 128K (#20507) - Update CODEOWNERs - Add preference to toggle default reuse open GitHub search tab (resolves #20488) (#20489) - Add weread-sync extension (#20205) - Docs: update for the new API release - Update CODEOWNERs - Add cloudflare-email-routing extension (#20305) - Update dpm-lol extension (#20491) - macosicons: fix API error handling for non-JSON responses (#20172) - Update CODEOWNERs - [Perplexity] Add Perplexity desktop app support to extension (#20393) - Parse Zed local workspace paths from binary format correctly (#20086) - Docs: update for the new API release - Update prepare-an-extension-for-store.md (#20473) - Update wechat-devtool extension (#20406) - [Update] [IP Geolocation] Optimize extension icons (#20467) - Update CODEOWNERs - [World Clock] Avoid accessing the `.map` function on possibly undefined data (#20469) - Update CODEOWNERs - [Update] [Easy New File] Support Default Directory (#20449) - update pr merge dates (#20457) - Update grammaring extension (#20464) - [raycast2github] Fix name mapping (#20472) - Update CODEOWNERs - Add extension for opening new instances of apps (#20432) - Update CODEOWNERs - Update remove-paywall extension (#20331) - Update CODEOWNERs - Update registries to use the official npmjs registry (#20440) - Add paste-to-markdown extension (#19999) - Update CODEOWNERs - Update vscode-project-manager extension (#20446) - [Easings] Add spring animations (#20445) - Update CODEOWNERs - Update groq extension (#20439) - [Brand Icons] Use `pacote` for downloading & extracting icons (#20391) - [espanso] support import (#20400) - Update secret-browser-commands extension (#19948) - Fixing issue in ext/beehiiv (#20437) - Update CODEOWNERs - Update change-case extension (#20002) - Update ideate extension (#20063) - Update `Appwrite` extension - DB, Storage, User Enhancements (#20386) - Update `Oracle Cloud (OCI)` extension - implement provider w/ context + basic objectstorage command (#20405) - [valkey commands search] Migrate to useFetch and group the commands (#20421) - Update `Neon` extension - add project, delete projects + Modernize to use latest Raycast config (#20402) - [espanso] add binary path option (#20280) - [Larajobs] update metadata image + chore (#20417) - feat(readwise-reader:) add option to open in Reader desktop app (#20424) - Update URL unshortener (#20385) - Update granola extension (#20384) - feat(readwise-reader): add ability to include tags when saving links (#20388) - Update background-sounds (#20387) - Update ScreenOCR (#20408) - Update instagram-media-downloader extension (#20413) - Update yu-gi-oh-card-lookup extension (#20414) - Update CODEOWNERs - Add pdf-compression extension (#20194) - Update CODEOWNERs - Add control kef extension (#20127) - Update pr-bot.ts (#20376) - Update Tasklink extension (#20375) - Update CODEOWNERs - Added open-in-textmate extension (#20266) - Update CODEOWNERs - Update ente-auth extension (#20122) - [SteamGridDB] Add support for Windows (#20364) - Update CODEOWNERs - [Update] [DocSearch] Add TailwindCSS v4, Next.js, MassTransit and Pinia documentations (#20254) - Update CODEOWNERs - FocusFLOW (#20214) - Update repology-search (#20370) - Update CODEOWNERs - Add WeChat DevTool extension (#20222) - Update URL-unshortener (#20136) - [ProtonDB] Add support for Windows (#20338) - Fix GIF Search extension updates (#20360) - PR bot assignee constant (#20358) - run pr bot on ready to review (#20356) - [TourBox] Add support for Windows (#20337) - add debugging for draft pr review assigning (#20353) - Update `Name.com` extension - ✨ AI Enhancements (add 3 Tools) + Migrate API (Legacy v4 to Core v1) + Modernize (#20340) - PR bot should check PR files in existing extensions too (#20352) - Update CODEOWNERs - Add console logs to PR Bot for testing (#20351) - Add rounding-number extension (#20232) - Update CODEOWNERs - toggle-desktop-visibility for mac os 26 tahoe (#20225) - Update zipline extension (#20336) - Update CODEOWNERs - Update slack extension (#19219) - Update FHIR extension (#20329) - Update CODEOWNERs - Update CODEOWNERs - [Easy Dictionary] Remove the unused icon file (#20333) - Update aerospace extension - Changed the icon to the new design. (#20342) - things: handle JXA scripts with no result (#20341) - Update trenit extension (#20215) - Apply "AI Extension" label for new extensions as well as existing ones (#20306) - Update `Short.io` extension - `search-links` now allows you to view links independent of default + fix: `shorten-link-with-domain` persists Default Domain properly (#20327) - Create new message when no number match found (#20326) - Update CODEOWNERs - Support for OTP codes that include a hyphen (#20236) - Update anytype extension (#20227) - Update CODEOWNERs - Update ray-boop extension (#20231) - Update easydict extension (#20190) - Update CODEOWNERs - Add quick-jump extension (#20050) - Update CODEOWNERs - Add zipline extension (#20157) - Update CODEOWNERs - Add ship24-client extension (#20170) - Update Raycast X link in README (#20318) - things: improve project detection to not depend on existing projects (#20300) - noteplan 3 | fix #20116 Daily plan not displaying (#20308) - Update CODEOWNERs - feat(notion): show properties in page preview (#20111) - Update CODEOWNERs - fix: typescript error handling (#20298) - Update spotify-player extension (#20178) - Update CODEOWNERs - New Extension : Percentage Calculator (#20195) - Update CODEOWNERs - Update g-cloud extension (#20210) - Update Lightshot Gallery extension (#20246) - [HoudahSpot Search] fix fallback text not used (#20295) - Update CODEOWNERs - Update browser-bookmarks extension (#20187) - Add trip search command to Norwegian Public Transport extension (#20226) - Update CODEOWNERs - Add FHIR extension (#20163) - Update CODEOWNERs - Update xecutor extension (#20159) - Add climbing-grade-converter extension (#20134) - Update Cider extension (#20241) - Update CODEOWNERs - change author (#20289) - things: enhance error reporting + troubleshooting hints (#20224) - [Update] [Hide Files] new icon style (#20253) - [Update] [Bing Wallpaper] Add refresh interval (#20249) - Update CODEOWNERs - [Update] [Browser tabs] new icon style (#20251) - [Update] [Maven Central Repository] new icon style (#20252) - Add clipyai extension (#19740) - Update CODEOWNERs - Update CODEOWNERs - Update `Larajobs` extension - filter by Type, Salary, Tag (#20286) - [zed-recent-projects] Adds a preference checkbox to use the Zed development Sqlite database (#19803) - Add Metabase AI Tools (#17673) - Update CODEOWNERs - Add squeeze extension (#20083) - Update CODEOWNERs - Update CODEOWNERs - Add `Upstash` extension - List Redis Databases, View Details & Usage, Create Database + List Vector Indices, Create Index, Delete Index (#20274) - Update `HoudahSpot Search` extension - fix: text passed as "undefined" when Argument is empty in fallback mode + add `metadata` image + Modernize + `chore` (#20250) - [Spaceship] Toggle Domain Transfer Lock + Get Domain Auth Code + Add AAAA, CNAME DNS Records (#20243) - Update `Keygen` extension - List & Add Products + Color License based on Status + show: Expiry, Scheme, Valid in License (#20228) - Update `Sanity` extension - update logo + modernize (#20220) - Update CODEOWNERs - Update `MailerSend` extension - View API Quota + Filter Domain Activity by Type + View, Rename, Toggle (Pause/Unpause) Tokens (#20197) - [Say] Fix duplicate lines in Configure Say command (#20245) - [Update][Are.na] show status accessory w/ color in search channels + remove auto-generated types (#20265) - Update CODEOWNERs - [ccusage]: fix(#20056) resolve custom npx path issue in ccusage CLI commands (#20262) - update[send-ai]: added new features in the extension (#20273) - [Image Modification] Bug Fixes (#20282) - Update curl extension (#20284) - Update f1-standings extension (#20217) - Update CODEOWNERs - Add csfd extension (#18344) - Docs: Update the utils docs - Update CODEOWNERs - Add rewiser extension (#20023) - Update `Resend` extension - Update Icons + Modernize to use latest config + chore: remove `node-fetch`, `cross-fetch` (#20179) - Update CODEOWNERs - Major update to Kaleidoscope extension, see README and CHANGELOG. (#20076) - [catppuccin] update data source (#20216) - update extension raycast-Gemini - safety-setting (#19277) - Update CODEOWNERs - Add ray-boop extension (#20108) - Update CODEOWNERs - [Spotify Player] Fix for Search command not working issue (#20183) - Update CODEOWNERs - Add new raycast extension - SendAI (#20104) - things: fix project update actions (#20161) - Update `Wave` extension - Add new customers through `Form` + Remove customers after confirming (`Alert`) + Move "Business Customers" to its own file + Modernize to latest config (#20185) - Spotify Lyric Finder Improvements (#20154) - Update CODEOWNERs - Add certificate-viewer extension (#20110) - Update CODEOWNERs - Add markdown-preview extension (#20052) - Update CODEOWNERs - Add somafm-for-raycast extension (#20027) - feat: add getThumbnailUrl to optimize image loading and update components to use it (#20177) - Update CODEOWNERs - feat: add resend wallpaper extension (#20169) - Update CODEOWNERs - Update `Polar` extension - View Products and their Media + Optionally BYOK + Remove `node-fetch` (#20156) - Update CODEOWNERs - Add Instant Translate feature to Google Translate extension (#20093) - Add quick-quit extension (#19869) - extensions/messages: docs: add note about automation permissions for sending messages (#20148) - Update `Doppler` extension - View Logs of a Config + "Open In Doppler" component (#20164) - Try/catch AI label PR bot (#20165) - Auto-label AI extensions in PRs (#20160) - Update CODEOWNERs - Update apple-notes extension (#19613) - Update CODEOWNERs - Add roblox-creator-docs extension (#20024) - Update music extension (#19654) - Update CODEOWNERs - Update apple-notes extension (#20138) - Update zeabur extension (#20140) - Update `radicle` extension - remove need for `radicle-httpd` (#20141) - Update CODEOWNERs - Update spotify-player extension (#19950) - Update CODEOWNERs - Add windsurf extension (#20046) - Add stacks extension (#19863) - Update CODEOWNERs - Add markdown-styler extension (#19967) - Update CODEOWNERs - Update CODEOWNERs - Update `Pocket` extension - add an Alert in Show informing users to Export + required url in create (#20126) - Update `Obsidian Tasks` add `preference` to show description in details markdown (List Tasks) (#20098) - [create-link]: Add customizable templates and tab selection feature (#20120) - Update preferences.md (#20131) - Update CODEOWNERs - [Get SSH Keys] OpenInFinder + Key as Icon (#20117) - No `-lossless` flag on `dwebp` (#20125) - feat: add Gen-PDF MCP Server to the registry (#19924) - Update CODEOWNERs - Update CODEOWNERs - Add tidal extension (#19784) - Add image-shield extension (#19969) - Update CODEOWNERs - Update cobalt extension (#20090) - Update sequoia-tiling extension (#20101) - Update lookaway extension (#20092) - Update media-converter extension: proper user preferences (#20081) - docker,dockerhub,drafts,ensk-is,seo-lighthouse: Update to use newer version of `tar-fs`. (#20068) - Update CODEOWNERs - Add Default Formality Configuration Option (#19656) - Update CODEOWNERs - Add sidecar extension (#19980) - [GitLab] Group milestones on issue and mr create form (#20072) - Update CODEOWNERs - Update CODEOWNERs - Update `Short.io` extension - Add Domain inside `shorten-link-with-domain` + Modernize extension to use latest Raycast config (#20070) - fix: replace youtube-transcript lib (#20080) - Add sequoia-tiling extension (#19877) - Update CODEOWNERs - Update github extension (#20073) - Update CODEOWNERs - Support device name for audio device selection (#19995) - New: Password.Link Extension (#19996) - Update CODEOWNERs - Add clipmate extension (#19958) - Update CODEOWNERs - Add regex-batch-renamer extension (#19849) - [Bitwarden] Catch OTPAuth initialization (#20064) - Update CODEOWNERs - Update quick-notes extension (#19965) - Update linkding extension (#19756) - Update media-converter extension (#20061) - Update CODEOWNERs - Update docker extension (#19817) - [ChatGPT Quick Actions] API pricing fix (#19964) - Update raycast-zoxide extension (#20032) - Update whisper-dictation extension (#19989) - Browser Bookmarks: Add support for Dia and Ghost Browser (#19971) - Update CODEOWNERs - Add duan-raycast-extension extension (#19765) - Update CODEOWNERs - Add ideate extension (#19791) - Update CODEOWNERs - Update transmission extension to fix error on showing a list (#19809) - Update CODEOWNERs - Update Markdown to ADF library (#19972) - Update CODEOWNERs - DotMate - Raycast Extension for Dotfile Management (#19819) - Update media-converter extension: better installation (#19808) - Update wp-bones extension (#19953) - Update CODEOWNERs - Update CODEOWNERs - Update project-code-to-text extension (#19921) - Add `MailerSend` extension - View Domains, View Domain Activity (24 hours), View Templates, View Users (#20022) - Update CODEOWNERs - Add psn extension (#19914) - Update CODEOWNERs - Add minio-manager extension (#19906) - Fix Slack extension YAML (#19865) - Better handling of cloc command to show statistics (#20040) - Aerospace - add monitor name to switch apps action (#19899) - Updated Font Awesome version, added support for more icon types (#19963) - Update CODEOWNERs - Update translate extension (#19933) - Update openrouter-model-search extension (#20028) - [ccusage] Hotfix critical React Hooks Rules violations and improve loading states (#20033) - [Google Translate] Show auto detected language in Quick Translate (#20036) - [Bitwarden] fix: check if user can access BrowserExtension (#20029) - Update CODEOWNERs - Update tailwindcss extension - add default action preference to `Search Colors` command (#19707) - Add claude-code-cheatsheet extension (#19828) - Update Repository Manager (#19994) - [ccusage] Major v2.0.0 upgrade: AI extension support and architecture refactor (#20019) - [Google Translate ] fix quick translate with Chinese auto detected language (#19991) - Update CODEOWNERs - Add redirect-trace extension (#19854) - Update workouts extension (#20018) - Update raycast-wallpaper extension (#20017) - Fix Slack powershell script (#20014) - Linear: Fix SVGs to include xmlns (#20012) - Feat: Add permalink to Dub Link page (#20004) - [Google Translate] Improve UX for quick language change in Translate Form (#19990) - Update react-native-directory extension (#19992) - [Bitwarden] Catch authenticator initialization error (#19997) - [Dribbble, Uplabs] Remove Dribbble and Uplabs extensions (#19913) - Update youtrack extension (#19983) - Fix Slack extension: search messages from specific user (#19731) - [Daminik] use URL instead of Slug in Preferences (#19934) - Docs: update for the new API release - Update youtrack extension (#19925) - Update workouts extension (#19981) - [Update] [Raycast Wallpaper] More Auto Switch Interval (#19952) - [Update] [Easy New File] Supports Form layout (#19954) - [Google translate] fix Chinese and some other languages (#19957) - [Update] [Life Progress] (#19959) - Update compressx extension (#19966) - Patched breaking API change (#19974) - Update `Coolify` extension - fix: Unable to delete Databases in `Resources` + view `ENVs` of **applications** and **services** (#19940) - [MyIdlers] - Domain, Shared, Reseller and Server are now split into "Active" and "Inactive" sections (#19968) - [Brand Icons] Routine maintenance (#19912) - Update CODEOWNERs - [ccusage] Clean up unused dependencies and exports (#19916) - Add kusto-reference extension (#19836) - Update CODEOWNERs - Make sure extensions use official npm registry (#19911) - Update safari extension (#19829) - Update CODEOWNERs - Housekeep Knip config (#19903) - [Confluence Search] Use the npm official registry (#19901) - Update CODEOWNERs - [ClickUp] persist priority on create (super minor fix) + add some missing icons (#19904) - Update CODEOWNERs - [Gitlab] Add issue filter on issues menu item (#19769) - [Google Translate] add all the languages from google translate, remove flags (#19905) - Release more extensions on Windows (#19896) - Update `SolusVM 2` extension - Reinstall Server + View,Create,Remove Snapshots + Invite,Remove Members (#19900) - Update CODEOWNERs - Add openrouter extension (#19831) - Update CODEOWNERs - Add ccusage extension (#19792) - Update CODEOWNERs - Add open-in-trae extension (#19705) - Update CODEOWNERs - [dust-tt] update auth provider (#19783) - Update CODEOWNERs - Update CODEOWNERs - Update aws extension (#19476) - [Promptlab] Use the npm official registry (#19895) - Update CODEOWNERs - Add loan-calculator extension (#19781) - Update CODEOWNERs - Update CODEOWNERs - [Markdown to Plain Text] Use the npm official registry (#19894) - Update Wifi Password Reveal (#19402) - Update CODEOWNERs - [Bitbucket Search] Use the npm official registry (#19891) - Update CODEOWNERs - [Akkoma] Use the npm official registry (#19893) - Update CODEOWNERs - Update CODEOWNERs - [Find OpenGL Enum] Use npm official registry (#19889) - Add microblog extension (#19777) - Update CODEOWNERs - Add beehiiv extension (#19770) - Update CODEOWNERs - Preview visibility, toast fix, and png w/ background option (#19855) - Folder search/drag n drop (#19841) - Update slugify-file-folder-names extension (#19850) - Update `NameSilo` extension - View Contact Profiles + View & Configure Email Forwards + Modernize (#19871) - Ext/popcorn: Fix stream selection bug, and added more support for other addons (#19873) - Update zeabur extension (#19881) - Update CODEOWNERs - Adds glossary extension (#19502) - Update flush-dns extension (#18964) - Update CODEOWNERs - Add geoconverter extension (#19759) - Add Keboola MCP Server to the Model Context Protocol registry (#19753) - Update CODEOWNERs - Update CODEOWNERs - Bitbucket feature (#19739) - Add nyc-train-tracker extension (#19185) - Update CODEOWNERs - Add popcorn extension (#19823) - Update google-scholar extension (#19796) - Update quick-git extension (#19778) - Update Harpoon extension (#19798) - Update instagram-media-downloader extension (#19789) - Update mozilla icon (#19801) - [Xcode] AI Tools & Improvements (#17875) - Update CODEOWNERs - Add `Keygen` extension - View Licenses & Policies + Create Licenses & Policies (#19802) - Update CODEOWNERs - [ClickUp] allow creating task w/o priority + add OpenInClickUp Action (#19787) - Update `Mixpanel` extension - Support All Server Regions + Update Logo + better Error Handling + Modernize (#19821) - Update CODEOWNERs - Add bookmark/save to queue for Matter (#19434) - Update wip extension (#19837) - Update CODEOWNERs - Update Okta search extension (#19825) - Add image-search extension (#19672) - Update CODEOWNERs - Add chronometer extension (#19295) - Add url-editor-pro extension (#19661) - Update CODEOWNERs - Add shutdown-timer extension (#19650) - Docs: update for the new API release - Docs: Update the utils docs - Update CODEOWNERs - Add AWS Audit Manager and update Amazon Bedrock details in aws-servic… (#19685) - Add Creation Date option for sorting (#19682) - Add clipboard-sequential-paste extension (#19679) - Update CODEOWNERs - Add open-docker extension (#19671) - Cleanup unused lockfile (#19659) - [Hue] Fix certificate handling (#19658) - chore: update icon path in the README.md file (#19773) - Update CODEOWNERs - Update CODEOWNERs - Add `Dokploy` extension - Add Instances then manage services and docker containers (#19668) - Update `Geist UI Components` extension - Modernize + Update Logo + Add Hooks, metadata images (#19775) - add ai incident search to incident.io extension (#19631) - [Hookmark Search] Fix bookmark properties encoding (#19543) - Updated to new version extension (#19358) - Update dexcom-reader extension (#19642) - Add priority levels mapping (#19771) - Docs: update for the new API release - Expected Delivery Date Formatting Overhaul (#19649) - Update `Brand.dev` extension - add fonts, stock, email, phone + remove "verified" + change Browser Action + Modernize (#19645) - Update CODEOWNERs - [WP Plugins] add pagination + add shortcut to "Download" + Modernize (#19683) - Fix search authentication errors - resolves #19400 (#19450) - Update CODEOWNERs - docs: update Shadcn Vue icon path (#19639) - Update shadcn-vue extension (#19637) - Update lucide-icons extension (#19763) - fix: only index field must be required others if not input should fall to defaultValue (#19747) - Update CODEOWNERs - chore: update firecrawl version + add integration parameter (#19725) - Update finderutils extension (#19751) - Update google-scholar extension (#19761) - Docs: update for the new API release - Update web3bio extension (#19629) - [browser-tabs] Fix for Duplicate Tabs Issue (#19665) - [Folder-Search] - Major Improvements: Bug Fixes, Error Handling, Performance (#19663) - Update CODEOWNERs - Update zen-browser extension (#19611) - Fix: Add latest OpenAI models and consolidation system (#19592) - Update CODEOWNERs - Add yomicast extension (#19573) - Add chhoto-url extension (#19567) - [Laravel Herd] (#19733) - Update CODEOWNERs - Update audio-device extension (#19074) - Update code-saver extension (#19687) - Update grammaring extension (#19681) - Update `HetrixTools` extension - Add Status Pages command + modernize to use latest config (#19728) - Update vmware-vcenter extension (#19716) - Update CODEOWNERs - Add force kill to kill-process extension (#19607) - Update docker extension (#19698) - Update CODEOWNERs - Update CODEOWNERs - Add quick-git extension (#19405) - Add copee extension (#19526) - Update CODEOWNERs - Add rize-io-sessions extension (#19677) - Update CODEOWNERs - Add advanced-speech-to-text extension (#19517) - Update CODEOWNERs - Clipsign - extension for creating, saving, and instantly copying your e‑signature (#19453) - Update CODEOWNERs - Update `HubSpot` extension - You can now `copy` some properties of a Contact through new "Copy to Clipboard..." submenu (#19652) - Update project-code-to-text extension (#19676) - Update CODEOWNERs - Update `Country Lookup` - Offline Support since API is now limited + Modernize (#19693) - Update quick-event extension (#19258) - Update CODEOWNERs - Update prism-launcher extension (#19601) - Fix obsidian-raycast bug on note creating (#19635) - Update CODEOWNERs - Add whisper-dictation extension (#19532) - Update CODEOWNERs - Updated the URL for the Prisma MCP server (#19472) - Add open-latest-url-from-clipboard extension (#19624) - Update CODEOWNERs - Update shadcn-ui extension (#19525) - Update CODEOWNERs - Update CODEOWNERs - Improve Flight Details Layout: Combined Times & Side-by-Side Terminal/Gate (#19521) - Add analog-film-library extension (#19514) - Update CODEOWNERs - Add volumio-control extension (#19504) - Update CODEOWNERs - [Color Picker] Fix returned value from callback-launch command (#19619) - [GitHub] Add preference to exclude repositories from other commands (#17468) - Update CODEOWNERs - Add diff-view extension (#19463) - Add kagimcp server (#19568) - [Bitwarden] Fix Authenticator "TypeError: t is not a function" (#19616) - Include Outlook in app description (#19594) - Update CODEOWNERs - add Open Documentation (#19500) - Update sportssync extension (#19483) - Update CODEOWNERs - macosicons: include user applications (#19482) - [Brand Icons] Add compatibility with Simple Icons 15 (#19478) - Docs: update for the new API release - Update prism-launcher extension (#19599) - [United Nations] Maintenance & fix news format (#19584) - Update prism-launcher extension (#19598) - Update CODEOWNERs - Apple reminders/show which list reminder is from (#19343) - Update battery-optimizer extension (#19190) - Update awork extension (#19558) - Update CODEOWNERs - feat: Add history command (#19589) - Update system-monitor extension (#19595) - Update Ext/window sizer (#19580) - Enhanced Date Format Support (#19539) - [TRELLO] Allow for unassigned card and update dependencies (#19519) - Update `Oracle Cloud` extension - (Confirm and) Terminate Instance + Add "Open in OCI" `Action` (#19534) - Update Ext/window sizer (#19541) - Update `Cloudflare` extension - Add A,AAAA,TXT DNS Records + Delete any DNS Record + Improve error handling function + Modernize extension to use latest Raycast config (#19552) - Update wp-cli-command-explorer extension (#19559) - Update CODEOWNERs - Update reverso-context extension (#19452) - Update CODEOWNERs - Add project-code-to-text extension (#18996) - Update CODEOWNERs - Add project-hub extension (#19293) - Update CODEOWNERs - Update GemOptions.tsx (#19136) - Update checksum (#19492) - Update CODEOWNERs - Update united-nations extension (#19528) - Update downloads-manager extension (#19407) - Update CODEOWNERs - Move `josephlou` to past contributors (#19522) - Update aave-search extension (#19366) - Update CODEOWNERs - Add dexcom-reader extension (#19141) - Update CODEOWNERs - Update digitalocean extension addressing issue displaying automated deployments (#19432) - Update Fabric extension - location and tag selection (#19470) - Wikipedia language improvements (#19473) - Update Ext/window-sizer (#19499) - Update CODEOWNERs - Add slugify-file-folder-names extension (#19422) - Update messages extension (#19426) - macosicons: fix lint (#19497) - Update CODEOWNERs - Add google-scholar extension (#19392) - Update CODEOWNERs - Add `SolusVM 2` extension - Manage Servers + View,Update Members + View,Create API Tokens & Settings + View ISOs (#19486) - Update CODEOWNERs - feat: add Anytype MCP Server to the registry (#19506) - Add `Appwrite` extension - Add multiple projects and view various services (#19510) - Update CODEOWNERs - Add foodle-recipes extension (#19084) - Update CODEOWNERs - Add cangjie extension (#19308) - Update CODEOWNERs - feat(google-calendar): create events with natural language duration input (#19317) - Update CODEOWNERs - Improved Category Search & Fixed Budget Details (#19451) - Update qrcode-generator extension (#19455) - Fix Toggle Grayscale exstension (#19236) - Add unix-timestamp-converter extension (#18949) - Update parcel extension (#19466) - Fix Slack emoji search missing scope error - resolves #19441 (#19447) - feat: add Thena MCP entry to official entries (#19379) - Update Ext/Window Sizer (#19459) - [2FA Directory] filter by category (like the Website) + modernize to use latest Raycast config (#19454) - Update CODEOWNERs - Update todoist extension (#19309) - Update CODEOWNERs - [git-repos] Fix issue with the path of the repository (#19440) - Folder search fallback bug fix (#19449) - Update CODEOWNERs - Update CODEOWNERs - Update parcel extension (#19356) - Add fisher extension (#19213) - Update CODEOWNERs - Fix: React Rules of Hooks violation in New Tab command (#19384) - Docs: update for the new API release - Update prompt-stash extension - increase character limit and refactor validations (#19428) - Update stock-tracker extension (#19424) - feat(deepcast): Return to root state preference (#19430) - Update subwatch extension (#19433) - Update CODEOWNERs - Update linkding extension (#19436) - Update media-converter extension (#19385) - Update CODEOWNERs - [Dock] add MenuBar Item + add metadata image + Modernize (#19393) - feat: add Grafana MCP to registry (#19240) - Major improvement to Elgato Key LightsElgato enhancements (#19374) - Update anytype extension (#19418) - Update CODEOWNERs - feat(preferences): Option to Close Raycast After Translation (#19386) - Update mullvad extension (#19382) - Update CODEOWNERs - Update CODEOWNERs - Update stock-tracker extension (#19411) - Update t3-chat extension (#19412) - Update CODEOWNERs - Add Secret Browser Commands extension (#19396) - Update CODEOWNERs - Update linkding extension (#19395) - Update sql-format extension (#19398) - Update zeabur extension (#19413) - Update `Google Books` extension - feat: filter results by category, use `useFetch` for caching + docs: add CHANGELOG + modernize: use latest Raycast config (#19414) - Update Ext/window sizer (#19416) - Update CODEOWNERs - Ability to copy song\'s artist and title (#19368) - Update CODEOWNERs - DEVONthink 4 (#19375) - Add position-size-calculator extension (#19123) - Update CODEOWNERs - Add ratingsdb extension (#19298) - Update Ext/window sizer (#19348) - Update `ClickUp` extension - choose status from Dropdown in \'capture\' (close #19331) + update README (#19370) - Update Extension: Easy New File (#19364) - Updated openpgp version (#19367) - Update CODEOWNERs - Add Claude Sonnet 4 (#19362) - Update CODEOWNERs - Add paste-from-kindle extension (#19275) - Update CODEOWNERs - Ext/appcleaner (#19355) - Update prism-launcher extension (#19346) - Update CODEOWNERs - Update aws extension (#19347) - Update 1bookmark extension (#19350) - Update instagram-media-downloader extension (#19360) - Docs: update for the new API release - Antinote: Support for Setapp version (#19345) - feat(ci): comment when changelog missing (#19305) - Update CODEOWNERs - Update jenkins extension (#19286) - Update prism-launcher extension (#19330) - Docs: update for the new API release - Update downloads-manager extension (#19340) - Update CODEOWNERs - Add open-gem-documentation extension (#18998) - Update miro extension (#18702) - Fix open with IINA action (#19251) - Update CODEOWNERs - Add notes limit for AI usage (#19332) - Update CODEOWNERs - added searching by permissions (#18817) - Update CODEOWNERs - Add Keka extension (#19326) - Updated the Prisma MCP server entry. (#19334) - Update CODEOWNERs - Add AI Budget Tools, Enhanced Natural Language Queries, and Bug FixesF/raynab ai (#18611) - Add azure-icons extension (#19224) - Update CODEOWNERs - Update spotify-player extension (#18815) - Update CODEOWNERs - Update Credits for One Thing Extension (#19303) - Ext/penflow ai (#18799) - Docs: update for the new API release - Update clarify extension (#19222) - Update CODEOWNERs - Add grammaring extension (#19220) - Update CODEOWNERs - Add instagram media downloader extension (#19191) - Add paperless-ngx MCP server entry to the registry (#19300) - Update cloud-cli-login-statuses extension (#19284) - [Dropover] Fix special characters in filenames and update docs (#19318) - [Rebrandly] Update Links + Modernize (#19319) - Update Ext/window sizer (#19316) - Update CODEOWNERs - Update CODEOWNERs - Update brand-fetch extension (#19012) - Update CODEOWNERs - Update prism-launcher extension (#19117) - feat(superwhisper): add search history (#18810) - Add hammerspoon extension (#18922) - MCP: Fix lint issues (#19310) - Added the Shopify Dev MCP server (#19307) - Update CODEOWNERs - Update obsidian-tasks extension (#19151) - Add untis extension (#18735) - Update curl extension (#18931) - Dovetail extension: Pagination with query filtering (#19163) - Update CODEOWNERs - Fix tldraw project URLs (#19291) - Add Claude PR Assistant workflow (#19292) - Fix link to Smithery (#19285) - Update CODEOWNERs - Add rae-dictionary-raycast extension (#19171) - Supahabits: New command goals (#19282) - [Say] Routine maintenance (#19283) - Update CODEOWNERs - Update t3-chat extension - add beta checkbox (#19133) - Add Safari command to close other tabs (#19280) - When PRs are marked as ready for review, auto assign to Per (#19281) - Update CODEOWNERs - Add `Creem` extension - List,Create Products + List Payments (#19205) - Update CODEOWNERs - ✨ Add frecency sorting to gitmoji (#18974) - Update Ext/window-sizer (#19234) - Apple Mail add new command and AI tool (#19228) - Update `Unkey` extension - Modernize + Migrate broken endpoints to new ones to prevent crash (#19247) - Update Markdown Codeblock (#19271) - Update polymarket extension (#19273) - Update 1bookmark extension (#19255) - Update `cPanel` extension - Modernize + Manage API Tokens (create, revoke) + new function wrapping native `fetch` (#19274) - Init apify mcp server (#19193) - Update granola extension (#19215) - Added the Prisma MCP server (#19201) - Add Zeabur official MCP server to registry (#19217) - Update CODEOWNERs - Add are-na extension (#18646) - Update CODEOWNERs - Add slack-summarizer extension (#19032) - Update nostr extension (#19209) - Update CODEOWNERs - Update paperless-ngx extension (#19197) - Update CODEOWNERs - Add tableau-navigator extension (#19086) - Update CODEOWNERs - MCP: fix spawn ... ENOENT issue (#18399) - Update CODEOWNERs - Add quikwallet extension (#19047) - [Markdown Navigator] Remove duplicate files (#19208) - [Unifi] Remove outdated files (#19207) - [Trek] Remove outdated files (#19211) - [Expo] Remove duplicate files (#19210) - Update CHANGELOG.md (#19227) - Update danish-tax-calculator extension (#19200) - Bot: Only allow the OP to close the issue with a comment (#19196) - Docs: update for the new API release - Update raycast-icons extension (#18682) - [Sentry] Show projects for non US Sentry orgs (#18758) - Update package.json (#19195) - Update CODEOWNERs - Danish Tax Calculator (#19194) - feat: add Nuxt official MCP server to registry (#19034) - Update zen-browser extension (#19013) - Update CODEOWNERs - Add video-converter extension (#19030) - Update CODEOWNERs - Update polymarket extension (#19089) - Add wp-cli-command-explorer extension (#19063) - update extension raycast-gemini (#19021) - Update CODEOWNERs - Add smallpdf extension (#19041) - Update coin-caster extension (#19166) - Update CODEOWNERs - Update vuejs-documentation extension (#19072) - Update CODEOWNERs - Update qrcode-generator extension (#18792) - Update CODEOWNERs - add(KDE Connect): KDE Connect in Raycast (#18928) - Update CODEOWNERs - Add shell-alias extension (#19028) - Update lift-calculator extension (#19118) - Update servicenow extension (#19148) - Fix request loops (#19143) - Fixing two super small typos on the readme for the Obsidian plugin (#19139) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Clockify Extension: UX Improvement for "Start new Timer" functionality (#19026) - Update CODEOWNERs - Add setlist-fm extension (#19119) - Update zerion extension (#19132) - Update CODEOWNERs - Gitlab Extension: My merge requests & label based filtering (#19007) - Update CODEOWNERs - Add file-organizer extension (#18877) - Update CODEOWNERs - Update `Two-Factor Authentication Code Generator` - Rename Codes + Modernize + Add README (#19019) - [NixPkgs Search] Fetch version number from NixOS/nixos-search repo and compose url dynamically (#19025) - Update flibusta-search extension (#19131) - Update omnifocus extension (#19024) - Update tidal-controller extension (#18437) - Update CODEOWNERs - Add Mac network location changer (#18961) - LoL Esports AI tools (#18563) - Update servicenow extension (#18834) - Update at-profile extension (#18554) - Update shopify-theme-resources extension (#18991) - [Image Modification] Add support for QSpace Pro and ForkLift (#19108) - Update CODEOWNERs - Update kill-node-modules extension (#19039) - Update CODEOWNERs - Add grok-ai extension (#18566) - Update CODEOWNERs - Add subwatch extension (#18929) - Ente Auth - fix preferred values (#19029) - Update README.md (#19106) - Update CODEOWNERs - Update arc extension (#19062) - TickTick support AI Extension (#17531) - Update CODEOWNERs - Add domain field to fastmail-masked-email extension (#19066) - Apple Mail: Fix OTP codes across multiple mail accounts (#19033) - Update hardcover extension (#19065) - Update how-long-to-beat extension (#19042) - Update dovetail extension (#19102) - Update daily-sites extension (#19097) - Update Ext/window sizer (#19103) - Update index.tsx (#19067) - Docs: update for the new API release - Docs: update for the new API release - Update OpenVPN description to reflect recent changes (#18788) - Update CODEOWNERs - Add raycast-zoxide extension (#18908) - Update mermaid-to-image extension (#18975) - Update CODEOWNERs - fix(docs): mcp incorrect home page link (#19045) - Add search-domain extension (#18837) - Update CODEOWNERs - Add selfhst-icons extension (#18904) - Update CODEOWNERs - Update CODEOWNERs - Add option to automatically create labels in Todoist quick add command (#18892) - Add daily-sites extension (#18763) - Update CODEOWNERs - MCP Registry: Initial commit (#19015) - Docs: update for the new API release - feat(font-search): add postscript names menu (#19003) - Messages Paste OTP Regex Update (#18896) - Update Ext/window sizer (#19017) - Update CODEOWNERs - Add lipsum extension (#18784) - adding needed changes (#18987) - Update CODEOWNERs - feat: Rename NuxtUI extension to just Nuxt (#17887) - Update CODEOWNERs - [beszel-extension] Added AI tools for interacting with beszel (#17790) - Update CODEOWNERs - Update at-profile extension (#18881) - Update CODEOWNERs - Add flibusta-search extension (#18260) - Update CODEOWNERs - Update doge-tracker extension (#18950) - Update CODEOWNERs - Update CODEOWNERs - Update raycast-ollama extension (#18910) - feat(download-manager): add reload action (#18822) - Add `Name.com` extension - View Account Balance + View Domains + View DNS Records + Delete DNS Record (#18982) - Update CODEOWNERs - DeepWiki extension (#18804) - Update CODEOWNERs - add primary action switch to `one-time-password` (#18800) - Update google-chrome extension (#18794) - Update Ext/window sizer (#18988) - Update Ext/surge outbound switcher (#18989) - Update CODEOWNERs - Update prompt-stash extension (#18887) - Add geoping extension (#18957) - Update CODEOWNERs - Update migadu extension (#18930) - Update anytype extension (#18993) - Update CODEOWNERs - Add cocoa-core-data-timestamp-converter extension (#18656) - Add macports extension (#18773) - Update CODEOWNERs - Things - Set Reminders in Today and Upcoming (#18771) - Update git-assistant extension with rewrite of search git repositories command (#18948) - Update Ext/window sizer (#18963) - Update CODEOWNERs - Update meme-generator extension (#18844) - Update granola extension (#18972) - Update CODEOWNERs - Update package.json (#18970) - Update granola extension (#18915) - Update WIP extension (small typo fix) (#18962) - Docs: update for the new API release - Update CODEOWNERs - Update raindrop-io extension (#18882) - Update dust-tt extension (#18942) - Update Ext/window sizer (#18945) - Update CODEOWNERs - [Stripe] Fix "Open in Stripe Dashboard" action adding extra leading slash (#18953) - Update archiver extension (#18685) - Update CODEOWNERs - Folder Search Improvements (#18838) - Added "toggle connection" to tailscale extension (#18409) - Update esports-pass extension (#18920) - Update f1-standings extension (#18876) - Update CODEOWNERs - Add thock extension (#18618) - Update CODEOWNERs - Add tana-paste extension (#18355) - Update CODEOWNERs - Update granola extension (#18883) - Update CODEOWNERs - Update T3 Chat - new models (#18902) - Update draft-email.ts (#18895) - Update CODEOWNERs - Add zero extension (#18616) - [Apple Intelligence] Add localization (#18593) - Update research extension (#18769) - Update dolar-cripto-ar extension (#18873) - Update CODEOWNERs - [Doppler] Update doppler-share-secrets extension (#18523) - Update CODEOWNERs - Add barcuts-companion extension (#18737) - Update CODEOWNERs - New extension: Granola AI Meeting Notes (#17618) - [Spotify Player] Enable AI interaction with your queue (#18693) - Docs: update for the new API release - feat: replaced Exivo extension iconm due to trademark restrictions (#18868) - Make some extensions available on Windows (#18869) - Update animated-window-manager extension (#18865) - Update lingo-rep-raycast extension (#18721) - Update ugly-face extension (#18866) - refactor: respect system appearance (#18856) - Apple Mail: Paste latest OTP code (#18657) - Update CODEOWNERs - Add superhuman extension (#18391) - Update CODEOWNERs - Add animated-window-manager extension (#18712) - Update homeassistant extension (#18234) - Update CODEOWNERs - Update swift-command extension (#18761) - Update CODEOWNERs - Add tautulli extension (#18023) - Update CODEOWNERs - Add qutebrowser-tabs extension (#18694) - fix: update description in dia extension. (#18853) - Update CODEOWNERs - fix: fix not find zsh file (#18854) - Add nusmods extension (#18757) - Weather: Fix icon for Fog (#18849) - refactor: support more offset (#18850) - refactor: replace keystroke with key code (#18848) - Update origami extension (#18846) - Update system-information extension (#18783) - FIX code extraction imessage-2fa extension (#18836) - PurpleAir Extension Improvements: Multiple Sensor and Nearest Sensor (#18716) - Update f1-standings extension (#17861) - YoutubeMusic: Fixed Issue - remove Like and Like Songs (#18631) - [YubiKey Code] - Replace usage of WindowManagement.getActiveWindow with getFrontmostApplication (#18831) - Update CODEOWNERs - Add gotify extension (#18679) - Ext/window sizer fix screenshots and README (#18827) - Update CODEOWNERs - Add Verification/Sign-in Link Detection (#18695) - Dia (The Browser Company) extension (#18667) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Add cloud-cli-login-statuses extension (#18058) - [YubiKey Code] - Sort accounts by usage (#18781) - [hacker-news-top-stories] Add notification support (#18798) - Update threads extension (#18813) - Update Ext/window sizer (#18814) - Update CODEOWNERs - Revert "Update bmrks extension (#18539)" (#18811) - update extension raycast-gemini (#18666) - Update tinyimg extension (#18720) - Update xcode extension (#18746) - Update 1bookmark extension (#18664) - Update CODEOWNERs - Update aws extension (#18650) - [Things] Fix menu bar `Complete` action (#18641) - Update CODEOWNERs - Add nostr extension (#18637) - Docs: update for the new API release - Update CODEOWNERs - Add window-sizer extension (#18635) - Update CODEOWNERs - Add hardcover extension (#18628) - Update CODEOWNERs - Update quit-applications extension (#18617) - Update CODEOWNERs - Mark all extensions which uses AppleScript as macOS only (#18742) - Slack: enhance Search Emojis command with AI-powered suggestions (#18625) - Update CODEOWNERs - Update zen-browser extension (#18751) - Made use of Search API optional (#18410) - Update CODEOWNERs - Add magic-home extension (#18219) - Update CODEOWNERs - Add ton-address extension (#18683) - Update svelte-docs extension (#18749) - Update CODEOWNERs - Update hacker-news-top-stories extension (#18747) - Update bmrks extension (#18539) - Update CODEOWNERs - Add lookaway extension (#18589) - Update CODEOWNERs - Updating Raycast handle (#18738) - Update CODEOWNERs - Update r…
* Update cheatsheets-remastered extension - v1.1.0 release - chore: update default cheatsheets - chore(icons): improve icon matching with smart patterns - chore(icons): add icon audit script and resolve merge conflict - Merge pull request #1 from smcnab1/chore/cheatsheets-audit-2024-12-19 - chore(cheatsheets): add normalised front-matter to active cheatsheets - chore(cheatsheets): add index.json for active cheatsheets - chore(cheatsheets): archive outdated cheatsheets - chore(cheatsheets): add audit script and dependencies - chore: add github icon - perf: optimize cheatsheet count loading in repository details - fix: improve sync time display in repository manager - fix: ensure lastSyncedAt is properly updated in repository manager - feat: add Favorites filter option - fix: correct slug usage for repository cheatsheet favoriting - feat: enable favoriting for repository cheatsheets - feat: add clickable repository links - feat: add clickable GitHub links for repository files - fix: display proper repository names instead of random IDs - feat: add HTML element processing for repository markdown - cleanup: remove debug section from show-cheatsheets - feat: use custom GitHub PNG icon for repository cheatsheets - debug: add error display and data count debugging - fix: implement proper GitHub SVG icon with white tint - feat: use custom GitHub SVG icon for repository cheatsheets - feat: move sort preference to extension settings - fix: replace sort dropdown with filter dropdown in search bar - fix: ensure consistent type-specific icons and clean subtitles - feat: update filter dropdown labels for better clarity - refactor: remove redundant copy-cheatsheet command - feat: simplify cheatsheet tags with type-specific icons - feat: integrate repository cheatsheets into main cheatsheet view - feat: add sync all repositories functionality to repo manager - feat: complete file exclusion filters for repository imports - feat: complete GitHub API integration for fetching .md files - feat: complete Milestone 1.1.0 - User Repository Basics - feat: move repository description to top of metadata section - fix: use Globe icon instead of Box for public repositories - feat: improve owner profile access in repository details - fix: improve repository list icon display - feat: improve avatar display and add owner profile access - feat: add GitHub owner avatars to repository displays - feat: improve cheatsheet filtering to exclude non-cheatsheet files - feat: enhance repository details page with metadata and cheatsheet listing - feat: implement repository cheatsheet storage and content syncing - feat: integrate GitHub OAuth for repository syncing - feat: enhance repository management with GitHub integration - feat: add Repos Manager command with repository management functionality - Update CHANGELOG.md and optimise images - Remove installation script and associated media files for Cheatsheets Remastered. Update README to include a screenshot section. - Update CHANGELOG to remove Unreleased section - chore: update CHANGELOG & fix state flicker - chore: remove ESLint configuration and update Prettier settings - feat: consolidate commands and update docs - chore: Update google-webfonts & fastify sheets format - fix: Fix README, CHANGELOG & add subtitles - Add files via upload - Update README.md - Add cheatsheets-remastered extension - Update CODEOWNERs - Add invisible-text-detector extension (#20926) - Update CODEOWNERs - Add word4you extension (#20638) - Update CODEOWNERs - Add radarr extension (#20904) - Update CODEOWNERs - feat(8ball): add preference to choose default action (copy/paste) and… (#20947) - Update CODEOWNERs - Update deepwiki extension (#20955) - Update CODEOWNERs - Update dodo-payments extension (#20956) - Update vercast extension (#20838) - Update CODEOWNERs - Update search-gule-sider extension (#20911) - [Groq] model update and improvements (#20630) - Add support for password protected YubiKeys in yubikey-code (#20938) - [Time Tracking] rename in Edit Form + Modernize (#20922) - [Brand.dev] trigger search via search text (QoL) (#20944) - Update CODEOWNERs - Add unblocked-answers extension (#20696) - Update CODEOWNERs - Add chainscout extension (#20712) - Update CODEOWNERs - tabler: add download actions (#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (#20686) - Update CODEOWNERs - Add jitsi extension (#20680) - Update CODEOWNERs - Add time-calculator extension (#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (#20647) - Update CODEOWNERs - Add synology-download-station extension (#20643) - Add owl extension (#20777) - Update CODEOWNERs - Update synonyms extension (#20879) - Update scira extension (#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (#20906) - [Color Picker] Fix Convert Color command (#20913) - Update v0-by-vercel extension (#20923) - Update CODEOWNERs - Add v0-by-vercel extension (#20792) - Add `.gitattributes` & get rid of `\r\n` (#20498) - [Brand Icons] Add support for creating social badges through cross-extension (#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (#20885) - Update certificate-viewer extension (#20894) - Update CODEOWNERs - Add yap extension (#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (#20427) - Update CODEOWNERs - Add emojis-com extension (#20875) - Add dodo-payments extension (#20669) - Update CODEOWNERs - Add twingate extension (#20580) - Update CODEOWNERs - Update brave-search-with-results extension (#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (#20892) - Update image-wallet extension (#20806) - Add proton-authenticator extension (#20773) - Update CODEOWNERs - Add sharding-tools extension (#20394) - Update CODEOWNERs - Add Save Link extension (#20521) - Update CODEOWNERs - Update display-modes extension (#20260) - Update CODEOWNERs - Update craftdocs extension (#19976) - Update CODEOWNERs - Update aerospace extension (#20847) - Update aws extension (#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (#20493) - Update at-profile extension (#20853) - Update aws extension (#20856) - Update grammari-x extension (#20848) - Update preferences.md (#20855) - Update youtrack extension (#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (#20553) - Update CODEOWNERs - Add kiro extension (#20790) - Update freeagent extension (#20844) - [Badges] Add shortcut for picking logo (#20849) - Update CODEOWNERs - Update svgl extension (#20852) - Add docklock-plus extension (#20419) - Update slugify-file-folder-names extension (#20528) - Update CODEOWNERs - Add freeagent extension (#20828) - Update CODEOWNERs - Update aws extension (#20809) - Update CODEOWNERs - Add sefaria extension (#20378) - Update CODEOWNERs - Add tokenizer extension (#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (#20817) - Add ag-audioflow extension (#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (#20830) - Update CODEOWNERs - Adding new social platforms (#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (#20813) - [GitLab] Add windows support (#20824) - Update raindrop-io extension (#20820) - Update CODEOWNERs - Update timezone-buddy extension (#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (#19456) - Fix token expired auth flow in SendAI extension (#20711) - Update CODEOWNERs - Add commit-issue-parser extension (#20395) - Update CODEOWNERs - Add ozbargain-deals extension (#20288) - Update mermaid-to-image extension (#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/sammcnab/.npm/_npx/daafed3b81e85078/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/extensions/cheatsheets-remastered/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/extensions/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/node_modules/.bin:/Users/sammcnab/github/node_modules/.bin:/Users/sammcnab/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/sammcnab/.nvm/versions/node/v22.18.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/sammcnab/github/raycast-extensions/extensions/cheatsheets-remastered/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/extensions/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/node_modules/.bin:/Users/sammcnab/github/node_modules/.bin:/Users/sammcnab/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/sammcnab/.nvm/versions/node/v22.18.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/sammcnab/.nvm/versions/node/v22.18.0/bin:/opt/homebrew/opt/openjdk@17/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Applications/Wireshark.app/Contents/MacOS:/usr/local/sbin:/Users/sammcnab/.nvm/versions/node/v22.18.0/bin:/Users/sammcnab/Library/pnpm:/opt/homebrew/opt/openjdk@17/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:/Users/sammcnab/Library/Python/3.9/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:/Users/sammcnab/Library/Python/3.9/bin (#20458) - Update system-monitor extension (#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (#20558) - Update CODEOWNERs - Update wol extension (#20601) - Update CODEOWNERs - Add google-lens extension (#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (#20747) - Update visual-studio-code extension (#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (#20563) - Add dia-skills extension (#20548) - Update letterboxd extension (#20615) - end-of-life - Windows support (#20701) - Gemini/updatemodels-July (#20662) - Fix: Support currency format in transaction amount validation (#20399) - Update CODEOWNERs - feat: Update Rewind Icon (#20744) - Update CODEOWNERs - Update hypersonic extension (#20462) - Update CODEOWNERs - Update grok-ai extension (#20734) - Add network-proxy extension (#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (#20460) - Update defbro extension (#20367) - Show Artist\'s name when liking current track (#20583) - Update wechat-devtool extension (#20668) - Add character tabulation to Unicode Symbols extension (#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (#20168) - Update nusmods extension (#20625) - Update quick-notes extension (#20569) - Update CODEOWNERs - Deleted directory (#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (#20749) - Renames the extension from "hoarder" to "karakeep". (#20113) - Update pr-bot.ts (#20775) - Update CODEOWNERs - Update pomodoro extension (#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (#20221) - Update CODEOWNERs - Add VLC extension (#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (#20702) - Update Project Hub Extension - Add Recent Projects Section (#20561) - Update arc extension (#20761) - Update extension (#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (#20626) - Add `Host.io` extension - get full domain data for any domain (#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (#20502) - Update youversion-suggest extension (#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (#20357) - Deprecate Ghost Docs Extension (#20690) - Update CODEOWNERs - author update (#20705) - [Badges][Brand Icons] Bugfixes & improvements (#20545) - Update public_raycast_extensions.txt (#20688) - Update CODEOWNERs - Update pieces-raycast extension (#20296) - feat[Backstage plugin]: configurable Backstage API URL (#20398) - Update whisper-dictation extension (#20482) - Update CODEOWNERs - Update endoflife (#20651) - Update T3 chat\'s icon (#20599) - Update CODEOWNERs - feat: add windows support mymind extension (#20239) - [Mastodon] Add support for Windows (#20448) - [NeoDB] Add support for Windows (#20471) - Update CODEOWNERs - [NUSMods] Add support for Raycast Windows (#20240) - [Todoist] Windows support (#20487) - Update gdrive homepage url (#20608) - Update CODEOWNERs - Arc: Fix trying to open a tab with `open` (#20579) - Update Zerion author to original one (#20582) - Update CODEOWNERs - Update zerion author (#20581) - feat: Backstage plugin supports static token (#20383) - [groq] Remove Llama Guard 4 12B 128K (#20507) - Update CODEOWNERs - Add preference to toggle default reuse open GitHub search tab (resolves #20488) (#20489) - Add weread-sync extension (#20205) - Docs: update for the new API release - Update CODEOWNERs - Add cloudflare-email-routing extension (#20305) - Update dpm-lol extension (#20491) - macosicons: fix API error handling for non-JSON responses (#20172) - Update CODEOWNERs - [Perplexity] Add Perplexity desktop app support to extension (#20393) - Parse Zed local workspace paths from binary format correctly (#20086) - Docs: update for the new API release - Update prepare-an-extension-for-store.md (#20473) - Update wechat-devtool extension (#20406) - [Update] [IP Geolocation] Optimize extension icons (#20467) - Update CODEOWNERs - [World Clock] Avoid accessing the `.map` function on possibly undefined data (#20469) - Update CODEOWNERs - [Update] [Easy New File] Support Default Directory (#20449) - update pr merge dates (#20457) - Update grammaring extension (#20464) - [raycast2github] Fix name mapping (#20472) - Update CODEOWNERs - Add extension for opening new instances of apps (#20432) - Update CODEOWNERs - Update remove-paywall extension (#20331) - Update CODEOWNERs - Update registries to use the official npmjs registry (#20440) - Add paste-to-markdown extension (#19999) - Update CODEOWNERs - Update vscode-project-manager extension (#20446) - [Easings] Add spring animations (#20445) - Update CODEOWNERs - Update groq extension (#20439) - [Brand Icons] Use `pacote` for downloading & extracting icons (#20391) - [espanso] support import (#20400) - Update secret-browser-commands extension (#19948) - Fixing issue in ext/beehiiv (#20437) - Update CODEOWNERs - Update change-case extension (#20002) - Update ideate extension (#20063) - Update `Appwrite` extension - DB, Storage, User Enhancements (#20386) - Update `Oracle Cloud (OCI)` extension - implement provider w/ context + basic objectstorage command (#20405) - [valkey commands search] Migrate to useFetch and group the commands (#20421) - Update `Neon` extension - add project, delete projects + Modernize to use latest Raycast config (#20402) - [espanso] add binary path option (#20280) - [Larajobs] update metadata image + chore (#20417) - feat(readwise-reader:) add option to open in Reader desktop app (#20424) - Update URL unshortener (#20385) - Update granola extension (#20384) - feat(readwise-reader): add ability to include tags when saving links (#20388) - Update background-sounds (#20387) - Update ScreenOCR (#20408) - Update instagram-media-downloader extension (#20413) - Update yu-gi-oh-card-lookup extension (#20414) - Update CODEOWNERs - Add pdf-compression extension (#20194) - Update CODEOWNERs - Add control kef extension (#20127) - Update pr-bot.ts (#20376) - Update Tasklink extension (#20375) - Update CODEOWNERs - Added open-in-textmate extension (#20266) - Update CODEOWNERs - Update ente-auth extension (#20122) - [SteamGridDB] Add support for Windows (#20364) - Update CODEOWNERs - [Update] [DocSearch] Add TailwindCSS v4, Next.js, MassTransit and Pinia documentations (#20254) - Update CODEOWNERs - FocusFLOW (#20214) - Update repology-search (#20370) - Update CODEOWNERs - Add WeChat DevTool extension (#20222) - Update URL-unshortener (#20136) - [ProtonDB] Add support for Windows (#20338) - Fix GIF Search extension updates (#20360) - PR bot assignee constant (#20358) - run pr bot on ready to review (#20356) - [TourBox] Add support for Windows (#20337) - add debugging for draft pr review assigning (#20353) - Update `Name.com` extension - ✨ AI Enhancements (add 3 Tools) + Migrate API (Legacy v4 to Core v1) + Modernize (#20340) - PR bot should check PR files in existing extensions too (#20352) - Update CODEOWNERs - Add console logs to PR Bot for testing (#20351) - Add rounding-number extension (#20232) - Update CODEOWNERs - toggle-desktop-visibility for mac os 26 tahoe (#20225) - Update zipline extension (#20336) - Update CODEOWNERs - Update slack extension (#19219) - Update FHIR extension (#20329) - Update CODEOWNERs - Update CODEOWNERs - [Easy Dictionary] Remove the unused icon file (#20333) - Update aerospace extension - Changed the icon to the new design. (#20342) - things: handle JXA scripts with no result (#20341) - Update trenit extension (#20215) - Apply "AI Extension" label for new extensions as well as existing ones (#20306) - Update `Short.io` extension - `search-links` now allows you to view links independent of default + fix: `shorten-link-with-domain` persists Default Domain properly (#20327) - Create new message when no number match found (#20326) - Update CODEOWNERs - Support for OTP codes that include a hyphen (#20236) - Update anytype extension (#20227) - Update CODEOWNERs - Update ray-boop extension (#20231) - Update easydict extension (#20190) - Update CODEOWNERs - Add quick-jump extension (#20050) - Update CODEOWNERs - Add zipline extension (#20157) - Update CODEOWNERs - Add ship24-client extension (#20170) - Update Raycast X link in README (#20318) - things: improve project detection to not depend on existing projects (#20300) - noteplan 3 | fix #20116 Daily plan not displaying (#20308) - Update CODEOWNERs - feat(notion): show properties in page preview (#20111) - Update CODEOWNERs - fix: typescript error handling (#20298) - Update spotify-player extension (#20178) - Update CODEOWNERs - New Extension : Percentage Calculator (#20195) - Update CODEOWNERs - Update g-cloud extension (#20210) - Update Lightshot Gallery extension (#20246) - [HoudahSpot Search] fix fallback text not used (#20295) - Update CODEOWNERs - Update browser-bookmarks extension (#20187) - Add trip search command to Norwegian Public Transport extension (#20226) - Update CODEOWNERs - Add FHIR extension (#20163) - Update CODEOWNERs - Update xecutor extension (#20159) - Add climbing-grade-converter extension (#20134) - Update Cider extension (#20241) - Update CODEOWNERs - change author (#20289) - things: enhance error reporting + troubleshooting hints (#20224) - [Update] [Hide Files] new icon style (#20253) - [Update] [Bing Wallpaper] Add refresh interval (#20249) - Update CODEOWNERs - [Update] [Browser tabs] new icon style (#20251) - [Update] [Maven Central Repository] new icon style (#20252) - Add clipyai extension (#19740) - Update CODEOWNERs - Update CODEOWNERs - Update `Larajobs` extension - filter by Type, Salary, Tag (#20286) - [zed-recent-projects] Adds a preference checkbox to use the Zed development Sqlite database (#19803) - Add Metabase AI Tools (#17673) - Update CODEOWNERs - Add squeeze extension (#20083) - Update CODEOWNERs - Update CODEOWNERs - Add `Upstash` extension - List Redis Databases, View Details & Usage, Create Database + List Vector Indices, Create Index, Delete Index (#20274) - Update `HoudahSpot Search` extension - fix: text passed as "undefined" when Argument is empty in fallback mode + add `metadata` image + Modernize + `chore` (#20250) - [Spaceship] Toggle Domain Transfer Lock + Get Domain Auth Code + Add AAAA, CNAME DNS Records (#20243) - Update `Keygen` extension - List & Add Products + Color License based on Status + show: Expiry, Scheme, Valid in License (#20228) - Update `Sanity` extension - update logo + modernize (#20220) - Update CODEOWNERs - Update `MailerSend` extension - View API Quota + Filter Domain Activity by Type + View, Rename, Toggle (Pause/Unpause) Tokens (#20197) - [Say] Fix duplicate lines in Configure Say command (#20245) - [Update][Are.na] show status accessory w/ color in search channels + remove auto-generated types (#20265) - Update CODEOWNERs - [ccusage]: fix(#20056) resolve custom npx path issue in ccusage CLI commands (#20262) - update[send-ai]: added new features in the extension (#20273) - [Image Modification] Bug Fixes (#20282) - Update curl extension (#20284) - Update f1-standings extension (#20217) - Update CODEOWNERs - Add csfd extension (#18344) - Docs: Update the utils docs - Update CODEOWNERs - Add rewiser extension (#20023) - Update `Resend` extension - Update Icons + Modernize to use latest config + chore: remove `node-fetch`, `cross-fetch` (#20179) - Update CODEOWNERs - Major update to Kaleidoscope extension, see README and CHANGELOG. (#20076) - [catppuccin] update data source (#20216) - update extension raycast-Gemini - safety-setting (#19277) - Update CODEOWNERs - Add ray-boop extension (#20108) - Update CODEOWNERs - [Spotify Player] Fix for Search command not working issue (#20183) - Update CODEOWNERs - Add new raycast extension - SendAI (#20104) - things: fix project update actions (#20161) - Update `Wave` extension - Add new customers through `Form` + Remove customers after confirming (`Alert`) + Move "Business Customers" to its own file + Modernize to latest config (#20185) - Spotify Lyric Finder Improvements (#20154) - Update CODEOWNERs - Add certificate-viewer extension (#20110) - Update CODEOWNERs - Add markdown-preview extension (#20052) - Update CODEOWNERs - Add somafm-for-raycast extension (#20027) - feat: add getThumbnailUrl to optimize image loading and update components to use it (#20177) - Update CODEOWNERs - feat: add resend wallpaper extension (#20169) - Update CODEOWNERs - Update `Polar` extension - View Products and their Media + Optionally BYOK + Remove `node-fetch` (#20156) - Update CODEOWNERs - Add Instant Translate feature to Google Translate extension (#20093) - Add quick-quit extension (#19869) - extensions/messages: docs: add note about automation permissions for sending messages (#20148) - Update `Doppler` extension - View Logs of a Config + "Open In Doppler" component (#20164) - Try/catch AI label PR bot (#20165) - Auto-label AI extensions in PRs (#20160) - Update CODEOWNERs - Update apple-notes extension (#19613) - Update CODEOWNERs - Add roblox-creator-docs extension (#20024) - Update music extension (#19654) - Update CODEOWNERs - Update apple-notes extension (#20138) - Update zeabur extension (#20140) - Update `radicle` extension - remove need for `radicle-httpd` (#20141) - Update CODEOWNERs - Update spotify-player extension (#19950) - Update CODEOWNERs - Add windsurf extension (#20046) - Add stacks extension (#19863) - Update CODEOWNERs - Add markdown-styler extension (#19967) - Update CODEOWNERs - Update CODEOWNERs - Update `Pocket` extension - add an Alert in Show informing users to Export + required url in create (#20126) - Update `Obsidian Tasks` add `preference` to show description in details markdown (List Tasks) (#20098) - [create-link]: Add customizable templates and tab selection feature (#20120) - Update preferences.md (#20131) - Update CODEOWNERs - [Get SSH Keys] OpenInFinder + Key as Icon (#20117) - No `-lossless` flag on `dwebp` (#20125) - feat: add Gen-PDF MCP Server to the registry (#19924) - Update CODEOWNERs - Update CODEOWNERs - Add tidal extension (#19784) - Add image-shield extension (#19969) - Update CODEOWNERs - Update cobalt extension (#20090) - Update sequoia-tiling extension (#20101) - Update lookaway extension (#20092) - Update media-converter extension: proper user preferences (#20081) - docker,dockerhub,drafts,ensk-is,seo-lighthouse: Update to use newer version of `tar-fs`. (#20068) - Update CODEOWNERs - Add Default Formality Configuration Option (#19656) - Update CODEOWNERs - Add sidecar extension (#19980) - [GitLab] Group milestones on issue and mr create form (#20072) - Update CODEOWNERs - Update CODEOWNERs - Update `Short.io` extension - Add Domain inside `shorten-link-with-domain` + Modernize extension to use latest Raycast config (#20070) - fix: replace youtube-transcript lib (#20080) - Add sequoia-tiling extension (#19877) - Update CODEOWNERs - Update github extension (#20073) - Update CODEOWNERs - Support device name for audio device selection (#19995) - New: Password.Link Extension (#19996) - Update CODEOWNERs - Add clipmate extension (#19958) - Update CODEOWNERs - Add regex-batch-renamer extension (#19849) - [Bitwarden] Catch OTPAuth initialization (#20064) - Update CODEOWNERs - Update quick-notes extension (#19965) - Update linkding extension (#19756) - Update media-converter extension (#20061) - Update CODEOWNERs - Update docker extension (#19817) - [ChatGPT Quick Actions] API pricing fix (#19964) - Update raycast-zoxide extension (#20032) - Update whisper-dictation extension (#19989) - Browser Bookmarks: Add support for Dia and Ghost Browser (#19971) - Update CODEOWNERs - Add duan-raycast-extension extension (#19765) - Update CODEOWNERs - Add ideate extension (#19791) - Update CODEOWNERs - Update transmission extension to fix error on showing a list (#19809) - Update CODEOWNERs - Update Markdown to ADF library (#19972) - Update CODEOWNERs - DotMate - Raycast Extension for Dotfile Management (#19819) - Update media-converter extension: better installation (#19808) - Update wp-bones extension (#19953) - Update CODEOWNERs - Update CODEOWNERs - Update project-code-to-text extension (#19921) - Add `MailerSend` extension - View Domains, View Domain Activity (24 hours), View Templates, View Users (#20022) - Update CODEOWNERs - Add psn extension (#19914) - Update CODEOWNERs - Add minio-manager extension (#19906) - Fix Slack extension YAML (#19865) - Better handling of cloc command to show statistics (#20040) - Aerospace - add monitor name to switch apps action (#19899) - Updated Font Awesome version, added support for more icon types (#19963) - Update CODEOWNERs - Update translate extension (#19933) - Update openrouter-model-search extension (#20028) - [ccusage] Hotfix critical React Hooks Rules violations and improve loading states (#20033) - [Google Translate] Show auto detected language in Quick Translate (#20036) - [Bitwarden] fix: check if user can access BrowserExtension (#20029) - Update CODEOWNERs - Update tailwindcss extension - add default action preference to `Search Colors` command (#19707) - Add claude-code-cheatsheet extension (#19828) - Update Repository Manager (#19994) - [ccusage] Major v2.0.0 upgrade: AI extension support and architecture refactor (#20019) - [Google Translate ] fix quick translate with Chinese auto detected language (#19991) - Update CODEOWNERs - Add redirect-trace extension (#19854) - Update workouts extension (#20018) - Update raycast-wallpaper extension (#20017) - Fix Slack powershell script (#20014) - Linear: Fix SVGs to include xmlns (#20012) - Feat: Add permalink to Dub Link page (#20004) - [Google Translate] Improve UX for quick language change in Translate Form (#19990) - Update react-native-directory extension (#19992) - [Bitwarden] Catch authenticator initialization error (#19997) - [Dribbble, Uplabs] Remove Dribbble and Uplabs extensions (#19913) - Update youtrack extension (#19983) - Fix Slack extension: search messages from specific user (#19731) - [Daminik] use URL instead of Slug in Preferences (#19934) - Docs: update for the new API release - Update youtrack extension (#19925) - Update workouts extension (#19981) - [Update] [Raycast Wallpaper] More Auto Switch Interval (#19952) - [Update] [Easy New File] Supports Form layout (#19954) - [Google translate] fix Chinese and some other languages (#19957) - [Update] [Life Progress] (#19959) - Update compressx extension (#19966) - Patched breaking API change (#19974) - Update `Coolify` extension - fix: Unable to delete Databases in `Resources` + view `ENVs` of **applications** and **services** (#19940) - [MyIdlers] - Domain, Shared, Reseller and Server are now split into "Active" and "Inactive" sections (#19968) - [Brand Icons] Routine maintenance (#19912) - Update CODEOWNERs - [ccusage] Clean up unused dependencies and exports (#19916) - Add kusto-reference extension (#19836) - Update CODEOWNERs - Make sure extensions use official npm registry (#19911) - Update safari extension (#19829) - Update CODEOWNERs - Housekeep Knip config (#19903) - [Confluence Search] Use the npm official registry (#19901) - Update CODEOWNERs - [ClickUp] persist priority on create (super minor fix) + add some missing icons (#19904) - Update CODEOWNERs - [Gitlab] Add issue filter on issues menu item (#19769) - [Google Translate] add all the languages from google translate, remove flags (#19905) - Release more extensions on Windows (#19896) - Update `SolusVM 2` extension - Reinstall Server + View,Create,Remove Snapshots + Invite,Remove Members (#19900) - Update CODEOWNERs - Add openrouter extension (#19831) - Update CODEOWNERs - Add ccusage extension (#19792) - Update CODEOWNERs - Add open-in-trae extension (#19705) - Update CODEOWNERs - [dust-tt] update auth provider (#19783) - Update CODEOWNERs - Update CODEOWNERs - Update aws extension (#19476) - [Promptlab] Use the npm official registry (#19895) - Update CODEOWNERs - Add loan-calculator extension (#19781) - Update CODEOWNERs - Update CODEOWNERs - [Markdown to Plain Text] Use the npm official registry (#19894) - Update Wifi Password Reveal (#19402) - Update CODEOWNERs - [Bitbucket Search] Use the npm official registry (#19891) - Update CODEOWNERs - [Akkoma] Use the npm official registry (#19893) - Update CODEOWNERs - Update CODEOWNERs - [Find OpenGL Enum] Use npm official registry (#19889) - Add microblog extension (#19777) - Update CODEOWNERs - Add beehiiv extension (#19770) - Update CODEOWNERs - Preview visibility, toast fix, and png w/ background option (#19855) - Folder search/drag n drop (#19841) - Update slugify-file-folder-names extension (#19850) - Update `NameSilo` extension - View Contact Profiles + View & Configure Email Forwards + Modernize (#19871) - Ext/popcorn: Fix stream selection bug, and added more support for other addons (#19873) - Update zeabur extension (#19881) - Update CODEOWNERs - Adds glossary extension (#19502) - Update flush-dns extension (#18964) - Update CODEOWNERs - Add geoconverter extension (#19759) - Add Keboola MCP Server to the Model Context Protocol registry (#19753) - Update CODEOWNERs - Update CODEOWNERs - Bitbucket feature (#19739) - Add nyc-train-tracker extension (#19185) - Update CODEOWNERs - Add popcorn extension (#19823) - Update google-scholar extension (#19796) - Update quick-git extension (#19778) - Update Harpoon extension (#19798) - Update instagram-media-downloader extension (#19789) - Update mozilla icon (#19801) - [Xcode] AI Tools & Improvements (#17875) - Update CODEOWNERs - Add `Keygen` extension - View Licenses & Policies + Create Licenses & Policies (#19802) - Update CODEOWNERs - [ClickUp] allow creating task w/o priority + add OpenInClickUp Action (#19787) - Update `Mixpanel` extension - Support All Server Regions + Update Logo + better Error Handling + Modernize (#19821) - Update CODEOWNERs - Add bookmark/save to queue for Matter (#19434) - Update wip extension (#19837) - Update CODEOWNERs - Update Okta search extension (#19825) - Add image-search extension (#19672) - Update CODEOWNERs - Add chronometer extension (#19295) - Add url-editor-pro extension (#19661) - Update CODEOWNERs - Add shutdown-timer extension (#19650) - Docs: update for the new API release - Docs: Update the utils docs - Update CODEOWNERs - Add AWS Audit Manager and update Amazon Bedrock details in aws-servic… (#19685) - Add Creation Date option for sorting (#19682) - Add clipboard-sequential-paste extension (#19679) - Update CODEOWNERs - Add open-docker extension (#19671) - Cleanup unused lockfile (#19659) - [Hue] Fix certificate handling (#19658) - chore: update icon path in the README.md file (#19773) - Update CODEOWNERs - Update CODEOWNERs - Add `Dokploy` extension - Add Instances then manage services and docker containers (#19668) - Update `Geist UI Components` extension - Modernize + Update Logo + Add Hooks, metadata images (#19775) - add ai incident search to incident.io extension (#19631) - [Hookmark Search] Fix bookmark properties encoding (#19543) - Updated to new version extension (#19358) - Update dexcom-reader extension (#19642) - Add priority levels mapping (#19771) - Docs: update for the new API release - Expected Delivery Date Formatting Overhaul (#19649) - Update `Brand.dev` extension - add fonts, stock, email, phone + remove "verified" + change Browser Action + Modernize (#19645) - Update CODEOWNERs - [WP Plugins] add pagination + add shortcut to "Download" + Modernize (#19683) - Fix search authentication errors - resolves #19400 (#19450) - Update CODEOWNERs - docs: update Shadcn Vue icon path (#19639) - Update shadcn-vue extension (#19637) - Update lucide-icons extension (#19763) - fix: only index field must be required others if not input should fall to defaultValue (#19747) - Update CODEOWNERs - chore: update firecrawl version + add integration parameter (#19725) - Update finderutils extension (#19751) - Update google-scholar extension (#19761) - Docs: update for the new API release - Update web3bio extension (#19629) - [browser-tabs] Fix for Duplicate Tabs Issue (#19665) - [Folder-Search] - Major Improvements: Bug Fixes, Error Handling, Performance (#19663) - Update CODEOWNERs - Update zen-browser extension (#19611) - Fix: Add latest OpenAI models and consolidation system (#19592) - Update CODEOWNERs - Add yomicast extension (#19573) - Add chhoto-url extension (#19567) - [Laravel Herd] (#19733) - Update CODEOWNERs - Update audio-device extension (#19074) - Update code-saver extension (#19687) - Update grammaring extension (#19681) - Update `HetrixTools` extension - Add Status Pages command + modernize to use latest config (#19728) - Update vmware-vcenter extension (#19716) - Update CODEOWNERs - Add force kill to kill-process extension (#19607) - Update docker extension (#19698) - Update CODEOWNERs - Update CODEOWNERs - Add quick-git extension (#19405) - Add copee extension (#19526) - Update CODEOWNERs - Add rize-io-sessions extension (#19677) - Update CODEOWNERs - Add advanced-speech-to-text extension (#19517) - Update CODEOWNERs - Clipsign - extension for creating, saving, and instantly copying your e‑signature (#19453) - Update CODEOWNERs - Update `HubSpot` extension - You can now `copy` some properties of a Contact through new "Copy to Clipboard..." submenu (#19652) - Update project-code-to-text extension (#19676) - Update CODEOWNERs - Update `Country Lookup` - Offline Support since API is now limited + Modernize (#19693) - Update quick-event extension (#19258) - Update CODEOWNERs - Update prism-launcher extension (#19601) - Fix obsidian-raycast bug on note creating (#19635) - Update CODEOWNERs - Add whisper-dictation extension (#19532) - Update CODEOWNERs - Updated the URL for the Prisma MCP server (#19472) - Add open-latest-url-from-clipboard extension (#19624) - Update CODEOWNERs - Update shadcn-ui extension (#19525) - Update CODEOWNERs - Update CODEOWNERs - Improve Flight Details Layout: Combined Times & Side-by-Side Terminal/Gate (#19521) - Add analog-film-library extension (#19514) - Update CODEOWNERs - Add volumio-control extension (#19504) - Update CODEOWNERs - [Color Picker] Fix returned value from callback-launch command (#19619) - [GitHub] Add preference to exclude repositories from other commands (#17468) - Update CODEOWNERs - Add diff-view extension (#19463) - Add kagimcp server (#19568) - [Bitwarden] Fix Authenticator "TypeError: t is not a function" (#19616) - Include Outlook in app description (#19594) - Update CODEOWNERs - add Open Documentation (#19500) - Update sportssync extension (#19483) - Update CODEOWNERs - macosicons: include user applications (#19482) - [Brand Icons] Add compatibility with Simple Icons 15 (#19478) - Docs: update for the new API release - Update prism-launcher extension (#19599) - [United Nations] Maintenance & fix news format (#19584) - Update prism-launcher extension (#19598) - Update CODEOWNERs - Apple reminders/show which list reminder is from (#19343) - Update battery-optimizer extension (#19190) - Update awork extension (#19558) - Update CODEOWNERs - feat: Add history command (#19589) - Update system-monitor extension (#19595) - Update Ext/window sizer (#19580) - Enhanced Date Format Support (#19539) - [TRELLO] Allow for unassigned card and update dependencies (#19519) - Update `Oracle Cloud` extension - (Confirm and) Terminate Instance + Add "Open in OCI" `Action` (#19534) - Update Ext/window sizer (#19541) - Update `Cloudflare` extension - Add A,AAAA,TXT DNS Records + Delete any DNS Record + Improve error handling function + Modernize extension to use latest Raycast config (#19552) - Update wp-cli-command-explorer extension (#19559) - Update CODEOWNERs - Update reverso-context extension (#19452) - Update CODEOWNERs - Add project-code-to-text extension (#18996) - Update CODEOWNERs - Add project-hub extension (#19293) - Update CODEOWNERs - Update GemOptions.tsx (#19136) - Update checksum (#19492) - Update CODEOWNERs - Update united-nations extension (#19528) - Update downloads-manager extension (#19407) - Update CODEOWNERs - Move `josephlou` to past contributors (#19522) - Update aave-search extension (#19366) - Update CODEOWNERs - Add dexcom-reader extension (#19141) - Update CODEOWNERs - Update digitalocean extension addressing issue displaying automated deployments (#19432) - Update Fabric extension - location and tag selection (#19470) - Wikipedia language improvements (#19473) - Update Ext/window-sizer (#19499) - Update CODEOWNERs - Add slugify-file-folder-names extension (#19422) - Update messages extension (#19426) - macosicons: fix lint (#19497) - Update CODEOWNERs - Add google-scholar extension (#19392) - Update CODEOWNERs - Add `SolusVM 2` extension - Manage Servers + View,Update Members + View,Create API Tokens & Settings + View ISOs (#19486) - Update CODEOWNERs - feat: add Anytype MCP Server to the registry (#19506) - Add `Appwrite` extension - Add multiple projects and view various services (#19510) - Update CODEOWNERs - Add foodle-recipes extension (#19084) - Update CODEOWNERs - Add cangjie extension (#19308) - Update CODEOWNERs - feat(google-calendar): create events with natural language duration input (#19317) - Update CODEOWNERs - Improved Category Search & Fixed Budget Details (#19451) - Update qrcode-generator extension (#19455) - Fix Toggle Grayscale exstension (#19236) - Add unix-timestamp-converter extension (#18949) - Update parcel extension (#19466) - Fix Slack emoji search missing scope error - resolves #19441 (#19447) - feat: add Thena MCP entry to official entries (#19379) - Update Ext/Window Sizer (#19459) - [2FA Directory] filter by category (like the Website) + modernize to use latest Raycast config (#19454) - Update CODEOWNERs - Update todoist extension (#19309) - Update CODEOWNERs - [git-repos] Fix issue with the path of the repository (#19440) - Folder search fallback bug fix (#19449) - Update CODEOWNERs - Update CODEOWNERs - Update parcel extension (#19356) - Add fisher extension (#19213) - Update CODEOWNERs - Fix: React Rules of Hooks violation in New Tab command (#19384) - Docs: update for the new API release - Update prompt-stash extension - increase character limit and refactor validations (#19428) - Update stock-tracker extension (#19424) - feat(deepcast): Return to root state preference (#19430) - Update subwatch extension (#19433) - Update CODEOWNERs - Update linkding extension (#19436) - Update media-converter extension (#19385) - Update CODEOWNERs - [Dock] add MenuBar Item + add metadata image + Modernize (#19393) - feat: add Grafana MCP to registry (#19240) - Major improvement to Elgato Key LightsElgato enhancements (#19374) - Update anytype extension (#19418) - Update CODEOWNERs - feat(preferences): Option to Close Raycast After Translation (#19386) - Update mullvad extension (#19382) - Update CODEOWNERs - Update CODEOWNERs - Update stock-tracker extension (#19411) - Update t3-chat extension (#19412) - Update CODEOWNERs - Add Secret Browser Commands extension (#19396) - Update CODEOWNERs - Update linkding extension (#19395) - Update sql-format extension (#19398) - Update zeabur extension (#19413) - Update `Google Books` extension - feat: filter results by category, use `useFetch` for caching + docs: add CHANGELOG + modernize: use latest Raycast config (#19414) - Update Ext/window sizer (#19416) - Update CODEOWNERs - Ability to copy song\'s artist and title (#19368) - Update CODEOWNERs - DEVONthink 4 (#19375) - Add position-size-calculator extension (#19123) - Update CODEOWNERs - Add ratingsdb extension (#19298) - Update Ext/window sizer (#19348) - Update `ClickUp` extension - choose status from Dropdown in \'capture\' (close #19331) + update README (#19370) - Update Extension: Easy New File (#19364) - Updated openpgp version (#19367) - Update CODEOWNERs - Add Claude Sonnet 4 (#19362) - Update CODEOWNERs - Add paste-from-kindle extension (#19275) - Update CODEOWNERs - Ext/appcleaner (#19355) - Update prism-launcher extension (#19346) - Update CODEOWNERs - Update aws extension (#19347) - Update 1bookmark extension (#19350) - Update instagram-media-downloader extension (#19360) - Docs: update for the new API release - Antinote: Support for Setapp version (#19345) - feat(ci): comment when changelog missing (#19305) - Update CODEOWNERs - Update jenkins extension (#19286) - Update prism-launcher extension (#19330) - Docs: update for the new API release - Update downloads-manager extension (#19340) - Update CODEOWNERs - Add open-gem-documentation extension (#18998) - Update miro extension (#18702) - Fix open with IINA action (#19251) - Update CODEOWNERs - Add notes limit for AI usage (#19332) - Update CODEOWNERs - added searching by permissions (#18817) - Update CODEOWNERs - Add Keka extension (#19326) - Updated the Prisma MCP server entry. (#19334) - Update CODEOWNERs - Add AI Budget Tools, Enhanced Natural Language Queries, and Bug FixesF/raynab ai (#18611) - Add azure-icons extension (#19224) - Update CODEOWNERs - Update spotify-player extension (#18815) - Update CODEOWNERs - Update Credits for One Thing Extension (#19303) - Ext/penflow ai (#18799) - Docs: update for the new API release - Update clarify extension (#19222) - Update CODEOWNERs - Add grammaring extension (#19220) - Update CODEOWNERs - Add instagram media downloader extension (#19191) - Add paperless-ngx MCP server entry to the registry (#19300) - Update cloud-cli-login-statuses extension (#19284) - [Dropover] Fix special characters in filenames and update docs (#19318) - [Rebrandly] Update Links + Modernize (#19319) - Update Ext/window sizer (#19316) - Update CODEOWNERs - Update CODEOWNERs - Update brand-fetch extension (#19012) - Update CODEOWNERs - Update prism-launcher extension (#19117) - feat(superwhisper): add search history (#18810) - Add hammerspoon extension (#18922) - MCP: Fix lint issues (#19310) - Added the Shopify Dev MCP server (#19307) - Update CODEOWNERs - Update obsidian-tasks extension (#19151) - Add untis extension (#18735) - Update curl extension (#18931) - Dovetail extension: Pagination with query filtering (#19163) - Update CODEOWNERs - Fix tldraw project URLs (#19291) - Add Claude PR Assistant workflow (#19292) - Fix link to Smithery (#19285) - Update CODEOWNERs - Add rae-dictionary-raycast extension (#19171) - Supahabits: New command goals (#19282) - [Say] Routine maintenance (#19283) - Update CODEOWNERs - Update t3-chat extension - add beta checkbox (#19133) - Add Safari command to close other tabs (#19280) - When PRs are marked as ready for review, auto assign to Per (#19281) - Update CODEOWNERs - Add `Creem` extension - List,Create Products + List Payments (#19205) - Update CODEOWNERs - ✨ Add frecency sorting to gitmoji (#18974) - Update Ext/window-sizer (#19234) - Apple Mail add new command and AI tool (#19228) - Update `Unkey` extension - Modernize + Migrate broken endpoints to new ones to prevent crash (#19247) - Update Markdown Codeblock (#19271) - Update polymarket extension (#19273) - Update 1bookmark extension (#19255) - Update `cPanel` extension - Modernize + Manage API Tokens (create, revoke) + new function wrapping native `fetch` (#19274) - Init apify mcp server (#19193) - Update granola extension (#19215) - Added the Prisma MCP server (#19201) - Add Zeabur official MCP server to registry (#19217) - Update CODEOWNERs - Add are-na extension (#18646) - Update CODEOWNERs - Add slack-summarizer extension (#19032) - Update nostr extension (#19209) - Update CODEOWNERs - Update paperless-ngx extension (#19197) - Update CODEOWNERs - Add tableau-navigator extension (#19086) - Update CODEOWNERs - MCP: fix spawn ... ENOENT issue (#18399) - Update CODEOWNERs - Add quikwallet extension (#19047) - [Markdown Navigator] Remove duplicate files (#19208) - [Unifi] Remove outdated files (#19207) - [Trek] Remove outdated files (#19211) - [Expo] Remove duplicate files (#19210) - Update CHANGELOG.md (#19227) - Update danish-tax-calculator extension (#19200) - Bot: Only allow the OP to close the issue with a comment (#19196) - Docs: update for the new API release - Update raycast-icons extension (#18682) - [Sentry] Show projects for non US Sentry orgs (#18758) - Update package.json (#19195) - Update CODEOWNERs - Danish Tax Calculator (#19194) - feat: add Nuxt official MCP server to registry (#19034) - Update zen-browser extension (#19013) - Update CODEOWNERs - Add video-converter extension (#19030) - Update CODEOWNERs - Update polymarket extension (#19089) - Add wp-cli-command-explorer extension (#19063) - update extension raycast-gemini (#19021) - Update CODEOWNERs - Add smallpdf extension (#19041) - Update coin-caster extension (#19166) - Update CODEOWNERs - Update vuejs-documentation extension (#19072) - Update CODEOWNERs - Update qrcode-generator extension (#18792) - Update CODEOWNERs - add(KDE Connect): KDE Connect in Raycast (#18928) - Update CODEOWNERs - Add shell-alias extension (#19028) - Update lift-calculator extension (#19118) - Update servicenow extension (#19148) - Fix request loops (#19143) - Fixing two super small typos on the readme for the Obsidian plugin (#19139) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Clockify Extension: UX Improvement for "Start new Timer" functionality (#19026) - Update CODEOWNERs - Add setlist-fm extension (#19119) - Update zerion extension (#19132) - Update CODEOWNERs - Gitlab Extension: My merge requests & label based filtering (#19007) - Update CODEOWNERs - Add file-organizer extension (#18877) - Update CODEOWNERs - Update `Two-Factor Authentication Code Generator` - Rename Codes + Modernize + Add README (#19019) - [NixPkgs Search] Fetch version number from NixOS/nixos-search repo and compose url dynamically (#19025) - Update flibusta-search extension (#19131) - Update omnifocus extension (#19024) - Update tidal-controller extension (#18437) - Update CODEOWNERs - Add Mac network location changer (#18961) - LoL Esports AI tools (#18563) - Update servicenow extension (#18834) - Update at-profile extension (#18554) - Update shopify-theme-resources extension (#18991) - [Image Modification] Add support for QSpace Pro and ForkLift (#19108) - Update CODEOWNERs - Update kill-node-modules extension (#19039) - Update CODEOWNERs - Add grok-ai extension (#18566) - Update CODEOWNERs - Add subwatch extension (#18929) - Ente Auth - fix preferred values (#19029) - Update README.md (#19106) - Update CODEOWNERs - Update arc extension (#19062) - TickTick support AI Extension (#17531) - Update CODEOWNERs - Add domain field to fastmail-masked-email extension (#19066) - Apple Mail: Fix OTP codes across multiple mail accounts (#19033) - Update hardcover extension (#19065) - Update how-long-to-beat extension (#19042) - Update dovetail extension (#19102) - Update daily-sites extension (#19097) - Update Ext/window sizer (#19103) - Update index.tsx (#19067) - Docs: update for the new API release - Docs: update for the new API release - Update OpenVPN description to reflect recent changes (#18788) - Update CODEOWNERs - Add raycast-zoxide extension (#18908) - Update mermaid-to-image extension (#18975) - Update CODEOWNERs - fix(docs): mcp incorrect home page link (#19045) - Add search-domain extension (#18837) - Update CODEOWNERs - Add selfhst-icons extension (#18904) - Update CODEOWNERs - Update CODEOWNERs - Add option to automatically create labels in Todoist quick add command (#18892) - Add daily-sites extension (#18763) - Update CODEOWNERs - MCP Registry: Initial commit (#19015) - Docs: update for the new API release - feat(font-search): add postscript names menu (#19003) - Messages Paste OTP Regex Update (#18896) - Update Ext/window sizer (#19017) - Update CODEOWNERs - Add lipsum extension (#18784) - adding needed changes (#18987) - Update CODEOWNERs - feat: Rename NuxtUI extension to just Nuxt (#17887) - Update CODEOWNERs - [beszel-extension] Added AI tools for interacting with beszel (#17790) - Update CODEOWNERs - Update at-profile extension (#18881) - Update CODEOWNERs - Add flibusta-search extension (#18260) - Update CODEOWNERs - Update doge-tracker extension (#18950) - Update CODEOWNERs - Update CODEOWNERs - Update raycast-ollama extension (#18910) - feat(download-manager): add reload action (#18822) - Add `Name.com` extension - View Account Balance + View Domains + View DNS Records + Delete DNS Record (#18982) - Update CODEOWNERs - DeepWiki extension (#18804) - Update CODEOWNERs - add primary action switch to `one-time-password` (#18800) - Update google-chrome extension (#18794) - Update Ext/window sizer (#18988) - Update Ext/surge outbound switcher (#18989) - Update CODEOWNERs - Update prompt-stash extension (#18887) - Add geoping extension (#18957) - Update CODEOWNERs - Update migadu extension (#18930) - Update anytype extension (#18993) - Update CODEOWNERs - Add cocoa-core-data-timestamp-converter extension (#18656) - Add macports extension (#18773) - Update CODEOWNERs - Things - Set Reminders in Today and Upcoming (#18771) - Update git-assistant extension with rewrite of search git repositories command (#18948) - Update Ext/window sizer (#18963) - Update CODEOWNERs - Update meme-generator extension (#18844) - Update granola extension (#18972) - Update CODEOWNERs - Update package.json (#18970) - Update granola extension (#18915) - Update WIP extension (small typo fix) (#18962) - Docs: update for the new API release - Update CODEOWNERs - Update raindrop-io extension (#18882) - Update dust-tt extension (#18942) - Update Ext/window sizer (#18945) - Update CODEOWNERs - [Stripe] Fix "Open in Stripe Dashboard" action adding extra leading slash (#18953) - Update archiver extension (#18685) - Update CODEOWNERs - Folder Search Improvements (#18838) - Added "toggle connection" to tailscale extension (#18409) - Update esports-pass extension (#18920) - Update f1-standings extension (#18876) - Update CODEOWNERs - Add thock extension (#18618) - Update CODEOWNERs - Add tana-paste extension (#18355) - Update CODEOWNERs - Update granola extension (#18883) - Update CODEOWNERs - Update T3 Chat - new models (#18902) - Update draft-email.ts (#18895) - Update CODEOWNERs - Add zero extension (#18616) - [Apple Intelligence] Add localization (#18593) - Update research extension (#18769) - Update dolar-cripto-ar extension (#18873) - Update CODEOWNERs - [Doppler] Update doppler-share-secrets extension (#18523) - Update CODEOWNERs - Add barcuts-companion extension (#18737) - Update CODEOWNERs - New extension: Granola AI Meeting Notes (#17618) - [Spotify Player] Enable AI interaction with your queue (#18693) - Docs: update for the new API release - feat: replaced Exivo extension iconm due to trademark restrictions (#18868) - Make some extensions available on Windows (#18869) - Update animated-window-manager extension (#18865) - Update lingo-rep-raycast extension (#18721) - Update ugly-face extension (#18866) - refactor: respect system appearance (#18856) - Apple Mail: Paste latest OTP code (#18657) - Update CODEOWNERs - Add superhuman extension (#18391) - Update CODEOWNERs - Add animated-window-manager extension (#18712) - Update homeassistant extension (#18234) - Update CODEOWNERs - Update swift-command extension (#18761) - Update CODEOWNERs - Add tautulli extension (#18023) - Update CODEOWNERs - Add qutebrowser-tabs extension (#18694) - fix: update description in dia extension. (#18853) - Update CODEOWNERs - fix: fix not find zsh file (#18854) - Add nusmods extension (#18757) - Weather: Fix icon for Fog (#18849) - refactor: support more offset (#18850) - refactor: replace keystroke with key code (#18848) - Update origami extension (#18846) - Update system-information extension (#18783) - FIX code extraction imessage-2fa extension (#18836) - PurpleAir Extension Improvements: Multiple Sensor and Nearest Sensor (#18716) - Update f1-standings extension (#17861) - YoutubeMusic: Fixed Issue - remove Like and Like Songs (#18631) - [YubiKey Code] - Replace usage of WindowManagement.getActiveWindow with getFrontmostApplication (#18831) - Update CODEOWNERs - Add gotify extension (#18679) - Ext/window sizer fix screenshots and README (#18827) - Update CODEOWNERs - Add Verification/Sign-in Link Detection (#18695) - Dia (The Browser Company) extension (#18667) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Add cloud-cli-login-statuses extension (#18058) - [YubiKey Code] - Sort accounts by usage (#18781) - [hacker-news-top-stories] Add notification support (#18798) - Update threads extension (#18813) - Update Ext/window sizer (#18814) - Update CODEOWNERs - Revert "Update bmrks extension (#18539)" (#18811) - update extension raycast-gemini (#18666) - Update tinyimg extension (#18720) - Update xcode extension (#18746) - Update 1bookmark extension (#18664) - Update CODEOWNERs - Update aws extension (#18650) - [Things] Fix menu bar `Complete` action (#18641) - Update CODEOWNERs - Add nostr extension (#18637) - Docs: update for the new API release - Update CODEOWNERs - Add window-sizer extension (#18635) - Update CODEOWNERs - Add hardcover extension (#18628) - Update CODEOWNERs - Update quit-applications extension (#18617) - Update CODEOWNERs - Mark all extensions which uses AppleScript as macOS only (#18742) - Slack: enhance Search Emojis command with AI-powered suggestions (#18625) - Update CODEOWNERs - Update zen-browser extension (#18751) - Made use of Search API optional (#18410) - Update CODEOWNERs - Add magic-home extension (#18219) - Update CODEOWNERs - Add ton-address extension (#18683) - Update svelte-docs extension (#18749) - Update CODEOWNERs - Update hacker-news-top-stories extension (#18747) - Update bmrks extension (#18539) - Update CODEOWNERs - Add lookaway extension (#18589) - Update CODEOWNERs - Updating Raycast handle (#18738) - Update CODEOWNERs - Update regex-repl extension (#18724) - Update notis extension (#18727) - Update CODEOWNERs - Add `Canva` extension - View Designs and Open in Browser (#18645) - [SABnzbd] add README + Modernize to use latest config (#18670) - Update CODEOWNERs - Add go-to-rewind-timestamp extension (#18514) - Update CODEOWNERs - Update toggl-track extension (#18543) - Update CODEOWNERs - Update CODEOWNERs - Update thesaurus extension (#18569) - Update warp extension (#18504) - Handle undefined downloads in subtitle formatting (#18729) - Update mercado-libre extension (#18725) - Update tuple extension (#18718) - Update CODEOWNERs - Add origami extension (#18314) - Update README.md (#18719) - Update quick-event extension (#17943) - Update anytype extension (#18218) - Update sportssync extension (#18240) - Update CODEOWNERs - add new extension Pumble (#18253) - Update CODEOWNERs - Add macOSIcons.com extension (#18386) - fix(pianoman): Cannot read properties of undefined (#18591) - Update zeabur extension (#18675) - Supahabits/stats (#18700) - Update CODEOWNERs - Update genius-lyrics extension (#18696) - chore(mcp): improve instruction and examples given (#18537) - Update CODEOWNERs - Add donut extension (#18711) - [Expo] Add support for Two Factor authentication (#18202) - Update CODEOWNERs - Update zen-browser extension (#18068) - Update CODEOWNERs - Update raindrop-io extension (#18668) - Update trovu extension (#18277) - Added "Create new Incognito Window" action for Chrome extension (#18262) - Update hacker-news-top-stories extension (#18705) - Update svelte-docs extension (#18686) - handle non existing file selection (#18674) - Ext/surge outbound switcher (#18633) - Update betterdisplay extension (#17535) - Update CODEOWNERs - Add lyric-fever-control extension (#18538) - 🐛 fix(wakatime): Fix Reported Store Issues & Update Dependencies (#18638) - Update CODEOWNERs - Update google-calendar extension (#18636) - fix details block in information doc (#18627) - Update CODEOWNERs - Update (#18632) - Update CODEOWNERs - Add playtester extension (#18492) - Docs: update for the new API release - Update CODEOWNERs - Add asciimath-to-latex-converter extension (#18496) - GitHub: Fix pull request filtering logic (#18624) - feat(search-chatwork): mod scope to use search contacts commands with OAuth (#18542) - Update CODEOWNERs - [Asana] modernize + close after creating task (close Issue) (#18531) - Update CODEOWNERs - Update package.json (#18483) - Update CODEOWNERs - Add dpm-lol extension (#18476) - Update CODEOWNERs - Update nba-game-viewer extension (#18623) - Add liquipedia-matches extension (#18455) - Update CODEOWNERs - Add git-worktrees extension (#18418) - Update CODEOWNERs - Update linkding extension (#18395) - Arc extension: (Re-)Add support to open blank incognito window (#18427) - Update CODEOWNERs - Update raycast-svgo extension (#18560) - Auto language detection and some small fixes (#18221) - Add steam-player-counts extension (#18435) - Linear: Update API and fixes (#18601) - Todoist: Fix AI get-tasks (#18603) - Update awork extension (#18580) - Update CODEOWNERs - Update lucide-icons extension (#18428) - Update aws extension (#18552) - Update CODEOWNERs - Add cerebras extension (#18508) - Update CODEOWNERs - Add manage runtimes and delete unsupported runtimes commands to Xcode extension (#18463) - Update CODEOWNERs - Update link-cleaner extension (#18422) - Update airpods-noise-control extension (#18126) - [Github extension] add support for merge queue and "merge when ready" (#18045) - Update ihosts to support remote hosts (#18176) - Update CODEOWNERs - Update CODEOWNERs - [ADB] Add Uninstall command (#18091) - Update paste-as-plain-text extension (#18574) - Update deepcast extension (#18598) - Update CODEOWNERs - Add hacker-news-500 extension (#18431) - GIF Search: Use `Clipboard` API to copy GIF instead of AppleScript. (#18588) - Todoist: New API, improvements and bug fixes (#18518) - Update CODEOWNERs - Update raycast2github.json (#18575) - Update dust-tt extension (#18578) - Update cal-com-share-meeting-links extension (#18577) - Update ns-nl-search extension (#18576) - Commands and Navigation Enhancements (#18528) - Update CODEOWNERs - Add `Netherlands Railways Find a train` extension (#18420) - Update CODEOWNERs - Update `CricketCast` extension - Modernize + Better Score Error Handling (#18555) - Update Connect to VPN extension (#18406) - Update CODEOWNERs - Update jetbrains extension (#18545) - Update copymoveto extension (#18535) - Update CODEOWNERs - Update github-profile extension (#18551) - Enable Chat Actions When Viewing Previous Conversations (#18547) - html-colors: add filtering option to group colors by shade (#18529) - [Things] Display only incomplete todo in the menu bar (#18515) - Update WeChat (#18345) - Update `Spaceship` extension - Modernize + DNS Enhancements (#18571) - Update CODEOWNERs - Update CODEOWNERs - parcel: add "Track on Website" and improve client (#18333) - Add paystack extension (#18375) - Update CODEOWNERs - Update gg-deals extension (#18519) - Update dub extension (#18517) - Fix 404 error by replacing the repo where we get the name from (#18525) - Improved fallback command and flickering during search (#18533) - feat(bento-me): improve UI. (#18521) - Update CODEOWNERs - Update clockify extension (#18401) - Update CODEOWNERs - Add "Obsidian Tasks" Extension (#18390) - Ai extensions/elgato key light (#17822) - Update utilities.md (#18510) - Update CODEOWNERs - Add virustotal extension (#18373) - Update CODEOWNERs - things: detect URLs in notes (#18362) - Update CODEOWNERs - Update deno-deploy extension (#17840) - Update dad-jokes extension (#18494) - Slack (#18156) - Delivery Tracker: Manually Mark as Delivered and Delete All Delivered Deliveries (#18485) - fix: gcloud path for non homebrew intel package installations (#18493) - Update CODEOWNERs - [Canvascast] Fix bugs with announcements and downloads (#18100) - Update adhan-time extension (#18204) - Update CODEOWNERs - Slack: New Command: Send Message (ISSUE-15424) (#16580) - Update antd-open-browser extension (#18299) - Update image-flow extension (#18470) - feat(himalaya): Update for Himalaya `v1.0.0` (#18388) - Add Find Features and AI Extension Support (#18195) - Add movie runtime information to Letterboxd (#18089) - Update CODEOWNERs - Update evernote extension (#17889) - Add g-cloud extension (#18093) - Update CODEOWNERs - Add awork extension (#17791) - Update laravel-herd extension (#18477) - feat(search-composer-packagist): display abandon package (#18307) - [Polar] Update Polar SDK Version (#18475) - Update CODEOWNERs - Add `Pastery` extension - Search Pastes, Create Paste, Delete Paste (#18404) - [Polar] Fix non-recoverable state when OAuth access tokens expires (#18471) - Docs: update for the new API release - Update CODEOWNERs - Update `Unsplash` extension - add Pagination, Caching + Modernize (close Issue) (#18384) - Update CODEOWNERs - Add jsrepo extension (#18346) - Update producthunt extension (#18442) - docs: asset folder clearing hint (#18320) - Update CODEOWNERs - Update vercast extension (#18297) - Update pcloud extension (#18291) - Update CODEOWNERs - Add image-to-ascii extension (#18282) - Update Tailscale extension (#18281) - [braid] Fetch icons dynamically from github (#18469) - [Bitwarden] Add authenticator primary action preference (#18464) - Improve URL retrieval with clipboard fallback (#18461) - Update dict-cc extension (#18443) - Update CODEOWNERs - Add valkey-commands-search extension (#18268) - Update CODEOWNERs - Update CODEOWNERs - Update reflect extension (#18294) - Add pollenflug extension (#17787) - Update CODEOWNERs - Add image-flow extension (#17383) - Update CODEOWNERs - Add laravel-herd extension (#18318) - Update 1bookmark extension (#18413) - [Bitwarden] Authenticator command (#18322) - Update quick-notes extension (#18389) - Update `My Idlers` extension - Optimistically delete Server (#18421) - Update CODEOWNERs - Update raycast-svgo extension (#18426) - [Contentful] fix: video assets not showing thumbnail (#18441) - Docs: update for the new API release - feat: added logic for properly counting CJK characters as words (#18430) - Update CODEOWNERs - Update tidal-controller extension (#18275) - Update CODEOWNERs - Update CODEOWNERs - Update obsidian extension (#18394) - Add surge-outbound-switcher extension (#18065) - Update CODEOWNERs - Add mistral extension (#18237) - add error han…
- update description - update readme file - fix linting - introduce more schedule types 15 mins, 30 mins, hourly and custom - Add xpf-converter extension (raycast#21448) - Update CODEOWNERs - Update CODEOWNERs - Add zendesk-admin extension (raycast#20763) - Add yr-weather-forecast extension (raycast#21354) - Update CODEOWNERs - Add `Apify` extension - List Actors + List Runs (raycast#21467) - Update CODEOWNERs - [Forked Extensionis] Run local Git commands before requesting APIs (raycast#21457) - Update circleback extension (raycast#21459) - [zed-recent-projects] Handle new sqlite database schema 28 (raycast#21447) - Fixed deprecated Jira API issue. (raycast#21452) - Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (raycast#21395) - Update `Productboard` extension - View `Objectives` + Modernize (raycast#21450) - Update CODEOWNERs - Stripe: add support for managing customers and subscriptions (raycast#21135) - Update CODEOWNERs - [Font Awesome] Add Windows Support (raycast#21433) - Update CODEOWNERs - Update arxiv extension (raycast#21033) - Update CODEOWNERs - [YouTube Companion] Add Windows Support and bump dependencies (raycast#21436) - Update CODEOWNERs - [Forked Extensions] Add support for create extensions (raycast#21364) - Add whentomeet extension (raycast#20675) - Update CODEOWNERs - Add Circleback extension (raycast#21391) - Update CODEOWNERs - update packages and add option to exit raycast after cleaning link (raycast#21269) - Update CODEOWNERs - Add tuneblade extension (raycast#21350) - Update wechat-devtool extension (raycast#21399) - Update CODEOWNERs - feat(KeepassXC): add windows support. (raycast#21430) - Add Qovery extension (raycast#21255) - Update CODEOWNERs - Update raindrop-io extension (raycast#21394) - Update comet extension (raycast#21362) - Update CODEOWNERs - Update cheatsheets-remastered extension (raycast#21376) - Add publora extension (raycast#21372) - Update CODEOWNERs - Update CODEOWNERs - Update `Unsplash` extension - Fixed crash when "Rate Limit" exceeded + Centralized error handling + Removed `node-fetch` (raycast#21406) - [cURL Extension] Add Windows Support (raycast#21427) - [Raindrop.io] Move @sh-cho to past contributors (raycast#21435) - [Update] [Things] Add project update/delete tools and improve type safety (raycast#21416) - Update obsidian-link-opener extension (raycast#21443) - Update zed-recent-projects extension to use latest sqlite Zed schema (raycast#21180) - Fix Jira extension: JQL error (raycast#21429) - Docs: update for the new API release - Update `Manotori` extension - Support Windows! + View DNS Zones + View DNS Records + Create DNS Record (raycast#21370) - Update github extension (raycast#21381) - Update docker extension (raycast#21398) - Update Advanced Replace for regex transforms and entry options (raycast#21409) - Update deepwiki extension (raycast#21400) - Update meta-music extension (raycast#21417) - Update CODEOWNERs - Update `Opera` extension - Fix: would show as not installed due to changed path + Add better error handling when dealing with `AppleScript` - Modernize to use latest Raycast configuration + Removed `run-applescript` (raycast#21421) - Update instagram media downloader extension (raycast#21422) - Update CODEOWNERs - Update `Proxmox` extension - show status in `tooltip` + token is now password + modernize to use latest Raycast config (raycast#21349) - Update CODEOWNERs - Add red-note-post-viewer extension (raycast#21315) - Fix documentation for screenshot extension: capture-to-clipboard command (raycast#21311) - Update flibusta-search extension (raycast#21327) - Mention Forked Extensions in dev doc (raycast#21158) - Update CODEOWNERs - Fix todoist extension: Setting due date and time (raycast#21331) - Update CODEOWNERs - Add plexus extension (raycast#21289) - Update CODEOWNERs - Add r2-uploader extension (raycast#21215) - Cursor Agents: Add a new tool to get back all repositories that are s… (raycast#21337) - Update CODEOWNERs - [cursor-agents] Made `ref` optional in the agent launch form (raycast#21334) - Cursor: Few smaller fixes (raycast#21333) - Add error handling for launchCommand (raycast#21332) - Update CODEOWNERs - Cursor Agents (raycast#21328) - Update CODEOWNERs - Update memos extension (raycast#21213) - Release more extensions on Windows (raycast#21324) - Update CODEOWNERs - Update google-chrome extension (raycast#21235) - Add lockfiles and registry rules to copilot instructions (raycast#21254) - docs: update documentation (raycast#21325) - Update CODEOWNERs - [Gandi] New Extension (raycast#21120) - Update RAE Dictionary extension with latest improvements (raycast#21307) - Update CODEOWNERs - Add `Visitor Queue` extension - View "Data Views" + View "Leads" + View "Contacts" (Windows supported!) (raycast#21322) - Update zeabur extension (raycast#21321) - Update CODEOWNERs - Add music-assistant-controls extension (raycast#21249) - Update CODEOWNERs - Add ChartMogul extension (raycast#21251) - [google-chrome-profiles] Refactor Chrome profile opening into dedicated no-view commands (raycast#20623) - Fix incorrect error message in GitHub Enterprise issues search (raycast#21231) - Update CODEOWNERs - Add hebrew-date-zmanim extension (raycast#21292) - Update CODEOWNERs - Add atomberg-raycast-extension extension (raycast#21185) - Improve error handling in GitHub Copilot extension (raycast#21308) - feat(add-expense): Add "Category" selection dropdown to "Add Expense" form (raycast#21224) - feat(shell-history): add option to reverse history order (raycast#21304) - Update CODEOWNERs - Add vanishlink extension (raycast#20996) - Revert "Renaming metadata images (raycast#21305)" (raycast#21306) - Update brreg extension (raycast#21169) - Update brave-search-with-results extension (raycast#20916) - [Farcaster] cleanup and migration (raycast#21299) - Renaming metadata images (raycast#21305) - Fix `pr-bot` for detecting touched extensions (raycast#21250) - Update CODEOWNERs - Add Windows support and update dependencies (raycast#21282) - Fix GitHub Copilot instructions to provide actionable code suggestions without character escaping (raycast#21276) - Update CODEOWNERs - Update `solidtime` extension - use custom (self-hosted) URL + handle errors + 2 EmptyViews (raycast#20602) - [Forked Extensions] Improve Sync actions (raycast#21294) - [Bitwarden] Sync vault on command launch (raycast#21300) - Update `Tally` extension - update many settings of a Form + fix: crash when no Form title + add shortcut to "Open in Tally" `Action` (raycast#21302) - [Forked Extensions] Fix the fork action (raycast#21281) - Update CODEOWNERs - Add tallinn-transport extension (raycast#20762) - Update CODEOWNERs - [Mozilla Firefox] Refactor and fixes (raycast#20767) - Update CODEOWNERs - [Whimsical]: First version, only AI (raycast#20815) - feat(raindrop-io): prefill add form from launch context (raycast#21261) - Update CODEOWNERs - Fix todoist extension: An error creating task (raycast#21153) - [Forked Extensions] Improve error handlers and toasts (raycast#21222) - Update CODEOWNERs - Update spotify-player extension (raycast#21234) - Update CODEOWNERs - Update ado-search extension (raycast#20586) - Update CODEOWNERs - Add sourcegraph-amp-dash-x extension (raycast#20730) - Update CODEOWNERs - Update dotmate extension (raycast#21129) - Update CODEOWNERs - Add barassistant extension (raycast#21126) - Update `Airtable` extension - precise errors + `Add` Icon to **Bases** & **Fields** + `Add` support for **Personal Access Token** + `Simplify` OAuth + `Modernize` (raycast#21262) - fix(readwise-reader): Use correct URL when opening articles (raycast#21219) - Complete overhaul of "Where Is My Cursor?" extension (raycast#21124) - Update stale PR message and timing settings (raycast#21273) - Update `My Idlers` extension - Add Server (raycast#21256) - Add Windows support and update dependencies (raycast#21260) - [MapleStory.gg] Routine maintenance (raycast#21266) - Update CODEOWNERs - Fuelx: Override @coinbase/wallet-sdk and cbw-sdk versions (raycast#21247) - Add comprehensive GitHub Copilot instructions for extension reviews (raycast#21243) (raycast#21244) - Update polymarket extension (raycast#21236) - Add AI tools to GitHub Copilot extension for task creation and repository management (raycast#21228) - kill-process: Add support for Windows (raycast#21240) - Gate some more extensions for Windows (raycast#21239) - Fix formatting in README.md for GitHub Copilot (raycast#21226) - Update CODEOWNERs - Add GitHub Copilot extension (raycast#21225) - Update CODEOWNERs - Add Mobius Materials extension (raycast#21136) - [Installed Extensions] Use Raycast buitl-in `Action.CopyToClipboard` (raycast#21216) - notion: Fix opening page on windows (raycast#21205) - Update CODEOWNERs - Update CODEOWNERs - Update spotify-player extension (raycast#21208) - Add fuelix extension (raycast#21067) - Update copy-path extension (raycast#21168) - Update `MailerSend` extension - View Domain Webhooks (raycast#21194) - [Forked Extensions] Polish `Sync Fork` & fix Git path for Windows (raycast#21204) - Update freeagent extension (raycast#21203) - Update One Time Password (raycast#20176) - [Language Detector] Add support for internet slangs (raycast#21201) - Docs: update for the new API release - Update CODEOWNERs - Vercel/Vercast: Bump deps, make available on Windows (raycast#20758) - Update CODEOWNERs - apple-maps-search - Windows support (raycast#20700) - Update roblox extension (raycast#18919) - [Forked Extensions] Fix `Sync Fork` and check Git executable file (raycast#21187) - Update CODEOWNERs - Whois: Add windows support (raycast#20759) - Add \'Windows\' to exempt PR labels in stale.yml (raycast#21176) - feat: Rube MCP Server added to the registry (raycast#21146) - Update CODEOWNERs - Add `Lemon Squeezy` extension - List all orders in all your stores + List all products in all your stores (raycast#21115) - Update awork extension (raycast#21178) - Add cheatsheets-remastered extension (raycast#20991) - Update CODEOWNERs - Add leap-new extension (raycast#21175) - Update CODEOWNERs - Update `Console Dev` extension - Major Rewrite + Support Windows + Fix Parser (raycast#21036) - Update CODEOWNERs - Add luxafor-controller extension (raycast#21082) - Update youversion-suggest extension (raycast#21074) - [Forked Extensions] Sync fork repo with upstream repo on GitHub (raycast#21171) - Update CODEOWNERs - Add shopinfo-app extension (raycast#20884) - Update awork extension (raycast#21040) - Update CODEOWNERs - Update radarr extension (raycast#21118) - Update Fathom Analytics menu bar icon and add shortcut (raycast#21147) - Update CODEOWNERs - Update aave-search extension (raycast#21149) - [Installed Extensions] Add support launching target extension (raycast#21154) - [Steam] Routine maintenance (raycast#21156) - Update ray-clicker extension (raycast#21161) - Update gradient-generator extension (raycast#21163) - Bugfix/issue-18862 MLB Schedule Fix, addition of Standings and Search Players command (raycast#21167) - [Forked Extensions] Add support for Windows & improvements (raycast#21060) - Update CODEOWNERs - Update CODEOWNERs - Update copy-path extension (raycast#21134) - Fix Slack extension: Send message is not working. (raycast#21148) - Update brreg extension (raycast#21151) - Update CODEOWNERs - Update CODEOWNERs - [GitHub] Add Starred Repos command (raycast#21110) - Add monkeytype extension (raycast#21108) - Update CODEOWNERs - ray-so: Add Windows support (raycast#20740) - Update ente-auth extension (raycast#20663) - Update CODEOWNERs - Add obsidian-link-opener extension (raycast#21021) - Update CODEOWNERs - Add crypto-search extension (raycast#21084) - [Home Assistant] Port to windows (raycast#21065) - feat: add [Generate QR Code from Selection] Command for [QR Code Generator] Extension (raycast#20831) - Update CODEOWNERs - Update CODEOWNERs - Update google-chrome extension: Add reload/refresh tab action (raycast#21140) - feat(endel): add Endel extension (raycast#20788) - Update CODEOWNERs - Add chatgpt-search extension (raycast#20721) - Update CODEOWNERs - Fix Jira extension: Deprecated Atlassian API methods (raycast#21057) - Add odoo-companion extension (raycast#21058) - Update brreg extension (raycast#21046) - [spotify-player] Check for duplicate tracks before adding to a playlist (raycast#20617) - Update aws extension (raycast#21016) - ext/media-converter: hotfix: simple quality settings (raycast#21092) - Update `logitech-litra` extension to support devices without a serial… (raycast#21139) - Update CODEOWNERs - [Multilinks] Add Dia browser support (raycast#21128) - Update 1password extension (raycast#21142) - Update todoist extension (raycast#21141) - Update `changedetection.io` extension - Create + Delete + modernize + add EmptyView (raycast#21143) - Update openrouter-models-finder extension (raycast#21100) - Fix a minor typo in video-downloader Installer view (raycast#21102) - Update CODEOWNERs - Add Looma.fm extension with all reviewer feedback addressed (raycast#20781) - Update CODEOWNERs - Add get-cat-images extension (raycast#20964) - Update CODEOWNERs - feat(add-expense): add “Recent” section to “Add Expense” form (raycast#21032) - Update CODEOWNERs - Add typora-note-creator extension (raycast#20851) - Update commit-issue-parser extension (raycast#21050) - [Surge] Routine maintenance (raycast#21098) - [United Nations] Handle SIGTERM gracefully (raycast#21086) - Update search index used in Statamic Docs extension (raycast#21089) - Update CODEOWNERs - feat: support specifying issue type when creating an issue (raycast#21043) - Update naver-search extension (raycast#20235) - [Say] Allow stop saying & handle SIGTERM gracefully (raycast#21081) - Update CODEOWNERs - [Spotify] Fix reading values from undefined (raycast#20986) - Add gradient-generator extension (raycast#21012) - Update CODEOWNERs - Update raycast-surge extension (raycast#20578) - Add openrouter-quick-actions extension (raycast#20958) - Update CODEOWNERs - Add scheduler extension (raycast#20641) - Update CODEOWNERs - Add comet extension (raycast#20632) - Update ray-clicker extension (raycast#21088) - Update todoist extension (raycast#21078) - Update CODEOWNERs - Update ship24-client extension (raycast#21059) - Add openrouter-models-finder extension (raycast#21005) - Update CODEOWNERs - Add zsh-aliases extension (raycast#20985) - Update CODEOWNERs - Add ray-clicker extension (raycast#20979) - Update `Wave` - Enhance `Invoice` to show amounts due and paid + Move "Business Products And Services" to its own file + Add new product or service (raycast#21052) - Update password-generator extension to guarantee presence of character choices (raycast#20976) - Update CODEOWNERs - [Forked Extensions] Initial release (raycast#20968) - Update CODEOWNERs - Update todoist extension (raycast#20984) - Docs: Update the utils docs - Update brreg extension (raycast#21027) - Docs: update for the new API release - feat: adding the calculation time for MOROCCO (raycast#20917) - Update CODEOWNERs - feat(model-context-protocol-registry): linear mcp server (raycast#20895) - [defbro] Dynamic detection of defbro command path (issue raycast#20881) (raycast#20882) - Brew: Close Raycast in case the brew cmd typed in raycast window (raycast#20780) - Hot Fix: Granola authentication to support WorkOS tokens (raycast#21039) - Update CODEOWNERs - Add vixai extension (raycast#20772) - Update lookaway extension (raycast#21038) - Update CODEOWNERs - Bitaxe initial commit (raycast#20750) - Update CODEOWNERs - Update cyberchef extension with custom Instance URL (raycast#20735) - Update duckduckgo-image-search extension (raycast#21034) - 🐛 fix browser-extension for zen browser (raycast#21035) - Update CODEOWNERs - Add positron extension (raycast#20596) - Update CODEOWNERs - Add french-company-search extension (raycast#20865) - Update minio-manager extension (raycast#20999) - Update change case extension (raycast#20960) - Update grammari-x extension (raycast#20998) - Support for scientific notation and decimal encoding in converter (raycast#21011) - Update Claude Code Cheatsheet - Add v1.0.55-v1.0.81 features (raycast#21004) - Update CODEOWNERs - Update trakt-manager extension (raycast#20854) - [Language Detector] Add support for Windows (raycast#20832) - Update quick-git extension (raycast#21001) - Update CODEOWNERs - Update `SwitchHosts` extension - modernize + icons + markdown + add hook + remove `setTimeout`,`node-fetch` (raycast#21017) - Update `Clockify` extension - Select Tag During Start + More Precise Types + Modernize (raycast#21002) - Update `cPanel` extension (raycast#20977) - Update google lens extension (raycast#21019) - Update CODEOWNERs - Add invisible-text-detector extension (raycast#20926) - Update CODEOWNERs - Add word4you extension (raycast#20638) - Update CODEOWNERs - Add radarr extension (raycast#20904) - Update CODEOWNERs - feat(8ball): add preference to choose default action (copy/paste) and… (raycast#20947) - Update CODEOWNERs - Update deepwiki extension (raycast#20955) - Update CODEOWNERs - Update dodo-payments extension (raycast#20956) - Update vercast extension (raycast#20838) - Update CODEOWNERs - Update search-gule-sider extension (raycast#20911) - [Groq] model update and improvements (raycast#20630) - Add support for password protected YubiKeys in yubikey-code (raycast#20938) - [Time Tracking] rename in Edit Form + Modernize (raycast#20922) - [Brand.dev] trigger search via search text (QoL) (raycast#20944) - Update CODEOWNERs - Add unblocked-answers extension (raycast#20696) - Update CODEOWNERs - Add chainscout extension (raycast#20712) - Update CODEOWNERs - tabler: add download actions (raycast#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (raycast#20686) - Update CODEOWNERs - Add jitsi extension (raycast#20680) - Update CODEOWNERs - Add time-calculator extension (raycast#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (raycast#20647) - Update CODEOWNERs - Add synology-download-station extension (raycast#20643) - Add owl extension (raycast#20777) - Update CODEOWNERs - Update synonyms extension (raycast#20879) - Update scira extension (raycast#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (raycast#20906) - [Color Picker] Fix Convert Color command (raycast#20913) - Update v0-by-vercel extension (raycast#20923) - Update CODEOWNERs - Add v0-by-vercel extension (raycast#20792) - Add `.gitattributes` & get rid of `\r\n` (raycast#20498) - [Brand Icons] Add support for creating social badges through cross-extension (raycast#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (raycast#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (raycast#20885) - Update certificate-viewer extension (raycast#20894) - Update CODEOWNERs - Add yap extension (raycast#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (raycast#20427) - Update CODEOWNERs - Add emojis-com extension (raycast#20875) - Add dodo-payments extension (raycast#20669) - Update CODEOWNERs - Add twingate extension (raycast#20580) - Update CODEOWNERs - Update brave-search-with-results extension (raycast#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (raycast#20892) - Update image-wallet extension (raycast#20806) - Add proton-authenticator extension (raycast#20773) - Update CODEOWNERs - Add sharding-tools extension (raycast#20394) - Update CODEOWNERs - Add Save Link extension (raycast#20521) - Update CODEOWNERs - Update display-modes extension (raycast#20260) - Update CODEOWNERs - Update craftdocs extension (raycast#19976) - Update CODEOWNERs - Update aerospace extension (raycast#20847) - Update aws extension (raycast#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (raycast#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (raycast#20493) - Update at-profile extension (raycast#20853) - Update aws extension (raycast#20856) - Update grammari-x extension (raycast#20848) - Update preferences.md (raycast#20855) - Update youtrack extension (raycast#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (raycast#20553) - Update CODEOWNERs - Add kiro extension (raycast#20790) - Update freeagent extension (raycast#20844) - [Badges] Add shortcut for picking logo (raycast#20849) - Update CODEOWNERs - Update svgl extension (raycast#20852) - Add docklock-plus extension (raycast#20419) - Update slugify-file-folder-names extension (raycast#20528) - Update CODEOWNERs - Add freeagent extension (raycast#20828) - Update CODEOWNERs - Update aws extension (raycast#20809) - Update CODEOWNERs - Add sefaria extension (raycast#20378) - Update CODEOWNERs - Add tokenizer extension (raycast#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (raycast#20817) - Add ag-audioflow extension (raycast#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (raycast#20830) - Update CODEOWNERs - Adding new social platforms (raycast#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (raycast#20813) - [GitLab] Add windows support (raycast#20824) - Update raindrop-io extension (raycast#20820) - Update CODEOWNERs - Update timezone-buddy extension (raycast#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (raycast#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (raycast#19456) - Fix token expired auth flow in SendAI extension (raycast#20711) - Update CODEOWNERs - Add commit-issue-parser extension (raycast#20395) - Update CODEOWNERs - Add ozbargain-deals extension (raycast#20288) - Update mermaid-to-image extension (raycast#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/cs/source/extensions/extensions/scheduler/node_modules/.bin:/Users/cs/source/extensions/extensions/node_modules/.bin:/Users/cs/source/extensions/node_modules/.bin:/Users/cs/source/node_modules/.bin:/Users/cs/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/opt/homebrew/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cs/source/extensions/extensions/scheduler/node_modules/.bin:/Users/cs/source/extensions/extensions/node_modules/.bin:/Users/cs/source/extensions/node_modules/.bin:/Users/cs/source/node_modules/.bin:/Users/cs/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/opt/homebrew/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cs/Documents/Docs/Settings/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/usr/local/share/dotnet:~/.dotnet/tools:/Users/cs/Documents/Docs/Settings/bin:/opt/homebrew/opt/fzf/bin:/Users/cs/.lmstudio/bin:/Users/cs/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand:/Users/cs/.lmstudio/bin (raycast#20458) - Update system-monitor extension (raycast#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (raycast#20558) - Update CODEOWNERs - Update wol extension (raycast#20601) - Update CODEOWNERs - Add google-lens extension (raycast#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (raycast#20747) - Update visual-studio-code extension (raycast#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (raycast#20563) - Add dia-skills extension (raycast#20548) - Update letterboxd extension (raycast#20615) - end-of-life - Windows support (raycast#20701) - Gemini/updatemodels-July (raycast#20662) - Fix: Support currency format in transaction amount validation (raycast#20399) - Update CODEOWNERs - feat: Update Rewind Icon (raycast#20744) - Update CODEOWNERs - Update hypersonic extension (raycast#20462) - Update CODEOWNERs - Update grok-ai extension (raycast#20734) - Add network-proxy extension (raycast#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (raycast#20460) - Update defbro extension (raycast#20367) - Show Artist\'s name when liking current track (raycast#20583) - Update wechat-devtool extension (raycast#20668) - Add character tabulation to Unicode Symbols extension (raycast#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (raycast#20168) - Update nusmods extension (raycast#20625) - Update quick-notes extension (raycast#20569) - Update CODEOWNERs - Deleted directory (raycast#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (raycast#20749) - Renames the extension from "hoarder" to "karakeep". (raycast#20113) - Update pr-bot.ts (raycast#20775) - Update CODEOWNERs - Update pomodoro extension (raycast#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (raycast#20221) - Update CODEOWNERs - Add VLC extension (raycast#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (raycast#20702) - Update Project Hub Extension - Add Recent Projects Section (raycast#20561) - Update arc extension (raycast#20761) - Update extension (raycast#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (raycast#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (raycast#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (raycast#20626) - Add `Host.io` extension - get full domain data for any domain (raycast#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (raycast#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (raycast#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (raycast#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (raycast#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (raycast#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (raycast#20502) - Update youversion-suggest extension (raycast#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (raycast#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (raycast#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (raycast#20357) - Deprecate Ghost Docs Extension (raycast#20690) - Update CODEOWNERs - author update (raycast#20705) - [Badges][Brand Icons] Bugfixes & improvements (raycast#20545) - Update public_raycast_extensions.txt (raycast#20688) - Update CODEOWNERs - Update pieces-raycast extension (raycast#20296) - feat[Backstage plugin]: configurable Backstage API URL (raycast#20398) - Update whisper-dictation extension (raycast#20482) - Update CODEOWNERs - Update endoflife (raycast#20651) - Update T3 chat\'s icon (raycast#20599) - feat(scheduler): initial commit
* Update scheduler extension - update description - update readme file - fix linting - introduce more schedule types 15 mins, 30 mins, hourly and custom - Add xpf-converter extension (#21448) - Update CODEOWNERs - Update CODEOWNERs - Add zendesk-admin extension (#20763) - Add yr-weather-forecast extension (#21354) - Update CODEOWNERs - Add `Apify` extension - List Actors + List Runs (#21467) - Update CODEOWNERs - [Forked Extensionis] Run local Git commands before requesting APIs (#21457) - Update circleback extension (#21459) - [zed-recent-projects] Handle new sqlite database schema 28 (#21447) - Fixed deprecated Jira API issue. (#21452) - Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (#21395) - Update `Productboard` extension - View `Objectives` + Modernize (#21450) - Update CODEOWNERs - Stripe: add support for managing customers and subscriptions (#21135) - Update CODEOWNERs - [Font Awesome] Add Windows Support (#21433) - Update CODEOWNERs - Update arxiv extension (#21033) - Update CODEOWNERs - [YouTube Companion] Add Windows Support and bump dependencies (#21436) - Update CODEOWNERs - [Forked Extensions] Add support for create extensions (#21364) - Add whentomeet extension (#20675) - Update CODEOWNERs - Add Circleback extension (#21391) - Update CODEOWNERs - update packages and add option to exit raycast after cleaning link (#21269) - Update CODEOWNERs - Add tuneblade extension (#21350) - Update wechat-devtool extension (#21399) - Update CODEOWNERs - feat(KeepassXC): add windows support. (#21430) - Add Qovery extension (#21255) - Update CODEOWNERs - Update raindrop-io extension (#21394) - Update comet extension (#21362) - Update CODEOWNERs - Update cheatsheets-remastered extension (#21376) - Add publora extension (#21372) - Update CODEOWNERs - Update CODEOWNERs - Update `Unsplash` extension - Fixed crash when "Rate Limit" exceeded + Centralized error handling + Removed `node-fetch` (#21406) - [cURL Extension] Add Windows Support (#21427) - [Raindrop.io] Move @sh-cho to past contributors (#21435) - [Update] [Things] Add project update/delete tools and improve type safety (#21416) - Update obsidian-link-opener extension (#21443) - Update zed-recent-projects extension to use latest sqlite Zed schema (#21180) - Fix Jira extension: JQL error (#21429) - Docs: update for the new API release - Update `Manotori` extension - Support Windows! + View DNS Zones + View DNS Records + Create DNS Record (#21370) - Update github extension (#21381) - Update docker extension (#21398) - Update Advanced Replace for regex transforms and entry options (#21409) - Update deepwiki extension (#21400) - Update meta-music extension (#21417) - Update CODEOWNERs - Update `Opera` extension - Fix: would show as not installed due to changed path + Add better error handling when dealing with `AppleScript` - Modernize to use latest Raycast configuration + Removed `run-applescript` (#21421) - Update instagram media downloader extension (#21422) - Update CODEOWNERs - Update `Proxmox` extension - show status in `tooltip` + token is now password + modernize to use latest Raycast config (#21349) - Update CODEOWNERs - Add red-note-post-viewer extension (#21315) - Fix documentation for screenshot extension: capture-to-clipboard command (#21311) - Update flibusta-search extension (#21327) - Mention Forked Extensions in dev doc (#21158) - Update CODEOWNERs - Fix todoist extension: Setting due date and time (#21331) - Update CODEOWNERs - Add plexus extension (#21289) - Update CODEOWNERs - Add r2-uploader extension (#21215) - Cursor Agents: Add a new tool to get back all repositories that are s… (#21337) - Update CODEOWNERs - [cursor-agents] Made `ref` optional in the agent launch form (#21334) - Cursor: Few smaller fixes (#21333) - Add error handling for launchCommand (#21332) - Update CODEOWNERs - Cursor Agents (#21328) - Update CODEOWNERs - Update memos extension (#21213) - Release more extensions on Windows (#21324) - Update CODEOWNERs - Update google-chrome extension (#21235) - Add lockfiles and registry rules to copilot instructions (#21254) - docs: update documentation (#21325) - Update CODEOWNERs - [Gandi] New Extension (#21120) - Update RAE Dictionary extension with latest improvements (#21307) - Update CODEOWNERs - Add `Visitor Queue` extension - View "Data Views" + View "Leads" + View "Contacts" (Windows supported!) (#21322) - Update zeabur extension (#21321) - Update CODEOWNERs - Add music-assistant-controls extension (#21249) - Update CODEOWNERs - Add ChartMogul extension (#21251) - [google-chrome-profiles] Refactor Chrome profile opening into dedicated no-view commands (#20623) - Fix incorrect error message in GitHub Enterprise issues search (#21231) - Update CODEOWNERs - Add hebrew-date-zmanim extension (#21292) - Update CODEOWNERs - Add atomberg-raycast-extension extension (#21185) - Improve error handling in GitHub Copilot extension (#21308) - feat(add-expense): Add "Category" selection dropdown to "Add Expense" form (#21224) - feat(shell-history): add option to reverse history order (#21304) - Update CODEOWNERs - Add vanishlink extension (#20996) - Revert "Renaming metadata images (#21305)" (#21306) - Update brreg extension (#21169) - Update brave-search-with-results extension (#20916) - [Farcaster] cleanup and migration (#21299) - Renaming metadata images (#21305) - Fix `pr-bot` for detecting touched extensions (#21250) - Update CODEOWNERs - Add Windows support and update dependencies (#21282) - Fix GitHub Copilot instructions to provide actionable code suggestions without character escaping (#21276) - Update CODEOWNERs - Update `solidtime` extension - use custom (self-hosted) URL + handle errors + 2 EmptyViews (#20602) - [Forked Extensions] Improve Sync actions (#21294) - [Bitwarden] Sync vault on command launch (#21300) - Update `Tally` extension - update many settings of a Form + fix: crash when no Form title + add shortcut to "Open in Tally" `Action` (#21302) - [Forked Extensions] Fix the fork action (#21281) - Update CODEOWNERs - Add tallinn-transport extension (#20762) - Update CODEOWNERs - [Mozilla Firefox] Refactor and fixes (#20767) - Update CODEOWNERs - [Whimsical]: First version, only AI (#20815) - feat(raindrop-io): prefill add form from launch context (#21261) - Update CODEOWNERs - Fix todoist extension: An error creating task (#21153) - [Forked Extensions] Improve error handlers and toasts (#21222) - Update CODEOWNERs - Update spotify-player extension (#21234) - Update CODEOWNERs - Update ado-search extension (#20586) - Update CODEOWNERs - Add sourcegraph-amp-dash-x extension (#20730) - Update CODEOWNERs - Update dotmate extension (#21129) - Update CODEOWNERs - Add barassistant extension (#21126) - Update `Airtable` extension - precise errors + `Add` Icon to **Bases** & **Fields** + `Add` support for **Personal Access Token** + `Simplify` OAuth + `Modernize` (#21262) - fix(readwise-reader): Use correct URL when opening articles (#21219) - Complete overhaul of "Where Is My Cursor?" extension (#21124) - Update stale PR message and timing settings (#21273) - Update `My Idlers` extension - Add Server (#21256) - Add Windows support and update dependencies (#21260) - [MapleStory.gg] Routine maintenance (#21266) - Update CODEOWNERs - Fuelx: Override @coinbase/wallet-sdk and cbw-sdk versions (#21247) - Add comprehensive GitHub Copilot instructions for extension reviews (#21243) (#21244) - Update polymarket extension (#21236) - Add AI tools to GitHub Copilot extension for task creation and repository management (#21228) - kill-process: Add support for Windows (#21240) - Gate some more extensions for Windows (#21239) - Fix formatting in README.md for GitHub Copilot (#21226) - Update CODEOWNERs - Add GitHub Copilot extension (#21225) - Update CODEOWNERs - Add Mobius Materials extension (#21136) - [Installed Extensions] Use Raycast buitl-in `Action.CopyToClipboard` (#21216) - notion: Fix opening page on windows (#21205) - Update CODEOWNERs - Update CODEOWNERs - Update spotify-player extension (#21208) - Add fuelix extension (#21067) - Update copy-path extension (#21168) - Update `MailerSend` extension - View Domain Webhooks (#21194) - [Forked Extensions] Polish `Sync Fork` & fix Git path for Windows (#21204) - Update freeagent extension (#21203) - Update One Time Password (#20176) - [Language Detector] Add support for internet slangs (#21201) - Docs: update for the new API release - Update CODEOWNERs - Vercel/Vercast: Bump deps, make available on Windows (#20758) - Update CODEOWNERs - apple-maps-search - Windows support (#20700) - Update roblox extension (#18919) - [Forked Extensions] Fix `Sync Fork` and check Git executable file (#21187) - Update CODEOWNERs - Whois: Add windows support (#20759) - Add \'Windows\' to exempt PR labels in stale.yml (#21176) - feat: Rube MCP Server added to the registry (#21146) - Update CODEOWNERs - Add `Lemon Squeezy` extension - List all orders in all your stores + List all products in all your stores (#21115) - Update awork extension (#21178) - Add cheatsheets-remastered extension (#20991) - Update CODEOWNERs - Add leap-new extension (#21175) - Update CODEOWNERs - Update `Console Dev` extension - Major Rewrite + Support Windows + Fix Parser (#21036) - Update CODEOWNERs - Add luxafor-controller extension (#21082) - Update youversion-suggest extension (#21074) - [Forked Extensions] Sync fork repo with upstream repo on GitHub (#21171) - Update CODEOWNERs - Add shopinfo-app extension (#20884) - Update awork extension (#21040) - Update CODEOWNERs - Update radarr extension (#21118) - Update Fathom Analytics menu bar icon and add shortcut (#21147) - Update CODEOWNERs - Update aave-search extension (#21149) - [Installed Extensions] Add support launching target extension (#21154) - [Steam] Routine maintenance (#21156) - Update ray-clicker extension (#21161) - Update gradient-generator extension (#21163) - Bugfix/issue-18862 MLB Schedule Fix, addition of Standings and Search Players command (#21167) - [Forked Extensions] Add support for Windows & improvements (#21060) - Update CODEOWNERs - Update CODEOWNERs - Update copy-path extension (#21134) - Fix Slack extension: Send message is not working. (#21148) - Update brreg extension (#21151) - Update CODEOWNERs - Update CODEOWNERs - [GitHub] Add Starred Repos command (#21110) - Add monkeytype extension (#21108) - Update CODEOWNERs - ray-so: Add Windows support (#20740) - Update ente-auth extension (#20663) - Update CODEOWNERs - Add obsidian-link-opener extension (#21021) - Update CODEOWNERs - Add crypto-search extension (#21084) - [Home Assistant] Port to windows (#21065) - feat: add [Generate QR Code from Selection] Command for [QR Code Generator] Extension (#20831) - Update CODEOWNERs - Update CODEOWNERs - Update google-chrome extension: Add reload/refresh tab action (#21140) - feat(endel): add Endel extension (#20788) - Update CODEOWNERs - Add chatgpt-search extension (#20721) - Update CODEOWNERs - Fix Jira extension: Deprecated Atlassian API methods (#21057) - Add odoo-companion extension (#21058) - Update brreg extension (#21046) - [spotify-player] Check for duplicate tracks before adding to a playlist (#20617) - Update aws extension (#21016) - ext/media-converter: hotfix: simple quality settings (#21092) - Update `logitech-litra` extension to support devices without a serial… (#21139) - Update CODEOWNERs - [Multilinks] Add Dia browser support (#21128) - Update 1password extension (#21142) - Update todoist extension (#21141) - Update `changedetection.io` extension - Create + Delete + modernize + add EmptyView (#21143) - Update openrouter-models-finder extension (#21100) - Fix a minor typo in video-downloader Installer view (#21102) - Update CODEOWNERs - Add Looma.fm extension with all reviewer feedback addressed (#20781) - Update CODEOWNERs - Add get-cat-images extension (#20964) - Update CODEOWNERs - feat(add-expense): add “Recent” section to “Add Expense” form (#21032) - Update CODEOWNERs - Add typora-note-creator extension (#20851) - Update commit-issue-parser extension (#21050) - [Surge] Routine maintenance (#21098) - [United Nations] Handle SIGTERM gracefully (#21086) - Update search index used in Statamic Docs extension (#21089) - Update CODEOWNERs - feat: support specifying issue type when creating an issue (#21043) - Update naver-search extension (#20235) - [Say] Allow stop saying & handle SIGTERM gracefully (#21081) - Update CODEOWNERs - [Spotify] Fix reading values from undefined (#20986) - Add gradient-generator extension (#21012) - Update CODEOWNERs - Update raycast-surge extension (#20578) - Add openrouter-quick-actions extension (#20958) - Update CODEOWNERs - Add scheduler extension (#20641) - Update CODEOWNERs - Add comet extension (#20632) - Update ray-clicker extension (#21088) - Update todoist extension (#21078) - Update CODEOWNERs - Update ship24-client extension (#21059) - Add openrouter-models-finder extension (#21005) - Update CODEOWNERs - Add zsh-aliases extension (#20985) - Update CODEOWNERs - Add ray-clicker extension (#20979) - Update `Wave` - Enhance `Invoice` to show amounts due and paid + Move "Business Products And Services" to its own file + Add new product or service (#21052) - Update password-generator extension to guarantee presence of character choices (#20976) - Update CODEOWNERs - [Forked Extensions] Initial release (#20968) - Update CODEOWNERs - Update todoist extension (#20984) - Docs: Update the utils docs - Update brreg extension (#21027) - Docs: update for the new API release - feat: adding the calculation time for MOROCCO (#20917) - Update CODEOWNERs - feat(model-context-protocol-registry): linear mcp server (#20895) - [defbro] Dynamic detection of defbro command path (issue #20881) (#20882) - Brew: Close Raycast in case the brew cmd typed in raycast window (#20780) - Hot Fix: Granola authentication to support WorkOS tokens (#21039) - Update CODEOWNERs - Add vixai extension (#20772) - Update lookaway extension (#21038) - Update CODEOWNERs - Bitaxe initial commit (#20750) - Update CODEOWNERs - Update cyberchef extension with custom Instance URL (#20735) - Update duckduckgo-image-search extension (#21034) - 🐛 fix browser-extension for zen browser (#21035) - Update CODEOWNERs - Add positron extension (#20596) - Update CODEOWNERs - Add french-company-search extension (#20865) - Update minio-manager extension (#20999) - Update change case extension (#20960) - Update grammari-x extension (#20998) - Support for scientific notation and decimal encoding in converter (#21011) - Update Claude Code Cheatsheet - Add v1.0.55-v1.0.81 features (#21004) - Update CODEOWNERs - Update trakt-manager extension (#20854) - [Language Detector] Add support for Windows (#20832) - Update quick-git extension (#21001) - Update CODEOWNERs - Update `SwitchHosts` extension - modernize + icons + markdown + add hook + remove `setTimeout`,`node-fetch` (#21017) - Update `Clockify` extension - Select Tag During Start + More Precise Types + Modernize (#21002) - Update `cPanel` extension (#20977) - Update google lens extension (#21019) - Update CODEOWNERs - Add invisible-text-detector extension (#20926) - Update CODEOWNERs - Add word4you extension (#20638) - Update CODEOWNERs - Add radarr extension (#20904) - Update CODEOWNERs - feat(8ball): add preference to choose default action (copy/paste) and… (#20947) - Update CODEOWNERs - Update deepwiki extension (#20955) - Update CODEOWNERs - Update dodo-payments extension (#20956) - Update vercast extension (#20838) - Update CODEOWNERs - Update search-gule-sider extension (#20911) - [Groq] model update and improvements (#20630) - Add support for password protected YubiKeys in yubikey-code (#20938) - [Time Tracking] rename in Edit Form + Modernize (#20922) - [Brand.dev] trigger search via search text (QoL) (#20944) - Update CODEOWNERs - Add unblocked-answers extension (#20696) - Update CODEOWNERs - Add chainscout extension (#20712) - Update CODEOWNERs - tabler: add download actions (#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (#20686) - Update CODEOWNERs - Add jitsi extension (#20680) - Update CODEOWNERs - Add time-calculator extension (#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (#20647) - Update CODEOWNERs - Add synology-download-station extension (#20643) - Add owl extension (#20777) - Update CODEOWNERs - Update synonyms extension (#20879) - Update scira extension (#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (#20906) - [Color Picker] Fix Convert Color command (#20913) - Update v0-by-vercel extension (#20923) - Update CODEOWNERs - Add v0-by-vercel extension (#20792) - Add `.gitattributes` & get rid of `\r\n` (#20498) - [Brand Icons] Add support for creating social badges through cross-extension (#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (#20885) - Update certificate-viewer extension (#20894) - Update CODEOWNERs - Add yap extension (#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (#20427) - Update CODEOWNERs - Add emojis-com extension (#20875) - Add dodo-payments extension (#20669) - Update CODEOWNERs - Add twingate extension (#20580) - Update CODEOWNERs - Update brave-search-with-results extension (#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (#20892) - Update image-wallet extension (#20806) - Add proton-authenticator extension (#20773) - Update CODEOWNERs - Add sharding-tools extension (#20394) - Update CODEOWNERs - Add Save Link extension (#20521) - Update CODEOWNERs - Update display-modes extension (#20260) - Update CODEOWNERs - Update craftdocs extension (#19976) - Update CODEOWNERs - Update aerospace extension (#20847) - Update aws extension (#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (#20493) - Update at-profile extension (#20853) - Update aws extension (#20856) - Update grammari-x extension (#20848) - Update preferences.md (#20855) - Update youtrack extension (#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (#20553) - Update CODEOWNERs - Add kiro extension (#20790) - Update freeagent extension (#20844) - [Badges] Add shortcut for picking logo (#20849) - Update CODEOWNERs - Update svgl extension (#20852) - Add docklock-plus extension (#20419) - Update slugify-file-folder-names extension (#20528) - Update CODEOWNERs - Add freeagent extension (#20828) - Update CODEOWNERs - Update aws extension (#20809) - Update CODEOWNERs - Add sefaria extension (#20378) - Update CODEOWNERs - Add tokenizer extension (#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (#20817) - Add ag-audioflow extension (#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (#20830) - Update CODEOWNERs - Adding new social platforms (#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (#20813) - [GitLab] Add windows support (#20824) - Update raindrop-io extension (#20820) - Update CODEOWNERs - Update timezone-buddy extension (#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (#19456) - Fix token expired auth flow in SendAI extension (#20711) - Update CODEOWNERs - Add commit-issue-parser extension (#20395) - Update CODEOWNERs - Add ozbargain-deals extension (#20288) - Update mermaid-to-image extension (#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/cs/source/extensions/extensions/scheduler/node_modules/.bin:/Users/cs/source/extensions/extensions/node_modules/.bin:/Users/cs/source/extensions/node_modules/.bin:/Users/cs/source/node_modules/.bin:/Users/cs/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/opt/homebrew/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cs/source/extensions/extensions/scheduler/node_modules/.bin:/Users/cs/source/extensions/extensions/node_modules/.bin:/Users/cs/source/extensions/node_modules/.bin:/Users/cs/source/node_modules/.bin:/Users/cs/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/opt/homebrew/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cs/Documents/Docs/Settings/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/usr/local/share/dotnet:~/.dotnet/tools:/Users/cs/Documents/Docs/Settings/bin:/opt/homebrew/opt/fzf/bin:/Users/cs/.lmstudio/bin:/Users/cs/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand:/Users/cs/.lmstudio/bin (#20458) - Update system-monitor extension (#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (#20558) - Update CODEOWNERs - Update wol extension (#20601) - Update CODEOWNERs - Add google-lens extension (#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (#20747) - Update visual-studio-code extension (#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (#20563) - Add dia-skills extension (#20548) - Update letterboxd extension (#20615) - end-of-life - Windows support (#20701) - Gemini/updatemodels-July (#20662) - Fix: Support currency format in transaction amount validation (#20399) - Update CODEOWNERs - feat: Update Rewind Icon (#20744) - Update CODEOWNERs - Update hypersonic extension (#20462) - Update CODEOWNERs - Update grok-ai extension (#20734) - Add network-proxy extension (#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (#20460) - Update defbro extension (#20367) - Show Artist\'s name when liking current track (#20583) - Update wechat-devtool extension (#20668) - Add character tabulation to Unicode Symbols extension (#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (#20168) - Update nusmods extension (#20625) - Update quick-notes extension (#20569) - Update CODEOWNERs - Deleted directory (#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (#20749) - Renames the extension from "hoarder" to "karakeep". (#20113) - Update pr-bot.ts (#20775) - Update CODEOWNERs - Update pomodoro extension (#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (#20221) - Update CODEOWNERs - Add VLC extension (#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (#20702) - Update Project Hub Extension - Add Recent Projects Section (#20561) - Update arc extension (#20761) - Update extension (#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (#20626) - Add `Host.io` extension - get full domain data for any domain (#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (#20502) - Update youversion-suggest extension (#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (#20357) - Deprecate Ghost Docs Extension (#20690) - Update CODEOWNERs - author update (#20705) - [Badges][Brand Icons] Bugfixes & improvements (#20545) - Update public_raycast_extensions.txt (#20688) - Update CODEOWNERs - Update pieces-raycast extension (#20296) - feat[Backstage plugin]: configurable Backstage API URL (#20398) - Update whisper-dictation extension (#20482) - Update CODEOWNERs - Update endoflife (#20651) - Update T3 chat\'s icon (#20599) - feat(scheduler): initial commit * Update CHANGELOG.md and optimise images --------- Co-authored-by: Charles Symons <dev@realitymanagement.com> Co-authored-by: raycastbot <bot@raycast.com>
* Update cheatsheets-remastered extension - v1.1.0 release - chore: update default cheatsheets - chore(icons): improve icon matching with smart patterns - chore(icons): add icon audit script and resolve merge conflict - Merge pull request #1 from smcnab1/chore/cheatsheets-audit-2024-12-19 - chore(cheatsheets): add normalised front-matter to active cheatsheets - chore(cheatsheets): add index.json for active cheatsheets - chore(cheatsheets): archive outdated cheatsheets - chore(cheatsheets): add audit script and dependencies - chore: add github icon - perf: optimize cheatsheet count loading in repository details - fix: improve sync time display in repository manager - fix: ensure lastSyncedAt is properly updated in repository manager - feat: add Favorites filter option - fix: correct slug usage for repository cheatsheet favoriting - feat: enable favoriting for repository cheatsheets - feat: add clickable repository links - feat: add clickable GitHub links for repository files - fix: display proper repository names instead of random IDs - feat: add HTML element processing for repository markdown - cleanup: remove debug section from show-cheatsheets - feat: use custom GitHub PNG icon for repository cheatsheets - debug: add error display and data count debugging - fix: implement proper GitHub SVG icon with white tint - feat: use custom GitHub SVG icon for repository cheatsheets - feat: move sort preference to extension settings - fix: replace sort dropdown with filter dropdown in search bar - fix: ensure consistent type-specific icons and clean subtitles - feat: update filter dropdown labels for better clarity - refactor: remove redundant copy-cheatsheet command - feat: simplify cheatsheet tags with type-specific icons - feat: integrate repository cheatsheets into main cheatsheet view - feat: add sync all repositories functionality to repo manager - feat: complete file exclusion filters for repository imports - feat: complete GitHub API integration for fetching .md files - feat: complete Milestone 1.1.0 - User Repository Basics - feat: move repository description to top of metadata section - fix: use Globe icon instead of Box for public repositories - feat: improve owner profile access in repository details - fix: improve repository list icon display - feat: improve avatar display and add owner profile access - feat: add GitHub owner avatars to repository displays - feat: improve cheatsheet filtering to exclude non-cheatsheet files - feat: enhance repository details page with metadata and cheatsheet listing - feat: implement repository cheatsheet storage and content syncing - feat: integrate GitHub OAuth for repository syncing - feat: enhance repository management with GitHub integration - feat: add Repos Manager command with repository management functionality - Update CHANGELOG.md and optimise images - Remove installation script and associated media files for Cheatsheets Remastered. Update README to include a screenshot section. - Update CHANGELOG to remove Unreleased section - chore: update CHANGELOG & fix state flicker - chore: remove ESLint configuration and update Prettier settings - feat: consolidate commands and update docs - chore: Update google-webfonts & fastify sheets format - fix: Fix README, CHANGELOG & add subtitles - Add files via upload - Update README.md - Add cheatsheets-remastered extension - Update CODEOWNERs - Add invisible-text-detector extension (#20926) - Update CODEOWNERs - Add word4you extension (#20638) - Update CODEOWNERs - Add radarr extension (#20904) - Update CODEOWNERs - feat(8ball): add preference to choose default action (copy/paste) and… (#20947) - Update CODEOWNERs - Update deepwiki extension (#20955) - Update CODEOWNERs - Update dodo-payments extension (#20956) - Update vercast extension (#20838) - Update CODEOWNERs - Update search-gule-sider extension (#20911) - [Groq] model update and improvements (#20630) - Add support for password protected YubiKeys in yubikey-code (#20938) - [Time Tracking] rename in Edit Form + Modernize (#20922) - [Brand.dev] trigger search via search text (QoL) (#20944) - Update CODEOWNERs - Add unblocked-answers extension (#20696) - Update CODEOWNERs - Add chainscout extension (#20712) - Update CODEOWNERs - tabler: add download actions (#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (#20686) - Update CODEOWNERs - Add jitsi extension (#20680) - Update CODEOWNERs - Add time-calculator extension (#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (#20647) - Update CODEOWNERs - Add synology-download-station extension (#20643) - Add owl extension (#20777) - Update CODEOWNERs - Update synonyms extension (#20879) - Update scira extension (#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (#20906) - [Color Picker] Fix Convert Color command (#20913) - Update v0-by-vercel extension (#20923) - Update CODEOWNERs - Add v0-by-vercel extension (#20792) - Add `.gitattributes` & get rid of `\r\n` (#20498) - [Brand Icons] Add support for creating social badges through cross-extension (#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (#20885) - Update certificate-viewer extension (#20894) - Update CODEOWNERs - Add yap extension (#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (#20427) - Update CODEOWNERs - Add emojis-com extension (#20875) - Add dodo-payments extension (#20669) - Update CODEOWNERs - Add twingate extension (#20580) - Update CODEOWNERs - Update brave-search-with-results extension (#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (#20892) - Update image-wallet extension (#20806) - Add proton-authenticator extension (#20773) - Update CODEOWNERs - Add sharding-tools extension (#20394) - Update CODEOWNERs - Add Save Link extension (#20521) - Update CODEOWNERs - Update display-modes extension (#20260) - Update CODEOWNERs - Update craftdocs extension (#19976) - Update CODEOWNERs - Update aerospace extension (#20847) - Update aws extension (#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (#20493) - Update at-profile extension (#20853) - Update aws extension (#20856) - Update grammari-x extension (#20848) - Update preferences.md (#20855) - Update youtrack extension (#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (#20553) - Update CODEOWNERs - Add kiro extension (#20790) - Update freeagent extension (#20844) - [Badges] Add shortcut for picking logo (#20849) - Update CODEOWNERs - Update svgl extension (#20852) - Add docklock-plus extension (#20419) - Update slugify-file-folder-names extension (#20528) - Update CODEOWNERs - Add freeagent extension (#20828) - Update CODEOWNERs - Update aws extension (#20809) - Update CODEOWNERs - Add sefaria extension (#20378) - Update CODEOWNERs - Add tokenizer extension (#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (#20817) - Add ag-audioflow extension (#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (#20830) - Update CODEOWNERs - Adding new social platforms (#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (#20813) - [GitLab] Add windows support (#20824) - Update raindrop-io extension (#20820) - Update CODEOWNERs - Update timezone-buddy extension (#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (#19456) - Fix token expired auth flow in SendAI extension (#20711) - Update CODEOWNERs - Add commit-issue-parser extension (#20395) - Update CODEOWNERs - Add ozbargain-deals extension (#20288) - Update mermaid-to-image extension (#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/sammcnab/.npm/_npx/daafed3b81e85078/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/extensions/cheatsheets-remastered/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/extensions/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/node_modules/.bin:/Users/sammcnab/github/node_modules/.bin:/Users/sammcnab/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/sammcnab/.nvm/versions/node/v22.18.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/sammcnab/github/raycast-extensions/extensions/cheatsheets-remastered/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/extensions/node_modules/.bin:/Users/sammcnab/github/raycast-extensions/node_modules/.bin:/Users/sammcnab/github/node_modules/.bin:/Users/sammcnab/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/sammcnab/.nvm/versions/node/v22.18.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/sammcnab/.nvm/versions/node/v22.18.0/bin:/opt/homebrew/opt/openjdk@17/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Applications/Wireshark.app/Contents/MacOS:/usr/local/sbin:/Users/sammcnab/.nvm/versions/node/v22.18.0/bin:/Users/sammcnab/Library/pnpm:/opt/homebrew/opt/openjdk@17/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:/Users/sammcnab/Library/Python/3.9/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:/Users/sammcnab/Library/Python/3.9/bin (#20458) - Update system-monitor extension (#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (#20558) - Update CODEOWNERs - Update wol extension (#20601) - Update CODEOWNERs - Add google-lens extension (#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (#20747) - Update visual-studio-code extension (#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (#20563) - Add dia-skills extension (#20548) - Update letterboxd extension (#20615) - end-of-life - Windows support (#20701) - Gemini/updatemodels-July (#20662) - Fix: Support currency format in transaction amount validation (#20399) - Update CODEOWNERs - feat: Update Rewind Icon (#20744) - Update CODEOWNERs - Update hypersonic extension (#20462) - Update CODEOWNERs - Update grok-ai extension (#20734) - Add network-proxy extension (#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (#20460) - Update defbro extension (#20367) - Show Artist\'s name when liking current track (#20583) - Update wechat-devtool extension (#20668) - Add character tabulation to Unicode Symbols extension (#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (#20168) - Update nusmods extension (#20625) - Update quick-notes extension (#20569) - Update CODEOWNERs - Deleted directory (#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (#20749) - Renames the extension from "hoarder" to "karakeep". (#20113) - Update pr-bot.ts (#20775) - Update CODEOWNERs - Update pomodoro extension (#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (#20221) - Update CODEOWNERs - Add VLC extension (#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (#20702) - Update Project Hub Extension - Add Recent Projects Section (#20561) - Update arc extension (#20761) - Update extension (#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (#20626) - Add `Host.io` extension - get full domain data for any domain (#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (#20502) - Update youversion-suggest extension (#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (#20357) - Deprecate Ghost Docs Extension (#20690) - Update CODEOWNERs - author update (#20705) - [Badges][Brand Icons] Bugfixes & improvements (#20545) - Update public_raycast_extensions.txt (#20688) - Update CODEOWNERs - Update pieces-raycast extension (#20296) - feat[Backstage plugin]: configurable Backstage API URL (#20398) - Update whisper-dictation extension (#20482) - Update CODEOWNERs - Update endoflife (#20651) - Update T3 chat\'s icon (#20599) - Update CODEOWNERs - feat: add windows support mymind extension (#20239) - [Mastodon] Add support for Windows (#20448) - [NeoDB] Add support for Windows (#20471) - Update CODEOWNERs - [NUSMods] Add support for Raycast Windows (#20240) - [Todoist] Windows support (#20487) - Update gdrive homepage url (#20608) - Update CODEOWNERs - Arc: Fix trying to open a tab with `open` (#20579) - Update Zerion author to original one (#20582) - Update CODEOWNERs - Update zerion author (#20581) - feat: Backstage plugin supports static token (#20383) - [groq] Remove Llama Guard 4 12B 128K (#20507) - Update CODEOWNERs - Add preference to toggle default reuse open GitHub search tab (resolves #20488) (#20489) - Add weread-sync extension (#20205) - Docs: update for the new API release - Update CODEOWNERs - Add cloudflare-email-routing extension (#20305) - Update dpm-lol extension (#20491) - macosicons: fix API error handling for non-JSON responses (#20172) - Update CODEOWNERs - [Perplexity] Add Perplexity desktop app support to extension (#20393) - Parse Zed local workspace paths from binary format correctly (#20086) - Docs: update for the new API release - Update prepare-an-extension-for-store.md (#20473) - Update wechat-devtool extension (#20406) - [Update] [IP Geolocation] Optimize extension icons (#20467) - Update CODEOWNERs - [World Clock] Avoid accessing the `.map` function on possibly undefined data (#20469) - Update CODEOWNERs - [Update] [Easy New File] Support Default Directory (#20449) - update pr merge dates (#20457) - Update grammaring extension (#20464) - [raycast2github] Fix name mapping (#20472) - Update CODEOWNERs - Add extension for opening new instances of apps (#20432) - Update CODEOWNERs - Update remove-paywall extension (#20331) - Update CODEOWNERs - Update registries to use the official npmjs registry (#20440) - Add paste-to-markdown extension (#19999) - Update CODEOWNERs - Update vscode-project-manager extension (#20446) - [Easings] Add spring animations (#20445) - Update CODEOWNERs - Update groq extension (#20439) - [Brand Icons] Use `pacote` for downloading & extracting icons (#20391) - [espanso] support import (#20400) - Update secret-browser-commands extension (#19948) - Fixing issue in ext/beehiiv (#20437) - Update CODEOWNERs - Update change-case extension (#20002) - Update ideate extension (#20063) - Update `Appwrite` extension - DB, Storage, User Enhancements (#20386) - Update `Oracle Cloud (OCI)` extension - implement provider w/ context + basic objectstorage command (#20405) - [valkey commands search] Migrate to useFetch and group the commands (#20421) - Update `Neon` extension - add project, delete projects + Modernize to use latest Raycast config (#20402) - [espanso] add binary path option (#20280) - [Larajobs] update metadata image + chore (#20417) - feat(readwise-reader:) add option to open in Reader desktop app (#20424) - Update URL unshortener (#20385) - Update granola extension (#20384) - feat(readwise-reader): add ability to include tags when saving links (#20388) - Update background-sounds (#20387) - Update ScreenOCR (#20408) - Update instagram-media-downloader extension (#20413) - Update yu-gi-oh-card-lookup extension (#20414) - Update CODEOWNERs - Add pdf-compression extension (#20194) - Update CODEOWNERs - Add control kef extension (#20127) - Update pr-bot.ts (#20376) - Update Tasklink extension (#20375) - Update CODEOWNERs - Added open-in-textmate extension (#20266) - Update CODEOWNERs - Update ente-auth extension (#20122) - [SteamGridDB] Add support for Windows (#20364) - Update CODEOWNERs - [Update] [DocSearch] Add TailwindCSS v4, Next.js, MassTransit and Pinia documentations (#20254) - Update CODEOWNERs - FocusFLOW (#20214) - Update repology-search (#20370) - Update CODEOWNERs - Add WeChat DevTool extension (#20222) - Update URL-unshortener (#20136) - [ProtonDB] Add support for Windows (#20338) - Fix GIF Search extension updates (#20360) - PR bot assignee constant (#20358) - run pr bot on ready to review (#20356) - [TourBox] Add support for Windows (#20337) - add debugging for draft pr review assigning (#20353) - Update `Name.com` extension - ✨ AI Enhancements (add 3 Tools) + Migrate API (Legacy v4 to Core v1) + Modernize (#20340) - PR bot should check PR files in existing extensions too (#20352) - Update CODEOWNERs - Add console logs to PR Bot for testing (#20351) - Add rounding-number extension (#20232) - Update CODEOWNERs - toggle-desktop-visibility for mac os 26 tahoe (#20225) - Update zipline extension (#20336) - Update CODEOWNERs - Update slack extension (#19219) - Update FHIR extension (#20329) - Update CODEOWNERs - Update CODEOWNERs - [Easy Dictionary] Remove the unused icon file (#20333) - Update aerospace extension - Changed the icon to the new design. (#20342) - things: handle JXA scripts with no result (#20341) - Update trenit extension (#20215) - Apply "AI Extension" label for new extensions as well as existing ones (#20306) - Update `Short.io` extension - `search-links` now allows you to view links independent of default + fix: `shorten-link-with-domain` persists Default Domain properly (#20327) - Create new message when no number match found (#20326) - Update CODEOWNERs - Support for OTP codes that include a hyphen (#20236) - Update anytype extension (#20227) - Update CODEOWNERs - Update ray-boop extension (#20231) - Update easydict extension (#20190) - Update CODEOWNERs - Add quick-jump extension (#20050) - Update CODEOWNERs - Add zipline extension (#20157) - Update CODEOWNERs - Add ship24-client extension (#20170) - Update Raycast X link in README (#20318) - things: improve project detection to not depend on existing projects (#20300) - noteplan 3 | fix #20116 Daily plan not displaying (#20308) - Update CODEOWNERs - feat(notion): show properties in page preview (#20111) - Update CODEOWNERs - fix: typescript error handling (#20298) - Update spotify-player extension (#20178) - Update CODEOWNERs - New Extension : Percentage Calculator (#20195) - Update CODEOWNERs - Update g-cloud extension (#20210) - Update Lightshot Gallery extension (#20246) - [HoudahSpot Search] fix fallback text not used (#20295) - Update CODEOWNERs - Update browser-bookmarks extension (#20187) - Add trip search command to Norwegian Public Transport extension (#20226) - Update CODEOWNERs - Add FHIR extension (#20163) - Update CODEOWNERs - Update xecutor extension (#20159) - Add climbing-grade-converter extension (#20134) - Update Cider extension (#20241) - Update CODEOWNERs - change author (#20289) - things: enhance error reporting + troubleshooting hints (#20224) - [Update] [Hide Files] new icon style (#20253) - [Update] [Bing Wallpaper] Add refresh interval (#20249) - Update CODEOWNERs - [Update] [Browser tabs] new icon style (#20251) - [Update] [Maven Central Repository] new icon style (#20252) - Add clipyai extension (#19740) - Update CODEOWNERs - Update CODEOWNERs - Update `Larajobs` extension - filter by Type, Salary, Tag (#20286) - [zed-recent-projects] Adds a preference checkbox to use the Zed development Sqlite database (#19803) - Add Metabase AI Tools (#17673) - Update CODEOWNERs - Add squeeze extension (#20083) - Update CODEOWNERs - Update CODEOWNERs - Add `Upstash` extension - List Redis Databases, View Details & Usage, Create Database + List Vector Indices, Create Index, Delete Index (#20274) - Update `HoudahSpot Search` extension - fix: text passed as "undefined" when Argument is empty in fallback mode + add `metadata` image + Modernize + `chore` (#20250) - [Spaceship] Toggle Domain Transfer Lock + Get Domain Auth Code + Add AAAA, CNAME DNS Records (#20243) - Update `Keygen` extension - List & Add Products + Color License based on Status + show: Expiry, Scheme, Valid in License (#20228) - Update `Sanity` extension - update logo + modernize (#20220) - Update CODEOWNERs - Update `MailerSend` extension - View API Quota + Filter Domain Activity by Type + View, Rename, Toggle (Pause/Unpause) Tokens (#20197) - [Say] Fix duplicate lines in Configure Say command (#20245) - [Update][Are.na] show status accessory w/ color in search channels + remove auto-generated types (#20265) - Update CODEOWNERs - [ccusage]: fix(#20056) resolve custom npx path issue in ccusage CLI commands (#20262) - update[send-ai]: added new features in the extension (#20273) - [Image Modification] Bug Fixes (#20282) - Update curl extension (#20284) - Update f1-standings extension (#20217) - Update CODEOWNERs - Add csfd extension (#18344) - Docs: Update the utils docs - Update CODEOWNERs - Add rewiser extension (#20023) - Update `Resend` extension - Update Icons + Modernize to use latest config + chore: remove `node-fetch`, `cross-fetch` (#20179) - Update CODEOWNERs - Major update to Kaleidoscope extension, see README and CHANGELOG. (#20076) - [catppuccin] update data source (#20216) - update extension raycast-Gemini - safety-setting (#19277) - Update CODEOWNERs - Add ray-boop extension (#20108) - Update CODEOWNERs - [Spotify Player] Fix for Search command not working issue (#20183) - Update CODEOWNERs - Add new raycast extension - SendAI (#20104) - things: fix project update actions (#20161) - Update `Wave` extension - Add new customers through `Form` + Remove customers after confirming (`Alert`) + Move "Business Customers" to its own file + Modernize to latest config (#20185) - Spotify Lyric Finder Improvements (#20154) - Update CODEOWNERs - Add certificate-viewer extension (#20110) - Update CODEOWNERs - Add markdown-preview extension (#20052) - Update CODEOWNERs - Add somafm-for-raycast extension (#20027) - feat: add getThumbnailUrl to optimize image loading and update components to use it (#20177) - Update CODEOWNERs - feat: add resend wallpaper extension (#20169) - Update CODEOWNERs - Update `Polar` extension - View Products and their Media + Optionally BYOK + Remove `node-fetch` (#20156) - Update CODEOWNERs - Add Instant Translate feature to Google Translate extension (#20093) - Add quick-quit extension (#19869) - extensions/messages: docs: add note about automation permissions for sending messages (#20148) - Update `Doppler` extension - View Logs of a Config + "Open In Doppler" component (#20164) - Try/catch AI label PR bot (#20165) - Auto-label AI extensions in PRs (#20160) - Update CODEOWNERs - Update apple-notes extension (#19613) - Update CODEOWNERs - Add roblox-creator-docs extension (#20024) - Update music extension (#19654) - Update CODEOWNERs - Update apple-notes extension (#20138) - Update zeabur extension (#20140) - Update `radicle` extension - remove need for `radicle-httpd` (#20141) - Update CODEOWNERs - Update spotify-player extension (#19950) - Update CODEOWNERs - Add windsurf extension (#20046) - Add stacks extension (#19863) - Update CODEOWNERs - Add markdown-styler extension (#19967) - Update CODEOWNERs - Update CODEOWNERs - Update `Pocket` extension - add an Alert in Show informing users to Export + required url in create (#20126) - Update `Obsidian Tasks` add `preference` to show description in details markdown (List Tasks) (#20098) - [create-link]: Add customizable templates and tab selection feature (#20120) - Update preferences.md (#20131) - Update CODEOWNERs - [Get SSH Keys] OpenInFinder + Key as Icon (#20117) - No `-lossless` flag on `dwebp` (#20125) - feat: add Gen-PDF MCP Server to the registry (#19924) - Update CODEOWNERs - Update CODEOWNERs - Add tidal extension (#19784) - Add image-shield extension (#19969) - Update CODEOWNERs - Update cobalt extension (#20090) - Update sequoia-tiling extension (#20101) - Update lookaway extension (#20092) - Update media-converter extension: proper user preferences (#20081) - docker,dockerhub,drafts,ensk-is,seo-lighthouse: Update to use newer version of `tar-fs`. (#20068) - Update CODEOWNERs - Add Default Formality Configuration Option (#19656) - Update CODEOWNERs - Add sidecar extension (#19980) - [GitLab] Group milestones on issue and mr create form (#20072) - Update CODEOWNERs - Update CODEOWNERs - Update `Short.io` extension - Add Domain inside `shorten-link-with-domain` + Modernize extension to use latest Raycast config (#20070) - fix: replace youtube-transcript lib (#20080) - Add sequoia-tiling extension (#19877) - Update CODEOWNERs - Update github extension (#20073) - Update CODEOWNERs - Support device name for audio device selection (#19995) - New: Password.Link Extension (#19996) - Update CODEOWNERs - Add clipmate extension (#19958) - Update CODEOWNERs - Add regex-batch-renamer extension (#19849) - [Bitwarden] Catch OTPAuth initialization (#20064) - Update CODEOWNERs - Update quick-notes extension (#19965) - Update linkding extension (#19756) - Update media-converter extension (#20061) - Update CODEOWNERs - Update docker extension (#19817) - [ChatGPT Quick Actions] API pricing fix (#19964) - Update raycast-zoxide extension (#20032) - Update whisper-dictation extension (#19989) - Browser Bookmarks: Add support for Dia and Ghost Browser (#19971) - Update CODEOWNERs - Add duan-raycast-extension extension (#19765) - Update CODEOWNERs - Add ideate extension (#19791) - Update CODEOWNERs - Update transmission extension to fix error on showing a list (#19809) - Update CODEOWNERs - Update Markdown to ADF library (#19972) - Update CODEOWNERs - DotMate - Raycast Extension for Dotfile Management (#19819) - Update media-converter extension: better installation (#19808) - Update wp-bones extension (#19953) - Update CODEOWNERs - Update CODEOWNERs - Update project-code-to-text extension (#19921) - Add `MailerSend` extension - View Domains, View Domain Activity (24 hours), View Templates, View Users (#20022) - Update CODEOWNERs - Add psn extension (#19914) - Update CODEOWNERs - Add minio-manager extension (#19906) - Fix Slack extension YAML (#19865) - Better handling of cloc command to show statistics (#20040) - Aerospace - add monitor name to switch apps action (#19899) - Updated Font Awesome version, added support for more icon types (#19963) - Update CODEOWNERs - Update translate extension (#19933) - Update openrouter-model-search extension (#20028) - [ccusage] Hotfix critical React Hooks Rules violations and improve loading states (#20033) - [Google Translate] Show auto detected language in Quick Translate (#20036) - [Bitwarden] fix: check if user can access BrowserExtension (#20029) - Update CODEOWNERs - Update tailwindcss extension - add default action preference to `Search Colors` command (#19707) - Add claude-code-cheatsheet extension (#19828) - Update Repository Manager (#19994) - [ccusage] Major v2.0.0 upgrade: AI extension support and architecture refactor (#20019) - [Google Translate ] fix quick translate with Chinese auto detected language (#19991) - Update CODEOWNERs - Add redirect-trace extension (#19854) - Update workouts extension (#20018) - Update raycast-wallpaper extension (#20017) - Fix Slack powershell script (#20014) - Linear: Fix SVGs to include xmlns (#20012) - Feat: Add permalink to Dub Link page (#20004) - [Google Translate] Improve UX for quick language change in Translate Form (#19990) - Update react-native-directory extension (#19992) - [Bitwarden] Catch authenticator initialization error (#19997) - [Dribbble, Uplabs] Remove Dribbble and Uplabs extensions (#19913) - Update youtrack extension (#19983) - Fix Slack extension: search messages from specific user (#19731) - [Daminik] use URL instead of Slug in Preferences (#19934) - Docs: update for the new API release - Update youtrack extension (#19925) - Update workouts extension (#19981) - [Update] [Raycast Wallpaper] More Auto Switch Interval (#19952) - [Update] [Easy New File] Supports Form layout (#19954) - [Google translate] fix Chinese and some other languages (#19957) - [Update] [Life Progress] (#19959) - Update compressx extension (#19966) - Patched breaking API change (#19974) - Update `Coolify` extension - fix: Unable to delete Databases in `Resources` + view `ENVs` of **applications** and **services** (#19940) - [MyIdlers] - Domain, Shared, Reseller and Server are now split into "Active" and "Inactive" sections (#19968) - [Brand Icons] Routine maintenance (#19912) - Update CODEOWNERs - [ccusage] Clean up unused dependencies and exports (#19916) - Add kusto-reference extension (#19836) - Update CODEOWNERs - Make sure extensions use official npm registry (#19911) - Update safari extension (#19829) - Update CODEOWNERs - Housekeep Knip config (#19903) - [Confluence Search] Use the npm official registry (#19901) - Update CODEOWNERs - [ClickUp] persist priority on create (super minor fix) + add some missing icons (#19904) - Update CODEOWNERs - [Gitlab] Add issue filter on issues menu item (#19769) - [Google Translate] add all the languages from google translate, remove flags (#19905) - Release more extensions on Windows (#19896) - Update `SolusVM 2` extension - Reinstall Server + View,Create,Remove Snapshots + Invite,Remove Members (#19900) - Update CODEOWNERs - Add openrouter extension (#19831) - Update CODEOWNERs - Add ccusage extension (#19792) - Update CODEOWNERs - Add open-in-trae extension (#19705) - Update CODEOWNERs - [dust-tt] update auth provider (#19783) - Update CODEOWNERs - Update CODEOWNERs - Update aws extension (#19476) - [Promptlab] Use the npm official registry (#19895) - Update CODEOWNERs - Add loan-calculator extension (#19781) - Update CODEOWNERs - Update CODEOWNERs - [Markdown to Plain Text] Use the npm official registry (#19894) - Update Wifi Password Reveal (#19402) - Update CODEOWNERs - [Bitbucket Search] Use the npm official registry (#19891) - Update CODEOWNERs - [Akkoma] Use the npm official registry (#19893) - Update CODEOWNERs - Update CODEOWNERs - [Find OpenGL Enum] Use npm official registry (#19889) - Add microblog extension (#19777) - Update CODEOWNERs - Add beehiiv extension (#19770) - Update CODEOWNERs - Preview visibility, toast fix, and png w/ background option (#19855) - Folder search/drag n drop (#19841) - Update slugify-file-folder-names extension (#19850) - Update `NameSilo` extension - View Contact Profiles + View & Configure Email Forwards + Modernize (#19871) - Ext/popcorn: Fix stream selection bug, and added more support for other addons (#19873) - Update zeabur extension (#19881) - Update CODEOWNERs - Adds glossary extension (#19502) - Update flush-dns extension (#18964) - Update CODEOWNERs - Add geoconverter extension (#19759) - Add Keboola MCP Server to the Model Context Protocol registry (#19753) - Update CODEOWNERs - Update CODEOWNERs - Bitbucket feature (#19739) - Add nyc-train-tracker extension (#19185) - Update CODEOWNERs - Add popcorn extension (#19823) - Update google-scholar extension (#19796) - Update quick-git extension (#19778) - Update Harpoon extension (#19798) - Update instagram-media-downloader extension (#19789) - Update mozilla icon (#19801) - [Xcode] AI Tools & Improvements (#17875) - Update CODEOWNERs - Add `Keygen` extension - View Licenses & Policies + Create Licenses & Policies (#19802) - Update CODEOWNERs - [ClickUp] allow creating task w/o priority + add OpenInClickUp Action (#19787) - Update `Mixpanel` extension - Support All Server Regions + Update Logo + better Error Handling + Modernize (#19821) - Update CODEOWNERs - Add bookmark/save to queue for Matter (#19434) - Update wip extension (#19837) - Update CODEOWNERs - Update Okta search extension (#19825) - Add image-search extension (#19672) - Update CODEOWNERs - Add chronometer extension (#19295) - Add url-editor-pro extension (#19661) - Update CODEOWNERs - Add shutdown-timer extension (#19650) - Docs: update for the new API release - Docs: Update the utils docs - Update CODEOWNERs - Add AWS Audit Manager and update Amazon Bedrock details in aws-servic… (#19685) - Add Creation Date option for sorting (#19682) - Add clipboard-sequential-paste extension (#19679) - Update CODEOWNERs - Add open-docker extension (#19671) - Cleanup unused lockfile (#19659) - [Hue] Fix certificate handling (#19658) - chore: update icon path in the README.md file (#19773) - Update CODEOWNERs - Update CODEOWNERs - Add `Dokploy` extension - Add Instances then manage services and docker containers (#19668) - Update `Geist UI Components` extension - Modernize + Update Logo + Add Hooks, metadata images (#19775) - add ai incident search to incident.io extension (#19631) - [Hookmark Search] Fix bookmark properties encoding (#19543) - Updated to new version extension (#19358) - Update dexcom-reader extension (#19642) - Add priority levels mapping (#19771) - Docs: update for the new API release - Expected Delivery Date Formatting Overhaul (#19649) - Update `Brand.dev` extension - add fonts, stock, email, phone + remove "verified" + change Browser Action + Modernize (#19645) - Update CODEOWNERs - [WP Plugins] add pagination + add shortcut to "Download" + Modernize (#19683) - Fix search authentication errors - resolves #19400 (#19450) - Update CODEOWNERs - docs: update Shadcn Vue icon path (#19639) - Update shadcn-vue extension (#19637) - Update lucide-icons extension (#19763) - fix: only index field must be required others if not input should fall to defaultValue (#19747) - Update CODEOWNERs - chore: update firecrawl version + add integration parameter (#19725) - Update finderutils extension (#19751) - Update google-scholar extension (#19761) - Docs: update for the new API release - Update web3bio extension (#19629) - [browser-tabs] Fix for Duplicate Tabs Issue (#19665) - [Folder-Search] - Major Improvements: Bug Fixes, Error Handling, Performance (#19663) - Update CODEOWNERs - Update zen-browser extension (#19611) - Fix: Add latest OpenAI models and consolidation system (#19592) - Update CODEOWNERs - Add yomicast extension (#19573) - Add chhoto-url extension (#19567) - [Laravel Herd] (#19733) - Update CODEOWNERs - Update audio-device extension (#19074) - Update code-saver extension (#19687) - Update grammaring extension (#19681) - Update `HetrixTools` extension - Add Status Pages command + modernize to use latest config (#19728) - Update vmware-vcenter extension (#19716) - Update CODEOWNERs - Add force kill to kill-process extension (#19607) - Update docker extension (#19698) - Update CODEOWNERs - Update CODEOWNERs - Add quick-git extension (#19405) - Add copee extension (#19526) - Update CODEOWNERs - Add rize-io-sessions extension (#19677) - Update CODEOWNERs - Add advanced-speech-to-text extension (#19517) - Update CODEOWNERs - Clipsign - extension for creating, saving, and instantly copying your e‑signature (#19453) - Update CODEOWNERs - Update `HubSpot` extension - You can now `copy` some properties of a Contact through new "Copy to Clipboard..." submenu (#19652) - Update project-code-to-text extension (#19676) - Update CODEOWNERs - Update `Country Lookup` - Offline Support since API is now limited + Modernize (#19693) - Update quick-event extension (#19258) - Update CODEOWNERs - Update prism-launcher extension (#19601) - Fix obsidian-raycast bug on note creating (#19635) - Update CODEOWNERs - Add whisper-dictation extension (#19532) - Update CODEOWNERs - Updated the URL for the Prisma MCP server (#19472) - Add open-latest-url-from-clipboard extension (#19624) - Update CODEOWNERs - Update shadcn-ui extension (#19525) - Update CODEOWNERs - Update CODEOWNERs - Improve Flight Details Layout: Combined Times & Side-by-Side Terminal/Gate (#19521) - Add analog-film-library extension (#19514) - Update CODEOWNERs - Add volumio-control extension (#19504) - Update CODEOWNERs - [Color Picker] Fix returned value from callback-launch command (#19619) - [GitHub] Add preference to exclude repositories from other commands (#17468) - Update CODEOWNERs - Add diff-view extension (#19463) - Add kagimcp server (#19568) - [Bitwarden] Fix Authenticator "TypeError: t is not a function" (#19616) - Include Outlook in app description (#19594) - Update CODEOWNERs - add Open Documentation (#19500) - Update sportssync extension (#19483) - Update CODEOWNERs - macosicons: include user applications (#19482) - [Brand Icons] Add compatibility with Simple Icons 15 (#19478) - Docs: update for the new API release - Update prism-launcher extension (#19599) - [United Nations] Maintenance & fix news format (#19584) - Update prism-launcher extension (#19598) - Update CODEOWNERs - Apple reminders/show which list reminder is from (#19343) - Update battery-optimizer extension (#19190) - Update awork extension (#19558) - Update CODEOWNERs - feat: Add history command (#19589) - Update system-monitor extension (#19595) - Update Ext/window sizer (#19580) - Enhanced Date Format Support (#19539) - [TRELLO] Allow for unassigned card and update dependencies (#19519) - Update `Oracle Cloud` extension - (Confirm and) Terminate Instance + Add "Open in OCI" `Action` (#19534) - Update Ext/window sizer (#19541) - Update `Cloudflare` extension - Add A,AAAA,TXT DNS Records + Delete any DNS Record + Improve error handling function + Modernize extension to use latest Raycast config (#19552) - Update wp-cli-command-explorer extension (#19559) - Update CODEOWNERs - Update reverso-context extension (#19452) - Update CODEOWNERs - Add project-code-to-text extension (#18996) - Update CODEOWNERs - Add project-hub extension (#19293) - Update CODEOWNERs - Update GemOptions.tsx (#19136) - Update checksum (#19492) - Update CODEOWNERs - Update united-nations extension (#19528) - Update downloads-manager extension (#19407) - Update CODEOWNERs - Move `josephlou` to past contributors (#19522) - Update aave-search extension (#19366) - Update CODEOWNERs - Add dexcom-reader extension (#19141) - Update CODEOWNERs - Update digitalocean extension addressing issue displaying automated deployments (#19432) - Update Fabric extension - location and tag selection (#19470) - Wikipedia language improvements (#19473) - Update Ext/window-sizer (#19499) - Update CODEOWNERs - Add slugify-file-folder-names extension (#19422) - Update messages extension (#19426) - macosicons: fix lint (#19497) - Update CODEOWNERs - Add google-scholar extension (#19392) - Update CODEOWNERs - Add `SolusVM 2` extension - Manage Servers + View,Update Members + View,Create API Tokens & Settings + View ISOs (#19486) - Update CODEOWNERs - feat: add Anytype MCP Server to the registry (#19506) - Add `Appwrite` extension - Add multiple projects and view various services (#19510) - Update CODEOWNERs - Add foodle-recipes extension (#19084) - Update CODEOWNERs - Add cangjie extension (#19308) - Update CODEOWNERs - feat(google-calendar): create events with natural language duration input (#19317) - Update CODEOWNERs - Improved Category Search & Fixed Budget Details (#19451) - Update qrcode-generator extension (#19455) - Fix Toggle Grayscale exstension (#19236) - Add unix-timestamp-converter extension (#18949) - Update parcel extension (#19466) - Fix Slack emoji search missing scope error - resolves #19441 (#19447) - feat: add Thena MCP entry to official entries (#19379) - Update Ext/Window Sizer (#19459) - [2FA Directory] filter by category (like the Website) + modernize to use latest Raycast config (#19454) - Update CODEOWNERs - Update todoist extension (#19309) - Update CODEOWNERs - [git-repos] Fix issue with the path of the repository (#19440) - Folder search fallback bug fix (#19449) - Update CODEOWNERs - Update CODEOWNERs - Update parcel extension (#19356) - Add fisher extension (#19213) - Update CODEOWNERs - Fix: React Rules of Hooks violation in New Tab command (#19384) - Docs: update for the new API release - Update prompt-stash extension - increase character limit and refactor validations (#19428) - Update stock-tracker extension (#19424) - feat(deepcast): Return to root state preference (#19430) - Update subwatch extension (#19433) - Update CODEOWNERs - Update linkding extension (#19436) - Update media-converter extension (#19385) - Update CODEOWNERs - [Dock] add MenuBar Item + add metadata image + Modernize (#19393) - feat: add Grafana MCP to registry (#19240) - Major improvement to Elgato Key LightsElgato enhancements (#19374) - Update anytype extension (#19418) - Update CODEOWNERs - feat(preferences): Option to Close Raycast After Translation (#19386) - Update mullvad extension (#19382) - Update CODEOWNERs - Update CODEOWNERs - Update stock-tracker extension (#19411) - Update t3-chat extension (#19412) - Update CODEOWNERs - Add Secret Browser Commands extension (#19396) - Update CODEOWNERs - Update linkding extension (#19395) - Update sql-format extension (#19398) - Update zeabur extension (#19413) - Update `Google Books` extension - feat: filter results by category, use `useFetch` for caching + docs: add CHANGELOG + modernize: use latest Raycast config (#19414) - Update Ext/window sizer (#19416) - Update CODEOWNERs - Ability to copy song\'s artist and title (#19368) - Update CODEOWNERs - DEVONthink 4 (#19375) - Add position-size-calculator extension (#19123) - Update CODEOWNERs - Add ratingsdb extension (#19298) - Update Ext/window sizer (#19348) - Update `ClickUp` extension - choose status from Dropdown in \'capture\' (close #19331) + update README (#19370) - Update Extension: Easy New File (#19364) - Updated openpgp version (#19367) - Update CODEOWNERs - Add Claude Sonnet 4 (#19362) - Update CODEOWNERs - Add paste-from-kindle extension (#19275) - Update CODEOWNERs - Ext/appcleaner (#19355) - Update prism-launcher extension (#19346) - Update CODEOWNERs - Update aws extension (#19347) - Update 1bookmark extension (#19350) - Update instagram-media-downloader extension (#19360) - Docs: update for the new API release - Antinote: Support for Setapp version (#19345) - feat(ci): comment when changelog missing (#19305) - Update CODEOWNERs - Update jenkins extension (#19286) - Update prism-launcher extension (#19330) - Docs: update for the new API release - Update downloads-manager extension (#19340) - Update CODEOWNERs - Add open-gem-documentation extension (#18998) - Update miro extension (#18702) - Fix open with IINA action (#19251) - Update CODEOWNERs - Add notes limit for AI usage (#19332) - Update CODEOWNERs - added searching by permissions (#18817) - Update CODEOWNERs - Add Keka extension (#19326) - Updated the Prisma MCP server entry. (#19334) - Update CODEOWNERs - Add AI Budget Tools, Enhanced Natural Language Queries, and Bug FixesF/raynab ai (#18611) - Add azure-icons extension (#19224) - Update CODEOWNERs - Update spotify-player extension (#18815) - Update CODEOWNERs - Update Credits for One Thing Extension (#19303) - Ext/penflow ai (#18799) - Docs: update for the new API release - Update clarify extension (#19222) - Update CODEOWNERs - Add grammaring extension (#19220) - Update CODEOWNERs - Add instagram media downloader extension (#19191) - Add paperless-ngx MCP server entry to the registry (#19300) - Update cloud-cli-login-statuses extension (#19284) - [Dropover] Fix special characters in filenames and update docs (#19318) - [Rebrandly] Update Links + Modernize (#19319) - Update Ext/window sizer (#19316) - Update CODEOWNERs - Update CODEOWNERs - Update brand-fetch extension (#19012) - Update CODEOWNERs - Update prism-launcher extension (#19117) - feat(superwhisper): add search history (#18810) - Add hammerspoon extension (#18922) - MCP: Fix lint issues (#19310) - Added the Shopify Dev MCP server (#19307) - Update CODEOWNERs - Update obsidian-tasks extension (#19151) - Add untis extension (#18735) - Update curl extension (#18931) - Dovetail extension: Pagination with query filtering (#19163) - Update CODEOWNERs - Fix tldraw project URLs (#19291) - Add Claude PR Assistant workflow (#19292) - Fix link to Smithery (#19285) - Update CODEOWNERs - Add rae-dictionary-raycast extension (#19171) - Supahabits: New command goals (#19282) - [Say] Routine maintenance (#19283) - Update CODEOWNERs - Update t3-chat extension - add beta checkbox (#19133) - Add Safari command to close other tabs (#19280) - When PRs are marked as ready for review, auto assign to Per (#19281) - Update CODEOWNERs - Add `Creem` extension - List,Create Products + List Payments (#19205) - Update CODEOWNERs - ✨ Add frecency sorting to gitmoji (#18974) - Update Ext/window-sizer (#19234) - Apple Mail add new command and AI tool (#19228) - Update `Unkey` extension - Modernize + Migrate broken endpoints to new ones to prevent crash (#19247) - Update Markdown Codeblock (#19271) - Update polymarket extension (#19273) - Update 1bookmark extension (#19255) - Update `cPanel` extension - Modernize + Manage API Tokens (create, revoke) + new function wrapping native `fetch` (#19274) - Init apify mcp server (#19193) - Update granola extension (#19215) - Added the Prisma MCP server (#19201) - Add Zeabur official MCP server to registry (#19217) - Update CODEOWNERs - Add are-na extension (#18646) - Update CODEOWNERs - Add slack-summarizer extension (#19032) - Update nostr extension (#19209) - Update CODEOWNERs - Update paperless-ngx extension (#19197) - Update CODEOWNERs - Add tableau-navigator extension (#19086) - Update CODEOWNERs - MCP: fix spawn ... ENOENT issue (#18399) - Update CODEOWNERs - Add quikwallet extension (#19047) - [Markdown Navigator] Remove duplicate files (#19208) - [Unifi] Remove outdated files (#19207) - [Trek] Remove outdated files (#19211) - [Expo] Remove duplicate files (#19210) - Update CHANGELOG.md (#19227) - Update danish-tax-calculator extension (#19200) - Bot: Only allow the OP to close the issue with a comment (#19196) - Docs: update for the new API release - Update raycast-icons extension (#18682) - [Sentry] Show projects for non US Sentry orgs (#18758) - Update package.json (#19195) - Update CODEOWNERs - Danish Tax Calculator (#19194) - feat: add Nuxt official MCP server to registry (#19034) - Update zen-browser extension (#19013) - Update CODEOWNERs - Add video-converter extension (#19030) - Update CODEOWNERs - Update polymarket extension (#19089) - Add wp-cli-command-explorer extension (#19063) - update extension raycast-gemini (#19021) - Update CODEOWNERs - Add smallpdf extension (#19041) - Update coin-caster extension (#19166) - Update CODEOWNERs - Update vuejs-documentation extension (#19072) - Update CODEOWNERs - Update qrcode-generator extension (#18792) - Update CODEOWNERs - add(KDE Connect): KDE Connect in Raycast (#18928) - Update CODEOWNERs - Add shell-alias extension (#19028) - Update lift-calculator extension (#19118) - Update servicenow extension (#19148) - Fix request loops (#19143) - Fixing two super small typos on the readme for the Obsidian plugin (#19139) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Clockify Extension: UX Improvement for "Start new Timer" functionality (#19026) - Update CODEOWNERs - Add setlist-fm extension (#19119) - Update zerion extension (#19132) - Update CODEOWNERs - Gitlab Extension: My merge requests & label based filtering (#19007) - Update CODEOWNERs - Add file-organizer extension (#18877) - Update CODEOWNERs - Update `Two-Factor Authentication Code Generator` - Rename Codes + Modernize + Add README (#19019) - [NixPkgs Search] Fetch version number from NixOS/nixos-search repo and compose url dynamically (#19025) - Update flibusta-search extension (#19131) - Update omnifocus extension (#19024) - Update tidal-controller extension (#18437) - Update CODEOWNERs - Add Mac network location changer (#18961) - LoL Esports AI tools (#18563) - Update servicenow extension (#18834) - Update at-profile extension (#18554) - Update shopify-theme-resources extension (#18991) - [Image Modification] Add support for QSpace Pro and ForkLift (#19108) - Update CODEOWNERs - Update kill-node-modules extension (#19039) - Update CODEOWNERs - Add grok-ai extension (#18566) - Update CODEOWNERs - Add subwatch extension (#18929) - Ente Auth - fix preferred values (#19029) - Update README.md (#19106) - Update CODEOWNERs - Update arc extension (#19062) - TickTick support AI Extension (#17531) - Update CODEOWNERs - Add domain field to fastmail-masked-email extension (#19066) - Apple Mail: Fix OTP codes across multiple mail accounts (#19033) - Update hardcover extension (#19065) - Update how-long-to-beat extension (#19042) - Update dovetail extension (#19102) - Update daily-sites extension (#19097) - Update Ext/window sizer (#19103) - Update index.tsx (#19067) - Docs: update for the new API release - Docs: update for the new API release - Update OpenVPN description to reflect recent changes (#18788) - Update CODEOWNERs - Add raycast-zoxide extension (#18908) - Update mermaid-to-image extension (#18975) - Update CODEOWNERs - fix(docs): mcp incorrect home page link (#19045) - Add search-domain extension (#18837) - Update CODEOWNERs - Add selfhst-icons extension (#18904) - Update CODEOWNERs - Update CODEOWNERs - Add option to automatically create labels in Todoist quick add command (#18892) - Add daily-sites extension (#18763) - Update CODEOWNERs - MCP Registry: Initial commit (#19015) - Docs: update for the new API release - feat(font-search): add postscript names menu (#19003) - Messages Paste OTP Regex Update (#18896) - Update Ext/window sizer (#19017) - Update CODEOWNERs - Add lipsum extension (#18784) - adding needed changes (#18987) - Update CODEOWNERs - feat: Rename NuxtUI extension to just Nuxt (#17887) - Update CODEOWNERs - [beszel-extension] Added AI tools for interacting with beszel (#17790) - Update CODEOWNERs - Update at-profile extension (#18881) - Update CODEOWNERs - Add flibusta-search extension (#18260) - Update CODEOWNERs - Update doge-tracker extension (#18950) - Update CODEOWNERs - Update CODEOWNERs - Update raycast-ollama extension (#18910) - feat(download-manager): add reload action (#18822) - Add `Name.com` extension - View Account Balance + View Domains + View DNS Records + Delete DNS Record (#18982) - Update CODEOWNERs - DeepWiki extension (#18804) - Update CODEOWNERs - add primary action switch to `one-time-password` (#18800) - Update google-chrome extension (#18794) - Update Ext/window sizer (#18988) - Update Ext/surge outbound switcher (#18989) - Update CODEOWNERs - Update prompt-stash extension (#18887) - Add geoping extension (#18957) - Update CODEOWNERs - Update migadu extension (#18930) - Update anytype extension (#18993) - Update CODEOWNERs - Add cocoa-core-data-timestamp-converter extension (#18656) - Add macports extension (#18773) - Update CODEOWNERs - Things - Set Reminders in Today and Upcoming (#18771) - Update git-assistant extension with rewrite of search git repositories command (#18948) - Update Ext/window sizer (#18963) - Update CODEOWNERs - Update meme-generator extension (#18844) - Update granola extension (#18972) - Update CODEOWNERs - Update package.json (#18970) - Update granola extension (#18915) - Update WIP extension (small typo fix) (#18962) - Docs: update for the new API release - Update CODEOWNERs - Update raindrop-io extension (#18882) - Update dust-tt extension (#18942) - Update Ext/window sizer (#18945) - Update CODEOWNERs - [Stripe] Fix "Open in Stripe Dashboard" action adding extra leading slash (#18953) - Update archiver extension (#18685) - Update CODEOWNERs - Folder Search Improvements (#18838) - Added "toggle connection" to tailscale extension (#18409) - Update esports-pass extension (#18920) - Update f1-standings extension (#18876) - Update CODEOWNERs - Add thock extension (#18618) - Update CODEOWNERs - Add tana-paste extension (#18355) - Update CODEOWNERs - Update granola extension (#18883) - Update CODEOWNERs - Update T3 Chat - new models (#18902) - Update draft-email.ts (#18895) - Update CODEOWNERs - Add zero extension (#18616) - [Apple Intelligence] Add localization (#18593) - Update research extension (#18769) - Update dolar-cripto-ar extension (#18873) - Update CODEOWNERs - [Doppler] Update doppler-share-secrets extension (#18523) - Update CODEOWNERs - Add barcuts-companion extension (#18737) - Update CODEOWNERs - New extension: Granola AI Meeting Notes (#17618) - [Spotify Player] Enable AI interaction with your queue (#18693) - Docs: update for the new API release - feat: replaced Exivo extension iconm due to trademark restrictions (#18868) - Make some extensions available on Windows (#18869) - Update animated-window-manager extension (#18865) - Update lingo-rep-raycast extension (#18721) - Update ugly-face extension (#18866) - refactor: respect system appearance (#18856) - Apple Mail: Paste latest OTP code (#18657) - Update CODEOWNERs - Add superhuman extension (#18391) - Update CODEOWNERs - Add animated-window-manager extension (#18712) - Update homeassistant extension (#18234) - Update CODEOWNERs - Update swift-command extension (#18761) - Update CODEOWNERs - Add tautulli extension (#18023) - Update CODEOWNERs - Add qutebrowser-tabs extension (#18694) - fix: update description in dia extension. (#18853) - Update CODEOWNERs - fix: fix not find zsh file (#18854) - Add nusmods extension (#18757) - Weather: Fix icon for Fog (#18849) - refactor: support more offset (#18850) - refactor: replace keystroke with key code (#18848) - Update origami extension (#18846) - Update system-information extension (#18783) - FIX code extraction imessage-2fa extension (#18836) - PurpleAir Extension Improvements: Multiple Sensor and Nearest Sensor (#18716) - Update f1-standings extension (#17861) - YoutubeMusic: Fixed Issue - remove Like and Like Songs (#18631) - [YubiKey Code] - Replace usage of WindowManagement.getActiveWindow with getFrontmostApplication (#18831) - Update CODEOWNERs - Add gotify extension (#18679) - Ext/window sizer fix screenshots and README (#18827) - Update CODEOWNERs - Add Verification/Sign-in Link Detection (#18695) - Dia (The Browser Company) extension (#18667) - Docs: update for the new API release - Docs: update for the new API release - Update CODEOWNERs - Add cloud-cli-login-statuses extension (#18058) - [YubiKey Code] - Sort accounts by usage (#18781) - [hacker-news-top-stories] Add notification support (#18798) - Update threads extension (#18813) - Update Ext/window sizer (#18814) - Update CODEOWNERs - Revert "Update bmrks extension (#18539)" (#18811) - update extension raycast-gemini (#18666) - Update tinyimg extension (#18720) - Update xcode extension (#18746) - Update 1bookmark extension (#18664) - Update CODEOWNERs - Update aws extension (#18650) - [Things] Fix menu bar `Complete` action (#18641) - Update CODEOWNERs - Add nostr extension (#18637) - Docs: update for the new API release - Update CODEOWNERs - Add window-sizer extension (#18635) - Update CODEOWNERs - Add hardcover extension (#18628) - Update CODEOWNERs - Update quit-applications extension (#18617) - Update CODEOWNERs - Mark all extensions which uses AppleScript as macOS only (#18742) - Slack: enhance Search Emojis command with AI-powered suggestions (#18625) - Update CODEOWNERs - Update zen-browser extension (#18751) - Made use of Search API optional (#18410) - Update CODEOWNERs - Add magic-home extension (#18219) - Update CODEOWNERs - Add ton-address extension (#18683) - Update svelte-docs extension (#18749) - Update CODEOWNERs - Update hacker-news-top-stories extension (#18747) - Update bmrks extension (#18539) - Update CODEOWNERs - Add lookaway extension (#18589) - Update CODEOWNERs - Updating Raycast handle (#18738) - Update CODEOWNERs - Update regex-repl extension (#18724) - Update notis extension (#18727) - Update CODEOWNERs - Add `Canva` extension - View Designs and Open in Browser (#18645) - [SABnzbd] add README + Modernize to use latest config (#18670) - Update CODEOWNERs - Add go-to-rewind-timestamp extension (#18514) - Update CODEOWNERs - Update toggl-track extension (#18543) - Update CODEOWNERs - Update CODEOWNERs - Update thesaurus extension (#18569) - Update warp extension (#18504) - Handle undefined downloads in subtitle formatting (#18729) - Update mercado-libre extension (#18725) - Update tuple extension (#18718) - Update CODEOWNERs - Add origami extension (#18314) - Update README.md (#18719) - Update quick-event extension (#17943) - Update anytype extension (#18218) - Update sportssync extension (#18240) - Update CODEOWNERs - add new extension Pumble (#18253) - Update CODEOWNERs - Add macOSIcons.com extension (#18386) - fix(pianoman): Cannot read properties of undefined (#18591) - Update zeabur extension (#18675) - Supahabits/stats (#18700) - Update CODEOWNERs - Update genius-lyrics extension (#18696) - chore(mcp): improve instruction and examples given (#18537) - Update CODEOWNERs - Add donut extension (#18711) - [Expo] Add support for Two Factor authentication (#18202) - Update CODEOWNERs - Update zen-browser extension (#18068) - Update CODEOWNERs - Update raindrop-io extension (#18668) - Update trovu extension (#18277) - Added "Create new Incognito Window" action for Chrome extension (#18262) - Update hacker-news-top-stories extension (#18705) - Update svelte-docs extension (#18686) - handle non existing file selection (#18674) - Ext/surge outbound switcher (#18633) - Update betterdisplay extension (#17535) - Update CODEOWNERs - Add lyric-fever-control extension (#18538) - 🐛 fix(wakatime): Fix Reported Store Issues & Update Dependencies (#18638) - Update CODEOWNERs - Update google-calendar extension (#18636) - fix details block in information doc (#18627) - Update CODEOWNERs - Update (#18632) - Update CODEOWNERs - Add playtester extension (#18492) - Docs: update for the new API release - Update CODEOWNERs - Add asciimath-to-latex-converter extension (#18496) - GitHub: Fix pull request filtering logic (#18624) - feat(search-chatwork): mod scope to use search contacts commands with OAuth (#18542) - Update CODEOWNERs - [Asana] modernize + close after creating task (close Issue) (#18531) - Update CODEOWNERs - Update package.json (#18483) - Update CODEOWNERs - Add dpm-lol extension (#18476) - Update CODEOWNERs - Update nba-game-viewer extension (#18623) - Add liquipedia-matches extension (#18455) - Update CODEOWNERs - Add git-worktrees extension (#18418) - Update CODEOWNERs - Update linkding extension (#18395) - Arc extension: (Re-)Add support to open blank incognito window (#18427) - Update CODEOWNERs - Update raycast-svgo extension (#18560) - Auto language detection and some small fixes (#18221) - Add steam-player-counts extension (#18435) - Linear: Update API and fixes (#18601) - Todoist: Fix AI get-tasks (#18603) - Update awork extension (#18580) - Update CODEOWNERs - Update lucide-icons extension (#18428) - Update aws extension (#18552) - Update CODEOWNERs - Add cerebras extension (#18508) - Update CODEOWNERs - Add manage runtimes and delete unsupported runtimes commands to Xcode extension (#18463) - Update CODEOWNERs - Update link-cleaner extension (#18422) - Update airpods-noise-control extension (#18126) - [Github extension] add support for merge queue and "merge when ready" (#18045) - Update ihosts to support remote hosts (#18176) - Update CODEOWNERs - Update CODEOWNERs - [ADB] Add Uninstall command (#18091) - Update paste-as-plain-text extension (#18574) - Update deepcast extension (#18598) - Update CODEOWNERs - Add hacker-news-500 extension (#18431) - GIF Search: Use `Clipboard` API to copy GIF instead of AppleScript. (#18588) - Todoist: New API, improvements and bug fixes (#18518) - Update CODEOWNERs - Update raycast2github.json (#18575) - Update dust-tt extension (#18578) - Update cal-com-share-meeting-links extension (#18577) - Update ns-nl-search extension (#18576) - Commands and Navigation Enhancements (#18528) - Update CODEOWNERs - Add `Netherlands Railways Find a train` extension (#18420) - Update CODEOWNERs - Update `CricketCast` extension - Modernize + Better Score Error Handling (#18555) - Update Connect to VPN extension (#18406) - Update CODEOWNERs - Update jetbrains extension (#18545) - Update copymoveto extension (#18535) - Update CODEOWNERs - Update github-profile extension (#18551) - Enable Chat Actions When Viewing Previous Conversations (#18547) - html-colors: add filtering option to group colors by shade (#18529) - [Things] Display only incomplete todo in the menu bar (#18515) - Update WeChat (#18345) - Update `Spaceship` extension - Modernize + DNS Enhancements (#18571) - Update CODEOWNERs - Update CODEOWNERs - parcel: add "Track on Website" and improve client (#18333) - Add paystack extension (#18375) - Update CODEOWNERs - Update gg-deals extension (#18519) - Update dub extension (#18517) - Fix 404 error by replacing the repo where we get the name from (#18525) - Improved fallback command and flickering during search (#18533) - feat(bento-me): improve UI. (#18521) - Update CODEOWNERs - Update clockify extension (#18401) - Update CODEOWNERs - Add "Obsidian Tasks" Extension (#18390) - Ai extensions/elgato key light (#17822) - Update utilities.md (#18510) - Update CODEOWNERs - Add virustotal extension (#18373) - Update CODEOWNERs - things: detect URLs in notes (#18362) - Update CODEOWNERs - Update deno-deploy extension (#17840) - Update dad-jokes extension (#18494) - Slack (#18156) - Delivery Tracker: Manually Mark as Delivered and Delete All Delivered Deliveries (#18485) - fix: gcloud path for non homebrew intel package installations (#18493) - Update CODEOWNERs - [Canvascast] Fix bugs with announcements and downloads (#18100) - Update adhan-time extension (#18204) - Update CODEOWNERs - Slack: New Command: Send Message (ISSUE-15424) (#16580) - Update antd-open-browser extension (#18299) - Update image-flow extension (#18470) - feat(himalaya): Update for Himalaya `v1.0.0` (#18388) - Add Find Features and AI Extension Support (#18195) - Add movie runtime information to Letterboxd (#18089) - Update CODEOWNERs - Update evernote extension (#17889) - Add g-cloud extension (#18093) - Update CODEOWNERs - Add awork extension (#17791) - Update laravel-herd extension (#18477) - feat(search-composer-packagist): display abandon package (#18307) - [Polar] Update Polar SDK Version (#18475) - Update CODEOWNERs - Add `Pastery` extension - Search Pastes, Create Paste, Delete Paste (#18404) - [Polar] Fix non-recoverable state when OAuth access tokens expires (#18471) - Docs: update for the new API release - Update CODEOWNERs - Update `Unsplash` extension - add Pagination, Caching + Modernize (close Issue) (#18384) - Update CODEOWNERs - Add jsrepo extension (#18346) - Update producthunt extension (#18442) - docs: asset folder clearing hint (#18320) - Update CODEOWNERs - Update vercast extension (#18297) - Update pcloud extension (#18291) - Update CODEOWNERs - Add image-to-ascii extension (#18282) - Update Tailscale extension (#18281) - [braid] Fetch icons dynamically from github (#18469) - [Bitwarden] Add authenticator primary action preference (#18464) - Improve URL retrieval with clipboard fallback (#18461) - Update dict-cc extension (#18443) - Update CODEOWNERs - Add valkey-commands-search extension (#18268) - Update CODEOWNERs - Update CODEOWNERs - Update reflect extension (#18294) - Add pollenflug extension (#17787) - Update CODEOWNERs - Add image-flow extension (#17383) - Update CODEOWNERs - Add laravel-herd extension (#18318) - Update 1bookmark extension (#18413) - [Bitwarden] Authenticator command (#18322) - Update quick-notes extension (#18389) - Update `My Idlers` extension - Optimistically delete Server (#18421) - Update CODEOWNERs - Update raycast-svgo extension (#18426) - [Contentful] fix: video assets not showing thumbnail (#18441) - Docs: update for the new API release - feat: added logic for properly counting CJK characters as words (#18430) - Update CODEOWNERs - Update tidal-controller extension (#18275) - Update CODEOWNERs - Update CODEOWNERs - Update obsidian extension (#18394) - Add surge-outbound-switcher extension (#18065) - Update CODEOWNERs - Add mistral extension (#18237) - add error han…
* Update scheduler extension - update description - update readme file - fix linting - introduce more schedule types 15 mins, 30 mins, hourly and custom - Add xpf-converter extension (raycast#21448) - Update CODEOWNERs - Update CODEOWNERs - Add zendesk-admin extension (raycast#20763) - Add yr-weather-forecast extension (raycast#21354) - Update CODEOWNERs - Add `Apify` extension - List Actors + List Runs (raycast#21467) - Update CODEOWNERs - [Forked Extensionis] Run local Git commands before requesting APIs (raycast#21457) - Update circleback extension (raycast#21459) - [zed-recent-projects] Handle new sqlite database schema 28 (raycast#21447) - Fixed deprecated Jira API issue. (raycast#21452) - Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (raycast#21395) - Update `Productboard` extension - View `Objectives` + Modernize (raycast#21450) - Update CODEOWNERs - Stripe: add support for managing customers and subscriptions (raycast#21135) - Update CODEOWNERs - [Font Awesome] Add Windows Support (raycast#21433) - Update CODEOWNERs - Update arxiv extension (raycast#21033) - Update CODEOWNERs - [YouTube Companion] Add Windows Support and bump dependencies (raycast#21436) - Update CODEOWNERs - [Forked Extensions] Add support for create extensions (raycast#21364) - Add whentomeet extension (raycast#20675) - Update CODEOWNERs - Add Circleback extension (raycast#21391) - Update CODEOWNERs - update packages and add option to exit raycast after cleaning link (raycast#21269) - Update CODEOWNERs - Add tuneblade extension (raycast#21350) - Update wechat-devtool extension (raycast#21399) - Update CODEOWNERs - feat(KeepassXC): add windows support. (raycast#21430) - Add Qovery extension (raycast#21255) - Update CODEOWNERs - Update raindrop-io extension (raycast#21394) - Update comet extension (raycast#21362) - Update CODEOWNERs - Update cheatsheets-remastered extension (raycast#21376) - Add publora extension (raycast#21372) - Update CODEOWNERs - Update CODEOWNERs - Update `Unsplash` extension - Fixed crash when "Rate Limit" exceeded + Centralized error handling + Removed `node-fetch` (raycast#21406) - [cURL Extension] Add Windows Support (raycast#21427) - [Raindrop.io] Move @sh-cho to past contributors (raycast#21435) - [Update] [Things] Add project update/delete tools and improve type safety (raycast#21416) - Update obsidian-link-opener extension (raycast#21443) - Update zed-recent-projects extension to use latest sqlite Zed schema (raycast#21180) - Fix Jira extension: JQL error (raycast#21429) - Docs: update for the new API release - Update `Manotori` extension - Support Windows! + View DNS Zones + View DNS Records + Create DNS Record (raycast#21370) - Update github extension (raycast#21381) - Update docker extension (raycast#21398) - Update Advanced Replace for regex transforms and entry options (raycast#21409) - Update deepwiki extension (raycast#21400) - Update meta-music extension (raycast#21417) - Update CODEOWNERs - Update `Opera` extension - Fix: would show as not installed due to changed path + Add better error handling when dealing with `AppleScript` - Modernize to use latest Raycast configuration + Removed `run-applescript` (raycast#21421) - Update instagram media downloader extension (raycast#21422) - Update CODEOWNERs - Update `Proxmox` extension - show status in `tooltip` + token is now password + modernize to use latest Raycast config (raycast#21349) - Update CODEOWNERs - Add red-note-post-viewer extension (raycast#21315) - Fix documentation for screenshot extension: capture-to-clipboard command (raycast#21311) - Update flibusta-search extension (raycast#21327) - Mention Forked Extensions in dev doc (raycast#21158) - Update CODEOWNERs - Fix todoist extension: Setting due date and time (raycast#21331) - Update CODEOWNERs - Add plexus extension (raycast#21289) - Update CODEOWNERs - Add r2-uploader extension (raycast#21215) - Cursor Agents: Add a new tool to get back all repositories that are s… (raycast#21337) - Update CODEOWNERs - [cursor-agents] Made `ref` optional in the agent launch form (raycast#21334) - Cursor: Few smaller fixes (raycast#21333) - Add error handling for launchCommand (raycast#21332) - Update CODEOWNERs - Cursor Agents (raycast#21328) - Update CODEOWNERs - Update memos extension (raycast#21213) - Release more extensions on Windows (raycast#21324) - Update CODEOWNERs - Update google-chrome extension (raycast#21235) - Add lockfiles and registry rules to copilot instructions (raycast#21254) - docs: update documentation (raycast#21325) - Update CODEOWNERs - [Gandi] New Extension (raycast#21120) - Update RAE Dictionary extension with latest improvements (raycast#21307) - Update CODEOWNERs - Add `Visitor Queue` extension - View "Data Views" + View "Leads" + View "Contacts" (Windows supported!) (raycast#21322) - Update zeabur extension (raycast#21321) - Update CODEOWNERs - Add music-assistant-controls extension (raycast#21249) - Update CODEOWNERs - Add ChartMogul extension (raycast#21251) - [google-chrome-profiles] Refactor Chrome profile opening into dedicated no-view commands (raycast#20623) - Fix incorrect error message in GitHub Enterprise issues search (raycast#21231) - Update CODEOWNERs - Add hebrew-date-zmanim extension (raycast#21292) - Update CODEOWNERs - Add atomberg-raycast-extension extension (raycast#21185) - Improve error handling in GitHub Copilot extension (raycast#21308) - feat(add-expense): Add "Category" selection dropdown to "Add Expense" form (raycast#21224) - feat(shell-history): add option to reverse history order (raycast#21304) - Update CODEOWNERs - Add vanishlink extension (raycast#20996) - Revert "Renaming metadata images (raycast#21305)" (raycast#21306) - Update brreg extension (raycast#21169) - Update brave-search-with-results extension (raycast#20916) - [Farcaster] cleanup and migration (raycast#21299) - Renaming metadata images (raycast#21305) - Fix `pr-bot` for detecting touched extensions (raycast#21250) - Update CODEOWNERs - Add Windows support and update dependencies (raycast#21282) - Fix GitHub Copilot instructions to provide actionable code suggestions without character escaping (raycast#21276) - Update CODEOWNERs - Update `solidtime` extension - use custom (self-hosted) URL + handle errors + 2 EmptyViews (raycast#20602) - [Forked Extensions] Improve Sync actions (raycast#21294) - [Bitwarden] Sync vault on command launch (raycast#21300) - Update `Tally` extension - update many settings of a Form + fix: crash when no Form title + add shortcut to "Open in Tally" `Action` (raycast#21302) - [Forked Extensions] Fix the fork action (raycast#21281) - Update CODEOWNERs - Add tallinn-transport extension (raycast#20762) - Update CODEOWNERs - [Mozilla Firefox] Refactor and fixes (raycast#20767) - Update CODEOWNERs - [Whimsical]: First version, only AI (raycast#20815) - feat(raindrop-io): prefill add form from launch context (raycast#21261) - Update CODEOWNERs - Fix todoist extension: An error creating task (raycast#21153) - [Forked Extensions] Improve error handlers and toasts (raycast#21222) - Update CODEOWNERs - Update spotify-player extension (raycast#21234) - Update CODEOWNERs - Update ado-search extension (raycast#20586) - Update CODEOWNERs - Add sourcegraph-amp-dash-x extension (raycast#20730) - Update CODEOWNERs - Update dotmate extension (raycast#21129) - Update CODEOWNERs - Add barassistant extension (raycast#21126) - Update `Airtable` extension - precise errors + `Add` Icon to **Bases** & **Fields** + `Add` support for **Personal Access Token** + `Simplify` OAuth + `Modernize` (raycast#21262) - fix(readwise-reader): Use correct URL when opening articles (raycast#21219) - Complete overhaul of "Where Is My Cursor?" extension (raycast#21124) - Update stale PR message and timing settings (raycast#21273) - Update `My Idlers` extension - Add Server (raycast#21256) - Add Windows support and update dependencies (raycast#21260) - [MapleStory.gg] Routine maintenance (raycast#21266) - Update CODEOWNERs - Fuelx: Override @coinbase/wallet-sdk and cbw-sdk versions (raycast#21247) - Add comprehensive GitHub Copilot instructions for extension reviews (raycast#21243) (raycast#21244) - Update polymarket extension (raycast#21236) - Add AI tools to GitHub Copilot extension for task creation and repository management (raycast#21228) - kill-process: Add support for Windows (raycast#21240) - Gate some more extensions for Windows (raycast#21239) - Fix formatting in README.md for GitHub Copilot (raycast#21226) - Update CODEOWNERs - Add GitHub Copilot extension (raycast#21225) - Update CODEOWNERs - Add Mobius Materials extension (raycast#21136) - [Installed Extensions] Use Raycast buitl-in `Action.CopyToClipboard` (raycast#21216) - notion: Fix opening page on windows (raycast#21205) - Update CODEOWNERs - Update CODEOWNERs - Update spotify-player extension (raycast#21208) - Add fuelix extension (raycast#21067) - Update copy-path extension (raycast#21168) - Update `MailerSend` extension - View Domain Webhooks (raycast#21194) - [Forked Extensions] Polish `Sync Fork` & fix Git path for Windows (raycast#21204) - Update freeagent extension (raycast#21203) - Update One Time Password (raycast#20176) - [Language Detector] Add support for internet slangs (raycast#21201) - Docs: update for the new API release - Update CODEOWNERs - Vercel/Vercast: Bump deps, make available on Windows (raycast#20758) - Update CODEOWNERs - apple-maps-search - Windows support (raycast#20700) - Update roblox extension (raycast#18919) - [Forked Extensions] Fix `Sync Fork` and check Git executable file (raycast#21187) - Update CODEOWNERs - Whois: Add windows support (raycast#20759) - Add \'Windows\' to exempt PR labels in stale.yml (raycast#21176) - feat: Rube MCP Server added to the registry (raycast#21146) - Update CODEOWNERs - Add `Lemon Squeezy` extension - List all orders in all your stores + List all products in all your stores (raycast#21115) - Update awork extension (raycast#21178) - Add cheatsheets-remastered extension (raycast#20991) - Update CODEOWNERs - Add leap-new extension (raycast#21175) - Update CODEOWNERs - Update `Console Dev` extension - Major Rewrite + Support Windows + Fix Parser (raycast#21036) - Update CODEOWNERs - Add luxafor-controller extension (raycast#21082) - Update youversion-suggest extension (raycast#21074) - [Forked Extensions] Sync fork repo with upstream repo on GitHub (raycast#21171) - Update CODEOWNERs - Add shopinfo-app extension (raycast#20884) - Update awork extension (raycast#21040) - Update CODEOWNERs - Update radarr extension (raycast#21118) - Update Fathom Analytics menu bar icon and add shortcut (raycast#21147) - Update CODEOWNERs - Update aave-search extension (raycast#21149) - [Installed Extensions] Add support launching target extension (raycast#21154) - [Steam] Routine maintenance (raycast#21156) - Update ray-clicker extension (raycast#21161) - Update gradient-generator extension (raycast#21163) - Bugfix/issue-18862 MLB Schedule Fix, addition of Standings and Search Players command (raycast#21167) - [Forked Extensions] Add support for Windows & improvements (raycast#21060) - Update CODEOWNERs - Update CODEOWNERs - Update copy-path extension (raycast#21134) - Fix Slack extension: Send message is not working. (raycast#21148) - Update brreg extension (raycast#21151) - Update CODEOWNERs - Update CODEOWNERs - [GitHub] Add Starred Repos command (raycast#21110) - Add monkeytype extension (raycast#21108) - Update CODEOWNERs - ray-so: Add Windows support (raycast#20740) - Update ente-auth extension (raycast#20663) - Update CODEOWNERs - Add obsidian-link-opener extension (raycast#21021) - Update CODEOWNERs - Add crypto-search extension (raycast#21084) - [Home Assistant] Port to windows (raycast#21065) - feat: add [Generate QR Code from Selection] Command for [QR Code Generator] Extension (raycast#20831) - Update CODEOWNERs - Update CODEOWNERs - Update google-chrome extension: Add reload/refresh tab action (raycast#21140) - feat(endel): add Endel extension (raycast#20788) - Update CODEOWNERs - Add chatgpt-search extension (raycast#20721) - Update CODEOWNERs - Fix Jira extension: Deprecated Atlassian API methods (raycast#21057) - Add odoo-companion extension (raycast#21058) - Update brreg extension (raycast#21046) - [spotify-player] Check for duplicate tracks before adding to a playlist (raycast#20617) - Update aws extension (raycast#21016) - ext/media-converter: hotfix: simple quality settings (raycast#21092) - Update `logitech-litra` extension to support devices without a serial… (raycast#21139) - Update CODEOWNERs - [Multilinks] Add Dia browser support (raycast#21128) - Update 1password extension (raycast#21142) - Update todoist extension (raycast#21141) - Update `changedetection.io` extension - Create + Delete + modernize + add EmptyView (raycast#21143) - Update openrouter-models-finder extension (raycast#21100) - Fix a minor typo in video-downloader Installer view (raycast#21102) - Update CODEOWNERs - Add Looma.fm extension with all reviewer feedback addressed (raycast#20781) - Update CODEOWNERs - Add get-cat-images extension (raycast#20964) - Update CODEOWNERs - feat(add-expense): add “Recent” section to “Add Expense” form (raycast#21032) - Update CODEOWNERs - Add typora-note-creator extension (raycast#20851) - Update commit-issue-parser extension (raycast#21050) - [Surge] Routine maintenance (raycast#21098) - [United Nations] Handle SIGTERM gracefully (raycast#21086) - Update search index used in Statamic Docs extension (raycast#21089) - Update CODEOWNERs - feat: support specifying issue type when creating an issue (raycast#21043) - Update naver-search extension (raycast#20235) - [Say] Allow stop saying & handle SIGTERM gracefully (raycast#21081) - Update CODEOWNERs - [Spotify] Fix reading values from undefined (raycast#20986) - Add gradient-generator extension (raycast#21012) - Update CODEOWNERs - Update raycast-surge extension (raycast#20578) - Add openrouter-quick-actions extension (raycast#20958) - Update CODEOWNERs - Add scheduler extension (raycast#20641) - Update CODEOWNERs - Add comet extension (raycast#20632) - Update ray-clicker extension (raycast#21088) - Update todoist extension (raycast#21078) - Update CODEOWNERs - Update ship24-client extension (raycast#21059) - Add openrouter-models-finder extension (raycast#21005) - Update CODEOWNERs - Add zsh-aliases extension (raycast#20985) - Update CODEOWNERs - Add ray-clicker extension (raycast#20979) - Update `Wave` - Enhance `Invoice` to show amounts due and paid + Move "Business Products And Services" to its own file + Add new product or service (raycast#21052) - Update password-generator extension to guarantee presence of character choices (raycast#20976) - Update CODEOWNERs - [Forked Extensions] Initial release (raycast#20968) - Update CODEOWNERs - Update todoist extension (raycast#20984) - Docs: Update the utils docs - Update brreg extension (raycast#21027) - Docs: update for the new API release - feat: adding the calculation time for MOROCCO (raycast#20917) - Update CODEOWNERs - feat(model-context-protocol-registry): linear mcp server (raycast#20895) - [defbro] Dynamic detection of defbro command path (issue raycast#20881) (raycast#20882) - Brew: Close Raycast in case the brew cmd typed in raycast window (raycast#20780) - Hot Fix: Granola authentication to support WorkOS tokens (raycast#21039) - Update CODEOWNERs - Add vixai extension (raycast#20772) - Update lookaway extension (raycast#21038) - Update CODEOWNERs - Bitaxe initial commit (raycast#20750) - Update CODEOWNERs - Update cyberchef extension with custom Instance URL (raycast#20735) - Update duckduckgo-image-search extension (raycast#21034) - 🐛 fix browser-extension for zen browser (raycast#21035) - Update CODEOWNERs - Add positron extension (raycast#20596) - Update CODEOWNERs - Add french-company-search extension (raycast#20865) - Update minio-manager extension (raycast#20999) - Update change case extension (raycast#20960) - Update grammari-x extension (raycast#20998) - Support for scientific notation and decimal encoding in converter (raycast#21011) - Update Claude Code Cheatsheet - Add v1.0.55-v1.0.81 features (raycast#21004) - Update CODEOWNERs - Update trakt-manager extension (raycast#20854) - [Language Detector] Add support for Windows (raycast#20832) - Update quick-git extension (raycast#21001) - Update CODEOWNERs - Update `SwitchHosts` extension - modernize + icons + markdown + add hook + remove `setTimeout`,`node-fetch` (raycast#21017) - Update `Clockify` extension - Select Tag During Start + More Precise Types + Modernize (raycast#21002) - Update `cPanel` extension (raycast#20977) - Update google lens extension (raycast#21019) - Update CODEOWNERs - Add invisible-text-detector extension (raycast#20926) - Update CODEOWNERs - Add word4you extension (raycast#20638) - Update CODEOWNERs - Add radarr extension (raycast#20904) - Update CODEOWNERs - feat(8ball): add preference to choose default action (copy/paste) and… (raycast#20947) - Update CODEOWNERs - Update deepwiki extension (raycast#20955) - Update CODEOWNERs - Update dodo-payments extension (raycast#20956) - Update vercast extension (raycast#20838) - Update CODEOWNERs - Update search-gule-sider extension (raycast#20911) - [Groq] model update and improvements (raycast#20630) - Add support for password protected YubiKeys in yubikey-code (raycast#20938) - [Time Tracking] rename in Edit Form + Modernize (raycast#20922) - [Brand.dev] trigger search via search text (QoL) (raycast#20944) - Update CODEOWNERs - Add unblocked-answers extension (raycast#20696) - Update CODEOWNERs - Add chainscout extension (raycast#20712) - Update CODEOWNERs - tabler: add download actions (raycast#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (raycast#20686) - Update CODEOWNERs - Add jitsi extension (raycast#20680) - Update CODEOWNERs - Add time-calculator extension (raycast#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (raycast#20647) - Update CODEOWNERs - Add synology-download-station extension (raycast#20643) - Add owl extension (raycast#20777) - Update CODEOWNERs - Update synonyms extension (raycast#20879) - Update scira extension (raycast#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (raycast#20906) - [Color Picker] Fix Convert Color command (raycast#20913) - Update v0-by-vercel extension (raycast#20923) - Update CODEOWNERs - Add v0-by-vercel extension (raycast#20792) - Add `.gitattributes` & get rid of `\r\n` (raycast#20498) - [Brand Icons] Add support for creating social badges through cross-extension (raycast#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (raycast#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (raycast#20885) - Update certificate-viewer extension (raycast#20894) - Update CODEOWNERs - Add yap extension (raycast#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (raycast#20427) - Update CODEOWNERs - Add emojis-com extension (raycast#20875) - Add dodo-payments extension (raycast#20669) - Update CODEOWNERs - Add twingate extension (raycast#20580) - Update CODEOWNERs - Update brave-search-with-results extension (raycast#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (raycast#20892) - Update image-wallet extension (raycast#20806) - Add proton-authenticator extension (raycast#20773) - Update CODEOWNERs - Add sharding-tools extension (raycast#20394) - Update CODEOWNERs - Add Save Link extension (raycast#20521) - Update CODEOWNERs - Update display-modes extension (raycast#20260) - Update CODEOWNERs - Update craftdocs extension (raycast#19976) - Update CODEOWNERs - Update aerospace extension (raycast#20847) - Update aws extension (raycast#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (raycast#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (raycast#20493) - Update at-profile extension (raycast#20853) - Update aws extension (raycast#20856) - Update grammari-x extension (raycast#20848) - Update preferences.md (raycast#20855) - Update youtrack extension (raycast#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (raycast#20553) - Update CODEOWNERs - Add kiro extension (raycast#20790) - Update freeagent extension (raycast#20844) - [Badges] Add shortcut for picking logo (raycast#20849) - Update CODEOWNERs - Update svgl extension (raycast#20852) - Add docklock-plus extension (raycast#20419) - Update slugify-file-folder-names extension (raycast#20528) - Update CODEOWNERs - Add freeagent extension (raycast#20828) - Update CODEOWNERs - Update aws extension (raycast#20809) - Update CODEOWNERs - Add sefaria extension (raycast#20378) - Update CODEOWNERs - Add tokenizer extension (raycast#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (raycast#20817) - Add ag-audioflow extension (raycast#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (raycast#20830) - Update CODEOWNERs - Adding new social platforms (raycast#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (raycast#20813) - [GitLab] Add windows support (raycast#20824) - Update raindrop-io extension (raycast#20820) - Update CODEOWNERs - Update timezone-buddy extension (raycast#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (raycast#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (raycast#19456) - Fix token expired auth flow in SendAI extension (raycast#20711) - Update CODEOWNERs - Add commit-issue-parser extension (raycast#20395) - Update CODEOWNERs - Add ozbargain-deals extension (raycast#20288) - Update mermaid-to-image extension (raycast#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/cs/source/extensions/extensions/scheduler/node_modules/.bin:/Users/cs/source/extensions/extensions/node_modules/.bin:/Users/cs/source/extensions/node_modules/.bin:/Users/cs/source/node_modules/.bin:/Users/cs/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/opt/homebrew/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cs/source/extensions/extensions/scheduler/node_modules/.bin:/Users/cs/source/extensions/extensions/node_modules/.bin:/Users/cs/source/extensions/node_modules/.bin:/Users/cs/source/node_modules/.bin:/Users/cs/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/opt/homebrew/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/cs/Documents/Docs/Settings/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/usr/local/share/dotnet:~/.dotnet/tools:/Users/cs/Documents/Docs/Settings/bin:/opt/homebrew/opt/fzf/bin:/Users/cs/.lmstudio/bin:/Users/cs/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand:/Users/cs/.lmstudio/bin (raycast#20458) - Update system-monitor extension (raycast#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (raycast#20558) - Update CODEOWNERs - Update wol extension (raycast#20601) - Update CODEOWNERs - Add google-lens extension (raycast#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (raycast#20747) - Update visual-studio-code extension (raycast#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (raycast#20563) - Add dia-skills extension (raycast#20548) - Update letterboxd extension (raycast#20615) - end-of-life - Windows support (raycast#20701) - Gemini/updatemodels-July (raycast#20662) - Fix: Support currency format in transaction amount validation (raycast#20399) - Update CODEOWNERs - feat: Update Rewind Icon (raycast#20744) - Update CODEOWNERs - Update hypersonic extension (raycast#20462) - Update CODEOWNERs - Update grok-ai extension (raycast#20734) - Add network-proxy extension (raycast#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (raycast#20460) - Update defbro extension (raycast#20367) - Show Artist\'s name when liking current track (raycast#20583) - Update wechat-devtool extension (raycast#20668) - Add character tabulation to Unicode Symbols extension (raycast#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (raycast#20168) - Update nusmods extension (raycast#20625) - Update quick-notes extension (raycast#20569) - Update CODEOWNERs - Deleted directory (raycast#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (raycast#20749) - Renames the extension from "hoarder" to "karakeep". (raycast#20113) - Update pr-bot.ts (raycast#20775) - Update CODEOWNERs - Update pomodoro extension (raycast#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (raycast#20221) - Update CODEOWNERs - Add VLC extension (raycast#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (raycast#20702) - Update Project Hub Extension - Add Recent Projects Section (raycast#20561) - Update arc extension (raycast#20761) - Update extension (raycast#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (raycast#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (raycast#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (raycast#20626) - Add `Host.io` extension - get full domain data for any domain (raycast#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (raycast#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (raycast#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (raycast#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (raycast#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (raycast#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (raycast#20502) - Update youversion-suggest extension (raycast#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (raycast#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (raycast#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (raycast#20357) - Deprecate Ghost Docs Extension (raycast#20690) - Update CODEOWNERs - author update (raycast#20705) - [Badges][Brand Icons] Bugfixes & improvements (raycast#20545) - Update public_raycast_extensions.txt (raycast#20688) - Update CODEOWNERs - Update pieces-raycast extension (raycast#20296) - feat[Backstage plugin]: configurable Backstage API URL (raycast#20398) - Update whisper-dictation extension (raycast#20482) - Update CODEOWNERs - Update endoflife (raycast#20651) - Update T3 chat\'s icon (raycast#20599) - feat(scheduler): initial commit * Update CHANGELOG.md and optimise images --------- Co-authored-by: Charles Symons <dev@realitymanagement.com> Co-authored-by: raycastbot <bot@raycast.com>
- Merge contributions from ext/shodan branch - Add Shodan extension - Docs: update for the new API release - Refactor platform label handling in PR bot (#22016) - Implement platform detection for extensions (#22014) - Update CODEOWNERs (dd22780a) - Add near-rewards extension (#21917) - Update CODEOWNERs (5bcb18d9) - Add toneclone extension (#21701) - [dust] feat(login): auto-switcher for user region (#21668) - Update CODEOWNERs (a97cef3c) - Add alloy extension (#21849) - Update CODEOWNERs (0fa6b009) - [Bitwarden Vault] Add a command to create a login (#21360) - Update CODEOWNERs (10274f0e) - Add numpy-documentation-search extension (#22013) - Update `ipapi.is` extension - Modernize + Windows Support + Enhancements (#21935) - Update CODEOWNERs (bdd2960d) - Update datetime format converter extension (#21707) - Update CODEOWNERs (8f7b8b7b) - Add `Infisical` extension (#21880) - Update CODEOWNERs (f3417a17) - Add `Chatbase` extension - View Agents/Bots, their conversations and messages (#21963) - add issue type to templates (#22005) - Update CODEOWNERs (ce65697d) - Add guitar-tools extension (#21855) - Update CODEOWNERs (27cae3f6) - Add shopify-dev-docs-search extension (#21694) - Update CODEOWNERs (9433c5d4) - Update comet extension (#21945) - [epim] Add automatic role status refresh after activation (#22008) - [raycastbot] Add support for closing issues as duplicate (#21548) - Update CODEOWNERs (4356e0bd) - Update `Kaomoji Search` extension - Windows Support + Modernize (#21976) - Update workflow configurations (#22002) - Update CODEOWNERs (5a03e66d) - Add braintick extension (#21545) - [Say] Fix missing await (#22001) - Update CODEOWNERs (ae2261c9) - Add rtl-reader extension (#21549) - Update CODEOWNERs (aaeda7de) - Add airsync extension (#21903) - [Say] Add Stop Say command & enhancements (#21998) - Docs: Update the utils docs - Update add-approve-label.yml (#21995) - Updated WebBites extension (#21987) - Enhance label addition workflow with debug info (#21990) - Update add-approve-label.yml (#21989) - Update reviewer type and token handling in workflow (#21988) - Refine auto-labeling for approved PRs (#21986) - Update add-approve-label.yml (#21984) - Update add-approve-label.yml (#21983) - Update add-approve-label.yml (#21982) - Update add-approve-label.yml (#21981) - Update add-approve-label.yml (#21980) - Update add-approve-label.yml (#21979) - Rework of fuzzy-file-search extension (#21675) - Update add-approve-label.yml (#21977) - Update add-approve-label.yml (#21975) - Add GitHub Actions workflow to auto-label approved PRs (skip write+ users only) (#21974) - Update CODEOWNERs (45a587fb) - [Web Converter] Add Windows Support (#21691) - Update CODEOWNERs (f922e589) - Add security-search extension (#21711) - Improve video filename handling and update dependencies (#21958) - [Grafana] add command Pages (#21952) - Fix formatting in generate-code-owners.yml (#21951) - Update CODEOWNERs (070fbee8) - Implement fallback for core dirs and key files checkout (#21950) - Refactor sparse checkout and improve Slack notifications (#21949) - Enhance sparse checkout and improve commit message (#21947) - Update qrcode generator extension (#21922) - Enhance URL handling: allow direct opening of URLs and add utility function for URL validation (#21555) - [Trello] Allow for multiple assignees on card (#21512) - Update messages extension (#21939) - Update stripe extension (#21943) - Update generate-code-owners.yml for sparse-checkout (#21925) - Add comma-separator extension (#21749) - Add gomander extension (#21647) - [Google Transalte] add hotkey to switch between language sets quickly (up and down) (#21918) - Add supermemory extension (#21811) - Add nepali-calendar extension (#21708) - Add folder-organizer extension (#21575) - Update github extension (#21742) - [Logseq] Windows support (#21705) - add an extra space for reward text (#21905) - Add uranium-raycast-plugin extension (#21501) - Update 1password extension (#21689) - Fix: The "Search Bookmarks" command returns an error when the hard-coded default path does not exist (#21706) - [Raindrop.io] open in 2ndary browser + modernize (#21748) - feat: enable windows support (#21739) - Update plexus extension (#21894) - Add hemolog extension (#21733) - Add `Koyeb` extension (#21891) - Update genius-lyrics extension (#21678) - Update battery-health extension: add adaptor power watts (#20966) - feat: Update YouTube transcript functionality (#21868) - [Bitbucket] Swap to API tokens (#21489) - Update aws extension (#21688) - Update code-runway extension (#21662) - Add claude-code-launcher extension (#21075) - Ext/window sizer: Updated screenshots to macOS Tahoe (#21790) - Update bilibili extension (#21703) - Update Ext/surge outbound switcher (#21860) - Ext/surge outbound switcher: Updated screenshots to macOS Tahoe (#21791) - Update `Font Awesome` extension - fix search would get stuck since token was not persisted (#21835) - Update aave-search extension (#21798) - Update `Spaceship` extension - View Lifecycle State of "Domain" + Change "Nameservers" of "Domain" + Add "Windows" Support (#21816) - feat(KeePassXC): add windows support. (#21785) - Update onbo extension (#21792) - Update `Todo List` extension - Added `tooltip` to to-do list items so longer titles easier to read + Added `metadata` images + Modernized (#21819) - [Comet] sort bookmarks by dateAdded + Modernize (#21734) - [Pipedrive] fix issue + lots of changes (#21709) - Add `Youform` extension - view your forms, their blocks and submissions (#21840) - Update arc extension (#21821) - [video-downloader] Fix long video name issue (#21839) - [Playnite Launcher] Fix cold starting issue (#21827) - Add razuna extension (#21558) - fix(nuxt): sanitize component name and optimize ai prompt (#21804) - Update gif search extension (#21834) - Improve Sesh List (#21805) - Update tembo extension (#21810) - Update duan-raycast-extension extension (#21836) - [Forked Extensions] Add support for checking aheads & branches (#21838) - Update svgl extension (#21841) - Update CODEOWNERs - Update unicode-symbols extension (#21726) - [JSONtoTS] Add Windows Support (#21736) - Update CODEOWNERs - feat(mcp-registry): update nuxt ui mcp url (#21763) - Update `MailerSend` extension - Add Windows Support + View Domain DNS Records (#21698) - Add `Vanguard Backup` extension - Manage **Backup Destinations** + Manage **Backup Tasks** + Manage **Remote Servers** (#21769) - Update CODEOWNERs - Update `bmrks` extension - change delete action shortcut + modernize (#21770) - feat(nuxt): update to nuxt ui v4 (#21762) - Updated Wordflow (#21753) - Update CODEOWNERs - Added WebBites extension (#21227) - Update CODEOWNERs - feat: add CometAPI extension for AI-powered text processing tools (#21562) - Update CODEOWNERs - Add nightscout extension (#21552) - PPL: Fixed View Newspapers bug (#21693) - Docs: Update the utils docs - Docs: Add changelog for windows (#21695) - Update CODEOWNERs - Update parcel extension (#21415) - Update CODEOWNERs - Docs: update for the new API release - Update mail extension (#21687) - Add platforms support to package.json for windows and linux (#21666) - Update CODEOWNERs - Update CODEOWNERs - Update dependencies and improve keyboard shortcuts for cross-platform compatibility (#21667) - Update static-marks extension (#21428) - Update gitlab extension (#21670) - Update how long to beat extension (#21671) - Update Google Calendar Quickadd (#21673) - [Statamic Docs] Rename dev readme to avoid it showing on the store (#21654) - Update hue palette extension (#21627) - Update CODEOWNERs - Add `Postiz` extension - Search Channels + Search Posts (week) & Create (draft, text-only) Post & Delete Post (#21553) - Added version switcher to Statamic Docs extension (#21620) - Update CODEOWNERs - Add ip-finder extension (#21543) - Migration for 1.103.0 and Windows docs (#21652) - Update granola extension (#21629) - Update CODEOWNERs - Add Raycast FRC (#21390) - Update unicode-symbols (#21641) - [Playnite Launcher] Support for portable versions & fixes (#21622) - Update duan-raycast-extension extension (#21626) - [Forked Extensions] Fix incorrect content for copying (#21635) - Zed Recent Projects - fix broken pinned cache (#21608) - Update extensions/shodan/src/shodan-api.ts - Add shodan extension - Docs: update for the new API release - Update CODEOWNERs - Add simple-dictionary extension (#21456) - Update CODEOWNERs - `zen-browser`: Add Windows Support (#21600) - Update CODEOWNERs - Add swiss-train-times extension (#21522) - Update CODEOWNERs - Add onbo extension (#21551) - Update zen-browser extension (#21414) - Update CODEOWNERs - Add share-a-quote extension (#21541) - Update CODEOWNERs - Add `Autumn` (useautumn.com) extension - List Customers & Create Customer + List Products & Create Product (#21514) - [OCI] List NoSQL + Manage Object Storage (#21572) - Update CODEOWNERs - Update remember this extension (#21367) - Update debug package to version 4.4.3 (#21574) - [Font Awesome] Update devDependencies in fontawesome extension, removed two unused packages (#21573) - Docs: update for the new API release - Update letterboxd extension (#21520) - Update react-native-directory extension (#21544) - [Xcode] Update assets to match Xcode 26 (#21525) - Enhance PR workflow with merge and branch deletion (#21568) - [Forked Extensions] Fix the infinite rerender (#21566) - Update CODEOWNERs - Update zed-recent-projects extension (#21528) - Add google-calendar-quickadd extension (#21191) - Update CODEOWNERs - Add fuzzy-file-search extension (#21270) - Update CODEOWNERs - Update the dependencies to fix search history and search tabs (#21487) - Add acceptance flags for winget installation (#21539) - Update CODEOWNERs - [Forked Extensions] Add "isMac" and "isWindows" helpers (#21547) - Update CODEOWNERs - Add ai-stats extension (#21480) - Update CODEOWNERs - Update uuid generator extension (#21490) - Update renaming extension (#21554) - Update CODEOWNERs - Make available on Windows, typescript fixes, display ipv4 details even when ipv6 is available (#21560) - [Forked Extensions] Fix the rerender logic of Sync Fork actions (#21563) - Make sure the migrations are cross-platforms (#21516) - Update CODEOWNERs - Add playnite-launcher extension (#20407) - Update CODEOWNERs - Add everything-search extension (#20055) - Update CODEOWNERs - feat: [Video Downloader] Add Windows Support (#21411) - Update CODEOWNERs - Add scoop extension (#21177) - Product Hunt: scraper + logger improvements (#21188) - Update music-assistant-controls extension (#21510) - Update CODEOWNERs - [GitHub Copilot] Refactor data loading (#21511) - Add tembo extension (#21366) - Update CODEOWNERs - Update qq-music-controls extension (#21466) - Update CODEOWNERs - Update rize-io-sessions extension (#21481) - [Forked Extensions] Support migrating from full-checkout (#21488) - Update CODEOWNERs - Remove problematic airplay preference from audio-device extension (#21495) - Update `UptimeRobot` extension - Create Ping Monitors + Show monitor type + Update monitor icon & add tooltip + Modernize (#21497) - Menu bar command, new icons and more (#21431) - feat: update Firecrawl extension to use v2 API (#21477) - Fix formatting of Nuxt UI description (#21479) - Add Nuxt UI entry to MCP registry (#21478) - Update CODEOWNERs - [Git repos] Fix worktree remotes (#21464) - Update scheduler extension (#21472) - Update CODEOWNERs - Add xpf-converter extension (#21448) - Update CODEOWNERs - Update CODEOWNERs - Add zendesk-admin extension (#20763) - Add yr-weather-forecast extension (#21354) - Update CODEOWNERs - Add `Apify` extension - List Actors + List Runs (#21467) - Update CODEOWNERs - [Forked Extensionis] Run local Git commands before requesting APIs (#21457) - Update circleback extension (#21459) - [zed-recent-projects] Handle new sqlite database schema 28 (#21447) - Fixed deprecated Jira API issue. (#21452) - Update `Keygen` extension - List API Tokens and Revoke old ones + Add Windows Support (#21395) - Update `Productboard` extension - View `Objectives` + Modernize (#21450) - Update CODEOWNERs - Stripe: add support for managing customers and subscriptions (#21135) - Update CODEOWNERs - [Font Awesome] Add Windows Support (#21433) - Update CODEOWNERs - Update arxiv extension (#21033) - Update CODEOWNERs - [YouTube Companion] Add Windows Support and bump dependencies (#21436) - Update CODEOWNERs - [Forked Extensions] Add support for create extensions (#21364) - Add whentomeet extension (#20675) - Update CODEOWNERs - Add Circleback extension (#21391) - Update CODEOWNERs - update packages and add option to exit raycast after cleaning link (#21269) - Update CODEOWNERs - Add tuneblade extension (#21350) - Update wechat-devtool extension (#21399) - Update CODEOWNERs - feat(KeepassXC): add windows support. (#21430) - Add Qovery extension (#21255) - Update CODEOWNERs - Update raindrop-io extension (#21394) - Update comet extension (#21362) - Update CODEOWNERs - Update cheatsheets-remastered extension (#21376) - Add publora extension (#21372) - Update CODEOWNERs - Update CODEOWNERs - Update `Unsplash` extension - Fixed crash when "Rate Limit" exceeded + Centralized error handling + Removed `node-fetch` (#21406) - [cURL Extension] Add Windows Support (#21427) - [Raindrop.io] Move @sh-cho to past contributors (#21435) - [Update] [Things] Add project update/delete tools and improve type safety (#21416) - Update obsidian-link-opener extension (#21443) - Update zed-recent-projects extension to use latest sqlite Zed schema (#21180) - Fix Jira extension: JQL error (#21429) - Docs: update for the new API release - Update `Manotori` extension - Support Windows! + View DNS Zones + View DNS Records + Create DNS Record (#21370) - Update github extension (#21381) - Update docker extension (#21398) - Update Advanced Replace for regex transforms and entry options (#21409) - Update deepwiki extension (#21400) - Update meta-music extension (#21417) - Update CODEOWNERs - Update `Opera` extension - Fix: would show as not installed due to changed path + Add better error handling when dealing with `AppleScript` - Modernize to use latest Raycast configuration + Removed `run-applescript` (#21421) - Update instagram media downloader extension (#21422) - Update CODEOWNERs - Update `Proxmox` extension - show status in `tooltip` + token is now password + modernize to use latest Raycast config (#21349) - Update CODEOWNERs - Add red-note-post-viewer extension (#21315) - Fix documentation for screenshot extension: capture-to-clipboard command (#21311) - Update flibusta-search extension (#21327) - Mention Forked Extensions in dev doc (#21158) - Update CODEOWNERs - Fix todoist extension: Setting due date and time (#21331) - Update CODEOWNERs - Add plexus extension (#21289) - Update CODEOWNERs - Add r2-uploader extension (#21215) - Cursor Agents: Add a new tool to get back all repositories that are s… (#21337) - Update CODEOWNERs - [cursor-agents] Made `ref` optional in the agent launch form (#21334) - Cursor: Few smaller fixes (#21333) - Add error handling for launchCommand (#21332) - Update CODEOWNERs - Cursor Agents (#21328) - Update CODEOWNERs - Update memos extension (#21213) - Release more extensions on Windows (#21324) - Update CODEOWNERs - Update google-chrome extension (#21235) - Add lockfiles and registry rules to copilot instructions (#21254) - docs: update documentation (#21325) - Update CODEOWNERs - [Gandi] New Extension (#21120) - Update RAE Dictionary extension with latest improvements (#21307) - Update CODEOWNERs - Add `Visitor Queue` extension - View "Data Views" + View "Leads" + View "Contacts" (Windows supported!) (#21322) - Update zeabur extension (#21321) - Update CODEOWNERs - Add music-assistant-controls extension (#21249) - Update CODEOWNERs - Add ChartMogul extension (#21251) - [google-chrome-profiles] Refactor Chrome profile opening into dedicated no-view commands (#20623) - Fix incorrect error message in GitHub Enterprise issues search (#21231) - Update CODEOWNERs - Add hebrew-date-zmanim extension (#21292) - Update CODEOWNERs - Add atomberg-raycast-extension extension (#21185) - Improve error handling in GitHub Copilot extension (#21308) - feat(add-expense): Add "Category" selection dropdown to "Add Expense" form (#21224) - feat(shell-history): add option to reverse history order (#21304) - Update CODEOWNERs - Add vanishlink extension (#20996) - Revert "Renaming metadata images (#21305)" (#21306) - Update brreg extension (#21169) - Update brave-search-with-results extension (#20916) - [Farcaster] cleanup and migration (#21299) - Renaming metadata images (#21305) - Fix `pr-bot` for detecting touched extensions (#21250) - Update CODEOWNERs - Add Windows support and update dependencies (#21282) - Fix GitHub Copilot instructions to provide actionable code suggestions without character escaping (#21276) - Update CODEOWNERs - Update `solidtime` extension - use custom (self-hosted) URL + handle errors + 2 EmptyViews (#20602) - [Forked Extensions] Improve Sync actions (#21294) - [Bitwarden] Sync vault on command launch (#21300) - Update `Tally` extension - update many settings of a Form + fix: crash when no Form title + add shortcut to "Open in Tally" `Action` (#21302) - [Forked Extensions] Fix the fork action (#21281) - Update CODEOWNERs - Add tallinn-transport extension (#20762) - Update CODEOWNERs - [Mozilla Firefox] Refactor and fixes (#20767) - Update CODEOWNERs - [Whimsical]: First version, only AI (#20815) - feat(raindrop-io): prefill add form from launch context (#21261) - Update CODEOWNERs - Fix todoist extension: An error creating task (#21153) - [Forked Extensions] Improve error handlers and toasts (#21222) - Update CODEOWNERs - Update spotify-player extension (#21234) - Update CODEOWNERs - Update ado-search extension (#20586) - Update CODEOWNERs - Add sourcegraph-amp-dash-x extension (#20730) - Update CODEOWNERs - Update dotmate extension (#21129) - Update CODEOWNERs - Add barassistant extension (#21126) - Update `Airtable` extension - precise errors + `Add` Icon to **Bases** & **Fields** + `Add` support for **Personal Access Token** + `Simplify` OAuth + `Modernize` (#21262) - fix(readwise-reader): Use correct URL when opening articles (#21219) - Complete overhaul of "Where Is My Cursor?" extension (#21124) - Update stale PR message and timing settings (#21273) - Update `My Idlers` extension - Add Server (#21256) - Add Windows support and update dependencies (#21260) - [MapleStory.gg] Routine maintenance (#21266) - Update CODEOWNERs - Fuelx: Override @coinbase/wallet-sdk and cbw-sdk versions (#21247) - Add comprehensive GitHub Copilot instructions for extension reviews (#21243) (#21244) - Update polymarket extension (#21236) - Add AI tools to GitHub Copilot extension for task creation and repository management (#21228) - kill-process: Add support for Windows (#21240) - Gate some more extensions for Windows (#21239) - Fix formatting in README.md for GitHub Copilot (#21226) - Update CODEOWNERs - Add GitHub Copilot extension (#21225) - Update CODEOWNERs - Add Mobius Materials extension (#21136) - [Installed Extensions] Use Raycast buitl-in `Action.CopyToClipboard` (#21216) - notion: Fix opening page on windows (#21205) - Update CODEOWNERs - Update CODEOWNERs - Update spotify-player extension (#21208) - Add fuelix extension (#21067) - Update copy-path extension (#21168) - Update `MailerSend` extension - View Domain Webhooks (#21194) - [Forked Extensions] Polish `Sync Fork` & fix Git path for Windows (#21204) - Update freeagent extension (#21203) - Update One Time Password (#20176) - [Language Detector] Add support for internet slangs (#21201) - Docs: update for the new API release - Update CODEOWNERs - Vercel/Vercast: Bump deps, make available on Windows (#20758) - Update CODEOWNERs - apple-maps-search - Windows support (#20700) - Update roblox extension (#18919) - [Forked Extensions] Fix `Sync Fork` and check Git executable file (#21187) - Update CODEOWNERs - Whois: Add windows support (#20759) - Add \'Windows\' to exempt PR labels in stale.yml (#21176) - feat: Rube MCP Server added to the registry (#21146) - Update CODEOWNERs - Add `Lemon Squeezy` extension - List all orders in all your stores + List all products in all your stores (#21115) - Update awork extension (#21178) - Add cheatsheets-remastered extension (#20991) - Update CODEOWNERs - Add leap-new extension (#21175) - Update CODEOWNERs - Update `Console Dev` extension - Major Rewrite + Support Windows + Fix Parser (#21036) - Update CODEOWNERs - Add luxafor-controller extension (#21082) - Update youversion-suggest extension (#21074) - [Forked Extensions] Sync fork repo with upstream repo on GitHub (#21171) - Update CODEOWNERs - Add shopinfo-app extension (#20884) - Update awork extension (#21040) - Update CODEOWNERs - Update radarr extension (#21118) - Update Fathom Analytics menu bar icon and add shortcut (#21147) - Update CODEOWNERs - Update aave-search extension (#21149) - [Installed Extensions] Add support launching target extension (#21154) - [Steam] Routine maintenance (#21156) - Update ray-clicker extension (#21161) - Update gradient-generator extension (#21163) - Bugfix/issue-18862 MLB Schedule Fix, addition of Standings and Search Players command (#21167) - [Forked Extensions] Add support for Windows & improvements (#21060) - Update CODEOWNERs - Update CODEOWNERs - Update copy-path extension (#21134) - Fix Slack extension: Send message is not working. (#21148) - Update brreg extension (#21151) - Update CODEOWNERs - Update CODEOWNERs - [GitHub] Add Starred Repos command (#21110) - Add monkeytype extension (#21108) - Update CODEOWNERs - ray-so: Add Windows support (#20740) - Update ente-auth extension (#20663) - Update CODEOWNERs - Add obsidian-link-opener extension (#21021) - Update CODEOWNERs - Add crypto-search extension (#21084) - [Home Assistant] Port to windows (#21065) - feat: add [Generate QR Code from Selection] Command for [QR Code Generator] Extension (#20831) - Update CODEOWNERs - Update CODEOWNERs - Update google-chrome extension: Add reload/refresh tab action (#21140) - feat(endel): add Endel extension (#20788) - Update CODEOWNERs - Add chatgpt-search extension (#20721) - Update CODEOWNERs - Fix Jira extension: Deprecated Atlassian API methods (#21057) - Add odoo-companion extension (#21058) - Update brreg extension (#21046) - [spotify-player] Check for duplicate tracks before adding to a playlist (#20617) - Update aws extension (#21016) - ext/media-converter: hotfix: simple quality settings (#21092) - Update `logitech-litra` extension to support devices without a serial… (#21139) - Update CODEOWNERs - [Multilinks] Add Dia browser support (#21128) - Update 1password extension (#21142) - Update todoist extension (#21141) - Update `changedetection.io` extension - Create + Delete + modernize + add EmptyView (#21143) - Update openrouter-models-finder extension (#21100) - Fix a minor typo in video-downloader Installer view (#21102) - Update CODEOWNERs - Add Looma.fm extension with all reviewer feedback addressed (#20781) - Update CODEOWNERs - Add get-cat-images extension (#20964) - Update CODEOWNERs - feat(add-expense): add “Recent” section to “Add Expense” form (#21032) - Update CODEOWNERs - Add typora-note-creator extension (#20851) - Update commit-issue-parser extension (#21050) - [Surge] Routine maintenance (#21098) - [United Nations] Handle SIGTERM gracefully (#21086) - Update search index used in Statamic Docs extension (#21089) - Update CODEOWNERs - feat: support specifying issue type when creating an issue (#21043) - Update naver-search extension (#20235) - [Say] Allow stop saying & handle SIGTERM gracefully (#21081) - Update CODEOWNERs - [Spotify] Fix reading values from undefined (#20986) - Add gradient-generator extension (#21012) - Update CODEOWNERs - Update raycast-surge extension (#20578) - Add openrouter-quick-actions extension (#20958) - Update CODEOWNERs - Add scheduler extension (#20641) - Update CODEOWNERs - Add comet extension (#20632) - Update ray-clicker extension (#21088) - Update todoist extension (#21078) - Update CODEOWNERs - Update ship24-client extension (#21059) - Add openrouter-models-finder extension (#21005) - Update CODEOWNERs - Add zsh-aliases extension (#20985) - Update CODEOWNERs - Add ray-clicker extension (#20979) - Update `Wave` - Enhance `Invoice` to show amounts due and paid + Move "Business Products And Services" to its own file + Add new product or service (#21052) - Update password-generator extension to guarantee presence of character choices (#20976) - Update CODEOWNERs - [Forked Extensions] Initial release (#20968) - Update CODEOWNERs - Update todoist extension (#20984) - Docs: Update the utils docs - Update brreg extension (#21027) - Docs: update for the new API release - feat: adding the calculation time for MOROCCO (#20917) - Update CODEOWNERs - feat(model-context-protocol-registry): linear mcp server (#20895) - [defbro] Dynamic detection of defbro command path (issue #20881) (#20882) - Brew: Close Raycast in case the brew cmd typed in raycast window (#20780) - Hot Fix: Granola authentication to support WorkOS tokens (#21039) - Update CODEOWNERs - Add vixai extension (#20772) - Update lookaway extension (#21038) - Update CODEOWNERs - Bitaxe initial commit (#20750) - Update CODEOWNERs - Update cyberchef extension with custom Instance URL (#20735) - Update duckduckgo-image-search extension (#21034) - 🐛 fix browser-extension for zen browser (#21035) - Update CODEOWNERs - Add positron extension (#20596) - Update CODEOWNERs - Add french-company-search extension (#20865) - Update minio-manager extension (#20999) - Update change case extension (#20960) - Update grammari-x extension (#20998) - Support for scientific notation and decimal encoding in converter (#21011) - Update Claude Code Cheatsheet - Add v1.0.55-v1.0.81 features (#21004) - Update CODEOWNERs - Update trakt-manager extension (#20854) - [Language Detector] Add support for Windows (#20832) - Update quick-git extension (#21001) - Update CODEOWNERs - Update `SwitchHosts` extension - modernize + icons + markdown + add hook + remove `setTimeout`,`node-fetch` (#21017) - Update `Clockify` extension - Select Tag During Start + More Precise Types + Modernize (#21002) - Update `cPanel` extension (#20977) - Update google lens extension (#21019) - Update CODEOWNERs - Add invisible-text-detector extension (#20926) - Update CODEOWNERs - Add word4you extension (#20638) - Update CODEOWNERs - Add radarr extension (#20904) - Update CODEOWNERs - feat(8ball): add preference to choose default action (copy/paste) and… (#20947) - Update CODEOWNERs - Update deepwiki extension (#20955) - Update CODEOWNERs - Update dodo-payments extension (#20956) - Update vercast extension (#20838) - Update CODEOWNERs - Update search-gule-sider extension (#20911) - [Groq] model update and improvements (#20630) - Add support for password protected YubiKeys in yubikey-code (#20938) - [Time Tracking] rename in Edit Form + Modernize (#20922) - [Brand.dev] trigger search via search text (QoL) (#20944) - Update CODEOWNERs - Add unblocked-answers extension (#20696) - Update CODEOWNERs - Add chainscout extension (#20712) - Update CODEOWNERs - tabler: add download actions (#20704) - Update CODEOWNERs - Add raycast-kozip-extension extension (#20686) - Update CODEOWNERs - Add jitsi extension (#20680) - Update CODEOWNERs - Add time-calculator extension (#20674) - Docs: update for the new API release - Update CODEOWNERs - feat(todoist): Add NLP task creation with natural language parsing (#20647) - Update CODEOWNERs - Add synology-download-station extension (#20643) - Add owl extension (#20777) - Update CODEOWNERs - Update synonyms extension (#20879) - Update scira extension (#20889) - [Notion] Quick Capture - Use bookmark block instead of markdown link when Capture As is set to Bookmark (#20906) - [Color Picker] Fix Convert Color command (#20913) - Update v0-by-vercel extension (#20923) - Update CODEOWNERs - Add v0-by-vercel extension (#20792) - Add `.gitattributes` & get rid of `\r\n` (#20498) - [Brand Icons] Add support for creating social badges through cross-extension (#20861) - Update `PocketBase` extension - **modernize** + search-backups + store token (#20876) - Update `Keygen` extension - List, Create and Delete Users + View API Usage + Fix typo in command title: "Voew Licenses" -> "View Licenses" (#20885) - Update certificate-viewer extension (#20894) - Update CODEOWNERs - Add yap extension (#20888) - Update CODEOWNERs - Media-converter extension: more quality settings, type refactor (#20427) - Update CODEOWNERs - Add emojis-com extension (#20875) - Add dodo-payments extension (#20669) - Update CODEOWNERs - Add twingate extension (#20580) - Update CODEOWNERs - Update brave-search-with-results extension (#20570) - Update CODEOWNERs - Update CODEOWNERs - Add where-is-my-cursor extension (#20892) - Update image-wallet extension (#20806) - Add proton-authenticator extension (#20773) - Update CODEOWNERs - Add sharding-tools extension (#20394) - Update CODEOWNERs - Add Save Link extension (#20521) - Update CODEOWNERs - Update display-modes extension (#20260) - Update CODEOWNERs - Update craftdocs extension (#19976) - Update CODEOWNERs - Update aerospace extension (#20847) - Update aws extension (#20862) - Update CODEOWNERs - Update pick-your-wallpaper extension (#20805) - Update CODEOWNERs - Add `Tally` extension - view, rename workspaces + view forms + view form submissions (#20493) - Update at-profile extension (#20853) - Update aws extension (#20856) - Update grammari-x extension (#20848) - Update preferences.md (#20855) - Update youtrack extension (#20571) - Update Esports pass extension - replace toISOString() with toLocaleDateString() (#20553) - Update CODEOWNERs - Add kiro extension (#20790) - Update freeagent extension (#20844) - [Badges] Add shortcut for picking logo (#20849) - Update CODEOWNERs - Update svgl extension (#20852) - Add docklock-plus extension (#20419) - Update slugify-file-folder-names extension (#20528) - Update CODEOWNERs - Add freeagent extension (#20828) - Update CODEOWNERs - Update aws extension (#20809) - Update CODEOWNERs - Add sefaria extension (#20378) - Update CODEOWNERs - Add tokenizer extension (#20513) - Update CODEOWNERs - Update CODEOWNERs - Add parse-logs extension (#20817) - Add ag-audioflow extension (#20798) - Update CODEOWNERs - [GitLab] Fix GitLab lint issues (#20830) - Update CODEOWNERs - Adding new social platforms (#20549) - Update `OpenStatus` extension - ✨AI Tools✨ (#20813) - [GitLab] Add windows support (#20824) - Update raindrop-io extension (#20820) - Update CODEOWNERs - Update timezone-buddy extension (#20723) - Update: Implement recently viewed books feature and enhance caching mechanism (#20664) - Update CODEOWNERs - Add raycast-focus-stats extension (#19456) - Fix token expired auth flow in SendAI extension (#20711) - Update CODEOWNERs - Add commit-issue-parser extension (#20395) - Update CODEOWNERs - Add ozbargain-deals extension (#20288) - Update mermaid-to-image extension (#20614) - [zoxide] fix compatibility with Intel Macs, clean up /Users/sparks/.npm/_npx/daafed3b81e85078/node_modules/.bin:/Users/sparks/Projects/raycast-extensions/extensions/shodan/node_modules/.bin:/Users/sparks/Projects/raycast-extensions/extensions/node_modules/.bin:/Users/sparks/Projects/raycast-extensions/node_modules/.bin:/Users/sparks/Projects/node_modules/.bin:/Users/sparks/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/opt/homebrew/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/sparks/Projects/raycast-extensions/extensions/shodan/node_modules/.bin:/Users/sparks/Projects/raycast-extensions/extensions/node_modules/.bin:/Users/sparks/Projects/raycast-extensions/node_modules/.bin:/Users/sparks/Projects/node_modules/.bin:/Users/sparks/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/opt/homebrew/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/opt/homebrew/opt/ruby/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/sparks/.rbenv/bin:/Applications/Sublime Text.app/Contents/SharedSupport/bin:/opt/homebrew/opt/ruby/bin:/Users/sparks/.nix-profile/bin:/run/current-system/sw/bin:/nix/var/nix/profiles/default/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin (#20458) - Update system-monitor extension (#20465) - Update `claude-code-cheatsheet` extension - Add Claude Code v1.0.51-v1.0.54+ support (#20558) - Update CODEOWNERs - Update wol extension (#20601) - Update CODEOWNERs - Add google-lens extension (#20319) - Update CODEOWNERs - Update CODEOWNERs - unix-timestamp: Make available on Windows (#20747) - Update visual-studio-code extension (#20606) - Update CODEOWNERs - Update CODEOWNERs - Update raindrop-io extension (#20563) - Add dia-skills extension (#20548) - Update letterboxd extension (#20615) - end-of-life - Windows support (#20701) - Gemini/updatemodels-July (#20662) - Fix: Support currency format in transaction amount validation (#20399) - Update CODEOWNERs - feat: Update Rewind Icon (#20744) - Update CODEOWNERs - Update hypersonic extension (#20462) - Update CODEOWNERs - Update grok-ai extension (#20734) - Add network-proxy extension (#20425) - Update CODEOWNERs - Update CODEOWNERs - Support device name for audio device selection (#20460) - Update defbro extension (#20367) - Show Artist\'s name when liking current track (#20583) - Update wechat-devtool extension (#20668) - Add character tabulation to Unicode Symbols extension (#20555) - Update CODEOWNERs - [Music extension] Add Remove from Library command (#20168) - Update nusmods extension (#20625) - Update quick-notes extension (#20569) - Update CODEOWNERs - Deleted directory (#20776) - Update CODEOWNERs - extensions/model-context-protocol-registry: APIFY_API_TOKEN → APIFY_TOKEN (#20749) - Renames the extension from "hoarder" to "karakeep". (#20113) - Update pr-bot.ts (#20775) - Update CODEOWNERs - Update pomodoro extension (#20653) - Update CODEOWNERs - Add duckduckgo-image-search extension (#20221) - Update CODEOWNERs - Add VLC extension (#20556) - Update CODEOWNERs - tw-colorsearch - Windows support (#20702) - Update Project Hub Extension - Add Recent Projects Section (#20561) - Update arc extension (#20761) - Update extension (#20741) - Update CODEOWNERs - [Brand Icons] Handle readfile errors gracefully (#20697) - Update `Host Switch` extension - add Brave support + Modernize + Error Handling + mark as "macOS" only (#20654) - Update CODEOWNERs - Update `Tabler` extension - Copy HTML Char Actions + Modernize (#20626) - Add `Host.io` extension - get full domain data for any domain (#20591) - Update `Microsoft Edge` extension - fix "new tab" not opening + modernize + mark as "MacOS" only (#20560) - Update `Dokploy` extension - Manage Destinations (S3 mounts - mostly used for Backups) + Update `navigationTitle`s (#20720) - Update CODEOWNERs - Update `HestiaCP` extension - Modernize + View,Create Cron Jobs (#20557) - Update `SSH Manager` extension - Select SSH Config File + loads of Enhancements (#20461) - Update CODEOWNERs - Update `Open in JSON Hero` extension - QoL Enhancements + Modernize (#20515) - Docs: update for the new API release - Update CODEOWNERs - Add planning-center extension (#20502) - Update youversion-suggest extension (#20527) - Docs: update for the new API release - Docs: update for the new API release - Update `Mattermost` extension - Fix: Direct Messages would not show in `Search Channels` (#20628) - Update `Library Genesis` extension - fix search no longer working + Modernize (#20542) - Docs: update for the new API release - Update CODEOWNERs - Update tailscale extension to add more information about Mullvad exit nodes (#20357) - Deprecate Ghost Docs Extension (#20690) - Update CODEOWNERs - author update (#20705) - [Badges][Brand Icons] Bugfixes & improvements (#20545) - Update public_raycast_extensions.txt (#20688) - Update CODEOWNERs - Update pieces-raycast extension (#20296) - feat[Backstage plugin]: configurable Backstage API URL (#20398) - Update whisper-dictation extension (#20482) - Update CODEOWNERs - Update endoflife (#20651) - Update T3 chat\'s icon (#20599) - Update CODEOWNERs - feat: add windows support mymind extension (#20239) - [Mastodon] Add support for Windows (#20448) - [NeoDB] Add support for Windows (#20471) - Update CODEOWNERs - [NUSMods] Add support for Raycast Windows (#20240) - [Todoist] Windows support (#20487) - Update gdrive homepage url (#20608) - Update CODEOWNERs - Arc: Fix trying to open a tab with `open` (#20579) - Update Zerion author to original one (#20582) - Update CODEOWNERs - Update zerion author (#20581) - feat: Backstage plugin supports static token (#20383) - [groq] Remove Llama Guard 4 12B 128K (#20507) - Update CODEOWNERs - Add preference to toggle default reuse open GitHub search tab (resolves #20488) (#20489) - Add weread-sync extension (#20205) - Docs: update for the new API release - Update CODEOWNERs - Add cloudflare-email-routing extension (#20305) - Update dpm-lol extension (#20491) - macosicons: fix API error handling for non-JSON responses (#20172) - Update CODEOWNERs - [Perplexity] Add Perplexity desktop app support to extension (#20393) - Parse Zed local workspace paths from binary format correctly (#20086) - Docs: update for the new API release - Update prepare-an-extension-for-store.md (#20473) - Update wechat-devtool extension (#20406) - [Update] [IP Geolocation] Optimize extension icons (#20467) - Update CODEOWNERs - [World Clock] Avoid accessing the `.map` function on possibly undefined data (#20469) - Update CODEOWNERs - [Update] [Easy New File] Support Default Directory (#20449) - update pr merge dates (#20457) - Update grammaring extension (#20464) - [raycast2github] Fix name mapping (#20472) - Update CODEOWNERs - Add extension for opening new instances of apps (#20432) - Update CODEOWNERs - Update remove-paywall extension (#20331) - Update CODEOWNERs - Update registries to use the official npmjs registry (#20440) - Add paste-to-markdown extension (#19999) - Update CODEOWNERs - Update vscode-project-manager extension (#20446) - [Easings] Add spring animations (#20445) - Update CODEOWNERs - Update groq extension (#20439) - [Brand Icons] Use `pacote` for downloading & extracting icons (#20391) - [espanso] support import (#20400) - Update secret-browser-commands extension (#19948) - Fixing issue in ext/beehiiv (#20437) - Update CODEOWNERs - Update change-case extension (#20002) - Update ideate extension (#20063) - Update `Appwrite` extension - DB, Storage, User Enhancements (#20386) - Update `Oracle Cloud (OCI)` extension - implement provider w/ context + basic objectstorage command (#20405) - [valkey commands search] Migrate to useFetch and group the commands (#20421) - Update `Neon` extension - add project, delete projects + Modernize to use latest Raycast config (#20402) - [espanso] add binary path option (#20280) - [Larajobs] update metadata image + chore (#20417) - feat(readwise-reader:) add option to open in Reader desktop app (#20424) - Update URL unshortener (#20385) - Update granola extension (#20384) - feat(readwise-reader): add ability to include tags when saving links (#20388) - Update background-sounds (#20387) - Update ScreenOCR (#20408) - Update instagram-media-downloader extension (#20413) - Update yu-gi-oh-card-lookup extension (#20414) - Update CODEOWNERs - Add pdf-compression extension (#20194) - Update CODEOWNERs - Add control kef extension (#20127) - Update pr-bot.ts (#20376) - Update Tasklink extension (#20375) - Update CODEOWNERs - Added open-in-textmate extension (#20266) - Update CODEOWNERs - Update ente-auth extension (#20122) - [SteamGridDB] Add support for Windows (#20364) - Update CODEOWNERs - [Update] [DocSearch] Add TailwindCSS v4, Next.js, MassTransit and Pinia documentations (#20254) - Update CODEOWNERs - FocusFLOW (#20214) - Update repology-search (#20370) - Update CODEOWNERs - Add WeChat DevTool extension (#20222) - Update URL-unshortener (#20136) - [ProtonDB] Add support for Windows (#20338) - Fix GIF Search extension updates (#20360) - PR bot assignee constant (#20358) - run pr bot on ready to review (#20356) - [TourBox] Add support for Windows (#20337) - add debugging for draft pr review assigning (#20353) - Update `Name.com` extension - ✨ AI Enhancements (add 3 Tools) + Migrate API (Legacy v4 to Core v1) + Modernize (#20340) - PR bot should check PR files in existing extensions too (#20352) - Update CODEOWNERs - Add console logs to PR Bot for testing (#20351) - Add rounding-number extension (#20232) - Update CODEOWNERs - toggle-desktop-visibility for mac os 26 tahoe (#20225) - Update zipline extension (#20336) - Update CODEOWNERs - Update slack extension (#19219) - Update FHIR extension (#20329) - Update CODEOWNERs - Update CODEOWNERs - [Easy Dictionary] Remove the unused icon file (#20333) - Update aerospace extension - Changed the icon to the new design. (#20342) - things: handle JXA scripts with no result (#20341) - Update trenit extension (#20215) - Apply "AI Extension" label for new extensions as well as existing ones (#20306) - Update `Short.io` extension - `search-links` now allows you to view links independent of default + fix: `shorten-link-with-domain` persists Default Domain properly (#20327) - Create new message when no number match found (#20326) - Update CODEOWNERs - Support for OTP codes that include a hyphen (#20236) - Update anytype extension (#20227) - Update CODEOWNERs - Update ray-boop extension (#20231) - Update easydict extension (#20190) - Update CODEOWNERs - Add quick-jump extension (#20050) - Update CODEOWNERs - Add zipline extension (#20157) - Update CODEOWNERs - Add ship24-client extension (#20170) - Update Raycast X link in README (#20318) - things: improve project detection to not depend on existing projects (#20300) - noteplan 3 | fix #20116 Daily plan not displaying (#20308) - Update CODEOWNERs - feat(notion): show properties in page preview (#20111) - Update CODEOWNERs - fix: typescript error handling (#20298) - Update spotify-player extension (#20178) - Update CODEOWNERs - New Extension : Percentage Calculator (#20195) - Update CODEOWNERs - Update g-cloud extension (#20210) - Update Lightshot Gallery extension (#20246) - [HoudahSpot Search] fix fallback text not used (#20295) - Update CODEOWNERs - Update browser-bookmarks extension (#20187) - Add trip search command to Norwegian Public Transport extension (#20226) - Update CODEOWNERs - Add FHIR extension (#20163) - Update CODEOWNERs - Update xecutor extension (#20159) - Add climbing-grade-converter extension (#20134) - Update Cider extension (#20241) - Update CODEOWNERs - change author (#20289) - things: enhance error reporting + troubleshooting hints (#20224) - [Update] [Hide Files] new icon style (#20253) - [Update] [Bing Wallpaper] Add refresh interval (#20249) - Update CODEOWNERs - [Update] [Browser tabs] new icon style (#20251) - [Update] [Maven Central Repository] new icon style (#20252) - Add clipyai extension (#19740) - Update CODEOWNERs - Update CODEOWNERs - Update `Larajobs` extension - filter by Type, Salary, Tag (#20286) - [zed-recent-projects] Adds a preference checkbox to use the Zed development Sqlite database (#19803) - Add Metabase AI Tools (#17673) - Update CODEOWNERs - Add squeeze extension (#20083) - Update CODEOWNERs - Update CODEOWNERs - Add `Upstash` extension - List Redis Databases, View Details & Usage, Create Database + List Vector Indices, Create Index, Delete Index (#20274) - Update `HoudahSpot Search` extension - fix: text passed as "undefined" when Argument is empty in fallback mode + add `metadata` image + Modernize + `chore` (#20250) - [Spaceship] Toggle Domain Transfer Lock + Get Domain Auth Code + Add AAAA, CNAME DNS Records (#20243) - Update `Keygen` extension - List & Add Products + Color License based on Status + show: Expiry, Scheme, Valid in License (#20228) - Update `Sanity` extension - update logo + modernize (#20220) - Update CODEOWNERs - Update `MailerSend` extension - View API Quota + Filter Domain Activity by Type + View, Rename, Toggle (Pause/Unpause) Tokens (#20197) - [Say] Fix duplicate lines in Configure Say command (#20245) - [Update][Are.na] show status accessory w/ color in search channels + remove auto-generated types (#20265) - Update CODEOWNERs - [ccusage]: fix(#20056) resolve custom npx path issue in ccusage CLI commands (#20262) - update[send-ai]: added new features in the extension (#20273) - [Image Modification] Bug Fixes (#20282) - Update curl extension (#20284) - Update f1-standings extension (#20217) - Update CODEOWNERs - Add csfd extension (#18344) - Docs: Update the utils docs - Update CODEOWNERs - Add rewiser extension (#20023) - Update `Resend` extension - Update Icons + Modernize to use latest config + chore: remove `node-fetch`, `cross-fetch` (#20179) - Update CODEOWNERs - Major update to Kaleidoscope extension, see README and CHANGELOG. (#20076) - [catppuccin] update data source (#20216) - update extension raycast-Gemini - safety-setting (#19277) - Update CODEOWNERs - Add ray-boop extension (#20108) - Update CODEOWNERs - [Spotify Player] Fix for Search command not working issue (#20183) - Update CODEOWNERs - Add new raycast extension - SendAI (#20104) - things: fix project update actions (#20161) - Update `Wave` extension - Add new customers through `Form` + Remove customers after confirming (`Alert`) + Move "Business Customers" to its own file + Modernize to latest config (#20185) - Spotify Lyric Finder Improvements (#20154) - Update CODEOWNERs - Add certificate-viewer extension (#20110) - Update CODEOWNERs - Add markdown-preview extension (#20052) - Update CODEOWNERs - Add somafm-for-raycast extension (#20027) - feat: add getThumbnailUrl to optimize image loading and update components to use it (#20177) - Update CODEOWNERs - feat: add resend wallpaper extension (#20169) - Update CODEOWNERs - Update `Polar` extension - View Products and their Media + Optionally BYOK + Remove `node-fetch` (#20156) - Update CODEOWNERs - Add Instant Translate feature to Google Translate extension (#20093) - Add quick-quit extension (#19869) - extensions/messages: docs: add note about automation permissions for sending messages (#20148) - Update `Doppler` extension - View Logs of a Config + "Open In Doppler" component (#20164) - Try/catch AI label PR bot (#20165) - Auto-label AI extensions in PRs (#20160) - Update CODEOWNERs - Update apple-notes extension (#19613) - Update CODEOWNERs - Add roblox-creator-docs extension (#20024) - Update music extension (#19654) - Update CODEOWNERs - Update apple-notes extension (#20138) - Update zeabur extension (#20140) - Update `radicle` extension - remove need for `radicle-httpd` (#20141) - Update CODEOWNERs - Update spotify-player extension (#19950) - Update CODEOWNERs - Add windsurf extension (#20046) - Add stacks extension (#19863) - Update CODEOWNERs - Add markdown-styler extension (#19967) - Update CODEOWNERs - Update CODEOWNERs - Update `Pocket` extension - add an Alert in Show informing users to Export + required url in create (#20126) - Update `Obsidian Tasks` add `preference` to show description in details markdown (List Tasks) (#20098) - [create-link]: Add customizable templates and tab selection feature (#20120) - Update preferences.md (#20131) - Update CODEOWNERs - [Get SSH Keys] OpenInFinder + Key as Icon (#20117) - No `-lossless` flag on `dwebp` (#20125) - feat: add Gen-PDF MCP Server to the registry (#19924) - Update CODEOWNERs - Update CODEOWNERs - Add tidal extension (#19784) - Add image-shield extension (#19969) - Update CODEOWNERs - Update cobalt extension (#20090) - Update sequoia-tiling extension (#20101) - Update lookaway extension (#20092) - Update media-converter extension: proper user preferences (#20081) - docker,dockerhub,drafts,ensk-is,seo-lighthouse: Update to use newer version of `tar-fs`. (#20068) - Update CODEOWNERs - Add Default Formality Configuration Option (#19656) - Update CODEOWNERs - Add sidecar extension (#19980) - [GitLab] Group milestones on issue and mr create form (#20072) - Update CODEOWNERs - Update CODEOWNERs - Update `Short.io` extension - Add Domain inside `shorten-link-with-domain` + Modernize extension to use latest Raycast config (#20070) - fix: replace youtube-transcript lib (#20080) - Add sequoia-tiling extension (#19877) - Update CODEOWNERs - Update github extension (#20073) - Update CODEOWNERs - Support device name for audio device selection (#19995) - New: Password.Link Extension (#19996) - Update CODEOWNERs - Add clipmate extension (#19958) - Update CODEOWNERs - Add regex-batch-renamer extension (#19849) - [Bitwarden] Catch OTPAuth initialization (#20064) - Update CODEOWNERs - Update quick-notes extension (#19965) - Update linkding extension (#19756) - Update media-converter extension (#20061) - Update CODEOWNERs - Update docker extension (#19817) - [ChatGPT Quick Actions] API pricing fix (#19964) - Update raycast-zoxide extension (#20032) - Update whisper-dictation extension (#19989) - Browser Bookmarks: Add support for Dia and Ghost Browser (#19971) - Update CODEOWNERs - Add duan-raycast-extension extension (#19765) - Update CODEOWNERs - Add ideate extension (#19791) - Update CODEOWNERs - Update transmission extension to fix error on showing a list (#19809) - Update CODEOWNERs - Update Markdown to ADF library (#19972) - Update CODEOWNERs - DotMate - Raycast Extension for Dotfile Management (#19819) - Update media-converter extension: better installation (#19808) - Update wp-bones extension (#19953) - Update CODEOWNERs - Update CODEOWNERs - Update project-code-to-text extension (#19921) - Add `MailerSend` extension - View Domains, View Domain Activity (24 hours), View Templates, View Users (#20022) - Update CODEOWNERs - Add psn extension (#19914) - Update CODEOWNERs - Add minio-manager extension (#19906) - Fix Slack extension YAML (#19865) - Better handling of cloc command to show statistics (#20040) - Aerospace - add monitor name to switch apps action (#19899) - Updated Font Awesome version, added support for more icon types (#19963) - Update CODEOWNERs - Update translate extension (#19933) - Update openrouter-model-search extension (#20028) - [ccusage] Hotfix critical React Hooks Rules violations and improve loading states (#20033) - [Google Translate] Show auto detected language in Quick Translate (#20036) - [Bitwarden] fix: check if user can access BrowserExtension (#20029) - Update CODEOWNERs - Update tailwindcss extension - add default action preference to `Search Colors` command (#19707) - Add claude-code-cheatsheet extension (#19828) - Update Repository Manager (#19994) - [ccusage] Major v2.0.0 upgrade: AI extension support and architecture refactor (#20019) - [Google Translate ] fix quick translate with Chinese auto detected language (#19991) - Update CODEOWNERs - Add redirect-trace extension (#19854) - Update workouts extension (#20018) - Update raycast-wallpaper extension (#20017) - Fix Slack powershell script (#20014) - Linear: Fix SVGs to include xmlns (#20012) - Feat: Add permalink to Dub Link page (#20004) - [Google Translate] Improve UX for quick language change in Translate Form (#19990) - Update react-native-directory extension (#19992) - [Bitwarden] Catch authenticator initialization error (#19997) - [Dribbble, Uplabs] Remove Dribbble and Uplabs extensions (#19913) - Update youtrack extension (#19983) - Fix Slack extension: search messages from specific user (#19731) - [Daminik] use URL instead of Slug in Preferences (#19934) - Docs: update for the new API release - Update youtrack extension (#19925) - Update workouts extension (#19981) - [Update] [Raycast Wallpaper] More Auto Switch Interval (#19952) - [Update] [Easy New File] Supports Form layout (#19954) - [Google translate] fix Chinese and some other languages (#19957) - [Update] [Life Progress] (#19959) - Update compressx extension (#19966) - Patched breaking API change (#19974) - Update `Coolify` extension - fix: Unable to delete Databases in `Resources` + view `ENVs` of **applications** and **services** (#19940) - [MyIdlers] - Domain, Shared, Reseller and Server are now split into "Active" and "Inactive" sections (#19968) - [Brand Icons] Routine maintenance (#19912) - Update CODEOWNERs - [ccusage] Clean up unused dependencies and exports (#19916) - Add kusto-reference extension (#19836) - Update CODEOWNERs - Make sure extensions use official npm registry (#19911) - Update safari extension (#19829) - Update CODEOWNERs - Housekeep Knip config (#19903) - [Confluence Search] Use the npm official registry (#19901) - Update CODEOWNERs - [ClickUp] persist priority on create (super minor fix) + add some missing icons (#19904) - Update CODEOWNERs - [Gitlab] Add issue filter on issues menu item (#19769) - [Google Translate] add all the languages from google translate, remove flags (#19905) - Release more extensions on Windows (#19896) - Update `SolusVM 2` extension - Reinstall Server + View,Create,Remove Snapshots + Invite,Remove Members (#19900) - Update CODEOWNERs - Add openrouter extension (#19831) - Update CODEOWNERs - Add ccusage extension (#19792) - Update CODEOWNERs - Add open-in-trae extension (#19705) - Update CODEOWNERs - [dust-tt] update auth provider (#19783) - Update CODEOWNERs - Update CODEOWNERs - Update aws extension (#19476) - [Promptlab] Use the npm official registry (#19895) - Update CODEOWNERs - Add loan-calculator extension (#19781) - Update CODEOWNERs - Update CODEOWNERs - [Markdown to Plain Text] Use the npm official registry (#19894) - Update Wifi Password Reveal (#19402) - Update CODEOWNERs - [Bitbucket Search] Use the npm official registry (#19891) - Update CODEOWNERs - [Akkoma] Use the npm official registry (#19893) - Update CODEOWNERs - Update CODEOWNERs - [Find OpenGL Enum] Use npm official registry (#19889) - Add microblog extension (#19777) - Update CODEOWNERs - Add beehiiv extension (#19770) - Update CODEOWNERs - Preview visibility, toast fix, and png w/ background option (#19855) - Folder search/drag n drop (#19841) - Update slugify-file-folder-names extension (#19850) - Update `NameSilo` extension - View Contact Profiles + View & Configure Email Forwards + Modernize (#19871) - Ext/popcorn: Fix stream selection bug, and added more support for other addons (#19873) - Update zeabur extension (#19881) - Update CODEOWNERs - Adds glossary extension (#19502) - Update flush-dns extension (#18964) - Update CODEOWNERs - Add geoconverter extension (#19759) - Add Keboola MCP Server to the Model Context Protocol registry (#19753) - Update CODEOWNERs - Update CODEOWNERs - Bitbucket feature (#19739) - Add nyc-train-tracker extension (#19185) - Update CODEOWNERs - Add popcorn extension (#19823) - Update google-scholar extension (#19796) - Update quick-git extension (#19778) - Update Harpoon extension (#19798) - Update instagram-media-downloader extension (#19789) - Update mozilla icon (#19801) - [Xcode] AI Tools & Improvements (#17875) - Update CODEOWNERs - Add `Keygen` extension - View Licenses & Policies + Create Licenses & Policies (#19802) - Update CODEOWNERs - [ClickUp] allow creating task w/o priority + add OpenInClickUp Action (#19787) - Update `Mixpanel` extension - Support All Server Regions + Update Logo + better Error Handling + Modernize (#19821) - Update CODEOWNERs - Add bookmark/save to queue for Matter (#19434) - Update wip extension (#19837) - Update CODEOWNERs - Update Okta search extension (#19825) - Add image-search extension (#19672) - Update CODEOWNERs - Add chronometer extension (#19295) - Add url-editor-pro extension (#19661) - Update CODEOWNERs - Add shutdown-timer extension (#19650) - Docs: update for the new API release - Docs: Update the utils docs - Update CODEOWNERs - Add AWS Audit Manager and update Amazon Bedrock details in aws-servic… (#19685) - Add Creation Date option for sorting (#19682) - Add clipboard-sequential-paste extension (#19679) - Update CODEOWNERs - Add open-docker extension (#19671) - Cleanup unused lockfile (#19659) - [Hue] Fix certificate handling (#19658) - chore: update icon path in the README.md file (#19773) - Update CODEOWNERs - Update CODEOWNERs - Add `Dokploy` extension - Add Instances then manage services and docker containers (#19668) - Update `Geist UI Components` extension - Modernize + Update Logo + Add Hooks, metadata images (#19775) - add ai incident search to incident.io extension (#19631) - [Hookmark Search] Fix bookmark properties encoding (#19543) - Updated to new version extension (#19358) - Update dexcom-reader extension (#19642) - Add priority levels mapping (#19771) - Docs: update for the new API release - Expected Delivery Date Formatting Overhaul (#19649) - Update `Brand.dev` extension - add fonts, stock, email, phone + remove "verified" + change Browser Action + Modernize (#19645) - Update CODEOWNERs - [WP Plugins] add pagination + add shortcut to "Download" + Modernize (#19683) - Fix search authentication errors - resolves #19400 (#19450) - Update CODEOWNERs - docs: update Shadcn Vue icon path (#19639) - Update shadcn-vue extension (#19637) - Update lucide-icons extension (#19763) - fix: only index field must be required others if not input should fall to defaultValue (#19747) - Update CODEOWNERs - chore: update firecrawl version + add integration parameter (#19725) - Update finderutils extension (#19751) - Update google-scholar extension (#19761) - Docs: update for the new API release - Update web3bio extension (#19629) - [browser-tabs] Fix for Duplicate Tabs Issue (#19665) - [Folder-Search] - Major Improvements: Bug Fixes, Error Handling, Performance (#19663) - Update CODEOWNERs - Update zen-browser extension (#19611) - Fix: Add latest OpenAI models and consolidation system (#19592) - Update CODEOWNERs - Add yomicast extension (#19573) - Add chhoto-url extension (#19567) - [Laravel Herd] (#19733) - Update CODEOWNERs - Update audio-device extension (#19074) - Update code-saver extension (#19687) - Update grammaring extension (#19681) - Update `HetrixTools` extension - Add Status Pages command + modernize to use latest config (#19728) - Update vmware-vcenter extension (#19716) - Update CODEOWNERs - Add force kill to kill-process extension (#19607) - Update docker extension (#19698) - Update CODEOWNERs - Update CODEOWNERs - Add quick-git extension (#19405) - Add copee extension (#19526) - Update CODEOWNERs - Add rize-io-sessions extension (#19677) - Update CODEOWNERs - Add advanced-speech-to-text extension (#19517) - Update CODEOWNERs - Clipsign - extension for creating, saving, and instantly copying your e‑signature (#19453) - Update CODEOWNERs - Update `HubSpot` extension - You can now `copy` some properties of a Contact through new "Copy to Clipboard..." submenu (#19652) - Update project-code-to-text extension (#19676) - Update CODEOWNERs - Update `Country Lookup` - Offline Support since API is now limited + Modernize (#19693) - Update quick-event extension (#19258) - Update CODEOWNERs - Update prism-launcher extension (#19601) - Fix obsidian-raycast bug on note creating (#19635) - Update CODEOWNERs - Add whisper-dictation extension (#19532) - Update CODEOWNERs - Updated the URL for the Prisma MCP server (#19472) - Add open-latest-url-from-clipboard extension (#19624) - Update CODEOWNERs - Update shadcn-ui extension (#19525) - Update CODEOWNERs - Update CODEOWNERs - Improve Flight Details Layout: Combined Times & Side-by-Side Terminal/Gate (#19521) - Add analog-film-library extension (#19514) - Update CODEOWNERs - Add volumio-control extension (#19504) - Update CODEOWNERs - [Color Picker] Fix returned value from callback-launch command (#19619) - [GitHub] Add preference to exclude repositories from other commands (#17468) - Update CODEOWNERs - Add diff-view extension (#19463) - Add kagimcp server (#19568) - [Bitwarden] Fix Authenticator "TypeError: t is not a function" (#19616) - Include Outlook in app description (#19594) - Update CODEOWNERs - add Open Documentation (#19500) - Update sportssync extension (#19483) - Update CODEOWNERs - macosicons: include user applications (#19482) - [Brand Icons] Add compatibility with Simple Icons 15 (#19478) - Docs: update for the new API release - Update prism-launcher extension (#19599) - [United Nations] Maintenance & fix news format (#19584) - Update prism-launcher extension (#19598) - Update CODEOWNERs - Apple reminders/show which list reminder is from (#19343) - Update battery-optimizer extension (#19190) - Update awork extension (#19558) - Update CODEOWNERs - feat: Add history command (#19589) - Update system-monitor extension (#19595) - Update Ext/window sizer (#19580) - Enhanced Date Format Support (#19539) - [TRELLO] Allow for unassigned card and update dependencies (#19519) - Update `Oracle Cloud` extension - (Confirm and) Terminate Instance + Add "Open in OCI" `Action` (#19534) - Update Ext/window sizer (#19541) - Update `Cloudflare` extension - Add A,AAAA,TXT DNS Records + Delete any DNS Record + Improve error handling function + Modernize extension to use latest Raycast config (#19552) - Update wp-cli-command-explorer extension (#19559) - Update CODEOWNERs - Update reverso-context extension (#19452) - Update CODEOWNERs - Add project-code-to-text extension (#18996) - Update CODEOWNERs - Add project-hub extension (#19293) - Update CODEOWNERs - Update GemOptions.tsx (#19136) - Update checksum (#19492) - Update CODEOWNERs - Update united-nations extension (#19528) - Update downloads-manager extension (#19407) - Update CODEOWNERs - Move `josephlou` to past contributors (#19522) - Update aave-search extension (#19366) - Update CODEOWNERs - Add dexcom-reader extension (#19141) - Update CODEOWNERs - Update digitalocean extension addressing issue displaying automated deployments (#19432) - Update Fabric extension - location and tag selection (#19470) - Wikipedia language improvements (#19473) - Update Ext/window-sizer (#19499) - Update CODEOWNERs - Add slugify-file-folder-names extension (#19422) - Update messages extension (#19426) - macosicons: fix lint (#19497) - Update CODEOWNERs - Add google-scholar extension (#19392) - Update CODEOWNERs - Add `SolusVM 2` extension - Manage Servers + View,Update Members + View,Create API Tokens & Settings + View ISOs (#19486) - Update CODEOWNERs - feat: add Anytype MCP Server to the registry (#19506) - Add `Appwrite` extension - Add multiple projects and view various services (#19510) - Update CODEOWNERs - Add foodle-recipes extension (#19084) - Update CODEOWNERs - Add cangjie extension (#19308) - Update CODEOWNERs - feat(google-calendar): create events with natural language duration input (#19317) - Update CODEOWNERs - Improved Category Search & Fixed Budget Details (#19451) - Update qrcode-generator extension (#19455) - Fix Toggle Grayscale exstension (#19236) - Add unix-timestamp-converter extension (#18949) - Update parcel extension (#19466) - Fix Slack emoji search missing scope error - resolves #19441 (#19447) - feat: add Thena MCP entry to official entries (#19379) - Update Ext/Window Sizer (#19459) - [2FA Directory] filter by category (like the Website) + modernize to use latest Raycast config (#19454) - Update CODEOWNERs - Update todoist extension (#19309) - Update CODEOWNERs - [git-repos] Fix issue with the path of the repository (#19440) - Folder search fallback bug fix (#19449) - Update CODEOWNERs - Update CODEOWNERs - Update parcel extension (#19356) - Add fisher extension (#19213) - Update CODEOWNERs - Fix: React Rules of Hooks violation in New Tab command (#19384) - Docs: update for the new API release - Update prompt-stash extension - increase character limit and refactor validations (#19428) - Update stock-tracker extension (#19424) - feat(deepcast): Return to root state preference (#19430) - Update subwatch extension (#19433) - Update CODEOWNERs - Update linkding extension (#19436) - Update media-converter extension (#19385) - Update CODEOWNERs - [Dock] add MenuBar Item + add metadata image + Modernize (#19393) - feat: add Grafana MCP to registry (#19240) - Major improvement to Elgato Key LightsElgato enhancements (#19374) - Update anytype extension (#19418) - Update CODEOWNERs - feat(preferences): Option to Close Raycast After Translation (#19386) - Update mullvad extension (#19382) - Update CODEOWNERs - Update CODEOWNERs - Update stock-tracker extension (#19411) - Update t3-chat extension (#19412) - Update CODEOWNERs - Add Secret Browser Commands extension (#19396) - Update CODEOWNERs - Update linkding extension (#19395) - Update sql-format extension (#19398) - Update zeabur extension (#19413) - Update `Google Books` extension - feat: filter results by category, use `useFetch` for caching + docs: add CHANGELOG + modernize: use latest Raycast config (#19414) - Update Ext/window sizer (#19416) - Update CODEOWNERs - Ability to copy song\'s artist and title (#19368) - Update CODEOWNERs - DEVONthink 4 (#19375) - Add position-size-calculator extension (#19123) - Update CODEOWNERs - Add ratingsdb extension (#19298) - Update Ext/window sizer (#19348) - Update `ClickUp` extension - choose status from Dropdown in \'capture\' (close #19331) + update README (#19370) - Update Extension: Easy New File (#19364) - Updated openpgp version (#19367) - Update CODEOWNERs - Add Claude Sonnet 4 (#19362) - Update CODEOWNERs - Add paste-from-kindle ex…
Description
Screencast
Checklist
npm run buildand tested this distribution build in Raycastassetsfolder are used by the extension itselfREADMEare placed outside of themetadatafolder