Skip to content

Add voiceink extension#24581

Merged
raycastbot merged 5 commits intoraycast:mainfrom
metrovoc:ext/voiceink
Feb 20, 2026
Merged

Add voiceink extension#24581
raycastbot merged 5 commits intoraycast:mainfrom
metrovoc:ext/voiceink

Conversation

@metrovoc
Copy link
Contributor

@metrovoc metrovoc commented Jan 16, 2026

Description

Screencast

Checklist

- Fix icon format and code style
- Add README, CHANGELOG, and screenshots for store submission
- Fix UI: remove source label, show 100+ when limit reached, use cmd+d for details
- update
- Set author to metrovoc
- Support both VoiceInk Official and CE versions
- Initial commit: VoiceInk Raycast extension
@raycastbot raycastbot added the new extension Label for PRs with new extensions label Jan 16, 2026
@raycastbot
Copy link
Collaborator

raycastbot commented Jan 16, 2026

Congratulations on your new Raycast extension! 🚀

We're currently experiencing a high volume of incoming requests. As a result, the initial review may take up to 10-15 business days.

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

@metrovoc metrovoc marked this pull request as ready for review January 16, 2026 17:45
@greptile-apps
Copy link
Contributor

greptile-apps bot commented Jan 16, 2026

Greptile Summary

Adds a new VoiceInk extension that reads transcription history from VoiceInk's local SQLite database and presents it in a searchable Raycast list. The extension supports both VoiceInk Official and Community Edition with auto-detection, and allows custom database paths. The implementation is clean and well-structured, using useExec with the sqlite3 CLI in readonly mode.

  • The ESLint configuration uses the legacy .eslintrc.json format; new extensions should use the ESLint v9 flat config with defineConfig
  • LIKE wildcard characters (%, _) in search input are not escaped, which can cause unexpected matching behavior (not a security issue since the DB is opened readonly)
  • Prettier config, changelog format, and metadata screenshots all conform to Raycast standards

Confidence Score: 4/5

  • This PR is safe to merge with minor style improvements recommended.
  • The extension is well-structured with clean component architecture, proper error handling, and readonly database access. The SQL escaping is sufficient for security in SQLite. The remaining issues (ESLint config format, LIKE wildcard escaping) are non-blocking style suggestions.
  • extensions/voiceink/.eslintrc.json should be migrated to ESLint v9 flat config. extensions/voiceink/src/lib/database.ts has minor LIKE wildcard escaping gap.

Important Files Changed

Filename Overview
extensions/voiceink/package.json Well-structured package.json with appropriate dependencies, preferences, and Raycast schema. No issues found.
extensions/voiceink/src/lib/database.ts Core database logic with SQL query building. The single-quote escaping is sufficient for SQLite security, but LIKE wildcards (% and _) in user input are not escaped, causing unexpected matching behavior. Uses getPreferenceValues<Preferences>() correctly with auto-generated types.
extensions/voiceink/src/search-transcriptions.tsx Main command component using useExec with sqlite3 CLI. Clean implementation with proper error handling and empty state views.
extensions/voiceink/src/components/TranscriptionDetail.tsx Detail view component with metadata display and action panel. Clean implementation, no issues.
extensions/voiceink/src/components/TranscriptionItem.tsx List item component with accessories and actions. Well-structured with proper conditional rendering.
extensions/voiceink/.eslintrc.json Uses legacy ESLint config format. Should migrate to ESLint v9 flat config with defineConfig from eslint/config.

Last reviewed commit: b7750e8

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.

14 files reviewed, 2 comments

Edit Code Review Agent Settings | Greptile

@@ -0,0 +1,8 @@
{
"printWidth": 100,
Copy link
Contributor

Choose a reason for hiding this comment

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

style: printWidth should be 120 according to Raycast extension standards

Suggested change
"printWidth": 100,
"printWidth": 120,

Context Used: Rule from dashboard - What: All extensions must use the standard Raycast Prettier configuration with printWidth: 120 and... (source)

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Comment on lines +7 to +10
interface Preferences {
databaseSource: "auto" | "official" | "ce" | "custom";
customDatabasePath?: string;
}
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Manual Preferences interface shouldn't be defined - it's auto-generated in raycast-env.d.ts

Suggested change
interface Preferences {
databaseSource: "auto" | "official" | "ce" | "custom";
customDatabasePath?: string;
}

Context Used: Rule from dashboard - What: Don't manually define Preferences for getPreferenceValues() or commends Argument interfa... (source)

@raycastbot
Copy link
Collaborator

This pull request has been automatically marked as stale because it did not have any recent activity.

It will be closed if no further activity occurs in the next 7 days to keep our backlog clean 😊

@raycastbot raycastbot added the status: stalled Stalled due inactivity label Jan 30, 2026
@raycastbot
Copy link
Collaborator

This pull request has been automatically closed due to inactivity.

Feel free to comment in the thread when you're ready to continue working on it 🙂

You can also catch us in Slack if you want to discuss this.

@raycastbot raycastbot closed this Feb 6, 2026
@raycastbot raycastbot removed the status: stalled Stalled due inactivity label Feb 16, 2026
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:

  • Could you add at least one screenshot of the extension and add them to a folder called metadata - you need to use our tool to get the right padding on the images

  • Why do we need both recent and search command, for me they list the same?

  • What is the file in demo for?

I'm looking forward to testing this extension again 🔥

Feel free to contact me here or at Slack if you have any questions.


I converted this PR into a draft until it's ready for the review, please press the button Ready for review when it's ready and we'll have a look 😊

@pernielsentikaer pernielsentikaer marked this pull request as draft February 16, 2026 09:22
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.

19 files reviewed, 1 comment

Edit Code Review Agent Settings | Greptile

Comment on lines +117 to +118
const searchClause = searchTerm
? ` AND (ZTEXT LIKE '%${escapeSqlString(searchTerm)}%' OR ZENHANCEDTEXT LIKE '%${escapeSqlString(searchTerm)}%')`
Copy link
Contributor

Choose a reason for hiding this comment

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

SQL injection via string interpolation - use parameterized queries with sqlite3 CLI's --bind flag instead of template literals

Suggested change
const searchClause = searchTerm
? ` AND (ZTEXT LIKE '%${escapeSqlString(searchTerm)}%' OR ZENHANCEDTEXT LIKE '%${escapeSqlString(searchTerm)}%')`
const searchClause = searchTerm
? ` AND (ZTEXT LIKE ? OR ZENHANCEDTEXT LIKE ?)`
: "";

Then update useExec calls to pass bind parameters: ["-json", "-readonly", dbInfo.path, query, %${searchTerm}%, %${searchTerm}%]

@metrovoc
Copy link
Contributor Author

Hi @pernielsentikaer, thanks for the review! I've addressed all the feedback:

  1. Screenshots — They were already in metadata/, but not taken with the official Window Capture tool. Now updated with proper screenshots.

  2. Merged commands — Combined Recent Transcriptions and Search Transcriptions into a single Search Transcriptions command. It shows recent transcriptions by default and supports multi-word database search when typing (each word is matched independently with AND logic).

  3. demo/ folder — It was a demo database included so reviewers could test the extension without a real VoiceInk installation. Removed now.

Ready for another look when you get a chance!

@pernielsentikaer
Copy link
Collaborator

Let's see if Greptile has more feedback than above when we mark it ready 🙂

@pernielsentikaer pernielsentikaer marked this pull request as ready for review February 16, 2026 10:58
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.

17 files reviewed, 2 comments

Edit Code Review Agent Settings | Greptile

Comment on lines +1 to +4
{
"root": true,
"extends": ["@raycast"]
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Migrate to ESLint v9 flat config

New extensions should use the ESLint v9 flat config format with defineConfig. Replace this .eslintrc.json file with an eslint.config.js:

const { defineConfig } = require("eslint/config");
const raycastConfig = require("@raycast/eslint-config");

module.exports = defineConfig([...raycastConfig]);

Context Used: Rule from dashboard - What: In ESLint v9+, defineConfig is exported from eslint/config and is the recommended way to d... (source)

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

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.

Looks good to me, approved 🔥

@raycastbot raycastbot merged commit b333c7a into raycast:main Feb 20, 2026
@github-actions
Copy link
Contributor

Published to the Raycast Store:
https://raycast.com/metrovoc/voiceink

@raycastbot
Copy link
Collaborator

🎉 🎉 🎉

We've rewarded your Raycast account with some credits. You will soon be able to exchange them for some swag.

y0ngha added a commit to y0ngha/extensions that referenced this pull request Feb 21, 2026
- style: apply lint.
- refactor: extract success toast into function with customizable title and message
- feat: add AI-powered Slack status setting functionality
- feat: show toast notification after actions
- feat: add Main List component to display current status and actions
- feat: add component to set Slack status (emoji, text, duration)
- feat: add utilities for Slack expiration conversion
- feat: add setStatus to SlackClient (statusText, emoji, expiration)
- feat: add utility for calculating status_expiration
- feat: create emojiPicker component with Emoji props for selection
- feat: add Emoji type for Slack emojis
- refactor: use SlackClient in search-emojis instead of calling Slack API directly
- feat: add getUserProfileById and getWorkspaceEmojis to SlackClient
- feat: import emoji code from Raycast slack-status extension
- chore: update the Node.js and npm versions.
- chore: eslint version 9.39.2 > 9.39.3 update
- Update CODEOWNERs (6c270e71)
- chore(remember-the-date): add missing my name as contributor (#25655)
- Update proton-pass-client extension (#25660)
- Update music extension (#25667)
- Update picgo extension (#25665)
- [Pokedex] Add ItemDex and Shiny forms (#25668)
- Update sonarr extension (#25563)
- Update CODEOWNERs (b333c7a3)
- Add voiceink extension (#24581)
- Update: Remember the Date (Add Recurring Events Support) (#25426)
- Fix figma-link-cleaner: Check clipboard before AppleScript (#25607)
- Update dependencies and platforms in package.json for the mullvad extension (#25413)
- Update CODEOWNERs (04d93fbc)
- Add agent-usage extension (#25049)
- Update vercast extension (#25388)
- Update CODEOWNERs (ef4ffcac)
- Add dagster extension (#25312)
- Update CODEOWNERs (09e5b5b8)
- Add opencode-sessions extension (#25357)
- YouTube Music: Refactor command structure and improve error handling (#25370)
- Update CODEOWNERs (cf508576)
- Update wsl-manager extension (#25132)
- Update CODEOWNERs (e60ed163)
- Deep Search Claude Sessions and Path Resolution Edge Cases (#25361)
- Update CODEOWNERs (766d4e75)
- [Helldivers] Polish & maintenance (#25632)
- Git Worktrees: Fix remove worktree infinite loading spinner (#25394)
- Update CODEOWNERs (307abaf4)
- Update google-books extension (#25235)
- Update fathom extension (#25525)
- Update CODEOWNERs (bb01f398)
- Add `Sendy` extension - view brands, view lists, check subscriber status (#25573)
- Update CODEOWNERs (04ca0dcc)
- Update base64 extension (#25625)
- Update proton-pass-client extension (#25611)
- Update awork extension (#25617)
- Update CODEOWNERs (e68a32c1)
- Add chiikawa-character extension (#25428)
- Update git extension (#25342)
- Update notion extension (#25443)
- Update CODEOWNERs (2173848e)
- Music: Add menu bar favorite/unfavorite action with stateful icon and confirmed HUD feedback (#25300)
- Brew: Improve handling of abort signal (#25584)
- Update CODEOWNERs (2995cb6b)
- Add `VirtFusion` extension (#25452)
- Update binge-clock extension (#25564)
- Update digger extension (#25583)
- Update CODEOWNERs (48ae9432)
- System Monitor: Add CPU temperature monitoring (#25577)
- Update CODEOWNERs (c7ddd952)
- Add proton-pass-client extension (#25154)
- Update sharex extension (#25590)
- Update CODEOWNERs (033e4ee4)
- Update ccusage extension (#25507)
- [Speech to Text] Add Ukrainian language option (#25576)
- Update CODEOWNERs (ec8d126b)
- Update gitlab extension (#25569)
- Update CODEOWNERs (b6ae1bb4)
- Add Pronounce the Word Extension [ext/pronounce the word] (#25270)
- Update CODEOWNERs (9be2fbf6)
- Update cloudflare-warp extension (#25567)
- fix(browser-bookmarks): Update bundled sql-wasm.wasm to match sql.js v1.13.0 (#25508)
- Update raycast-store-updates extension (#25512)
- Update CODEOWNERs (4298b500)
- brightness-control: Add Lunar-based brightness control commands (#25315)
- [Bitwarden] Fix invalid generate password options (#25551)
- Update CODEOWNERs (744a71d1)
- Add starling extension (#25254)
- [Skills] Add support for installing/removing skills (#25373)
- [Bitwarden] Fix potential stale session token issue (#25538)
- Update CODEOWNERs (19b73e3a)
- Add db-schema-explorer extension (#25197)
- Update CODEOWNERs (3f88cb76)
- Update browser-bookmarks extension (#25237)
- chore: update dependencies and modernize codebase (#24722)
- Spotify Player: Fix menu bar unloading before API fetch completes (#25349)
- Update vesslo extension (#25524)
- Update CODEOWNERs (0e7cf43b)
- Add Bunq Extension (#24851)
- ISSUE-25515: Noun Project Windows Support (#25519)
- Update audio-device extension (#25520)
- Update scheduler extension (#25494)
- Update easydict extension (#25436)
- [Shell] fix edit command not in recent section (#25470)
- Update CODEOWNERs (8600824a)
- Add dns-lookup extension (#23675)
- Update `Unkey` extension - maintenance release (#25514)
- Update CODEOWNERs (c2384bda)
- Add Get App Icon extension (#25294)
- Update audio-device extension (#25467)
- Update CODEOWNERs (6be30308)
- Add Clear File Metadata command to File Info extension [ext/clear-file-metadata] (#25272)
- Update CODEOWNERs (a781186d)
- Add subnoto extension (#25113)
- [Bitwarden] Handle unlock error, fix windows hash & support steam OTP (#25397)
- Update vesslo extension (#25506)
- Update CODEOWNERs (49512cd9)
- Add supabase extension (#25016)
- Update bnf-search-tool extension (#25392)
- Add star/unstar profiles and YouTube @brand accounts to @profile extension (#25460)
- Update CODEOWNERs (6b2d5783)
- Add code-wiki extension (#25434)
- Update accordance extension (#25310)
- Update CODEOWNERs (c4a1c197)
- Add okta-app-manager extension (#25000)
- Update CODEOWNERs (6aa0cfdf)
- Add upset-dev extension (#24915)
- Update CODEOWNERs (bea114f1)
- Add kaset-control extension (#24885)
- Fix UploaderX URL encoding for filenames with spaces (#25505)
- Update CODEOWNERs (710ab5cc)
- Add transport-nsw extension (#25089)
- Update CODEOWNERs (c9df8437)
- Add send-to-kindle extension (#25196)
- Update CODEOWNERs (f172f07b)
- Add mobile-provisions extension (#25178)
- Update `MXroute` extension - show email account usage (#25498)
- Update CODEOWNERs (9adf9a82)
- Add vietqr-transfer extension (#24602)
- Update CODEOWNERs (003fd7a7)
- Add caltask extension (#25107)
- Update CODEOWNERs (7fbf43bf)
- Add vesslo extension (#25170)
- Update CODEOWNERs (2d2b1bab)
- Add uploaderx extension (#25166)
- Update CODEOWNERs (3f1f9a95)
- Add retrace extension (#25289)
- Update CODEOWNERs (23cc87d9)
- Add flycheck-raycast extension (#25140)
- Update arc-helper extension (#25462)
- Brew: Improve memory usage (#25479)
- Update CODEOWNERs (2735ebd7)
- Update obsidian extension (#25022)
- Update CODEOWNERs (4a198be6)
- Add latex-board extension (#25168)
- [PM2] Routine maintenance (#25476)
- [Raycast Port] Routine Maintenance (#25477)
- Add "My Updates" filter, Refresh, and add CHANGELOG nav (↑/↓) to raycast-store-updates extension (#25480)
- Update raycast-store-updates extension (#25439)
- Update CODEOWNERs (a944fe57)
- Update vercast extension (#25471)
- fix(bed-time-calculator): Add Windows compatibility and contributor (#25465)
- Update anytype extension (#25444)
- Update CODEOWNERs (b74a7b30)
- [Slack] add proxy support for corporate networks (#25412)
- Update CODEOWNERs (0f8e5861)
- Update pocket extension (#25408)
- Update CODEOWNERs (8c220fa9)
- Update phosphor icons extension (#25440)
- Update CODEOWNERs (7d9c2f0d)
- Add Tella extension (#24561)
- MiniMax: Add M2.5 model support (#25427)
- Update CODEOWNERs (dc9e0203)
- feat(bed-time-calculator): Enhanced UI with color-coded sleep quality (#25405)
- Update CODEOWNERs (6bcb661b)
- Add portal-wholesale extension (#24781)
- Fix security vulnerabilities. (#25421)
- Update CODEOWNERs (e8d3af32)
- [Pokedex] Type Mastery (#25379)
- Update manus-manager extension (#25401)
- Update CODEOWNERs (afd3f3ec)
- Add figma-link-cleaner extension (#24675)
- Update CODEOWNERs (1b877989)
- Add betaseries extension (#25377)
- [Badges] Expose color picker ability to Windows (#25406)
- [Color Picker] Dismiss color picker feature (#25407)
- Update CODEOWNERs (fd71929c)
- Update google-meet extension (#24213)
- Update raycast-store-updates extension (#25399)
- Update CODEOWNERs (082e8b2b)
- Update google-calendar extension (#24261)
- Update instagram media downloader extension (#25402)
- Update CODEOWNERs (80842a18)
- Update `WiFi Password Reveal` extension -  add images + mention windows (#25396)
- Update leader-key extension (#25398)
- Update CODEOWNERs (27d18202)
- Add heptabase extension (#24462)
- Update CODEOWNERs (ed69ef34)
- Update simple-dictionary extension (#25186)
- Update CODEOWNERs (33332708)
- Update notion extension (#25244)
- Update CODEOWNERs (af155a48)
- Update browser-bookmarks extension (#25238)
- Update CODEOWNERs (403c3cee)
- Update vietnamese-calendar extension (#25360)
- Update quick-git extension (#25358)
- refactor: updated my esv-bible extension (#25362)
- Update CODEOWNERs (77d91ac3)
- Add migros extension (#24578)
- Update CODEOWNERs (83047136)
- [Statamic Docs] Show `-beta` flag for beta releases & update fallback results  (#25351)
- Update whoop extension to use Api V2 (#23013)
- Update CODEOWNERs (3c76f22a)
- [Color Picker] Add Windows Support (#25303)
- Update CODEOWNERs (1ebb02d8)
- Quick Access Infomaniak (#22431)
- Update CODEOWNERs (d4ccec5b)
- Add `Zenblog` extension (#25347)
- Update CODEOWNERs (0ea30fe8)
- Add napkin extension (#25363)
- Update CODEOWNERs (8cd6fe97)
- Add AzTU LMS extension (#25356)
- [Skills] show SKILL.md instead of repository README.md (#25352)
- [Skills] Fix broken screenshot references in README (#25348)
- Update CODEOWNERs (52a1712c)
- Add Skills Extension (#25018)
- [KeePassXC] Pin entry + copy/paste URL. (#25286)
- Workflows: Update to version v1.18.0 (#25341)
- Docs: update for the new API release
- Update CODEOWNERs (5c0f9c97)
- Add Toggle Pointer Acceleration command to mac-mouse-fix (#25247)
- refactor(github stars): update and refactor (#25278)
- Update qoder extension (#25296)
- Update bitwarden extension (#25326)
- fix(gitfox): deduplicate repositories in menu bar command (#25307)
- Update CODEOWNERs (b33caeb6)
- Add wordpress-manager extension (#24723)
- Update picgo extension (#25314)
- [Creem] update logo, images + better error msg (#25298)
- Update CODEOWNERs (f18f662b)
- Update kill node modules extension (#25327)
- Update kill-process extension (#25309)
- fix/ISSUE-25318: Fixing Todoist (currently broken for everyone i think?) (#25330)
- Update CODEOWNERs (60e8f7fa)
- Update Kill Process Extension (#25215)
- Update unicode-symbols extension (#25302)
- Update audio-device extension (#25290)
- fix(search npm): keywords bug (#25271)
- Update apple-reminders extension (#25242)
- fix(g-cloud): fixes and cleanup v1.0.4 (#25275)
- Update confluence extension (#25284)
- Update textream extension (#25268)
- Update CODEOWNERs (d978e65f)
- Add niuma-logs extension (#24656)
- Minor update to Fathom extension (#25293)
- Update CODEOWNERs (efcfa236)
- Update clipboard-type extension (#25225)
- Update CODEOWNERs (e6bc2915)
- Add SayIntentions extension (#23277)
- Things: Reduce JXA latency for list fetching (#25233)
- Update github-copilot extension (#25251)
- Update CODEOWNERs (ec90607a)
- Update cron-manager extension (#24426)
- Update CODEOWNERs (6a097d39)
- Add picgo extension (#25024)
- Update stealth-ai-tool extension (#25227)
- Update CODEOWNERs (bfe3bcb4)
- Add markdown-docs extension (#24954)
- feat(gitfox): add v4 support, menu bar, favorites, git status and more (#25253)
- Update CODEOWNERs (081224ab)
- Add kimi extension (#25250)
- Update CODEOWNERs (bd274dc5)
- Add minimax-ai extension (#25003)
- feat(tailscale): show more device info (#25262)
- Update CODEOWNERs (7e3e3312)
- Update viscosity extension (#25249)
- fix(change-case): swap case (#25263)
- Update CODEOWNERs (553a6af5)
- Add textream extension (#25257)
- Add windows support and support setting default browser per group or individual URL action types. (#25229)
- Update `Infomaniak` extensions - List Favorites in kDrive (#25252)
- Update github-copilot extension (#25205)
- Update CODEOWNERs (e6f3bf15)
- Add demo-flow extension (#25246)
- [OVH] display domain dns records cache properly (#25230)
- Update CODEOWNERs (a12116e5)
- [NSIS Reference] Upgrade ESLint to v9 (#25241)
- Update CODEOWNERs (03c88c46)
- Add osquery extension (#24696)
- Update CODEOWNERs (4da1542c)
- Add virtual-desktop-manager extension (#24897)
- Update letterboxd extension (#25224)
- Update audio-device extension (#25222)
- Update CODEOWNERs (47d2c2b3)
- Add Vim Leader Key extension (#24407)
- Update CODEOWNERs (0fe54c70)
- Add tikz extension (#24361)
- Update CODEOWNERs (40ac861d)
- Add xiaohe-query extension (#24789)
- Update apple reminders extension (#25202)
- [Chatwoot] canned_responses & teams (#25213)
- [GitHub Copilot] Fix titles and URLs for tasks without a pull request in "View Tasks" command (#25209)
- Docs: update for the new API release
- [GitHub Copilot] Allow adding additional instructions when assigning an issue to Copilot (#25192)
- [Kagi Search] delete history when api disabled (#25199)
- Update git extension (#25191)
- Switch to GitHub Copilot tasks API for loading and creating tasks (#25167)
- Misc: Update some dependencies (#25190)
- Update CODEOWNERs (668e9109)
- Update audio-device extension (#24502)
- Update CODEOWNERs (1defd208)
- feat(ios-resolutions): Add MacBooks as Devices Type (#25004)
- Update CODEOWNERs (ef0d5dc3)
- Add favoro extension (#25133)
- Update aave-search extension (#25181)
- Update CODEOWNERs (82bb7f64)
- Update cloudflare-email-routing extension (#24857)
- Minor updates to youtube summarizer (#25175)
- Update CODEOWNERs (9fbadbdf)
- Add jules-agents extension (#23850)
- Update CODEOWNERs (94718496)
- Add Wispr Flow Dictionary extension (#24644)
- Update microsoft-onedrive extension (#25173)
- Update `MXroute` extension - show domain verification key in "add domain" + catchall ux improvements (#25179)
- Update CODEOWNERs (7b0e4096)
- Add desktop-manager extension (#24899)
- Update CODEOWNERs (afb6a3f4)
- Add Dutch Article (Het of De) extension (#25136)
- Update CODEOWNERs (6d32581c)
- Update gif-search extension (#25123)
- Update CODEOWNERs (0771f77b)
- Update domainr extension (#23984)
- Update CODEOWNERs (d3a5f84a)
- Update search-npm extension (#25163)
- Update CODEOWNERs (c1271b54)
- Add wiz-controller extension (#25134)
- Update myanimelist-search extension (#24818)
- Update CODEOWNERs (f37c7e5e)
- Add sap-logon extension (#23761)
- Update CODEOWNERs (f358016e)
- Add models-dev extension (#24982)
- Update CODEOWNERs (9a722fc8)
- Add port extension (#24976)
- [OPENVPN] fix: reported issues (#25125)
- [JIRA] Fix issue link after ticket creation (#25161)
- Update CODEOWNERs (28232b88)
- Add standing-desk-tracker extension (#24216)
- Update CODEOWNERs (32259fec)
- Add gcp-ip-search extension (#24889)
- Update CODEOWNERs (aefeafd1)
- Add Withings Sync extension (#24641)
- Update CODEOWNERs (e26d83c2)
- Add rdir extension (#25137)
- Update CODEOWNERs (c626bfd4)
- Add files-shelf extension (#25151)
- Update CODEOWNERs (7432d0dd)
- Add Raycast Store Updates extension (#24891)
- Update CODEOWNERs (5180c852)
- Update laravel-docs extension (#25148)
- Update CODEOWNERs (c4b9602b)
- Add pdsls extension (#24605)
- feat(browsers-profiles): add Arc browser support (#25153)
- Update CODEOWNERs (0e480ca9)
- Add Reader Mode extension 📖 (#24369)
- Update CODEOWNERs (90d5f655)
- Add Manus Manager extension (#24037)
- Update CODEOWNERs (0b61f386)
- Add openhue extension (#24527)
- Update CODEOWNERs (62354d8c)
- Add binance-exchange extension (#25135)
- Update kill-process extension (#25147)
- Update fancy text extension (#25146)
- Update typefully extension (#25139)
- Update CODEOWNERs (5994b4b6)
- feat: Add Minttr extension (#25093)
- Update audio-device extension (#25143)
- Update vietnamese-calendar extension (#25138)
- Update microsoft-onedrive extension (#25142)
- Update CODEOWNERs (d341fa53)
- Add fake-typing-effect extension (#24323)
- Update remove-paywall extension (#25141)
- Update CODEOWNERs (6589e4e3)
- Add zacks-stock-ranking extension (#24455)
- Update CODEOWNERs (79b2c789)
- Update time-tracking extension (#25084)
- Update CODEOWNERs (7fc36db8)
- Add claude-code-config-switcher extension (#24880)
- Update CODEOWNERs (09be5d91)
- Add floaty extension (#25038)
- Update CODEOWNERs (f07b7d6c)
- Update Typefully extension (official rewrite) (#25102)
- lunatask: Add Windows support (#25096)
- Auto-populate tag when creating in filtered view (#24930) (#24935)
- Update CODEOWNERs (e4520680)
- Add telegram extension (#24322)
- Update CODEOWNERs (d45f54ac)
- Add fifteen-million-merits extension (#24170)
- Update instagram media downloader extension (#25126)
- Update CODEOWNERs (465911e2)
- Add stealth-ai-tool extension (#23837)
- [Say] Polish AI Extension configurations (#25127)
- Update CODEOWNERs (4b24f39a)
- Add quick-toshl extension (#24002)
- Update tasklink extension (#25119)
- Adds open workflow run option to the copilot view tasks command  (#25115)
- Update CODEOWNERs (124624a0)
- Add respace extension (#23570)
- Update CODEOWNERs (216cd112)
- Update `FileZilla` extension - add README to mention FileZilla needs to be in "Applications" (#25118)
- Update CODEOWNERs (65a3ee21)
- Add fitdesk extension (#24448)
- Update swift-command extension (#25110)
- Update CODEOWNERs (89bc46a2)
- Update haystack extension (#25108)
- Adds new command to github-copilot extension (#25064)
- [Virtualizor Enduser] fix distro icon (one liner) (#25103)
- Update CODEOWNERs (f04d5b66)
- Add shodan extension (#24306)
- Updating Oura extention to use OAuth2 of the updated v2 API\'s (#24544)
- Granola: Update visual identity to match new brand (v2.1.2) (#25087)
- Add Razuna entry to builtin registries (2nd) (#25094)
- Update CODEOWNERs (3a89032f)
- Update: system monitor user customizability (#24856)
- [Espanso] Improvements (#25078)
- Docs: update for the new API release
- Update CODEOWNERs (0c685fe4)
- Update audio-device extension (#24452)
- Update obsidian extension (#24312)
- Update CODEOWNERs (3a3191e3)
- Feature/dia-bookmarks-open-all-in-folder (#25034)
- ccusage: fix monthly cost projection (#25069)
- Update raycast-ollama extension (#25074)
- Update CODEOWNERs (17d76bce)
- Update `Yopass` extension - fix not working due to openpgp version (#25073)
- Update Logitech Litra extension (#25072)
- Update CODEOWNERs (ba37eb86)
- Add time-awareness extension (#24107)
- Update CODEOWNERs (70bea990)
- [Prisma Docs AI] Add Windows Support (#25029)
- Update CODEOWNERs (f716dfda)
- Update github-copilot extension (#25063)
- Update CODEOWNERs (770ec04c)
- arc: fix for opening Search Tabs or Search Spaces (#24948)
- fix(ente-auth): don\'t delete export file before re-exporting (#25032)
- Update moneybird extension: paginating contacts/lists (#24390) and repeat time entry (#23438) (#25035)
- Update CODEOWNERs (2b519e61)
- [Kagi Search] delete history + shortcuts (#25044)
- Update homeassistant extension (#25021)
- [Claude] Fix memory leak in streaming responses (#25059)
- Update react-native-directory extension (#25048)
- Fix github copilot usage command auth (#24760)
- Update yandex-smart-home extension (#25053)
- Update torbox extension (#25056)
- Update `Creem` extension - List Customers (#25055)
- [Brand Icons] Add support for changing copy action to paste (#25027)
- [United Nations] Resolves CVE-2026-25128 (#25028)
- Update CODEOWNERs (ebb2ec8e)
- Add yandex-smart-home extension (#25002)
- feat: add additional "open with" action to raycast-zoxide (#25011)
- Update CODEOWNERs (0252e418)
- Update `Text Decorator` extension - dark mode grid color (#25019)
- Update microsoft-onedrive extension (#25020)
- Update CODEOWNERs (529d5814)
- Add antisocials extension (#25006)
- Fix menubar when printer not printing (#25013)
- Update CODEOWNERs (a1c5bff0)
- Add qmd extension (#24888)
- Update CODEOWNERs (f7cd6aba)
- Add menu bar progress to Prusa extension (#25007)
- Update music-assistant-controls extension (#25009)
- ccusage: support tilde expansion in custom npx path (#24095)
- Granola: Add AI Tools Shared Documents Support (v2.1.1) (#25010)
- Granola: Add Shared Documents Support (v2.1.0) (#25008)
- Update upcoming-holidays extension (#24994)
- Fix Parcel carrier dropdown default selection (#24991)
- Feat: add new commands for Ext/u301 URL Shortener (#24959)
- Update CODEOWNERs (b8584fde)
- Update typst-symbols extension (#24727)
- Update CODEOWNERs (600b1f04)
- Add cursor-costs extension (#23468)
- Update CODEOWNERs (e33e20c2)
- Add gitcdn extension (#23988)
- Update vercast extension (#24953)
- Update CODEOWNERs (0e5214e0)
- Update `Google Fonts` extension - cross-platform keyboard shortcuts (#24968)
- Update CODEOWNERs (50eb676a)
- Add `NicNames` extension (#24984)
- [Wave] last sent, last viewed - in invoice (#24962)
- Update CODEOWNERs (2863ff3c)
- Update summarize-youtube-video-with-ai extension (#24952)
- Update CODEOWNERs (22d92306)
- feat(parcel): Add Windows Platform Support (#24978)
- Update CODEOWNERs (aa9d09fc)
- Add make-dot-com extension (#23927)
- Update CODEOWNERs (16394062)
- Add iching-divination extension (#24114)
- fix: transcript for YouTube URLs with query params and nested caption XML (#24943)
- Update CODEOWNERs (6ff3cfc7)
- Add botpress extension (#24849)
- Update CODEOWNERs (be06df01)
- Add singularityapp extension (#24832)
- Update CODEOWNERs (404ea76a)
- Update pagerduty extension (#24797)
- fix(json-format): improve performance for large JSON rendering (#24894)
- Update CODEOWNERs (fb689e0b)
- Update google-calendar extension (#24918)
- Update CODEOWNERs (42b3d05d)
- Update apple-reminders extension (#24919)
- Update CODEOWNERs (4584caa1)
-  Avoid overlapping invocations in raytaskwarrior (#24924)
- Update CODEOWNERs (ffff47b2)
- Update cursor agents extension (#23948)
- Video Downloader: Add MP3 format and fix loading issues (#23777)
- Update torbox extension (#24925)
- Update `OVHcloud` extension - Update Domain & DNS Service Information (renewal) (#24923)
- Update meme-generator extension (#24931)
- Update arc-helper extension (#24926)
- Update CODEOWNERs (785e355c)
- Update word-count extension (#24938)
- Fix TypeScript errors in SpinupWP extension (#24940)
- Update CODEOWNERs (0245ed09)
- Update yafw extension (#24908)
- UK layout fix (#24927)
- Update hijri-converter extension (#24921)
- Fork-Repositories: Add Windows support (#24910)
- Enable Windows support for Aegis by upgrading Raycast API (#24914)
- Update CODEOWNERs (582ddbbf)
- Update ccusage extension (#24080)
- Hopefully fix memory leak caused by zombie processes (#24895)
- Update CODEOWNERs (dc73c794)
- feat(mute-microphone): add native Windows support via PowerShell (#24640)
- Update CODEOWNERs (ac538959)
- Add youtube-highlights extension (#23756)
- Brew: Add optional split-view metadata panel for search results (#24901)
- Update CODEOWNERs (605195ef)
- [Word Count] Add Raycast Cross-Extension badge to readme (#24904)
- fix: fetching transcripts to summarize (#24902)
- Update T3 Chat extension - Models, preferences (#24905)
- Update CODEOWNERs (0bb666b4)
- Update better-uptime extension (#24903)
- Update CODEOWNERs (305be042)
- Add series-rating-graphs extension (#23901)
- Update CODEOWNERs (4ab1e089)
- [feat] add npm-claimer extension (#24754)
- Update CODEOWNERs (61c3abca)
- Add TorBox extension (#24121)
- Update CODEOWNERs (fd436796)
- Add hijri-converter extension (#23653)
- Update expectations message for initial review timeline (#24893)
- Update CODEOWNERs (551660c0)
- Update nixpkgs-search extension (#24864)
- Update CODEOWNERs (860b4b66)
- Add digger extension 🪏 (#24690)
- Update claudecast extension (#24887)
- Update CODEOWNERs (e1645ed0)
- Add spinupwp extension (#24804)
- Update CODEOWNERs (05b1b159)
- Update linkwarden extension (#24854)
- Update linkding extension (#24863)
- Update Zshrc Manager Extension (#24830)
- Update `MXroute` extension - add email from emptyview + view dns (#24876)
- Update CODEOWNERs (91439acb)
- Add basalt-wallpapers extension (#24805)
- Fork Repositories: Add support for reading `repositories.toml`, falling back to the old `repositories.json`. (#24878)
- mollie-for-raycast: Fix TypeScript type errors (#24845)
- Update CODEOWNERs (94971ce6)
- Add Supabase Cron Monitor extension (#24072)
- Fix/typeerror non array filter (#24869)
- Update CODEOWNERs (eb71c068)
- Add custom-icon extension (#24829)
- Update google search extension (#24862)
- Update CODEOWNERs (ee79688d)
- Add prompts-chat extension (#24275)
- Update CODEOWNERs (3f76e33c)
- Add remix-icon extension (#24634)
- Update CODEOWNERs (29bf496e)
- Add 42-api extension (#24784)
- Update CODEOWNERs (aace337f)
- Add Pin.app extension (#24827)
- Update youversion-suggest extension (#24833)
- Update CODEOWNERs (0fa80f77)
- Update remove-paywall extension (#24834)
- Update CODEOWNERs (a15956e9)
- Add ets2-ats-profiles extension (#24730)
- Update CODEOWNERs (27afe631)
- Add fumadocs extension (#24836)
- Update `Umami` extension - fix wrong web stats in cloud v3 (#24841)
- Update CODEOWNERs (ae0068a4)
- Add mollie-for-raycast extension (#22897)
- Update CODEOWNERs (40e16ba9)
- Add Next Lens extension (#24194)
- Update `Umami` extension - view websites (menu bar) (#24828)
- Update CODEOWNERs (ddd577b5)
- Add manus extension (#24166)
- Update CODEOWNERs (b9fa5786)
- feat: Add Pagination Support to My Starred Repositories (#24604)
- Update `Postiz` extension - in Create: add x provider settings, select date (#24822)
- Update CODEOWNERs (d35475de)
- feat: BPM copied to clipboard w/ confirmation toast (#24594)
- Update CODEOWNERs (837906c4)
- Update typer extension (#24826)
- Update CODEOWNERs (c3b05fc8)
- New Extension: LocalSend (#23594)
- Update hammerspoon extension (#24810)
- Update CODEOWNERs (c5f8ec32)
- Update get favicon extension (#24812)
- Update quick-jump extension (#24808)
- Update CODEOWNERs (7e3c9aaf)
- [Cloudflare] Add View Workers command (#24815)
- Update CODEOWNERs (fb1bc0a3)
- Add Query.Domains extension (#24606)
- Update CODEOWNERs (2977b6c6)
- Add claudecast extension (#24692)
- Update CODEOWNERs (c19e0729)
- Add font-converter extension (#23226)
- Update `Plane` extension - show icon state color in project work items (#24803)
- Update CODEOWNERs (d824c70a)
- Add proton-mail extension (#24734)
- Update CODEOWNERs (7a8be8a1)
- Add ios-resolution extension (#24799)
- Misc: Fix some security vulnerabilities (#24802)
- Update CODEOWNERs (2c9d5b95)
- Spotify Player: Add AI Playlist Tuning (#24768)
- Update `Porkbun` extension - mention \'opt in all domains\' settings (#24798)
- Update CODEOWNERs (93636167)
- Add rclone-raycast extension (#23486)
- Update CODEOWNERs (576c7396)
- Add 40 Questions Extension (#23921)
- Docs: update for the new API release
- Update bilibili extension (#24742)
- Feature/tags and subtasks (#24346)
- Update google-chrome-profiles extension (#24147)
- Update CODEOWNERs (9d925cb3)
- Update sql-format extension (#24600)
- Update CODEOWNERs (f968ce21)
- Add pomo extension (#24138)
- Update CODEOWNERs (5a979067)
- Update how long to beat extension (#24763)
- Update CODEOWNERs (2b1c9fdf)
- Add bklit-analytics extension (#23936)
- issue-24775: BambooHR: Copy Email command, Windows Support, API deps update (#24779)
- Update CODEOWNERs (223fb837)
- Add LaunchContext support to Aerospace extension (#24232)
- Update CODEOWNERs (fd2fc46e)
- Add sharex extension (#24074)
- Update CODEOWNERs (b118b114)
- Update `Simple Dictionary` extension - set default language in Preferences (#24764)
- Update CODEOWNERs (13db8d55)
- Update `Font Sniper` extension + modernize + Windows compatible shortcut for "Select All" / "Deselect All" (#24769)
- Update `Wave` extension - In **Invoices**, Show Customer Name, Invoice Date, Invoice Due Date and Amount Due (#24752)
- disk-usage: handle deleted files (#24397)
- Update git extension (#24667)
- Update zed-recent-projects extension - refactor and cleanup, add support for multi-folder workspaces (#24595)
- Update CODEOWNERs (a308a21a)
- Add table-converter extension (#24302)
- Update CODEOWNERs (c64e6feb)
- [can-i-use] windows support (#24753)
- Update django-docs extension (#24737)
- Added deploy key auth (#24672)
- Update parse extension (#24678)
- Update `Attio` extension - edit task (#24745)
- Update CODEOWNERs (12283fcf)
- Add go-links extension (#24043)
- Update CODEOWNERs (f0686292)
- Add simple-login extension (#24712)
- Docs: update for the new API release
- [Render] Configurable Default Action preference (#24555)
- Update CODEOWNERs (72e4ef8c)
- Add flux extension (#24550)
- Update mermaid-to-image extension (#24740)
- [Parse] Add Windows Support and fix infinite loop problem (#24611)
- feat(slack): Support multi-word search in Open Channel and Send Message (#24639)
- Update CODEOWNERs (139f3cf9)
- Update vercast extension (#24719)
- Improve code quality and fix bugs (#24681)
- markmarks extension: add support for Dia browser (#24684)
- Update CODEOWNERs (fce6d226)
- Update `Ntfy` extension - optional access token in Preferences for protected topics (#24729)
- Update vietnamese-calendar extension (#24724)
- Update vercast extension (#24718)
- Update CODEOWNERs (9e18bdc5)
- Add mnemosyne extension (#23592)
- Update CODEOWNERs (2e04626a)
- Move self to past contributor (#24717)
- Update proton-authenticator extension (#24688)
- Update `Bluesky` extension - modernize + fix menu bar icon (#24694)
- feat: add site-documentation auto labelling (#24700)
- Update CODEOWNERs (794e552c)
- Update linkinize extension (#24662)
- Comment out PR assignment logic (#24698)
- Update CODEOWNERs (02bb8b00)
- Add mac-mouse-fix extension (#23654)
- Update CODEOWNERs (ff1a1bce)
- Update lark extension (#23994)
- Update CODEOWNERs (18fd7871)
- Add hugeicons-ui extension (#23904)
- Fix invalid date error in transaction create form (#24686)
- Update CODEOWNERs (802beb40)
- Update word-count to support counting text in screenshots (#22892)
- Update CODEOWNERs (8721c756)
- Update ScreenOCR extension with cross-extension conventions (#24248)
- [RedNote] Fix broken sign strategy (#24674)
- Update `Postiz` extension - char counter in new post (#24682)
- Update `Umami` extension - view admin users (#24683)
- [Forked Extensions] Add support for managing sparse-checkout dirs (#24677)
- Update harvest extension (#24680)
- Update microsoft-onedrive extension (#24666)
- Update CODEOWNERs (b08ca725)
- [Selfh.st Icons] Add Windows Support (#24617)
- Update CODEOWNERs (a5a5fcf4)
- Add stashit extension (#23688)
- Update CODEOWNERs (342fa991)
- Update font-sniper extension (#24663)
- Update CODEOWNERs (f952934b)
- Add tv-remote extension (#23825)
- Update CODEOWNERs (2d839bdd)
- Update `Cron Description` extension - set cron timezone + modernize (#24659)
- Update CODEOWNERs (b31ea7fd)
- Add raycast-weekly-newsletter extension (#23827)
- Update CODEOWNERs (ffc69f49)
- Add bnf-search-tool extension (#23593)
- Update PDF Tools extension to support third-party file managers (#23623)
- Update CODEOWNERs (67622946)
- Add Gemini 3 to raycast-gemini extension (#24632)
- Update microsoft-onedrive extension (#24658)
- Update CODEOWNERs (394020ec)
- Add `DreamHost` extension - Manage DNS Records (#24616)
- Update mail extension (#24647)
- Update llm-stats extension (#24629)
- [Postiz] state filter + jump to today (#24630)
- Update CODEOWNERs (1bedb7ad)
- Add kagi to zen (#24598)
- Update try extension (#24653)
- Update CODEOWNERs (7c235e75)
- Add winutils extension (#23267)
- Update CODEOWNERs (6d28baff)
- Update change-case extension (#23363)
- Update CODEOWNERs (83d5e3ea)
- New Extension: Add ThermoConvert (#24202)
- Update CODEOWNERs (4602f28b)
- Add biome extension (#23400)
- Update CODEOWNERs (6b7abc2f)
- Add fix-helper extension (#23217)
- Update `Neon` extension - Create PSQL 18 + New Logo (#24631)
- Update microsoft-onedrive extension (#24635)
- Update CODEOWNERs (be1ffe55)
- Update git-repos extension (#24624)
- Update CODEOWNERs (3edca421)
- Update `System Monitor` extension - toggle display mode (free vs. used) + add README (#24622)
- Update CODEOWNERs (8a59d27f)
- Add tabby extension (#23627)
- Update minio-manager extension (#23488)
- Update git extension (#24314)
- Update mermaid-to-image extension (#24549)
- Fix ScreenOCR caching issues (#24589)
- Update CODEOWNERs (67555f26)
- [Selfh.st Icons] fix icons not loading (#24569)
- Update plane extension (#24521)
- Update llm-stats extension (#24536)
- Update `Postiz` extension - year display + search content (#24576)
- Update CODEOWNERs (ea26effe)
- Add parse extension (#24551)
- Update CODEOWNERs (cf255679)
- Add linkinize extension (#24348)
- Clockify Menu Bar (#24554)
- Update kimai extension (#24541)
- Update diskutil-mac extension (#24553)
- Update CODEOWNERs (25cc0d5b)
- [Codeforces] Update types, api, and add problem filtering (#23868)
- Fix browsers-profiles crash when reading Chromium profiles (#24556)
- Update font-sniper extension (#24547)
- Update zeabur extension (#24548)
- Update CODEOWNERs (5d617ab8)
- Add apis-guru-search extension (#23264)
- Update CODEOWNERs (0d067c0b)
- Add gles-to-malioc extension (#23317)
- Update anonaddy extension (#24442)
- Update CODEOWNERs (71605f6b)
- Add django-docs extension (#24531)
- [Render] Add Deploy Status Badges (#24529)
- Update CODEOWNERs (16ecb60b)
- Update tuya-smart extension (#24376)
- Update CODEOWNERs (2356c8cb)
- Adding Convex tools extension (#24263)
- Update anna-s-archive extension (#24525)
- Update CODEOWNERs (c853f124)
- Add try extension (#23331)
- Update CODEOWNERs (d062f885)
- Add SVG Studio extension (#23182)
- Update CODEOWNERs (9971957a)
- Add bikeshare-station-status extension (#23236)
- Update CODEOWNERs (dd0c9874)
- Update python extension (#24069)
- Update CODEOWNERs (d3c6ffce)
- [Microsoft Office] Add Microsoft Office extension (#23681)
- Update CODEOWNERs (f1d971a3)
- Add vietnamese-calendar extension (#24058)
- Update CODEOWNERs (11d5fe2e)
- Add windows-to-linux-path extension (#24048)
- Update stale.yml (#24517)
- Add \'only-issue-labels\' option to stale.yml (#24516)
- Add ascending option to stale.yml workflow (#24515)
- Update stale.yml (#24513)
- Update CODEOWNERs (a7128e92)
- Add better-aliases extension (#24146)
- Remove \'AI Extension\' from exempt PR labels (#24512)
- Update quick-jump extension (#24309)
- Update CODEOWNERs (9f654226)
- [Guitar Tools] Add audio device selection for external audio interfaces (#24280)
- Update microsoft-onedrive extension (#24511)
- Update CODEOWNERs (73105d64)
- Add font-sniper extension (#24395)
- Update CODEOWNERs (d00c3cf1)
- Add llm-stats extension (#24445)
- feat: reverse from/to action @ ns-nl-search ext (#24492)
- Update CODEOWNERs (b1ed1f79)
- Update modrinth extension (#24079)
- Update CODEOWNERs (3039c994)
- Add pitchcast extension (#24501)
- Update zed-recent-projects extension (#23839)
- window-walker fix: error request timeout after 5000ms (#24497)
- Update CODEOWNERs (1db522af)
- Update window-walker extension (#24500)
- Update  Memorable Password Generator extension (#24482)
- Update CODEOWNERs (044d0fa1)
- Add Open, Copy and Download actions to Immich Assets view (#24486)
- fix(spotify-player): handle disabled menu bar command error (#24476)
- Update CODEOWNERs (7c3be347)
- Add rainaissance extension (#24161)
- [Render] Add service pinning feature (#24477)
- screenshot: fix All In One command on macOS Tahoe (#24404)
- Update CODEOWNERs (c4b13325)
- Update battery-menubar extension (#22447)
- Update CODEOWNERs (f3e03990)
- Add app-tag-manager extension (#21637)
- Replace {PR_MERGE_DATE} placeholders with actual commit dates (#24468)
- Update CODEOWNERs (8b2f9b42)
- Update bmrks extension (#19691)
- Update CODEOWNERs (3d231604)
- Add Confluence extension whiteboard search  (#24049)
- Update CODEOWNERs (2e97644a)
- Update clockify extension (#23992)
- Update CODEOWNERs (3fa54121)
- Add monocle extension (#24456)
- Update CODEOWNERs (f8ad2a17)
- Update ping extension (#24460)
- Bug/Quality-of-Life Update to Windows Terminal extension (#24285)
- Update description in package.json (#24458)
- Update CODEOWNERs (d137db9b)
- Add microsoft-onedrive extension (#24438)
- Update CODEOWNERs (1c988ffb)
- feat: Windows Support, update deps (#24459)
- Fix crash when attachedUrls is undefined (#24453)
- Add cloud shell copy connection action (#24405)
- Update harvest extension (#24451)
- Update filemaker-snippets extension (#24402)
- feat(parcel): improve internationalization, date parsing, and carrier name display (#24235)
- Update CODEOWNERs (392d05f3)
- Update apple-reminders extension (#24420)
- Update CODEOWNERs (0552cb1c)
- Add customer-io extension (#23475)
- Update CODEOWNERs (16b24147)
- feat(browsers-profiles): filter the browser profiles (#21758)
- Update CODEOWNERs (789dc1df)
- Update antigravity extension (#24175)
- Update CODEOWNERs (8d5f60f6)
- Remove myself as a contributor for extensions (#24428)
- Update CODEOWNERs (63c8ec1c)
- Update openrouter-models-finder extension (#24387)
- Fix some security vunerabilities (#24336)
- Update tasklink extension (#24406)
- Update kill-process extension (#24393)
- Update CODEOWNERs (a7a9ad13)
- Update markdown reference extension (#24422)
- [Next.js Docs] update tree sha (#24421)
- Update CODEOWNERs (7fb2cea2)
- Update random extension (#24415)
- Update CODEOWNERs (f6101c33)
- Update convert extension (#24411)
- things: optimize JXA performance with `properties()` batching (#24286)
- Update `TerminalFinder` extension - better error message when no Finder windows or accessing non-filesystem folder (#24400)
- [kill-process] Add NoLogo and NoProfile to PowerShell commands (#24341)
- Update CODEOWNERs (194e86e9)
- Safari: Improve Search Tabs performance with Swift ScriptingBridge (#23580)
- Update CODEOWNERs (2616e535)
- Remove self from contributors (#24198)
- Update CODEOWNERs (cddcf74c)
- Add chinese-character-converter extension (#24164)
- Raycast Wallpaper: Port to Windows (#23407)
- Add IP address scanning support to VirusTotal extension (#24359)
- Update Anytype MCP server (#24366)
- Update CODEOWNERs (96827d07)
- Update smart reply extension (#24367)
- Update uploadthing (#24342)
- Update CODEOWNERs (7f4412f2)
- Update dokploy extension (#23639)
- Update lokalise extension (#24337)
- Update `Terminal Finder` extension - fix kitty casing (#24382)
- Update CODEOWNERs (e2211d59)
- Add `MXroute` extension - Email hosting for your domains (#24353)
- Update cleanshotx extension (#24340)
- Update CODEOWNERs (7f78c747)
- Update `Phosphor Icons` extension - Add Windows Support (#24343)
- Update CODEOWNERs (56c74b5b)
- [Remote Desktop] Add remote desktop extension (#23608)
- Update CODEOWNERs (7603912a)
- Update single-disk-eject extension (#23423)
- Update CODEOWNERs (96960948)
- feat: add \'close window on trigger\' preference (#24075)
- Update capacities extension (#24328)
- Reduce operations per run in stale.yml (#24331)
- Update CODEOWNERs (14aee723)
- Add hevy extension (#23304)
- Update CODEOWNERs (a14400e7)
- Update music-link-converter extension (#23287)
- Update prism-launcher (#24316)
- Update CODEOWNERs (388870e6)
- [Home Assistant] History of sensor data when viewing attributes (#23713)
- Update CODEOWNERs (cbad0a18)
- Hide github-copilot extension menu when there are no assigned tasks (#23823)
- Update CODEOWNERs (3be90b2f)
- Add random-date-generator extension (#23419)
- Update apple-reminders extension (#23767)
- Update manage-clickup-tasks extension (#23730)
- Update CODEOWNERs (d264b71b)
- Add Lemniscate | System Monitor extension (#22122)
- Update CODEOWNERs (59fb938a)
- Add powertoys-tool-runner extension (#23420)
- Update lokalise extension (#24311)
- Update CODEOWNERs (0d78a802)
- Add area-code-lookup extension (#24293)
- Change install button to image link format (#24133)
- Update CODEOWNERs (93216377)
- [Visual Studio Code] Fix Windows side Issues (#23644)
- Update CODEOWNERs (dcf42876)
- Unsure calc extension (#23877)
- Update easyvariable extension (#24284)
- Update CODEOWNERs (f2667b3d)
- Add hotel-manager extension (#23322)
- Add Windows to supported platforms in package.json (#24301)
- Enable sparse checkout for API docs (#24294)
- Update CODEOWNERs (be6bbf3e)
- Add markmarks extension (#24288)
- Enable sparse checkout for API docs (#24224)
- Update CODEOWNERs (0ef33a90)
- Update google-workspace extension (#23838)
- Update CODEOWNERs (2de58f17)
- Add lokalise extension (#24254)
- Add Circleback MCP server (#24050)
- Update qoder extension (#24260)
- Update csfd extension (#24264)
- Update CODEOWNERs (e2e4adf4)
- Add LIFX Controller Extension (#24117)
- Update freeagent extension (#24255)
- Update 0x0 extension (#24225)
- [Update] [Things] Improve Query String Creation (#24271)
- Update math-functions extension (#24267)
- Update CODEOWNERs (18c50b8d)
- [Toothpick] handle error in manage + shortcuts (#24007)
- Update CODEOWNERs (6694fc42)
- Update `Music` extension - add menu bar command inspired by `Spotify` extension (#24053)
- Update CODEOWNERs (87f211de)
- Update `Password Generator` extension - remember character, numbers in "Generate Random Password" (#24212)
- Update `Wave` extension - create draft invoice + show discounts in invoice (#24269)
- Update CODEOWNERs (575ed2fd)
- Update luma extension (#24283)
- Add no as a service (#24268)
- Update CODEOWNERs (bd2601be)
- Add leader-key extension (#24244)
- Update CODEOWNERs (b423fcbf)
- Add math-functions extension (#23259)
- [iTerm] Feature Request: Open Profile (#23527)
- Enhance image optimization in pull request workflow (#24112)
- Update CODEOWNERs (f550393d)
- Add qoder extension (#24010)
- Update CODEOWNERs (50dadb5c)
- Add rust-docs extension (#23891)
- Update CODEOWNERs (da961434)
- Update claude code launcher extension (#24251)
- Update CODEOWNERs (40ab1713)
- Update image-to-ascii extension (#24219)
- Fix/windows applescript fallback (forgot to add the plataform) (#24243)
- fix(raindrop-io): add platform check to skip AppleScript on Windows/Linux (#24172)
- Update CODEOWNERs (6f95a9ac)
- Add Typst Universe extension (#24160)
- Fix: Handle undefined devices array in DeviceList component (#24103)
- Fix the missing logo from the community badge (#23889)
- Update CODEOWNERs (69d11cf3)
- Update spotify-player extension (#23374)
- Add missing commits: Open in Granola deeplink and cleanup deprecated code (#24220)
- Update CODEOWNERs (1da5f1b5)
- [Tapo Smart Devices] Add Windows Support & Migrate Client (#24167)
- [raycastbot] Improve Regex for issue-bot (#23870)
- Update CODEOWNERs (bce8c3c7)
- Update raindrop-io extension (#23306)
- Update CODEOWNERs (54c7afbd)
- Add luma extension (#24208)
- Update CODEOWNERs (8b274da2)
- Update fancy-text extension (#24215)
- Update granola extension v2.0.0 (#24132)
- Update word4you extension (#24184)
- Update paste-to-markdown extension (#24214)
- Update CODEOWNERs (ce08bf70)
- [Sourcetree] modernize + fix invalid path crash (#23987)
- Update CODEOWNERs (e63733a2)
- [Linear] upd8 shortcuts + upd8 readme (#23960)
- Update CODEOWNERs (b112ed56)
- Update `Bitly` extension - list links by group + modernize (#23943)
- Update CODEOWNERs (591045bf)
- [Tailwind CSS] upd8 shortcuts + modernize + add README (#23977)
- Update CODEOWNERs (b71b3a6d)
- [Installed Applications] make shortcuts cross-platform (#23935)
- Update CODEOWNERs (1e602c1f)
- [Google Chrome] fix infinite rendering bug in new tab (#23934)
- Update CODEOWNERs (3ffbc00c)
- Update `Terminal Finder` extension - error handling + Kitty support (#23916)
- Update CODEOWNERs (0fdc4509)
- [Toggl Track] fix toast error in menubar + modernize (#23832)
- HomeBrew: add dependency formula filter (#24116)
- Fix Window Walker Extension (#24200)
- Feat/cloud functions service and ApiErrorView for consistent API error handling across services (#24204)
- Update CODEOWNERs (551247dc)
- Update `Vim Bro` extension - add to favs and filter by favs (#23993)
- Update CODEOWNERs (8bbbe122)
- [cURL] fix valid POST fail + update more keyboard shortcuts (#24089)
- Update CODEOWNERs (1e23157e)
- Update genius-lyrics extension (#22805)
- Fix memory issues: implement streaming file processing (#24197)
- Update CODEOWNERs (c597e0ea)
- Update Zoom extension (#24086)
- Update CODEOWNERs (0536bc93)
- [Dice & Coin] custom dice + windows support (#23895)
- Update vercast extension (#23942)
- Update brave extension (#23990)
- Update google-workspace extension (#24006)
- [Shell] add option to edit executed command (#24017)
- Update tldr extension (#23887)
- Update logos-launcher extension (#24169)
- Fix window-walker pin system persistence and toast messages (#24173)
- Update `Keygen` extension - List Environments and Add new ones + add environment `Preference` (#24174)
- Update CODEOWNERs (149ce069)
- Update browser tabs extension (#24113)
- Update CODEOWNERs (03bcfa7a)
- Update `Regex Tester` extension - Modernize (#24150)
- Update `Supermemory` extension - remove memory + filter by project (#24158)
- Update pulsemcp extension (#23983)
- Update arc-helper extension (#24131)
- Update logos-launcher extension (#24152)
- Disk Usage: optimize disk space heap (#24144)
- [Pokedex] Fix crash on missing localized move names (#24162)
- Update CODEOWNERs (7199e941)
- Update flush-dns extension (#24102)
- Fixed Regression and Cleanup in Delivery Tracker (#24163)
- Update ray-code extension (#24123)
- Update CODEOWNERs (3dc8fdee)
- Add Window Walker Extension (#24119)
- Update CODEOWNERs (d1082d13)
- Update virustotal extension (#23886)
- Update odesli extension (#23884)
- Update CODEOWNERs (6812410f)
- Add `Kutt` extension (#23864)
- Update ray-code extension (#24036)
- feat: support custom pinned locally (#24038)
- [Pokedex] Fixed Move command crashing when Pokémon moves are missing in the learnset (#24054)
- Update `Oracle Cloud` extension - Manage Vaults, Secrets, Versions and Bundle (#24031)
- Update CODEOWNERs (4491754e)
- Update wayback-machine extension (#24009)
- Update rename images with ai extension (#24051)
- feat: add list account emails (#23922)
- Update raycast gemini extension (#23966)
- Update CODEOWNERs (0b15d7e9)
- Update gmail extension (#24060)
- [Language Detector] Routine maintenance (#24066)
- Update nusmods extension (#24085)
- Update CODEOWNERs (baec6456)
- Update bitwarden extension (#23970)
- Update urban-dictionary extension (#24018)
- [Raindrop.io] Add Quick Add Bookmark command (#24019)
- Update CODEOWNERs (aacd55d1)
- [Spotify Player] show error view in queue + keyboard shortcut for add + mark as `premium` (#24021)
- Update CODEOWNERs (b1983965)
- Update git commands extension (#24030)
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf187)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4bc)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f9904)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b94)
- [Iconify] Update error handling (quick fix until permanent solution) (#23353)
- Update CODEOWNERs (5dc3e90d)
- Add annotely extension (#23011)
- Update CODEOWNERs (51611e4e)
- feat: resolve toggling grayscale in macOS Tahoe (#23089)
- Update kill-process extension (#23347)
- Update CODEOWNERs (cc9da45e)
- Update `Ente Auth` extension - sanitize totp url + maintenance (#23337)
- Update CODEOWNERs (4b983700)
- Update monobank extension (#23338)
- Update monobank extension (#23336)
- Update CODEOWNERs (f0836ede)
- Rewrap text (#23167)
- Update odesli extension (#23179)
- Update CODEOWNERs (d162422a)
- Add passbolt extension (#23115)
- Update CODEOWNERs (a2137426)
- Add mail-to-self extension (#22949)
- Update code-quarkus extension (#22844)
- Update CODEOWNERs (728d063c)
- Add azure-tts-raycast-extension extension (#22768)
- Update CODEOWNERs (e1637174)
- Update 1-click-confetti extension (#23231)
- Update CODEOWNERs (952d077b)
- Add `SendPortal` extension - Manage Subscribers + Manage Templates (#23233)
- Update CODEOWNERs (d7747957)
- [Mem0] fix crash on add + modernize (#23235)
- Update CODEOWNERs (e28f31e3)
- [Notion] upd8 shortcuts + pref to use clipboard on create (#23291)
- Update Smart Calendars AI extension with image processing support (#22057)
- Update prompt-builder extension (#22952)
- Update untis extension (#23310)
- Fix brew (#23312)
- Update `Cyberduck` extension - filter by protocol + add README, images + Modernize (#23257)
- Update CODEOWNERs (ff867f66)
- Update `Cloudflare Email Routing` extension - Mention permissions in README + use SDK for listing (easier pagination) (#23258)
- Update untis extension (#23239)
- Update manifest-viewer extension (#23243)
- Docs: update for the new API release
- fix: suggestions fallback to search (#23271)
- Update CODEOWNERs (84d5d3ec)
- Dia/apple script (#23301)
- Update `cPanel` extension - Add Windows Support + Improve Invalid URL check (#23296)
- Update CODEOWNERs (fe22d803)
- Check GitHub Copilot usage (#22612)
- Update ship24-client extension (#23293)
- Update CODEOWNERs (940afc26)
- Update downloads-manager extension (#23210)
- Update prism-launcher (#23186)
- Update CODEOWNERs (c22f4843)
- Brew: Remove node-fetch dependency and use native fetch API (#23227)
- Sourcegraph: Deep Search and OAuth (#23281)
- Update google lens extension (#23283)
- Update CODEOWNERs (778f6ae2)
- Update react-docs extension (#23204)
- Update CODEOWNERs (da910d76)
- Update myanimelist-search (#23218)
- [Apple Reminders] Fix an issue where day grouping option displays duplicate days (#23237)
- Update CODEOWNERs (e8745305)
- Update gitmoji extension (#23178)
- Docs: update for the new API release
- Update CODEOWNERs (8310c9a9)
- Add unify-path-separator extension (#23055)
- Update CODEOWNERs (f583c303)
- Update wled-controller extension (#23015)
- Update CODEOWNERs (b4fc14ae)
- Add `Inbound` extension - Email API for Developers - Domain and Addresses, Send Email, Webhooks, Endpoints (#23176)
- Update openai-translator extension (#23188)
- Update monobank extension (#22929)
- Update CODEOWNERs (221531a6)
- feat(moneytree): add new extension to quickly check finances (#22954)
- Update CODEOWNERs (2006d589)
- add farrago extension (#22535)
- [spotify-player] Better error handling (#23090)
- Update CODEOWNERs (b7a0d7e2)
- Update elevenlabs-tts extension (#22852)
- Update CODEOWNERs (f2746bac)
- [Github] fix(pr): allow selecting default branch as "from" when creating a new PR (#23088)
- Update CODEOWNERs (13abd46a)
- Update browsers-profiles extension (#23079)
- Update CODEOWNERs (2d1edbc6)
- Update dia extension (#23185)
- Update CODEOWNERs (6678e1e1)
- Add json-to-toon-converter extension (#23067)
- Update dust-tt extension (#23035)
- Update kill-process extension (#23043)
- Update CODEOWNERs (3ce613e4)
- Update twenty extension (#23183)
- Update viacep extension (#23169)
- Update CODEOWNERs (cd0ca587)
- Add planwell extension (#23038)
- Update prism-launcher extension (#23…
y0ngha added a commit to y0ngha/extensions that referenced this pull request Feb 22, 2026
- style: apply lint.
- chore: added extension icon image.
- rename: extension name changed(string-manipulation > string-case-converter)
- chore: updated commands.
- docs: readMe Updated.
- feat: compose main extension view
- feat: add utility to handle promise-based toast notifications
- feat: create ListItem component handling actions and results
- feat: add string conversion utility
- chore: initialize extension project.
- CI: add SHORT_SHA to all workflows - fix failure() handling
- CI: add SHORT_SHA to all workflows
- CI: migrate Slack message variables to native GitHub Actions expressions (#25692)
- Update CODEOWNERs (6c270e71)
- chore(remember-the-date): add missing my name as contributor (#25655)
- Update proton-pass-client extension (#25660)
- Update music extension (#25667)
- Update picgo extension (#25665)
- [Pokedex] Add ItemDex and Shiny forms (#25668)
- Update sonarr extension (#25563)
- Update CODEOWNERs (b333c7a3)
- Add voiceink extension (#24581)
- Update: Remember the Date (Add Recurring Events Support) (#25426)
- Fix figma-link-cleaner: Check clipboard before AppleScript (#25607)
- Update dependencies and platforms in package.json for the mullvad extension (#25413)
- Update CODEOWNERs (04d93fbc)
- Add agent-usage extension (#25049)
- Update vercast extension (#25388)
- Update CODEOWNERs (ef4ffcac)
- Add dagster extension (#25312)
- Update CODEOWNERs (09e5b5b8)
- Add opencode-sessions extension (#25357)
- YouTube Music: Refactor command structure and improve error handling (#25370)
- Update CODEOWNERs (cf508576)
- Update wsl-manager extension (#25132)
- Update CODEOWNERs (e60ed163)
- Deep Search Claude Sessions and Path Resolution Edge Cases (#25361)
- Update CODEOWNERs (766d4e75)
- [Helldivers] Polish & maintenance (#25632)
- Git Worktrees: Fix remove worktree infinite loading spinner (#25394)
- Update CODEOWNERs (307abaf4)
- Update google-books extension (#25235)
- Update fathom extension (#25525)
- Update CODEOWNERs (bb01f398)
- Add `Sendy` extension - view brands, view lists, check subscriber status (#25573)
- Update CODEOWNERs (04ca0dcc)
- Update base64 extension (#25625)
- Update proton-pass-client extension (#25611)
- Update awork extension (#25617)
- Update CODEOWNERs (e68a32c1)
- Add chiikawa-character extension (#25428)
- Update git extension (#25342)
- Update notion extension (#25443)
- Update CODEOWNERs (2173848e)
- Music: Add menu bar favorite/unfavorite action with stateful icon and confirmed HUD feedback (#25300)
- Brew: Improve handling of abort signal (#25584)
- Update CODEOWNERs (2995cb6b)
- Add `VirtFusion` extension (#25452)
- Update binge-clock extension (#25564)
- Update digger extension (#25583)
- Update CODEOWNERs (48ae9432)
- System Monitor: Add CPU temperature monitoring (#25577)
- Update CODEOWNERs (c7ddd952)
- Add proton-pass-client extension (#25154)
- Update sharex extension (#25590)
- Update CODEOWNERs (033e4ee4)
- Update ccusage extension (#25507)
- [Speech to Text] Add Ukrainian language option (#25576)
- Update CODEOWNERs (ec8d126b)
- Update gitlab extension (#25569)
- Update CODEOWNERs (b6ae1bb4)
- Add Pronounce the Word Extension [ext/pronounce the word] (#25270)
- Update CODEOWNERs (9be2fbf6)
- Update cloudflare-warp extension (#25567)
- fix(browser-bookmarks): Update bundled sql-wasm.wasm to match sql.js v1.13.0 (#25508)
- Update raycast-store-updates extension (#25512)
- Update CODEOWNERs (4298b500)
- brightness-control: Add Lunar-based brightness control commands (#25315)
- [Bitwarden] Fix invalid generate password options (#25551)
- Update CODEOWNERs (744a71d1)
- Add starling extension (#25254)
- [Skills] Add support for installing/removing skills (#25373)
- [Bitwarden] Fix potential stale session token issue (#25538)
- Update CODEOWNERs (19b73e3a)
- Add db-schema-explorer extension (#25197)
- Update CODEOWNERs (3f88cb76)
- Update browser-bookmarks extension (#25237)
- chore: update dependencies and modernize codebase (#24722)
- Spotify Player: Fix menu bar unloading before API fetch completes (#25349)
- Update vesslo extension (#25524)
- Update CODEOWNERs (0e7cf43b)
- Add Bunq Extension (#24851)
- ISSUE-25515: Noun Project Windows Support (#25519)
- Update audio-device extension (#25520)
- Update scheduler extension (#25494)
- Update easydict extension (#25436)
- [Shell] fix edit command not in recent section (#25470)
- Update CODEOWNERs (8600824a)
- Add dns-lookup extension (#23675)
- Update `Unkey` extension - maintenance release (#25514)
- Update CODEOWNERs (c2384bda)
- Add Get App Icon extension (#25294)
- Update audio-device extension (#25467)
- Update CODEOWNERs (6be30308)
- Add Clear File Metadata command to File Info extension [ext/clear-file-metadata] (#25272)
- Update CODEOWNERs (a781186d)
- Add subnoto extension (#25113)
- [Bitwarden] Handle unlock error, fix windows hash & support steam OTP (#25397)
- Update vesslo extension (#25506)
- Update CODEOWNERs (49512cd9)
- Add supabase extension (#25016)
- Update bnf-search-tool extension (#25392)
- Add star/unstar profiles and YouTube @brand accounts to @profile extension (#25460)
- Update CODEOWNERs (6b2d5783)
- Add code-wiki extension (#25434)
- Update accordance extension (#25310)
- Update CODEOWNERs (c4a1c197)
- Add okta-app-manager extension (#25000)
- Update CODEOWNERs (6aa0cfdf)
- Add upset-dev extension (#24915)
- Update CODEOWNERs (bea114f1)
- Add kaset-control extension (#24885)
- Fix UploaderX URL encoding for filenames with spaces (#25505)
- Update CODEOWNERs (710ab5cc)
- Add transport-nsw extension (#25089)
- Update CODEOWNERs (c9df8437)
- Add send-to-kindle extension (#25196)
- Update CODEOWNERs (f172f07b)
- Add mobile-provisions extension (#25178)
- Update `MXroute` extension - show email account usage (#25498)
- Update CODEOWNERs (9adf9a82)
- Add vietqr-transfer extension (#24602)
- Update CODEOWNERs (003fd7a7)
- Add caltask extension (#25107)
- Update CODEOWNERs (7fbf43bf)
- Add vesslo extension (#25170)
- Update CODEOWNERs (2d2b1bab)
- Add uploaderx extension (#25166)
- Update CODEOWNERs (3f1f9a95)
- Add retrace extension (#25289)
- Update CODEOWNERs (23cc87d9)
- Add flycheck-raycast extension (#25140)
- Update arc-helper extension (#25462)
- Brew: Improve memory usage (#25479)
- Update CODEOWNERs (2735ebd7)
- Update obsidian extension (#25022)
- Update CODEOWNERs (4a198be6)
- Add latex-board extension (#25168)
- [PM2] Routine maintenance (#25476)
- [Raycast Port] Routine Maintenance (#25477)
- Add "My Updates" filter, Refresh, and add CHANGELOG nav (↑/↓) to raycast-store-updates extension (#25480)
- Update raycast-store-updates extension (#25439)
- Update CODEOWNERs (a944fe57)
- Update vercast extension (#25471)
- fix(bed-time-calculator): Add Windows compatibility and contributor (#25465)
- Update anytype extension (#25444)
- Update CODEOWNERs (b74a7b30)
- [Slack] add proxy support for corporate networks (#25412)
- Update CODEOWNERs (0f8e5861)
- Update pocket extension (#25408)
- Update CODEOWNERs (8c220fa9)
- Update phosphor icons extension (#25440)
- Update CODEOWNERs (7d9c2f0d)
- Add Tella extension (#24561)
- MiniMax: Add M2.5 model support (#25427)
- Update CODEOWNERs (dc9e0203)
- feat(bed-time-calculator): Enhanced UI with color-coded sleep quality (#25405)
- Update CODEOWNERs (6bcb661b)
- Add portal-wholesale extension (#24781)
- Fix security vulnerabilities. (#25421)
- Update CODEOWNERs (e8d3af32)
- [Pokedex] Type Mastery (#25379)
- Update manus-manager extension (#25401)
- Update CODEOWNERs (afd3f3ec)
- Add figma-link-cleaner extension (#24675)
- Update CODEOWNERs (1b877989)
- Add betaseries extension (#25377)
- [Badges] Expose color picker ability to Windows (#25406)
- [Color Picker] Dismiss color picker feature (#25407)
- Update CODEOWNERs (fd71929c)
- Update google-meet extension (#24213)
- Update raycast-store-updates extension (#25399)
- Update CODEOWNERs (082e8b2b)
- Update google-calendar extension (#24261)
- Update instagram media downloader extension (#25402)
- Update CODEOWNERs (80842a18)
- Update `WiFi Password Reveal` extension -  add images + mention windows (#25396)
- Update leader-key extension (#25398)
- Update CODEOWNERs (27d18202)
- Add heptabase extension (#24462)
- Update CODEOWNERs (ed69ef34)
- Update simple-dictionary extension (#25186)
- Update CODEOWNERs (33332708)
- Update notion extension (#25244)
- Update CODEOWNERs (af155a48)
- Update browser-bookmarks extension (#25238)
- Update CODEOWNERs (403c3cee)
- Update vietnamese-calendar extension (#25360)
- Update quick-git extension (#25358)
- refactor: updated my esv-bible extension (#25362)
- Update CODEOWNERs (77d91ac3)
- Add migros extension (#24578)
- Update CODEOWNERs (83047136)
- [Statamic Docs] Show `-beta` flag for beta releases & update fallback results  (#25351)
- Update whoop extension to use Api V2 (#23013)
- Update CODEOWNERs (3c76f22a)
- [Color Picker] Add Windows Support (#25303)
- Update CODEOWNERs (1ebb02d8)
- Quick Access Infomaniak (#22431)
- Update CODEOWNERs (d4ccec5b)
- Add `Zenblog` extension (#25347)
- Update CODEOWNERs (0ea30fe8)
- Add napkin extension (#25363)
- Update CODEOWNERs (8cd6fe97)
- Add AzTU LMS extension (#25356)
- [Skills] show SKILL.md instead of repository README.md (#25352)
- [Skills] Fix broken screenshot references in README (#25348)
- Update CODEOWNERs (52a1712c)
- Add Skills Extension (#25018)
- [KeePassXC] Pin entry + copy/paste URL. (#25286)
- Workflows: Update to version v1.18.0 (#25341)
- Docs: update for the new API release
- Update CODEOWNERs (5c0f9c97)
- Add Toggle Pointer Acceleration command to mac-mouse-fix (#25247)
- refactor(github stars): update and refactor (#25278)
- Update qoder extension (#25296)
- Update bitwarden extension (#25326)
- fix(gitfox): deduplicate repositories in menu bar command (#25307)
- Update CODEOWNERs (b33caeb6)
- Add wordpress-manager extension (#24723)
- Update picgo extension (#25314)
- [Creem] update logo, images + better error msg (#25298)
- Update CODEOWNERs (f18f662b)
- Update kill node modules extension (#25327)
- Update kill-process extension (#25309)
- fix/ISSUE-25318: Fixing Todoist (currently broken for everyone i think?) (#25330)
- Update CODEOWNERs (60e8f7fa)
- Update Kill Process Extension (#25215)
- Update unicode-symbols extension (#25302)
- Update audio-device extension (#25290)
- fix(search npm): keywords bug (#25271)
- Update apple-reminders extension (#25242)
- fix(g-cloud): fixes and cleanup v1.0.4 (#25275)
- Update confluence extension (#25284)
- Update textream extension (#25268)
- Update CODEOWNERs (d978e65f)
- Add niuma-logs extension (#24656)
- Minor update to Fathom extension (#25293)
- Update CODEOWNERs (efcfa236)
- Update clipboard-type extension (#25225)
- Update CODEOWNERs (e6bc2915)
- Add SayIntentions extension (#23277)
- Things: Reduce JXA latency for list fetching (#25233)
- Update github-copilot extension (#25251)
- Update CODEOWNERs (ec90607a)
- Update cron-manager extension (#24426)
- Update CODEOWNERs (6a097d39)
- Add picgo extension (#25024)
- Update stealth-ai-tool extension (#25227)
- Update CODEOWNERs (bfe3bcb4)
- Add markdown-docs extension (#24954)
- feat(gitfox): add v4 support, menu bar, favorites, git status and more (#25253)
- Update CODEOWNERs (081224ab)
- Add kimi extension (#25250)
- Update CODEOWNERs (bd274dc5)
- Add minimax-ai extension (#25003)
- feat(tailscale): show more device info (#25262)
- Update CODEOWNERs (7e3e3312)
- Update viscosity extension (#25249)
- fix(change-case): swap case (#25263)
- Update CODEOWNERs (553a6af5)
- Add textream extension (#25257)
- Add windows support and support setting default browser per group or individual URL action types. (#25229)
- Update `Infomaniak` extensions - List Favorites in kDrive (#25252)
- Update github-copilot extension (#25205)
- Update CODEOWNERs (e6f3bf15)
- Add demo-flow extension (#25246)
- [OVH] display domain dns records cache properly (#25230)
- Update CODEOWNERs (a12116e5)
- [NSIS Reference] Upgrade ESLint to v9 (#25241)
- Update CODEOWNERs (03c88c46)
- Add osquery extension (#24696)
- Update CODEOWNERs (4da1542c)
- Add virtual-desktop-manager extension (#24897)
- Update letterboxd extension (#25224)
- Update audio-device extension (#25222)
- Update CODEOWNERs (47d2c2b3)
- Add Vim Leader Key extension (#24407)
- Update CODEOWNERs (0fe54c70)
- Add tikz extension (#24361)
- Update CODEOWNERs (40ac861d)
- Add xiaohe-query extension (#24789)
- Update apple reminders extension (#25202)
- [Chatwoot] canned_responses & teams (#25213)
- [GitHub Copilot] Fix titles and URLs for tasks without a pull request in "View Tasks" command (#25209)
- Docs: update for the new API release
- [GitHub Copilot] Allow adding additional instructions when assigning an issue to Copilot (#25192)
- [Kagi Search] delete history when api disabled (#25199)
- Update git extension (#25191)
- Switch to GitHub Copilot tasks API for loading and creating tasks (#25167)
- Misc: Update some dependencies (#25190)
- Update CODEOWNERs (668e9109)
- Update audio-device extension (#24502)
- Update CODEOWNERs (1defd208)
- feat(ios-resolutions): Add MacBooks as Devices Type (#25004)
- Update CODEOWNERs (ef0d5dc3)
- Add favoro extension (#25133)
- Update aave-search extension (#25181)
- Update CODEOWNERs (82bb7f64)
- Update cloudflare-email-routing extension (#24857)
- Minor updates to youtube summarizer (#25175)
- Update CODEOWNERs (9fbadbdf)
- Add jules-agents extension (#23850)
- Update CODEOWNERs (94718496)
- Add Wispr Flow Dictionary extension (#24644)
- Update microsoft-onedrive extension (#25173)
- Update `MXroute` extension - show domain verification key in "add domain" + catchall ux improvements (#25179)
- Update CODEOWNERs (7b0e4096)
- Add desktop-manager extension (#24899)
- Update CODEOWNERs (afb6a3f4)
- Add Dutch Article (Het of De) extension (#25136)
- Update CODEOWNERs (6d32581c)
- Update gif-search extension (#25123)
- Update CODEOWNERs (0771f77b)
- Update domainr extension (#23984)
- Update CODEOWNERs (d3a5f84a)
- Update search-npm extension (#25163)
- Update CODEOWNERs (c1271b54)
- Add wiz-controller extension (#25134)
- Update myanimelist-search extension (#24818)
- Update CODEOWNERs (f37c7e5e)
- Add sap-logon extension (#23761)
- Update CODEOWNERs (f358016e)
- Add models-dev extension (#24982)
- Update CODEOWNERs (9a722fc8)
- Add port extension (#24976)
- [OPENVPN] fix: reported issues (#25125)
- [JIRA] Fix issue link after ticket creation (#25161)
- Update CODEOWNERs (28232b88)
- Add standing-desk-tracker extension (#24216)
- Update CODEOWNERs (32259fec)
- Add gcp-ip-search extension (#24889)
- Update CODEOWNERs (aefeafd1)
- Add Withings Sync extension (#24641)
- Update CODEOWNERs (e26d83c2)
- Add rdir extension (#25137)
- Update CODEOWNERs (c626bfd4)
- Add files-shelf extension (#25151)
- Update CODEOWNERs (7432d0dd)
- Add Raycast Store Updates extension (#24891)
- Update CODEOWNERs (5180c852)
- Update laravel-docs extension (#25148)
- Update CODEOWNERs (c4b9602b)
- Add pdsls extension (#24605)
- feat(browsers-profiles): add Arc browser support (#25153)
- Update CODEOWNERs (0e480ca9)
- Add Reader Mode extension 📖 (#24369)
- Update CODEOWNERs (90d5f655)
- Add Manus Manager extension (#24037)
- Update CODEOWNERs (0b61f386)
- Add openhue extension (#24527)
- Update CODEOWNERs (62354d8c)
- Add binance-exchange extension (#25135)
- Update kill-process extension (#25147)
- Update fancy text extension (#25146)
- Update typefully extension (#25139)
- Update CODEOWNERs (5994b4b6)
- feat: Add Minttr extension (#25093)
- Update audio-device extension (#25143)
- Update vietnamese-calendar extension (#25138)
- Update microsoft-onedrive extension (#25142)
- Update CODEOWNERs (d341fa53)
- Add fake-typing-effect extension (#24323)
- Update remove-paywall extension (#25141)
- Update CODEOWNERs (6589e4e3)
- Add zacks-stock-ranking extension (#24455)
- Update CODEOWNERs (79b2c789)
- Update time-tracking extension (#25084)
- Update CODEOWNERs (7fc36db8)
- Add claude-code-config-switcher extension (#24880)
- Update CODEOWNERs (09be5d91)
- Add floaty extension (#25038)
- Update CODEOWNERs (f07b7d6c)
- Update Typefully extension (official rewrite) (#25102)
- lunatask: Add Windows support (#25096)
- Auto-populate tag when creating in filtered view (#24930) (#24935)
- Update CODEOWNERs (e4520680)
- Add telegram extension (#24322)
- Update CODEOWNERs (d45f54ac)
- Add fifteen-million-merits extension (#24170)
- Update instagram media downloader extension (#25126)
- Update CODEOWNERs (465911e2)
- Add stealth-ai-tool extension (#23837)
- [Say] Polish AI Extension configurations (#25127)
- Update CODEOWNERs (4b24f39a)
- Add quick-toshl extension (#24002)
- Update tasklink extension (#25119)
- Adds open workflow run option to the copilot view tasks command  (#25115)
- Update CODEOWNERs (124624a0)
- Add respace extension (#23570)
- Update CODEOWNERs (216cd112)
- Update `FileZilla` extension - add README to mention FileZilla needs to be in "Applications" (#25118)
- Update CODEOWNERs (65a3ee21)
- Add fitdesk extension (#24448)
- Update swift-command extension (#25110)
- Update CODEOWNERs (89bc46a2)
- Update haystack extension (#25108)
- Adds new command to github-copilot extension (#25064)
- [Virtualizor Enduser] fix distro icon (one liner) (#25103)
- Update CODEOWNERs (f04d5b66)
- Add shodan extension (#24306)
- Updating Oura extention to use OAuth2 of the updated v2 API\'s (#24544)
- Granola: Update visual identity to match new brand (v2.1.2) (#25087)
- Add Razuna entry to builtin registries (2nd) (#25094)
- Update CODEOWNERs (3a89032f)
- Update: system monitor user customizability (#24856)
- [Espanso] Improvements (#25078)
- Docs: update for the new API release
- Update CODEOWNERs (0c685fe4)
- Update audio-device extension (#24452)
- Update obsidian extension (#24312)
- Update CODEOWNERs (3a3191e3)
- Feature/dia-bookmarks-open-all-in-folder (#25034)
- ccusage: fix monthly cost projection (#25069)
- Update raycast-ollama extension (#25074)
- Update CODEOWNERs (17d76bce)
- Update `Yopass` extension - fix not working due to openpgp version (#25073)
- Update Logitech Litra extension (#25072)
- Update CODEOWNERs (ba37eb86)
- Add time-awareness extension (#24107)
- Update CODEOWNERs (70bea990)
- [Prisma Docs AI] Add Windows Support (#25029)
- Update CODEOWNERs (f716dfda)
- Update github-copilot extension (#25063)
- Update CODEOWNERs (770ec04c)
- arc: fix for opening Search Tabs or Search Spaces (#24948)
- fix(ente-auth): don\'t delete export file before re-exporting (#25032)
- Update moneybird extension: paginating contacts/lists (#24390) and repeat time entry (#23438) (#25035)
- Update CODEOWNERs (2b519e61)
- [Kagi Search] delete history + shortcuts (#25044)
- Update homeassistant extension (#25021)
- [Claude] Fix memory leak in streaming responses (#25059)
- Update react-native-directory extension (#25048)
- Fix github copilot usage command auth (#24760)
- Update yandex-smart-home extension (#25053)
- Update torbox extension (#25056)
- Update `Creem` extension - List Customers (#25055)
- [Brand Icons] Add support for changing copy action to paste (#25027)
- [United Nations] Resolves CVE-2026-25128 (#25028)
- Update CODEOWNERs (ebb2ec8e)
- Add yandex-smart-home extension (#25002)
- feat: add additional "open with" action to raycast-zoxide (#25011)
- Update CODEOWNERs (0252e418)
- Update `Text Decorator` extension - dark mode grid color (#25019)
- Update microsoft-onedrive extension (#25020)
- Update CODEOWNERs (529d5814)
- Add antisocials extension (#25006)
- Fix menubar when printer not printing (#25013)
- Update CODEOWNERs (a1c5bff0)
- Add qmd extension (#24888)
- Update CODEOWNERs (f7cd6aba)
- Add menu bar progress to Prusa extension (#25007)
- Update music-assistant-controls extension (#25009)
- ccusage: support tilde expansion in custom npx path (#24095)
- Granola: Add AI Tools Shared Documents Support (v2.1.1) (#25010)
- Granola: Add Shared Documents Support (v2.1.0) (#25008)
- Update upcoming-holidays extension (#24994)
- Fix Parcel carrier dropdown default selection (#24991)
- Feat: add new commands for Ext/u301 URL Shortener (#24959)
- Update CODEOWNERs (b8584fde)
- Update typst-symbols extension (#24727)
- Update CODEOWNERs (600b1f04)
- Add cursor-costs extension (#23468)
- Update CODEOWNERs (e33e20c2)
- Add gitcdn extension (#23988)
- Update vercast extension (#24953)
- Update CODEOWNERs (0e5214e0)
- Update `Google Fonts` extension - cross-platform keyboard shortcuts (#24968)
- Update CODEOWNERs (50eb676a)
- Add `NicNames` extension (#24984)
- [Wave] last sent, last viewed - in invoice (#24962)
- Update CODEOWNERs (2863ff3c)
- Update summarize-youtube-video-with-ai extension (#24952)
- Update CODEOWNERs (22d92306)
- feat(parcel): Add Windows Platform Support (#24978)
- Update CODEOWNERs (aa9d09fc)
- Add make-dot-com extension (#23927)
- Update CODEOWNERs (16394062)
- Add iching-divination extension (#24114)
- fix: transcript for YouTube URLs with query params and nested caption XML (#24943)
- Update CODEOWNERs (6ff3cfc7)
- Add botpress extension (#24849)
- Update CODEOWNERs (be06df01)
- Add singularityapp extension (#24832)
- Update CODEOWNERs (404ea76a)
- Update pagerduty extension (#24797)
- fix(json-format): improve performance for large JSON rendering (#24894)
- Update CODEOWNERs (fb689e0b)
- Update google-calendar extension (#24918)
- Update CODEOWNERs (42b3d05d)
- Update apple-reminders extension (#24919)
- Update CODEOWNERs (4584caa1)
-  Avoid overlapping invocations in raytaskwarrior (#24924)
- Update CODEOWNERs (ffff47b2)
- Update cursor agents extension (#23948)
- Video Downloader: Add MP3 format and fix loading issues (#23777)
- Update torbox extension (#24925)
- Update `OVHcloud` extension - Update Domain & DNS Service Information (renewal) (#24923)
- Update meme-generator extension (#24931)
- Update arc-helper extension (#24926)
- Update CODEOWNERs (785e355c)
- Update word-count extension (#24938)
- Fix TypeScript errors in SpinupWP extension (#24940)
- Update CODEOWNERs (0245ed09)
- Update yafw extension (#24908)
- UK layout fix (#24927)
- Update hijri-converter extension (#24921)
- Fork-Repositories: Add Windows support (#24910)
- Enable Windows support for Aegis by upgrading Raycast API (#24914)
- Update CODEOWNERs (582ddbbf)
- Update ccusage extension (#24080)
- Hopefully fix memory leak caused by zombie processes (#24895)
- Update CODEOWNERs (dc73c794)
- feat(mute-microphone): add native Windows support via PowerShell (#24640)
- Update CODEOWNERs (ac538959)
- Add youtube-highlights extension (#23756)
- Brew: Add optional split-view metadata panel for search results (#24901)
- Update CODEOWNERs (605195ef)
- [Word Count] Add Raycast Cross-Extension badge to readme (#24904)
- fix: fetching transcripts to summarize (#24902)
- Update T3 Chat extension - Models, preferences (#24905)
- Update CODEOWNERs (0bb666b4)
- Update better-uptime extension (#24903)
- Update CODEOWNERs (305be042)
- Add series-rating-graphs extension (#23901)
- Update CODEOWNERs (4ab1e089)
- [feat] add npm-claimer extension (#24754)
- Update CODEOWNERs (61c3abca)
- Add TorBox extension (#24121)
- Update CODEOWNERs (fd436796)
- Add hijri-converter extension (#23653)
- Update expectations message for initial review timeline (#24893)
- Update CODEOWNERs (551660c0)
- Update nixpkgs-search extension (#24864)
- Update CODEOWNERs (860b4b66)
- Add digger extension 🪏 (#24690)
- Update claudecast extension (#24887)
- Update CODEOWNERs (e1645ed0)
- Add spinupwp extension (#24804)
- Update CODEOWNERs (05b1b159)
- Update linkwarden extension (#24854)
- Update linkding extension (#24863)
- Update Zshrc Manager Extension (#24830)
- Update `MXroute` extension - add email from emptyview + view dns (#24876)
- Update CODEOWNERs (91439acb)
- Add basalt-wallpapers extension (#24805)
- Fork Repositories: Add support for reading `repositories.toml`, falling back to the old `repositories.json`. (#24878)
- mollie-for-raycast: Fix TypeScript type errors (#24845)
- Update CODEOWNERs (94971ce6)
- Add Supabase Cron Monitor extension (#24072)
- Fix/typeerror non array filter (#24869)
- Update CODEOWNERs (eb71c068)
- Add custom-icon extension (#24829)
- Update google search extension (#24862)
- Update CODEOWNERs (ee79688d)
- Add prompts-chat extension (#24275)
- Update CODEOWNERs (3f76e33c)
- Add remix-icon extension (#24634)
- Update CODEOWNERs (29bf496e)
- Add 42-api extension (#24784)
- Update CODEOWNERs (aace337f)
- Add Pin.app extension (#24827)
- Update youversion-suggest extension (#24833)
- Update CODEOWNERs (0fa80f77)
- Update remove-paywall extension (#24834)
- Update CODEOWNERs (a15956e9)
- Add ets2-ats-profiles extension (#24730)
- Update CODEOWNERs (27afe631)
- Add fumadocs extension (#24836)
- Update `Umami` extension - fix wrong web stats in cloud v3 (#24841)
- Update CODEOWNERs (ae0068a4)
- Add mollie-for-raycast extension (#22897)
- Update CODEOWNERs (40e16ba9)
- Add Next Lens extension (#24194)
- Update `Umami` extension - view websites (menu bar) (#24828)
- Update CODEOWNERs (ddd577b5)
- Add manus extension (#24166)
- Update CODEOWNERs (b9fa5786)
- feat: Add Pagination Support to My Starred Repositories (#24604)
- Update `Postiz` extension - in Create: add x provider settings, select date (#24822)
- Update CODEOWNERs (d35475de)
- feat: BPM copied to clipboard w/ confirmation toast (#24594)
- Update CODEOWNERs (837906c4)
- Update typer extension (#24826)
- Update CODEOWNERs (c3b05fc8)
- New Extension: LocalSend (#23594)
- Update hammerspoon extension (#24810)
- Update CODEOWNERs (c5f8ec32)
- Update get favicon extension (#24812)
- Update quick-jump extension (#24808)
- Update CODEOWNERs (7e3c9aaf)
- [Cloudflare] Add View Workers command (#24815)
- Update CODEOWNERs (fb1bc0a3)
- Add Query.Domains extension (#24606)
- Update CODEOWNERs (2977b6c6)
- Add claudecast extension (#24692)
- Update CODEOWNERs (c19e0729)
- Add font-converter extension (#23226)
- Update `Plane` extension - show icon state color in project work items (#24803)
- Update CODEOWNERs (d824c70a)
- Add proton-mail extension (#24734)
- Update CODEOWNERs (7a8be8a1)
- Add ios-resolution extension (#24799)
- Misc: Fix some security vulnerabilities (#24802)
- Update CODEOWNERs (2c9d5b95)
- Spotify Player: Add AI Playlist Tuning (#24768)
- Update `Porkbun` extension - mention \'opt in all domains\' settings (#24798)
- Update CODEOWNERs (93636167)
- Add rclone-raycast extension (#23486)
- Update CODEOWNERs (576c7396)
- Add 40 Questions Extension (#23921)
- Docs: update for the new API release
- Update bilibili extension (#24742)
- Feature/tags and subtasks (#24346)
- Update google-chrome-profiles extension (#24147)
- Update CODEOWNERs (9d925cb3)
- Update sql-format extension (#24600)
- Update CODEOWNERs (f968ce21)
- Add pomo extension (#24138)
- Update CODEOWNERs (5a979067)
- Update how long to beat extension (#24763)
- Update CODEOWNERs (2b1c9fdf)
- Add bklit-analytics extension (#23936)
- issue-24775: BambooHR: Copy Email command, Windows Support, API deps update (#24779)
- Update CODEOWNERs (223fb837)
- Add LaunchContext support to Aerospace extension (#24232)
- Update CODEOWNERs (fd2fc46e)
- Add sharex extension (#24074)
- Update CODEOWNERs (b118b114)
- Update `Simple Dictionary` extension - set default language in Preferences (#24764)
- Update CODEOWNERs (13db8d55)
- Update `Font Sniper` extension + modernize + Windows compatible shortcut for "Select All" / "Deselect All" (#24769)
- Update `Wave` extension - In **Invoices**, Show Customer Name, Invoice Date, Invoice Due Date and Amount Due (#24752)
- disk-usage: handle deleted files (#24397)
- Update git extension (#24667)
- Update zed-recent-projects extension - refactor and cleanup, add support for multi-folder workspaces (#24595)
- Update CODEOWNERs (a308a21a)
- Add table-converter extension (#24302)
- Update CODEOWNERs (c64e6feb)
- [can-i-use] windows support (#24753)
- Update django-docs extension (#24737)
- Added deploy key auth (#24672)
- Update parse extension (#24678)
- Update `Attio` extension - edit task (#24745)
- Update CODEOWNERs (12283fcf)
- Add go-links extension (#24043)
- Update CODEOWNERs (f0686292)
- Add simple-login extension (#24712)
- Docs: update for the new API release
- [Render] Configurable Default Action preference (#24555)
- Update CODEOWNERs (72e4ef8c)
- Add flux extension (#24550)
- Update mermaid-to-image extension (#24740)
- [Parse] Add Windows Support and fix infinite loop problem (#24611)
- feat(slack): Support multi-word search in Open Channel and Send Message (#24639)
- Update CODEOWNERs (139f3cf9)
- Update vercast extension (#24719)
- Improve code quality and fix bugs (#24681)
- markmarks extension: add support for Dia browser (#24684)
- Update CODEOWNERs (fce6d226)
- Update `Ntfy` extension - optional access token in Preferences for protected topics (#24729)
- Update vietnamese-calendar extension (#24724)
- Update vercast extension (#24718)
- Update CODEOWNERs (9e18bdc5)
- Add mnemosyne extension (#23592)
- Update CODEOWNERs (2e04626a)
- Move self to past contributor (#24717)
- Update proton-authenticator extension (#24688)
- Update `Bluesky` extension - modernize + fix menu bar icon (#24694)
- feat: add site-documentation auto labelling (#24700)
- Update CODEOWNERs (794e552c)
- Update linkinize extension (#24662)
- Comment out PR assignment logic (#24698)
- Update CODEOWNERs (02bb8b00)
- Add mac-mouse-fix extension (#23654)
- Update CODEOWNERs (ff1a1bce)
- Update lark extension (#23994)
- Update CODEOWNERs (18fd7871)
- Add hugeicons-ui extension (#23904)
- Fix invalid date error in transaction create form (#24686)
- Update CODEOWNERs (802beb40)
- Update word-count to support counting text in screenshots (#22892)
- Update CODEOWNERs (8721c756)
- Update ScreenOCR extension with cross-extension conventions (#24248)
- [RedNote] Fix broken sign strategy (#24674)
- Update `Postiz` extension - char counter in new post (#24682)
- Update `Umami` extension - view admin users (#24683)
- [Forked Extensions] Add support for managing sparse-checkout dirs (#24677)
- Update harvest extension (#24680)
- Update microsoft-onedrive extension (#24666)
- Update CODEOWNERs (b08ca725)
- [Selfh.st Icons] Add Windows Support (#24617)
- Update CODEOWNERs (a5a5fcf4)
- Add stashit extension (#23688)
- Update CODEOWNERs (342fa991)
- Update font-sniper extension (#24663)
- Update CODEOWNERs (f952934b)
- Add tv-remote extension (#23825)
- Update CODEOWNERs (2d839bdd)
- Update `Cron Description` extension - set cron timezone + modernize (#24659)
- Update CODEOWNERs (b31ea7fd)
- Add raycast-weekly-newsletter extension (#23827)
- Update CODEOWNERs (ffc69f49)
- Add bnf-search-tool extension (#23593)
- Update PDF Tools extension to support third-party file managers (#23623)
- Update CODEOWNERs (67622946)
- Add Gemini 3 to raycast-gemini extension (#24632)
- Update microsoft-onedrive extension (#24658)
- Update CODEOWNERs (394020ec)
- Add `DreamHost` extension - Manage DNS Records (#24616)
- Update mail extension (#24647)
- Update llm-stats extension (#24629)
- [Postiz] state filter + jump to today (#24630)
- Update CODEOWNERs (1bedb7ad)
- Add kagi to zen (#24598)
- Update try extension (#24653)
- Update CODEOWNERs (7c235e75)
- Add winutils extension (#23267)
- Update CODEOWNERs (6d28baff)
- Update change-case extension (#23363)
- Update CODEOWNERs (83d5e3ea)
- New Extension: Add ThermoConvert (#24202)
- Update CODEOWNERs (4602f28b)
- Add biome extension (#23400)
- Update CODEOWNERs (6b7abc2f)
- Add fix-helper extension (#23217)
- Update `Neon` extension - Create PSQL 18 + New Logo (#24631)
- Update microsoft-onedrive extension (#24635)
- Update CODEOWNERs (be1ffe55)
- Update git-repos extension (#24624)
- Update CODEOWNERs (3edca421)
- Update `System Monitor` extension - toggle display mode (free vs. used) + add README (#24622)
- Update CODEOWNERs (8a59d27f)
- Add tabby extension (#23627)
- Update minio-manager extension (#23488)
- Update git extension (#24314)
- Update mermaid-to-image extension (#24549)
- Fix ScreenOCR caching issues (#24589)
- Update CODEOWNERs (67555f26)
- [Selfh.st Icons] fix icons not loading (#24569)
- Update plane extension (#24521)
- Update llm-stats extension (#24536)
- Update `Postiz` extension - year display + search content (#24576)
- Update CODEOWNERs (ea26effe)
- Add parse extension (#24551)
- Update CODEOWNERs (cf255679)
- Add linkinize extension (#24348)
- Clockify Menu Bar (#24554)
- Update kimai extension (#24541)
- Update diskutil-mac extension (#24553)
- Update CODEOWNERs (25cc0d5b)
- [Codeforces] Update types, api, and add problem filtering (#23868)
- Fix browsers-profiles crash when reading Chromium profiles (#24556)
- Update font-sniper extension (#24547)
- Update zeabur extension (#24548)
- Update CODEOWNERs (5d617ab8)
- Add apis-guru-search extension (#23264)
- Update CODEOWNERs (0d067c0b)
- Add gles-to-malioc extension (#23317)
- Update anonaddy extension (#24442)
- Update CODEOWNERs (71605f6b)
- Add django-docs extension (#24531)
- [Render] Add Deploy Status Badges (#24529)
- Update CODEOWNERs (16ecb60b)
- Update tuya-smart extension (#24376)
- Update CODEOWNERs (2356c8cb)
- Adding Convex tools extension (#24263)
- Update anna-s-archive extension (#24525)
- Update CODEOWNERs (c853f124)
- Add try extension (#23331)
- Update CODEOWNERs (d062f885)
- Add SVG Studio extension (#23182)
- Update CODEOWNERs (9971957a)
- Add bikeshare-station-status extension (#23236)
- Update CODEOWNERs (dd0c9874)
- Update python extension (#24069)
- Update CODEOWNERs (d3c6ffce)
- [Microsoft Office] Add Microsoft Office extension (#23681)
- Update CODEOWNERs (f1d971a3)
- Add vietnamese-calendar extension (#24058)
- Update CODEOWNERs (11d5fe2e)
- Add windows-to-linux-path extension (#24048)
- Update stale.yml (#24517)
- Add \'only-issue-labels\' option to stale.yml (#24516)
- Add ascending option to stale.yml workflow (#24515)
- Update stale.yml (#24513)
- Update CODEOWNERs (a7128e92)
- Add better-aliases extension (#24146)
- Remove \'AI Extension\' from exempt PR labels (#24512)
- Update quick-jump extension (#24309)
- Update CODEOWNERs (9f654226)
- [Guitar Tools] Add audio device selection for external audio interfaces (#24280)
- Update microsoft-onedrive extension (#24511)
- Update CODEOWNERs (73105d64)
- Add font-sniper extension (#24395)
- Update CODEOWNERs (d00c3cf1)
- Add llm-stats extension (#24445)
- feat: reverse from/to action @ ns-nl-search ext (#24492)
- Update CODEOWNERs (b1ed1f79)
- Update modrinth extension (#24079)
- Update CODEOWNERs (3039c994)
- Add pitchcast extension (#24501)
- Update zed-recent-projects extension (#23839)
- window-walker fix: error request timeout after 5000ms (#24497)
- Update CODEOWNERs (1db522af)
- Update window-walker extension (#24500)
- Update  Memorable Password Generator extension (#24482)
- Update CODEOWNERs (044d0fa1)
- Add Open, Copy and Download actions to Immich Assets view (#24486)
- fix(spotify-player): handle disabled menu bar command error (#24476)
- Update CODEOWNERs (7c3be347)
- Add rainaissance extension (#24161)
- [Render] Add service pinning feature (#24477)
- screenshot: fix All In One command on macOS Tahoe (#24404)
- Update CODEOWNERs (c4b13325)
- Update battery-menubar extension (#22447)
- Update CODEOWNERs (f3e03990)
- Add app-tag-manager extension (#21637)
- Replace {PR_MERGE_DATE} placeholders with actual commit dates (#24468)
- Update CODEOWNERs (8b2f9b42)
- Update bmrks extension (#19691)
- Update CODEOWNERs (3d231604)
- Add Confluence extension whiteboard search  (#24049)
- Update CODEOWNERs (2e97644a)
- Update clockify extension (#23992)
- Update CODEOWNERs (3fa54121)
- Add monocle extension (#24456)
- Update CODEOWNERs (f8ad2a17)
- Update ping extension (#24460)
- Bug/Quality-of-Life Update to Windows Terminal extension (#24285)
- Update description in package.json (#24458)
- Update CODEOWNERs (d137db9b)
- Add microsoft-onedrive extension (#24438)
- Update CODEOWNERs (1c988ffb)
- feat: Windows Support, update deps (#24459)
- Fix crash when attachedUrls is undefined (#24453)
- Add cloud shell copy connection action (#24405)
- Update harvest extension (#24451)
- Update filemaker-snippets extension (#24402)
- feat(parcel): improve internationalization, date parsing, and carrier name display (#24235)
- Update CODEOWNERs (392d05f3)
- Update apple-reminders extension (#24420)
- Update CODEOWNERs (0552cb1c)
- Add customer-io extension (#23475)
- Update CODEOWNERs (16b24147)
- feat(browsers-profiles): filter the browser profiles (#21758)
- Update CODEOWNERs (789dc1df)
- Update antigravity extension (#24175)
- Update CODEOWNERs (8d5f60f6)
- Remove myself as a contributor for extensions (#24428)
- Update CODEOWNERs (63c8ec1c)
- Update openrouter-models-finder extension (#24387)
- Fix some security vunerabilities (#24336)
- Update tasklink extension (#24406)
- Update kill-process extension (#24393)
- Update CODEOWNERs (a7a9ad13)
- Update markdown reference extension (#24422)
- [Next.js Docs] update tree sha (#24421)
- Update CODEOWNERs (7fb2cea2)
- Update random extension (#24415)
- Update CODEOWNERs (f6101c33)
- Update convert extension (#24411)
- things: optimize JXA performance with `properties()` batching (#24286)
- Update `TerminalFinder` extension - better error message when no Finder windows or accessing non-filesystem folder (#24400)
- [kill-process] Add NoLogo and NoProfile to PowerShell commands (#24341)
- Update CODEOWNERs (194e86e9)
- Safari: Improve Search Tabs performance with Swift ScriptingBridge (#23580)
- Update CODEOWNERs (2616e535)
- Remove self from contributors (#24198)
- Update CODEOWNERs (cddcf74c)
- Add chinese-character-converter extension (#24164)
- Raycast Wallpaper: Port to Windows (#23407)
- Add IP address scanning support to VirusTotal extension (#24359)
- Update Anytype MCP server (#24366)
- Update CODEOWNERs (96827d07)
- Update smart reply extension (#24367)
- Update uploadthing (#24342)
- Update CODEOWNERs (7f4412f2)
- Update dokploy extension (#23639)
- Update lokalise extension (#24337)
- Update `Terminal Finder` extension - fix kitty casing (#24382)
- Update CODEOWNERs (e2211d59)
- Add `MXroute` extension - Email hosting for your domains (#24353)
- Update cleanshotx extension (#24340)
- Update CODEOWNERs (7f78c747)
- Update `Phosphor Icons` extension - Add Windows Support (#24343)
- Update CODEOWNERs (56c74b5b)
- [Remote Desktop] Add remote desktop extension (#23608)
- Update CODEOWNERs (7603912a)
- Update single-disk-eject extension (#23423)
- Update CODEOWNERs (96960948)
- feat: add \'close window on trigger\' preference (#24075)
- Update capacities extension (#24328)
- Reduce operations per run in stale.yml (#24331)
- Update CODEOWNERs (14aee723)
- Add hevy extension (#23304)
- Update CODEOWNERs (a14400e7)
- Update music-link-converter extension (#23287)
- Update prism-launcher (#24316)
- Update CODEOWNERs (388870e6)
- [Home Assistant] History of sensor data when viewing attributes (#23713)
- Update CODEOWNERs (cbad0a18)
- Hide github-copilot extension menu when there are no assigned tasks (#23823)
- Update CODEOWNERs (3be90b2f)
- Add random-date-generator extension (#23419)
- Update apple-reminders extension (#23767)
- Update manage-clickup-tasks extension (#23730)
- Update CODEOWNERs (d264b71b)
- Add Lemniscate | System Monitor extension (#22122)
- Update CODEOWNERs (59fb938a)
- Add powertoys-tool-runner extension (#23420)
- Update lokalise extension (#24311)
- Update CODEOWNERs (0d78a802)
- Add area-code-lookup extension (#24293)
- Change install button to image link format (#24133)
- Update CODEOWNERs (93216377)
- [Visual Studio Code] Fix Windows side Issues (#23644)
- Update CODEOWNERs (dcf42876)
- Unsure calc extension (#23877)
- Update easyvariable extension (#24284)
- Update CODEOWNERs (f2667b3d)
- Add hotel-manager extension (#23322)
- Add Windows to supported platforms in package.json (#24301)
- Enable sparse checkout for API docs (#24294)
- Update CODEOWNERs (be6bbf3e)
- Add markmarks extension (#24288)
- Enable sparse checkout for API docs (#24224)
- Update CODEOWNERs (0ef33a90)
- Update google-workspace extension (#23838)
- Update CODEOWNERs (2de58f17)
- Add lokalise extension (#24254)
- Add Circleback MCP server (#24050)
- Update qoder extension (#24260)
- Update csfd extension (#24264)
- Update CODEOWNERs (e2e4adf4)
- Add LIFX Controller Extension (#24117)
- Update freeagent extension (#24255)
- Update 0x0 extension (#24225)
- [Update] [Things] Improve Query String Creation (#24271)
- Update math-functions extension (#24267)
- Update CODEOWNERs (18c50b8d)
- [Toothpick] handle error in manage + shortcuts (#24007)
- Update CODEOWNERs (6694fc42)
- Update `Music` extension - add menu bar command inspired by `Spotify` extension (#24053)
- Update CODEOWNERs (87f211de)
- Update `Password Generator` extension - remember character, numbers in "Generate Random Password" (#24212)
- Update `Wave` extension - create draft invoice + show discounts in invoice (#24269)
- Update CODEOWNERs (575ed2fd)
- Update luma extension (#24283)
- Add no as a service (#24268)
- Update CODEOWNERs (bd2601be)
- Add leader-key extension (#24244)
- Update CODEOWNERs (b423fcbf)
- Add math-functions extension (#23259)
- [iTerm] Feature Request: Open Profile (#23527)
- Enhance image optimization in pull request workflow (#24112)
- Update CODEOWNERs (f550393d)
- Add qoder extension (#24010)
- Update CODEOWNERs (50dadb5c)
- Add rust-docs extension (#23891)
- Update CODEOWNERs (da961434)
- Update claude code launcher extension (#24251)
- Update CODEOWNERs (40ab1713)
- Update image-to-ascii extension (#24219)
- Fix/windows applescript fallback (forgot to add the plataform) (#24243)
- fix(raindrop-io): add platform check to skip AppleScript on Windows/Linux (#24172)
- Update CODEOWNERs (6f95a9ac)
- Add Typst Universe extension (#24160)
- Fix: Handle undefined devices array in DeviceList component (#24103)
- Fix the missing logo from the community badge (#23889)
- Update CODEOWNERs (69d11cf3)
- Update spotify-player extension (#23374)
- Add missing commits: Open in Granola deeplink and cleanup deprecated code (#24220)
- Update CODEOWNERs (1da5f1b5)
- [Tapo Smart Devices] Add Windows Support & Migrate Client (#24167)
- [raycastbot] Improve Regex for issue-bot (#23870)
- Update CODEOWNERs (bce8c3c7)
- Update raindrop-io extension (#23306)
- Update CODEOWNERs (54c7afbd)
- Add luma extension (#24208)
- Update CODEOWNERs (8b274da2)
- Update fancy-text extension (#24215)
- Update granola extension v2.0.0 (#24132)
- Update word4you extension (#24184)
- Update paste-to-markdown extension (#24214)
- Update CODEOWNERs (ce08bf70)
- [Sourcetree] modernize + fix invalid path crash (#23987)
- Update CODEOWNERs (e63733a2)
- [Linear] upd8 shortcuts + upd8 readme (#23960)
- Update CODEOWNERs (b112ed56)
- Update `Bitly` extension - list links by group + modernize (#23943)
- Update CODEOWNERs (591045bf)
- [Tailwind CSS] upd8 shortcuts + modernize + add README (#23977)
- Update CODEOWNERs (b71b3a6d)
- [Installed Applications] make shortcuts cross-platform (#23935)
- Update CODEOWNERs (1e602c1f)
- [Google Chrome] fix infinite rendering bug in new tab (#23934)
- Update CODEOWNERs (3ffbc00c)
- Update `Terminal Finder` extension - error handling + Kitty support (#23916)
- Update CODEOWNERs (0fdc4509)
- [Toggl Track] fix toast error in menubar + modernize (#23832)
- HomeBrew: add dependency formula filter (#24116)
- Fix Window Walker Extension (#24200)
- Feat/cloud functions service and ApiErrorView for consistent API error handling across services (#24204)
- Update CODEOWNERs (551247dc)
- Update `Vim Bro` extension - add to favs and filter by favs (#23993)
- Update CODEOWNERs (8bbbe122)
- [cURL] fix valid POST fail + update more keyboard shortcuts (#24089)
- Update CODEOWNERs (1e23157e)
- Update genius-lyrics extension (#22805)
- Fix memory issues: implement streaming file processing (#24197)
- Update CODEOWNERs (c597e0ea)
- Update Zoom extension (#24086)
- Update CODEOWNERs (0536bc93)
- [Dice & Coin] custom dice + windows support (#23895)
- Update vercast extension (#23942)
- Update brave extension (#23990)
- Update google-workspace extension (#24006)
- [Shell] add option to edit executed command (#24017)
- Update tldr extension (#23887)
- Update logos-launcher extension (#24169)
- Fix window-walker pin system persistence and toast messages (#24173)
- Update `Keygen` extension - List Environments and Add new ones + add environment `Preference` (#24174)
- Update CODEOWNERs (149ce069)
- Update browser tabs extension (#24113)
- Update CODEOWNERs (03bcfa7a)
- Update `Regex Tester` extension - Modernize (#24150)
- Update `Supermemory` extension - remove memory + filter by project (#24158)
- Update pulsemcp extension (#23983)
- Update arc-helper extension (#24131)
- Update logos-launcher extension (#24152)
- Disk Usage: optimize disk space heap (#24144)
- [Pokedex] Fix crash on missing localized move names (#24162)
- Update CODEOWNERs (7199e941)
- Update flush-dns extension (#24102)
- Fixed Regression and Cleanup in Delivery Tracker (#24163)
- Update ray-code extension (#24123)
- Update CODEOWNERs (3dc8fdee)
- Add Window Walker Extension (#24119)
- Update CODEOWNERs (d1082d13)
- Update virustotal extension (#23886)
- Update odesli extension (#23884)
- Update CODEOWNERs (6812410f)
- Add `Kutt` extension (#23864)
- Update ray-code extension (#24036)
- feat: support custom pinned locally (#24038)
- [Pokedex] Fixed Move command crashing when Pokémon moves are missing in the learnset (#24054)
- Update `Oracle Cloud` extension - Manage Vaults, Secrets, Versions and Bundle (#24031)
- Update CODEOWNERs (4491754e)
- Update wayback-machine extension (#24009)
- Update rename images with ai extension (#24051)
- feat: add list account emails (#23922)
- Update raycast gemini extension (#23966)
- Update CODEOWNERs (0b15d7e9)
- Update gmail extension (#24060)
- [Language Detector] Routine maintenance (#24066)
- Update nusmods extension (#24085)
- Update CODEOWNERs (baec6456)
- Update bitwarden extension (#23970)
- Update urban-dictionary extension (#24018)
- [Raindrop.io] Add Quick Add Bookmark command (#24019)
- Update CODEOWNERs (aacd55d1)
- [Spotify Player] show error view in queue + keyboard shortcut for add + mark as `premium` (#24021)
- Update CODEOWNERs (b1983965)
- Update git commands extension (#24030)
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf187)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4bc)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f9904)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b94)
- [Iconify] Update error handling (quick fix until permanent solution) (#23353)
- Update CODEOWNERs (5dc3e90d)
- Add annotely extension (#23011)
- Update CODEOWNERs (51611e4e)
- feat: resolve toggling grayscale in macOS Tahoe (#23089)
- Update kill-process extension (#23347)
- Update CODEOWNERs (cc9da45e)
- Update `Ente Auth` extension - sanitize totp url + maintenance (#23337)
- Update CODEOWNERs (4b983700)
- Update monobank extension (#23338)
- Update monobank extension (#23336)
- Update CODEOWNERs (f0836ede)
- Rewrap text (#23167)
- Update odesli extension (#23179)
- Update CODEOWNERs (d162422a)
- Add passbolt extension (#23115)
- Update CODEOWNERs (a2137426)
- Add mail-to-self extension (#22949)
- Update code-quarkus extension (#22844)
- Update CODEOWNERs (728d063c)
- Add azure-tts-raycast-extension extension (#22768)
- Update CODEOWNERs (e1637174)
- Update 1-click-confetti extension (#23231)
- Update CODEOWNERs (952d077b)
- Add `SendPortal` extension - Manage Subscribers + Manage Templates (#23233)
- Update CODEOWNERs (d7747957)
- [Mem0] fix crash on add + modernize (#23235)
- Update CODEOWNERs (e28f31e3)
- [Notion] upd8 shortcuts + pref to use clipboard on create (#23291)
- Update Smart Calendars AI extension with image processing support (#22057)
- Update prompt-builder extension (#22952)
- Update untis extension (#23310)
- Fix brew (#23312)
- Update `Cyberduck` extension - filter by protocol + add README, images + Modernize (#23257)
- Update CODEOWNERs (ff867f66)
- Update `Cloudflare Email Routing` extension - Mention permissions in README + use SDK for listing (easier pagination) (#23258)
- Update untis extension (#23239)
- Update manifest-viewer extension (#23243)
- Docs: update for the new API release
- fix: suggestions fallback to search (#23271)
- Update CODEOWNERs (84d5d3ec)
- Dia/apple script (#23301)
- Update `cPanel` extension - Add Windows Support + Improve Invalid URL check (#23296)
- Update CODEOWNERs (fe22d803)
- Check GitHub Copilot usage (#22612)
- Update ship24-client extension (#23293)
- Update CODEOWNERs (940afc26)
- Update downloads-manager extension (#23210)
- Update prism-launcher (#23186)
- Update CODEOWNERs (c22f4843)
- Brew: Remove node-fetch dependency and use native fetch API (#23227)
- Sourcegraph: Deep Search and OAuth (#23281)
- Update google lens extension (#23283)
- Update CODEOWNERs (778f6ae2)
- Update react-docs extension (#23204)
- Update CODEOWNERs (da910d76)
- Update myanimelist-search (#23218)
- [Apple Reminders] Fix an issue where day grouping option displays duplicate days (#23237)
- Update CODEOWNERs (e8745305)
- Update gitmoji extension (#23178)
- Docs: update for the new API release
- Update CODEOWNERs (8310c9a9)
- Add unify-path-separator extension (#23055)
- Update CODEOWNERs (f583c303)
- Update wled-controller extension (#23015)
- Update CODEOWNERs (b4fc14ae)
- Add `Inbound` extension - Email API for Developers - Domain and Addresses, Send Email, Webhooks, Endpoints (#23176)
- Update openai-translator extension (#23188)
- Update monobank extension (#22929)
- Update CODEOWNERs (221531a6)
- feat(moneytree): add new extension to quickly check finances (#22954)
- Update CODEOWNERs (2006d589)
- add farrago extension (#22535)
- [spotify-player] Better error handling (#23090)
- Update CODEOWNERs (b7a0d7e2)
- Update elevenlabs-tts extension (#22852)
- Update CODEOWNERs (f2746bac)
- [Github] fix(pr): allow selecting default branch as "from" when creating a new PR (#23088)
- Update CODEOWNERs (13abd46a)
- Update browsers-profiles extension (#23079)
- Update CODEOWNERs (2d1edbc6)
- Update dia extension (#23185)
- Update CODEOWNERs (6678e1e1)
- Add json-to-toon-converter extension (#23067)
- Update dust-tt extension (#23035)
- Update kill-process extension (#23043)
- Update CODEOWNERs (3ce613e4)
- Update twenty extension (#23183)
- Update viacep extension (#23169)
- Update CODEOWNERs (cd0ca587)
- Add planwell extension (#23038)
- Update prism-launcher extension (#23160)
- Update linkding extension (#23096)
- Update CODEOWNERs (7f13e08d)
- Update openrouter-model-search extension (#23139)
- Update CODEOWNERs (720d7b47)
- [Quick Calendar ] Add windows support (#23147)
- Update CODEOWNERs (93a1b0fe)
- Update sonarr extension (#22556)
- Update shadcn-ui extension (#23154)
- Upd…
raycastbot added a commit that referenced this pull request Feb 23, 2026
* Update slack extension

- style: apply lint.
- refactor: extract success toast into function with customizable title and message
- feat: add AI-powered Slack status setting functionality
- feat: show toast notification after actions
- feat: add Main List component to display current status and actions
- feat: add component to set Slack status (emoji, text, duration)
- feat: add utilities for Slack expiration conversion
- feat: add setStatus to SlackClient (statusText, emoji, expiration)
- feat: add utility for calculating status_expiration
- feat: create emojiPicker component with Emoji props for selection
- feat: add Emoji type for Slack emojis
- refactor: use SlackClient in search-emojis instead of calling Slack API directly
- feat: add getUserProfileById and getWorkspaceEmojis to SlackClient
- feat: import emoji code from Raycast slack-status extension
- chore: update the Node.js and npm versions.
- chore: eslint version 9.39.2 > 9.39.3 update
- Update CODEOWNERs (6c270e71)
- chore(remember-the-date): add missing my name as contributor (#25655)
- Update proton-pass-client extension (#25660)
- Update music extension (#25667)
- Update picgo extension (#25665)
- [Pokedex] Add ItemDex and Shiny forms (#25668)
- Update sonarr extension (#25563)
- Update CODEOWNERs (b333c7a3)
- Add voiceink extension (#24581)
- Update: Remember the Date (Add Recurring Events Support) (#25426)
- Fix figma-link-cleaner: Check clipboard before AppleScript (#25607)
- Update dependencies and platforms in package.json for the mullvad extension (#25413)
- Update CODEOWNERs (04d93fbc)
- Add agent-usage extension (#25049)
- Update vercast extension (#25388)
- Update CODEOWNERs (ef4ffcac)
- Add dagster extension (#25312)
- Update CODEOWNERs (09e5b5b8)
- Add opencode-sessions extension (#25357)
- YouTube Music: Refactor command structure and improve error handling (#25370)
- Update CODEOWNERs (cf508576)
- Update wsl-manager extension (#25132)
- Update CODEOWNERs (e60ed163)
- Deep Search Claude Sessions and Path Resolution Edge Cases (#25361)
- Update CODEOWNERs (766d4e75)
- [Helldivers] Polish & maintenance (#25632)
- Git Worktrees: Fix remove worktree infinite loading spinner (#25394)
- Update CODEOWNERs (307abaf4)
- Update google-books extension (#25235)
- Update fathom extension (#25525)
- Update CODEOWNERs (bb01f398)
- Add `Sendy` extension - view brands, view lists, check subscriber status (#25573)
- Update CODEOWNERs (04ca0dcc)
- Update base64 extension (#25625)
- Update proton-pass-client extension (#25611)
- Update awork extension (#25617)
- Update CODEOWNERs (e68a32c1)
- Add chiikawa-character extension (#25428)
- Update git extension (#25342)
- Update notion extension (#25443)
- Update CODEOWNERs (2173848e)
- Music: Add menu bar favorite/unfavorite action with stateful icon and confirmed HUD feedback (#25300)
- Brew: Improve handling of abort signal (#25584)
- Update CODEOWNERs (2995cb6b)
- Add `VirtFusion` extension (#25452)
- Update binge-clock extension (#25564)
- Update digger extension (#25583)
- Update CODEOWNERs (48ae9432)
- System Monitor: Add CPU temperature monitoring (#25577)
- Update CODEOWNERs (c7ddd952)
- Add proton-pass-client extension (#25154)
- Update sharex extension (#25590)
- Update CODEOWNERs (033e4ee4)
- Update ccusage extension (#25507)
- [Speech to Text] Add Ukrainian language option (#25576)
- Update CODEOWNERs (ec8d126b)
- Update gitlab extension (#25569)
- Update CODEOWNERs (b6ae1bb4)
- Add Pronounce the Word Extension [ext/pronounce the word] (#25270)
- Update CODEOWNERs (9be2fbf6)
- Update cloudflare-warp extension (#25567)
- fix(browser-bookmarks): Update bundled sql-wasm.wasm to match sql.js v1.13.0 (#25508)
- Update raycast-store-updates extension (#25512)
- Update CODEOWNERs (4298b500)
- brightness-control: Add Lunar-based brightness control commands (#25315)
- [Bitwarden] Fix invalid generate password options (#25551)
- Update CODEOWNERs (744a71d1)
- Add starling extension (#25254)
- [Skills] Add support for installing/removing skills (#25373)
- [Bitwarden] Fix potential stale session token issue (#25538)
- Update CODEOWNERs (19b73e3a)
- Add db-schema-explorer extension (#25197)
- Update CODEOWNERs (3f88cb76)
- Update browser-bookmarks extension (#25237)
- chore: update dependencies and modernize codebase (#24722)
- Spotify Player: Fix menu bar unloading before API fetch completes (#25349)
- Update vesslo extension (#25524)
- Update CODEOWNERs (0e7cf43b)
- Add Bunq Extension (#24851)
- ISSUE-25515: Noun Project Windows Support (#25519)
- Update audio-device extension (#25520)
- Update scheduler extension (#25494)
- Update easydict extension (#25436)
- [Shell] fix edit command not in recent section (#25470)
- Update CODEOWNERs (8600824a)
- Add dns-lookup extension (#23675)
- Update `Unkey` extension - maintenance release (#25514)
- Update CODEOWNERs (c2384bda)
- Add Get App Icon extension (#25294)
- Update audio-device extension (#25467)
- Update CODEOWNERs (6be30308)
- Add Clear File Metadata command to File Info extension [ext/clear-file-metadata] (#25272)
- Update CODEOWNERs (a781186d)
- Add subnoto extension (#25113)
- [Bitwarden] Handle unlock error, fix windows hash & support steam OTP (#25397)
- Update vesslo extension (#25506)
- Update CODEOWNERs (49512cd9)
- Add supabase extension (#25016)
- Update bnf-search-tool extension (#25392)
- Add star/unstar profiles and YouTube @brand accounts to @profile extension (#25460)
- Update CODEOWNERs (6b2d5783)
- Add code-wiki extension (#25434)
- Update accordance extension (#25310)
- Update CODEOWNERs (c4a1c197)
- Add okta-app-manager extension (#25000)
- Update CODEOWNERs (6aa0cfdf)
- Add upset-dev extension (#24915)
- Update CODEOWNERs (bea114f1)
- Add kaset-control extension (#24885)
- Fix UploaderX URL encoding for filenames with spaces (#25505)
- Update CODEOWNERs (710ab5cc)
- Add transport-nsw extension (#25089)
- Update CODEOWNERs (c9df8437)
- Add send-to-kindle extension (#25196)
- Update CODEOWNERs (f172f07b)
- Add mobile-provisions extension (#25178)
- Update `MXroute` extension - show email account usage (#25498)
- Update CODEOWNERs (9adf9a82)
- Add vietqr-transfer extension (#24602)
- Update CODEOWNERs (003fd7a7)
- Add caltask extension (#25107)
- Update CODEOWNERs (7fbf43bf)
- Add vesslo extension (#25170)
- Update CODEOWNERs (2d2b1bab)
- Add uploaderx extension (#25166)
- Update CODEOWNERs (3f1f9a95)
- Add retrace extension (#25289)
- Update CODEOWNERs (23cc87d9)
- Add flycheck-raycast extension (#25140)
- Update arc-helper extension (#25462)
- Brew: Improve memory usage (#25479)
- Update CODEOWNERs (2735ebd7)
- Update obsidian extension (#25022)
- Update CODEOWNERs (4a198be6)
- Add latex-board extension (#25168)
- [PM2] Routine maintenance (#25476)
- [Raycast Port] Routine Maintenance (#25477)
- Add "My Updates" filter, Refresh, and add CHANGELOG nav (↑/↓) to raycast-store-updates extension (#25480)
- Update raycast-store-updates extension (#25439)
- Update CODEOWNERs (a944fe57)
- Update vercast extension (#25471)
- fix(bed-time-calculator): Add Windows compatibility and contributor (#25465)
- Update anytype extension (#25444)
- Update CODEOWNERs (b74a7b30)
- [Slack] add proxy support for corporate networks (#25412)
- Update CODEOWNERs (0f8e5861)
- Update pocket extension (#25408)
- Update CODEOWNERs (8c220fa9)
- Update phosphor icons extension (#25440)
- Update CODEOWNERs (7d9c2f0d)
- Add Tella extension (#24561)
- MiniMax: Add M2.5 model support (#25427)
- Update CODEOWNERs (dc9e0203)
- feat(bed-time-calculator): Enhanced UI with color-coded sleep quality (#25405)
- Update CODEOWNERs (6bcb661b)
- Add portal-wholesale extension (#24781)
- Fix security vulnerabilities. (#25421)
- Update CODEOWNERs (e8d3af32)
- [Pokedex] Type Mastery (#25379)
- Update manus-manager extension (#25401)
- Update CODEOWNERs (afd3f3ec)
- Add figma-link-cleaner extension (#24675)
- Update CODEOWNERs (1b877989)
- Add betaseries extension (#25377)
- [Badges] Expose color picker ability to Windows (#25406)
- [Color Picker] Dismiss color picker feature (#25407)
- Update CODEOWNERs (fd71929c)
- Update google-meet extension (#24213)
- Update raycast-store-updates extension (#25399)
- Update CODEOWNERs (082e8b2b)
- Update google-calendar extension (#24261)
- Update instagram media downloader extension (#25402)
- Update CODEOWNERs (80842a18)
- Update `WiFi Password Reveal` extension -  add images + mention windows (#25396)
- Update leader-key extension (#25398)
- Update CODEOWNERs (27d18202)
- Add heptabase extension (#24462)
- Update CODEOWNERs (ed69ef34)
- Update simple-dictionary extension (#25186)
- Update CODEOWNERs (33332708)
- Update notion extension (#25244)
- Update CODEOWNERs (af155a48)
- Update browser-bookmarks extension (#25238)
- Update CODEOWNERs (403c3cee)
- Update vietnamese-calendar extension (#25360)
- Update quick-git extension (#25358)
- refactor: updated my esv-bible extension (#25362)
- Update CODEOWNERs (77d91ac3)
- Add migros extension (#24578)
- Update CODEOWNERs (83047136)
- [Statamic Docs] Show `-beta` flag for beta releases & update fallback results  (#25351)
- Update whoop extension to use Api V2 (#23013)
- Update CODEOWNERs (3c76f22a)
- [Color Picker] Add Windows Support (#25303)
- Update CODEOWNERs (1ebb02d8)
- Quick Access Infomaniak (#22431)
- Update CODEOWNERs (d4ccec5b)
- Add `Zenblog` extension (#25347)
- Update CODEOWNERs (0ea30fe8)
- Add napkin extension (#25363)
- Update CODEOWNERs (8cd6fe97)
- Add AzTU LMS extension (#25356)
- [Skills] show SKILL.md instead of repository README.md (#25352)
- [Skills] Fix broken screenshot references in README (#25348)
- Update CODEOWNERs (52a1712c)
- Add Skills Extension (#25018)
- [KeePassXC] Pin entry + copy/paste URL. (#25286)
- Workflows: Update to version v1.18.0 (#25341)
- Docs: update for the new API release
- Update CODEOWNERs (5c0f9c97)
- Add Toggle Pointer Acceleration command to mac-mouse-fix (#25247)
- refactor(github stars): update and refactor (#25278)
- Update qoder extension (#25296)
- Update bitwarden extension (#25326)
- fix(gitfox): deduplicate repositories in menu bar command (#25307)
- Update CODEOWNERs (b33caeb6)
- Add wordpress-manager extension (#24723)
- Update picgo extension (#25314)
- [Creem] update logo, images + better error msg (#25298)
- Update CODEOWNERs (f18f662b)
- Update kill node modules extension (#25327)
- Update kill-process extension (#25309)
- fix/ISSUE-25318: Fixing Todoist (currently broken for everyone i think?) (#25330)
- Update CODEOWNERs (60e8f7fa)
- Update Kill Process Extension (#25215)
- Update unicode-symbols extension (#25302)
- Update audio-device extension (#25290)
- fix(search npm): keywords bug (#25271)
- Update apple-reminders extension (#25242)
- fix(g-cloud): fixes and cleanup v1.0.4 (#25275)
- Update confluence extension (#25284)
- Update textream extension (#25268)
- Update CODEOWNERs (d978e65f)
- Add niuma-logs extension (#24656)
- Minor update to Fathom extension (#25293)
- Update CODEOWNERs (efcfa236)
- Update clipboard-type extension (#25225)
- Update CODEOWNERs (e6bc2915)
- Add SayIntentions extension (#23277)
- Things: Reduce JXA latency for list fetching (#25233)
- Update github-copilot extension (#25251)
- Update CODEOWNERs (ec90607a)
- Update cron-manager extension (#24426)
- Update CODEOWNERs (6a097d39)
- Add picgo extension (#25024)
- Update stealth-ai-tool extension (#25227)
- Update CODEOWNERs (bfe3bcb4)
- Add markdown-docs extension (#24954)
- feat(gitfox): add v4 support, menu bar, favorites, git status and more (#25253)
- Update CODEOWNERs (081224ab)
- Add kimi extension (#25250)
- Update CODEOWNERs (bd274dc5)
- Add minimax-ai extension (#25003)
- feat(tailscale): show more device info (#25262)
- Update CODEOWNERs (7e3e3312)
- Update viscosity extension (#25249)
- fix(change-case): swap case (#25263)
- Update CODEOWNERs (553a6af5)
- Add textream extension (#25257)
- Add windows support and support setting default browser per group or individual URL action types. (#25229)
- Update `Infomaniak` extensions - List Favorites in kDrive (#25252)
- Update github-copilot extension (#25205)
- Update CODEOWNERs (e6f3bf15)
- Add demo-flow extension (#25246)
- [OVH] display domain dns records cache properly (#25230)
- Update CODEOWNERs (a12116e5)
- [NSIS Reference] Upgrade ESLint to v9 (#25241)
- Update CODEOWNERs (03c88c46)
- Add osquery extension (#24696)
- Update CODEOWNERs (4da1542c)
- Add virtual-desktop-manager extension (#24897)
- Update letterboxd extension (#25224)
- Update audio-device extension (#25222)
- Update CODEOWNERs (47d2c2b3)
- Add Vim Leader Key extension (#24407)
- Update CODEOWNERs (0fe54c70)
- Add tikz extension (#24361)
- Update CODEOWNERs (40ac861d)
- Add xiaohe-query extension (#24789)
- Update apple reminders extension (#25202)
- [Chatwoot] canned_responses & teams (#25213)
- [GitHub Copilot] Fix titles and URLs for tasks without a pull request in "View Tasks" command (#25209)
- Docs: update for the new API release
- [GitHub Copilot] Allow adding additional instructions when assigning an issue to Copilot (#25192)
- [Kagi Search] delete history when api disabled (#25199)
- Update git extension (#25191)
- Switch to GitHub Copilot tasks API for loading and creating tasks (#25167)
- Misc: Update some dependencies (#25190)
- Update CODEOWNERs (668e9109)
- Update audio-device extension (#24502)
- Update CODEOWNERs (1defd208)
- feat(ios-resolutions): Add MacBooks as Devices Type (#25004)
- Update CODEOWNERs (ef0d5dc3)
- Add favoro extension (#25133)
- Update aave-search extension (#25181)
- Update CODEOWNERs (82bb7f64)
- Update cloudflare-email-routing extension (#24857)
- Minor updates to youtube summarizer (#25175)
- Update CODEOWNERs (9fbadbdf)
- Add jules-agents extension (#23850)
- Update CODEOWNERs (94718496)
- Add Wispr Flow Dictionary extension (#24644)
- Update microsoft-onedrive extension (#25173)
- Update `MXroute` extension - show domain verification key in "add domain" + catchall ux improvements (#25179)
- Update CODEOWNERs (7b0e4096)
- Add desktop-manager extension (#24899)
- Update CODEOWNERs (afb6a3f4)
- Add Dutch Article (Het of De) extension (#25136)
- Update CODEOWNERs (6d32581c)
- Update gif-search extension (#25123)
- Update CODEOWNERs (0771f77b)
- Update domainr extension (#23984)
- Update CODEOWNERs (d3a5f84a)
- Update search-npm extension (#25163)
- Update CODEOWNERs (c1271b54)
- Add wiz-controller extension (#25134)
- Update myanimelist-search extension (#24818)
- Update CODEOWNERs (f37c7e5e)
- Add sap-logon extension (#23761)
- Update CODEOWNERs (f358016e)
- Add models-dev extension (#24982)
- Update CODEOWNERs (9a722fc8)
- Add port extension (#24976)
- [OPENVPN] fix: reported issues (#25125)
- [JIRA] Fix issue link after ticket creation (#25161)
- Update CODEOWNERs (28232b88)
- Add standing-desk-tracker extension (#24216)
- Update CODEOWNERs (32259fec)
- Add gcp-ip-search extension (#24889)
- Update CODEOWNERs (aefeafd1)
- Add Withings Sync extension (#24641)
- Update CODEOWNERs (e26d83c2)
- Add rdir extension (#25137)
- Update CODEOWNERs (c626bfd4)
- Add files-shelf extension (#25151)
- Update CODEOWNERs (7432d0dd)
- Add Raycast Store Updates extension (#24891)
- Update CODEOWNERs (5180c852)
- Update laravel-docs extension (#25148)
- Update CODEOWNERs (c4b9602b)
- Add pdsls extension (#24605)
- feat(browsers-profiles): add Arc browser support (#25153)
- Update CODEOWNERs (0e480ca9)
- Add Reader Mode extension 📖 (#24369)
- Update CODEOWNERs (90d5f655)
- Add Manus Manager extension (#24037)
- Update CODEOWNERs (0b61f386)
- Add openhue extension (#24527)
- Update CODEOWNERs (62354d8c)
- Add binance-exchange extension (#25135)
- Update kill-process extension (#25147)
- Update fancy text extension (#25146)
- Update typefully extension (#25139)
- Update CODEOWNERs (5994b4b6)
- feat: Add Minttr extension (#25093)
- Update audio-device extension (#25143)
- Update vietnamese-calendar extension (#25138)
- Update microsoft-onedrive extension (#25142)
- Update CODEOWNERs (d341fa53)
- Add fake-typing-effect extension (#24323)
- Update remove-paywall extension (#25141)
- Update CODEOWNERs (6589e4e3)
- Add zacks-stock-ranking extension (#24455)
- Update CODEOWNERs (79b2c789)
- Update time-tracking extension (#25084)
- Update CODEOWNERs (7fc36db8)
- Add claude-code-config-switcher extension (#24880)
- Update CODEOWNERs (09be5d91)
- Add floaty extension (#25038)
- Update CODEOWNERs (f07b7d6c)
- Update Typefully extension (official rewrite) (#25102)
- lunatask: Add Windows support (#25096)
- Auto-populate tag when creating in filtered view (#24930) (#24935)
- Update CODEOWNERs (e4520680)
- Add telegram extension (#24322)
- Update CODEOWNERs (d45f54ac)
- Add fifteen-million-merits extension (#24170)
- Update instagram media downloader extension (#25126)
- Update CODEOWNERs (465911e2)
- Add stealth-ai-tool extension (#23837)
- [Say] Polish AI Extension configurations (#25127)
- Update CODEOWNERs (4b24f39a)
- Add quick-toshl extension (#24002)
- Update tasklink extension (#25119)
- Adds open workflow run option to the copilot view tasks command  (#25115)
- Update CODEOWNERs (124624a0)
- Add respace extension (#23570)
- Update CODEOWNERs (216cd112)
- Update `FileZilla` extension - add README to mention FileZilla needs to be in "Applications" (#25118)
- Update CODEOWNERs (65a3ee21)
- Add fitdesk extension (#24448)
- Update swift-command extension (#25110)
- Update CODEOWNERs (89bc46a2)
- Update haystack extension (#25108)
- Adds new command to github-copilot extension (#25064)
- [Virtualizor Enduser] fix distro icon (one liner) (#25103)
- Update CODEOWNERs (f04d5b66)
- Add shodan extension (#24306)
- Updating Oura extention to use OAuth2 of the updated v2 API\'s (#24544)
- Granola: Update visual identity to match new brand (v2.1.2) (#25087)
- Add Razuna entry to builtin registries (2nd) (#25094)
- Update CODEOWNERs (3a89032f)
- Update: system monitor user customizability (#24856)
- [Espanso] Improvements (#25078)
- Docs: update for the new API release
- Update CODEOWNERs (0c685fe4)
- Update audio-device extension (#24452)
- Update obsidian extension (#24312)
- Update CODEOWNERs (3a3191e3)
- Feature/dia-bookmarks-open-all-in-folder (#25034)
- ccusage: fix monthly cost projection (#25069)
- Update raycast-ollama extension (#25074)
- Update CODEOWNERs (17d76bce)
- Update `Yopass` extension - fix not working due to openpgp version (#25073)
- Update Logitech Litra extension (#25072)
- Update CODEOWNERs (ba37eb86)
- Add time-awareness extension (#24107)
- Update CODEOWNERs (70bea990)
- [Prisma Docs AI] Add Windows Support (#25029)
- Update CODEOWNERs (f716dfda)
- Update github-copilot extension (#25063)
- Update CODEOWNERs (770ec04c)
- arc: fix for opening Search Tabs or Search Spaces (#24948)
- fix(ente-auth): don\'t delete export file before re-exporting (#25032)
- Update moneybird extension: paginating contacts/lists (#24390) and repeat time entry (#23438) (#25035)
- Update CODEOWNERs (2b519e61)
- [Kagi Search] delete history + shortcuts (#25044)
- Update homeassistant extension (#25021)
- [Claude] Fix memory leak in streaming responses (#25059)
- Update react-native-directory extension (#25048)
- Fix github copilot usage command auth (#24760)
- Update yandex-smart-home extension (#25053)
- Update torbox extension (#25056)
- Update `Creem` extension - List Customers (#25055)
- [Brand Icons] Add support for changing copy action to paste (#25027)
- [United Nations] Resolves CVE-2026-25128 (#25028)
- Update CODEOWNERs (ebb2ec8e)
- Add yandex-smart-home extension (#25002)
- feat: add additional "open with" action to raycast-zoxide (#25011)
- Update CODEOWNERs (0252e418)
- Update `Text Decorator` extension - dark mode grid color (#25019)
- Update microsoft-onedrive extension (#25020)
- Update CODEOWNERs (529d5814)
- Add antisocials extension (#25006)
- Fix menubar when printer not printing (#25013)
- Update CODEOWNERs (a1c5bff0)
- Add qmd extension (#24888)
- Update CODEOWNERs (f7cd6aba)
- Add menu bar progress to Prusa extension (#25007)
- Update music-assistant-controls extension (#25009)
- ccusage: support tilde expansion in custom npx path (#24095)
- Granola: Add AI Tools Shared Documents Support (v2.1.1) (#25010)
- Granola: Add Shared Documents Support (v2.1.0) (#25008)
- Update upcoming-holidays extension (#24994)
- Fix Parcel carrier dropdown default selection (#24991)
- Feat: add new commands for Ext/u301 URL Shortener (#24959)
- Update CODEOWNERs (b8584fde)
- Update typst-symbols extension (#24727)
- Update CODEOWNERs (600b1f04)
- Add cursor-costs extension (#23468)
- Update CODEOWNERs (e33e20c2)
- Add gitcdn extension (#23988)
- Update vercast extension (#24953)
- Update CODEOWNERs (0e5214e0)
- Update `Google Fonts` extension - cross-platform keyboard shortcuts (#24968)
- Update CODEOWNERs (50eb676a)
- Add `NicNames` extension (#24984)
- [Wave] last sent, last viewed - in invoice (#24962)
- Update CODEOWNERs (2863ff3c)
- Update summarize-youtube-video-with-ai extension (#24952)
- Update CODEOWNERs (22d92306)
- feat(parcel): Add Windows Platform Support (#24978)
- Update CODEOWNERs (aa9d09fc)
- Add make-dot-com extension (#23927)
- Update CODEOWNERs (16394062)
- Add iching-divination extension (#24114)
- fix: transcript for YouTube URLs with query params and nested caption XML (#24943)
- Update CODEOWNERs (6ff3cfc7)
- Add botpress extension (#24849)
- Update CODEOWNERs (be06df01)
- Add singularityapp extension (#24832)
- Update CODEOWNERs (404ea76a)
- Update pagerduty extension (#24797)
- fix(json-format): improve performance for large JSON rendering (#24894)
- Update CODEOWNERs (fb689e0b)
- Update google-calendar extension (#24918)
- Update CODEOWNERs (42b3d05d)
- Update apple-reminders extension (#24919)
- Update CODEOWNERs (4584caa1)
-  Avoid overlapping invocations in raytaskwarrior (#24924)
- Update CODEOWNERs (ffff47b2)
- Update cursor agents extension (#23948)
- Video Downloader: Add MP3 format and fix loading issues (#23777)
- Update torbox extension (#24925)
- Update `OVHcloud` extension - Update Domain & DNS Service Information (renewal) (#24923)
- Update meme-generator extension (#24931)
- Update arc-helper extension (#24926)
- Update CODEOWNERs (785e355c)
- Update word-count extension (#24938)
- Fix TypeScript errors in SpinupWP extension (#24940)
- Update CODEOWNERs (0245ed09)
- Update yafw extension (#24908)
- UK layout fix (#24927)
- Update hijri-converter extension (#24921)
- Fork-Repositories: Add Windows support (#24910)
- Enable Windows support for Aegis by upgrading Raycast API (#24914)
- Update CODEOWNERs (582ddbbf)
- Update ccusage extension (#24080)
- Hopefully fix memory leak caused by zombie processes (#24895)
- Update CODEOWNERs (dc73c794)
- feat(mute-microphone): add native Windows support via PowerShell (#24640)
- Update CODEOWNERs (ac538959)
- Add youtube-highlights extension (#23756)
- Brew: Add optional split-view metadata panel for search results (#24901)
- Update CODEOWNERs (605195ef)
- [Word Count] Add Raycast Cross-Extension badge to readme (#24904)
- fix: fetching transcripts to summarize (#24902)
- Update T3 Chat extension - Models, preferences (#24905)
- Update CODEOWNERs (0bb666b4)
- Update better-uptime extension (#24903)
- Update CODEOWNERs (305be042)
- Add series-rating-graphs extension (#23901)
- Update CODEOWNERs (4ab1e089)
- [feat] add npm-claimer extension (#24754)
- Update CODEOWNERs (61c3abca)
- Add TorBox extension (#24121)
- Update CODEOWNERs (fd436796)
- Add hijri-converter extension (#23653)
- Update expectations message for initial review timeline (#24893)
- Update CODEOWNERs (551660c0)
- Update nixpkgs-search extension (#24864)
- Update CODEOWNERs (860b4b66)
- Add digger extension 🪏 (#24690)
- Update claudecast extension (#24887)
- Update CODEOWNERs (e1645ed0)
- Add spinupwp extension (#24804)
- Update CODEOWNERs (05b1b159)
- Update linkwarden extension (#24854)
- Update linkding extension (#24863)
- Update Zshrc Manager Extension (#24830)
- Update `MXroute` extension - add email from emptyview + view dns (#24876)
- Update CODEOWNERs (91439acb)
- Add basalt-wallpapers extension (#24805)
- Fork Repositories: Add support for reading `repositories.toml`, falling back to the old `repositories.json`. (#24878)
- mollie-for-raycast: Fix TypeScript type errors (#24845)
- Update CODEOWNERs (94971ce6)
- Add Supabase Cron Monitor extension (#24072)
- Fix/typeerror non array filter (#24869)
- Update CODEOWNERs (eb71c068)
- Add custom-icon extension (#24829)
- Update google search extension (#24862)
- Update CODEOWNERs (ee79688d)
- Add prompts-chat extension (#24275)
- Update CODEOWNERs (3f76e33c)
- Add remix-icon extension (#24634)
- Update CODEOWNERs (29bf496e)
- Add 42-api extension (#24784)
- Update CODEOWNERs (aace337f)
- Add Pin.app extension (#24827)
- Update youversion-suggest extension (#24833)
- Update CODEOWNERs (0fa80f77)
- Update remove-paywall extension (#24834)
- Update CODEOWNERs (a15956e9)
- Add ets2-ats-profiles extension (#24730)
- Update CODEOWNERs (27afe631)
- Add fumadocs extension (#24836)
- Update `Umami` extension - fix wrong web stats in cloud v3 (#24841)
- Update CODEOWNERs (ae0068a4)
- Add mollie-for-raycast extension (#22897)
- Update CODEOWNERs (40e16ba9)
- Add Next Lens extension (#24194)
- Update `Umami` extension - view websites (menu bar) (#24828)
- Update CODEOWNERs (ddd577b5)
- Add manus extension (#24166)
- Update CODEOWNERs (b9fa5786)
- feat: Add Pagination Support to My Starred Repositories (#24604)
- Update `Postiz` extension - in Create: add x provider settings, select date (#24822)
- Update CODEOWNERs (d35475de)
- feat: BPM copied to clipboard w/ confirmation toast (#24594)
- Update CODEOWNERs (837906c4)
- Update typer extension (#24826)
- Update CODEOWNERs (c3b05fc8)
- New Extension: LocalSend (#23594)
- Update hammerspoon extension (#24810)
- Update CODEOWNERs (c5f8ec32)
- Update get favicon extension (#24812)
- Update quick-jump extension (#24808)
- Update CODEOWNERs (7e3c9aaf)
- [Cloudflare] Add View Workers command (#24815)
- Update CODEOWNERs (fb1bc0a3)
- Add Query.Domains extension (#24606)
- Update CODEOWNERs (2977b6c6)
- Add claudecast extension (#24692)
- Update CODEOWNERs (c19e0729)
- Add font-converter extension (#23226)
- Update `Plane` extension - show icon state color in project work items (#24803)
- Update CODEOWNERs (d824c70a)
- Add proton-mail extension (#24734)
- Update CODEOWNERs (7a8be8a1)
- Add ios-resolution extension (#24799)
- Misc: Fix some security vulnerabilities (#24802)
- Update CODEOWNERs (2c9d5b95)
- Spotify Player: Add AI Playlist Tuning (#24768)
- Update `Porkbun` extension - mention \'opt in all domains\' settings (#24798)
- Update CODEOWNERs (93636167)
- Add rclone-raycast extension (#23486)
- Update CODEOWNERs (576c7396)
- Add 40 Questions Extension (#23921)
- Docs: update for the new API release
- Update bilibili extension (#24742)
- Feature/tags and subtasks (#24346)
- Update google-chrome-profiles extension (#24147)
- Update CODEOWNERs (9d925cb3)
- Update sql-format extension (#24600)
- Update CODEOWNERs (f968ce21)
- Add pomo extension (#24138)
- Update CODEOWNERs (5a979067)
- Update how long to beat extension (#24763)
- Update CODEOWNERs (2b1c9fdf)
- Add bklit-analytics extension (#23936)
- issue-24775: BambooHR: Copy Email command, Windows Support, API deps update (#24779)
- Update CODEOWNERs (223fb837)
- Add LaunchContext support to Aerospace extension (#24232)
- Update CODEOWNERs (fd2fc46e)
- Add sharex extension (#24074)
- Update CODEOWNERs (b118b114)
- Update `Simple Dictionary` extension - set default language in Preferences (#24764)
- Update CODEOWNERs (13db8d55)
- Update `Font Sniper` extension + modernize + Windows compatible shortcut for "Select All" / "Deselect All" (#24769)
- Update `Wave` extension - In **Invoices**, Show Customer Name, Invoice Date, Invoice Due Date and Amount Due (#24752)
- disk-usage: handle deleted files (#24397)
- Update git extension (#24667)
- Update zed-recent-projects extension - refactor and cleanup, add support for multi-folder workspaces (#24595)
- Update CODEOWNERs (a308a21a)
- Add table-converter extension (#24302)
- Update CODEOWNERs (c64e6feb)
- [can-i-use] windows support (#24753)
- Update django-docs extension (#24737)
- Added deploy key auth (#24672)
- Update parse extension (#24678)
- Update `Attio` extension - edit task (#24745)
- Update CODEOWNERs (12283fcf)
- Add go-links extension (#24043)
- Update CODEOWNERs (f0686292)
- Add simple-login extension (#24712)
- Docs: update for the new API release
- [Render] Configurable Default Action preference (#24555)
- Update CODEOWNERs (72e4ef8c)
- Add flux extension (#24550)
- Update mermaid-to-image extension (#24740)
- [Parse] Add Windows Support and fix infinite loop problem (#24611)
- feat(slack): Support multi-word search in Open Channel and Send Message (#24639)
- Update CODEOWNERs (139f3cf9)
- Update vercast extension (#24719)
- Improve code quality and fix bugs (#24681)
- markmarks extension: add support for Dia browser (#24684)
- Update CODEOWNERs (fce6d226)
- Update `Ntfy` extension - optional access token in Preferences for protected topics (#24729)
- Update vietnamese-calendar extension (#24724)
- Update vercast extension (#24718)
- Update CODEOWNERs (9e18bdc5)
- Add mnemosyne extension (#23592)
- Update CODEOWNERs (2e04626a)
- Move self to past contributor (#24717)
- Update proton-authenticator extension (#24688)
- Update `Bluesky` extension - modernize + fix menu bar icon (#24694)
- feat: add site-documentation auto labelling (#24700)
- Update CODEOWNERs (794e552c)
- Update linkinize extension (#24662)
- Comment out PR assignment logic (#24698)
- Update CODEOWNERs (02bb8b00)
- Add mac-mouse-fix extension (#23654)
- Update CODEOWNERs (ff1a1bce)
- Update lark extension (#23994)
- Update CODEOWNERs (18fd7871)
- Add hugeicons-ui extension (#23904)
- Fix invalid date error in transaction create form (#24686)
- Update CODEOWNERs (802beb40)
- Update word-count to support counting text in screenshots (#22892)
- Update CODEOWNERs (8721c756)
- Update ScreenOCR extension with cross-extension conventions (#24248)
- [RedNote] Fix broken sign strategy (#24674)
- Update `Postiz` extension - char counter in new post (#24682)
- Update `Umami` extension - view admin users (#24683)
- [Forked Extensions] Add support for managing sparse-checkout dirs (#24677)
- Update harvest extension (#24680)
- Update microsoft-onedrive extension (#24666)
- Update CODEOWNERs (b08ca725)
- [Selfh.st Icons] Add Windows Support (#24617)
- Update CODEOWNERs (a5a5fcf4)
- Add stashit extension (#23688)
- Update CODEOWNERs (342fa991)
- Update font-sniper extension (#24663)
- Update CODEOWNERs (f952934b)
- Add tv-remote extension (#23825)
- Update CODEOWNERs (2d839bdd)
- Update `Cron Description` extension - set cron timezone + modernize (#24659)
- Update CODEOWNERs (b31ea7fd)
- Add raycast-weekly-newsletter extension (#23827)
- Update CODEOWNERs (ffc69f49)
- Add bnf-search-tool extension (#23593)
- Update PDF Tools extension to support third-party file managers (#23623)
- Update CODEOWNERs (67622946)
- Add Gemini 3 to raycast-gemini extension (#24632)
- Update microsoft-onedrive extension (#24658)
- Update CODEOWNERs (394020ec)
- Add `DreamHost` extension - Manage DNS Records (#24616)
- Update mail extension (#24647)
- Update llm-stats extension (#24629)
- [Postiz] state filter + jump to today (#24630)
- Update CODEOWNERs (1bedb7ad)
- Add kagi to zen (#24598)
- Update try extension (#24653)
- Update CODEOWNERs (7c235e75)
- Add winutils extension (#23267)
- Update CODEOWNERs (6d28baff)
- Update change-case extension (#23363)
- Update CODEOWNERs (83d5e3ea)
- New Extension: Add ThermoConvert (#24202)
- Update CODEOWNERs (4602f28b)
- Add biome extension (#23400)
- Update CODEOWNERs (6b7abc2f)
- Add fix-helper extension (#23217)
- Update `Neon` extension - Create PSQL 18 + New Logo (#24631)
- Update microsoft-onedrive extension (#24635)
- Update CODEOWNERs (be1ffe55)
- Update git-repos extension (#24624)
- Update CODEOWNERs (3edca421)
- Update `System Monitor` extension - toggle display mode (free vs. used) + add README (#24622)
- Update CODEOWNERs (8a59d27f)
- Add tabby extension (#23627)
- Update minio-manager extension (#23488)
- Update git extension (#24314)
- Update mermaid-to-image extension (#24549)
- Fix ScreenOCR caching issues (#24589)
- Update CODEOWNERs (67555f26)
- [Selfh.st Icons] fix icons not loading (#24569)
- Update plane extension (#24521)
- Update llm-stats extension (#24536)
- Update `Postiz` extension - year display + search content (#24576)
- Update CODEOWNERs (ea26effe)
- Add parse extension (#24551)
- Update CODEOWNERs (cf255679)
- Add linkinize extension (#24348)
- Clockify Menu Bar (#24554)
- Update kimai extension (#24541)
- Update diskutil-mac extension (#24553)
- Update CODEOWNERs (25cc0d5b)
- [Codeforces] Update types, api, and add problem filtering (#23868)
- Fix browsers-profiles crash when reading Chromium profiles (#24556)
- Update font-sniper extension (#24547)
- Update zeabur extension (#24548)
- Update CODEOWNERs (5d617ab8)
- Add apis-guru-search extension (#23264)
- Update CODEOWNERs (0d067c0b)
- Add gles-to-malioc extension (#23317)
- Update anonaddy extension (#24442)
- Update CODEOWNERs (71605f6b)
- Add django-docs extension (#24531)
- [Render] Add Deploy Status Badges (#24529)
- Update CODEOWNERs (16ecb60b)
- Update tuya-smart extension (#24376)
- Update CODEOWNERs (2356c8cb)
- Adding Convex tools extension (#24263)
- Update anna-s-archive extension (#24525)
- Update CODEOWNERs (c853f124)
- Add try extension (#23331)
- Update CODEOWNERs (d062f885)
- Add SVG Studio extension (#23182)
- Update CODEOWNERs (9971957a)
- Add bikeshare-station-status extension (#23236)
- Update CODEOWNERs (dd0c9874)
- Update python extension (#24069)
- Update CODEOWNERs (d3c6ffce)
- [Microsoft Office] Add Microsoft Office extension (#23681)
- Update CODEOWNERs (f1d971a3)
- Add vietnamese-calendar extension (#24058)
- Update CODEOWNERs (11d5fe2e)
- Add windows-to-linux-path extension (#24048)
- Update stale.yml (#24517)
- Add \'only-issue-labels\' option to stale.yml (#24516)
- Add ascending option to stale.yml workflow (#24515)
- Update stale.yml (#24513)
- Update CODEOWNERs (a7128e92)
- Add better-aliases extension (#24146)
- Remove \'AI Extension\' from exempt PR labels (#24512)
- Update quick-jump extension (#24309)
- Update CODEOWNERs (9f654226)
- [Guitar Tools] Add audio device selection for external audio interfaces (#24280)
- Update microsoft-onedrive extension (#24511)
- Update CODEOWNERs (73105d64)
- Add font-sniper extension (#24395)
- Update CODEOWNERs (d00c3cf1)
- Add llm-stats extension (#24445)
- feat: reverse from/to action @ ns-nl-search ext (#24492)
- Update CODEOWNERs (b1ed1f79)
- Update modrinth extension (#24079)
- Update CODEOWNERs (3039c994)
- Add pitchcast extension (#24501)
- Update zed-recent-projects extension (#23839)
- window-walker fix: error request timeout after 5000ms (#24497)
- Update CODEOWNERs (1db522af)
- Update window-walker extension (#24500)
- Update  Memorable Password Generator extension (#24482)
- Update CODEOWNERs (044d0fa1)
- Add Open, Copy and Download actions to Immich Assets view (#24486)
- fix(spotify-player): handle disabled menu bar command error (#24476)
- Update CODEOWNERs (7c3be347)
- Add rainaissance extension (#24161)
- [Render] Add service pinning feature (#24477)
- screenshot: fix All In One command on macOS Tahoe (#24404)
- Update CODEOWNERs (c4b13325)
- Update battery-menubar extension (#22447)
- Update CODEOWNERs (f3e03990)
- Add app-tag-manager extension (#21637)
- Replace {PR_MERGE_DATE} placeholders with actual commit dates (#24468)
- Update CODEOWNERs (8b2f9b42)
- Update bmrks extension (#19691)
- Update CODEOWNERs (3d231604)
- Add Confluence extension whiteboard search  (#24049)
- Update CODEOWNERs (2e97644a)
- Update clockify extension (#23992)
- Update CODEOWNERs (3fa54121)
- Add monocle extension (#24456)
- Update CODEOWNERs (f8ad2a17)
- Update ping extension (#24460)
- Bug/Quality-of-Life Update to Windows Terminal extension (#24285)
- Update description in package.json (#24458)
- Update CODEOWNERs (d137db9b)
- Add microsoft-onedrive extension (#24438)
- Update CODEOWNERs (1c988ffb)
- feat: Windows Support, update deps (#24459)
- Fix crash when attachedUrls is undefined (#24453)
- Add cloud shell copy connection action (#24405)
- Update harvest extension (#24451)
- Update filemaker-snippets extension (#24402)
- feat(parcel): improve internationalization, date parsing, and carrier name display (#24235)
- Update CODEOWNERs (392d05f3)
- Update apple-reminders extension (#24420)
- Update CODEOWNERs (0552cb1c)
- Add customer-io extension (#23475)
- Update CODEOWNERs (16b24147)
- feat(browsers-profiles): filter the browser profiles (#21758)
- Update CODEOWNERs (789dc1df)
- Update antigravity extension (#24175)
- Update CODEOWNERs (8d5f60f6)
- Remove myself as a contributor for extensions (#24428)
- Update CODEOWNERs (63c8ec1c)
- Update openrouter-models-finder extension (#24387)
- Fix some security vunerabilities (#24336)
- Update tasklink extension (#24406)
- Update kill-process extension (#24393)
- Update CODEOWNERs (a7a9ad13)
- Update markdown reference extension (#24422)
- [Next.js Docs] update tree sha (#24421)
- Update CODEOWNERs (7fb2cea2)
- Update random extension (#24415)
- Update CODEOWNERs (f6101c33)
- Update convert extension (#24411)
- things: optimize JXA performance with `properties()` batching (#24286)
- Update `TerminalFinder` extension - better error message when no Finder windows or accessing non-filesystem folder (#24400)
- [kill-process] Add NoLogo and NoProfile to PowerShell commands (#24341)
- Update CODEOWNERs (194e86e9)
- Safari: Improve Search Tabs performance with Swift ScriptingBridge (#23580)
- Update CODEOWNERs (2616e535)
- Remove self from contributors (#24198)
- Update CODEOWNERs (cddcf74c)
- Add chinese-character-converter extension (#24164)
- Raycast Wallpaper: Port to Windows (#23407)
- Add IP address scanning support to VirusTotal extension (#24359)
- Update Anytype MCP server (#24366)
- Update CODEOWNERs (96827d07)
- Update smart reply extension (#24367)
- Update uploadthing (#24342)
- Update CODEOWNERs (7f4412f2)
- Update dokploy extension (#23639)
- Update lokalise extension (#24337)
- Update `Terminal Finder` extension - fix kitty casing (#24382)
- Update CODEOWNERs (e2211d59)
- Add `MXroute` extension - Email hosting for your domains (#24353)
- Update cleanshotx extension (#24340)
- Update CODEOWNERs (7f78c747)
- Update `Phosphor Icons` extension - Add Windows Support (#24343)
- Update CODEOWNERs (56c74b5b)
- [Remote Desktop] Add remote desktop extension (#23608)
- Update CODEOWNERs (7603912a)
- Update single-disk-eject extension (#23423)
- Update CODEOWNERs (96960948)
- feat: add \'close window on trigger\' preference (#24075)
- Update capacities extension (#24328)
- Reduce operations per run in stale.yml (#24331)
- Update CODEOWNERs (14aee723)
- Add hevy extension (#23304)
- Update CODEOWNERs (a14400e7)
- Update music-link-converter extension (#23287)
- Update prism-launcher (#24316)
- Update CODEOWNERs (388870e6)
- [Home Assistant] History of sensor data when viewing attributes (#23713)
- Update CODEOWNERs (cbad0a18)
- Hide github-copilot extension menu when there are no assigned tasks (#23823)
- Update CODEOWNERs (3be90b2f)
- Add random-date-generator extension (#23419)
- Update apple-reminders extension (#23767)
- Update manage-clickup-tasks extension (#23730)
- Update CODEOWNERs (d264b71b)
- Add Lemniscate | System Monitor extension (#22122)
- Update CODEOWNERs (59fb938a)
- Add powertoys-tool-runner extension (#23420)
- Update lokalise extension (#24311)
- Update CODEOWNERs (0d78a802)
- Add area-code-lookup extension (#24293)
- Change install button to image link format (#24133)
- Update CODEOWNERs (93216377)
- [Visual Studio Code] Fix Windows side Issues (#23644)
- Update CODEOWNERs (dcf42876)
- Unsure calc extension (#23877)
- Update easyvariable extension (#24284)
- Update CODEOWNERs (f2667b3d)
- Add hotel-manager extension (#23322)
- Add Windows to supported platforms in package.json (#24301)
- Enable sparse checkout for API docs (#24294)
- Update CODEOWNERs (be6bbf3e)
- Add markmarks extension (#24288)
- Enable sparse checkout for API docs (#24224)
- Update CODEOWNERs (0ef33a90)
- Update google-workspace extension (#23838)
- Update CODEOWNERs (2de58f17)
- Add lokalise extension (#24254)
- Add Circleback MCP server (#24050)
- Update qoder extension (#24260)
- Update csfd extension (#24264)
- Update CODEOWNERs (e2e4adf4)
- Add LIFX Controller Extension (#24117)
- Update freeagent extension (#24255)
- Update 0x0 extension (#24225)
- [Update] [Things] Improve Query String Creation (#24271)
- Update math-functions extension (#24267)
- Update CODEOWNERs (18c50b8d)
- [Toothpick] handle error in manage + shortcuts (#24007)
- Update CODEOWNERs (6694fc42)
- Update `Music` extension - add menu bar command inspired by `Spotify` extension (#24053)
- Update CODEOWNERs (87f211de)
- Update `Password Generator` extension - remember character, numbers in "Generate Random Password" (#24212)
- Update `Wave` extension - create draft invoice + show discounts in invoice (#24269)
- Update CODEOWNERs (575ed2fd)
- Update luma extension (#24283)
- Add no as a service (#24268)
- Update CODEOWNERs (bd2601be)
- Add leader-key extension (#24244)
- Update CODEOWNERs (b423fcbf)
- Add math-functions extension (#23259)
- [iTerm] Feature Request: Open Profile (#23527)
- Enhance image optimization in pull request workflow (#24112)
- Update CODEOWNERs (f550393d)
- Add qoder extension (#24010)
- Update CODEOWNERs (50dadb5c)
- Add rust-docs extension (#23891)
- Update CODEOWNERs (da961434)
- Update claude code launcher extension (#24251)
- Update CODEOWNERs (40ab1713)
- Update image-to-ascii extension (#24219)
- Fix/windows applescript fallback (forgot to add the plataform) (#24243)
- fix(raindrop-io): add platform check to skip AppleScript on Windows/Linux (#24172)
- Update CODEOWNERs (6f95a9ac)
- Add Typst Universe extension (#24160)
- Fix: Handle undefined devices array in DeviceList component (#24103)
- Fix the missing logo from the community badge (#23889)
- Update CODEOWNERs (69d11cf3)
- Update spotify-player extension (#23374)
- Add missing commits: Open in Granola deeplink and cleanup deprecated code (#24220)
- Update CODEOWNERs (1da5f1b5)
- [Tapo Smart Devices] Add Windows Support & Migrate Client (#24167)
- [raycastbot] Improve Regex for issue-bot (#23870)
- Update CODEOWNERs (bce8c3c7)
- Update raindrop-io extension (#23306)
- Update CODEOWNERs (54c7afbd)
- Add luma extension (#24208)
- Update CODEOWNERs (8b274da2)
- Update fancy-text extension (#24215)
- Update granola extension v2.0.0 (#24132)
- Update word4you extension (#24184)
- Update paste-to-markdown extension (#24214)
- Update CODEOWNERs (ce08bf70)
- [Sourcetree] modernize + fix invalid path crash (#23987)
- Update CODEOWNERs (e63733a2)
- [Linear] upd8 shortcuts + upd8 readme (#23960)
- Update CODEOWNERs (b112ed56)
- Update `Bitly` extension - list links by group + modernize (#23943)
- Update CODEOWNERs (591045bf)
- [Tailwind CSS] upd8 shortcuts + modernize + add README (#23977)
- Update CODEOWNERs (b71b3a6d)
- [Installed Applications] make shortcuts cross-platform (#23935)
- Update CODEOWNERs (1e602c1f)
- [Google Chrome] fix infinite rendering bug in new tab (#23934)
- Update CODEOWNERs (3ffbc00c)
- Update `Terminal Finder` extension - error handling + Kitty support (#23916)
- Update CODEOWNERs (0fdc4509)
- [Toggl Track] fix toast error in menubar + modernize (#23832)
- HomeBrew: add dependency formula filter (#24116)
- Fix Window Walker Extension (#24200)
- Feat/cloud functions service and ApiErrorView for consistent API error handling across services (#24204)
- Update CODEOWNERs (551247dc)
- Update `Vim Bro` extension - add to favs and filter by favs (#23993)
- Update CODEOWNERs (8bbbe122)
- [cURL] fix valid POST fail + update more keyboard shortcuts (#24089)
- Update CODEOWNERs (1e23157e)
- Update genius-lyrics extension (#22805)
- Fix memory issues: implement streaming file processing (#24197)
- Update CODEOWNERs (c597e0ea)
- Update Zoom extension (#24086)
- Update CODEOWNERs (0536bc93)
- [Dice & Coin] custom dice + windows support (#23895)
- Update vercast extension (#23942)
- Update brave extension (#23990)
- Update google-workspace extension (#24006)
- [Shell] add option to edit executed command (#24017)
- Update tldr extension (#23887)
- Update logos-launcher extension (#24169)
- Fix window-walker pin system persistence and toast messages (#24173)
- Update `Keygen` extension - List Environments and Add new ones + add environment `Preference` (#24174)
- Update CODEOWNERs (149ce069)
- Update browser tabs extension (#24113)
- Update CODEOWNERs (03bcfa7a)
- Update `Regex Tester` extension - Modernize (#24150)
- Update `Supermemory` extension - remove memory + filter by project (#24158)
- Update pulsemcp extension (#23983)
- Update arc-helper extension (#24131)
- Update logos-launcher extension (#24152)
- Disk Usage: optimize disk space heap (#24144)
- [Pokedex] Fix crash on missing localized move names (#24162)
- Update CODEOWNERs (7199e941)
- Update flush-dns extension (#24102)
- Fixed Regression and Cleanup in Delivery Tracker (#24163)
- Update ray-code extension (#24123)
- Update CODEOWNERs (3dc8fdee)
- Add Window Walker Extension (#24119)
- Update CODEOWNERs (d1082d13)
- Update virustotal extension (#23886)
- Update odesli extension (#23884)
- Update CODEOWNERs (6812410f)
- Add `Kutt` extension (#23864)
- Update ray-code extension (#24036)
- feat: support custom pinned locally (#24038)
- [Pokedex] Fixed Move command crashing when Pokémon moves are missing in the learnset (#24054)
- Update `Oracle Cloud` extension - Manage Vaults, Secrets, Versions and Bundle (#24031)
- Update CODEOWNERs (4491754e)
- Update wayback-machine extension (#24009)
- Update rename images with ai extension (#24051)
- feat: add list account emails (#23922)
- Update raycast gemini extension (#23966)
- Update CODEOWNERs (0b15d7e9)
- Update gmail extension (#24060)
- [Language Detector] Routine maintenance (#24066)
- Update nusmods extension (#24085)
- Update CODEOWNERs (baec6456)
- Update bitwarden extension (#23970)
- Update urban-dictionary extension (#24018)
- [Raindrop.io] Add Quick Add Bookmark command (#24019)
- Update CODEOWNERs (aacd55d1)
- [Spotify Player] show error view in queue + keyboard shortcut for add + mark as `premium` (#24021)
- Update CODEOWNERs (b1983965)
- Update git commands extension (#24030)
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf187)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4bc)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f9904)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b94)
- [Iconify] Update error handling (quick fix until permanent solution) (#23353)
- Update CODEOWNERs (5dc3e90d)
- Add annotely extension (#23011)
- Update CODEOWNERs (51611e4e)
- feat: resolve toggling grayscale in macOS Tahoe (#23089)
- Update kill-process extension (#23347)
- Update CODEOWNERs (cc9da45e)
- Update `Ente Auth` extension - sanitize totp url + maintenance (#23337)
- Update CODEOWNERs (4b983700)
- Update monobank extension (#23338)
- Update monobank extension (#23336)
- Update CODEOWNERs (f0836ede)
- Rewrap text (#23167)
- Update odesli extension (#23179)
- Update CODEOWNERs (d162422a)
- Add passbolt extension (#23115)
- Update CODEOWNERs (a2137426)
- Add mail-to-self extension (#22949)
- Update code-quarkus extension (#22844)
- Update CODEOWNERs (728d063c)
- Add azure-tts-raycast-extension extension (#22768)
- Update CODEOWNERs (e1637174)
- Update 1-click-confetti extension (#23231)
- Update CODEOWNERs (952d077b)
- Add `SendPortal` extension - Manage Subscribers + Manage Templates (#23233)
- Update CODEOWNERs (d7747957)
- [Mem0] fix crash on add + modernize (#23235)
- Update CODEOWNERs (e28f31e3)
- [Notion] upd8 shortcuts + pref to use clipboard on create (#23291)
- Update Smart Calendars AI extension with image processing support (#22057)
- Update prompt-builder extension (#22952)
- Update untis extension (#23310)
- Fix brew (#23312)
- Update `Cyberduck` extension - filter by protocol + add README, images + Modernize (#23257)
- Update CODEOWNERs (ff867f66)
- Update `Cloudflare Email Routing` extension - Mention permissions in README + use SDK for listing (easier pagination) (#23258)
- Update untis extension (#23239)
- Update manifest-viewer extension (#23243)
- Docs: update for the new API release
- fix: suggestions fallback to search (#23271)
- Update CODEOWNERs (84d5d3ec)
- Dia/apple script (#23301)
- Update `cPanel` extension - Add Windows Support + Improve Invalid URL check (#23296)
- Update CODEOWNERs (fe22d803)
- Check GitHub Copilot usage (#22612)
- Update ship24-client extension (#23293)
- Update CODEOWNERs (940afc26)
- Update downloads-manager extension (#23210)
- Update prism-launcher (#23186)
- Update CODEOWNERs (c22f4843)
- Brew: Remove node-fetch dependency and use native fetch API (#23227)
- Sourcegraph: Deep Search and OAuth (#23281)
- Update google lens extension (#23283)
- Update CODEOWNERs (778f6ae2)
- Update react-docs extension (#23204)
- Update CODEOWNERs (da910d76)
- Update myanimelist-search (#23218)
- [Apple Reminders] Fix an issue where day grouping option displays duplicate days (#23237)
- Update CODEOWNERs (e8745305)
- Update gitmoji extension (#23178)
- Docs: update for the new API release
- Update CODEOWNERs (8310c9a9)
- Add unify-path-separator extension (#23055)
- Update CODEOWNERs (f583c303)
- Update wled-controller extension (#23015)
- Update CODEOWNERs (b4fc14ae)
- Add `Inbound` extension - Email API for Developers - Domain and Addresses, Send Email, Webhooks, Endpoints (#23176)
- Update openai-translator extension (#23188)
- Update monobank extension (#22929)
- Update CODEOWNERs (221531a6)
- feat(moneytree): add new extension to quickly check finances (#22954)
- Update CODEOWNERs (2006d589)
- add farrago extension (#22535)
- [spotify-player] Better error handling (#23090)
- Update CODEOWNERs (b7a0d7e2)
- Update elevenlabs-tts extension (#22852)
- Update CODEOWNERs (f2746bac)
- [Github] fix(pr): allow selecting default branch as "from" when creating a new PR (#23088)
- Update CODEOWNERs (13abd46a)
- Update browsers-profiles extension (#23079)
- Update CODEOWNERs (2d1edbc6)
- Update dia extension (#23185)
- Update CODEOWNERs (6678e1e1)
- Add json-to-toon-converter extension (#23067)
- Update dust-tt extension (#23035)
- Update kill-process extension (#23043)
- Update CODEOWNERs (3ce613e4)
- Update twenty extension (#23183)
- Update viacep extension (#23169)
- Update CODEOWNERs (cd0ca587)
- Add planwe…
kendaniels added a commit to kendaniels/raycast-extensions that referenced this pull request Mar 1, 2026
- Remember defaults on add movie
- Add Radarr add-movie defaults
- Update radarr extension
- Update betaseries extension (#25842)
- [Skills] Inline detail Panel (#25658)
- Update CODEOWNERs (f1bac6db)
- Removed two extensions (#25851)
- Update CODEOWNERs (53db7b3f)
- Add shiori-sh extension (#25757)
- Docs: update for the new API release
- feat(everything-search): allow custom cli arguments (#24607)
- Update CODEOWNERs (93ff0be4)
- Delete extensions/proton-pass-client directory (#25841)
- update (#25840)
- Update CODEOWNERs (d85419cc)
- Add kaneo-for-raycast extension (#25461)
- [Apple Reminders] Prevent accidental recurring reminders from AI (#25746)
- [Apple Notes] Fix AI tool note ID mismatch, timeout, and search filtering (#25720)
- fix: show window icons on first load in window-walker extension (#25818)
- [Namecheap] fix error when no domain dns hosts (#25827)
- Update youversion-suggest extension (#25797)
- Update fathom extension (#25807)
- Update CODEOWNERs (4f2bb5e8)
- Downloads Manager: Add file preview (#25031)
- Update CODEOWNERs (786bf32e)
- Add pbr-assistant extension (#25700)
- Update CODEOWNERs (2ba0efb1)
- Update media-converter extension (#25473)
- Update CODEOWNERs (f0efd261)
- Add zodme extension (#25459)
- Update toggle-fn extension (#25795)
- [Git Repos] Guard open-with actions against missing app preferences (#25747)
- Update CODEOWNERs (30779289)
- Update todo-list extension (#25718)
- Update CODEOWNERs (358b016a)
- Add raycast-rsync-extension extension (#24401)
- Update extend-display extension (#25778)
- Update CODEOWNERs (d6819dd0)
- Add tl;dv Meetings Extension (#25605)
- Brew/fix outdated toast cancellation (#25784)
- [Forked Extensions] Update instructions (#25789)
- Update CODEOWNERs (2888014d)
- feat: Add Zerodha Portfolio (Kite+Coin) extension (#25450)
- Update inoreader extension (#25785)
- Update CODEOWNERs (ef840cb3)
- Update github-copilot extension (#25777)
- [Brew] Show concise error toast and keep full logs in Copy Logs (#25721)
- Update CODEOWNERs (3786156c)
- Update spotify-controls extension (#25580)
- Update CODEOWNERs (ed736296)
- Add kitty extension (#25389)
- feat(menubar): add agent usage menu bar command and fix some bugs (#25769)
- Music assistant controls grouping ungrouping (#25772)
- Update CODEOWNERs (909acfde)
- Add Nowledge Mem Raycast extension (#25451)
- Update CODEOWNERs (922cf219)
- Add bambu-lab extension (#25051)
- Update CODEOWNERs (e743b9b8)
- Add lightdash-navigator extension (#25430)
- Update CODEOWNERs (8c3b23c2)
- Add promptnote extension (#25435)
- Update CODEOWNERs (36989402)
- Add blurhash extension (#25423)
- Update CODEOWNERs (4abab71e)
- Add inoreader extension (#25429)
- Update music-assistant-controls extension: add windows support (#25732)
- Update CODEOWNERs (1a11b806)
- Add kimi-for-coding extension (#25061)
- Update CODEOWNERs (2b474432)
- Add wezterm-navigator extension (#25422)
- Ext/pronounce the word (#25654)
- Update CODEOWNERs (b485e9f5)
- Add `Maybe` (finance) extension - Search Accounts + Search Transactions, Create, Delete (#25752)
- Update how long to beat extension (#25768)
- Update CODEOWNERs (66d7fa44)
- ghq: recurse until .git folder found (#25739)
- Update proton-pass extension (#25744)
- Update CODEOWNERs (96e244bb)
- Update rollcast extension (#25702)
- Update CODEOWNERs (73053578)
- Add cloudflare-ai extension (#23881)
- Update CODEOWNERs (8831c3f3)
- Add OpenClaw extension (#24848)
- things: add tag filtering and grouping preferences (#24489)
- Paste as Plain Text: Collapse surrounding whitespace when cleaning line breaks (#25628)
- Update CODEOWNERs (0bd06cff)
- Add Letta extension (#25158)
- Update CODEOWNERs (3c360678)
- Fix/trakt-manager user-agent (#25669)
- fix: Toggl Track API rate limits #25664 (#25696)
- Update CODEOWNERs (7ce69c7d)
- [Slack] Direct command for setting slack ststus (#25678)
- Update CODEOWNERs (decffa05)
- Update `Placeholder` extension - cross-platform `Keyboard` shortcuts (#25694)
- Update zed-recent-projects extension (#24821)
- Update karakeep extension (#25729)
- Update CODEOWNERs (e9f8ed29)
- Add extend-display extension (#24881)
- Update CODEOWNERs (a43fa9bc)
- Add orbstack extension (#22858)
- Update CODEOWNERs (c70ff74a)
- Add proton-pass extension (#24786)
- Update CODEOWNERs (90f1ef96)
- Add MusicBrainz extension (#25343)
- Fix double error icon and "NaN" when starting (#25710)
- Git Worktrees: Add worktree setup config and refactor command execution (#25659)
- Update CODEOWNERs (a12761f2)
- Add Teak extension (#25350)
- [Forked Extensions] Routine maintenance (#25673)
- Update `Purelymail` extension - windows support (#25674)
- Update music-assistant-controls extension (#25681)
- Update anytype extension (#25719)
- CI: add SHORT_SHA to all workflows - fix failure() handling
- CI: add SHORT_SHA to all workflows
- CI: migrate Slack message variables to native GitHub Actions expressions (#25692)
- Update CODEOWNERs (6c270e71)
- chore(remember-the-date): add missing my name as contributor (#25655)
- Update proton-pass-client extension (#25660)
- Update music extension (#25667)
- Update picgo extension (#25665)
- [Pokedex] Add ItemDex and Shiny forms (#25668)
- Update sonarr extension (#25563)
- Update CODEOWNERs (b333c7a3)
- Add voiceink extension (#24581)
- Update: Remember the Date (Add Recurring Events Support) (#25426)
- Fix figma-link-cleaner: Check clipboard before AppleScript (#25607)
- Update dependencies and platforms in package.json for the mullvad extension (#25413)
- Update CODEOWNERs (04d93fbc)
- Add agent-usage extension (#25049)
- Update vercast extension (#25388)
- Update CODEOWNERs (ef4ffcac)
- Add dagster extension (#25312)
- Update CODEOWNERs (09e5b5b8)
- Add opencode-sessions extension (#25357)
- YouTube Music: Refactor command structure and improve error handling (#25370)
- Update CODEOWNERs (cf508576)
- Update wsl-manager extension (#25132)
- Update CODEOWNERs (e60ed163)
- Deep Search Claude Sessions and Path Resolution Edge Cases (#25361)
- Update CODEOWNERs (766d4e75)
- [Helldivers] Polish & maintenance (#25632)
- Git Worktrees: Fix remove worktree infinite loading spinner (#25394)
- Update CODEOWNERs (307abaf4)
- Update google-books extension (#25235)
- Update fathom extension (#25525)
- Update CODEOWNERs (bb01f398)
- Add `Sendy` extension - view brands, view lists, check subscriber status (#25573)
- Update CODEOWNERs (04ca0dcc)
- Update base64 extension (#25625)
- Update proton-pass-client extension (#25611)
- Update awork extension (#25617)
- Update CODEOWNERs (e68a32c1)
- Add chiikawa-character extension (#25428)
- Update git extension (#25342)
- Update notion extension (#25443)
- Update CODEOWNERs (2173848e)
- Music: Add menu bar favorite/unfavorite action with stateful icon and confirmed HUD feedback (#25300)
- Brew: Improve handling of abort signal (#25584)
- Update CODEOWNERs (2995cb6b)
- Add `VirtFusion` extension (#25452)
- Update binge-clock extension (#25564)
- Update digger extension (#25583)
- Update CODEOWNERs (48ae9432)
- System Monitor: Add CPU temperature monitoring (#25577)
- Update CODEOWNERs (c7ddd952)
- Add proton-pass-client extension (#25154)
- Update sharex extension (#25590)
- Update CODEOWNERs (033e4ee4)
- Update ccusage extension (#25507)
- [Speech to Text] Add Ukrainian language option (#25576)
- Update CODEOWNERs (ec8d126b)
- Update gitlab extension (#25569)
- Update CODEOWNERs (b6ae1bb4)
- Add Pronounce the Word Extension [ext/pronounce the word] (#25270)
- Update CODEOWNERs (9be2fbf6)
- Update cloudflare-warp extension (#25567)
- fix(browser-bookmarks): Update bundled sql-wasm.wasm to match sql.js v1.13.0 (#25508)
- Update raycast-store-updates extension (#25512)
- Update CODEOWNERs (4298b500)
- brightness-control: Add Lunar-based brightness control commands (#25315)
- [Bitwarden] Fix invalid generate password options (#25551)
- Update CODEOWNERs (744a71d1)
- Add starling extension (#25254)
- [Skills] Add support for installing/removing skills (#25373)
- [Bitwarden] Fix potential stale session token issue (#25538)
- Update CODEOWNERs (19b73e3a)
- Add db-schema-explorer extension (#25197)
- Update CODEOWNERs (3f88cb76)
- Update browser-bookmarks extension (#25237)
- chore: update dependencies and modernize codebase (#24722)
- Spotify Player: Fix menu bar unloading before API fetch completes (#25349)
- Update vesslo extension (#25524)
- Update CODEOWNERs (0e7cf43b)
- Add Bunq Extension (#24851)
- ISSUE-25515: Noun Project Windows Support (#25519)
- Update audio-device extension (#25520)
- Update scheduler extension (#25494)
- Update easydict extension (#25436)
- [Shell] fix edit command not in recent section (#25470)
- Update CODEOWNERs (8600824a)
- Add dns-lookup extension (#23675)
- Update `Unkey` extension - maintenance release (#25514)
- Update CODEOWNERs (c2384bda)
- Add Get App Icon extension (#25294)
- Update audio-device extension (#25467)
- Update CODEOWNERs (6be30308)
- Add Clear File Metadata command to File Info extension [ext/clear-file-metadata] (#25272)
- Update CODEOWNERs (a781186d)
- Add subnoto extension (#25113)
- [Bitwarden] Handle unlock error, fix windows hash & support steam OTP (#25397)
- Update vesslo extension (#25506)
- Update CODEOWNERs (49512cd9)
- Add supabase extension (#25016)
- Update bnf-search-tool extension (#25392)
- Add star/unstar profiles and YouTube @brand accounts to @profile extension (#25460)
- Update CODEOWNERs (6b2d5783)
- Add code-wiki extension (#25434)
- Update accordance extension (#25310)
- Update CODEOWNERs (c4a1c197)
- Add okta-app-manager extension (#25000)
- Update CODEOWNERs (6aa0cfdf)
- Add upset-dev extension (#24915)
- Update CODEOWNERs (bea114f1)
- Add kaset-control extension (#24885)
- Fix UploaderX URL encoding for filenames with spaces (#25505)
- Update CODEOWNERs (710ab5cc)
- Add transport-nsw extension (#25089)
- Update CODEOWNERs (c9df8437)
- Add send-to-kindle extension (#25196)
- Update CODEOWNERs (f172f07b)
- Add mobile-provisions extension (#25178)
- Update `MXroute` extension - show email account usage (#25498)
- Update CODEOWNERs (9adf9a82)
- Add vietqr-transfer extension (#24602)
- Update CODEOWNERs (003fd7a7)
- Add caltask extension (#25107)
- Update CODEOWNERs (7fbf43bf)
- Add vesslo extension (#25170)
- Update CODEOWNERs (2d2b1bab)
- Add uploaderx extension (#25166)
- Update CODEOWNERs (3f1f9a95)
- Add retrace extension (#25289)
- Update CODEOWNERs (23cc87d9)
- Add flycheck-raycast extension (#25140)
- Update arc-helper extension (#25462)
- Brew: Improve memory usage (#25479)
- Update CODEOWNERs (2735ebd7)
- Update obsidian extension (#25022)
- Update CODEOWNERs (4a198be6)
- Add latex-board extension (#25168)
- [PM2] Routine maintenance (#25476)
- [Raycast Port] Routine Maintenance (#25477)
- Add "My Updates" filter, Refresh, and add CHANGELOG nav (↑/↓) to raycast-store-updates extension (#25480)
- Update raycast-store-updates extension (#25439)
- Update CODEOWNERs (a944fe57)
- Update vercast extension (#25471)
- fix(bed-time-calculator): Add Windows compatibility and contributor (#25465)
- Update anytype extension (#25444)
- Update CODEOWNERs (b74a7b30)
- [Slack] add proxy support for corporate networks (#25412)
- Update CODEOWNERs (0f8e5861)
- Update pocket extension (#25408)
- Update CODEOWNERs (8c220fa9)
- Update phosphor icons extension (#25440)
- Update CODEOWNERs (7d9c2f0d)
- Add Tella extension (#24561)
- MiniMax: Add M2.5 model support (#25427)
- Update CODEOWNERs (dc9e0203)
- feat(bed-time-calculator): Enhanced UI with color-coded sleep quality (#25405)
- Update CODEOWNERs (6bcb661b)
- Add portal-wholesale extension (#24781)
- Fix security vulnerabilities. (#25421)
- Update CODEOWNERs (e8d3af32)
- [Pokedex] Type Mastery (#25379)
- Update manus-manager extension (#25401)
- Update CODEOWNERs (afd3f3ec)
- Add figma-link-cleaner extension (#24675)
- Update CODEOWNERs (1b877989)
- Add betaseries extension (#25377)
- [Badges] Expose color picker ability to Windows (#25406)
- [Color Picker] Dismiss color picker feature (#25407)
- Update CODEOWNERs (fd71929c)
- Update google-meet extension (#24213)
- Update raycast-store-updates extension (#25399)
- Update CODEOWNERs (082e8b2b)
- Update google-calendar extension (#24261)
- Update instagram media downloader extension (#25402)
- Update CODEOWNERs (80842a18)
- Update `WiFi Password Reveal` extension -  add images + mention windows (#25396)
- Update leader-key extension (#25398)
- Update CODEOWNERs (27d18202)
- Add heptabase extension (#24462)
- Update CODEOWNERs (ed69ef34)
- Update simple-dictionary extension (#25186)
- Update CODEOWNERs (33332708)
- Update notion extension (#25244)
- Update CODEOWNERs (af155a48)
- Update browser-bookmarks extension (#25238)
- Update CODEOWNERs (403c3cee)
- Update vietnamese-calendar extension (#25360)
- Update quick-git extension (#25358)
- refactor: updated my esv-bible extension (#25362)
- Update CODEOWNERs (77d91ac3)
- Add migros extension (#24578)
- Update CODEOWNERs (83047136)
- [Statamic Docs] Show `-beta` flag for beta releases & update fallback results  (#25351)
- Update whoop extension to use Api V2 (#23013)
- Update CODEOWNERs (3c76f22a)
- [Color Picker] Add Windows Support (#25303)
- Update CODEOWNERs (1ebb02d8)
- Quick Access Infomaniak (#22431)
- Update CODEOWNERs (d4ccec5b)
- Add `Zenblog` extension (#25347)
- Update CODEOWNERs (0ea30fe8)
- Add napkin extension (#25363)
- Update CODEOWNERs (8cd6fe97)
- Add AzTU LMS extension (#25356)
- [Skills] show SKILL.md instead of repository README.md (#25352)
- [Skills] Fix broken screenshot references in README (#25348)
- Update CODEOWNERs (52a1712c)
- Add Skills Extension (#25018)
- [KeePassXC] Pin entry + copy/paste URL. (#25286)
- Workflows: Update to version v1.18.0 (#25341)
- Docs: update for the new API release
- Update CODEOWNERs (5c0f9c97)
- Add Toggle Pointer Acceleration command to mac-mouse-fix (#25247)
- refactor(github stars): update and refactor (#25278)
- Update qoder extension (#25296)
- Update bitwarden extension (#25326)
- fix(gitfox): deduplicate repositories in menu bar command (#25307)
- Update CODEOWNERs (b33caeb6)
- Add wordpress-manager extension (#24723)
- Update picgo extension (#25314)
- [Creem] update logo, images + better error msg (#25298)
- Update CODEOWNERs (f18f662b)
- Update kill node modules extension (#25327)
- Update kill-process extension (#25309)
- fix/ISSUE-25318: Fixing Todoist (currently broken for everyone i think?) (#25330)
- Update CODEOWNERs (60e8f7fa)
- Update Kill Process Extension (#25215)
- Update unicode-symbols extension (#25302)
- Update audio-device extension (#25290)
- fix(search npm): keywords bug (#25271)
- Update apple-reminders extension (#25242)
- fix(g-cloud): fixes and cleanup v1.0.4 (#25275)
- Update confluence extension (#25284)
- Update textream extension (#25268)
- Update CODEOWNERs (d978e65f)
- Add niuma-logs extension (#24656)
- Minor update to Fathom extension (#25293)
- Update CODEOWNERs (efcfa236)
- Update clipboard-type extension (#25225)
- Update CODEOWNERs (e6bc2915)
- Add SayIntentions extension (#23277)
- Things: Reduce JXA latency for list fetching (#25233)
- Update github-copilot extension (#25251)
- Update CODEOWNERs (ec90607a)
- Update cron-manager extension (#24426)
- Update CODEOWNERs (6a097d39)
- Add picgo extension (#25024)
- Update stealth-ai-tool extension (#25227)
- Update CODEOWNERs (bfe3bcb4)
- Add markdown-docs extension (#24954)
- feat(gitfox): add v4 support, menu bar, favorites, git status and more (#25253)
- Update CODEOWNERs (081224ab)
- Add kimi extension (#25250)
- Update CODEOWNERs (bd274dc5)
- Add minimax-ai extension (#25003)
- feat(tailscale): show more device info (#25262)
- Update CODEOWNERs (7e3e3312)
- Update viscosity extension (#25249)
- fix(change-case): swap case (#25263)
- Update CODEOWNERs (553a6af5)
- Add textream extension (#25257)
- Add windows support and support setting default browser per group or individual URL action types. (#25229)
- Update `Infomaniak` extensions - List Favorites in kDrive (#25252)
- Update github-copilot extension (#25205)
- Update CODEOWNERs (e6f3bf15)
- Add demo-flow extension (#25246)
- [OVH] display domain dns records cache properly (#25230)
- Update CODEOWNERs (a12116e5)
- [NSIS Reference] Upgrade ESLint to v9 (#25241)
- Update CODEOWNERs (03c88c46)
- Add osquery extension (#24696)
- Update CODEOWNERs (4da1542c)
- Add virtual-desktop-manager extension (#24897)
- Update letterboxd extension (#25224)
- Update audio-device extension (#25222)
- Update CODEOWNERs (47d2c2b3)
- Add Vim Leader Key extension (#24407)
- Update CODEOWNERs (0fe54c70)
- Add tikz extension (#24361)
- Update CODEOWNERs (40ac861d)
- Add xiaohe-query extension (#24789)
- Update apple reminders extension (#25202)
- [Chatwoot] canned_responses & teams (#25213)
- [GitHub Copilot] Fix titles and URLs for tasks without a pull request in "View Tasks" command (#25209)
- Docs: update for the new API release
- [GitHub Copilot] Allow adding additional instructions when assigning an issue to Copilot (#25192)
- [Kagi Search] delete history when api disabled (#25199)
- Update git extension (#25191)
- Switch to GitHub Copilot tasks API for loading and creating tasks (#25167)
- Misc: Update some dependencies (#25190)
- Update CODEOWNERs (668e9109)
- Update audio-device extension (#24502)
- Update CODEOWNERs (1defd208)
- feat(ios-resolutions): Add MacBooks as Devices Type (#25004)
- Update CODEOWNERs (ef0d5dc3)
- Add favoro extension (#25133)
- Update aave-search extension (#25181)
- Update CODEOWNERs (82bb7f64)
- Update cloudflare-email-routing extension (#24857)
- Minor updates to youtube summarizer (#25175)
- Update CODEOWNERs (9fbadbdf)
- Add jules-agents extension (#23850)
- Update CODEOWNERs (94718496)
- Add Wispr Flow Dictionary extension (#24644)
- Update microsoft-onedrive extension (#25173)
- Update `MXroute` extension - show domain verification key in "add domain" + catchall ux improvements (#25179)
- Update CODEOWNERs (7b0e4096)
- Add desktop-manager extension (#24899)
- Update CODEOWNERs (afb6a3f4)
- Add Dutch Article (Het of De) extension (#25136)
- Update CODEOWNERs (6d32581c)
- Update gif-search extension (#25123)
- Update CODEOWNERs (0771f77b)
- Update domainr extension (#23984)
- Update CODEOWNERs (d3a5f84a)
- Update search-npm extension (#25163)
- Update CODEOWNERs (c1271b54)
- Add wiz-controller extension (#25134)
- Update myanimelist-search extension (#24818)
- Update CODEOWNERs (f37c7e5e)
- Add sap-logon extension (#23761)
- Update CODEOWNERs (f358016e)
- Add models-dev extension (#24982)
- Update CODEOWNERs (9a722fc8)
- Add port extension (#24976)
- [OPENVPN] fix: reported issues (#25125)
- [JIRA] Fix issue link after ticket creation (#25161)
- Update CODEOWNERs (28232b88)
- Add standing-desk-tracker extension (#24216)
- Update CODEOWNERs (32259fec)
- Add gcp-ip-search extension (#24889)
- Update CODEOWNERs (aefeafd1)
- Add Withings Sync extension (#24641)
- Update CODEOWNERs (e26d83c2)
- Add rdir extension (#25137)
- Update CODEOWNERs (c626bfd4)
- Add files-shelf extension (#25151)
- Update CODEOWNERs (7432d0dd)
- Add Raycast Store Updates extension (#24891)
- Update CODEOWNERs (5180c852)
- Update laravel-docs extension (#25148)
- Update CODEOWNERs (c4b9602b)
- Add pdsls extension (#24605)
- feat(browsers-profiles): add Arc browser support (#25153)
- Update CODEOWNERs (0e480ca9)
- Add Reader Mode extension 📖 (#24369)
- Update CODEOWNERs (90d5f655)
- Add Manus Manager extension (#24037)
- Update CODEOWNERs (0b61f386)
- Add openhue extension (#24527)
- Update CODEOWNERs (62354d8c)
- Add binance-exchange extension (#25135)
- Update kill-process extension (#25147)
- Update fancy text extension (#25146)
- Update typefully extension (#25139)
- Update CODEOWNERs (5994b4b6)
- feat: Add Minttr extension (#25093)
- Update audio-device extension (#25143)
- Update vietnamese-calendar extension (#25138)
- Update microsoft-onedrive extension (#25142)
- Update CODEOWNERs (d341fa53)
- Add fake-typing-effect extension (#24323)
- Update remove-paywall extension (#25141)
- Update CODEOWNERs (6589e4e3)
- Add zacks-stock-ranking extension (#24455)
- Update CODEOWNERs (79b2c789)
- Update time-tracking extension (#25084)
- Update CODEOWNERs (7fc36db8)
- Add claude-code-config-switcher extension (#24880)
- Update CODEOWNERs (09be5d91)
- Add floaty extension (#25038)
- Update CODEOWNERs (f07b7d6c)
- Update Typefully extension (official rewrite) (#25102)
- lunatask: Add Windows support (#25096)
- Auto-populate tag when creating in filtered view (#24930) (#24935)
- Update CODEOWNERs (e4520680)
- Add telegram extension (#24322)
- Update CODEOWNERs (d45f54ac)
- Add fifteen-million-merits extension (#24170)
- Update instagram media downloader extension (#25126)
- Update CODEOWNERs (465911e2)
- Add stealth-ai-tool extension (#23837)
- [Say] Polish AI Extension configurations (#25127)
- Update CODEOWNERs (4b24f39a)
- Add quick-toshl extension (#24002)
- Update tasklink extension (#25119)
- Adds open workflow run option to the copilot view tasks command  (#25115)
- Update CODEOWNERs (124624a0)
- Add respace extension (#23570)
- Update CODEOWNERs (216cd112)
- Update `FileZilla` extension - add README to mention FileZilla needs to be in "Applications" (#25118)
- Update CODEOWNERs (65a3ee21)
- Add fitdesk extension (#24448)
- Update swift-command extension (#25110)
- Update CODEOWNERs (89bc46a2)
- Update haystack extension (#25108)
- Adds new command to github-copilot extension (#25064)
- [Virtualizor Enduser] fix distro icon (one liner) (#25103)
- Update CODEOWNERs (f04d5b66)
- Add shodan extension (#24306)
- Updating Oura extention to use OAuth2 of the updated v2 API\'s (#24544)
- Granola: Update visual identity to match new brand (v2.1.2) (#25087)
- Add Razuna entry to builtin registries (2nd) (#25094)
- Update CODEOWNERs (3a89032f)
- Update: system monitor user customizability (#24856)
- [Espanso] Improvements (#25078)
- Docs: update for the new API release
- Update CODEOWNERs (0c685fe4)
- Update audio-device extension (#24452)
- Update obsidian extension (#24312)
- Update CODEOWNERs (3a3191e3)
- Feature/dia-bookmarks-open-all-in-folder (#25034)
- ccusage: fix monthly cost projection (#25069)
- Update raycast-ollama extension (#25074)
- Update CODEOWNERs (17d76bce)
- Update `Yopass` extension - fix not working due to openpgp version (#25073)
- Update Logitech Litra extension (#25072)
- Update CODEOWNERs (ba37eb86)
- Add time-awareness extension (#24107)
- Update CODEOWNERs (70bea990)
- [Prisma Docs AI] Add Windows Support (#25029)
- Update CODEOWNERs (f716dfda)
- Update github-copilot extension (#25063)
- Update CODEOWNERs (770ec04c)
- arc: fix for opening Search Tabs or Search Spaces (#24948)
- fix(ente-auth): don\'t delete export file before re-exporting (#25032)
- Update moneybird extension: paginating contacts/lists (#24390) and repeat time entry (#23438) (#25035)
- Update CODEOWNERs (2b519e61)
- [Kagi Search] delete history + shortcuts (#25044)
- Update homeassistant extension (#25021)
- [Claude] Fix memory leak in streaming responses (#25059)
- Update react-native-directory extension (#25048)
- Fix github copilot usage command auth (#24760)
- Update yandex-smart-home extension (#25053)
- Update torbox extension (#25056)
- Update `Creem` extension - List Customers (#25055)
- [Brand Icons] Add support for changing copy action to paste (#25027)
- [United Nations] Resolves CVE-2026-25128 (#25028)
- Update CODEOWNERs (ebb2ec8e)
- Add yandex-smart-home extension (#25002)
- feat: add additional "open with" action to raycast-zoxide (#25011)
- Update CODEOWNERs (0252e418)
- Update `Text Decorator` extension - dark mode grid color (#25019)
- Update microsoft-onedrive extension (#25020)
- Update CODEOWNERs (529d5814)
- Add antisocials extension (#25006)
- Fix menubar when printer not printing (#25013)
- Update CODEOWNERs (a1c5bff0)
- Add qmd extension (#24888)
- Update CODEOWNERs (f7cd6aba)
- Add menu bar progress to Prusa extension (#25007)
- Update music-assistant-controls extension (#25009)
- ccusage: support tilde expansion in custom npx path (#24095)
- Granola: Add AI Tools Shared Documents Support (v2.1.1) (#25010)
- Granola: Add Shared Documents Support (v2.1.0) (#25008)
- Update upcoming-holidays extension (#24994)
- Fix Parcel carrier dropdown default selection (#24991)
- Feat: add new commands for Ext/u301 URL Shortener (#24959)
- Update CODEOWNERs (b8584fde)
- Update typst-symbols extension (#24727)
- Update CODEOWNERs (600b1f04)
- Add cursor-costs extension (#23468)
- Update CODEOWNERs (e33e20c2)
- Add gitcdn extension (#23988)
- Update vercast extension (#24953)
- Update CODEOWNERs (0e5214e0)
- Update `Google Fonts` extension - cross-platform keyboard shortcuts (#24968)
- Update CODEOWNERs (50eb676a)
- Add `NicNames` extension (#24984)
- [Wave] last sent, last viewed - in invoice (#24962)
- Update CODEOWNERs (2863ff3c)
- Update summarize-youtube-video-with-ai extension (#24952)
- Update CODEOWNERs (22d92306)
- feat(parcel): Add Windows Platform Support (#24978)
- Update CODEOWNERs (aa9d09fc)
- Add make-dot-com extension (#23927)
- Update CODEOWNERs (16394062)
- Add iching-divination extension (#24114)
- fix: transcript for YouTube URLs with query params and nested caption XML (#24943)
- Update CODEOWNERs (6ff3cfc7)
- Add botpress extension (#24849)
- Update CODEOWNERs (be06df01)
- Add singularityapp extension (#24832)
- Update CODEOWNERs (404ea76a)
- Update pagerduty extension (#24797)
- fix(json-format): improve performance for large JSON rendering (#24894)
- Update CODEOWNERs (fb689e0b)
- Update google-calendar extension (#24918)
- Update CODEOWNERs (42b3d05d)
- Update apple-reminders extension (#24919)
- Update CODEOWNERs (4584caa1)
-  Avoid overlapping invocations in raytaskwarrior (#24924)
- Update CODEOWNERs (ffff47b2)
- Update cursor agents extension (#23948)
- Video Downloader: Add MP3 format and fix loading issues (#23777)
- Update torbox extension (#24925)
- Update `OVHcloud` extension - Update Domain & DNS Service Information (renewal) (#24923)
- Update meme-generator extension (#24931)
- Update arc-helper extension (#24926)
- Update CODEOWNERs (785e355c)
- Update word-count extension (#24938)
- Fix TypeScript errors in SpinupWP extension (#24940)
- Update CODEOWNERs (0245ed09)
- Update yafw extension (#24908)
- UK layout fix (#24927)
- Update hijri-converter extension (#24921)
- Fork-Repositories: Add Windows support (#24910)
- Enable Windows support for Aegis by upgrading Raycast API (#24914)
- Update CODEOWNERs (582ddbbf)
- Update ccusage extension (#24080)
- Hopefully fix memory leak caused by zombie processes (#24895)
- Update CODEOWNERs (dc73c794)
- feat(mute-microphone): add native Windows support via PowerShell (#24640)
- Update CODEOWNERs (ac538959)
- Add youtube-highlights extension (#23756)
- Brew: Add optional split-view metadata panel for search results (#24901)
- Update CODEOWNERs (605195ef)
- [Word Count] Add Raycast Cross-Extension badge to readme (#24904)
- fix: fetching transcripts to summarize (#24902)
- Update T3 Chat extension - Models, preferences (#24905)
- Update CODEOWNERs (0bb666b4)
- Update better-uptime extension (#24903)
- Update CODEOWNERs (305be042)
- Add series-rating-graphs extension (#23901)
- Update CODEOWNERs (4ab1e089)
- [feat] add npm-claimer extension (#24754)
- Update CODEOWNERs (61c3abca)
- Add TorBox extension (#24121)
- Update CODEOWNERs (fd436796)
- Add hijri-converter extension (#23653)
- Update expectations message for initial review timeline (#24893)
- Update CODEOWNERs (551660c0)
- Update nixpkgs-search extension (#24864)
- Update CODEOWNERs (860b4b66)
- Add digger extension 🪏 (#24690)
- Update claudecast extension (#24887)
- Update CODEOWNERs (e1645ed0)
- Add spinupwp extension (#24804)
- Update CODEOWNERs (05b1b159)
- Update linkwarden extension (#24854)
- Update linkding extension (#24863)
- Update Zshrc Manager Extension (#24830)
- Update `MXroute` extension - add email from emptyview + view dns (#24876)
- Update CODEOWNERs (91439acb)
- Add basalt-wallpapers extension (#24805)
- Fork Repositories: Add support for reading `repositories.toml`, falling back to the old `repositories.json`. (#24878)
- mollie-for-raycast: Fix TypeScript type errors (#24845)
- Update CODEOWNERs (94971ce6)
- Add Supabase Cron Monitor extension (#24072)
- Fix/typeerror non array filter (#24869)
- Update CODEOWNERs (eb71c068)
- Add custom-icon extension (#24829)
- Update google search extension (#24862)
- Update CODEOWNERs (ee79688d)
- Add prompts-chat extension (#24275)
- Update CODEOWNERs (3f76e33c)
- Add remix-icon extension (#24634)
- Update CODEOWNERs (29bf496e)
- Add 42-api extension (#24784)
- Update CODEOWNERs (aace337f)
- Add Pin.app extension (#24827)
- Update youversion-suggest extension (#24833)
- Update CODEOWNERs (0fa80f77)
- Update remove-paywall extension (#24834)
- Update CODEOWNERs (a15956e9)
- Add ets2-ats-profiles extension (#24730)
- Update CODEOWNERs (27afe631)
- Add fumadocs extension (#24836)
- Update `Umami` extension - fix wrong web stats in cloud v3 (#24841)
- Update CODEOWNERs (ae0068a4)
- Add mollie-for-raycast extension (#22897)
- Update CODEOWNERs (40e16ba9)
- Add Next Lens extension (#24194)
- Update `Umami` extension - view websites (menu bar) (#24828)
- Update CODEOWNERs (ddd577b5)
- Add manus extension (#24166)
- Update CODEOWNERs (b9fa5786)
- feat: Add Pagination Support to My Starred Repositories (#24604)
- Update `Postiz` extension - in Create: add x provider settings, select date (#24822)
- Update CODEOWNERs (d35475de)
- feat: BPM copied to clipboard w/ confirmation toast (#24594)
- Update CODEOWNERs (837906c4)
- Update typer extension (#24826)
- Update CODEOWNERs (c3b05fc8)
- New Extension: LocalSend (#23594)
- Update hammerspoon extension (#24810)
- Update CODEOWNERs (c5f8ec32)
- Update get favicon extension (#24812)
- Update quick-jump extension (#24808)
- Update CODEOWNERs (7e3c9aaf)
- [Cloudflare] Add View Workers command (#24815)
- Update CODEOWNERs (fb1bc0a3)
- Add Query.Domains extension (#24606)
- Update CODEOWNERs (2977b6c6)
- Add claudecast extension (#24692)
- Update CODEOWNERs (c19e0729)
- Add font-converter extension (#23226)
- Update `Plane` extension - show icon state color in project work items (#24803)
- Update CODEOWNERs (d824c70a)
- Add proton-mail extension (#24734)
- Update CODEOWNERs (7a8be8a1)
- Add ios-resolution extension (#24799)
- Misc: Fix some security vulnerabilities (#24802)
- Update CODEOWNERs (2c9d5b95)
- Spotify Player: Add AI Playlist Tuning (#24768)
- Update `Porkbun` extension - mention \'opt in all domains\' settings (#24798)
- Update CODEOWNERs (93636167)
- Add rclone-raycast extension (#23486)
- Update CODEOWNERs (576c7396)
- Add 40 Questions Extension (#23921)
- Docs: update for the new API release
- Update bilibili extension (#24742)
- Feature/tags and subtasks (#24346)
- Update google-chrome-profiles extension (#24147)
- Update CODEOWNERs (9d925cb3)
- Update sql-format extension (#24600)
- Update CODEOWNERs (f968ce21)
- Add pomo extension (#24138)
- Update CODEOWNERs (5a979067)
- Update how long to beat extension (#24763)
- Update CODEOWNERs (2b1c9fdf)
- Add bklit-analytics extension (#23936)
- issue-24775: BambooHR: Copy Email command, Windows Support, API deps update (#24779)
- Update CODEOWNERs (223fb837)
- Add LaunchContext support to Aerospace extension (#24232)
- Update CODEOWNERs (fd2fc46e)
- Add sharex extension (#24074)
- Update CODEOWNERs (b118b114)
- Update `Simple Dictionary` extension - set default language in Preferences (#24764)
- Update CODEOWNERs (13db8d55)
- Update `Font Sniper` extension + modernize + Windows compatible shortcut for "Select All" / "Deselect All" (#24769)
- Update `Wave` extension - In **Invoices**, Show Customer Name, Invoice Date, Invoice Due Date and Amount Due (#24752)
- disk-usage: handle deleted files (#24397)
- Update git extension (#24667)
- Update zed-recent-projects extension - refactor and cleanup, add support for multi-folder workspaces (#24595)
- Update CODEOWNERs (a308a21a)
- Add table-converter extension (#24302)
- Update CODEOWNERs (c64e6feb)
- [can-i-use] windows support (#24753)
- Update django-docs extension (#24737)
- Added deploy key auth (#24672)
- Update parse extension (#24678)
- Update `Attio` extension - edit task (#24745)
- Update CODEOWNERs (12283fcf)
- Add go-links extension (#24043)
- Update CODEOWNERs (f0686292)
- Add simple-login extension (#24712)
- Docs: update for the new API release
- [Render] Configurable Default Action preference (#24555)
- Update CODEOWNERs (72e4ef8c)
- Add flux extension (#24550)
- Update mermaid-to-image extension (#24740)
- [Parse] Add Windows Support and fix infinite loop problem (#24611)
- feat(slack): Support multi-word search in Open Channel and Send Message (#24639)
- Update CODEOWNERs (139f3cf9)
- Update vercast extension (#24719)
- Improve code quality and fix bugs (#24681)
- markmarks extension: add support for Dia browser (#24684)
- Update CODEOWNERs (fce6d226)
- Update `Ntfy` extension - optional access token in Preferences for protected topics (#24729)
- Update vietnamese-calendar extension (#24724)
- Update vercast extension (#24718)
- Update CODEOWNERs (9e18bdc5)
- Add mnemosyne extension (#23592)
- Update CODEOWNERs (2e04626a)
- Move self to past contributor (#24717)
- Update proton-authenticator extension (#24688)
- Update `Bluesky` extension - modernize + fix menu bar icon (#24694)
- feat: add site-documentation auto labelling (#24700)
- Update CODEOWNERs (794e552c)
- Update linkinize extension (#24662)
- Comment out PR assignment logic (#24698)
- Update CODEOWNERs (02bb8b00)
- Add mac-mouse-fix extension (#23654)
- Update CODEOWNERs (ff1a1bce)
- Update lark extension (#23994)
- Update CODEOWNERs (18fd7871)
- Add hugeicons-ui extension (#23904)
- Fix invalid date error in transaction create form (#24686)
- Update CODEOWNERs (802beb40)
- Update word-count to support counting text in screenshots (#22892)
- Update CODEOWNERs (8721c756)
- Update ScreenOCR extension with cross-extension conventions (#24248)
- [RedNote] Fix broken sign strategy (#24674)
- Update `Postiz` extension - char counter in new post (#24682)
- Update `Umami` extension - view admin users (#24683)
- [Forked Extensions] Add support for managing sparse-checkout dirs (#24677)
- Update harvest extension (#24680)
- Update microsoft-onedrive extension (#24666)
- Update CODEOWNERs (b08ca725)
- [Selfh.st Icons] Add Windows Support (#24617)
- Update CODEOWNERs (a5a5fcf4)
- Add stashit extension (#23688)
- Update CODEOWNERs (342fa991)
- Update font-sniper extension (#24663)
- Update CODEOWNERs (f952934b)
- Add tv-remote extension (#23825)
- Update CODEOWNERs (2d839bdd)
- Update `Cron Description` extension - set cron timezone + modernize (#24659)
- Update CODEOWNERs (b31ea7fd)
- Add raycast-weekly-newsletter extension (#23827)
- Update CODEOWNERs (ffc69f49)
- Add bnf-search-tool extension (#23593)
- Update PDF Tools extension to support third-party file managers (#23623)
- Update CODEOWNERs (67622946)
- Add Gemini 3 to raycast-gemini extension (#24632)
- Update microsoft-onedrive extension (#24658)
- Update CODEOWNERs (394020ec)
- Add `DreamHost` extension - Manage DNS Records (#24616)
- Update mail extension (#24647)
- Update llm-stats extension (#24629)
- [Postiz] state filter + jump to today (#24630)
- Update CODEOWNERs (1bedb7ad)
- Add kagi to zen (#24598)
- Update try extension (#24653)
- Update CODEOWNERs (7c235e75)
- Add winutils extension (#23267)
- Update CODEOWNERs (6d28baff)
- Update change-case extension (#23363)
- Update CODEOWNERs (83d5e3ea)
- New Extension: Add ThermoConvert (#24202)
- Update CODEOWNERs (4602f28b)
- Add biome extension (#23400)
- Update CODEOWNERs (6b7abc2f)
- Add fix-helper extension (#23217)
- Update `Neon` extension - Create PSQL 18 + New Logo (#24631)
- Update microsoft-onedrive extension (#24635)
- Update CODEOWNERs (be1ffe55)
- Update git-repos extension (#24624)
- Update CODEOWNERs (3edca421)
- Update `System Monitor` extension - toggle display mode (free vs. used) + add README (#24622)
- Update CODEOWNERs (8a59d27f)
- Add tabby extension (#23627)
- Update minio-manager extension (#23488)
- Update git extension (#24314)
- Update mermaid-to-image extension (#24549)
- Fix ScreenOCR caching issues (#24589)
- Update CODEOWNERs (67555f26)
- [Selfh.st Icons] fix icons not loading (#24569)
- Update plane extension (#24521)
- Update llm-stats extension (#24536)
- Update `Postiz` extension - year display + search content (#24576)
- Update CODEOWNERs (ea26effe)
- Add parse extension (#24551)
- Update CODEOWNERs (cf255679)
- Add linkinize extension (#24348)
- Clockify Menu Bar (#24554)
- Update kimai extension (#24541)
- Update diskutil-mac extension (#24553)
- Update CODEOWNERs (25cc0d5b)
- [Codeforces] Update types, api, and add problem filtering (#23868)
- Fix browsers-profiles crash when reading Chromium profiles (#24556)
- Update font-sniper extension (#24547)
- Update zeabur extension (#24548)
- Update CODEOWNERs (5d617ab8)
- Add apis-guru-search extension (#23264)
- Update CODEOWNERs (0d067c0b)
- Add gles-to-malioc extension (#23317)
- Update anonaddy extension (#24442)
- Update CODEOWNERs (71605f6b)
- Add django-docs extension (#24531)
- [Render] Add Deploy Status Badges (#24529)
- Update CODEOWNERs (16ecb60b)
- Update tuya-smart extension (#24376)
- Update CODEOWNERs (2356c8cb)
- Adding Convex tools extension (#24263)
- Update anna-s-archive extension (#24525)
- Update CODEOWNERs (c853f124)
- Add try extension (#23331)
- Update CODEOWNERs (d062f885)
- Add SVG Studio extension (#23182)
- Update CODEOWNERs (9971957a)
- Add bikeshare-station-status extension (#23236)
- Update CODEOWNERs (dd0c9874)
- Update python extension (#24069)
- Update CODEOWNERs (d3c6ffce)
- [Microsoft Office] Add Microsoft Office extension (#23681)
- Update CODEOWNERs (f1d971a3)
- Add vietnamese-calendar extension (#24058)
- Update CODEOWNERs (11d5fe2e)
- Add windows-to-linux-path extension (#24048)
- Update stale.yml (#24517)
- Add \'only-issue-labels\' option to stale.yml (#24516)
- Add ascending option to stale.yml workflow (#24515)
- Update stale.yml (#24513)
- Update CODEOWNERs (a7128e92)
- Add better-aliases extension (#24146)
- Remove \'AI Extension\' from exempt PR labels (#24512)
- Update quick-jump extension (#24309)
- Update CODEOWNERs (9f654226)
- [Guitar Tools] Add audio device selection for external audio interfaces (#24280)
- Update microsoft-onedrive extension (#24511)
- Update CODEOWNERs (73105d64)
- Add font-sniper extension (#24395)
- Update CODEOWNERs (d00c3cf1)
- Add llm-stats extension (#24445)
- feat: reverse from/to action @ ns-nl-search ext (#24492)
- Update CODEOWNERs (b1ed1f79)
- Update modrinth extension (#24079)
- Update CODEOWNERs (3039c994)
- Add pitchcast extension (#24501)
- Update zed-recent-projects extension (#23839)
- window-walker fix: error request timeout after 5000ms (#24497)
- Update CODEOWNERs (1db522af)
- Update window-walker extension (#24500)
- Update  Memorable Password Generator extension (#24482)
- Update CODEOWNERs (044d0fa1)
- Add Open, Copy and Download actions to Immich Assets view (#24486)
- fix(spotify-player): handle disabled menu bar command error (#24476)
- Update CODEOWNERs (7c3be347)
- Add rainaissance extension (#24161)
- [Render] Add service pinning feature (#24477)
- screenshot: fix All In One command on macOS Tahoe (#24404)
- Update CODEOWNERs (c4b13325)
- Update battery-menubar extension (#22447)
- Update CODEOWNERs (f3e03990)
- Add app-tag-manager extension (#21637)
- Replace {PR_MERGE_DATE} placeholders with actual commit dates (#24468)
- Update CODEOWNERs (8b2f9b42)
- Update bmrks extension (#19691)
- Update CODEOWNERs (3d231604)
- Add Confluence extension whiteboard search  (#24049)
- Update CODEOWNERs (2e97644a)
- Update clockify extension (#23992)
- Update CODEOWNERs (3fa54121)
- Add monocle extension (#24456)
- Update CODEOWNERs (f8ad2a17)
- Update ping extension (#24460)
- Bug/Quality-of-Life Update to Windows Terminal extension (#24285)
- Update description in package.json (#24458)
- Update CODEOWNERs (d137db9b)
- Add microsoft-onedrive extension (#24438)
- Update CODEOWNERs (1c988ffb)
- feat: Windows Support, update deps (#24459)
- Fix crash when attachedUrls is undefined (#24453)
- Add cloud shell copy connection action (#24405)
- Update harvest extension (#24451)
- Update filemaker-snippets extension (#24402)
- feat(parcel): improve internationalization, date parsing, and carrier name display (#24235)
- Update CODEOWNERs (392d05f3)
- Update apple-reminders extension (#24420)
- Update CODEOWNERs (0552cb1c)
- Add customer-io extension (#23475)
- Update CODEOWNERs (16b24147)
- feat(browsers-profiles): filter the browser profiles (#21758)
- Update CODEOWNERs (789dc1df)
- Update antigravity extension (#24175)
- Update CODEOWNERs (8d5f60f6)
- Remove myself as a contributor for extensions (#24428)
- Update CODEOWNERs (63c8ec1c)
- Update openrouter-models-finder extension (#24387)
- Fix some security vunerabilities (#24336)
- Update tasklink extension (#24406)
- Update kill-process extension (#24393)
- Update CODEOWNERs (a7a9ad13)
- Update markdown reference extension (#24422)
- [Next.js Docs] update tree sha (#24421)
- Update CODEOWNERs (7fb2cea2)
- Update random extension (#24415)
- Update CODEOWNERs (f6101c33)
- Update convert extension (#24411)
- things: optimize JXA performance with `properties()` batching (#24286)
- Update `TerminalFinder` extension - better error message when no Finder windows or accessing non-filesystem folder (#24400)
- [kill-process] Add NoLogo and NoProfile to PowerShell commands (#24341)
- Update CODEOWNERs (194e86e9)
- Safari: Improve Search Tabs performance with Swift ScriptingBridge (#23580)
- Update CODEOWNERs (2616e535)
- Remove self from contributors (#24198)
- Update CODEOWNERs (cddcf74c)
- Add chinese-character-converter extension (#24164)
- Raycast Wallpaper: Port to Windows (#23407)
- Add IP address scanning support to VirusTotal extension (#24359)
- Update Anytype MCP server (#24366)
- Update CODEOWNERs (96827d07)
- Update smart reply extension (#24367)
- Update uploadthing (#24342)
- Update CODEOWNERs (7f4412f2)
- Update dokploy extension (#23639)
- Update lokalise extension (#24337)
- Update `Terminal Finder` extension - fix kitty casing (#24382)
- Update CODEOWNERs (e2211d59)
- Add `MXroute` extension - Email hosting for your domains (#24353)
- Update cleanshotx extension (#24340)
- Update CODEOWNERs (7f78c747)
- Update `Phosphor Icons` extension - Add Windows Support (#24343)
- Update CODEOWNERs (56c74b5b)
- [Remote Desktop] Add remote desktop extension (#23608)
- Update CODEOWNERs (7603912a)
- Update single-disk-eject extension (#23423)
- Update CODEOWNERs (96960948)
- feat: add \'close window on trigger\' preference (#24075)
- Update capacities extension (#24328)
- Reduce operations per run in stale.yml (#24331)
- Update CODEOWNERs (14aee723)
- Add hevy extension (#23304)
- Update CODEOWNERs (a14400e7)
- Update music-link-converter extension (#23287)
- Update prism-launcher (#24316)
- Update CODEOWNERs (388870e6)
- [Home Assistant] History of sensor data when viewing attributes (#23713)
- Update CODEOWNERs (cbad0a18)
- Hide github-copilot extension menu when there are no assigned tasks (#23823)
- Update CODEOWNERs (3be90b2f)
- Add random-date-generator extension (#23419)
- Update apple-reminders extension (#23767)
- Update manage-clickup-tasks extension (#23730)
- Update CODEOWNERs (d264b71b)
- Add Lemniscate | System Monitor extension (#22122)
- Update CODEOWNERs (59fb938a)
- Add powertoys-tool-runner extension (#23420)
- Update lokalise extension (#24311)
- Update CODEOWNERs (0d78a802)
- Add area-code-lookup extension (#24293)
- Change install button to image link format (#24133)
- Update CODEOWNERs (93216377)
- [Visual Studio Code] Fix Windows side Issues (#23644)
- Update CODEOWNERs (dcf42876)
- Unsure calc extension (#23877)
- Update easyvariable extension (#24284)
- Update CODEOWNERs (f2667b3d)
- Add hotel-manager extension (#23322)
- Add Windows to supported platforms in package.json (#24301)
- Enable sparse checkout for API docs (#24294)
- Update CODEOWNERs (be6bbf3e)
- Add markmarks extension (#24288)
- Enable sparse checkout for API docs (#24224)
- Update CODEOWNERs (0ef33a90)
- Update google-workspace extension (#23838)
- Update CODEOWNERs (2de58f17)
- Add lokalise extension (#24254)
- Add Circleback MCP server (#24050)
- Update qoder extension (#24260)
- Update csfd extension (#24264)
- Update CODEOWNERs (e2e4adf4)
- Add LIFX Controller Extension (#24117)
- Update freeagent extension (#24255)
- Update 0x0 extension (#24225)
- [Update] [Things] Improve Query String Creation (#24271)
- Update math-functions extension (#24267)
- Update CODEOWNERs (18c50b8d)
- [Toothpick] handle error in manage + shortcuts (#24007)
- Update CODEOWNERs (6694fc42)
- Update `Music` extension - add menu bar command inspired by `Spotify` extension (#24053)
- Update CODEOWNERs (87f211de)
- Update `Password Generator` extension - remember character, numbers in "Generate Random Password" (#24212)
- Update `Wave` extension - create draft invoice + show discounts in invoice (#24269)
- Update CODEOWNERs (575ed2fd)
- Update luma extension (#24283)
- Add no as a service (#24268)
- Update CODEOWNERs (bd2601be)
- Add leader-key extension (#24244)
- Update CODEOWNERs (b423fcbf)
- Add math-functions extension (#23259)
- [iTerm] Feature Request: Open Profile (#23527)
- Enhance image optimization in pull request workflow (#24112)
- Update CODEOWNERs (f550393d)
- Add qoder extension (#24010)
- Update CODEOWNERs (50dadb5c)
- Add rust-docs extension (#23891)
- Update CODEOWNERs (da961434)
- Update claude code launcher extension (#24251)
- Update CODEOWNERs (40ab1713)
- Update image-to-ascii extension (#24219)
- Fix/windows applescript fallback (forgot to add the plataform) (#24243)
- fix(raindrop-io): add platform check to skip AppleScript on Windows/Linux (#24172)
- Update CODEOWNERs (6f95a9ac)
- Add Typst Universe extension (#24160)
- Fix: Handle undefined devices array in DeviceList component (#24103)
- Fix the missing logo from the community badge (#23889)
- Update CODEOWNERs (69d11cf3)
- Update spotify-player extension (#23374)
- Add missing commits: Open in Granola deeplink and cleanup deprecated code (#24220)
- Update CODEOWNERs (1da5f1b5)
- [Tapo Smart Devices] Add Windows Support & Migrate Client (#24167)
- [raycastbot] Improve Regex for issue-bot (#23870)
- Update CODEOWNERs (bce8c3c7)
- Update raindrop-io extension (#23306)
- Update CODEOWNERs (54c7afbd)
- Add luma extension (#24208)
- Update CODEOWNERs (8b274da2)
- Update fancy-text extension (#24215)
- Update granola extension v2.0.0 (#24132)
- Update word4you extension (#24184)
- Update paste-to-markdown extension (#24214)
- Update CODEOWNERs (ce08bf70)
- [Sourcetree] modernize + fix invalid path crash (#23987)
- Update CODEOWNERs (e63733a2)
- [Linear] upd8 shortcuts + upd8 readme (#23960)
- Update CODEOWNERs (b112ed56)
- Update `Bitly` extension - list links by group + modernize (#23943)
- Update CODEOWNERs (591045bf)
- [Tailwind CSS] upd8 shortcuts + modernize + add README (#23977)
- Update CODEOWNERs (b71b3a6d)
- [Installed Applications] make shortcuts cross-platform (#23935)
- Update CODEOWNERs (1e602c1f)
- [Google Chrome] fix infinite rendering bug in new tab (#23934)
- Update CODEOWNERs (3ffbc00c)
- Update `Terminal Finder` extension - error handling + Kitty support (#23916)
- Update CODEOWNERs (0fdc4509)
- [Toggl Track] fix toast error in menubar + modernize (#23832)
- HomeBrew: add dependency formula filter (#24116)
- Fix Window Walker Extension (#24200)
- Feat/cloud functions service and ApiErrorView for consistent API error handling across services (#24204)
- Update CODEOWNERs (551247dc)
- Update `Vim Bro` extension - add to favs and filter by favs (#23993)
- Update CODEOWNERs (8bbbe122)
- [cURL] fix valid POST fail + update more keyboard shortcuts (#24089)
- Update CODEOWNERs (1e23157e)
- Update genius-lyrics extension (#22805)
- Fix memory issues: implement streaming file processing (#24197)
- Update CODEOWNERs (c597e0ea)
- Update Zoom extension (#24086)
- Update CODEOWNERs (0536bc93)
- [Dice & Coin] custom dice + windows support (#23895)
- Update vercast extension (#23942)
- Update brave extension (#23990)
- Update google-workspace extension (#24006)
- [Shell] add option to edit executed command (#24017)
- Update tldr extension (#23887)
- Update logos-launcher extension (#24169)
- Fix window-walker pin system persistence and toast messages (#24173)
- Update `Keygen` extension - List Environments and Add new ones + add environment `Preference` (#24174)
- Update CODEOWNERs (149ce069)
- Update browser tabs extension (#24113)
- Update CODEOWNERs (03bcfa7a)
- Update `Regex Tester` extension - Modernize (#24150)
- Update `Supermemory` extension - remove memory + filter by project (#24158)
- Update pulsemcp extension (#23983)
- Update arc-helper extension (#24131)
- Update logos-launcher extension (#24152)
- Disk Usage: optimize disk space heap (#24144)
- [Pokedex] Fix crash on missing localized move names (#24162)
- Update CODEOWNERs (7199e941)
- Update flush-dns extension (#24102)
- Fixed Regression and Cleanup in Delivery Tracker (#24163)
- Update ray-code extension (#24123)
- Update CODEOWNERs (3dc8fdee)
- Add Window Walker Extension (#24119)
- Update CODEOWNERs (d1082d13)
- Update virustotal extension (#23886)
- Update odesli extension (#23884)
- Update CODEOWNERs (6812410f)
- Add `Kutt` extension (#23864)
- Update ray-code extension (#24036)
- feat: support custom pinned locally (#24038)
- [Pokedex] Fixed Move command crashing when Pokémon moves are missing in the learnset (#24054)
- Update `Oracle Cloud` extension - Manage Vaults, Secrets, Versions and Bundle (#24031)
- Update CODEOWNERs (4491754e)
- Update wayback-machine extension (#24009)
- Update rename images with ai extension (#24051)
- feat: add list account emails (#23922)
- Update raycast gemini extension (#23966)
- Update CODEOWNERs (0b15d7e9)
- Update gmail extension (#24060)
- [Language Detector] Routine maintenance (#24066)
- Update nusmods extension (#24085)
- Update CODEOWNERs (baec6456)
- Update bitwarden extension (#23970)
- Update urban-dictionary extension (#24018)
- [Raindrop.io] Add Quick Add Bookmark command (#24019)
- Update CODEOWNERs (aacd55d1)
- [Spotify Player] show error view in queue + keyboard shortcut for add + mark as `premium` (#24021)
- Update CODEOWNERs (b1983965)
- Update git commands extension (#24030)
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf187)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4bc)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f9904)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen (#23355)
- Update CODEOWNERs (99e56b…
raycastbot added a commit that referenced this pull request Mar 4, 2026
* Update radarr extension

- Remember defaults on add movie
- Add Radarr add-movie defaults
- Update radarr extension
- Update betaseries extension (#25842)
- [Skills] Inline detail Panel (#25658)
- Update CODEOWNERs (f1bac6db)
- Removed two extensions (#25851)
- Update CODEOWNERs (53db7b3f)
- Add shiori-sh extension (#25757)
- Docs: update for the new API release
- feat(everything-search): allow custom cli arguments (#24607)
- Update CODEOWNERs (93ff0be4)
- Delete extensions/proton-pass-client directory (#25841)
- update (#25840)
- Update CODEOWNERs (d85419cc)
- Add kaneo-for-raycast extension (#25461)
- [Apple Reminders] Prevent accidental recurring reminders from AI (#25746)
- [Apple Notes] Fix AI tool note ID mismatch, timeout, and search filtering (#25720)
- fix: show window icons on first load in window-walker extension (#25818)
- [Namecheap] fix error when no domain dns hosts (#25827)
- Update youversion-suggest extension (#25797)
- Update fathom extension (#25807)
- Update CODEOWNERs (4f2bb5e8)
- Downloads Manager: Add file preview (#25031)
- Update CODEOWNERs (786bf32e)
- Add pbr-assistant extension (#25700)
- Update CODEOWNERs (2ba0efb1)
- Update media-converter extension (#25473)
- Update CODEOWNERs (f0efd261)
- Add zodme extension (#25459)
- Update toggle-fn extension (#25795)
- [Git Repos] Guard open-with actions against missing app preferences (#25747)
- Update CODEOWNERs (30779289)
- Update todo-list extension (#25718)
- Update CODEOWNERs (358b016a)
- Add raycast-rsync-extension extension (#24401)
- Update extend-display extension (#25778)
- Update CODEOWNERs (d6819dd0)
- Add tl;dv Meetings Extension (#25605)
- Brew/fix outdated toast cancellation (#25784)
- [Forked Extensions] Update instructions (#25789)
- Update CODEOWNERs (2888014d)
- feat: Add Zerodha Portfolio (Kite+Coin) extension (#25450)
- Update inoreader extension (#25785)
- Update CODEOWNERs (ef840cb3)
- Update github-copilot extension (#25777)
- [Brew] Show concise error toast and keep full logs in Copy Logs (#25721)
- Update CODEOWNERs (3786156c)
- Update spotify-controls extension (#25580)
- Update CODEOWNERs (ed736296)
- Add kitty extension (#25389)
- feat(menubar): add agent usage menu bar command and fix some bugs (#25769)
- Music assistant controls grouping ungrouping (#25772)
- Update CODEOWNERs (909acfde)
- Add Nowledge Mem Raycast extension (#25451)
- Update CODEOWNERs (922cf219)
- Add bambu-lab extension (#25051)
- Update CODEOWNERs (e743b9b8)
- Add lightdash-navigator extension (#25430)
- Update CODEOWNERs (8c3b23c2)
- Add promptnote extension (#25435)
- Update CODEOWNERs (36989402)
- Add blurhash extension (#25423)
- Update CODEOWNERs (4abab71e)
- Add inoreader extension (#25429)
- Update music-assistant-controls extension: add windows support (#25732)
- Update CODEOWNERs (1a11b806)
- Add kimi-for-coding extension (#25061)
- Update CODEOWNERs (2b474432)
- Add wezterm-navigator extension (#25422)
- Ext/pronounce the word (#25654)
- Update CODEOWNERs (b485e9f5)
- Add `Maybe` (finance) extension - Search Accounts + Search Transactions, Create, Delete (#25752)
- Update how long to beat extension (#25768)
- Update CODEOWNERs (66d7fa44)
- ghq: recurse until .git folder found (#25739)
- Update proton-pass extension (#25744)
- Update CODEOWNERs (96e244bb)
- Update rollcast extension (#25702)
- Update CODEOWNERs (73053578)
- Add cloudflare-ai extension (#23881)
- Update CODEOWNERs (8831c3f3)
- Add OpenClaw extension (#24848)
- things: add tag filtering and grouping preferences (#24489)
- Paste as Plain Text: Collapse surrounding whitespace when cleaning line breaks (#25628)
- Update CODEOWNERs (0bd06cff)
- Add Letta extension (#25158)
- Update CODEOWNERs (3c360678)
- Fix/trakt-manager user-agent (#25669)
- fix: Toggl Track API rate limits #25664 (#25696)
- Update CODEOWNERs (7ce69c7d)
- [Slack] Direct command for setting slack ststus (#25678)
- Update CODEOWNERs (decffa05)
- Update `Placeholder` extension - cross-platform `Keyboard` shortcuts (#25694)
- Update zed-recent-projects extension (#24821)
- Update karakeep extension (#25729)
- Update CODEOWNERs (e9f8ed29)
- Add extend-display extension (#24881)
- Update CODEOWNERs (a43fa9bc)
- Add orbstack extension (#22858)
- Update CODEOWNERs (c70ff74a)
- Add proton-pass extension (#24786)
- Update CODEOWNERs (90f1ef96)
- Add MusicBrainz extension (#25343)
- Fix double error icon and "NaN" when starting (#25710)
- Git Worktrees: Add worktree setup config and refactor command execution (#25659)
- Update CODEOWNERs (a12761f2)
- Add Teak extension (#25350)
- [Forked Extensions] Routine maintenance (#25673)
- Update `Purelymail` extension - windows support (#25674)
- Update music-assistant-controls extension (#25681)
- Update anytype extension (#25719)
- CI: add SHORT_SHA to all workflows - fix failure() handling
- CI: add SHORT_SHA to all workflows
- CI: migrate Slack message variables to native GitHub Actions expressions (#25692)
- Update CODEOWNERs (6c270e71)
- chore(remember-the-date): add missing my name as contributor (#25655)
- Update proton-pass-client extension (#25660)
- Update music extension (#25667)
- Update picgo extension (#25665)
- [Pokedex] Add ItemDex and Shiny forms (#25668)
- Update sonarr extension (#25563)
- Update CODEOWNERs (b333c7a3)
- Add voiceink extension (#24581)
- Update: Remember the Date (Add Recurring Events Support) (#25426)
- Fix figma-link-cleaner: Check clipboard before AppleScript (#25607)
- Update dependencies and platforms in package.json for the mullvad extension (#25413)
- Update CODEOWNERs (04d93fbc)
- Add agent-usage extension (#25049)
- Update vercast extension (#25388)
- Update CODEOWNERs (ef4ffcac)
- Add dagster extension (#25312)
- Update CODEOWNERs (09e5b5b8)
- Add opencode-sessions extension (#25357)
- YouTube Music: Refactor command structure and improve error handling (#25370)
- Update CODEOWNERs (cf508576)
- Update wsl-manager extension (#25132)
- Update CODEOWNERs (e60ed163)
- Deep Search Claude Sessions and Path Resolution Edge Cases (#25361)
- Update CODEOWNERs (766d4e75)
- [Helldivers] Polish & maintenance (#25632)
- Git Worktrees: Fix remove worktree infinite loading spinner (#25394)
- Update CODEOWNERs (307abaf4)
- Update google-books extension (#25235)
- Update fathom extension (#25525)
- Update CODEOWNERs (bb01f398)
- Add `Sendy` extension - view brands, view lists, check subscriber status (#25573)
- Update CODEOWNERs (04ca0dcc)
- Update base64 extension (#25625)
- Update proton-pass-client extension (#25611)
- Update awork extension (#25617)
- Update CODEOWNERs (e68a32c1)
- Add chiikawa-character extension (#25428)
- Update git extension (#25342)
- Update notion extension (#25443)
- Update CODEOWNERs (2173848e)
- Music: Add menu bar favorite/unfavorite action with stateful icon and confirmed HUD feedback (#25300)
- Brew: Improve handling of abort signal (#25584)
- Update CODEOWNERs (2995cb6b)
- Add `VirtFusion` extension (#25452)
- Update binge-clock extension (#25564)
- Update digger extension (#25583)
- Update CODEOWNERs (48ae9432)
- System Monitor: Add CPU temperature monitoring (#25577)
- Update CODEOWNERs (c7ddd952)
- Add proton-pass-client extension (#25154)
- Update sharex extension (#25590)
- Update CODEOWNERs (033e4ee4)
- Update ccusage extension (#25507)
- [Speech to Text] Add Ukrainian language option (#25576)
- Update CODEOWNERs (ec8d126b)
- Update gitlab extension (#25569)
- Update CODEOWNERs (b6ae1bb4)
- Add Pronounce the Word Extension [ext/pronounce the word] (#25270)
- Update CODEOWNERs (9be2fbf6)
- Update cloudflare-warp extension (#25567)
- fix(browser-bookmarks): Update bundled sql-wasm.wasm to match sql.js v1.13.0 (#25508)
- Update raycast-store-updates extension (#25512)
- Update CODEOWNERs (4298b500)
- brightness-control: Add Lunar-based brightness control commands (#25315)
- [Bitwarden] Fix invalid generate password options (#25551)
- Update CODEOWNERs (744a71d1)
- Add starling extension (#25254)
- [Skills] Add support for installing/removing skills (#25373)
- [Bitwarden] Fix potential stale session token issue (#25538)
- Update CODEOWNERs (19b73e3a)
- Add db-schema-explorer extension (#25197)
- Update CODEOWNERs (3f88cb76)
- Update browser-bookmarks extension (#25237)
- chore: update dependencies and modernize codebase (#24722)
- Spotify Player: Fix menu bar unloading before API fetch completes (#25349)
- Update vesslo extension (#25524)
- Update CODEOWNERs (0e7cf43b)
- Add Bunq Extension (#24851)
- ISSUE-25515: Noun Project Windows Support (#25519)
- Update audio-device extension (#25520)
- Update scheduler extension (#25494)
- Update easydict extension (#25436)
- [Shell] fix edit command not in recent section (#25470)
- Update CODEOWNERs (8600824a)
- Add dns-lookup extension (#23675)
- Update `Unkey` extension - maintenance release (#25514)
- Update CODEOWNERs (c2384bda)
- Add Get App Icon extension (#25294)
- Update audio-device extension (#25467)
- Update CODEOWNERs (6be30308)
- Add Clear File Metadata command to File Info extension [ext/clear-file-metadata] (#25272)
- Update CODEOWNERs (a781186d)
- Add subnoto extension (#25113)
- [Bitwarden] Handle unlock error, fix windows hash & support steam OTP (#25397)
- Update vesslo extension (#25506)
- Update CODEOWNERs (49512cd9)
- Add supabase extension (#25016)
- Update bnf-search-tool extension (#25392)
- Add star/unstar profiles and YouTube @brand accounts to @profile extension (#25460)
- Update CODEOWNERs (6b2d5783)
- Add code-wiki extension (#25434)
- Update accordance extension (#25310)
- Update CODEOWNERs (c4a1c197)
- Add okta-app-manager extension (#25000)
- Update CODEOWNERs (6aa0cfdf)
- Add upset-dev extension (#24915)
- Update CODEOWNERs (bea114f1)
- Add kaset-control extension (#24885)
- Fix UploaderX URL encoding for filenames with spaces (#25505)
- Update CODEOWNERs (710ab5cc)
- Add transport-nsw extension (#25089)
- Update CODEOWNERs (c9df8437)
- Add send-to-kindle extension (#25196)
- Update CODEOWNERs (f172f07b)
- Add mobile-provisions extension (#25178)
- Update `MXroute` extension - show email account usage (#25498)
- Update CODEOWNERs (9adf9a82)
- Add vietqr-transfer extension (#24602)
- Update CODEOWNERs (003fd7a7)
- Add caltask extension (#25107)
- Update CODEOWNERs (7fbf43bf)
- Add vesslo extension (#25170)
- Update CODEOWNERs (2d2b1bab)
- Add uploaderx extension (#25166)
- Update CODEOWNERs (3f1f9a95)
- Add retrace extension (#25289)
- Update CODEOWNERs (23cc87d9)
- Add flycheck-raycast extension (#25140)
- Update arc-helper extension (#25462)
- Brew: Improve memory usage (#25479)
- Update CODEOWNERs (2735ebd7)
- Update obsidian extension (#25022)
- Update CODEOWNERs (4a198be6)
- Add latex-board extension (#25168)
- [PM2] Routine maintenance (#25476)
- [Raycast Port] Routine Maintenance (#25477)
- Add "My Updates" filter, Refresh, and add CHANGELOG nav (↑/↓) to raycast-store-updates extension (#25480)
- Update raycast-store-updates extension (#25439)
- Update CODEOWNERs (a944fe57)
- Update vercast extension (#25471)
- fix(bed-time-calculator): Add Windows compatibility and contributor (#25465)
- Update anytype extension (#25444)
- Update CODEOWNERs (b74a7b30)
- [Slack] add proxy support for corporate networks (#25412)
- Update CODEOWNERs (0f8e5861)
- Update pocket extension (#25408)
- Update CODEOWNERs (8c220fa9)
- Update phosphor icons extension (#25440)
- Update CODEOWNERs (7d9c2f0d)
- Add Tella extension (#24561)
- MiniMax: Add M2.5 model support (#25427)
- Update CODEOWNERs (dc9e0203)
- feat(bed-time-calculator): Enhanced UI with color-coded sleep quality (#25405)
- Update CODEOWNERs (6bcb661b)
- Add portal-wholesale extension (#24781)
- Fix security vulnerabilities. (#25421)
- Update CODEOWNERs (e8d3af32)
- [Pokedex] Type Mastery (#25379)
- Update manus-manager extension (#25401)
- Update CODEOWNERs (afd3f3ec)
- Add figma-link-cleaner extension (#24675)
- Update CODEOWNERs (1b877989)
- Add betaseries extension (#25377)
- [Badges] Expose color picker ability to Windows (#25406)
- [Color Picker] Dismiss color picker feature (#25407)
- Update CODEOWNERs (fd71929c)
- Update google-meet extension (#24213)
- Update raycast-store-updates extension (#25399)
- Update CODEOWNERs (082e8b2b)
- Update google-calendar extension (#24261)
- Update instagram media downloader extension (#25402)
- Update CODEOWNERs (80842a18)
- Update `WiFi Password Reveal` extension -  add images + mention windows (#25396)
- Update leader-key extension (#25398)
- Update CODEOWNERs (27d18202)
- Add heptabase extension (#24462)
- Update CODEOWNERs (ed69ef34)
- Update simple-dictionary extension (#25186)
- Update CODEOWNERs (33332708)
- Update notion extension (#25244)
- Update CODEOWNERs (af155a48)
- Update browser-bookmarks extension (#25238)
- Update CODEOWNERs (403c3cee)
- Update vietnamese-calendar extension (#25360)
- Update quick-git extension (#25358)
- refactor: updated my esv-bible extension (#25362)
- Update CODEOWNERs (77d91ac3)
- Add migros extension (#24578)
- Update CODEOWNERs (83047136)
- [Statamic Docs] Show `-beta` flag for beta releases & update fallback results  (#25351)
- Update whoop extension to use Api V2 (#23013)
- Update CODEOWNERs (3c76f22a)
- [Color Picker] Add Windows Support (#25303)
- Update CODEOWNERs (1ebb02d8)
- Quick Access Infomaniak (#22431)
- Update CODEOWNERs (d4ccec5b)
- Add `Zenblog` extension (#25347)
- Update CODEOWNERs (0ea30fe8)
- Add napkin extension (#25363)
- Update CODEOWNERs (8cd6fe97)
- Add AzTU LMS extension (#25356)
- [Skills] show SKILL.md instead of repository README.md (#25352)
- [Skills] Fix broken screenshot references in README (#25348)
- Update CODEOWNERs (52a1712c)
- Add Skills Extension (#25018)
- [KeePassXC] Pin entry + copy/paste URL. (#25286)
- Workflows: Update to version v1.18.0 (#25341)
- Docs: update for the new API release
- Update CODEOWNERs (5c0f9c97)
- Add Toggle Pointer Acceleration command to mac-mouse-fix (#25247)
- refactor(github stars): update and refactor (#25278)
- Update qoder extension (#25296)
- Update bitwarden extension (#25326)
- fix(gitfox): deduplicate repositories in menu bar command (#25307)
- Update CODEOWNERs (b33caeb6)
- Add wordpress-manager extension (#24723)
- Update picgo extension (#25314)
- [Creem] update logo, images + better error msg (#25298)
- Update CODEOWNERs (f18f662b)
- Update kill node modules extension (#25327)
- Update kill-process extension (#25309)
- fix/ISSUE-25318: Fixing Todoist (currently broken for everyone i think?) (#25330)
- Update CODEOWNERs (60e8f7fa)
- Update Kill Process Extension (#25215)
- Update unicode-symbols extension (#25302)
- Update audio-device extension (#25290)
- fix(search npm): keywords bug (#25271)
- Update apple-reminders extension (#25242)
- fix(g-cloud): fixes and cleanup v1.0.4 (#25275)
- Update confluence extension (#25284)
- Update textream extension (#25268)
- Update CODEOWNERs (d978e65f)
- Add niuma-logs extension (#24656)
- Minor update to Fathom extension (#25293)
- Update CODEOWNERs (efcfa236)
- Update clipboard-type extension (#25225)
- Update CODEOWNERs (e6bc2915)
- Add SayIntentions extension (#23277)
- Things: Reduce JXA latency for list fetching (#25233)
- Update github-copilot extension (#25251)
- Update CODEOWNERs (ec90607a)
- Update cron-manager extension (#24426)
- Update CODEOWNERs (6a097d39)
- Add picgo extension (#25024)
- Update stealth-ai-tool extension (#25227)
- Update CODEOWNERs (bfe3bcb4)
- Add markdown-docs extension (#24954)
- feat(gitfox): add v4 support, menu bar, favorites, git status and more (#25253)
- Update CODEOWNERs (081224ab)
- Add kimi extension (#25250)
- Update CODEOWNERs (bd274dc5)
- Add minimax-ai extension (#25003)
- feat(tailscale): show more device info (#25262)
- Update CODEOWNERs (7e3e3312)
- Update viscosity extension (#25249)
- fix(change-case): swap case (#25263)
- Update CODEOWNERs (553a6af5)
- Add textream extension (#25257)
- Add windows support and support setting default browser per group or individual URL action types. (#25229)
- Update `Infomaniak` extensions - List Favorites in kDrive (#25252)
- Update github-copilot extension (#25205)
- Update CODEOWNERs (e6f3bf15)
- Add demo-flow extension (#25246)
- [OVH] display domain dns records cache properly (#25230)
- Update CODEOWNERs (a12116e5)
- [NSIS Reference] Upgrade ESLint to v9 (#25241)
- Update CODEOWNERs (03c88c46)
- Add osquery extension (#24696)
- Update CODEOWNERs (4da1542c)
- Add virtual-desktop-manager extension (#24897)
- Update letterboxd extension (#25224)
- Update audio-device extension (#25222)
- Update CODEOWNERs (47d2c2b3)
- Add Vim Leader Key extension (#24407)
- Update CODEOWNERs (0fe54c70)
- Add tikz extension (#24361)
- Update CODEOWNERs (40ac861d)
- Add xiaohe-query extension (#24789)
- Update apple reminders extension (#25202)
- [Chatwoot] canned_responses & teams (#25213)
- [GitHub Copilot] Fix titles and URLs for tasks without a pull request in "View Tasks" command (#25209)
- Docs: update for the new API release
- [GitHub Copilot] Allow adding additional instructions when assigning an issue to Copilot (#25192)
- [Kagi Search] delete history when api disabled (#25199)
- Update git extension (#25191)
- Switch to GitHub Copilot tasks API for loading and creating tasks (#25167)
- Misc: Update some dependencies (#25190)
- Update CODEOWNERs (668e9109)
- Update audio-device extension (#24502)
- Update CODEOWNERs (1defd208)
- feat(ios-resolutions): Add MacBooks as Devices Type (#25004)
- Update CODEOWNERs (ef0d5dc3)
- Add favoro extension (#25133)
- Update aave-search extension (#25181)
- Update CODEOWNERs (82bb7f64)
- Update cloudflare-email-routing extension (#24857)
- Minor updates to youtube summarizer (#25175)
- Update CODEOWNERs (9fbadbdf)
- Add jules-agents extension (#23850)
- Update CODEOWNERs (94718496)
- Add Wispr Flow Dictionary extension (#24644)
- Update microsoft-onedrive extension (#25173)
- Update `MXroute` extension - show domain verification key in "add domain" + catchall ux improvements (#25179)
- Update CODEOWNERs (7b0e4096)
- Add desktop-manager extension (#24899)
- Update CODEOWNERs (afb6a3f4)
- Add Dutch Article (Het of De) extension (#25136)
- Update CODEOWNERs (6d32581c)
- Update gif-search extension (#25123)
- Update CODEOWNERs (0771f77b)
- Update domainr extension (#23984)
- Update CODEOWNERs (d3a5f84a)
- Update search-npm extension (#25163)
- Update CODEOWNERs (c1271b54)
- Add wiz-controller extension (#25134)
- Update myanimelist-search extension (#24818)
- Update CODEOWNERs (f37c7e5e)
- Add sap-logon extension (#23761)
- Update CODEOWNERs (f358016e)
- Add models-dev extension (#24982)
- Update CODEOWNERs (9a722fc8)
- Add port extension (#24976)
- [OPENVPN] fix: reported issues (#25125)
- [JIRA] Fix issue link after ticket creation (#25161)
- Update CODEOWNERs (28232b88)
- Add standing-desk-tracker extension (#24216)
- Update CODEOWNERs (32259fec)
- Add gcp-ip-search extension (#24889)
- Update CODEOWNERs (aefeafd1)
- Add Withings Sync extension (#24641)
- Update CODEOWNERs (e26d83c2)
- Add rdir extension (#25137)
- Update CODEOWNERs (c626bfd4)
- Add files-shelf extension (#25151)
- Update CODEOWNERs (7432d0dd)
- Add Raycast Store Updates extension (#24891)
- Update CODEOWNERs (5180c852)
- Update laravel-docs extension (#25148)
- Update CODEOWNERs (c4b9602b)
- Add pdsls extension (#24605)
- feat(browsers-profiles): add Arc browser support (#25153)
- Update CODEOWNERs (0e480ca9)
- Add Reader Mode extension 📖 (#24369)
- Update CODEOWNERs (90d5f655)
- Add Manus Manager extension (#24037)
- Update CODEOWNERs (0b61f386)
- Add openhue extension (#24527)
- Update CODEOWNERs (62354d8c)
- Add binance-exchange extension (#25135)
- Update kill-process extension (#25147)
- Update fancy text extension (#25146)
- Update typefully extension (#25139)
- Update CODEOWNERs (5994b4b6)
- feat: Add Minttr extension (#25093)
- Update audio-device extension (#25143)
- Update vietnamese-calendar extension (#25138)
- Update microsoft-onedrive extension (#25142)
- Update CODEOWNERs (d341fa53)
- Add fake-typing-effect extension (#24323)
- Update remove-paywall extension (#25141)
- Update CODEOWNERs (6589e4e3)
- Add zacks-stock-ranking extension (#24455)
- Update CODEOWNERs (79b2c789)
- Update time-tracking extension (#25084)
- Update CODEOWNERs (7fc36db8)
- Add claude-code-config-switcher extension (#24880)
- Update CODEOWNERs (09be5d91)
- Add floaty extension (#25038)
- Update CODEOWNERs (f07b7d6c)
- Update Typefully extension (official rewrite) (#25102)
- lunatask: Add Windows support (#25096)
- Auto-populate tag when creating in filtered view (#24930) (#24935)
- Update CODEOWNERs (e4520680)
- Add telegram extension (#24322)
- Update CODEOWNERs (d45f54ac)
- Add fifteen-million-merits extension (#24170)
- Update instagram media downloader extension (#25126)
- Update CODEOWNERs (465911e2)
- Add stealth-ai-tool extension (#23837)
- [Say] Polish AI Extension configurations (#25127)
- Update CODEOWNERs (4b24f39a)
- Add quick-toshl extension (#24002)
- Update tasklink extension (#25119)
- Adds open workflow run option to the copilot view tasks command  (#25115)
- Update CODEOWNERs (124624a0)
- Add respace extension (#23570)
- Update CODEOWNERs (216cd112)
- Update `FileZilla` extension - add README to mention FileZilla needs to be in "Applications" (#25118)
- Update CODEOWNERs (65a3ee21)
- Add fitdesk extension (#24448)
- Update swift-command extension (#25110)
- Update CODEOWNERs (89bc46a2)
- Update haystack extension (#25108)
- Adds new command to github-copilot extension (#25064)
- [Virtualizor Enduser] fix distro icon (one liner) (#25103)
- Update CODEOWNERs (f04d5b66)
- Add shodan extension (#24306)
- Updating Oura extention to use OAuth2 of the updated v2 API\'s (#24544)
- Granola: Update visual identity to match new brand (v2.1.2) (#25087)
- Add Razuna entry to builtin registries (2nd) (#25094)
- Update CODEOWNERs (3a89032f)
- Update: system monitor user customizability (#24856)
- [Espanso] Improvements (#25078)
- Docs: update for the new API release
- Update CODEOWNERs (0c685fe4)
- Update audio-device extension (#24452)
- Update obsidian extension (#24312)
- Update CODEOWNERs (3a3191e3)
- Feature/dia-bookmarks-open-all-in-folder (#25034)
- ccusage: fix monthly cost projection (#25069)
- Update raycast-ollama extension (#25074)
- Update CODEOWNERs (17d76bce)
- Update `Yopass` extension - fix not working due to openpgp version (#25073)
- Update Logitech Litra extension (#25072)
- Update CODEOWNERs (ba37eb86)
- Add time-awareness extension (#24107)
- Update CODEOWNERs (70bea990)
- [Prisma Docs AI] Add Windows Support (#25029)
- Update CODEOWNERs (f716dfda)
- Update github-copilot extension (#25063)
- Update CODEOWNERs (770ec04c)
- arc: fix for opening Search Tabs or Search Spaces (#24948)
- fix(ente-auth): don\'t delete export file before re-exporting (#25032)
- Update moneybird extension: paginating contacts/lists (#24390) and repeat time entry (#23438) (#25035)
- Update CODEOWNERs (2b519e61)
- [Kagi Search] delete history + shortcuts (#25044)
- Update homeassistant extension (#25021)
- [Claude] Fix memory leak in streaming responses (#25059)
- Update react-native-directory extension (#25048)
- Fix github copilot usage command auth (#24760)
- Update yandex-smart-home extension (#25053)
- Update torbox extension (#25056)
- Update `Creem` extension - List Customers (#25055)
- [Brand Icons] Add support for changing copy action to paste (#25027)
- [United Nations] Resolves CVE-2026-25128 (#25028)
- Update CODEOWNERs (ebb2ec8e)
- Add yandex-smart-home extension (#25002)
- feat: add additional "open with" action to raycast-zoxide (#25011)
- Update CODEOWNERs (0252e418)
- Update `Text Decorator` extension - dark mode grid color (#25019)
- Update microsoft-onedrive extension (#25020)
- Update CODEOWNERs (529d5814)
- Add antisocials extension (#25006)
- Fix menubar when printer not printing (#25013)
- Update CODEOWNERs (a1c5bff0)
- Add qmd extension (#24888)
- Update CODEOWNERs (f7cd6aba)
- Add menu bar progress to Prusa extension (#25007)
- Update music-assistant-controls extension (#25009)
- ccusage: support tilde expansion in custom npx path (#24095)
- Granola: Add AI Tools Shared Documents Support (v2.1.1) (#25010)
- Granola: Add Shared Documents Support (v2.1.0) (#25008)
- Update upcoming-holidays extension (#24994)
- Fix Parcel carrier dropdown default selection (#24991)
- Feat: add new commands for Ext/u301 URL Shortener (#24959)
- Update CODEOWNERs (b8584fde)
- Update typst-symbols extension (#24727)
- Update CODEOWNERs (600b1f04)
- Add cursor-costs extension (#23468)
- Update CODEOWNERs (e33e20c2)
- Add gitcdn extension (#23988)
- Update vercast extension (#24953)
- Update CODEOWNERs (0e5214e0)
- Update `Google Fonts` extension - cross-platform keyboard shortcuts (#24968)
- Update CODEOWNERs (50eb676a)
- Add `NicNames` extension (#24984)
- [Wave] last sent, last viewed - in invoice (#24962)
- Update CODEOWNERs (2863ff3c)
- Update summarize-youtube-video-with-ai extension (#24952)
- Update CODEOWNERs (22d92306)
- feat(parcel): Add Windows Platform Support (#24978)
- Update CODEOWNERs (aa9d09fc)
- Add make-dot-com extension (#23927)
- Update CODEOWNERs (16394062)
- Add iching-divination extension (#24114)
- fix: transcript for YouTube URLs with query params and nested caption XML (#24943)
- Update CODEOWNERs (6ff3cfc7)
- Add botpress extension (#24849)
- Update CODEOWNERs (be06df01)
- Add singularityapp extension (#24832)
- Update CODEOWNERs (404ea76a)
- Update pagerduty extension (#24797)
- fix(json-format): improve performance for large JSON rendering (#24894)
- Update CODEOWNERs (fb689e0b)
- Update google-calendar extension (#24918)
- Update CODEOWNERs (42b3d05d)
- Update apple-reminders extension (#24919)
- Update CODEOWNERs (4584caa1)
-  Avoid overlapping invocations in raytaskwarrior (#24924)
- Update CODEOWNERs (ffff47b2)
- Update cursor agents extension (#23948)
- Video Downloader: Add MP3 format and fix loading issues (#23777)
- Update torbox extension (#24925)
- Update `OVHcloud` extension - Update Domain & DNS Service Information (renewal) (#24923)
- Update meme-generator extension (#24931)
- Update arc-helper extension (#24926)
- Update CODEOWNERs (785e355c)
- Update word-count extension (#24938)
- Fix TypeScript errors in SpinupWP extension (#24940)
- Update CODEOWNERs (0245ed09)
- Update yafw extension (#24908)
- UK layout fix (#24927)
- Update hijri-converter extension (#24921)
- Fork-Repositories: Add Windows support (#24910)
- Enable Windows support for Aegis by upgrading Raycast API (#24914)
- Update CODEOWNERs (582ddbbf)
- Update ccusage extension (#24080)
- Hopefully fix memory leak caused by zombie processes (#24895)
- Update CODEOWNERs (dc73c794)
- feat(mute-microphone): add native Windows support via PowerShell (#24640)
- Update CODEOWNERs (ac538959)
- Add youtube-highlights extension (#23756)
- Brew: Add optional split-view metadata panel for search results (#24901)
- Update CODEOWNERs (605195ef)
- [Word Count] Add Raycast Cross-Extension badge to readme (#24904)
- fix: fetching transcripts to summarize (#24902)
- Update T3 Chat extension - Models, preferences (#24905)
- Update CODEOWNERs (0bb666b4)
- Update better-uptime extension (#24903)
- Update CODEOWNERs (305be042)
- Add series-rating-graphs extension (#23901)
- Update CODEOWNERs (4ab1e089)
- [feat] add npm-claimer extension (#24754)
- Update CODEOWNERs (61c3abca)
- Add TorBox extension (#24121)
- Update CODEOWNERs (fd436796)
- Add hijri-converter extension (#23653)
- Update expectations message for initial review timeline (#24893)
- Update CODEOWNERs (551660c0)
- Update nixpkgs-search extension (#24864)
- Update CODEOWNERs (860b4b66)
- Add digger extension 🪏 (#24690)
- Update claudecast extension (#24887)
- Update CODEOWNERs (e1645ed0)
- Add spinupwp extension (#24804)
- Update CODEOWNERs (05b1b159)
- Update linkwarden extension (#24854)
- Update linkding extension (#24863)
- Update Zshrc Manager Extension (#24830)
- Update `MXroute` extension - add email from emptyview + view dns (#24876)
- Update CODEOWNERs (91439acb)
- Add basalt-wallpapers extension (#24805)
- Fork Repositories: Add support for reading `repositories.toml`, falling back to the old `repositories.json`. (#24878)
- mollie-for-raycast: Fix TypeScript type errors (#24845)
- Update CODEOWNERs (94971ce6)
- Add Supabase Cron Monitor extension (#24072)
- Fix/typeerror non array filter (#24869)
- Update CODEOWNERs (eb71c068)
- Add custom-icon extension (#24829)
- Update google search extension (#24862)
- Update CODEOWNERs (ee79688d)
- Add prompts-chat extension (#24275)
- Update CODEOWNERs (3f76e33c)
- Add remix-icon extension (#24634)
- Update CODEOWNERs (29bf496e)
- Add 42-api extension (#24784)
- Update CODEOWNERs (aace337f)
- Add Pin.app extension (#24827)
- Update youversion-suggest extension (#24833)
- Update CODEOWNERs (0fa80f77)
- Update remove-paywall extension (#24834)
- Update CODEOWNERs (a15956e9)
- Add ets2-ats-profiles extension (#24730)
- Update CODEOWNERs (27afe631)
- Add fumadocs extension (#24836)
- Update `Umami` extension - fix wrong web stats in cloud v3 (#24841)
- Update CODEOWNERs (ae0068a4)
- Add mollie-for-raycast extension (#22897)
- Update CODEOWNERs (40e16ba9)
- Add Next Lens extension (#24194)
- Update `Umami` extension - view websites (menu bar) (#24828)
- Update CODEOWNERs (ddd577b5)
- Add manus extension (#24166)
- Update CODEOWNERs (b9fa5786)
- feat: Add Pagination Support to My Starred Repositories (#24604)
- Update `Postiz` extension - in Create: add x provider settings, select date (#24822)
- Update CODEOWNERs (d35475de)
- feat: BPM copied to clipboard w/ confirmation toast (#24594)
- Update CODEOWNERs (837906c4)
- Update typer extension (#24826)
- Update CODEOWNERs (c3b05fc8)
- New Extension: LocalSend (#23594)
- Update hammerspoon extension (#24810)
- Update CODEOWNERs (c5f8ec32)
- Update get favicon extension (#24812)
- Update quick-jump extension (#24808)
- Update CODEOWNERs (7e3c9aaf)
- [Cloudflare] Add View Workers command (#24815)
- Update CODEOWNERs (fb1bc0a3)
- Add Query.Domains extension (#24606)
- Update CODEOWNERs (2977b6c6)
- Add claudecast extension (#24692)
- Update CODEOWNERs (c19e0729)
- Add font-converter extension (#23226)
- Update `Plane` extension - show icon state color in project work items (#24803)
- Update CODEOWNERs (d824c70a)
- Add proton-mail extension (#24734)
- Update CODEOWNERs (7a8be8a1)
- Add ios-resolution extension (#24799)
- Misc: Fix some security vulnerabilities (#24802)
- Update CODEOWNERs (2c9d5b95)
- Spotify Player: Add AI Playlist Tuning (#24768)
- Update `Porkbun` extension - mention \'opt in all domains\' settings (#24798)
- Update CODEOWNERs (93636167)
- Add rclone-raycast extension (#23486)
- Update CODEOWNERs (576c7396)
- Add 40 Questions Extension (#23921)
- Docs: update for the new API release
- Update bilibili extension (#24742)
- Feature/tags and subtasks (#24346)
- Update google-chrome-profiles extension (#24147)
- Update CODEOWNERs (9d925cb3)
- Update sql-format extension (#24600)
- Update CODEOWNERs (f968ce21)
- Add pomo extension (#24138)
- Update CODEOWNERs (5a979067)
- Update how long to beat extension (#24763)
- Update CODEOWNERs (2b1c9fdf)
- Add bklit-analytics extension (#23936)
- issue-24775: BambooHR: Copy Email command, Windows Support, API deps update (#24779)
- Update CODEOWNERs (223fb837)
- Add LaunchContext support to Aerospace extension (#24232)
- Update CODEOWNERs (fd2fc46e)
- Add sharex extension (#24074)
- Update CODEOWNERs (b118b114)
- Update `Simple Dictionary` extension - set default language in Preferences (#24764)
- Update CODEOWNERs (13db8d55)
- Update `Font Sniper` extension + modernize + Windows compatible shortcut for "Select All" / "Deselect All" (#24769)
- Update `Wave` extension - In **Invoices**, Show Customer Name, Invoice Date, Invoice Due Date and Amount Due (#24752)
- disk-usage: handle deleted files (#24397)
- Update git extension (#24667)
- Update zed-recent-projects extension - refactor and cleanup, add support for multi-folder workspaces (#24595)
- Update CODEOWNERs (a308a21a)
- Add table-converter extension (#24302)
- Update CODEOWNERs (c64e6feb)
- [can-i-use] windows support (#24753)
- Update django-docs extension (#24737)
- Added deploy key auth (#24672)
- Update parse extension (#24678)
- Update `Attio` extension - edit task (#24745)
- Update CODEOWNERs (12283fcf)
- Add go-links extension (#24043)
- Update CODEOWNERs (f0686292)
- Add simple-login extension (#24712)
- Docs: update for the new API release
- [Render] Configurable Default Action preference (#24555)
- Update CODEOWNERs (72e4ef8c)
- Add flux extension (#24550)
- Update mermaid-to-image extension (#24740)
- [Parse] Add Windows Support and fix infinite loop problem (#24611)
- feat(slack): Support multi-word search in Open Channel and Send Message (#24639)
- Update CODEOWNERs (139f3cf9)
- Update vercast extension (#24719)
- Improve code quality and fix bugs (#24681)
- markmarks extension: add support for Dia browser (#24684)
- Update CODEOWNERs (fce6d226)
- Update `Ntfy` extension - optional access token in Preferences for protected topics (#24729)
- Update vietnamese-calendar extension (#24724)
- Update vercast extension (#24718)
- Update CODEOWNERs (9e18bdc5)
- Add mnemosyne extension (#23592)
- Update CODEOWNERs (2e04626a)
- Move self to past contributor (#24717)
- Update proton-authenticator extension (#24688)
- Update `Bluesky` extension - modernize + fix menu bar icon (#24694)
- feat: add site-documentation auto labelling (#24700)
- Update CODEOWNERs (794e552c)
- Update linkinize extension (#24662)
- Comment out PR assignment logic (#24698)
- Update CODEOWNERs (02bb8b00)
- Add mac-mouse-fix extension (#23654)
- Update CODEOWNERs (ff1a1bce)
- Update lark extension (#23994)
- Update CODEOWNERs (18fd7871)
- Add hugeicons-ui extension (#23904)
- Fix invalid date error in transaction create form (#24686)
- Update CODEOWNERs (802beb40)
- Update word-count to support counting text in screenshots (#22892)
- Update CODEOWNERs (8721c756)
- Update ScreenOCR extension with cross-extension conventions (#24248)
- [RedNote] Fix broken sign strategy (#24674)
- Update `Postiz` extension - char counter in new post (#24682)
- Update `Umami` extension - view admin users (#24683)
- [Forked Extensions] Add support for managing sparse-checkout dirs (#24677)
- Update harvest extension (#24680)
- Update microsoft-onedrive extension (#24666)
- Update CODEOWNERs (b08ca725)
- [Selfh.st Icons] Add Windows Support (#24617)
- Update CODEOWNERs (a5a5fcf4)
- Add stashit extension (#23688)
- Update CODEOWNERs (342fa991)
- Update font-sniper extension (#24663)
- Update CODEOWNERs (f952934b)
- Add tv-remote extension (#23825)
- Update CODEOWNERs (2d839bdd)
- Update `Cron Description` extension - set cron timezone + modernize (#24659)
- Update CODEOWNERs (b31ea7fd)
- Add raycast-weekly-newsletter extension (#23827)
- Update CODEOWNERs (ffc69f49)
- Add bnf-search-tool extension (#23593)
- Update PDF Tools extension to support third-party file managers (#23623)
- Update CODEOWNERs (67622946)
- Add Gemini 3 to raycast-gemini extension (#24632)
- Update microsoft-onedrive extension (#24658)
- Update CODEOWNERs (394020ec)
- Add `DreamHost` extension - Manage DNS Records (#24616)
- Update mail extension (#24647)
- Update llm-stats extension (#24629)
- [Postiz] state filter + jump to today (#24630)
- Update CODEOWNERs (1bedb7ad)
- Add kagi to zen (#24598)
- Update try extension (#24653)
- Update CODEOWNERs (7c235e75)
- Add winutils extension (#23267)
- Update CODEOWNERs (6d28baff)
- Update change-case extension (#23363)
- Update CODEOWNERs (83d5e3ea)
- New Extension: Add ThermoConvert (#24202)
- Update CODEOWNERs (4602f28b)
- Add biome extension (#23400)
- Update CODEOWNERs (6b7abc2f)
- Add fix-helper extension (#23217)
- Update `Neon` extension - Create PSQL 18 + New Logo (#24631)
- Update microsoft-onedrive extension (#24635)
- Update CODEOWNERs (be1ffe55)
- Update git-repos extension (#24624)
- Update CODEOWNERs (3edca421)
- Update `System Monitor` extension - toggle display mode (free vs. used) + add README (#24622)
- Update CODEOWNERs (8a59d27f)
- Add tabby extension (#23627)
- Update minio-manager extension (#23488)
- Update git extension (#24314)
- Update mermaid-to-image extension (#24549)
- Fix ScreenOCR caching issues (#24589)
- Update CODEOWNERs (67555f26)
- [Selfh.st Icons] fix icons not loading (#24569)
- Update plane extension (#24521)
- Update llm-stats extension (#24536)
- Update `Postiz` extension - year display + search content (#24576)
- Update CODEOWNERs (ea26effe)
- Add parse extension (#24551)
- Update CODEOWNERs (cf255679)
- Add linkinize extension (#24348)
- Clockify Menu Bar (#24554)
- Update kimai extension (#24541)
- Update diskutil-mac extension (#24553)
- Update CODEOWNERs (25cc0d5b)
- [Codeforces] Update types, api, and add problem filtering (#23868)
- Fix browsers-profiles crash when reading Chromium profiles (#24556)
- Update font-sniper extension (#24547)
- Update zeabur extension (#24548)
- Update CODEOWNERs (5d617ab8)
- Add apis-guru-search extension (#23264)
- Update CODEOWNERs (0d067c0b)
- Add gles-to-malioc extension (#23317)
- Update anonaddy extension (#24442)
- Update CODEOWNERs (71605f6b)
- Add django-docs extension (#24531)
- [Render] Add Deploy Status Badges (#24529)
- Update CODEOWNERs (16ecb60b)
- Update tuya-smart extension (#24376)
- Update CODEOWNERs (2356c8cb)
- Adding Convex tools extension (#24263)
- Update anna-s-archive extension (#24525)
- Update CODEOWNERs (c853f124)
- Add try extension (#23331)
- Update CODEOWNERs (d062f885)
- Add SVG Studio extension (#23182)
- Update CODEOWNERs (9971957a)
- Add bikeshare-station-status extension (#23236)
- Update CODEOWNERs (dd0c9874)
- Update python extension (#24069)
- Update CODEOWNERs (d3c6ffce)
- [Microsoft Office] Add Microsoft Office extension (#23681)
- Update CODEOWNERs (f1d971a3)
- Add vietnamese-calendar extension (#24058)
- Update CODEOWNERs (11d5fe2e)
- Add windows-to-linux-path extension (#24048)
- Update stale.yml (#24517)
- Add \'only-issue-labels\' option to stale.yml (#24516)
- Add ascending option to stale.yml workflow (#24515)
- Update stale.yml (#24513)
- Update CODEOWNERs (a7128e92)
- Add better-aliases extension (#24146)
- Remove \'AI Extension\' from exempt PR labels (#24512)
- Update quick-jump extension (#24309)
- Update CODEOWNERs (9f654226)
- [Guitar Tools] Add audio device selection for external audio interfaces (#24280)
- Update microsoft-onedrive extension (#24511)
- Update CODEOWNERs (73105d64)
- Add font-sniper extension (#24395)
- Update CODEOWNERs (d00c3cf1)
- Add llm-stats extension (#24445)
- feat: reverse from/to action @ ns-nl-search ext (#24492)
- Update CODEOWNERs (b1ed1f79)
- Update modrinth extension (#24079)
- Update CODEOWNERs (3039c994)
- Add pitchcast extension (#24501)
- Update zed-recent-projects extension (#23839)
- window-walker fix: error request timeout after 5000ms (#24497)
- Update CODEOWNERs (1db522af)
- Update window-walker extension (#24500)
- Update  Memorable Password Generator extension (#24482)
- Update CODEOWNERs (044d0fa1)
- Add Open, Copy and Download actions to Immich Assets view (#24486)
- fix(spotify-player): handle disabled menu bar command error (#24476)
- Update CODEOWNERs (7c3be347)
- Add rainaissance extension (#24161)
- [Render] Add service pinning feature (#24477)
- screenshot: fix All In One command on macOS Tahoe (#24404)
- Update CODEOWNERs (c4b13325)
- Update battery-menubar extension (#22447)
- Update CODEOWNERs (f3e03990)
- Add app-tag-manager extension (#21637)
- Replace {PR_MERGE_DATE} placeholders with actual commit dates (#24468)
- Update CODEOWNERs (8b2f9b42)
- Update bmrks extension (#19691)
- Update CODEOWNERs (3d231604)
- Add Confluence extension whiteboard search  (#24049)
- Update CODEOWNERs (2e97644a)
- Update clockify extension (#23992)
- Update CODEOWNERs (3fa54121)
- Add monocle extension (#24456)
- Update CODEOWNERs (f8ad2a17)
- Update ping extension (#24460)
- Bug/Quality-of-Life Update to Windows Terminal extension (#24285)
- Update description in package.json (#24458)
- Update CODEOWNERs (d137db9b)
- Add microsoft-onedrive extension (#24438)
- Update CODEOWNERs (1c988ffb)
- feat: Windows Support, update deps (#24459)
- Fix crash when attachedUrls is undefined (#24453)
- Add cloud shell copy connection action (#24405)
- Update harvest extension (#24451)
- Update filemaker-snippets extension (#24402)
- feat(parcel): improve internationalization, date parsing, and carrier name display (#24235)
- Update CODEOWNERs (392d05f3)
- Update apple-reminders extension (#24420)
- Update CODEOWNERs (0552cb1c)
- Add customer-io extension (#23475)
- Update CODEOWNERs (16b24147)
- feat(browsers-profiles): filter the browser profiles (#21758)
- Update CODEOWNERs (789dc1df)
- Update antigravity extension (#24175)
- Update CODEOWNERs (8d5f60f6)
- Remove myself as a contributor for extensions (#24428)
- Update CODEOWNERs (63c8ec1c)
- Update openrouter-models-finder extension (#24387)
- Fix some security vunerabilities (#24336)
- Update tasklink extension (#24406)
- Update kill-process extension (#24393)
- Update CODEOWNERs (a7a9ad13)
- Update markdown reference extension (#24422)
- [Next.js Docs] update tree sha (#24421)
- Update CODEOWNERs (7fb2cea2)
- Update random extension (#24415)
- Update CODEOWNERs (f6101c33)
- Update convert extension (#24411)
- things: optimize JXA performance with `properties()` batching (#24286)
- Update `TerminalFinder` extension - better error message when no Finder windows or accessing non-filesystem folder (#24400)
- [kill-process] Add NoLogo and NoProfile to PowerShell commands (#24341)
- Update CODEOWNERs (194e86e9)
- Safari: Improve Search Tabs performance with Swift ScriptingBridge (#23580)
- Update CODEOWNERs (2616e535)
- Remove self from contributors (#24198)
- Update CODEOWNERs (cddcf74c)
- Add chinese-character-converter extension (#24164)
- Raycast Wallpaper: Port to Windows (#23407)
- Add IP address scanning support to VirusTotal extension (#24359)
- Update Anytype MCP server (#24366)
- Update CODEOWNERs (96827d07)
- Update smart reply extension (#24367)
- Update uploadthing (#24342)
- Update CODEOWNERs (7f4412f2)
- Update dokploy extension (#23639)
- Update lokalise extension (#24337)
- Update `Terminal Finder` extension - fix kitty casing (#24382)
- Update CODEOWNERs (e2211d59)
- Add `MXroute` extension - Email hosting for your domains (#24353)
- Update cleanshotx extension (#24340)
- Update CODEOWNERs (7f78c747)
- Update `Phosphor Icons` extension - Add Windows Support (#24343)
- Update CODEOWNERs (56c74b5b)
- [Remote Desktop] Add remote desktop extension (#23608)
- Update CODEOWNERs (7603912a)
- Update single-disk-eject extension (#23423)
- Update CODEOWNERs (96960948)
- feat: add \'close window on trigger\' preference (#24075)
- Update capacities extension (#24328)
- Reduce operations per run in stale.yml (#24331)
- Update CODEOWNERs (14aee723)
- Add hevy extension (#23304)
- Update CODEOWNERs (a14400e7)
- Update music-link-converter extension (#23287)
- Update prism-launcher (#24316)
- Update CODEOWNERs (388870e6)
- [Home Assistant] History of sensor data when viewing attributes (#23713)
- Update CODEOWNERs (cbad0a18)
- Hide github-copilot extension menu when there are no assigned tasks (#23823)
- Update CODEOWNERs (3be90b2f)
- Add random-date-generator extension (#23419)
- Update apple-reminders extension (#23767)
- Update manage-clickup-tasks extension (#23730)
- Update CODEOWNERs (d264b71b)
- Add Lemniscate | System Monitor extension (#22122)
- Update CODEOWNERs (59fb938a)
- Add powertoys-tool-runner extension (#23420)
- Update lokalise extension (#24311)
- Update CODEOWNERs (0d78a802)
- Add area-code-lookup extension (#24293)
- Change install button to image link format (#24133)
- Update CODEOWNERs (93216377)
- [Visual Studio Code] Fix Windows side Issues (#23644)
- Update CODEOWNERs (dcf42876)
- Unsure calc extension (#23877)
- Update easyvariable extension (#24284)
- Update CODEOWNERs (f2667b3d)
- Add hotel-manager extension (#23322)
- Add Windows to supported platforms in package.json (#24301)
- Enable sparse checkout for API docs (#24294)
- Update CODEOWNERs (be6bbf3e)
- Add markmarks extension (#24288)
- Enable sparse checkout for API docs (#24224)
- Update CODEOWNERs (0ef33a90)
- Update google-workspace extension (#23838)
- Update CODEOWNERs (2de58f17)
- Add lokalise extension (#24254)
- Add Circleback MCP server (#24050)
- Update qoder extension (#24260)
- Update csfd extension (#24264)
- Update CODEOWNERs (e2e4adf4)
- Add LIFX Controller Extension (#24117)
- Update freeagent extension (#24255)
- Update 0x0 extension (#24225)
- [Update] [Things] Improve Query String Creation (#24271)
- Update math-functions extension (#24267)
- Update CODEOWNERs (18c50b8d)
- [Toothpick] handle error in manage + shortcuts (#24007)
- Update CODEOWNERs (6694fc42)
- Update `Music` extension - add menu bar command inspired by `Spotify` extension (#24053)
- Update CODEOWNERs (87f211de)
- Update `Password Generator` extension - remember character, numbers in "Generate Random Password" (#24212)
- Update `Wave` extension - create draft invoice + show discounts in invoice (#24269)
- Update CODEOWNERs (575ed2fd)
- Update luma extension (#24283)
- Add no as a service (#24268)
- Update CODEOWNERs (bd2601be)
- Add leader-key extension (#24244)
- Update CODEOWNERs (b423fcbf)
- Add math-functions extension (#23259)
- [iTerm] Feature Request: Open Profile (#23527)
- Enhance image optimization in pull request workflow (#24112)
- Update CODEOWNERs (f550393d)
- Add qoder extension (#24010)
- Update CODEOWNERs (50dadb5c)
- Add rust-docs extension (#23891)
- Update CODEOWNERs (da961434)
- Update claude code launcher extension (#24251)
- Update CODEOWNERs (40ab1713)
- Update image-to-ascii extension (#24219)
- Fix/windows applescript fallback (forgot to add the plataform) (#24243)
- fix(raindrop-io): add platform check to skip AppleScript on Windows/Linux (#24172)
- Update CODEOWNERs (6f95a9ac)
- Add Typst Universe extension (#24160)
- Fix: Handle undefined devices array in DeviceList component (#24103)
- Fix the missing logo from the community badge (#23889)
- Update CODEOWNERs (69d11cf3)
- Update spotify-player extension (#23374)
- Add missing commits: Open in Granola deeplink and cleanup deprecated code (#24220)
- Update CODEOWNERs (1da5f1b5)
- [Tapo Smart Devices] Add Windows Support & Migrate Client (#24167)
- [raycastbot] Improve Regex for issue-bot (#23870)
- Update CODEOWNERs (bce8c3c7)
- Update raindrop-io extension (#23306)
- Update CODEOWNERs (54c7afbd)
- Add luma extension (#24208)
- Update CODEOWNERs (8b274da2)
- Update fancy-text extension (#24215)
- Update granola extension v2.0.0 (#24132)
- Update word4you extension (#24184)
- Update paste-to-markdown extension (#24214)
- Update CODEOWNERs (ce08bf70)
- [Sourcetree] modernize + fix invalid path crash (#23987)
- Update CODEOWNERs (e63733a2)
- [Linear] upd8 shortcuts + upd8 readme (#23960)
- Update CODEOWNERs (b112ed56)
- Update `Bitly` extension - list links by group + modernize (#23943)
- Update CODEOWNERs (591045bf)
- [Tailwind CSS] upd8 shortcuts + modernize + add README (#23977)
- Update CODEOWNERs (b71b3a6d)
- [Installed Applications] make shortcuts cross-platform (#23935)
- Update CODEOWNERs (1e602c1f)
- [Google Chrome] fix infinite rendering bug in new tab (#23934)
- Update CODEOWNERs (3ffbc00c)
- Update `Terminal Finder` extension - error handling + Kitty support (#23916)
- Update CODEOWNERs (0fdc4509)
- [Toggl Track] fix toast error in menubar + modernize (#23832)
- HomeBrew: add dependency formula filter (#24116)
- Fix Window Walker Extension (#24200)
- Feat/cloud functions service and ApiErrorView for consistent API error handling across services (#24204)
- Update CODEOWNERs (551247dc)
- Update `Vim Bro` extension - add to favs and filter by favs (#23993)
- Update CODEOWNERs (8bbbe122)
- [cURL] fix valid POST fail + update more keyboard shortcuts (#24089)
- Update CODEOWNERs (1e23157e)
- Update genius-lyrics extension (#22805)
- Fix memory issues: implement streaming file processing (#24197)
- Update CODEOWNERs (c597e0ea)
- Update Zoom extension (#24086)
- Update CODEOWNERs (0536bc93)
- [Dice & Coin] custom dice + windows support (#23895)
- Update vercast extension (#23942)
- Update brave extension (#23990)
- Update google-workspace extension (#24006)
- [Shell] add option to edit executed command (#24017)
- Update tldr extension (#23887)
- Update logos-launcher extension (#24169)
- Fix window-walker pin system persistence and toast messages (#24173)
- Update `Keygen` extension - List Environments and Add new ones + add environment `Preference` (#24174)
- Update CODEOWNERs (149ce069)
- Update browser tabs extension (#24113)
- Update CODEOWNERs (03bcfa7a)
- Update `Regex Tester` extension - Modernize (#24150)
- Update `Supermemory` extension - remove memory + filter by project (#24158)
- Update pulsemcp extension (#23983)
- Update arc-helper extension (#24131)
- Update logos-launcher extension (#24152)
- Disk Usage: optimize disk space heap (#24144)
- [Pokedex] Fix crash on missing localized move names (#24162)
- Update CODEOWNERs (7199e941)
- Update flush-dns extension (#24102)
- Fixed Regression and Cleanup in Delivery Tracker (#24163)
- Update ray-code extension (#24123)
- Update CODEOWNERs (3dc8fdee)
- Add Window Walker Extension (#24119)
- Update CODEOWNERs (d1082d13)
- Update virustotal extension (#23886)
- Update odesli extension (#23884)
- Update CODEOWNERs (6812410f)
- Add `Kutt` extension (#23864)
- Update ray-code extension (#24036)
- feat: support custom pinned locally (#24038)
- [Pokedex] Fixed Move command crashing when Pokémon moves are missing in the learnset (#24054)
- Update `Oracle Cloud` extension - Manage Vaults, Secrets, Versions and Bundle (#24031)
- Update CODEOWNERs (4491754e)
- Update wayback-machine extension (#24009)
- Update rename images with ai extension (#24051)
- feat: add list account emails (#23922)
- Update raycast gemini extension (#23966)
- Update CODEOWNERs (0b15d7e9)
- Update gmail extension (#24060)
- [Language Detector] Routine maintenance (#24066)
- Update nusmods extension (#24085)
- Update CODEOWNERs (baec6456)
- Update bitwarden extension (#23970)
- Update urban-dictionary extension (#24018)
- [Raindrop.io] Add Quick Add Bookmark command (#24019)
- Update CODEOWNERs (aacd55d1)
- [Spotify Player] show error view in queue + keyboard shortcut for add + mark as `premium` (#24021)
- Update CODEOWNERs (b1983965)
- Update git commands extension (#24030)
- Update pipedrive extension (#23797)
- Update music-assistant-controls extension (#22972)
- Update atlassian-data-center extension (#23991)
- fix: optimistic UI for VM actions & streamer mode for secrets (#23996)
- Update CODEOWNERs (d54cf187)
- Zed recent projects (#22909)
- Update CODEOWNERs (f038c4bc)
- Update `Go Package Search` extension - add keyboard shortcuts + caching via useCachedPromise (#24005)
- [JWT Decoder] Update dependencies to resolve react mismatch (#23849)
- Update CODEOWNERs (fe2f9904)
- Update qrcode-generator extension (#23951)
- Update CODEOWNERs (7a91fedf)
- [Dia] fix format of CHANGELOG dates +  fix crash in `search-history` when file not found (#23965)
- Update obsidian extension (#23846)
- Update shortcuts-search extension (#23865)
- Update sound-search extension (#23873)
- Update google-workspace extension (#23963)
- [Hue] Windows support (#23917)
- [HetrixTools] fix crash in uptime monitors (#23880)
- [TourBox] Fix broken API implementations (#23888)
- [Badges] Add support for Windows (#23910)
- Update fathom extension (#23930)
- Update `Infisical` extension - save,copy as .env + Windows support (#23945)
- Update arc-helper extension (#23941)
- Update CODEOWNERs (8b0d956c)
- Update downloads-manager extension (#23842)
- Update CODEOWNERs (d4300ad4)
- [Dashlane-Vault] Add windows support (#23685)
- Update iconify extension (#23833)
- Update CODEOWNERs (1cf953d3)
- Update webpage to markdown extension (#23899)
- Update CODEOWNERs (601b5656)
- Update domainr extension (#23791)
- Update CODEOWNERs (88a7fa92)
- [Google Translate] update `Keyboard` shortcuts + modernize to use latest React (#23885)
- Update CODEOWNERs (91631cb4)
- Add `Fizzy` extension (#23858)
- Update CODEOWNERs (f0b97b9a)
- Add `cdnjs` extension - search libraries (#23847)
- Update CODEOWNERs (9554651d)
- Add `Zyntra` extension - Add Inboxes and view their emails (#23845)
- Update CODEOWNERs (b503a262)
- Add `Infomaniak` extension - User Management + kDrive (#23820)
- Update workflow configurations (#23811)
- Update CODEOWNERs (21978a89)
- [Windows domain] Add Windows Domain Extension (#23591)
- Update CODEOWNERs (98de97d3)
- [Downloads Manager] Add Windows Support (#23680)
- [Open in Visual Studio Code] Fix Windows File Explorer localized names (#23615)
- Update CODEOWNERs (8941e128)
- Add ArchiSteamFarm extension (#23564)
- Update CODEOWNERs (d0e98bfb)
- Add dtf extension (#23262)
- Fix Todoist link in extension documentation (#23778)
- Update CODEOWNERs (efae17d9)
- Update `Fastly` extension - Windows Support + Update Links + `useForm` (#23805)
- Update iconify extension (#23796)
- Update url-editor-pro extension (#23744)
- Update brave extension (#23724)
- Update CODEOWNERs (5bc0e516)
- Add geoguesser extension (#23305)
- Update CODEOWNERs (a163145a)
- Add Remove Background extension (#23359)
- Update `Umami` extension - Windows Support (#23784)
- Improve text formatting preservation and Check Text Instant workflow (#23795)
- Update CODEOWNERs (90cb3e8f)
- Update upcoming-holidays extension (#23771)
- Update CODEOWNERs (48118e68)
- Update finnish-dictionary extension (#23772)
- Update CODEOWNERs (407998f6)
- Add `Seafile` extension - search files (#23785)
- Update google-workspace extension (#23773)
- Update CODEOWNERs (f8ee7250)
- Misc: Fix some security warnings (#23766)
- Update CODEOWNERs (6a278bd2)
- Add `Umami` extension (support self-host & cloud) (#23747)
- Update CODEOWNERs (f84e493b)
- Update `Unicode Symbols` - make keyboard shortcuts cross-platform & change copy,paste ones to not clash with system ones (#23599)
- Update CODEOWNERs (7a870369)
- Update iconify extension (#23760)
- Update whois extension (#23765)
- Update CODEOWNERs (ba790587)
- Remove Authy extension (#23768)
- Docs: update for the new API release
- Update CODEOWNERs (a574760b)
- Add aranet-co2-monitor extension (#23463)
- Update CODEOWNERs (848a68de)
- Add Lazygit Keybindings extension (#23544)
- Update imessage-2fa extension (#23545)
- caching for last selected stations @ ns-nl-search ext (#23659)
- Fix typo in grid.md (#23716)
- fix(github): append target directory only when cloning to existing path (#23741)
- Update awork extension (#23735)
- Update CODEOWNERs (346350c2)
- Update say extension (#23745)
- Update paperform extension (#22943)
- Update google-workspace extension (#23743)
- Implement checkout instructions for Pull Requests (#23740)
- Update CODEOWNERs (88245bcc)
- Update forked-extensions extension (#23612)
- Update CODEOWNERs (7d35102c)
- Update netease-music extension (#23200)
- Update CODEOWNERs (4b21729d)
- Update lorem-ipsum extension (#23673)
- Update CODEOWNERs (3ec994af)
- Speed up loading of thumbnails (#23737)
- Update brew extension (#23366)
- Update default-web-browser-manager extension (#23726)
- Update CODEOWNERs (5b66631b)
- Update tldr extension (#23663)
- Update CODEOWNERs (36f57820)
- Update nmbs-planner extension (#23704)
- Update CODEOWNERs (1384cfa7)
- Update search-domain extension (#23559)
- Update CODEOWNERs (9a1c8dab)
- Update nasa extension (#23672)
- Update CODEOWNERs (1bdd13d5)
- Update archiver extension (#23689)
- Update zeabur extension (#23725)
- Update CODEOWNERs (350a98c8)
- Update findnearby extension (#23728)
- Update kill-process extension (#23285)
- Add \'windows\' to supported platforms in package.json (#23686)
- Update iconify extension (#23717)
- Update Granola extension icon (#23647)
- Update search router extension (#23699)
- Update arc-helper extension (#23701)
- Docs: update for the new API release
- Update CODEOWNERs (464a36c8)
- Add NIF extension (#23191)
- Update CODEOWNERs (70b1301a)
- Update lorem-picsum extension (#23618)
- fix(deepl): newlines in markdown (#23619)
- Update roblox-creator-docs extension (#23270)
- Update placeholder extension (#23622)
- Update CODEOWNERs (6c72aa67)
- Update material-icons extension (#23621)
- Update CODEOWNERs (73fa1954)
- Update lucide-icons extension (#23620)
- Update CODEOWNERs (29160b9b)
- Update rdw-kentekencheck extension (#23617)
- Update CODEOWNERs (e96a7095)
- Update imgur extension (#23611)
- Update CODEOWNERs (c0b85f9e)
- Update iconify extension (#23605)
- Update CODEOWNERs (a4d44a3f)
- Update dicom extension (#23584)
- Update CODEOWNERs (4a2a8901)
- Update `Change Case` extension - use in fallback mode (#23626)
- Update CODEOWNERs (f6ea0688)
- Update clipboard-type extension (#23008)
- [Disk Usage] Optimize disk space allocation (#23661)
- Update ray-clicker extension (#23566)
- Update CODEOWNERs (4f9aa330)
- Update obsidian extension (#23609)
- Update capacities extension (#23664)
- Fix memory issues in Project Code to Text extension (#23692)
- Update CODEOWNERs (d3acd556)
- Update change-case extension (#23634)
- Update CODEOWNERs (3128c833)
- Update days-until-christmas extension (#23684)
- Update fotmob extension (#23667)
- Update CODEOWNERs (0971e2f6)
- Update Days to Chrsitmas (#23674)
- Misc: Update template to say "OS Version" instead of "macOS Version" (#23666)
- Update CODEOWNERs (8f1e69f1)
- Add Windows Terminal extension (#22934)
- Update anytype extension (#23604)
- Update tududi extension (#23601)
- Gcloud (#23613)
- Update CODEOWNERs (16c11c26)
- Update tldr extension (#23624)
- Update `Virtualizor Enduser` extension - manage panels (experimental) + modernize (#23625)
- Update CODEOWNERs (8a3c484a)
- Update google-workspace extension (#23656)
- Update CODEOWNERs (94357185)
- Update `Gandi` extension - Sandbox Support + Loads of Enhancements (#23635)
- Update CODEOWNERs (f903830c)
- Adding my new extension to the Raycast Store (#23201)
- Update CODEOWNERs (7dbf52b3)
- Update `One Time Secret` extension - AI extension + Windows support (#23636)
- Update CODEOWNERs (4606156b)
- Update search router extension (#23646)
- Update CODEOWNERs (24151425)
- Add catenary-raycast extension (#23129)
- feat(nuxt): update extension to version 2.2.0 (#23546)
- Update `Nextcloud` extension - custom username for search + better error message + robust link (#23558)
- Update open graph extension (#23596)
- Add Windows support for ChatGPT (#23515)
- Update CODEOWNERs (2e35ec32)
- Added new functionality  (#23431)
- Update CODEOWNERs (c8cfa2fc)
- [shell] Added windows support (#22993)
- Update CODEOWNERs (3ce983fb)
- Add windows-default-wallpapers extension (#22947)
- [Visual Studio Code] Add Windows support for VSCode (#20940)
- Update qrcode generator extension (#23597)
- Update tududi extension (#23571)
- Update `Upstash` extension - Redis Data Browser + Create Redis Key (#23581)
- Update substack extension (#23585)
- Update css-tricks extension (#23587)
- Update composerize extension (#23588)
- Update password-strength extension (#23590)
- Update CODEOWNERs (64220ac1)
- Update proxmox extension (#23221)
- Update CODEOWNERs (6ed97d42)
- Update vercast extension (#23372)
- Update CODEOWNERs (f50b2c61)
- Update graphcalc extension (#23550)
- Update CODEOWNERs (0b4e294f)
- MOCO: Add copy actions for project name and ID (#23554)
- Update CODEOWNERs (2e53bad4)
- Update dia extension (#23383)
- Misc: Update some deps to fix some security warnings (#23552)
- Update CODEOWNERs (f3aece13)
- Update downloads-manager extension (#23553)
- Update CODEOWNERs (306bb937)
- Remove \'ppy\' from contributors list (#23548)
- Update CODEOWNERs (7d72b5f1)
- Add whmcs-client-search extension (#22152)
- Update CODEOWNERs (31ef07c7)
- Update quick-notes extension (#23537)
- [UploadThing] fix invalid signing secret error (#23534)
- Update CODEOWNERs (e08f97d9)
- Update can-i-php extension (#23542)
- [Domainr] add windows support (#23535)
- Update CODEOWNERs (ebd2742f)
- Update brave extension (#23543)
- Update CODEOWNERs (42750e30)
- fix(github): filter visited repositories to only show valid entries (#23335)
- Add missing Grid.Item.Accessory properties and example sections (#23526)
- Update instant-domain-search extension (#22839)
- Update CODEOWNERs (274b6065)
- Add Disk Usage extension (#23184)
- Update CODEOWNERs (4c80df36)
- [The Noble Quran] Add Windows Support (#23531)
- Fix typo in grid documentation (#23525)
- Update easyvariable extension (#23414)
- Update anonaddy extension (#23520)
- Update setlist-fm extension (#23109)
- Update CODEOWNERs (17486a0c)
- Add PulseMCP extension (#23422)
- feat(github): show PR state icons in menu bar (#23496)
- Update CODEOWNERs (1a523795)
- Add default-web-browser-manager extension (#23509)
- Update CODEOWNERs (cfb41865)
- Update world-clock extension (#23299)
- feat(browser-bookmarks): add Helium browser support (#22987)
- Add Atono MCP Server to the registry (#23064)
- Update CODEOWNERs (9a57224a)
- Updated anilist-airing-schedule (#23225)
- Update CODEOWNERs (8e2d7644)
- [AIRPODS CONTROL] support for macos tahoe (#23275)
- Update CODEOWNERs (c4594780)
- Add `alwaysdata` extension - Domains, Emails, Sites, Tokens (#23508)
- Update CODEOWNERs (c1707e2a)
- Update MultiLinks extensions (#23373)
- Update CODEOWNERs (c5cac11f)
- Update ffmpeg extension (#23437)
- Update CODEOWNERs (4f97392e)
- Update \'silent-mention\' extension to add Windows support (#23447)
- Update `Zipcodebase` extension handle error of invalid response type (#23501)
- Update changedetection-io extension (#23502)
- Update CODEOWNERs (d178b4d1)
- Add Perry extension (#23161)
- [grammari-x] change ResultSection\'s action order (#22905)
- Update CODEOWNERs (14af891e)
- Add cognimemo extension (#23070)
- Update "GitHub Copilot" extension (#23503)
- Update CODEOWNERs (0c213b4f)
- Update zotero extension (#23265)
- Update ports extension (#23491)
- Update CODEOWNERs (0cdddfad)
- Update jira extension (#23302)
- Update CODEOWNERs (941ebfe6)
- [PagerDuty] pagination + modernize (#23481)
- [Video Downloader] Windows side critical Bug fix (#23480)
- Update `Postiz` - go to different periods in v2 (#23483)
- Update CODEOWNERs (b0bedadb)
- Update `Domainr` extension - use Fastly API (#23478)
- Update CODEOWNERs (14485ef6)
- Update dungeons-dragons extension (#23440)
- Update CODEOWNERs (a04fe427)
- Update `Supabase Docs` extension - add windows support + update metadata image (#23450)
- Stripe Extension V2 - Multi-Account Management, Coupons & UX Overhaul (#22186)
- ✨ browser-boookmarks: Added support for libreWolf browser #21747 (#23469)
- [Video Downloader] Windows Update Libraries Support (#23467)
- [dict.cc] Add Support for Windows (#23456)
- Update producthunt extension (#23461)
- Update CODEOWNERs (99792b81)
- Move nick318 to the past contributors (#23471)
- Add Create Task command to google-tasks extension (#23266)
- [Brand Icons] Add support shuffling icons on start (#23446)
- Update git-assistant extension (#23452)
- Update CODEOWNERs (f77bacd1)
- Update memos extension (#23288)
- Update nixpkgs-search extension (#23424)
- Update CODEOWNERs (711b98c0)
- feat(github): add option to filter draft pull requests (#23462)
- Fix formatting and remove redundant text in list.md (#23473)
- Fix/CVE 2025 12735 (#23448)
- Update spotify-player extension (#23357)
- Update `Time Tracking` extension - Add support for tagging timers + More robust error handling in Edit Form (#23430)
- [GitLab] Optimize Windows Experience (#21494)
- Update word4you extension (#23426)
- Update kagi-news extension (#23433)
- Update CODEOWNERs (739130dd)
- Update Lunchmoney (redo) (#23222)
- Update CODEOWNERs (5d2a4fba)
- Update devdocs extension (#23371)
- Update `Pipedrive` extension - Windows support + fix CHANGELOG dates (#23402)
- Update CODEOWNERs (21557c18)
- Update radix extension (#23021)
- Show organization projects when creating GitHub issues (#23189)
- Update planwell extension (#23399)
- Update nixpkgs-search extension (#23409)
- [Pokedex] Add Windows support (#23404)
- [Brand Icons] Add Windows support (#23388)
- Update CODEOWNERs (b57e538c)
- Update anytype extension (#23203)
- Update CODEOWNERs (fbc7f54c)
- Add arc-helper extension (#23212)
- Update CODEOWNERs (54f0dca8)
- [Clean Keyboard] Introduce the system limitation in readme (#23385)
- Update CODEOWNERs (8778122b)
- Add `ownCloud` extension - search files (#23365)
- Update CODEOWNERs (60547058)
- [Penpot] Add windows support (#23380)
- Update CODEOWNERs (e0fc56d7)
- Update gitlab extension (#23378)
- Update CODEOWNERs (42d3691d)
- Enhance bookmark search to match URLs and titles (#23387)
- [Markdown to Plain Text] Add support for Windows (#23389)
- Update vade-mecum extension (#23386)
- Update zen-browser extension (#22617)
- Update CODEOWNERs (d0dc1e61)
- Add algorand extension (#22783)
- Fix username mapping for themitpatel (#23369)
- Update CODEOWNERs (e9c7bb48)
- Jira Search (self-hosted) - Remove self from contributors (#22840)
- Fix for request error (#23364)
- Add port edit to port-from-project-name extension (#23345)
- Update CODEOWNERs (bb04f94a)
- Add unpackr extension (#23078)
- Add multi-selection, clipboard copy, token estimation, and results screen …
csymons pushed a commit to csymons/raycast-extensions that referenced this pull request Mar 5, 2026
- Update scheduler dependencies
- fix(scheduler) fix 15, 30, and 60 minute schedules
- Merge branch \'contributions/merge-1772724036961\'
- Pull contributions
- Docs: Update the utils docs
- [pipe-commands] Add data formatting utilities (raycast#25824)
- Update CODEOWNERs (5b660b2)
- Add hdri-library extension (raycast#25701)
- Update CODEOWNERs (2ea8b9c)
- Update ente-auth extension (raycast#25773)
- Update CODEOWNERs (b9b9e2b)
- Add grpcui extension (raycast#25697)
- Update CODEOWNERs (1730346)
- Update openrouter model search extension (raycast#26045)
- System Monitor: Fix stale temperature readings in menubar (raycast#26025)
- Update CODEOWNERs (4e3ff41)
- Fix truncated row values in pass extension (raycast#25843)
- Update CODEOWNERs (489aede)
- Add quickreferences-raycast extension (raycast#23629)
- Update CODEOWNERs (84a0a58)
- Update cleanshotx extension (raycast#25985)
- [ccusage] Hide "Usage Limits" details when using non-OAuth authentication (raycast#26009)
- Browser Bookmarks: Add support for Perplexity Comet browser (raycast#25874)
- Add Windows support (raycast#25882)
- Update bmrks extension (raycast#25952)
- Update CODEOWNERs (2faa166)
- Update radarr extension (raycast#25953)
- Update CODEOWNERs (d8b0e95)
- Update google-chrome extension (raycast#25939)
- Add PrusaConnect links to Prusa extension (raycast#25955)
- Update CODEOWNERs (9f8c615)
- Claude Code Launcher: Fix Ghostty PATH by using interactive shell (raycast#25976)
- Update aave-search extension (raycast#26016)
- uuid-generator: add Pack Type Id command (raycast#25800)
- Update CODEOWNERs (39fe5d1)
- [ccusage] Fix npx path resolution for fnm installs using XDG directories (raycast#26008)
- fix(arc): prevent duplicate windows when Arc is not running (raycast#25806)
- System Monitor: Add pin-to-display for menubar stats (raycast#25821)
- Update CODEOWNERs (ec57b0b)
- Add unified Wispr Flow extension (raycast#25218)
- Update shadcn ui extension (raycast#26011)
- Update CODEOWNERs (b354d33)
- feat(gumroad): add price filter and copy actions (raycast#25703)
- Update CODEOWNERs (134d6f9)
- Add raycast-ai-custom-providers extension (raycast#25180)
- Update CODEOWNERs (4accbb2)
- Add zo-raycast extension (raycast#25464)
- Update CODEOWNERs (227732f)
- Add job-dojo extension (raycast#25677)
- Update CODEOWNERs (eace185)
- Add wallhaven extension (raycast#25656)
- Update existing somafm extension: launch flow, refresh toasts, menu fallback (raycast#25187)
- Update CODEOWNERs (d0f014f)
- Add email-finder extension (raycast#24847)
- Update cut-out extension (raycast#25990)
- Update CODEOWNERs (1ef7a10)
- Add cut-out extension (raycast#25663)
- [Pokedex] Added support for Scarlet & Violet–style sprite artwork (raycast#25986)
- Discogs extension new functions (raycast#25686)
- Update nhk-program-search extension (raycast#25967)
- Update kimi extension (raycast#25962)
- Update CODEOWNERs (de246c1)
- Update shiori-sh extension (raycast#25944)
- fix(browser-bookmarks): fix slow initial load and open-in-browser reliability (raycast#25979)
- Update CODEOWNERs (0ad09cd)
- Add spacer extension (raycast#25652)
- [zotero] Fix Zotero 7+ / Better BibTeX compatibility (raycast#25634)
- Docs: update for the new API release
- added ARM64 sdk support (raycast#25966)
- Update CODEOWNERs (3051c01)
- Add Bird extension (raycast#25481)
- Update CODEOWNERs (7c4f8af)
- Add Lock Time extension (raycast#25255)
- Update CODEOWNERs (cdc0ceb)
- Add paste-safely extension (raycast#25951)
- Update CODEOWNERs (bd032c8)
- Add polars-documentation-search extension (raycast#25589)
- Update CODEOWNERs (564b0f2)
- Add DevContainer Features extension (raycast#25603)
- Update CODEOWNERs (2cdb8f6)
- Update gift-stardew-valley extension (raycast#25552)
- Update CODEOWNERs (f728891)
- Update Inkdrop extension (raycast#25529)
- Sourcegraph: Setup improvements (raycast#25950)
- [Skills] Add support for updating skills (raycast#25887)
- Update CODEOWNERs (cb956f6)
- Add search repositories feature for Github for Enterprise (raycast#25661)
- Fix/trakt manager user agent v2 (raycast#25825)
- Update `CricketCast` extension - add menu bar for scores (raycast#25942)
- Add Windows platform support to Goodreads extension (raycast#25936)
- idonthavespotify: Add Qobuz, Bandcamp, Pandora support & fix crash on unknown adapters (raycast#25937)
- Update singularityapp extension (raycast#25943)
- Update raycast-surge extension (raycast#25883)
- Update awork extension (raycast#25844)
- Update extend-display extension (raycast#25894)
- Update git-worktrees extension (raycast#25898)
- [Image Modification] Fix QSpace / QSpace Pro selection detection (raycast#25923)
- Update zeabur extension (raycast#25924)
- Update vietnamese-calendar extension (raycast#25917)
- [AzTU LMS] Fix Color & Add New Image (raycast#25912)
- Update CODEOWNERs (c2aba2b)
- Add Hop extension (raycast#25162)
- [Music Assistant Controls]:  Big update with many features (raycast#25860)
- [MXroute] set mail hosting status + open webmail link (raycast#25895)
- Update kitty extension (raycast#25856)
- Update CODEOWNERs (b73dbee)
- Addeed SDK implementation (raycast#25820)
- Update CODEOWNERs (66857dc)
- Add notilight-controller extension (raycast#25424)
- Update raycast-store-updates extension (raycast#25865)
- Update reader-mode extension (raycast#25872)
- Update CODEOWNERs (f8eeb0d)
- Update battery-optimizer extension (raycast#25509)
- fix: show window icons on first load in window-walker extension (raycast#25871)
- Update CODEOWNERs (7e705b7)
- Update t3 chat extension (raycast#25803)
- Update CODEOWNERs (19f337b)
- Update modify-hash extension (raycast#25816)
- Update CODEOWNERs (64e21d0)
- Add `ZeroSSL` extension - list certificates, view + validate csr (raycast#25861)
- [Cron Manager] Fix tasks disappearing from UI & permission handling (raycast#25845)
- Update CODEOWNERs (abe1d59)
- Add markdown-converter extension (raycast#24129)
- Update betaseries extension (raycast#25842)
- [Skills] Inline detail Panel (raycast#25658)
- Update CODEOWNERs (f1bac6d)
- Removed two extensions (raycast#25851)
- Update CODEOWNERs (53db7b3)
- Add shiori-sh extension (raycast#25757)
- Docs: update for the new API release
- feat(everything-search): allow custom cli arguments (raycast#24607)
- Update CODEOWNERs (93ff0be)
- Delete extensions/proton-pass-client directory (raycast#25841)
- update (raycast#25840)
- Update CODEOWNERs (d85419c)
- Add kaneo-for-raycast extension (raycast#25461)
- [Apple Reminders] Prevent accidental recurring reminders from AI (raycast#25746)
- [Apple Notes] Fix AI tool note ID mismatch, timeout, and search filtering (raycast#25720)
- fix: show window icons on first load in window-walker extension (raycast#25818)
- [Namecheap] fix error when no domain dns hosts (raycast#25827)
- Update youversion-suggest extension (raycast#25797)
- Update fathom extension (raycast#25807)
- Update CODEOWNERs (4f2bb5e)
- Downloads Manager: Add file preview (raycast#25031)
- Update CODEOWNERs (786bf32)
- Add pbr-assistant extension (raycast#25700)
- Update CODEOWNERs (2ba0efb)
- Update media-converter extension (raycast#25473)
- Update CODEOWNERs (f0efd26)
- Add zodme extension (raycast#25459)
- Update toggle-fn extension (raycast#25795)
- [Git Repos] Guard open-with actions against missing app preferences (raycast#25747)
- Update CODEOWNERs (3077928)
- Update todo-list extension (raycast#25718)
- Update CODEOWNERs (358b016)
- Add raycast-rsync-extension extension (raycast#24401)
- Update extend-display extension (raycast#25778)
- Update CODEOWNERs (d6819dd)
- Add tl;dv Meetings Extension (raycast#25605)
- Brew/fix outdated toast cancellation (raycast#25784)
- [Forked Extensions] Update instructions (raycast#25789)
- Update CODEOWNERs (2888014)
- feat: Add Zerodha Portfolio (Kite+Coin) extension (raycast#25450)
- Update inoreader extension (raycast#25785)
- Update CODEOWNERs (ef840cb)
- Update github-copilot extension (raycast#25777)
- [Brew] Show concise error toast and keep full logs in Copy Logs (raycast#25721)
- Update CODEOWNERs (3786156)
- Update spotify-controls extension (raycast#25580)
- Update CODEOWNERs (ed73629)
- Add kitty extension (raycast#25389)
- feat(menubar): add agent usage menu bar command and fix some bugs (raycast#25769)
- Music assistant controls grouping ungrouping (raycast#25772)
- Update CODEOWNERs (909acfd)
- Add Nowledge Mem Raycast extension (raycast#25451)
- Update CODEOWNERs (922cf21)
- Add bambu-lab extension (raycast#25051)
- Update CODEOWNERs (e743b9b)
- Add lightdash-navigator extension (raycast#25430)
- Update CODEOWNERs (8c3b23c)
- Add promptnote extension (raycast#25435)
- Update CODEOWNERs (3698940)
- Add blurhash extension (raycast#25423)
- Update CODEOWNERs (4abab71)
- Add inoreader extension (raycast#25429)
- Update music-assistant-controls extension: add windows support (raycast#25732)
- Update CODEOWNERs (1a11b80)
- Add kimi-for-coding extension (raycast#25061)
- Update CODEOWNERs (2b47443)
- Add wezterm-navigator extension (raycast#25422)
- Ext/pronounce the word (raycast#25654)
- Update CODEOWNERs (b485e9f)
- Add `Maybe` (finance) extension - Search Accounts + Search Transactions, Create, Delete (raycast#25752)
- Update how long to beat extension (raycast#25768)
- Update CODEOWNERs (66d7fa4)
- ghq: recurse until .git folder found (raycast#25739)
- Update proton-pass extension (raycast#25744)
- Update CODEOWNERs (96e244b)
- Update rollcast extension (raycast#25702)
- Update CODEOWNERs (7305357)
- Add cloudflare-ai extension (raycast#23881)
- Update CODEOWNERs (8831c3f)
- Add OpenClaw extension (raycast#24848)
- things: add tag filtering and grouping preferences (raycast#24489)
- Paste as Plain Text: Collapse surrounding whitespace when cleaning line breaks (raycast#25628)
- Update CODEOWNERs (0bd06cf)
- Add Letta extension (raycast#25158)
- Update CODEOWNERs (3c36067)
- Fix/trakt-manager user-agent (raycast#25669)
- fix: Toggl Track API rate limits raycast#25664 (raycast#25696)
- Update CODEOWNERs (7ce69c7)
- [Slack] Direct command for setting slack ststus (raycast#25678)
- Update CODEOWNERs (decffa0)
- Update `Placeholder` extension - cross-platform `Keyboard` shortcuts (raycast#25694)
- Update zed-recent-projects extension (raycast#24821)
- Update karakeep extension (raycast#25729)
- Update CODEOWNERs (e9f8ed2)
- Add extend-display extension (raycast#24881)
- Update CODEOWNERs (a43fa9b)
- Add orbstack extension (raycast#22858)
- Update CODEOWNERs (c70ff74)
- Add proton-pass extension (raycast#24786)
- Update CODEOWNERs (90f1ef9)
- Add MusicBrainz extension (raycast#25343)
- Fix double error icon and "NaN" when starting (raycast#25710)
- Git Worktrees: Add worktree setup config and refactor command execution (raycast#25659)
- Update CODEOWNERs (a12761f)
- Add Teak extension (raycast#25350)
- [Forked Extensions] Routine maintenance (raycast#25673)
- Update `Purelymail` extension - windows support (raycast#25674)
- Update music-assistant-controls extension (raycast#25681)
- Update anytype extension (raycast#25719)
- CI: add SHORT_SHA to all workflows - fix failure() handling
- CI: add SHORT_SHA to all workflows
- CI: migrate Slack message variables to native GitHub Actions expressions (raycast#25692)
- Update CODEOWNERs (6c270e7)
- chore(remember-the-date): add missing my name as contributor (raycast#25655)
- Update proton-pass-client extension (raycast#25660)
- Update music extension (raycast#25667)
- Update picgo extension (raycast#25665)
- [Pokedex] Add ItemDex and Shiny forms (raycast#25668)
- Update sonarr extension (raycast#25563)
- Update CODEOWNERs (b333c7a)
- Add voiceink extension (raycast#24581)
- Update: Remember the Date (Add Recurring Events Support) (raycast#25426)
- Fix figma-link-cleaner: Check clipboard before AppleScript (raycast#25607)
- Update dependencies and platforms in package.json for the mullvad extension (raycast#25413)
- Update CODEOWNERs (04d93fb)
- Add agent-usage extension (raycast#25049)
- Update vercast extension (raycast#25388)
- Update CODEOWNERs (ef4ffca)
- Add dagster extension (raycast#25312)
- Update CODEOWNERs (09e5b5b)
- Add opencode-sessions extension (raycast#25357)
- YouTube Music: Refactor command structure and improve error handling (raycast#25370)
- Update CODEOWNERs (cf50857)
- Update wsl-manager extension (raycast#25132)
- Update CODEOWNERs (e60ed16)
- Deep Search Claude Sessions and Path Resolution Edge Cases (raycast#25361)
- Update CODEOWNERs (766d4e7)
- [Helldivers] Polish & maintenance (raycast#25632)
- Git Worktrees: Fix remove worktree infinite loading spinner (raycast#25394)
- Update CODEOWNERs (307abaf)
- Update google-books extension (raycast#25235)
- Update fathom extension (raycast#25525)
- Update CODEOWNERs (bb01f39)
- Add `Sendy` extension - view brands, view lists, check subscriber status (raycast#25573)
- Update CODEOWNERs (04ca0dc)
- Update base64 extension (raycast#25625)
- Update proton-pass-client extension (raycast#25611)
- Update awork extension (raycast#25617)
- Update CODEOWNERs (e68a32c)
- Add chiikawa-character extension (raycast#25428)
- Update git extension (raycast#25342)
- Update notion extension (raycast#25443)
- Update CODEOWNERs (2173848)
- Music: Add menu bar favorite/unfavorite action with stateful icon and confirmed HUD feedback (raycast#25300)
- Brew: Improve handling of abort signal (raycast#25584)
- Update CODEOWNERs (2995cb6)
- Add `VirtFusion` extension (raycast#25452)
- Update binge-clock extension (raycast#25564)
- Update digger extension (raycast#25583)
- Update CODEOWNERs (48ae943)
- System Monitor: Add CPU temperature monitoring (raycast#25577)
- Update CODEOWNERs (c7ddd95)
- Add proton-pass-client extension (raycast#25154)
- Update sharex extension (raycast#25590)
- Update CODEOWNERs (033e4ee)
- Update ccusage extension (raycast#25507)
- [Speech to Text] Add Ukrainian language option (raycast#25576)
- Update CODEOWNERs (ec8d126)
- Update gitlab extension (raycast#25569)
- Update CODEOWNERs (b6ae1bb)
- Add Pronounce the Word Extension [ext/pronounce the word] (raycast#25270)
- Update CODEOWNERs (9be2fbf)
- Update cloudflare-warp extension (raycast#25567)
- fix(browser-bookmarks): Update bundled sql-wasm.wasm to match sql.js v1.13.0 (raycast#25508)
- Update raycast-store-updates extension (raycast#25512)
- Update CODEOWNERs (4298b50)
- brightness-control: Add Lunar-based brightness control commands (raycast#25315)
- [Bitwarden] Fix invalid generate password options (raycast#25551)
- Update CODEOWNERs (744a71d)
- Add starling extension (raycast#25254)
- [Skills] Add support for installing/removing skills (raycast#25373)
- [Bitwarden] Fix potential stale session token issue (raycast#25538)
- Update CODEOWNERs (19b73e3)
- Add db-schema-explorer extension (raycast#25197)
- Update CODEOWNERs (3f88cb7)
- Update browser-bookmarks extension (raycast#25237)
- chore: update dependencies and modernize codebase (raycast#24722)
- Spotify Player: Fix menu bar unloading before API fetch completes (raycast#25349)
- Update vesslo extension (raycast#25524)
- Update CODEOWNERs (0e7cf43)
- Add Bunq Extension (raycast#24851)
- ISSUE-25515: Noun Project Windows Support (raycast#25519)
- Update audio-device extension (raycast#25520)
- Update scheduler extension (raycast#25494)
- Update easydict extension (raycast#25436)
- [Shell] fix edit command not in recent section (raycast#25470)
- Update CODEOWNERs (8600824)
- Add dns-lookup extension (raycast#23675)
- Update `Unkey` extension - maintenance release (raycast#25514)
- Update CODEOWNERs (c2384bd)
- Add Get App Icon extension (raycast#25294)
- Update audio-device extension (raycast#25467)
- Update CODEOWNERs (6be3030)
- Add Clear File Metadata command to File Info extension [ext/clear-file-metadata] (raycast#25272)
- Update CODEOWNERs (a781186)
- Add subnoto extension (raycast#25113)
- [Bitwarden] Handle unlock error, fix windows hash & support steam OTP (raycast#25397)
- Update vesslo extension (raycast#25506)
- Update CODEOWNERs (49512cd)
- Add supabase extension (raycast#25016)
- Update bnf-search-tool extension (raycast#25392)
- Add star/unstar profiles and YouTube @brand accounts to @Profile extension (raycast#25460)
- Update CODEOWNERs (6b2d578)
- Add code-wiki extension (raycast#25434)
- Update accordance extension (raycast#25310)
- Update CODEOWNERs (c4a1c19)
- Add okta-app-manager extension (raycast#25000)
- Update CODEOWNERs (6aa0cfd)
- Add upset-dev extension (raycast#24915)
- Update CODEOWNERs (bea114f)
- Add kaset-control extension (raycast#24885)
- Fix UploaderX URL encoding for filenames with spaces (raycast#25505)
- Update CODEOWNERs (710ab5c)
- Add transport-nsw extension (raycast#25089)
- Update CODEOWNERs (c9df843)
- Add send-to-kindle extension (raycast#25196)
- Update CODEOWNERs (f172f07)
- Add mobile-provisions extension (raycast#25178)
- Update `MXroute` extension - show email account usage (raycast#25498)
- Update CODEOWNERs (9adf9a8)
- Add vietqr-transfer extension (raycast#24602)
- Update CODEOWNERs (003fd7a)
- Add caltask extension (raycast#25107)
- Update CODEOWNERs (7fbf43b)
- Add vesslo extension (raycast#25170)
- Update CODEOWNERs (2d2b1ba)
- Add uploaderx extension (raycast#25166)
- Update CODEOWNERs (3f1f9a9)
- Add retrace extension (raycast#25289)
- Update CODEOWNERs (23cc87d)
- Add flycheck-raycast extension (raycast#25140)
- Update arc-helper extension (raycast#25462)
- Brew: Improve memory usage (raycast#25479)
- Update CODEOWNERs (2735ebd)
- Update obsidian extension (raycast#25022)
raycastbot added a commit that referenced this pull request Mar 5, 2026
* Update scheduler extension

- Update scheduler dependencies
- fix(scheduler) fix 15, 30, and 60 minute schedules
- Merge branch \'contributions/merge-1772724036961\'
- Pull contributions
- Docs: Update the utils docs
- [pipe-commands] Add data formatting utilities (#25824)
- Update CODEOWNERs (5b660b2)
- Add hdri-library extension (#25701)
- Update CODEOWNERs (2ea8b9c)
- Update ente-auth extension (#25773)
- Update CODEOWNERs (b9b9e2b)
- Add grpcui extension (#25697)
- Update CODEOWNERs (1730346)
- Update openrouter model search extension (#26045)
- System Monitor: Fix stale temperature readings in menubar (#26025)
- Update CODEOWNERs (4e3ff41)
- Fix truncated row values in pass extension (#25843)
- Update CODEOWNERs (489aede)
- Add quickreferences-raycast extension (#23629)
- Update CODEOWNERs (84a0a58)
- Update cleanshotx extension (#25985)
- [ccusage] Hide "Usage Limits" details when using non-OAuth authentication (#26009)
- Browser Bookmarks: Add support for Perplexity Comet browser (#25874)
- Add Windows support (#25882)
- Update bmrks extension (#25952)
- Update CODEOWNERs (2faa166)
- Update radarr extension (#25953)
- Update CODEOWNERs (d8b0e95)
- Update google-chrome extension (#25939)
- Add PrusaConnect links to Prusa extension (#25955)
- Update CODEOWNERs (9f8c615)
- Claude Code Launcher: Fix Ghostty PATH by using interactive shell (#25976)
- Update aave-search extension (#26016)
- uuid-generator: add Pack Type Id command (#25800)
- Update CODEOWNERs (39fe5d1)
- [ccusage] Fix npx path resolution for fnm installs using XDG directories (#26008)
- fix(arc): prevent duplicate windows when Arc is not running (#25806)
- System Monitor: Add pin-to-display for menubar stats (#25821)
- Update CODEOWNERs (ec57b0b)
- Add unified Wispr Flow extension (#25218)
- Update shadcn ui extension (#26011)
- Update CODEOWNERs (b354d33)
- feat(gumroad): add price filter and copy actions (#25703)
- Update CODEOWNERs (134d6f9)
- Add raycast-ai-custom-providers extension (#25180)
- Update CODEOWNERs (4accbb2)
- Add zo-raycast extension (#25464)
- Update CODEOWNERs (227732f)
- Add job-dojo extension (#25677)
- Update CODEOWNERs (eace185)
- Add wallhaven extension (#25656)
- Update existing somafm extension: launch flow, refresh toasts, menu fallback (#25187)
- Update CODEOWNERs (d0f014f)
- Add email-finder extension (#24847)
- Update cut-out extension (#25990)
- Update CODEOWNERs (1ef7a10)
- Add cut-out extension (#25663)
- [Pokedex] Added support for Scarlet & Violet–style sprite artwork (#25986)
- Discogs extension new functions (#25686)
- Update nhk-program-search extension (#25967)
- Update kimi extension (#25962)
- Update CODEOWNERs (de246c1)
- Update shiori-sh extension (#25944)
- fix(browser-bookmarks): fix slow initial load and open-in-browser reliability (#25979)
- Update CODEOWNERs (0ad09cd)
- Add spacer extension (#25652)
- [zotero] Fix Zotero 7+ / Better BibTeX compatibility (#25634)
- Docs: update for the new API release
- added ARM64 sdk support (#25966)
- Update CODEOWNERs (3051c01)
- Add Bird extension (#25481)
- Update CODEOWNERs (7c4f8af)
- Add Lock Time extension (#25255)
- Update CODEOWNERs (cdc0ceb)
- Add paste-safely extension (#25951)
- Update CODEOWNERs (bd032c8)
- Add polars-documentation-search extension (#25589)
- Update CODEOWNERs (564b0f2)
- Add DevContainer Features extension (#25603)
- Update CODEOWNERs (2cdb8f6)
- Update gift-stardew-valley extension (#25552)
- Update CODEOWNERs (f728891)
- Update Inkdrop extension (#25529)
- Sourcegraph: Setup improvements (#25950)
- [Skills] Add support for updating skills (#25887)
- Update CODEOWNERs (cb956f6)
- Add search repositories feature for Github for Enterprise (#25661)
- Fix/trakt manager user agent v2 (#25825)
- Update `CricketCast` extension - add menu bar for scores (#25942)
- Add Windows platform support to Goodreads extension (#25936)
- idonthavespotify: Add Qobuz, Bandcamp, Pandora support & fix crash on unknown adapters (#25937)
- Update singularityapp extension (#25943)
- Update raycast-surge extension (#25883)
- Update awork extension (#25844)
- Update extend-display extension (#25894)
- Update git-worktrees extension (#25898)
- [Image Modification] Fix QSpace / QSpace Pro selection detection (#25923)
- Update zeabur extension (#25924)
- Update vietnamese-calendar extension (#25917)
- [AzTU LMS] Fix Color & Add New Image (#25912)
- Update CODEOWNERs (c2aba2b)
- Add Hop extension (#25162)
- [Music Assistant Controls]:  Big update with many features (#25860)
- [MXroute] set mail hosting status + open webmail link (#25895)
- Update kitty extension (#25856)
- Update CODEOWNERs (b73dbee)
- Addeed SDK implementation (#25820)
- Update CODEOWNERs (66857dc)
- Add notilight-controller extension (#25424)
- Update raycast-store-updates extension (#25865)
- Update reader-mode extension (#25872)
- Update CODEOWNERs (f8eeb0d)
- Update battery-optimizer extension (#25509)
- fix: show window icons on first load in window-walker extension (#25871)
- Update CODEOWNERs (7e705b7)
- Update t3 chat extension (#25803)
- Update CODEOWNERs (19f337b)
- Update modify-hash extension (#25816)
- Update CODEOWNERs (64e21d0)
- Add `ZeroSSL` extension - list certificates, view + validate csr (#25861)
- [Cron Manager] Fix tasks disappearing from UI & permission handling (#25845)
- Update CODEOWNERs (abe1d59)
- Add markdown-converter extension (#24129)
- Update betaseries extension (#25842)
- [Skills] Inline detail Panel (#25658)
- Update CODEOWNERs (f1bac6d)
- Removed two extensions (#25851)
- Update CODEOWNERs (53db7b3)
- Add shiori-sh extension (#25757)
- Docs: update for the new API release
- feat(everything-search): allow custom cli arguments (#24607)
- Update CODEOWNERs (93ff0be)
- Delete extensions/proton-pass-client directory (#25841)
- update (#25840)
- Update CODEOWNERs (d85419c)
- Add kaneo-for-raycast extension (#25461)
- [Apple Reminders] Prevent accidental recurring reminders from AI (#25746)
- [Apple Notes] Fix AI tool note ID mismatch, timeout, and search filtering (#25720)
- fix: show window icons on first load in window-walker extension (#25818)
- [Namecheap] fix error when no domain dns hosts (#25827)
- Update youversion-suggest extension (#25797)
- Update fathom extension (#25807)
- Update CODEOWNERs (4f2bb5e)
- Downloads Manager: Add file preview (#25031)
- Update CODEOWNERs (786bf32)
- Add pbr-assistant extension (#25700)
- Update CODEOWNERs (2ba0efb)
- Update media-converter extension (#25473)
- Update CODEOWNERs (f0efd26)
- Add zodme extension (#25459)
- Update toggle-fn extension (#25795)
- [Git Repos] Guard open-with actions against missing app preferences (#25747)
- Update CODEOWNERs (3077928)
- Update todo-list extension (#25718)
- Update CODEOWNERs (358b016)
- Add raycast-rsync-extension extension (#24401)
- Update extend-display extension (#25778)
- Update CODEOWNERs (d6819dd)
- Add tl;dv Meetings Extension (#25605)
- Brew/fix outdated toast cancellation (#25784)
- [Forked Extensions] Update instructions (#25789)
- Update CODEOWNERs (2888014)
- feat: Add Zerodha Portfolio (Kite+Coin) extension (#25450)
- Update inoreader extension (#25785)
- Update CODEOWNERs (ef840cb)
- Update github-copilot extension (#25777)
- [Brew] Show concise error toast and keep full logs in Copy Logs (#25721)
- Update CODEOWNERs (3786156)
- Update spotify-controls extension (#25580)
- Update CODEOWNERs (ed73629)
- Add kitty extension (#25389)
- feat(menubar): add agent usage menu bar command and fix some bugs (#25769)
- Music assistant controls grouping ungrouping (#25772)
- Update CODEOWNERs (909acfd)
- Add Nowledge Mem Raycast extension (#25451)
- Update CODEOWNERs (922cf21)
- Add bambu-lab extension (#25051)
- Update CODEOWNERs (e743b9b)
- Add lightdash-navigator extension (#25430)
- Update CODEOWNERs (8c3b23c)
- Add promptnote extension (#25435)
- Update CODEOWNERs (3698940)
- Add blurhash extension (#25423)
- Update CODEOWNERs (4abab71)
- Add inoreader extension (#25429)
- Update music-assistant-controls extension: add windows support (#25732)
- Update CODEOWNERs (1a11b80)
- Add kimi-for-coding extension (#25061)
- Update CODEOWNERs (2b47443)
- Add wezterm-navigator extension (#25422)
- Ext/pronounce the word (#25654)
- Update CODEOWNERs (b485e9f)
- Add `Maybe` (finance) extension - Search Accounts + Search Transactions, Create, Delete (#25752)
- Update how long to beat extension (#25768)
- Update CODEOWNERs (66d7fa4)
- ghq: recurse until .git folder found (#25739)
- Update proton-pass extension (#25744)
- Update CODEOWNERs (96e244b)
- Update rollcast extension (#25702)
- Update CODEOWNERs (7305357)
- Add cloudflare-ai extension (#23881)
- Update CODEOWNERs (8831c3f)
- Add OpenClaw extension (#24848)
- things: add tag filtering and grouping preferences (#24489)
- Paste as Plain Text: Collapse surrounding whitespace when cleaning line breaks (#25628)
- Update CODEOWNERs (0bd06cf)
- Add Letta extension (#25158)
- Update CODEOWNERs (3c36067)
- Fix/trakt-manager user-agent (#25669)
- fix: Toggl Track API rate limits #25664 (#25696)
- Update CODEOWNERs (7ce69c7)
- [Slack] Direct command for setting slack ststus (#25678)
- Update CODEOWNERs (decffa0)
- Update `Placeholder` extension - cross-platform `Keyboard` shortcuts (#25694)
- Update zed-recent-projects extension (#24821)
- Update karakeep extension (#25729)
- Update CODEOWNERs (e9f8ed2)
- Add extend-display extension (#24881)
- Update CODEOWNERs (a43fa9b)
- Add orbstack extension (#22858)
- Update CODEOWNERs (c70ff74)
- Add proton-pass extension (#24786)
- Update CODEOWNERs (90f1ef9)
- Add MusicBrainz extension (#25343)
- Fix double error icon and "NaN" when starting (#25710)
- Git Worktrees: Add worktree setup config and refactor command execution (#25659)
- Update CODEOWNERs (a12761f)
- Add Teak extension (#25350)
- [Forked Extensions] Routine maintenance (#25673)
- Update `Purelymail` extension - windows support (#25674)
- Update music-assistant-controls extension (#25681)
- Update anytype extension (#25719)
- CI: add SHORT_SHA to all workflows - fix failure() handling
- CI: add SHORT_SHA to all workflows
- CI: migrate Slack message variables to native GitHub Actions expressions (#25692)
- Update CODEOWNERs (6c270e7)
- chore(remember-the-date): add missing my name as contributor (#25655)
- Update proton-pass-client extension (#25660)
- Update music extension (#25667)
- Update picgo extension (#25665)
- [Pokedex] Add ItemDex and Shiny forms (#25668)
- Update sonarr extension (#25563)
- Update CODEOWNERs (b333c7a)
- Add voiceink extension (#24581)
- Update: Remember the Date (Add Recurring Events Support) (#25426)
- Fix figma-link-cleaner: Check clipboard before AppleScript (#25607)
- Update dependencies and platforms in package.json for the mullvad extension (#25413)
- Update CODEOWNERs (04d93fb)
- Add agent-usage extension (#25049)
- Update vercast extension (#25388)
- Update CODEOWNERs (ef4ffca)
- Add dagster extension (#25312)
- Update CODEOWNERs (09e5b5b)
- Add opencode-sessions extension (#25357)
- YouTube Music: Refactor command structure and improve error handling (#25370)
- Update CODEOWNERs (cf50857)
- Update wsl-manager extension (#25132)
- Update CODEOWNERs (e60ed16)
- Deep Search Claude Sessions and Path Resolution Edge Cases (#25361)
- Update CODEOWNERs (766d4e7)
- [Helldivers] Polish & maintenance (#25632)
- Git Worktrees: Fix remove worktree infinite loading spinner (#25394)
- Update CODEOWNERs (307abaf)
- Update google-books extension (#25235)
- Update fathom extension (#25525)
- Update CODEOWNERs (bb01f39)
- Add `Sendy` extension - view brands, view lists, check subscriber status (#25573)
- Update CODEOWNERs (04ca0dc)
- Update base64 extension (#25625)
- Update proton-pass-client extension (#25611)
- Update awork extension (#25617)
- Update CODEOWNERs (e68a32c)
- Add chiikawa-character extension (#25428)
- Update git extension (#25342)
- Update notion extension (#25443)
- Update CODEOWNERs (2173848)
- Music: Add menu bar favorite/unfavorite action with stateful icon and confirmed HUD feedback (#25300)
- Brew: Improve handling of abort signal (#25584)
- Update CODEOWNERs (2995cb6)
- Add `VirtFusion` extension (#25452)
- Update binge-clock extension (#25564)
- Update digger extension (#25583)
- Update CODEOWNERs (48ae943)
- System Monitor: Add CPU temperature monitoring (#25577)
- Update CODEOWNERs (c7ddd95)
- Add proton-pass-client extension (#25154)
- Update sharex extension (#25590)
- Update CODEOWNERs (033e4ee)
- Update ccusage extension (#25507)
- [Speech to Text] Add Ukrainian language option (#25576)
- Update CODEOWNERs (ec8d126)
- Update gitlab extension (#25569)
- Update CODEOWNERs (b6ae1bb)
- Add Pronounce the Word Extension [ext/pronounce the word] (#25270)
- Update CODEOWNERs (9be2fbf)
- Update cloudflare-warp extension (#25567)
- fix(browser-bookmarks): Update bundled sql-wasm.wasm to match sql.js v1.13.0 (#25508)
- Update raycast-store-updates extension (#25512)
- Update CODEOWNERs (4298b50)
- brightness-control: Add Lunar-based brightness control commands (#25315)
- [Bitwarden] Fix invalid generate password options (#25551)
- Update CODEOWNERs (744a71d)
- Add starling extension (#25254)
- [Skills] Add support for installing/removing skills (#25373)
- [Bitwarden] Fix potential stale session token issue (#25538)
- Update CODEOWNERs (19b73e3)
- Add db-schema-explorer extension (#25197)
- Update CODEOWNERs (3f88cb7)
- Update browser-bookmarks extension (#25237)
- chore: update dependencies and modernize codebase (#24722)
- Spotify Player: Fix menu bar unloading before API fetch completes (#25349)
- Update vesslo extension (#25524)
- Update CODEOWNERs (0e7cf43)
- Add Bunq Extension (#24851)
- ISSUE-25515: Noun Project Windows Support (#25519)
- Update audio-device extension (#25520)
- Update scheduler extension (#25494)
- Update easydict extension (#25436)
- [Shell] fix edit command not in recent section (#25470)
- Update CODEOWNERs (8600824)
- Add dns-lookup extension (#23675)
- Update `Unkey` extension - maintenance release (#25514)
- Update CODEOWNERs (c2384bd)
- Add Get App Icon extension (#25294)
- Update audio-device extension (#25467)
- Update CODEOWNERs (6be3030)
- Add Clear File Metadata command to File Info extension [ext/clear-file-metadata] (#25272)
- Update CODEOWNERs (a781186)
- Add subnoto extension (#25113)
- [Bitwarden] Handle unlock error, fix windows hash & support steam OTP (#25397)
- Update vesslo extension (#25506)
- Update CODEOWNERs (49512cd)
- Add supabase extension (#25016)
- Update bnf-search-tool extension (#25392)
- Add star/unstar profiles and YouTube @brand accounts to @Profile extension (#25460)
- Update CODEOWNERs (6b2d578)
- Add code-wiki extension (#25434)
- Update accordance extension (#25310)
- Update CODEOWNERs (c4a1c19)
- Add okta-app-manager extension (#25000)
- Update CODEOWNERs (6aa0cfd)
- Add upset-dev extension (#24915)
- Update CODEOWNERs (bea114f)
- Add kaset-control extension (#24885)
- Fix UploaderX URL encoding for filenames with spaces (#25505)
- Update CODEOWNERs (710ab5c)
- Add transport-nsw extension (#25089)
- Update CODEOWNERs (c9df843)
- Add send-to-kindle extension (#25196)
- Update CODEOWNERs (f172f07)
- Add mobile-provisions extension (#25178)
- Update `MXroute` extension - show email account usage (#25498)
- Update CODEOWNERs (9adf9a8)
- Add vietqr-transfer extension (#24602)
- Update CODEOWNERs (003fd7a)
- Add caltask extension (#25107)
- Update CODEOWNERs (7fbf43b)
- Add vesslo extension (#25170)
- Update CODEOWNERs (2d2b1ba)
- Add uploaderx extension (#25166)
- Update CODEOWNERs (3f1f9a9)
- Add retrace extension (#25289)
- Update CODEOWNERs (23cc87d)
- Add flycheck-raycast extension (#25140)
- Update arc-helper extension (#25462)
- Brew: Improve memory usage (#25479)
- Update CODEOWNERs (2735ebd)
- Update obsidian extension (#25022)

* Update CHANGELOG.md

---------

Co-authored-by: Charles Symons <dev@realitymanagement.com>
Co-authored-by: raycastbot <bot@raycast.com>
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