Add sourcegraph-amp-dash-x extension#20730
Conversation
- chore: update package name to sourcegraph-amp-dash-x - Release v1.0.0: Finalize changelog for initial store submission - Update default prompts: Add changelog management and remove PR prompt - Initial commit
|
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. |
There was a problem hiding this comment.
Greptile Summary
This PR introduces a new Raycast extension called "Amp Dash X" (packaged as sourcegraph-amp-dash-x) for organizing and executing Amp Code prompts with the -x (execute) flag. The extension provides a comprehensive prompt management system with the following key components:
Core Functionality:
- Prompt Management: Save, edit, duplicate, and delete AI prompts with titles, descriptions, and category organization
- Category System: Organize prompts into custom categories with automatic reassignment when categories are deleted
- Execution Integration: Copy and paste Amp CLI commands directly from Raycast using the clipboard API
- Search & Filter: Real-time search across prompt titles, descriptions, and content
Architecture:
The extension follows Raycast's patterns with separate commands for different use cases:
ampcommand: Main prompt execution interface with search and selectioncategoriescommand: Category management interface- Reusable
PromptListcomponent that adapts behavior based on props (selection vs management mode) - Local storage persistence using Raycast's LocalStorage API
- Default initialization with example prompts for first-time users
Technical Implementation:
The extension uses TypeScript with React components, implements proper error handling with toast notifications, and includes form validation. The storage system provides full CRUD operations with auto-generated IDs and proper data serialization/deserialization for dates.
PR Description Notes:
- The extension name
sourcegraph-amp-dash-xis misleading as it has no relation to Sourcegraph - it's focused on Amp Code prompts
Confidence score: 1/5
- This PR has multiple critical compliance issues that must be addressed before it can be safely merged
- The CHANGELOG.md uses actual dates (2025-07-31) instead of the required
{PR_MERGE_DATE}template, missing.prettierrcfile with Raycast's required formatting standards, and extensive use of@ts-nocheck/@ts-expect-errorcomments suggesting unresolved TypeScript compatibility issues - Most critical files need attention: CHANGELOG.md, missing .prettierrc, and all React component files with TypeScript suppressions
Context used:
Context - In Raycast extensions, ensure to use a consistent configuration for Prettier, specifically 'printWidth: 120' and 'singleQuote: false'. (link)
14 files reviewed, 9 comments
extensions/sourcegraph-amp-dash-x/src/components/PromptList.tsx
Outdated
Show resolved
Hide resolved
extensions/sourcegraph-amp-dash-x/src/components/PromptList.tsx
Outdated
Show resolved
Hide resolved
extensions/sourcegraph-amp-dash-x/src/components/PromptList.tsx
Outdated
Show resolved
Hide resolved
|
@andreaselia should I commit the suggestions or wait? |
|
Would be nice if you could commit the suggestions if they make sense 😊 |
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
|
Is this ready for another review? |
|
@pernielsentikaer yes please |
|
@pernielsentikaer is there something else you need from me? First time submitting an extension to Raycast. |
|
@greptileai, could you please do a fresh review here? 😊 |
…ourcegraph-amp-dash-x extension. Refactor code to utilize showFailureToast for error handling and replace deprecated shortcuts with new Keyboard shortcuts. Clean up unused imports and comments related to TypeScript errors.
pernielsentikaer
left a comment
There was a problem hiding this comment.
I fixed many of the errors you mentioned in the code by using the correct versions of dependencies. Can you verify that I didn't break anything?
Is that to me or the agent 😅 |
|
@pernielsentikaer it's kinda working
|
|
It was for you 😊
|
|
@pernielsentikaer yeah sorry read it wrong.
See that is the thing, how do I pull it without having to download the entire git repo? or is that how it's done? |
|
Did you use our CLI to make this PR, then you might be able to run |
Add download as markdown action to amp extension: - Import required Raycast API modules (open, environment) - Implement downloadAsMarkdown function that exports prompts as formatted markdown files - Add markdown download action with Cmd+M shortcut - Generate clean filenames from prompt titles - Save files to Downloads folder and automatically open them - Include prompt metadata, description, and amp command examples in markdown output Co-authored-by: Amp <amp@ampcode.com> Amp-Thread-ID: https://ampcode.com/threads/T-0eb4ecfb-9dc6-4870-afc4-cd33d6bc8392
|
@pernielsentikaer got it thanks (and sorry for the back and forth). I've tested it, and it now works. I added a small menu item to download as Markdown, which I forgot to add before making this PR 😅 I hope that isn't an issue. |
- Remove unused 'environment' import from @raycast/api - Convert require() imports to ES6 imports for fs, os, and path modules - Fix @typescript-eslint/no-unused-vars and @typescript-eslint/no-require-imports violations - Auto-format code with Prettier Co-authored-by: Amp <amp@ampcode.com> Amp-Thread-ID: https://ampcode.com/threads/T-f5b04e1f-6004-4d72-b4f0-fb713ce62073
There was a problem hiding this comment.
Pull Request Overview
This PR introduces a new Raycast extension called "Amp Dash X" for organizing and executing Amp Code prompts with the -x (execute) flag. The extension allows users to save frequently used prompts, organize them by categories, and quickly paste or copy Amp commands directly from Raycast.
Key changes:
- Complete Raycast extension with prompt management functionality
- Category-based organization system with CRUD operations
- Integration with Amp CLI for command execution
- TypeScript implementation with React components
Reviewed Changes
Copilot reviewed 17 out of 23 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
package.json |
Main extension configuration with commands, dependencies, and metadata |
src/amp.tsx |
Primary command interface for executing and managing Amp prompts |
src/lib/storage.ts |
Core storage layer for prompt and category persistence |
src/components/PromptList.tsx |
Reusable component for displaying and managing prompts |
src/components/PromptForm.tsx |
Form component for creating and editing prompts |
src/categories.tsx |
Category management interface |
src/managePrompts.tsx |
Prompt management command wrapper |
src/addPrompt.tsx |
Add prompt command interface |
src/lib/amp.ts |
Amp CLI integration utilities |
CHANGELOG.md |
Extension changelog with proper versioning |
| Various config files | TypeScript, ESLint, and project configuration |
| @@ -0,0 +1,42 @@ | |||
| # Amp Dash X Changelog | |||
|
|
|||
| ## [1.0.0] - {PR_MERGE_DATE} | |||
There was a problem hiding this comment.
The CHANGELOG.md entry correctly uses the required {PR_MERGE_DATE} template format.
| { | ||
| "name": "amp", | ||
| "title": "Execute Amp Prompts", | ||
| "description": "Run saved Amp prompts with execute mode", | ||
| "mode": "view", | ||
| "icon": "command-icon.png" | ||
| }, | ||
| { | ||
| "name": "categories", | ||
| "title": "Manage Prompt Categories", | ||
| "description": "Add, edit, and delete prompt categories", | ||
| "mode": "view", | ||
| "icon": "command-icon.png" | ||
| } |
There was a problem hiding this comment.
For extensions with multiple commands, consider adding subtitle to commands with the service name. For example: \"subtitle\": \"Amp Dash X\" to help users identify which extension the commands belong to.
| } catch (error) { | ||
| showFailureToast(error, { title: "Failed to load prompts" }); | ||
| } finally { |
There was a problem hiding this comment.
Good use of showFailureToast from @raycast/utils for error handling instead of the more verbose showToast with manual error styling.
| ): Promise<Prompt> { | ||
| const newPrompt: Prompt = { | ||
| ...prompt, | ||
| id: Math.random().toString(36).substring(2) + Date.now().toString(36), |
There was a problem hiding this comment.
The ID generation using Math.random() and Date.now() could potentially create collisions in rare cases. Consider using a more robust UUID generation method like crypto.randomUUID() if available, or a dedicated UUID library for better uniqueness guarantees.
| id: Math.random().toString(36).substring(2) + Date.now().toString(36), | |
| id: crypto.randomUUID(), |
| onChange={() => {}} | ||
| onBlur={(event) => { | ||
| const error = validateTitle(event.target.value); | ||
| if (error) { | ||
| showToast(Toast.Style.Failure, error); | ||
| } | ||
| }} |
There was a problem hiding this comment.
Consider using showFailureToast from @raycast/utils instead of manually creating failure toasts with showToast(Toast.Style.Failure, ...) for consistency with the rest of the codebase.
|
Published to the Raycast Store: |
|
🎉 🎉 🎉 We've rewarded your Raycast account with some credits. You will soon be able to exchange them for some swag. |
- 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 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>
- version 1.6 - Zed Recent Projects - fix broken pinned cache (raycast#21608) - Docs: update for the new API release - Update CODEOWNERs - Add simple-dictionary extension (raycast#21456) - Update CODEOWNERs - `zen-browser`: Add Windows Support (raycast#21600) - Update CODEOWNERs - Add swiss-train-times extension (raycast#21522) - Update CODEOWNERs - Add onbo extension (raycast#21551) - Update zen-browser extension (raycast#21414) - Update CODEOWNERs - Add share-a-quote extension (raycast#21541) - Update CODEOWNERs - Add `Autumn` (useautumn.com) extension - List Customers & Create Customer + List Products & Create Product (raycast#21514) - [OCI] List NoSQL + Manage Object Storage (raycast#21572) - Update CODEOWNERs - Update remember this extension (raycast#21367) - Update debug package to version 4.4.3 (raycast#21574) - [Font Awesome] Update devDependencies in fontawesome extension, removed two unused packages (raycast#21573) - Docs: update for the new API release - Update letterboxd extension (raycast#21520) - Update react-native-directory extension (raycast#21544) - [Xcode] Update assets to match Xcode 26 (raycast#21525) - Enhance PR workflow with merge and branch deletion (raycast#21568) - [Forked Extensions] Fix the infinite rerender (raycast#21566) - Update CODEOWNERs - Update zed-recent-projects extension (raycast#21528) - Add google-calendar-quickadd extension (raycast#21191) - Update CODEOWNERs - Add fuzzy-file-search extension (raycast#21270) - Update CODEOWNERs - Update the dependencies to fix search history and search tabs (raycast#21487) - Add acceptance flags for winget installation (raycast#21539) - Update CODEOWNERs - [Forked Extensions] Add "isMac" and "isWindows" helpers (raycast#21547) - Update CODEOWNERs - Add ai-stats extension (raycast#21480) - Update CODEOWNERs - Update uuid generator extension (raycast#21490) - Update renaming extension (raycast#21554) - Update CODEOWNERs - Make available on Windows, typescript fixes, display ipv4 details even when ipv6 is available (raycast#21560) - [Forked Extensions] Fix the rerender logic of Sync Fork actions (raycast#21563) - Make sure the migrations are cross-platforms (raycast#21516) - Update CODEOWNERs - Add playnite-launcher extension (raycast#20407) - Update CODEOWNERs - Add everything-search extension (raycast#20055) - Update CODEOWNERs - feat: [Video Downloader] Add Windows Support (raycast#21411) - Update CODEOWNERs - Add scoop extension (raycast#21177) - Product Hunt: scraper + logger improvements (raycast#21188) - Update music-assistant-controls extension (raycast#21510) - Update CODEOWNERs - [GitHub Copilot] Refactor data loading (raycast#21511) - Add tembo extension (raycast#21366) - Update CODEOWNERs - Update qq-music-controls extension (raycast#21466) - Update CODEOWNERs - Update rize-io-sessions extension (raycast#21481) - [Forked Extensions] Support migrating from full-checkout (raycast#21488) - Update CODEOWNERs - Remove problematic airplay preference from audio-device extension (raycast#21495) - Update `UptimeRobot` extension - Create Ping Monitors + Show monitor type + Update monitor icon & add tooltip + Modernize (raycast#21497) - Menu bar command, new icons and more (raycast#21431) - feat: update Firecrawl extension to use v2 API (raycast#21477) - Fix formatting of Nuxt UI description (raycast#21479) - Add Nuxt UI entry to MCP registry (raycast#21478) - Update CODEOWNERs - [Git repos] Fix worktree remotes (raycast#21464) - Update scheduler extension (raycast#21472) - Update CODEOWNERs - 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 granola extension - Update granola extension
* 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…
- update `package.json` to account username - Add `tap-bpm` to forked extension repo - [Postiz] Fix Creation Failing + Post Enhancements (#22372) - Update comet extension (#22381) - Update CODEOWNERs (291204ff) - [Random] Update dependencies, release for Windows (#22353) - Update CODEOWNERs (eeb3d87a) - Update capture fullpage of website extension (#22304) - Update CODEOWNERs (5204e8d4) - Add `HomeBox` extension - A simple home inventory management software (#22264) - Update docklock-plus extension (#22240) - Update `Autumn` extension - New Features command + Windows Support + Enhancements (#22311) - Update CODEOWNERs (7385f9dd) - Update paste as plain text extension (#22328) - Update CODEOWNERs (0ad576af) - Add `Vartiq` extension - Manage Projects, Apps, Webhooks, Webhook Messages (#22324) - Update CODEOWNERs (f28be428) - Update browser bookmarks extension (#22343) - Update CODEOWNERs (85c4dc01) - Update chatgpt atlas extension (#22351) - Update CODEOWNERs (2468906f) - Add ChatGPT Atlas extension (#22340) - Docs: update for the new API release - Update nightscout extension (#22293) - Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276) - Update CODEOWNERs (a2bc7743) - Add wled-controller extension (#22258) - Update CODEOWNERs (12a75181) - Update jetbrains extension - Add Support for Toolbox V3 (#22265) - Update CODEOWNERs (3c3bfba8) - Add fathom extension (#22187) - Update youtube extension (#22250) - Update CODEOWNERs (2ddb7251) - Update fetch youtube transcript extension (#22220) - docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246) - Update kimai extension (#21809) - Update multiple extensions to address security vulnerabilities. (#22241) - Update linkding extension (#22231) - Update CODEOWNERs (f24e76f7) - Add http-observatory extension (#22219) - Update dig extension (#22213) - Update CODEOWNERs (4dd7c9d8) - Update apple-reminders extension (#22182) - Update CODEOWNERs (6336d869) - Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232) - Update CODEOWNERs (f7242a65) - Update nhl extension (#22237) - Update CODEOWNERs (6d84bbb2) - Update obsidian-tasks extension (#21863) - Update harvest extension: Add favorites command (#22210) - Update CODEOWNERs (e8d487be) - Add tududi extension (#22165) - Update raycast-zoxide extension (#22218) - Update CODEOWNERs (00c88e12) - Update cheatsheets extension (#22226) - New Feature: Bootstrap Icons: AI Search Fallback (#22221) - Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214) - feat(nuxt): add Windows compatibility (#22209) - Update CODEOWNERs (4e5503af) - Add forscore extension (#22204) - tabler: handle pagination/search APIs (#22189) - Update CODEOWNERs (72e0c46f) - Update plane extension (#22198) - Update CODEOWNERs (a15e7275) - Add haystack extension (#22052) - Update zed-recent-projects extension (#22199) - things: fix timeout on macOS Tahoe (#22193) - macosicons: enhance error handling with detailed troubleshooting (#22192) - feat(nuxt): v2.1.0 (#22104) - [Bitwarden] Add Windows support (#21940) - Update CODEOWNERs (0d47291d) - Update instant-domain-search extension (#22081) - Update CODEOWNERs (a006b143) - Update time-machine extension (#22045) - Update base-stats extension (#21710) - Update CODEOWNERs (88cf72d9) - Update contributors (#22175) - Add Bootstrap Icons extension (#22190) - Update CODEOWNERs (9e13279b) - Add edgestore-raycast extension (#22117) - Update CODEOWNERs (a82922ec) - New Extension: Metacritic (#21588) - Update dust-tt extension (#22167) - [1Password] Adopt the latest extension template (#22109) - Update CODEOWNERs (b1b36e04) - Kaomoji Windows Support (#22158) - Update CODEOWNERs (21f635c6) - Update changedetection-io extension (#22126) - Update CODEOWNERs (7aa198cb) - [IPInfo] Release for Windows (#22075) - Update threads extension (#21962) - Update search-npm extension (#22153) - Update CODEOWNERs (0f83c147) - Update deployhq extension (#22151) - Update anna-s-archive extension (#22156) - Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155) - fix(keepassxc): retrieve keepassxc app location. (#22073) - Update bible extension (#22157) - Update CODEOWNERs (10372204) - Add serialcast extension (#21795) - Update CODEOWNERs (b25f5e83) - Add yazio-tracker extension (#21954) - Update bible extension (#22112) - Update grammaring extension (#22113) - Update CODEOWNERs (e100bc12) - Update toggle-fn extension (#22130) - Update CODEOWNERs (1f62a06f) - [Linear] Schema deprecation and update SDK (#22095) - Update CODEOWNERs (576ae0c4) - Update jwt-decoder extension (#22088) - Update duckduckgo-image-search extension (#22064) - Update CODEOWNERs (1869fd16) - Add deployhq extension (#21902) - Update CODEOWNERs (e46aede5) - Add bahn-info extension (#21492) - Update howlongtobeat extension (#22120) - Update CODEOWNERs (dfa9df71) - feat: add massCode assistant (#21851) - Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143) - Update CODEOWNERs (14d29e47) - Add planning-center-api-docs extension (#22029) - Update CODEOWNERs (df7f1aca) - Update font-awesome extension (#22085) - Update google-chrome extension (#22074) - Update unicode-symbols extension (#22103) - Update CODEOWNERs (1c08b627) - [Twitter] Modernize + fix smol controlled form thingy (#21767) - feat(bento-me): add Windows support. (#22119) - [Plane] fix crash due to different logo response (#22146) - Update CODEOWNERs (cc8cf75b) - Update `Plane` extension - search projects & view their work items + filter work items (#22106) - Update CODEOWNERs (187ad3c6) - Update hackmd extension (#22035) - Update CODEOWNERs (9befbb8b) - Update base64 extension (#21507) - [MapleStory.gg] Add support for Windows (#22086) - Update CODEOWNERs (8d7ab8d0) - Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102) - [RICE Score] Port to Windows (#22118) - [Snake] Add Windows support (#22105) - [Brand Icons] Routine maintenance (#22087) - Update CODEOWNERs (da27c425) - Add `Chatwoot` extension (#22116) - Update CODEOWNERs (1e28965f) - update information & a small fix (#22137) - Add lapack-blas-documentation-search extension (#22031) - kim/fix/youtube transcripts (#22067) - Update scheduler extension (#22003) - Update unicode-symbols extension (#22066) - Update zeabur extension (#22062) - Update CODEOWNERs (ac316560) - Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065) - Update CODEOWNERs (3a9d22a1) - Update sesh extension (#21914) - Set Due Date to Everyday for Existing Tasks (#22058) - Update CODEOWNERs (049667a3) - Update duckduckgo-image-search extension (#21953) - Update numpy-documentation-search extension (#22020) - Update CODEOWNERs (7d895075) - Add instant-domain-search extension (#21871) - Update CODEOWNERs (ed57125e) - Add fakecrime-upload extension (#22010) - Update CODEOWNERs (92d1043d) - Add plane extension (#21879) - [RSS Reader] AI enhanced rss-reader extension (#22000) - Update CODEOWNERs (e4687ae8) - Add clean-text extension (#20988) - Update CODEOWNERs (99f287ce) - Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155) - Update CODEOWNERs (fdc83ab6) - Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702) - Update CODEOWNERs (24d2d377) - feat(search-router): add custom search engine support (#21714) - Update sportssync extension (#21970) - Update CODEOWNERs (f31f0658) - Update zen-browser extension (#21556) - linear: add status preference to create issue for myself (#21959) - Update CODEOWNERs (061fee85) - Add ipinfo extension (#21991) - Update `Postiz` extension - support v2 endpoint + toggle display (#22044) - Fix: Address recipe fetching bug (#22033) - Update CODEOWNERs (32769831) - Update CT-7567 username in raycast2github.json (#22050) - Refactor reviewer permission check in workflow (#22041) - Update some deps to solve vulnerabilities (#22040) - Update CODEOWNERs (573ea59e) - Fix some security warnings (#21921) - [United Nations] Add support for Windows (#22032) - [Installed Extensions] Add support for Windows (#22036) - Implement comment creation and updating for PR bot (#22037) - Decommission Clarify Raycast extension. (#22034) - 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) - 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/ea/.npm/_npx/daafed3b81e85078/node_modules/.bin:/Users/ea/Programming/raycast/extensions/extensions/tap-bpm/node_modules/.bin:/Users/ea/Programming/raycast/extensions/extensions/node_modules/.bin:/Users/ea/Programming/raycast/extensions/node_modules/.bin:/Users/ea/Programming/raycast/node_modules/.bin:/Users/ea/Programming/node_modules/.bin:/Users/ea/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/ea/Programming/raycast/extensions/extensions/tap-bpm/node_modules/.bin:/Users/ea/Programming/raycast/extensions/extensions/node_modules/.bin:/Users/ea/Programming/raycast/extensions/node_modules/.bin:/Users/ea/Programming/raycast/node_modules/.bin:/Users/ea/Programming/node_modules/.bin:/Users/ea/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/lib/ruby/gems/3.2.0/bin:/Users/ea/.cargo/bin:/opt/homebrew/bin:/Library/Frameworks/Python.framework/Versions/3.12/bin:/Library/Frameworks/Python.framework/Versions/3.13/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/go/bin:/Users/ea/.cargo/bin:/Applications/iTerm.app/Contents/Resources/utilities:/Users/ea/Library/Application Support/JetBrains/Toolbox/scripts:/Users/ea/.local/bin/:/opt/homebrew/opt/fzf/bin:/Users/ea/.rvm/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 (#1…
- Add auto-refresh feature for battery stats with customizable interval - Update CODEOWNERs (9f49ac17) - Update jotoba extension (#22379) - Update capture fullpage of website extension (#22392) - Update CODEOWNERs (9eeb19ae) - Add `Formizee` extension - The Open-Source Forms Platform (#22281) - Update CODEOWNERs (3878eb92) - [Video Downloader] ADD "Open in Explorer" for Windows users. (#22300) - Add `Sevalla` extension (#22407) - Update CODEOWNERs (c4582cbb) - Add `Attio` extension - Objects, Tasks, Webhooks, Lists, Notes, Members and Teams (1st version) (#22432) - Update CODEOWNERs (04f103bd) - Update google tasks extension (#22439) - Update CODEOWNERs (1e072cd8) - feat: add KeePassXC entry placeholder support (#22357) - Update ton-address extension (#22370) - [Postiz] Fix Creation Failing + Post Enhancements (#22372) - Update comet extension (#22381) - Update CODEOWNERs (291204ff) - [Random] Update dependencies, release for Windows (#22353) - Update CODEOWNERs (eeb3d87a) - Update capture fullpage of website extension (#22304) - Update CODEOWNERs (5204e8d4) - Add `HomeBox` extension - A simple home inventory management software (#22264) - Update docklock-plus extension (#22240) - Update `Autumn` extension - New Features command + Windows Support + Enhancements (#22311) - Update CODEOWNERs (7385f9dd) - Update paste as plain text extension (#22328) - Update CODEOWNERs (0ad576af) - Add `Vartiq` extension - Manage Projects, Apps, Webhooks, Webhook Messages (#22324) - Update CODEOWNERs (f28be428) - Update browser bookmarks extension (#22343) - Update CODEOWNERs (85c4dc01) - Update chatgpt atlas extension (#22351) - Update CODEOWNERs (2468906f) - Add ChatGPT Atlas extension (#22340) - Docs: update for the new API release - Update nightscout extension (#22293) - Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276) - Update CODEOWNERs (a2bc7743) - Add wled-controller extension (#22258) - Update CODEOWNERs (12a75181) - Update jetbrains extension - Add Support for Toolbox V3 (#22265) - Update CODEOWNERs (3c3bfba8) - Add fathom extension (#22187) - Update youtube extension (#22250) - Update CODEOWNERs (2ddb7251) - Update fetch youtube transcript extension (#22220) - docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246) - Update kimai extension (#21809) - Update multiple extensions to address security vulnerabilities. (#22241) - Update linkding extension (#22231) - Update CODEOWNERs (f24e76f7) - Add http-observatory extension (#22219) - Update dig extension (#22213) - Update CODEOWNERs (4dd7c9d8) - Update apple-reminders extension (#22182) - Update CODEOWNERs (6336d869) - Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232) - Update CODEOWNERs (f7242a65) - Update nhl extension (#22237) - Update CODEOWNERs (6d84bbb2) - Update obsidian-tasks extension (#21863) - Update harvest extension: Add favorites command (#22210) - Update CODEOWNERs (e8d487be) - Add tududi extension (#22165) - Update raycast-zoxide extension (#22218) - Update CODEOWNERs (00c88e12) - Update cheatsheets extension (#22226) - New Feature: Bootstrap Icons: AI Search Fallback (#22221) - Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214) - feat(nuxt): add Windows compatibility (#22209) - Update CODEOWNERs (4e5503af) - Add forscore extension (#22204) - tabler: handle pagination/search APIs (#22189) - Update CODEOWNERs (72e0c46f) - Update plane extension (#22198) - Update CODEOWNERs (a15e7275) - Add haystack extension (#22052) - Update zed-recent-projects extension (#22199) - things: fix timeout on macOS Tahoe (#22193) - macosicons: enhance error handling with detailed troubleshooting (#22192) - feat(nuxt): v2.1.0 (#22104) - [Bitwarden] Add Windows support (#21940) - Update CODEOWNERs (0d47291d) - Update instant-domain-search extension (#22081) - Update CODEOWNERs (a006b143) - Update time-machine extension (#22045) - Update base-stats extension (#21710) - Update CODEOWNERs (88cf72d9) - Update contributors (#22175) - Add Bootstrap Icons extension (#22190) - Update CODEOWNERs (9e13279b) - Add edgestore-raycast extension (#22117) - Update CODEOWNERs (a82922ec) - New Extension: Metacritic (#21588) - Update dust-tt extension (#22167) - [1Password] Adopt the latest extension template (#22109) - Update CODEOWNERs (b1b36e04) - Kaomoji Windows Support (#22158) - Update CODEOWNERs (21f635c6) - Update changedetection-io extension (#22126) - Update CODEOWNERs (7aa198cb) - [IPInfo] Release for Windows (#22075) - Update threads extension (#21962) - Update search-npm extension (#22153) - Update CODEOWNERs (0f83c147) - Update deployhq extension (#22151) - Update anna-s-archive extension (#22156) - Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155) - fix(keepassxc): retrieve keepassxc app location. (#22073) - Update bible extension (#22157) - Update CODEOWNERs (10372204) - Add serialcast extension (#21795) - Update CODEOWNERs (b25f5e83) - Add yazio-tracker extension (#21954) - Update bible extension (#22112) - Update grammaring extension (#22113) - Update CODEOWNERs (e100bc12) - Update toggle-fn extension (#22130) - Update CODEOWNERs (1f62a06f) - [Linear] Schema deprecation and update SDK (#22095) - Update CODEOWNERs (576ae0c4) - Update jwt-decoder extension (#22088) - Update duckduckgo-image-search extension (#22064) - Update CODEOWNERs (1869fd16) - Add deployhq extension (#21902) - Update CODEOWNERs (e46aede5) - Add bahn-info extension (#21492) - Update howlongtobeat extension (#22120) - Update CODEOWNERs (dfa9df71) - feat: add massCode assistant (#21851) - Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143) - Update CODEOWNERs (14d29e47) - Add planning-center-api-docs extension (#22029) - Update CODEOWNERs (df7f1aca) - Update font-awesome extension (#22085) - Update google-chrome extension (#22074) - Update unicode-symbols extension (#22103) - Update CODEOWNERs (1c08b627) - [Twitter] Modernize + fix smol controlled form thingy (#21767) - feat(bento-me): add Windows support. (#22119) - [Plane] fix crash due to different logo response (#22146) - Update CODEOWNERs (cc8cf75b) - Update `Plane` extension - search projects & view their work items + filter work items (#22106) - Update CODEOWNERs (187ad3c6) - Update hackmd extension (#22035) - Update CODEOWNERs (9befbb8b) - Update base64 extension (#21507) - [MapleStory.gg] Add support for Windows (#22086) - Update CODEOWNERs (8d7ab8d0) - Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102) - [RICE Score] Port to Windows (#22118) - [Snake] Add Windows support (#22105) - [Brand Icons] Routine maintenance (#22087) - Update CODEOWNERs (da27c425) - Add `Chatwoot` extension (#22116) - Update CODEOWNERs (1e28965f) - update information & a small fix (#22137) - Add lapack-blas-documentation-search extension (#22031) - kim/fix/youtube transcripts (#22067) - Update scheduler extension (#22003) - Update unicode-symbols extension (#22066) - Update zeabur extension (#22062) - Update CODEOWNERs (ac316560) - Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065) - Update CODEOWNERs (3a9d22a1) - Update sesh extension (#21914) - Set Due Date to Everyday for Existing Tasks (#22058) - Update CODEOWNERs (049667a3) - Update duckduckgo-image-search extension (#21953) - Update numpy-documentation-search extension (#22020) - Update CODEOWNERs (7d895075) - Add instant-domain-search extension (#21871) - Update CODEOWNERs (ed57125e) - Add fakecrime-upload extension (#22010) - Update CODEOWNERs (92d1043d) - Add plane extension (#21879) - [RSS Reader] AI enhanced rss-reader extension (#22000) - Update CODEOWNERs (e4687ae8) - Add clean-text extension (#20988) - Update CODEOWNERs (99f287ce) - Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155) - Update CODEOWNERs (fdc83ab6) - Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702) - Update CODEOWNERs (24d2d377) - feat(search-router): add custom search engine support (#21714) - Update sportssync extension (#21970) - Update CODEOWNERs (f31f0658) - Update zen-browser extension (#21556) - linear: add status preference to create issue for myself (#21959) - Update CODEOWNERs (061fee85) - Add ipinfo extension (#21991) - Update `Postiz` extension - support v2 endpoint + toggle display (#22044) - Fix: Address recipe fetching bug (#22033) - Update CODEOWNERs (32769831) - Update CT-7567 username in raycast2github.json (#22050) - Refactor reviewer permission check in workflow (#22041) - Update some deps to solve vulnerabilities (#22040) - Update CODEOWNERs (573ea59e) - Fix some security warnings (#21921) - [United Nations] Add support for Windows (#22032) - [Installed Extensions] Add support for Windows (#22036) - Implement comment creation and updating for PR bot (#22037) - Decommission Clarify Raycast extension. (#22034) - 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) - 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/sean/.npm/_npx/daafed3b81e85078/node_modules/.bin:/Users/sean/code/extension/battery-menubar-2/extensions/battery-menubar/node_modules/.bin:/Users/sean/code/extension/battery-menubar-2/extensions/node_modules/.bin:/Users/sean/code/extension/battery-menubar-2/node_modules/.bin:/Users/sean/code/extension/node_modules/.bin:/Users/sean/code/node_modules/.bin:/Users/sean/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/sean/.nvm/versions/node/v22.18.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/sean/code/extension/battery-menubar-2/extensions/battery-menubar/node_modules/.bin:/Users/sean/code/extension/battery-menubar-2/extensions/node_modules/.bin:/Users/sean/code/extension/battery-menubar-2/node_modules/.bin:/Users/sean/code/extension/node_modules/.bin:/Users/sean/code/node_modules/.bin:/Users/sean/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/sean/.nvm/versions/node/v22.18.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/sean/.nvm/versions/node/v22.18.0/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:/Users/sean/Library/Application Support/Code/User/globalStorage/github.copilot-chat/debugCommand:/Users/sean/.orbstack/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-docke…
- chore: add assets and metadata for store submission - docs: add comprehensive documentation - test: add comprehensive test coverage - feat: implement UI components and main search interface - feat: add internationalization support - feat: add AI-powered query interpretation - feat: implement core app search functionality - feat: add type definitions and fuzzy matching utilities - feat: initialize app-search extension with project configuration - Update CODEOWNERs (7b1e59c4) - Add kagi-news extension (#22389) - brew: Change "formula" to "formulae" (#22518) - Update CODEOWNERs (257af696) - Add string-formatter extension (#21859) - Update CODEOWNERs (2a0fab28) - Add helium extension (#22290) - feat(markdown-codeblock): add newline prefix (#22369) - Update CODEOWNERs (b20058a1) - Docker/add windows support (#22455) - Add Windows platform support (#22453) - Update CODEOWNERs (aa68611f) - Add xkcd-password-generator extension (#22433) - Update CODEOWNERs (8bf2a9d9) - Add Stagehand extension (#22179) - Update CODEOWNERs (59d237b7) - Add micro-snitch-logs extension (#22390) - Update CODEOWNERs (238052ee) - Update github extension (#22384) - Docs: Update the utils docs - Update CODEOWNERs (42e307ec) - Add ivpn extension (#22149) - Add Pagination to List of Playlist Songs (#22145) - [Update] [Things] Increase timeout in AppleScript and update Node packages to latest (#22512) - Update figma-files-raycast-extension extension (#22254) - Update prism-launcher extension (#22458) - Update unicode-symbols extension (#22510) - Update jsr extension (#22503) - Update CODEOWNERs (0fd5ad08) - Add keeper-security extension (#22296) - Update filemaker-snippets extension (#22509) - Update CODEOWNERs (e858971c) - Add paynow extension (#22380) - [ipapi.is] fix error when some location field is invalid (#22493) - Update CODEOWNERs (ccfa9932) - Update zen-browser extension (#22491) - Update tembo extension (#22471) - Delete .github/workflows/add-approve-label.yml (#22501) - Update `Chatwoot` extension - Add "My Inbox" command + Fix "List Messages" command (#22490) - [Linear] Use API-provided notification presentation (#22285) - Update CODEOWNERs (1a7209ee) - Update harvest extension (#22256) - Update CODEOWNERs (13787cdf) - Fix finding button in Tahoe. (#22330) - Update GitHub Actions workflow for PR approvals (#22487) - Docs: update for the new API release - Update CODEOWNERs (77f64775) - Added support for Asana sections (#21912) - Update auto-label workflow for PR approvals (#22484) - Update GitHub Actions workflow to set effective token (#22482) - Update workflow to use pull_request_review event (#22479) - Update CODEOWNERs (d5727aab) - Add action to generate and copy private links (#22273) - Enhance PR approval labeling workflow (#22477) - Chatgpt atlas bookmarks improvement (#22371) - Add windows support (#22367) - Update diskutil-mac extension (#22307) - [Secret Browser Commands] add ChatGPT Atlas, etc (#22348) - Update deployhq extension (#22319) - [Serie A] Update extensions (#22427) - Update CODEOWNERs (a0f6527b) - Update arc extension (#22272) - Update CODEOWNERs (82962ede) - Add file-info extension (#22259) - [LaLiga] Update extensions (#22452) - Update CODEOWNERs (9f49ac17) - Update jotoba extension (#22379) - Update capture fullpage of website extension (#22392) - Update CODEOWNERs (9eeb19ae) - Add `Formizee` extension - The Open-Source Forms Platform (#22281) - Update CODEOWNERs (3878eb92) - [Video Downloader] ADD "Open in Explorer" for Windows users. (#22300) - Add `Sevalla` extension (#22407) - Update CODEOWNERs (c4582cbb) - Add `Attio` extension - Objects, Tasks, Webhooks, Lists, Notes, Members and Teams (1st version) (#22432) - Update CODEOWNERs (04f103bd) - Update google tasks extension (#22439) - Update CODEOWNERs (1e072cd8) - feat: add KeePassXC entry placeholder support (#22357) - Update ton-address extension (#22370) - [Postiz] Fix Creation Failing + Post Enhancements (#22372) - Update comet extension (#22381) - Update CODEOWNERs (291204ff) - [Random] Update dependencies, release for Windows (#22353) - Update CODEOWNERs (eeb3d87a) - Update capture fullpage of website extension (#22304) - Update CODEOWNERs (5204e8d4) - Add `HomeBox` extension - A simple home inventory management software (#22264) - Update docklock-plus extension (#22240) - Update `Autumn` extension - New Features command + Windows Support + Enhancements (#22311) - Update CODEOWNERs (7385f9dd) - Update paste as plain text extension (#22328) - Update CODEOWNERs (0ad576af) - Add `Vartiq` extension - Manage Projects, Apps, Webhooks, Webhook Messages (#22324) - Update CODEOWNERs (f28be428) - Update browser bookmarks extension (#22343) - Update CODEOWNERs (85c4dc01) - Update chatgpt atlas extension (#22351) - Update CODEOWNERs (2468906f) - Add ChatGPT Atlas extension (#22340) - Docs: update for the new API release - Update nightscout extension (#22293) - Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276) - Update CODEOWNERs (a2bc7743) - Add wled-controller extension (#22258) - Update CODEOWNERs (12a75181) - Update jetbrains extension - Add Support for Toolbox V3 (#22265) - Update CODEOWNERs (3c3bfba8) - Add fathom extension (#22187) - Update youtube extension (#22250) - Update CODEOWNERs (2ddb7251) - Update fetch youtube transcript extension (#22220) - docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246) - Update kimai extension (#21809) - Update multiple extensions to address security vulnerabilities. (#22241) - Update linkding extension (#22231) - Update CODEOWNERs (f24e76f7) - Add http-observatory extension (#22219) - Update dig extension (#22213) - Update CODEOWNERs (4dd7c9d8) - Update apple-reminders extension (#22182) - Update CODEOWNERs (6336d869) - Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232) - Update CODEOWNERs (f7242a65) - Update nhl extension (#22237) - Update CODEOWNERs (6d84bbb2) - Update obsidian-tasks extension (#21863) - Update harvest extension: Add favorites command (#22210) - Update CODEOWNERs (e8d487be) - Add tududi extension (#22165) - Update raycast-zoxide extension (#22218) - Update CODEOWNERs (00c88e12) - Update cheatsheets extension (#22226) - New Feature: Bootstrap Icons: AI Search Fallback (#22221) - Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214) - feat(nuxt): add Windows compatibility (#22209) - Update CODEOWNERs (4e5503af) - Add forscore extension (#22204) - tabler: handle pagination/search APIs (#22189) - Update CODEOWNERs (72e0c46f) - Update plane extension (#22198) - Update CODEOWNERs (a15e7275) - Add haystack extension (#22052) - Update zed-recent-projects extension (#22199) - things: fix timeout on macOS Tahoe (#22193) - macosicons: enhance error handling with detailed troubleshooting (#22192) - feat(nuxt): v2.1.0 (#22104) - [Bitwarden] Add Windows support (#21940) - Update CODEOWNERs (0d47291d) - Update instant-domain-search extension (#22081) - Update CODEOWNERs (a006b143) - Update time-machine extension (#22045) - Update base-stats extension (#21710) - Update CODEOWNERs (88cf72d9) - Update contributors (#22175) - Add Bootstrap Icons extension (#22190) - Update CODEOWNERs (9e13279b) - Add edgestore-raycast extension (#22117) - Update CODEOWNERs (a82922ec) - New Extension: Metacritic (#21588) - Update dust-tt extension (#22167) - [1Password] Adopt the latest extension template (#22109) - Update CODEOWNERs (b1b36e04) - Kaomoji Windows Support (#22158) - Update CODEOWNERs (21f635c6) - Update changedetection-io extension (#22126) - Update CODEOWNERs (7aa198cb) - [IPInfo] Release for Windows (#22075) - Update threads extension (#21962) - Update search-npm extension (#22153) - Update CODEOWNERs (0f83c147) - Update deployhq extension (#22151) - Update anna-s-archive extension (#22156) - Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155) - fix(keepassxc): retrieve keepassxc app location. (#22073) - Update bible extension (#22157) - Update CODEOWNERs (10372204) - Add serialcast extension (#21795) - Update CODEOWNERs (b25f5e83) - Add yazio-tracker extension (#21954) - Update bible extension (#22112) - Update grammaring extension (#22113) - Update CODEOWNERs (e100bc12) - Update toggle-fn extension (#22130) - Update CODEOWNERs (1f62a06f) - [Linear] Schema deprecation and update SDK (#22095) - Update CODEOWNERs (576ae0c4) - Update jwt-decoder extension (#22088) - Update duckduckgo-image-search extension (#22064) - Update CODEOWNERs (1869fd16) - Add deployhq extension (#21902) - Update CODEOWNERs (e46aede5) - Add bahn-info extension (#21492) - Update howlongtobeat extension (#22120) - Update CODEOWNERs (dfa9df71) - feat: add massCode assistant (#21851) - Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143) - Update CODEOWNERs (14d29e47) - Add planning-center-api-docs extension (#22029) - Update CODEOWNERs (df7f1aca) - Update font-awesome extension (#22085) - Update google-chrome extension (#22074) - Update unicode-symbols extension (#22103) - Update CODEOWNERs (1c08b627) - [Twitter] Modernize + fix smol controlled form thingy (#21767) - feat(bento-me): add Windows support. (#22119) - [Plane] fix crash due to different logo response (#22146) - Update CODEOWNERs (cc8cf75b) - Update `Plane` extension - search projects & view their work items + filter work items (#22106) - Update CODEOWNERs (187ad3c6) - Update hackmd extension (#22035) - Update CODEOWNERs (9befbb8b) - Update base64 extension (#21507) - [MapleStory.gg] Add support for Windows (#22086) - Update CODEOWNERs (8d7ab8d0) - Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102) - [RICE Score] Port to Windows (#22118) - [Snake] Add Windows support (#22105) - [Brand Icons] Routine maintenance (#22087) - Update CODEOWNERs (da27c425) - Add `Chatwoot` extension (#22116) - Update CODEOWNERs (1e28965f) - update information & a small fix (#22137) - Add lapack-blas-documentation-search extension (#22031) - kim/fix/youtube transcripts (#22067) - Update scheduler extension (#22003) - Update unicode-symbols extension (#22066) - Update zeabur extension (#22062) - Update CODEOWNERs (ac316560) - Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065) - Update CODEOWNERs (3a9d22a1) - Update sesh extension (#21914) - Set Due Date to Everyday for Existing Tasks (#22058) - Update CODEOWNERs (049667a3) - Update duckduckgo-image-search extension (#21953) - Update numpy-documentation-search extension (#22020) - Update CODEOWNERs (7d895075) - Add instant-domain-search extension (#21871) - Update CODEOWNERs (ed57125e) - Add fakecrime-upload extension (#22010) - Update CODEOWNERs (92d1043d) - Add plane extension (#21879) - [RSS Reader] AI enhanced rss-reader extension (#22000) - Update CODEOWNERs (e4687ae8) - Add clean-text extension (#20988) - Update CODEOWNERs (99f287ce) - Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155) - Update CODEOWNERs (fdc83ab6) - Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702) - Update CODEOWNERs (24d2d377) - feat(search-router): add custom search engine support (#21714) - Update sportssync extension (#21970) - Update CODEOWNERs (f31f0658) - Update zen-browser extension (#21556) - linear: add status preference to create issue for myself (#21959) - Update CODEOWNERs (061fee85) - Add ipinfo extension (#21991) - Update `Postiz` extension - support v2 endpoint + toggle display (#22044) - Fix: Address recipe fetching bug (#22033) - Update CODEOWNERs (32769831) - Update CT-7567 username in raycast2github.json (#22050) - Refactor reviewer permission check in workflow (#22041) - Update some deps to solve vulnerabilities (#22040) - Update CODEOWNERs (573ea59e) - Fix some security warnings (#21921) - [United Nations] Add support for Windows (#22032) - [Installed Extensions] Add support for Windows (#22036) - Implement comment creation and updating for PR bot (#22037) - Decommission Clarify Raycast extension. (#22034) - 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) - 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/tkt/ghq/github.com/tktcorporation/extensions/extensions/app-search/node_modules/.bin:/Users/tkt/ghq/github.com/tktcorporation/extensions/extensions/node_modules/.bin:/Users/tkt/ghq/github.com/tktcorporation/extensions/node_modules/.bin:/Users/tkt/ghq/github.com/tktcorporation/node_modules/.bin:/Users/tkt/ghq/github.com/node_modules/.bin:/Users/tkt/ghq/node_modules/.bin:/Users/tkt/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/tkt/.volta/tools/image/node/22.15.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/tkt/ghq/github.com/tktcorporation/extensions/extensions/app-search/node_modules/.bin:/Users/tkt/ghq/github.com/tktcorporation/extensions/extensions/node_modules/.bin:/Users/tkt/ghq/github.com/tktcorporation/extensions/node_modules/.bin:/Users/tkt/ghq/github.com/tktcorporation/node_modules/.bin:/Users/tkt/ghq/github.com/node_modules/.bin:/Users/tkt/ghq/node_modules/.bin:/Users/tkt/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/Users/tkt/.volta/tools/image/node/22.15.0/lib/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin:/Users/tkt/.volta/tools/image/node/22.15.0/bin:/Users/tkt/Library/pnpm:/Users/tkt/.volta/bin:/Users/tkt/.nix-profile/bin:/nix/var/nix/profiles/default/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:/Users/tkt/.orbstack/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…
- Refactor VoiceCommandView and AI model preferences; update locales - Refactor VoiceCommandView and transcription logic for improved mic readiness detection - Update listen extension - fix: getSelectedText timing - update icon - feat: enhance transcription and voice command features with AI model support - Remove unnecessary popToRoot calls after copy actions in TranscriptionActionsList - Update listen extension - Update listen extension - Update listen extension - prevent updates to transcription text after recording stops - Update listen extension - better code-split and remove unused code - Add listen extension - Docs: update for the new API release - Update nightscout extension (#22293) - Threads: ESLint simplification, dependency updates, new commands, and documentation (#22276) - Update CODEOWNERs (a2bc7743) - Add wled-controller extension (#22258) - Update CODEOWNERs (12a75181) - Update jetbrains extension - Add Support for Toolbox V3 (#22265) - Update CODEOWNERs (3c3bfba8) - Add fathom extension (#22187) - Update youtube extension (#22250) - Update CODEOWNERs (2ddb7251) - Update fetch youtube transcript extension (#22220) - docs: [YouTube] reflect YouTube extension features instead of the GitLab extension (#22246) - Update kimai extension (#21809) - Update multiple extensions to address security vulnerabilities. (#22241) - Update linkding extension (#22231) - Update CODEOWNERs (f24e76f7) - Add http-observatory extension (#22219) - Update dig extension (#22213) - Update CODEOWNERs (4dd7c9d8) - Update apple-reminders extension (#22182) - Update CODEOWNERs (6336d869) - Add `Paymenter` extension - View Invoices + View Tickets + View & Create Users (#22232) - Update CODEOWNERs (f7242a65) - Update nhl extension (#22237) - Update CODEOWNERs (6d84bbb2) - Update obsidian-tasks extension (#21863) - Update harvest extension: Add favorites command (#22210) - Update CODEOWNERs (e8d487be) - Add tududi extension (#22165) - Update raycast-zoxide extension (#22218) - Update CODEOWNERs (00c88e12) - Update cheatsheets extension (#22226) - New Feature: Bootstrap Icons: AI Search Fallback (#22221) - Update `Unkey` extension - move to Unkey SDK w/ v2 Endpoints for better performance (#22214) - feat(nuxt): add Windows compatibility (#22209) - Update CODEOWNERs (4e5503af) - Add forscore extension (#22204) - tabler: handle pagination/search APIs (#22189) - Update CODEOWNERs (72e0c46f) - Update plane extension (#22198) - Update CODEOWNERs (a15e7275) - Add haystack extension (#22052) - Update zed-recent-projects extension (#22199) - things: fix timeout on macOS Tahoe (#22193) - macosicons: enhance error handling with detailed troubleshooting (#22192) - feat(nuxt): v2.1.0 (#22104) - [Bitwarden] Add Windows support (#21940) - Update CODEOWNERs (0d47291d) - Update instant-domain-search extension (#22081) - Update CODEOWNERs (a006b143) - Update time-machine extension (#22045) - Update base-stats extension (#21710) - Update CODEOWNERs (88cf72d9) - Update contributors (#22175) - Add Bootstrap Icons extension (#22190) - Update CODEOWNERs (9e13279b) - Add edgestore-raycast extension (#22117) - Update CODEOWNERs (a82922ec) - New Extension: Metacritic (#21588) - Update dust-tt extension (#22167) - [1Password] Adopt the latest extension template (#22109) - Update CODEOWNERs (b1b36e04) - Kaomoji Windows Support (#22158) - Update CODEOWNERs (21f635c6) - Update changedetection-io extension (#22126) - Update CODEOWNERs (7aa198cb) - [IPInfo] Release for Windows (#22075) - Update threads extension (#21962) - Update search-npm extension (#22153) - Update CODEOWNERs (0f83c147) - Update deployhq extension (#22151) - Update anna-s-archive extension (#22156) - Update `brand.dev` extension - Take Screenshots + Retrieve Styleguides + more brand data (#22155) - fix(keepassxc): retrieve keepassxc app location. (#22073) - Update bible extension (#22157) - Update CODEOWNERs (10372204) - Add serialcast extension (#21795) - Update CODEOWNERs (b25f5e83) - Add yazio-tracker extension (#21954) - Update bible extension (#22112) - Update grammaring extension (#22113) - Update CODEOWNERs (e100bc12) - Update toggle-fn extension (#22130) - Update CODEOWNERs (1f62a06f) - [Linear] Schema deprecation and update SDK (#22095) - Update CODEOWNERs (576ae0c4) - Update jwt-decoder extension (#22088) - Update duckduckgo-image-search extension (#22064) - Update CODEOWNERs (1869fd16) - Add deployhq extension (#21902) - Update CODEOWNERs (e46aede5) - Add bahn-info extension (#21492) - Update howlongtobeat extension (#22120) - Update CODEOWNERs (dfa9df71) - feat: add massCode assistant (#21851) - Update zoxide-git-projects extension to add alternate application and copy shortcuts (#22143) - Update CODEOWNERs (14d29e47) - Add planning-center-api-docs extension (#22029) - Update CODEOWNERs (df7f1aca) - Update font-awesome extension (#22085) - Update google-chrome extension (#22074) - Update unicode-symbols extension (#22103) - Update CODEOWNERs (1c08b627) - [Twitter] Modernize + fix smol controlled form thingy (#21767) - feat(bento-me): add Windows support. (#22119) - [Plane] fix crash due to different logo response (#22146) - Update CODEOWNERs (cc8cf75b) - Update `Plane` extension - search projects & view their work items + filter work items (#22106) - Update CODEOWNERs (187ad3c6) - Update hackmd extension (#22035) - Update CODEOWNERs (9befbb8b) - Update base64 extension (#21507) - [MapleStory.gg] Add support for Windows (#22086) - Update CODEOWNERs (8d7ab8d0) - Update `Supermemory` extension - search and add projects + Removed `useEffect` + Simplified `getApiKey`+ Moved API Key check into HoC (#22102) - [RICE Score] Port to Windows (#22118) - [Snake] Add Windows support (#22105) - [Brand Icons] Routine maintenance (#22087) - Update CODEOWNERs (da27c425) - Add `Chatwoot` extension (#22116) - Update CODEOWNERs (1e28965f) - update information & a small fix (#22137) - Add lapack-blas-documentation-search extension (#22031) - kim/fix/youtube transcripts (#22067) - Update scheduler extension (#22003) - Update unicode-symbols extension (#22066) - Update zeabur extension (#22062) - Update CODEOWNERs (ac316560) - Add `OVHcloud` extension - Manage Domain, DNS Records, Nameservers (#22065) - Update CODEOWNERs (3a9d22a1) - Update sesh extension (#21914) - Set Due Date to Everyday for Existing Tasks (#22058) - Update CODEOWNERs (049667a3) - Update duckduckgo-image-search extension (#21953) - Update numpy-documentation-search extension (#22020) - Update CODEOWNERs (7d895075) - Add instant-domain-search extension (#21871) - Update CODEOWNERs (ed57125e) - Add fakecrime-upload extension (#22010) - Update CODEOWNERs (92d1043d) - Add plane extension (#21879) - [RSS Reader] AI enhanced rss-reader extension (#22000) - Update CODEOWNERs (e4687ae8) - Add clean-text extension (#20988) - Update CODEOWNERs (99f287ce) - Fix quit-applications extension: Apple Events authorization error with fallback to ps command (#21155) - Update CODEOWNERs (fdc83ab6) - Scoop(refactor): implement singleton pattern for scoop command management and hooks for the UI (#21702) - Update CODEOWNERs (24d2d377) - feat(search-router): add custom search engine support (#21714) - Update sportssync extension (#21970) - Update CODEOWNERs (f31f0658) - Update zen-browser extension (#21556) - linear: add status preference to create issue for myself (#21959) - Update CODEOWNERs (061fee85) - Add ipinfo extension (#21991) - Update `Postiz` extension - support v2 endpoint + toggle display (#22044) - Fix: Address recipe fetching bug (#22033) - Update CODEOWNERs (32769831) - Update CT-7567 username in raycast2github.json (#22050) - Refactor reviewer permission check in workflow (#22041) - Update some deps to solve vulnerabilities (#22040) - Update CODEOWNERs (573ea59e) - Fix some security warnings (#21921) - [United Nations] Add support for Windows (#22032) - [Installed Extensions] Add support for Windows (#22036) - Implement comment creation and updating for PR bot (#22037) - Decommission Clarify Raycast extension. (#22034) - 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) - 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/envl/Library/Caches/pnpm/dlx/0403437cc96ef54fe9f8284b360eb8a25f219e07490d32b9f00c43cdea3c0090/19bbcd354f5-10692/node_modules/.bin:/Users/envl/.amp/bin:/Users/envl/.antigravity/antigravity/bin:/usr/local/bin:/Users/envl/.console-ninja/.bin:/usr/local/opt/ruby/bin:/Users/envl/.bun/bin:/Users/envl:/Users/envl/.local/bin:/Users/envl/.detaspace/bin:/Users/envl/Library/pnpm:/Users/envl/.nvm/versions/node/v24.11.0/bin:/Users/envl/.deta/bin:/Users/envl/Code/depot_tools:/Users/envl/flutter/bin:/Users/envl/.console-ninja/.bin:/Users/envl/.local/bin:/opt/homebrew/bin/pip3.10:/Users/envl/.local/bin:/Users/envl/.deno/bin:/Applications/Sublime Text.app/Contents/SharedSupport/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:/Library/TeX/texbin:/Applications/Wireshark.app/Contents/MacOS:/usr/local/go/bin:/Users/envl/adb-fastboot/platform-tools:/Users/envl/.cargo/bin:/Users/envl/Library/Android/sdk/platform-tools:/Users/envl/Library/Android/sdk/tools:/Users/envl/Library/Android/sdk/tools/bin:/Applications/Warp.app/Contents/Resources/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 f…

Description
A Raycast extension for organizing and executing Amp Code prompts with the
-x(execute) flag. Save frequently used prompts, organize them by categories, and quickly paste or copy Amp commands directly from Raycast.Screencast
Clipboard-20250801-020855-543.mp4
Checklist
npm run buildand tested this distribution build in Raycastassetsfolder are used by the extension itselfREADMEare placed outside of themetadatafolder