Skip to content

Conversation

@Osmagtor
Copy link
Contributor

@Osmagtor Osmagtor commented Sep 9, 2025

Description

Screencast

Checklist

- Linted files and resized screenshots
- Updated readme
- Screenshots
- Fix indentation of subsenses
- Fixed the action menu to add/remove favorites not distinguishing between senses
- Fixed verb form tables
- Added a dropdown to the search bar and updated the language text
- Removed log
- Fixed loading for invalid words and made smaller changes
- Different senses are now shown in a list
- Sorted favorites results
- Initial commit
@raycastbot raycastbot added the new extension Label for PRs with new extensions label Sep 9, 2025
@raycastbot
Copy link
Collaborator

Congratulations on your new Raycast extension! 🚀

You can expect an initial review within five business days.

Once the PR is approved and merged, the extension will be available on our Store.

@Osmagtor
Copy link
Contributor Author

Osmagtor commented Sep 9, 2025

While I am aware that there exist other dictionary extensions, I wanted to build one that would (1) work on both Windows and macOS, (2) allow you to store your favorite words, and (3) show comprehensive yet straightforward entries. All in all, something similar to the built-in dictionary app on macOS.

@Osmagtor Osmagtor marked this pull request as ready for review September 9, 2025 16:31
Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Greptile Summary

This PR introduces a new simple-dictionary extension that provides dictionary lookup and favorites management functionality. The extension uses the Free Dictionary API to fetch word definitions in multiple languages and allows users to save favorite entries locally.

Core functionality: Two main commands - word search with language selection and favorites list management
Multi-language support: Comprehensive language dropdown with 28 supported languages including complex conjugation systems
Favorites system: Full CRUD operations for saving dictionary entries with local storage persistence
Rich markdown rendering: Detailed word definitions with pronunciations, forms, examples, and synonyms
Proper configuration: Following Raycast standards for Prettier, ESLint, and TypeScript configuration

Confidence score: 4/5

  • This PR is safe to merge with one minor logic issue to address
  • Well-structured extension following Raycast conventions with comprehensive language support and proper error handling, but has one consistency issue between add/remove favorites operations
  • Pay attention to extensions/simple-dictionary/src/search.tsx for the language parameter inconsistency

Important Files Changed

File Analysis
Filename Score Overview Issues
extensions/simple-dictionary/package.json 5/5 Package configuration for simple dictionary extension with proper dependencies and metadata None identified
extensions/simple-dictionary/src/search.tsx 4/5 Main search component with dictionary lookup and favorites management functionality Inconsistent language parameter usage between add/remove favorites operations
extensions/simple-dictionary/src/list.tsx 5/5 Favorites list view with filtering, language selection, and removal capabilities None identified
extensions/simple-dictionary/src/classes/dictionary.ts 5/5 Dictionary API client with complex pronunciation and form rendering for multiple languages None identified
extensions/simple-dictionary/src/classes/favorite.ts 5/5 Local storage manager for favorite dictionary entries with full CRUD operations None identified

11 files reviewed, 1 comment

Edit Code Review Bot Settings | Greptile

Osmagtor and others added 2 commits September 9, 2025 20:20
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Copy link
Collaborator

@pernielsentikaer pernielsentikaer left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi 👋

Thanks for your contribution 💪

I have now tested your extension, and I have some feedback ready for you:

What we should improve

Issue Severity File Impact
Missing error handling in fetch CRITICAL dictionary.ts:79 App crashes on network failure
Unsafe JSON.parse CRITICAL favorite.ts:33 App crashes on corrupted data
Race condition in favorites HIGH search.tsx:47-66 State corruption
Missing error handling in useEffect HIGH search.tsx:38-44 Infinite loading state
Inconsistent async error handling MEDIUM search.tsx:147-150 UI/state inconsistency

🔧 Recommended Fixes

  1. Add try-catch blocks around all async operations
  2. Implement proper error boundaries for JSON parsing
  3. Fix the race condition by using Promise.all() or proper state management
  4. Add error states to handle failed operations gracefully
  5. Implement retry logic for network operations

I'm looking forward to testing this extension again 🔥

Request a new review when you are ready. Feel free to contact me here or at Slack if you have any questions.

@Osmagtor
Copy link
Contributor Author

Thank you for your valuable feedback. I have tried improving the code per your suggestions and to the best of my capabilities. Let me know if there are any other issues. I'll be glad to work on them 👍

@pernielsentikaer
Copy link
Collaborator

@greptileai, can you please do a new review?

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll review this new Simple Dictionary extension PR. Let me analyze the code structure, implementation, and adherence to Raycast guidelines.

Overall Assessment

This is a well-structured dictionary extension that provides word lookup functionality with favorites management. The code is clean and follows TypeScript best practices.

Positive Aspects

Good Architecture: Clean separation of concerns with dedicated classes for Dictionary and Favorite functionality
TypeScript Implementation: Strong typing throughout with proper interfaces
User Experience: Comprehensive features including favorites, filtering, and detailed markdown rendering
Error Handling: Proper try-catch blocks and user feedback via toasts
Code Quality: Good documentation, consistent formatting, and logical organization

Issues to Address

1. Package.json Inconsistencies

Issue: The extension is titled "Simple Dictionary" but the README and CHANGELOG refer to "Dictionary for Windows"

Files: package.json, README.md, CHANGELOG.md

The title should be consistent across all files. Also, while the package.json includes Windows in platforms, the README specifically mentions "Dictionary for Windows" which might be confusing.

2. Error Handling in Dictionary Class

File: src/classes/dictionary.ts (lines 84-102)

The catch block is empty and doesn't provide any user feedback:

} catch {
  // There was an error fetching the entries
}

Recommendation: Add proper error logging or user notification, especially for network-related issues.

3. Unsafe Array Access

File: src/classes/dictionary.ts (line 94)

this.language = entry.entries[0].language.name.slice(0, 1).toUpperCase() + entry.entries[0].language.name.slice(1).toLowerCase();

While you check !entry.entries.length earlier, this direct access to [0] could be safer with optional chaining.

4. Complex String Manipulation

File: Multiple locations

The repeated pattern of capitalizing first letter could be extracted into a utility function:

word.slice(0, 1).toUpperCase() + word.slice(1).toLowerCase()

5. Large Language Dropdown

File: package.json (lines 30-146)

The language dropdown contains 25+ options which might overwhelm users. Consider:

  • Grouping common languages at the top
  • Adding search functionality
  • Or providing a preference for default language

6. Potential Memory Issues

File: src/classes/dictionary.ts (renderForms method)

The complex conjugation rendering creates nested loops and could be performance-intensive for languages with many forms. Consider pagination or lazy loading for very large form sets.

Minor Issues

7. Magic Numbers

File: src/search.tsx (line 24)

const colors: Color[] = [Color.Blue, Color.Green, Color.Magenta, Color.Orange, Color.Purple, Color.Red, Color.Yellow];

Consider making this configurable or adding more colors to avoid repetition with many parts of speech.

8. Toast Message Inconsistency

File: src/search.tsx

Some toast messages use different capitalization patterns. Standardize the message format.

Suggestions for Improvement

  1. Add Loading States: Consider showing loading indicators for individual dictionary entries
  2. Offline Support: Cache recent lookups for offline access
  3. Search History: Maintain a history of searched words
  4. Keyboard Shortcuts: Add more intuitive shortcuts for common actions

Security & Privacy

No API Keys Required: Uses a free dictionary API
Local Storage Only: Favorites are stored locally
No External Dependencies: Minimal dependency footprint

Final Recommendation

This is a solid extension with good functionality and clean code. The main issues are around consistency in naming and some minor improvements in error handling and user experience. The architecture is sound and the implementation is largely correct.

Status: Approve with minor revisions recommended

The extension provides valuable functionality and follows Raycast best practices well. The issues identified are mostly minor and don't affect core functionality.

@pernielsentikaer
Copy link
Collaborator

Some of above might make sense to look into @Osmagtor

@Osmagtor
Copy link
Contributor Author

I have made all the suggested fixes except for numbers 5, 6 and 7.

  • 5: Raycast command parameters of dropdown type already have built-in search functionality.

  • 6: While I understand the potential performance implications of rendering conjugation systems, these are only rendered once for all the definitions of a verb, regardless of the number of them.

  • 7: the original idea behind color-coding the different parts of speech was to set the definitions for different parts of speech apart. This still applies even if there are any words that can belong to more parts of speech than there are colors. No two adjacent groups of definitions will ever have the same color.

As to the suggested improvements, I have implemented the following:

  • A caching system to avoid unnecessary API calls.
  • A command to see the search history in case a user has searched for a word and forgotten to add it to their favorites. It is limited to 50 search items for performance reasons.

Finally, I have also made some other modifications:

  • Entry comparisons had to be redone to avoid mistakenly comparing strings in the same case (uppercase or lowercase) as words may have different meanings when capitalized. Thus, some capitalized words wouldn't be saved to the history or to favorites because their non-capitalized counterpart already existed in the history or the favorites list, and vice versa.
  • A star icon was added next to any senses in search results that are already stored as favorites.
  • A new method has been added to the Favorite class to check for the existence of grouped entries in the favorites list (existMultiple). Previously, grouped entries were checked one by one in search.tsx with the exist method, which meant that ALL favorites were being read and parsed from local storage for every iteration.

@pernielsentikaer
Copy link
Collaborator

@greptileai, could you please do a fresh review here? 😊

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Greptile Summary

This PR introduces a comprehensive dictionary extension for Raycast that allows users to look up words, maintain search history, and save favorite definitions.

Key Changes:

  • Added dictionary API integration with caching and markdown rendering
  • Implemented favorites and history management with LocalStorage persistence
  • Created three main commands: Search Word, View History, and View Favorites
  • Added comprehensive language support with 25+ languages
  • Included proper error handling and user feedback throughout the interface

Minor Issue Identified:

  • Inconsistent language parameter formatting when adding favorites (should use lowercase for consistency with removal logic)

Confidence score: 4/5

  • This PR is mostly safe to merge with one minor logic inconsistency
  • The extension follows Raycast conventions well and implements proper error handling, but has a minor language parameter consistency issue in the favorites functionality that should be addressed
  • Pay attention to extensions/simple-dictionary/src/search.tsx for the language parameter inconsistency

Important Files Changed

File Analysis
Filename Score Overview Issues
extensions/simple-dictionary/package.json 5/5 Configuration file with dependencies, commands, and platform support None identified
extensions/simple-dictionary/src/search.tsx 3/5 Main search component with dictionary lookup and favorites management Language parameter inconsistency between adding and removing favorites
extensions/simple-dictionary/src/classes/dictionary.ts 5/5 Dictionary API client with caching, entry fetching, and markdown generation None identified
extensions/simple-dictionary/src/classes/favorite.ts 5/5 LocalStorage-based favorites management with CRUD operations None identified
extensions/simple-dictionary/src/classes/history.ts 5/5 LocalStorage-based search history with size limit and duplicate prevention None identified

9 files reviewed, 1 comment

Edit Code Review Bot Settings | Greptile

Comment on lines +136 to +143
const success: boolean = await Favorite.addEntry(
languageFull,
word,
sense.markdown || "",
entryURL || "",
j,
partOfSpeech,
);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

logic: Inconsistent language parameter usage when adding to favorites. You're using languageFull (line 137) but when removing favorites (line 175), you use languageFull again. However, the Favorite.addEntry and Favorite.removeEntry methods expect the same format.

Suggested change
const success: boolean = await Favorite.addEntry(
languageFull,
word,
sense.markdown || "",
entryURL || "",
j,
partOfSpeech,
);
const success: boolean = await Favorite.addEntry(
languageFull.toLowerCase(),
word,
sense.markdown || "",
entryURL || "",
j,
partOfSpeech,
);

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you check this @Osmagtor

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just did. I made the casing consistent for the checks in the methods themselves instead of the parameteres.

@pernielsentikaer pernielsentikaer marked this pull request as draft September 15, 2025 11:13
@pernielsentikaer pernielsentikaer marked this pull request as ready for review September 16, 2025 10:19
Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Greptile Summary

This PR adds a new Simple Dictionary extension that allows users to search for word definitions across multiple languages, save favorites, and view search history. The extension provides three main commands: search word (with language dropdown), view favorites, and view history. The implementation uses proper TypeScript types, follows Raycast conventions, and includes appropriate error handling and toast notifications.

Key changes:
• Complete new extension with dictionary lookup functionality
• Multi-language support (30+ languages including English, Spanish, French, etc.)
• Favorites management with LocalStorage persistence
• Search history tracking
• Proper metadata screenshots for store submission
• Follows Raycast extension guidelines and formatting standards

Confidence score: 4/5

  • This PR is safe to merge with minor language parameter consistency issue
  • Score reflects a well-structured extension with proper error handling, TypeScript types, and Raycast conventions, but has one logic issue with language parameter usage in favorites functionality
  • Pay attention to the language parameter consistency issue in search.tsx favorites functionality

Important Files Changed

File Analysis
Filename Score Overview Issues
extensions/simple-dictionary/src/classes/favorite.ts 5/5 Implements favorite word management with LocalStorage operations None identified
extensions/simple-dictionary/package.json 5/5 Extension configuration with command definitions and multi-language support None identified

1 file reviewed, 1 comment

Edit Code Review Bot Settings | Greptile

Comment on lines +136 to +137
const success: boolean = await Favorite.addEntry(
languageFull,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

logic: inconsistent language parameter usage when adding to favorites. You're using languageFull (full language name) but when removing on line 175-176 you use languageFull as well, but the addEntry function expects the same format that removeEntry uses

Suggested change
const success: boolean = await Favorite.addEntry(
languageFull,
const success: boolean = await Favorite.addEntry(
languageFull,

@raycastbot raycastbot merged commit 8906fba into raycast:main Sep 16, 2025
2 checks passed
@github-actions
Copy link
Contributor

Published to the Raycast Store:
https://raycast.com/CT-7567/simple-dictionary

@raycastbot
Copy link
Collaborator

🎉 🎉 🎉

Such a great contribution deserves a reward, but unfortunately we couldn't find your Raycast account based on your GitHub username (@Osmagtor).
Please link your GitHub account to your Raycast account to receive your credits and soon be able to exchange them for some swag.

jlokos added a commit to jlokos/raycast-extensions that referenced this pull request Sep 17, 2025
- 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
erykksc pushed a commit to erykksc/raycast-extensions that referenced this pull request Sep 17, 2025
* Add simple-dictionary extension

- Linted files and resized screenshots
- Updated readme
- Screenshots
- Fix indentation of subsenses
- Fixed the action menu to add/remove favorites not distinguishing between senses
- Fixed verb form tables
- Added a dropdown to the search bar and updated the language text
- Removed log
- Fixed loading for invalid words and made smaller changes
- Different senses are now shown in a list
- Sorted favorites results
- Initial commit

* Fixed removing favorites from search results

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>

* Updated a bit

* Improved error handling

* Linting

* Consistent extension name

* New command to view the history of searched words

* Performance and optimization improvements

* Linting

* Consistent language casing for checks

* Linting

* Updated metadata

* Update CHANGELOG.md and optimise images

---------

Co-authored-by: osmagtor <oscar.maganto@aturnos.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: Per Nielsen Tikær <per@raycast.com>
Co-authored-by: raycastbot <bot@raycast.com>
csymons pushed a commit to csymons/raycast-extensions that referenced this pull request Oct 6, 2025
- feat(scheduler): run missed schedules immediately
- Merge branch \'contributions/merge-1759753002362\' into ext/scheduler
- Pull contributions
- Merge branch \'raycast:main\' into ext/scheduler
- Update workflow configurations (raycast#22002)
- Update CODEOWNERs (5a03e66)
- Add braintick extension (raycast#21545)
- [Say] Fix missing await (raycast#22001)
- Update CODEOWNERs (ae2261c)
- Add rtl-reader extension (raycast#21549)
- Update CODEOWNERs (aaeda7d)
- Add airsync extension (raycast#21903)
- [Say] Add Stop Say command & enhancements (raycast#21998)
- Docs: Update the utils docs
- Update add-approve-label.yml (raycast#21995)
- Updated WebBites extension (raycast#21987)
- Enhance label addition workflow with debug info (raycast#21990)
- Update add-approve-label.yml (raycast#21989)
- Update reviewer type and token handling in workflow (raycast#21988)
- Refine auto-labeling for approved PRs (raycast#21986)
- Update add-approve-label.yml (raycast#21984)
- Update add-approve-label.yml (raycast#21983)
- Update add-approve-label.yml (raycast#21982)
- Update add-approve-label.yml (raycast#21981)
- Update add-approve-label.yml (raycast#21980)
- Update add-approve-label.yml (raycast#21979)
- Rework of fuzzy-file-search extension (raycast#21675)
- Update add-approve-label.yml (raycast#21977)
- Update add-approve-label.yml (raycast#21975)
- Add GitHub Actions workflow to auto-label approved PRs (skip write+ users only) (raycast#21974)
- Update CODEOWNERs (45a587f)
-  [Web Converter] Add Windows Support (raycast#21691)
- Update CODEOWNERs (f922e58)
- Add security-search extension (raycast#21711)
- Improve video filename handling and update dependencies (raycast#21958)
- [Grafana] add command Pages (raycast#21952)
- Fix formatting in generate-code-owners.yml (raycast#21951)
- Update CODEOWNERs (070fbee)
- Implement fallback for core dirs and key files checkout (raycast#21950)
- Refactor sparse checkout and improve Slack notifications (raycast#21949)
- Enhance sparse checkout and improve commit message (raycast#21947)
- Update qrcode generator extension (raycast#21922)
- Enhance URL handling: allow direct opening of URLs and add utility function for URL validation (raycast#21555)
- [Trello] Allow for multiple assignees on card (raycast#21512)
- Update messages extension (raycast#21939)
- Update stripe extension (raycast#21943)
- Update generate-code-owners.yml for sparse-checkout (raycast#21925)
- Add comma-separator extension (raycast#21749)
- Add gomander extension (raycast#21647)
- [Google Transalte] add hotkey to switch between language sets quickly (up and down) (raycast#21918)
- Add supermemory extension (raycast#21811)
- Add nepali-calendar extension (raycast#21708)
- Add folder-organizer extension (raycast#21575)
- Update github extension (raycast#21742)
- [Logseq] Windows support (raycast#21705)
- add an extra space for reward text (raycast#21905)
- Add uranium-raycast-plugin extension (raycast#21501)
- Update 1password extension (raycast#21689)
- Fix: The "Search Bookmarks" command returns an error when the hard-coded default path does not exist (raycast#21706)
- [Raindrop.io] open in 2ndary browser + modernize (raycast#21748)
- feat: enable windows support (raycast#21739)
- Update plexus extension (raycast#21894)
- Add hemolog extension (raycast#21733)
- Add `Koyeb` extension (raycast#21891)
- Update genius-lyrics extension (raycast#21678)
- Update battery-health extension: add adaptor power watts (raycast#20966)
- feat: Update YouTube transcript functionality (raycast#21868)
- [Bitbucket] Swap to API tokens (raycast#21489)
- Update aws extension (raycast#21688)
- Update code-runway extension (raycast#21662)
- Add claude-code-launcher extension (raycast#21075)
- Ext/window sizer: Updated screenshots to macOS Tahoe (raycast#21790)
- Update bilibili extension (raycast#21703)
- Update Ext/surge outbound switcher (raycast#21860)
- Ext/surge outbound switcher: Updated screenshots to macOS Tahoe (raycast#21791)
- Update `Font Awesome` extension - fix search would get stuck since token was not persisted (raycast#21835)
- Update aave-search extension (raycast#21798)
- Update `Spaceship` extension - View Lifecycle State of "Domain" + Change "Nameservers" of "Domain" + Add "Windows" Support (raycast#21816)
- feat(KeePassXC): add windows support. (raycast#21785)
- Update onbo extension (raycast#21792)
- Update `Todo List` extension - Added `tooltip` to to-do list items so longer titles easier to read + Added `metadata` images + Modernized (raycast#21819)
- [Comet] sort bookmarks by dateAdded + Modernize (raycast#21734)
- [Pipedrive] fix issue + lots of changes (raycast#21709)
- Add `Youform` extension - view your forms, their blocks and submissions (raycast#21840)
- Update arc extension (raycast#21821)
- [video-downloader] Fix long video name issue (raycast#21839)
- [Playnite Launcher] Fix cold starting issue (raycast#21827)
- Add razuna extension (raycast#21558)
- fix(nuxt): sanitize component name and optimize ai prompt (raycast#21804)
- Update gif search extension (raycast#21834)
- Improve Sesh List (raycast#21805)
- Update tembo extension (raycast#21810)
- Update duan-raycast-extension extension (raycast#21836)
- [Forked Extensions] Add support for checking aheads & branches (raycast#21838)
- Update svgl extension (raycast#21841)
- Update CODEOWNERs
- Update unicode-symbols extension (raycast#21726)
- [JSONtoTS] Add Windows Support (raycast#21736)
- Update CODEOWNERs
- feat(mcp-registry): update nuxt ui mcp url (raycast#21763)
- Update `MailerSend` extension - Add Windows Support + View Domain DNS Records (raycast#21698)
- Add `Vanguard Backup` extension - Manage **Backup Destinations** + Manage **Backup Tasks** + Manage **Remote Servers** (raycast#21769)
- Update CODEOWNERs
- Update `bmrks` extension - change delete action shortcut + modernize (raycast#21770)
- feat(nuxt): update to nuxt ui v4 (raycast#21762)
- Updated Wordflow (raycast#21753)
- Update CODEOWNERs
- Added WebBites extension (raycast#21227)
- Update CODEOWNERs
- feat: add CometAPI extension for AI-powered text processing tools (raycast#21562)
- Update CODEOWNERs
- Add nightscout extension (raycast#21552)
- PPL: Fixed View Newspapers bug (raycast#21693)
- Docs: Update the utils docs
- Docs: Add changelog for windows (raycast#21695)
- Update CODEOWNERs
- Update parcel extension (raycast#21415)
- Update CODEOWNERs
- Docs: update for the new API release
- Update mail extension (raycast#21687)
- Add platforms support to package.json for windows and linux (raycast#21666)
- Update CODEOWNERs
- Update CODEOWNERs
- Update dependencies and improve keyboard shortcuts for cross-platform compatibility (raycast#21667)
- Update static-marks extension (raycast#21428)
- Update gitlab extension (raycast#21670)
- Update how long to beat extension (raycast#21671)
- Update Google Calendar Quickadd (raycast#21673)
- [Statamic Docs] Rename dev readme to avoid it showing on the store (raycast#21654)
- Update hue palette extension (raycast#21627)
- Update CODEOWNERs
- Add `Postiz` extension - Search Channels + Search Posts (week) & Create (draft, text-only) Post & Delete Post (raycast#21553)
- Added version switcher to Statamic Docs extension (raycast#21620)
- Update CODEOWNERs
- Add ip-finder extension (raycast#21543)
- Migration for 1.103.0 and Windows docs (raycast#21652)
- Update granola extension (raycast#21629)
- Update CODEOWNERs
- Add Raycast FRC (raycast#21390)
- Update unicode-symbols (raycast#21641)
- [Playnite Launcher] Support for portable versions & fixes (raycast#21622)
- Update duan-raycast-extension extension (raycast#21626)
- [Forked Extensions] Fix incorrect content for copying (raycast#21635)
- 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 CHANGELOG.md and optimise images
- Update CODEOWNERs
- Update scheduler extension
StoutTools pushed a commit to StoutTools/raycast-extensions that referenced this pull request Oct 7, 2025
- 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…
raycastbot added a commit that referenced this pull request Oct 10, 2025
* Update scheduler extension

- feat(scheduler): run missed schedules immediately
- Merge branch \'contributions/merge-1759753002362\' into ext/scheduler
- Pull contributions
- Merge branch \'raycast:main\' into ext/scheduler
- Update workflow configurations (#22002)
- Update CODEOWNERs (5a03e66)
- Add braintick extension (#21545)
- [Say] Fix missing await (#22001)
- Update CODEOWNERs (ae2261c)
- Add rtl-reader extension (#21549)
- Update CODEOWNERs (aaeda7d)
- 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 (45a587f)
-  [Web Converter] Add Windows Support (#21691)
- Update CODEOWNERs (f922e58)
- 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 (070fbee)
- 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 CHANGELOG.md and optimise images
- Update CODEOWNERs
- Update scheduler extension

* change(scheduler) update screenshot

* change(scheduler) small doc changes

* fix(scheduler): handle monthly schedules when day exceeds month length

When scheduling monthly commands, if the selected day of month doesn't
exist in a particular month (e.g., day 31 in February), the scheduler
now automatically uses the last day of that month instead of rolling
over to the next month.

This ensures predictable behavior - for example, a command scheduled
for the 31st of each month will run on:
- Jan 31, Feb 28 (or 29), Mar 31, Apr 30, May 31, etc.

Also added an info tooltip in the UI to inform users of this behavior.

* Update CHANGELOG.md and optimise images

---------

Co-authored-by: Charles Symons <dev@realitymanagement.com>
Co-authored-by: raycastbot <bot@raycast.com>
mite404 added a commit to mite404/extensions that referenced this pull request Oct 26, 2025
- 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…
Sean-fn added a commit to Sean-fn/raycast-extensions that referenced this pull request Oct 27, 2025
- 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…
tktcorporation added a commit to tktcorporation/extensions that referenced this pull request Nov 2, 2025
- 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…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

new extension Label for PRs with new extensions

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants