Skip to content

Add unix-timestamp-converter extension #18949

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
May 30, 2025

Conversation

ride-space
Copy link
Contributor

@ride-space ride-space commented May 5, 2025

Description

This PR adds a new Raycast extension: Unix Timestamp Converter.

Overview

Unix Timestamp Converter is a tool that allows you to easily convert between Unix timestamps (epoch seconds) and human-readable date and time formats (e.g., YYYY-MM-DD HH:mm:ss).
It streamlines the timestamp conversion tasks that engineers and developers often perform, making them quick and convenient right within Raycast.

Key Features

  • Convert Unix timestamps to local date and time
    Enter a Unix timestamp and instantly see it converted to the local date and time of your selected country or timezone.
  • Convert date and time to Unix timestamps
    Enter a date and time (e.g., 2024-06-01 12:34:56) and convert it to a Unix timestamp as if it were in the local time of your selected country or timezone.
  • One-click copy
    Easily copy the conversion result to your clipboard with a single click, making it simple to paste into other apps or services.

Supported Timezones

  • Japan (JST, Asia/Tokyo)
  • USA (New York: EST, America/New_York / Los Angeles: PST, America/Los_Angeles)
  • Korea (KST, Asia/Seoul)
  • Thailand (ICT, Asia/Bangkok)

Supported Date Formats

  • Japanese format (e.g., 2025/05/03(Sat) 22:02:33)
  • Korean format (e.g., 2025.05.03(Sat) 22:02:33)
  • Thai format (e.g., 2025/05/03(Sat) 22:02:33)
  • ISO 8601 format (e.g., 2025-05-03T13:02:33.000Z, UTC)
  • US English format (e.g., Saturday, May 3, 2025, 10:02:33 PM GMT+9)

How to Use

  1. Launch the "Unix Timestamp Converter" command in Raycast.
    2.2Enter the value you want to convert (either a Unix timestamp or a date), and select the country and display format.
  2. The conversion result is shown instantly, and you can copy it to your clipboard as needed.
    With this extension, you can quickly handle timestamp conversions directly in Raycast, without needing to search the web or use external tools.

Screencast

Convert Unix timestamps to local date and time

Convert.Unix.timestamps_to_local_date_and.time.mov

Convert date and time to Unix timestamps

Convert_date_and_time_to_Unix.timestamps.mov

Checklist

- chore(metadata): update screenshot images with resized versions
- feat(assets): add icon and screenshot images
- docs: add README and CHANGELOG
- chore(package): define extension metadata, commands, dependencies, and npm scripts in package.json
- feat(generate): add feature to convert date to UNIX timestamp
- feat(convert): add feature to convert UNIX timestamp to date
- feat(utils): implement date conversion and clipboard utility functions
- feat(constants): add supported countries and formats definitions
- chore(deps): add package-lock.json
- first commit
@raycastbot raycastbot added the new extension Label for PRs with new extensions label May 5, 2025
@raycastbot
Copy link
Collaborator

Congratulations on your new Raycast extension! 🚀

You can expect an initial review within five business days.

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

@ride-space ride-space marked this pull request as ready for review May 5, 2025 02:34
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.

PR Summary

Let me provide a concise review of this new Unix Timestamp Converter extension:

A comprehensive extension that enables conversion between Unix timestamps and human-readable dates across multiple timezones and formats, with a clean form-based interface and clipboard integration.

Key points:

  • Japanese comments in datetime.ts and types.ts should be translated to English to comply with Raycast's English-only localization policy
  • showFailureToast from @raycast/utils should be used in try-catch blocks instead of manual showToast calls for error handling
  • metadata folder with screenshots is missing but required since there are view commands in package.json
  • copyToClipboardWithToast in clipboard.ts should include error handling for clipboard access failures
  • Timezone offset calculations in getUnixTimeFromLocalDate() need to handle DST edge cases

💡 (1/5) You can manually trigger the bot by mentioning @greptileai in a comment!

13 file(s) reviewed, 19 comment(s)
Edit PR Review Bot Settings | Greptile

{
"name": "convert-timestamp",
"title": "Convert Timestamp",
"subtitle": "Unix Time Converter",
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Both commands have the same subtitle 'Unix Time Converter'. Consider using the extension title as subtitle to help users identify which extension the command belongs to.

if (!country || !format) return;
const date = getDateFromUnixTime(Number(values.unixTime));
const result = format.format(date, country);
copyToClipboardWithToast(result.split(": ")[1] ?? "", "Datetime copied!");
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Splitting on ': ' is fragile - consider using a more robust way to extract the formatted date portion

},
});

// 結果のプレビュー
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Japanese comment '結果のプレビュー' should be in English for consistency

Suggested change
// 結果のプレビュー
// Preview of the result

onSubmit(values) {
const country = countries.find((c) => c.id === values.country);
const format = formats.find((f) => f.id === values.format);
if (!country || !format) return;
Copy link
Contributor

Choose a reason for hiding this comment

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

logic: Silent return on invalid country/format - should show error toast

Suggested change
if (!country || !format) return;
if (!country || !format) {
showFailureToast(new Error("Invalid country or format selected"));
return;
}

Comment on lines 2 to 3
* 国情報
*/
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Raycast only supports US English. Comments should be in English instead of Japanese ('Country information')

Suggested change
* 国情報
*/
* Country information
*/

export type Country = {
id: string;
name: string;
timezoneOffset: number; // UTCからのオフセット(例: 9)
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Comment should be in English ('UTC offset (e.g.: 9)')

Suggested change
timezoneOffset: number; // UTCからのオフセット(例: 9
timezoneOffset: number; // UTC offset (e.g.: 9)

Comment on lines 13 to 14
* 日時フォーマット
*/
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Comment should be in English ('Date format')

Suggested change
* 日時フォーマット
*/
* Date format
*/

Comment on lines 25 to 26
* convert-timestampコマンド用フォーム値
*/
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Comment should be in English ('Form values for convert-timestamp command')

Suggested change
* convert-timestampコマンド用フォーム値
*/
* Form values for convert-timestamp command
*/

Comment on lines 34 to 35
* generate-timestampコマンド用フォーム値
*/
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Comment should be in English ('Form values for generate-timestamp command')

Suggested change
* generate-timestampコマンド用フォーム値
*/
* Form values for generate-timestamp command
*/

ride-space added 9 commits May 6, 2025 09:28
In the US, the 12-hour clock is standard, so hour12 was changed from false to true.
…g date value instead of string split

Changed the result of format.format to return an object with name and value properties.
Now, the date value is accessed directly from the value property, making the extraction more robust and maintainable.
@ride-space
Copy link
Contributor Author

@greptileai

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.

PR Summary

(updates since last review)

Based on the recent changes, here's a focused review of the Unix Timestamp Converter extension updates:

A well-structured update that improves error handling, standardizes terminology, and enhances the overall code quality of the Unix Timestamp Converter extension.

Key points:

  • Standardized terminology from 'USA' to 'United States' across documentation for consistency
  • Added structured result objects with name and value properties in format functions
  • Improved form validation with proper error handling using showFailureToast
  • Simplified state management by using useState for result text
  • Added zero-padding utility for date components with well-documented pad2 function

The implementation shows good attention to detail and follows Raycast's best practices, particularly in error handling and user feedback mechanisms.

9 file(s) reviewed, 3 comment(s)
Edit PR Review Bot Settings | Greptile

Comment on lines +8 to +9
{ id: "japan", name: "Japan", timezoneOffset: 9, timezoneName: "JST", ianaTimeZone: "Asia/Tokyo" },
{ id: "new_york", name: "USA (New York)", timezoneOffset: -5, timezoneName: "EST", ianaTimeZone: "America/New_York" },
Copy link
Contributor

Choose a reason for hiding this comment

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

style: EST/PST are not fixed timezone names and change with daylight savings. Consider using ET/PT instead.

Comment on lines +97 to +99
format: (date, country) => {
return { name: `${country.name} Time (${country.timezoneName})`, value: date.toISOString() };
},
Copy link
Contributor

Choose a reason for hiding this comment

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

logic: Return type doesn't match other format functions which return strings. This will cause type inconsistency.

Suggested change
format: (date, country) => {
return { name: `${country.name} Time (${country.timezoneName})`, value: date.toISOString() };
},
format: (date, country) => {
return `${country.name} Time (${country.timezoneName}): ${date.toISOString()}`;
},

locale: string,
options: Intl.DateTimeFormatOptions,
): { name: string; value: string } => {
return {name : `${country.name} Time (${country.timezoneName})`, value: `${date.toLocaleString(locale, {
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Inconsistent spacing around object property name. Should be { name: not {name :

@pernielsentikaer
Copy link
Collaborator

Are you still working on this extension?

@pernielsentikaer pernielsentikaer self-assigned this May 12, 2025
@ride-space
Copy link
Contributor Author

@pernielsentikaer
Yes, I'm still actively working on this extension. I remain committed to its development and plan to continue making improvements. Thank you for checking in

Also, I wanted to confirm something: Do I need to address all the issues pointed out by greptile-apps in order to release this extension?

@pernielsentikaer
Copy link
Collaborator

No, you don't need to do all the suggestions, only them that makes sense - is this ready for a review?

@ride-space
Copy link
Contributor Author

@pernielsentikaer
Yes, it's ready for review now. I've made the key changes and look forward to your feedback.

@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 May 28, 2025
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 👋

Looks good to me, approved 🔥

@raycastbot raycastbot removed the status: stalled Stalled due inactivity label May 30, 2025
@raycastbot raycastbot merged commit 2675e8e into raycast:main May 30, 2025
2 checks passed
Copy link
Contributor

Published to the Raycast Store:
https://raycast.com/ride-space/unix-timestamp-converter

@raycastbot
Copy link
Collaborator

🎉 🎉 🎉

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

haroldao added a commit to haroldao/raycast-open-in-trae that referenced this pull request Jun 9, 2025
- fixed error
- added categories
- typo
- Upload Open in Trae extension
- Update CODEOWNERs
- Add whisper-dictation extension (#19532)
- Update CODEOWNERs
- Updated the URL for the Prisma MCP server (#19472)
- Add open-latest-url-from-clipboard extension (#19624)
- Update CODEOWNERs
- Update shadcn-ui extension (#19525)
- Update CODEOWNERs
- Update CODEOWNERs
- Improve Flight Details Layout: Combined Times & Side-by-Side Terminal/Gate (#19521)
- Add analog-film-library extension (#19514)
- Update CODEOWNERs
- Add volumio-control extension (#19504)
- Update CODEOWNERs
- [Color Picker] Fix returned value from callback-launch command (#19619)
- [GitHub] Add preference to exclude repositories from other commands (#17468)
- Update CODEOWNERs
- Add diff-view extension (#19463)
- Add kagimcp server (#19568)
- [Bitwarden] Fix Authenticator "TypeError: t is not a function" (#19616)
- Include Outlook in app description (#19594)
- Update CODEOWNERs
- add Open Documentation (#19500)
- Update sportssync extension (#19483)
- Update CODEOWNERs
- macosicons: include user applications (#19482)
- [Brand Icons] Add compatibility with Simple Icons 15 (#19478)
- Docs: update for the new API release
- Update prism-launcher extension (#19599)
- [United Nations] Maintenance & fix news format (#19584)
- Update prism-launcher extension (#19598)
- Update CODEOWNERs
- Apple reminders/show which list reminder is from (#19343)
- Update battery-optimizer extension (#19190)
- Update awork extension (#19558)
- Update CODEOWNERs
- feat: Add history command (#19589)
- Update system-monitor extension (#19595)
- Update Ext/window sizer (#19580)
- Enhanced Date Format Support (#19539)
- [TRELLO] Allow for unassigned card and update dependencies (#19519)
- Update `Oracle Cloud` extension - (Confirm and) Terminate Instance + Add "Open in OCI" `Action` (#19534)
- Update Ext/window sizer (#19541)
- Update `Cloudflare` extension - Add A,AAAA,TXT DNS Records + Delete any DNS Record + Improve error handling function + Modernize extension to use latest Raycast config (#19552)
- Update wp-cli-command-explorer extension (#19559)
- Update CODEOWNERs
- Update reverso-context extension (#19452)
- Update CODEOWNERs
- Add project-code-to-text extension (#18996)
- Update CODEOWNERs
- Add project-hub extension (#19293)
- Update CODEOWNERs
- Update GemOptions.tsx (#19136)
- Update checksum (#19492)
- Update CODEOWNERs
- Update united-nations extension (#19528)
- Update downloads-manager extension (#19407)
- Update CODEOWNERs
- Move `josephlou` to past contributors (#19522)
- Update aave-search extension (#19366)
- Update CODEOWNERs
- Add dexcom-reader extension (#19141)
- Update CODEOWNERs
- Update digitalocean extension addressing issue displaying automated deployments (#19432)
- Update Fabric extension - location and tag selection (#19470)
- Wikipedia language improvements (#19473)
- Update Ext/window-sizer (#19499)
- Update CODEOWNERs
- Add slugify-file-folder-names extension (#19422)
- Update messages extension (#19426)
- macosicons: fix lint (#19497)
- Update CODEOWNERs
- Add google-scholar extension (#19392)
- Update CODEOWNERs
- Add `SolusVM 2` extension - Manage Servers + View,Update Members + View,Create API Tokens & Settings + View ISOs (#19486)
- Update CODEOWNERs
- feat: add Anytype MCP Server to the registry (#19506)
- Add `Appwrite` extension - Add multiple projects and view various services (#19510)
- Update CODEOWNERs
- Add foodle-recipes extension (#19084)
- Update CODEOWNERs
- Add cangjie extension (#19308)
- Update CODEOWNERs
- feat(google-calendar): create events with natural language duration input (#19317)
- Update CODEOWNERs
- Improved Category Search & Fixed Budget Details (#19451)
- Update qrcode-generator extension (#19455)
- Fix Toggle Grayscale exstension (#19236)
- Add unix-timestamp-converter extension (#18949)
- Update parcel extension (#19466)
- Fix Slack emoji search missing scope error - resolves #19441 (#19447)
- feat: add Thena MCP entry to official entries (#19379)
- Update Ext/Window Sizer (#19459)
- [2FA Directory] filter by category (like the Website) + modernize to use latest Raycast config (#19454)
- Update CODEOWNERs
- Update todoist extension (#19309)
- Update CODEOWNERs
- [git-repos] Fix issue with the path of the repository (#19440)
- Folder search fallback bug fix (#19449)
- Update CODEOWNERs
- Update CODEOWNERs
- Update parcel extension (#19356)
- Add fisher extension (#19213)
- Update CODEOWNERs
- Fix: React Rules of Hooks violation in New Tab command (#19384)
- Docs: update for the new API release
- Update prompt-stash extension - increase character limit and refactor validations (#19428)
- Update stock-tracker extension (#19424)
- feat(deepcast): Return to root state preference (#19430)
- Update subwatch extension (#19433)
- Update CODEOWNERs
- Update linkding extension (#19436)
- Update media-converter extension (#19385)
- Update CODEOWNERs
- [Dock] add MenuBar Item + add metadata image + Modernize (#19393)
- feat: add Grafana MCP to registry (#19240)
- Major improvement to Elgato Key LightsElgato enhancements (#19374)
- Update anytype extension (#19418)
- Update CODEOWNERs
- feat(preferences): Option to Close Raycast After Translation (#19386)
- Update mullvad extension (#19382)
- Update CODEOWNERs
- Update CODEOWNERs
- Update stock-tracker extension (#19411)
- Update t3-chat extension (#19412)
- Update CODEOWNERs
- Add Secret Browser Commands extension (#19396)
- Update CODEOWNERs
- Update linkding extension (#19395)
- Update sql-format extension (#19398)
- Update zeabur extension (#19413)
- Update `Google Books` extension -  feat: filter results by category, use `useFetch` for caching + docs: add CHANGELOG + modernize: use latest Raycast config (#19414)
- Update Ext/window sizer (#19416)
- Update CODEOWNERs
- Ability to copy song\'s artist and title (#19368)
- Update CODEOWNERs
- DEVONthink 4 (#19375)
- Add position-size-calculator extension (#19123)
- Update CODEOWNERs
- Add ratingsdb extension (#19298)
- Update Ext/window sizer (#19348)
- Update `ClickUp` extension - choose status from Dropdown in \'capture\' (close #19331) + update README (#19370)
- Update Extension: Easy New File (#19364)
- Updated openpgp version (#19367)
- Update CODEOWNERs
- Add Claude Sonnet 4 (#19362)
- Update CODEOWNERs
- Add paste-from-kindle extension (#19275)
- Update CODEOWNERs
- Ext/appcleaner (#19355)
- Update prism-launcher extension (#19346)
- Update CODEOWNERs
- Update aws extension (#19347)
- Update 1bookmark extension (#19350)
- Update instagram-media-downloader extension (#19360)
- Docs: update for the new API release
- Antinote: Support for Setapp version (#19345)
- feat(ci): comment when changelog missing (#19305)
- Update CODEOWNERs
- Update jenkins extension (#19286)
- Update prism-launcher extension (#19330)
- Docs: update for the new API release
- Update downloads-manager extension (#19340)
- Update CODEOWNERs
- Add open-gem-documentation extension (#18998)
- Update miro extension (#18702)
- Fix open with IINA action (#19251)
- Update CODEOWNERs
- Add notes limit for AI usage (#19332)
- Update CODEOWNERs
- added searching by permissions (#18817)
- Update CODEOWNERs
- Add Keka extension (#19326)
- Updated the Prisma MCP server entry. (#19334)
- Update CODEOWNERs
- Add AI Budget Tools, Enhanced Natural Language Queries, and Bug FixesF/raynab ai (#18611)
- Add azure-icons extension (#19224)
- Update CODEOWNERs
- Update spotify-player extension (#18815)
- Update CODEOWNERs
- Update Credits for One Thing Extension (#19303)
- Ext/penflow ai (#18799)
- Docs: update for the new API release
- Update clarify extension (#19222)
- Update CODEOWNERs
- Add grammaring extension (#19220)
- Update CODEOWNERs
- Add instagram media downloader extension (#19191)
- Add paperless-ngx MCP server entry to the registry (#19300)
- Update cloud-cli-login-statuses extension (#19284)
- [Dropover] Fix special characters in filenames and update docs (#19318)
- [Rebrandly] Update Links + Modernize (#19319)
- Update Ext/window sizer (#19316)
- Update CODEOWNERs
- Update CODEOWNERs
- Update brand-fetch extension (#19012)
- Update CODEOWNERs
- Update prism-launcher extension (#19117)
- feat(superwhisper): add search history (#18810)
- Add hammerspoon extension (#18922)
- MCP: Fix lint issues (#19310)
- Added the Shopify Dev MCP server (#19307)
- Update CODEOWNERs
- Update obsidian-tasks extension (#19151)
- Add untis extension (#18735)
- Update curl extension (#18931)
- Dovetail extension: Pagination with query filtering (#19163)
- Update CODEOWNERs
- Fix tldraw project URLs (#19291)
- Add Claude PR Assistant workflow (#19292)
- Fix link to Smithery (#19285)
- Update CODEOWNERs
- Add rae-dictionary-raycast extension (#19171)
- Supahabits: New command goals (#19282)
- [Say] Routine maintenance (#19283)
- Update CODEOWNERs
- Update t3-chat extension - add beta checkbox (#19133)
- Add Safari command to close other tabs (#19280)
- When PRs are marked as ready for review, auto assign to Per (#19281)
- Update CODEOWNERs
- Add `Creem` extension - List,Create Products + List Payments (#19205)
- Update CODEOWNERs
- ✨ Add frecency sorting to gitmoji (#18974)
- Update Ext/window-sizer (#19234)
- Apple Mail add new command and AI tool (#19228)
- Update `Unkey` extension - Modernize + Migrate broken endpoints to new ones to prevent crash (#19247)
- Update Markdown Codeblock (#19271)
- Update polymarket extension (#19273)
- Update 1bookmark extension (#19255)
- Update `cPanel` extension - Modernize + Manage API Tokens (create, revoke) + new function wrapping native `fetch` (#19274)
- Init apify mcp server (#19193)
- Update granola extension (#19215)
- Added the Prisma MCP server (#19201)
- Add Zeabur official MCP server to registry (#19217)
- Update CODEOWNERs
- Add are-na extension (#18646)
- Update CODEOWNERs
- Add slack-summarizer extension (#19032)
- Update nostr extension (#19209)
- Update CODEOWNERs
- Update paperless-ngx extension (#19197)
- Update CODEOWNERs
- Add tableau-navigator extension (#19086)
- Update CODEOWNERs
- MCP: fix spawn ... ENOENT issue (#18399)
- Update CODEOWNERs
- Add quikwallet extension (#19047)
- [Markdown Navigator] Remove duplicate files (#19208)
- [Unifi] Remove outdated files (#19207)
- [Trek] Remove outdated files (#19211)
- [Expo] Remove duplicate files (#19210)
- Update CHANGELOG.md (#19227)
- Update danish-tax-calculator extension (#19200)
- Bot: Only allow the OP to close the issue with a comment (#19196)
- Docs: update for the new API release
- Update raycast-icons extension (#18682)
- [Sentry] Show projects for non US Sentry orgs (#18758)
- Update package.json (#19195)
- Update CODEOWNERs
- Danish Tax Calculator (#19194)
- feat: add Nuxt official MCP server to registry (#19034)
- Update zen-browser extension (#19013)
- Update CODEOWNERs
- Add video-converter extension (#19030)
- Update CODEOWNERs
- Update polymarket extension (#19089)
- Add wp-cli-command-explorer extension (#19063)
- update extension raycast-gemini (#19021)
- Update CODEOWNERs
- Add smallpdf extension (#19041)
- Update coin-caster extension (#19166)
- Update CODEOWNERs
- Update vuejs-documentation extension (#19072)
- Update CODEOWNERs
- Update qrcode-generator extension (#18792)
- Update CODEOWNERs
- add(KDE Connect): KDE Connect in Raycast (#18928)
- Update CODEOWNERs
- Add shell-alias extension (#19028)
- Update lift-calculator extension (#19118)
- Update servicenow extension (#19148)
- Fix request loops (#19143)
- Fixing two super small typos on the readme for the Obsidian plugin (#19139)
- Docs: update for the new API release
- Docs: update for the new API release
- Update CODEOWNERs
- Clockify Extension: UX Improvement for "Start new Timer" functionality (#19026)
- Update CODEOWNERs
- Add setlist-fm extension (#19119)
- Update zerion extension (#19132)
- Update CODEOWNERs
- Gitlab Extension: My merge requests & label based filtering (#19007)
- Update CODEOWNERs
- Add file-organizer extension (#18877)
- Update CODEOWNERs
- Update `Two-Factor Authentication Code Generator` - Rename Codes + Modernize + Add README (#19019)
- [NixPkgs Search] Fetch version number from NixOS/nixos-search repo and compose url dynamically (#19025)
- Update flibusta-search extension (#19131)
- Update omnifocus extension (#19024)
- Update tidal-controller extension (#18437)
- Update CODEOWNERs
- Add Mac network location changer (#18961)
- LoL Esports AI tools (#18563)
- Update servicenow extension (#18834)
- Update at-profile extension (#18554)
- Update shopify-theme-resources extension (#18991)
- [Image Modification] Add support for QSpace Pro and ForkLift (#19108)
- Update CODEOWNERs
- Update kill-node-modules extension (#19039)
- Update CODEOWNERs
- Add grok-ai extension (#18566)
- Update CODEOWNERs
- Add subwatch extension (#18929)
- Ente Auth - fix preferred values (#19029)
- Update README.md (#19106)
- Update CODEOWNERs
- Update arc extension (#19062)
- TickTick support AI Extension (#17531)
- Update CODEOWNERs
- Add domain field to fastmail-masked-email extension (#19066)
- Apple Mail: Fix OTP codes across multiple mail accounts (#19033)
- Update hardcover extension (#19065)
- Update how-long-to-beat extension (#19042)
- Update dovetail extension (#19102)
- Update daily-sites extension (#19097)
- Update Ext/window sizer (#19103)
- Update index.tsx (#19067)
- Docs: update for the new API release
- Docs: update for the new API release
- Update OpenVPN description to reflect recent changes (#18788)
- Update CODEOWNERs
- Add raycast-zoxide extension (#18908)
- Update mermaid-to-image extension (#18975)
- Update CODEOWNERs
- fix(docs): mcp incorrect home page link (#19045)
- Add search-domain extension (#18837)
- Update CODEOWNERs
- Add selfhst-icons extension (#18904)
- Update CODEOWNERs
- Update CODEOWNERs
- Add option to automatically create labels in Todoist quick add command (#18892)
- Add daily-sites extension (#18763)
- Update CODEOWNERs
- MCP Registry: Initial commit (#19015)
- Docs: update for the new API release
- feat(font-search): add postscript names menu (#19003)
- Messages Paste OTP Regex Update (#18896)
- Update Ext/window sizer (#19017)
- Update CODEOWNERs
- Add lipsum extension (#18784)
- adding needed changes (#18987)
- Update CODEOWNERs
- feat: Rename NuxtUI extension to just Nuxt (#17887)
- Update CODEOWNERs
- [beszel-extension] Added AI tools for interacting with beszel (#17790)
- Update CODEOWNERs
- Update at-profile extension (#18881)
- Update CODEOWNERs
- Add flibusta-search extension (#18260)
- Update CODEOWNERs
- Update doge-tracker extension (#18950)
- Update CODEOWNERs
- Update CODEOWNERs
- Update raycast-ollama extension (#18910)
- feat(download-manager): add reload action (#18822)
- Add `Name.com` extension - View Account Balance + View Domains + View DNS Records + Delete DNS Record (#18982)
- Update CODEOWNERs
- DeepWiki extension (#18804)
- Update CODEOWNERs
- add primary action switch to `one-time-password` (#18800)
- Update google-chrome extension (#18794)
- Update Ext/window sizer (#18988)
- Update Ext/surge outbound switcher (#18989)
- Update CODEOWNERs
- Update prompt-stash extension (#18887)
- Add geoping extension (#18957)
- Update CODEOWNERs
- Update migadu extension (#18930)
- Update anytype extension (#18993)
- Update CODEOWNERs
- Add cocoa-core-data-timestamp-converter extension (#18656)
- Add macports extension (#18773)
- Update CODEOWNERs
- Things - Set Reminders in Today and Upcoming (#18771)
- Update git-assistant extension with rewrite of search git repositories command (#18948)
- Update Ext/window sizer (#18963)
- Update CODEOWNERs
- Update meme-generator extension (#18844)
- Update granola extension (#18972)
- Update CODEOWNERs
- Update package.json (#18970)
- Update granola extension (#18915)
- Update WIP extension (small typo fix) (#18962)
- Docs: update for the new API release
- Update CODEOWNERs
- Update raindrop-io extension (#18882)
- Update dust-tt extension (#18942)
- Update Ext/window sizer (#18945)
- Update CODEOWNERs
- [Stripe] Fix "Open in Stripe Dashboard" action adding extra leading slash (#18953)
- Update archiver extension (#18685)
- Update CODEOWNERs
- Folder Search Improvements (#18838)
- Added "toggle connection" to tailscale extension (#18409)
- Update esports-pass extension (#18920)
- Update f1-standings extension (#18876)
- Update CODEOWNERs
- Add thock extension (#18618)
- Update CODEOWNERs
- Add tana-paste extension (#18355)
- Update CODEOWNERs
- Update granola extension (#18883)
- Update CODEOWNERs
- Update T3 Chat - new models (#18902)
- Update draft-email.ts (#18895)
- Update CODEOWNERs
- Add zero extension (#18616)
- [Apple Intelligence] Add localization (#18593)
- Update research extension (#18769)
- Update dolar-cripto-ar extension (#18873)
- Update CODEOWNERs
- [Doppler] Update doppler-share-secrets extension (#18523)
- Update CODEOWNERs
- Add barcuts-companion extension (#18737)
- Update CODEOWNERs
- New extension: Granola AI Meeting Notes (#17618)
- [Spotify Player] Enable AI interaction with your queue (#18693)
- Docs: update for the new API release
- feat: replaced Exivo extension iconm due to trademark restrictions (#18868)
- Make some extensions available on Windows (#18869)
- Update animated-window-manager extension (#18865)
- Update lingo-rep-raycast extension (#18721)
- Update ugly-face extension (#18866)
- refactor: respect system appearance (#18856)
- Apple Mail: Paste latest OTP code (#18657)
- Update CODEOWNERs
- Add superhuman extension (#18391)
- Update CODEOWNERs
- Add animated-window-manager extension (#18712)
- Update homeassistant extension (#18234)
- Update CODEOWNERs
- Update swift-command extension (#18761)
- Update CODEOWNERs
- Add tautulli extension (#18023)
- Update CODEOWNERs
- Add qutebrowser-tabs extension (#18694)
- fix: update description in dia extension. (#18853)
- Update CODEOWNERs
- fix: fix not find zsh file (#18854)
- Add nusmods extension (#18757)
- Weather: Fix icon for Fog (#18849)
- refactor: support more offset (#18850)
- refactor: replace keystroke with key code (#18848)
- Update origami extension (#18846)
- Update system-information extension (#18783)
- FIX code extraction imessage-2fa extension (#18836)
- PurpleAir Extension Improvements: Multiple Sensor and Nearest Sensor (#18716)
- Update f1-standings extension (#17861)
- YoutubeMusic: Fixed Issue - remove Like and Like Songs (#18631)
- [YubiKey Code] - Replace usage of WindowManagement.getActiveWindow with getFrontmostApplication (#18831)
- Update CODEOWNERs
- Add gotify extension (#18679)
- Ext/window sizer fix screenshots and README (#18827)
- Update CODEOWNERs
- Add Verification/Sign-in Link Detection (#18695)
- Dia (The Browser Company) extension (#18667)
- Docs: update for the new API release
- Docs: update for the new API release
- Update CODEOWNERs
- Add cloud-cli-login-statuses extension (#18058)
- [YubiKey Code] - Sort accounts by usage (#18781)
- [hacker-news-top-stories] Add notification support (#18798)
- Update threads extension (#18813)
- Update Ext/window sizer (#18814)
- Update CODEOWNERs
- Revert "Update bmrks extension (#18539)" (#18811)
- update extension raycast-gemini (#18666)
- Update tinyimg extension (#18720)
- Update xcode extension (#18746)
- Update 1bookmark extension (#18664)
- Update CODEOWNERs
- Update aws extension (#18650)
- [Things] Fix menu bar `Complete` action (#18641)
- Update CODEOWNERs
- Add nostr extension (#18637)
- Docs: update for the new API release
- Update CODEOWNERs
- Add window-sizer extension (#18635)
- Update CODEOWNERs
- Add hardcover extension (#18628)
- Update CODEOWNERs
- Update quit-applications extension (#18617)
- Update CODEOWNERs
- Mark all extensions which uses AppleScript as macOS only (#18742)
- Slack: enhance Search Emojis command with AI-powered suggestions (#18625)
- Update CODEOWNERs
- Update zen-browser extension (#18751)
- Made use of Search API optional (#18410)
- Update CODEOWNERs
- Add magic-home extension (#18219)
- Update CODEOWNERs
- Add ton-address extension (#18683)
- Update svelte-docs extension (#18749)
- Update CODEOWNERs
- Update hacker-news-top-stories extension (#18747)
- Update bmrks extension (#18539)
- Update CODEOWNERs
- Add lookaway extension (#18589)
- Update CODEOWNERs
- Updating Raycast handle (#18738)
- Update CODEOWNERs
- Update regex-repl extension (#18724)
- Update notis extension (#18727)
- Update CODEOWNERs
- Add `Canva` extension - View Designs and Open in Browser (#18645)
- [SABnzbd] add README + Modernize to use latest config (#18670)
- Update CODEOWNERs
- Add go-to-rewind-timestamp extension (#18514)
- Update CODEOWNERs
- Update toggl-track extension (#18543)
- Update CODEOWNERs
- Update CODEOWNERs
- Update thesaurus extension (#18569)
- Update warp extension (#18504)
- Handle undefined downloads in subtitle formatting (#18729)
- Update mercado-libre extension (#18725)
- Update tuple extension (#18718)
- Update CODEOWNERs
- Add origami extension (#18314)
- Update README.md (#18719)
- Update quick-event extension (#17943)
- Update anytype extension (#18218)
- Update sportssync extension (#18240)
- Update CODEOWNERs
- add new extension Pumble (#18253)
- Update CODEOWNERs
- Add macOSIcons.com extension (#18386)
- fix(pianoman): Cannot read properties of undefined (#18591)
- Update zeabur extension (#18675)
- Supahabits/stats (#18700)
- Update CODEOWNERs
- Update genius-lyrics extension (#18696)
- chore(mcp): improve instruction and examples given (#18537)
- Update CODEOWNERs
- Add donut extension (#18711)
- [Expo] Add support for Two Factor authentication (#18202)
- Update CODEOWNERs
- Update zen-browser extension (#18068)
- Update CODEOWNERs
- Update raindrop-io extension (#18668)
- Update trovu extension (#18277)
- Added "Create new Incognito Window" action for Chrome extension (#18262)
- Update hacker-news-top-stories extension (#18705)
- Update svelte-docs extension (#18686)
- handle non existing file selection (#18674)
- Ext/surge outbound switcher (#18633)
- Update betterdisplay extension (#17535)
- Update CODEOWNERs
- Add lyric-fever-control extension (#18538)
- 🐛 fix(wakatime): Fix Reported Store Issues & Update Dependencies (#18638)
- Update CODEOWNERs
- Update google-calendar extension (#18636)
- fix details block in information doc (#18627)
- Update CODEOWNERs
- Update (#18632)
- Update CODEOWNERs
- Add playtester extension (#18492)
- Docs: update for the new API release
- Update CODEOWNERs
- Add asciimath-to-latex-converter extension (#18496)
- GitHub: Fix pull request filtering logic (#18624)
- feat(search-chatwork): mod scope to use search contacts commands with OAuth (#18542)
- Update CODEOWNERs
- [Asana] modernize + close after creating task (close Issue) (#18531)
- Update CODEOWNERs
- Update package.json (#18483)
- Update CODEOWNERs
- Add dpm-lol extension (#18476)
- Update CODEOWNERs
- Update nba-game-viewer extension (#18623)
- Add liquipedia-matches extension (#18455)
- Update CODEOWNERs
- Add git-worktrees extension (#18418)
- Update CODEOWNERs
- Update linkding extension (#18395)
- Arc extension: (Re-)Add support to open blank incognito window (#18427)
- Update CODEOWNERs
- Update raycast-svgo extension (#18560)
- Auto language detection and some small fixes (#18221)
- Add steam-player-counts extension (#18435)
- Linear: Update API and fixes (#18601)
- Todoist: Fix AI get-tasks (#18603)
- Update awork extension (#18580)
- Update CODEOWNERs
- Update lucide-icons extension (#18428)
- Update aws extension (#18552)
- Update CODEOWNERs
- Add cerebras extension (#18508)
- Update CODEOWNERs
- Add manage runtimes and delete unsupported runtimes commands to Xcode extension (#18463)
- Update CODEOWNERs
- Update link-cleaner extension (#18422)
- Update airpods-noise-control extension (#18126)
- [Github extension] add support for merge queue and "merge when ready" (#18045)
- Update ihosts to support remote hosts (#18176)
- Update CODEOWNERs
- Update CODEOWNERs
- [ADB] Add Uninstall command (#18091)
- Update paste-as-plain-text extension (#18574)
- Update deepcast extension (#18598)
- Update CODEOWNERs
- Add hacker-news-500 extension (#18431)
- GIF Search: Use `Clipboard` API to copy GIF instead of AppleScript. (#18588)
- Todoist: New API, improvements and bug fixes (#18518)
- Update CODEOWNERs
- Update raycast2github.json (#18575)
- Update dust-tt extension (#18578)
- Update cal-com-share-meeting-links extension (#18577)
- Update ns-nl-search extension (#18576)
- Commands and Navigation Enhancements (#18528)
- Update CODEOWNERs
- Add `Netherlands Railways Find a train` extension (#18420)
- Update CODEOWNERs
- Update `CricketCast` extension - Modernize + Better Score Error Handling (#18555)
- Update Connect to VPN extension  (#18406)
- Update CODEOWNERs
- Update jetbrains extension (#18545)
- Update copymoveto extension (#18535)
- Update CODEOWNERs
- Update github-profile extension (#18551)
- Enable Chat Actions When Viewing Previous Conversations (#18547)
- html-colors: add filtering option to group colors by shade (#18529)
- [Things] Display only incomplete todo in the menu bar (#18515)
- Update WeChat (#18345)
- Update `Spaceship` extension - Modernize + DNS Enhancements (#18571)
- Update CODEOWNERs
- Update CODEOWNERs
- parcel: add "Track on Website" and improve client (#18333)
- Add paystack extension (#18375)
- Update CODEOWNERs
- Update gg-deals extension (#18519)
- Update dub extension (#18517)
- Fix 404 error by replacing the repo where we get the name from (#18525)
- Improved fallback command and flickering during search (#18533)
- feat(bento-me): improve UI. (#18521)
- Update CODEOWNERs
- Update clockify extension (#18401)
- Update CODEOWNERs
- Add "Obsidian Tasks" Extension (#18390)
- Ai extensions/elgato key light (#17822)
- Update utilities.md (#18510)
- Update CODEOWNERs
- Add virustotal extension (#18373)
- Update CODEOWNERs
- things: detect URLs in notes (#18362)
- Update CODEOWNERs
- Update deno-deploy extension (#17840)
- Update dad-jokes extension (#18494)
- Slack (#18156)
- Delivery Tracker: Manually Mark as Delivered and Delete All Delivered Deliveries (#18485)
- fix: gcloud path for non homebrew intel package installations (#18493)
- Update CODEOWNERs
- [Canvascast] Fix bugs with announcements and downloads (#18100)
- Update adhan-time extension (#18204)
- Update CODEOWNERs
- Slack: New Command: Send Message (ISSUE-15424) (#16580)
- Update antd-open-browser extension (#18299)
- Update image-flow extension (#18470)
- feat(himalaya): Update for Himalaya `v1.0.0` (#18388)
- Add Find Features and AI Extension Support (#18195)
- Add movie runtime information to Letterboxd (#18089)
- Update CODEOWNERs
- Update evernote extension (#17889)
- Add g-cloud extension (#18093)
- Update CODEOWNERs
- Add awork extension (#17791)
- Update laravel-herd extension (#18477)
- feat(search-composer-packagist): display abandon package (#18307)
- [Polar] Update Polar SDK Version (#18475)
- Update CODEOWNERs
- Add `Pastery` extension - Search Pastes, Create Paste, Delete Paste (#18404)
- [Polar] Fix non-recoverable state when OAuth access tokens expires (#18471)
- Docs: update for the new API release
- Update CODEOWNERs
- Update `Unsplash` extension - add Pagination, Caching + Modernize (close Issue) (#18384)
- Update CODEOWNERs
- Add jsrepo extension (#18346)
- Update producthunt extension (#18442)
- docs: asset folder clearing hint (#18320)
- Update CODEOWNERs
- Update vercast extension (#18297)
- Update pcloud extension (#18291)
- Update CODEOWNERs
- Add image-to-ascii extension (#18282)
- Update Tailscale extension (#18281)
- [braid] Fetch icons dynamically from github (#18469)
- [Bitwarden] Add authenticator primary action preference (#18464)
- Improve URL retrieval with clipboard fallback (#18461)
- Update dict-cc extension (#18443)
- Update CODEOWNERs
- Add valkey-commands-search extension (#18268)
- Update CODEOWNERs
- Update CODEOWNERs
- Update reflect extension (#18294)
- Add pollenflug extension (#17787)
- Update CODEOWNERs
- Add image-flow extension (#17383)
- Update CODEOWNERs
- Add laravel-herd extension (#18318)
- Update 1bookmark extension (#18413)
- [Bitwarden] Authenticator command (#18322)
- Update quick-notes extension (#18389)
- Update `My Idlers` extension - Optimistically delete Server (#18421)
- Update CODEOWNERs
- Update raycast-svgo extension (#18426)
- [Contentful] fix: video assets not showing thumbnail (#18441)
- Docs: update for the new API release
- feat: added logic for properly counting CJK characters as words (#18430)
- Update CODEOWNERs
- Update tidal-controller extension (#18275)
- Update CODEOWNERs
- Update CODEOWNERs
- Update obsidian extension (#18394)
- Add surge-outbound-switcher extension (#18065)
- Update CODEOWNERs
- Add mistral extension (#18237)
- add error handling when user tries to update todo from menu bar (#18047)
- Update producthunt extension (#18352)
- Update CODEOWNERs
- Added Llama 4 models (#18424)
- Add lift-calculator extension (#18245)
- Fix the `mastodon` extension (#18407)
- Update CODEOWNERs
- Update mail extension (#18349)
- feat(KeePassXC): add favicon support and better preference descriptions. (#18278)
- Update CODEOWNERs
- Add caschys-blog extension (#17768)
- Update CODEOWNERs
- Update dub extension (#17813)
- Update whatsapp extension (#17474)
- Fix the `dub` extension (#18292)
- fabric: update description (#18267)
- Update package.json (#18374)
- Update CODEOWNERs
- Add smart-calendars-ai-create-events-using-ai extension (#18235)
- Add handoff-toggle extension (#18228)
- [Folder-Cleaner] feat: Clean One & Hooks (#18360)
- Update CHANGELOG.md (#18372)
- Update CODEOWNERs
- Update gmail-accounts (#18332)
- Update omni-news extension (#18327)
- feat: add `bento.me` extension. (#18354)
- Update CODEOWNERs
- Misc: Update vulnerable version of axios (#18310)
- Update CODEOWNERs
- Add repository favorites feature to Bitbucket extension (#17652)
- Update zed-recent-projects extension (#18340)
- Update CODEOWNERs
- Update tailwindcss extension (#18358)
- Add time-logs extension (#17696)
- python package search fix (#18300)
- Update CODEOWNERs
- [Update Figma Files] Adds ability to clear cache (#18367)
- Add builtbybit extension (#18098)
- Update CODEOWNERs
- Update ssh-manager extension (#17885)
- Update CODEOWNERs
- Clean up split surrogate pairs (#18321)
- noteplan 3 | add quicklink action (#17894)
- Update stockholm-public-transport extension (#18020)
- Update CODEOWNERs
- Update supernotes extension to enable AI tools (#17475)
- Added missing endtab tag (#17986)
- Update CODEOWNERs
- Update raydocs extension (#17450)
- Update google-calendar extension (#17852)
- Update svgl extension (#17527)
- Apple Mail: Support email accounts with multiple sender addresses (#18217)
- Update coin-caster extension (#18315)
- [RSS Reader] fix feeds not moving (close issue) (#18313)
- zed-recent-projects - show git branch label for repositories (#18311)
- Update CODEOWNERs
- Update kagi-search extension (#18191)
- Update CODEOWNERs
- Add Finder File Actions extension (#17705)
- Update CHANGELOG.md (#18293)
- Update: Search Router (#18250)
- Update CODEOWNERs
- Add TinyIMG extension (#18231)
- Update CODEOWNERs
- Add aliyun-flow extension (#18114)
- Update CODEOWNERs
- Add exivo extension (#18078)
- Update CODEOWNERs
- Add fullscreentext extension (#17346)
- [HackMD]: Enable new AI extension capabilities (#17363)
- Update CODEOWNERs
- Add lavinprognoser extension (#17200)
- Update pipedrive extension (#18241)
- Update CODEOWNERs
- Update 1bookmark extension (#18243)
- Update cal-com-share-meeting-links extension (#18273)
- Update Package.json - schoology extension (#18286)
- Docs: update for the new API release
- Add Default Sort MenuBar - #17271 (#18226)
- Update CODEOWNERs
- Add simple-http extension (#18128)
- Update CODEOWNERs
- Update firecrawl extension (#18206)
- Update pcloud extension (#18238)
- [Language Detector] Add new detector - franc (#18246)
- Update memos extension (#18254)
- Update CODEOWNERs
- Update translate extension (#18187)
- Update CODEOWNERs
- Add Translit extension (#17114)
- Update CODEOWNERs
- Add essay extension (#18142)
- Update CODEOWNERs
- Update browser-history extension (#18227)
- Update CODEOWNERs
- Deepseek/fix mar (#18170)
- Update arc extension (#18208)
- Update CODEOWNERs
- Update CODEOWNERs
- Update active contributors (#18222)
- Add ntfy extension (#18188)
- Update CODEOWNERs
- Update aave-search extension (#18263)
- Add create-link extension (#17999)
- Update zeabur extension (#18257)
- Update CODEOWNERs
- Add rename-images-with-ai extension (#17799)
- Update CODEOWNERs
- [Groq] Update models (#18200)
- Update CODEOWNERs
- Add Fabric extension (#18184)
- Update public_raycast_extensions.txt (#18205)
- Update CODEOWNERs
- Support Commas in Filter Query in Todoist extension (#18197)
- Update CODEOWNERs
- Update 1bookmark extension (#18163)
- Update CODEOWNERs
- Update ado-search extension (#18057)
- Add Moneybird time entry extension (#18055)
- Fixed Antinote extention search functionality (#18183)
- Update CODEOWNERs
- Update svgl extension (#18083)
- Update miro extension (#17727)
- Update CODEOWNERs
- Add Antinote extension (#17572)
- Update gleam-packages extension (#18123)
- Update Bartender extension to support Setapp and standalone (#18168)
- Terminal: Add link to YT (#18155)
- update extension raycast-gemini - new model and error code handling (#18150)
- Update terminaldotshop extension (#18149)
- Docs: update for the new API release
- Update search-router (#18117)
- Deliver Tracker: Allow Offline Tracking of FedEx and UPS Deliveries (#18131)
- Fixed error when running command twice in short time (#18133)
- Updating stalebot (#18145)
- README: Update README for Mem0 extension (#18144)
- Docs: update for the new API release
- Update CODEOWNERs
- Update web-audit extension (#18025)
- Update CODEOWNERs
- Update bintools extension (#18022)
- Workflows: Update to version 1.17.0 (#18140)
- Update CODEOWNERs
- Mem0 Integration (#17792)
- Add pkg-swap extension (#17910)
- Update CODEOWNERs
- Terminal (#17998)
- Update aave-search extension (#18036)
- [Copy Skeet Link] Mark this extension as deprecated (#18116)
- Update notis extension (#18077)
- Update CODEOWNERs
- Added Bartender extension (#17941)
- Update CODEOWNERs
- Add epim extension (#17888)
- Migrated bangs to Kagi\'s Bang from DuckDuckGo (#17996)
- update extension ssh con manager (#18084)
- [Zed] Fix removing remote recent projects (#18104)
- Add Inbox View in Menu Bar Tasks - #17098 (#17899)
- Update CODEOWNERs
- Fix typo (#18019)
- Add clip-swap extension (#17166)
- Update CODEOWNERs
- Update mcp extension (#17978)
- Update CODEOWNERs
- Add slowed-reverb extension (#17469)
- Update CODEOWNERs
- Update raycast-gemini extension (#17859)
- Update CODEOWNERs
- New extension: awesome mac (#17675)
- [Bitwarden] Update description, README, and setup instructions (#18046)
- Update CODEOWNERs
- Update jwt-decoder extension (#18033)
- Add midas extension (#17140)
- [Zed] Add remove recent project (#18027)
- [Porkbun] modernize + fix domain pricing crash (close Issue) (#18073)
- Update `Wave` (waveapps.com) extension -  more invoice types in customer statement (#18063)
- Update CODEOWNERs
- Update producthunt extension (#18060)
- [PM2] Upgrade to pm2@6 (#18062)
- Update CODEOWNERs
- Turn Apple Mail into an AI Extension (#17766)
- Update CODEOWNERs
- Update zen-browser extension (#18017)
- Update iconify extension (#17997)
- Update CODEOWNERs
- Add doorstopper extension (#17991)
- Update CODEOWNERs
- Add aave-search extension (#17688)
- Update CODEOWNERs
- Update imessage-2fa extension (#17131)
- Update CODEOWNERs
- Update leetcode extension (#18000)
- [Language Detector] Add support for choosing AI models (#18006)
- update extension ccfddl with performance optimization (#18008)
- Update anonaddy extension (#17685)
- Update CODEOWNERs
- Update CODEOWNERs
- Update linkding extension (#17700)
- Add LLMs Txt extension (#17490)
- Update CODEOWNERs
- [WeChat] Routine maintenance (#17870)
- Update CODEOWNERs
- Add wu-bi-bian-ma extension (#17846)
- Add note to ESLint Customization section (#17871)
- [Examples] Migrate to 1.94.0 with ESLint 9 flat config (#17990)
- Update CODEOWNERs
- Add gokapi extension (#17873)
- [Say] Routine maintenance (#17989)
- Safari: Update AppleScript commands for current tab info (#17965)
- Update notis extension (#17872)
- Update CODEOWNERs
- Update CODEOWNERs
- Update link-bundles extension (#17832)
- Add folder-cleaner extension (#17598)
- Migrations: Add migration for 1.94.0 (#17975)
- Docs: update for the new API release
- Update CODEOWNERs
- [GitHub] Include all collaborators in reviewer selection (#17929)
- Update CODEOWNERs
- Enhance Parcel extension with new "Add Delivery" feature (#17860)
- Update CODEOWNERs
- Add datahub extension (#17828)
- Update 1bookmark extension (#17960)
- Update fingertip extension (#17967)
- Update CODEOWNERs
- Supahabits/support habit colors (#17958)
- Add speech-to-text extension (#17767)
- Update CODEOWNERs
- Add virtual-pet extension (#17821)
- Update CODEOWNERs
- Update connect-to-vpn extension (#17649)
- Update team-time extension (#17968)
- Update CODEOWNERs
- Update system-information extension (#17911)
- Update CODEOWNERs
- Enhance URL unshortening functionality with improved handling for com… (#17932)
- Update write-evals-for-your-ai-extension.md (#17953)
- Update CODEOWNERs
- [todo-list] Move @telmen to past contributors (#17944)
- Update CODEOWNERs
- Update firecrawl extension (#17947)
- Update toggl-track extension (#17819)
- Update CODEOWNERs
- Update markdown-navigator extension (#17925)
- [todo-list] 👥 Move @bkeys818 to pastContributor for Todo List (#17927)
- Update grammari-x extension (#17928)
- update extension GitHub Profile (#17906)
- Update CODEOWNERs
- [Gif Search] Add Localization Support for Giphy and Tenor (#17800)
- Update CODEOWNERs
- Add team-time extension (#17702)
- Update CODEOWNERs
- Update password-store extension (#17693)
- Update CODEOWNERs
- Update CODEOWNERs
- New extension: emojify (#17677)
- Add pinia-docs extension (#17853)
- Update CODEOWNERs
- feat: raycast extension for my mind (#17068)
- Delivery Tracker - Prevent Duplicate Deliveries (#17893)
- Update simulator-manager extension (#17895)
- Update CODEOWNERs
- Update `HestiaCP Admin` extension - Add Mail Domain + View User Backups (#17900)
- [Say] Routine mantenance (#17902)
- Update day-one extension (#17905)
- [System Monitor] Improve `onAction()` (#17908)
- [Bitwarden] Fix CLI downloaded binary hash mismatch (#17915)
- Update CODEOWNERs
- Update CODEOWNERs
- Add vue-router-docs extension (#17855)
- Add markdown-navigator extension (#17820)
- Update CODEOWNERs
- Update wechat extension (#17718)
- Update CODEOWNERs
- Update CODEOWNERS for Todoist extension (#17723)
- Update search-router extension with empty query supports (#17829)
- Add simulator-manager extension (#17867)
- Update extension raycast-gemini (#17850)
- [Bitwarden] Re-enable arm64 CLI bin download (#17866)
- Update CODEOWNERs
- Update omnifocus extension (#17742)
- Update CODEOWNERs
- Add mermaid-to-image extension (#17621)
- Update CODEOWNERs
- Moved to new folder (#17844)
- Update 1bookmark extension (#17731)
- Supahabits/unmark as done habit (#17830)
- Update CODEOWNERs
- Update copy-path extension (#17836)
- Add notis extension (#17662)
- Update CODEOWNERs
- Add copymoveto extension (#16755)
- Update CODEOWNERs
- Add webdav-uploader extension (#17555)
- Add vuetify-docs extension (#17814)
- Update CODEOWNERs
- AI Extensions: Migrate duck-facts beta extension (#17605)
- Update CODEOWNERs
- Update CODEOWNERs
- Update CODEOWNERs
- AI Extensions: Migrate deep-research beta extension (#17604)
- Update CODEOWNERs
- AI Extensions: Migrate app-creator beta extension (#17607)
- AI Extensions: Migrate memory beta extension (#17606)
- AI Extensions: Migrate code-execution beta extension (#17608)
- AI Extensions: Migrate contexts beta extension (#17609)
- AI Extensions: Migrate mcp beta extension (#17610)
- [Daminik] \'copy\' action + chore: update ray deps (#17815)
- Examples: Add tools to todo list example (#17810)
- Update CODEOWNERs
- Update ghostty extension (#17646)
- Update pocket extension (#17678)
- Update CODEOWNERs
- Update tw-colorsearch extension (#17805)
- docs(utilities/react-hooks): update useLocalStorage example (#17645)
- Update mullvad extension (#17789)
- Adding support to move selected items in the finder to a destination folder (#17807)
- Update CODEOWNERs
- [Raycast Notification] Remove unused files (#17809)
- Update homeassistant extension to allow selecting custom dashboard (#17778)
- Update custom-folder extension (#17785)
- Update CODEOWNERs
- New Extension: Github Profile (#17550)
- Update CODEOWNERs
- Add `Namecheap` extension - View domains in your account + View Domain DNS Servers + View Domain DNS Hosts (#17653)
- Update CODEOWNERs
- Update docker extension (#17783)
- Update CODEOWNERs
- Update readwise-reader extension: add category filter to list documents (#17626)
- Update CODEOWNERs
- Update CODEOWNERs
- Update hubspot extension (#17438)
- Update `Lenscast` extension - Modernize + Update URLs & API Endpoint (fix not loading) + chore (#17713)
- Update `Vercast` extension - update components + proper handling when token invalid (#17429)
- Update CODEOWNERs
- Update dub extension (#17736)
- Update keepassxc extension (#17781)
- Update CODEOWNERs
- Update `Confluence` extension - Modernize Extension (`usePromise` hooks) + Fix People Panel failing (#17592)
- Update CODEOWNERs
- Add intermittent-fasting extension (#16525)
- Update drafts extension (#17583)
- Update CODEOWNERs
- Add gmail-accounts extension (#17575)
- Update CODEOWNERs
- Update keepassxc extension (#17758)
- Update scrcpy extension (#17777)
- Update mullvad extension (#17779)
- update: Ext/gemini/feat/history (#17762)
- Update sportssync extension (#17698)
- Unread menubar list (#17759)
- Update `Netlify` extension - ✨AI: Add tools to View Env & DNS Records (#17760)
- Update CODEOWNERs
- Add ultrahuman extension (#17716)
- Update CODEOWNERs
- Add solana-wallets-generation extension (#17129)
- Update CODEOWNERs
- Add coin-caster extension (#17377)
- Update google-tasks extension (#17568)
- Update multi-force extension (#17522)
- Update CODEOWNERs
- Update custom-folder extension (#17710)
- Update CODEOWNERs
- Update doccheck extension (#17394)
- Update CODEOWNERs
- Update linear extension (#17743)
- [github] add repository filter to my pull request menu bar and unread notifications (#17327)
- Ext/deepseeker - March Updates (#17690)
- Update system-monitor extension (#17741)
- Update CODEOWNERs
- Added contributor for claude (#17333)
- Update linkwarden extension (#17656)
- Update README.md (#17650)
- Update CODEOWNERs
- Remove throttling on google maps search (#17661)
- Update Iconify Extension (#17663)
- Update CODEOWNERs
- github: fix label typo (#17734)
- Update music extension (#17726)
- Update media-converter extension (#17733)
- Update CODEOWNERs
- Add swap-commas-dots extension (#17480)
- Update CODEOWNERs
- Add learning-snacks extension (#17477)
- Update CODEOWNERs
- Update at-profile extension (#17680)
- Update advanced-replace extension (#17236)
- Update CODEOWNERs
- Add privatebin extension (#16931)
- Update color-picker extension (#17593)
- Update CODEOWNERs
- Update homeassistant extension (#17570)
- Update CODEOWNERs
- Update CODEOWNERs
- Update zen-browser extension (#16958)
- Add html-colors extension (#17658)
- Update CHANGELOG.md (#17715)
- Update CODEOWNERs
- Update curl extension: add jsonpath copy result feature (#17669)
- Add Remote Project support for zed-recent-projects extension (#17659)
- Update CODEOWNERs
- [Raycast-gemini] Add new command: Ask About Selected Screen Area (#17296)
- Update obsidian-smart-capture extension (#16790)
- Add support for Tokyo region (#17267)
- Update CODEOWNERs
- Add v2raya-control extension (#17294)
- Update CODEOWNERs
- Update CODEOWNERs
- Add fingertip extension (#17328)
- [Video Downloader] Rename extension folder and handle to `video-downloader` (#17714)
- Update CODEOWNERs
- Slack: Retry to auth if some scopes are missing (#17640)
- Add Mood Tracker extension (#17428)
- Update CODEOWNERs
- [Open Link in Browser] Add new command: Open selected text in default browser (#17445)
- Update trek extension (#17616)
- Update Smallweb Extension - Add support for multiple folders/domains (#17634)
- PPL: Improved cached logic and removed unused fields (#17666)
- [YouTube Downloader] Avoid to run run `onSubmit` while fetching video (#17641)
- Update `Coolify` extension - Delete Resource Action + Support DBs in Resources (#17622)
- Delivery Tracker - FedEx Delivery Date Bug Fix (#17627)
- Update CODEOWNERs
- Fix & improve GitHub search (#17504)
- [slack] add search:read to manifest (#17586)
- [Google Workspace] Add "Open Google Drive Home" command (#17174)
- [docs] Document available templates and boilerplates  (#17422)
- fix: fixed performance issue with Create Slack Template command (#17562)
- Docs: update for the new API release
- fix for app crash when user has not granted disk access (#17569)
- Update `Bluesky` extension - chore: update @atproto/api for better typing + in `Notifications`, fix `initialRes.body?.cancel` error (#17561)
- Update CODEOWNERs
- Feat/sendme : Send files/folders directly from one computer to another without needing to upload them to the cloud first (#17415)
- Update CODEOWNERs
- Add raycast-mux extension (#17460)
- visual-studio-code-recent-projects add Trae CN (#17559)
- Youtube downloader/tools (#17576)
- Add history tracking feature to DeepSeeker extension (#17538)
- Save snippet bug (#17519)
- Update CODEOWNERs
- Update CODEOWNERs
- [dotNew] update extension API (#17453)
- Add MacStories extension (#17448)
- Update t3-chat extension (#17574)
- Update mercury extension (#17369)
- Update package-tracker extension (#17240)
- Update real-calc extension (#17565)
- Update CODEOWNERs
- Turn Resend into an AI Extension (#17444)
- Update CODEOWNERs
- Update pieces-raycast extension (#17413)
- Add youtube-search extension (#17408)
- Update CODEOWNERs
- Update find-website extension (#17389)
- Update CODEOWNERs
- [Language Detector] Add extension (#17336)
- Update CODEOWNERs
- [Easy Variable] Enhancements and tweaks (#17551)
- [Raycast Port] Add port for Window Management (#17554)
- Update CODEOWNERs
- Update safari extension (#17227)
- Add command for Ollama (#17526)
- Update CODEOWNERs
- [Video Downloader] Add updater view (#17304)
- Add search-router extension (#17518)
- Update CODEOWNERs
- Update 1bookmark extension (#17542)
- Update CODEOWNERs
- Update music extension (#17545)
- add extension CCFDDL (#17517)
- Updated vitest dependency (#17548)
- Update raycast-explorer extension (#17533)
- Google Calendar: Improve timezones and add Google Meet (#17441)
- Safari improvements (#17446)
- Update CODEOWNERs
- [Video Downloader] Add support for selecting format (#17224)
- Add delivery-tracker extension (#16998)
- Update CODEOWNERs
- Add easyvariable extension (#17302)
- Update CODEOWNERs
- feat: add slack-templated-message extension (#17253)
- Update CODEOWNERs
- Add goodlinks extension (#17335)
- Update CODEOWNERs
- Add image-diff-checker extension (#17275)
- Update beeminder extension (#17150)
- Update qbitorrent extension (#17529)
- Update CODEOWNERs
- Update element extension (#17498)
- Update CODEOWNERs
- Update qbitorrent extension (#17332)
- Update `UptimeRobot` extension - New `Action` to Delete Monitor (optimistically) + New `Action` to "Open in Dashboard" (#17487)
- Update 1bookmark extension (#17521)
- Update CODEOWNERs
- Update bitwarden extension: fix search when vault contains SSH keys (#17492)
- Update CODEOWNERs
- Add board-game-geek extension (#16938)
- Add fronius-inverter extension (#17514)
- Update CODEOWNERs
- Add esports-pass extension (#17269)
- Update CODEOWNERs
- Add save to Readwise Reader integration to Hacker News extension (#16749)
- Docs: update for the new API release
- Update CODEOWNERs
- Add betterdisplay extension (#17512)
- Update CODEOWNERs
- Add inkeep extension (#17495)
- Update CODEOWNERs
- Add git-profile extension (#16983)
- Update CODEOWNERs
- [extensions/get-favicon] new feature: specify icon size (#17472)
- Update personio extension (#17507)
- Misc: Remove root package.json (#17509)
- Update visual-studio-code extension (#17506)
- Update CODEOWNERs
- Add smart-reply extension (#17230)
- Update CODEOWNERs
- Add Prusa Printer Control Extension (#17247)
- Configuring primary and secondary actions (#17155)
- [coffee] show caffeinate duration in menu bar item (#17493)
- Update CODEOWNERs
- Update system-monitor extension (#17499)
- Update flush-dns extension (#17467)
- Update CODEOWNERs
- Update visual-studio-code extension (#17491)
- Bugfix: Ensure fetched data is always mapable (#17464)
- Update CODEOWNERs
- Update raytaskwarrior extension (#17489)
- Update CODEOWNERs
- Add yu-gi-oh-card-lookup extension (#17299)
- Update CODEOWNERs
- qqmusic control add contributor (#17289)
- Update CODEOWNERs
- Add solidtime extension (#17234)
- Update CODEOWNERs
- Add mutedeck extension (#17135)
- Update CODEOWNERs
- Add NuxtUI extension (#17130)
- Add yamli extension (#17127)
- Update CODEOWNERs
- Update visual-studio-code extension (#17473)
- Update appcleaner extension (#17470)
- Update CODEOWNERs
- [MAL] General improvements + API reworks (#16982)
- Add expo extension (#16991)
- Update hidemyemail extension (#17439)
- Update CODEOWNERs
- [Time Tracking] Support Editing Stopped Timers (#17219)
- [Wakatime]: Support customize API base URL (#17118)
- Update can-i-php extension (#17433)
- Update CODEOWNERs
- Add doge-tracker extension (#17180)
- Update CODEOWNERs
- Add Quoterism Extension (#17030)
- Update CODEOWNERs
- Add evaluate-math-expression extension (#17089)
- Docs: Update the utils docs
- Workflows: Use PERSONAL_ACCESS_TOKEN (#17435)
- Update review-pullrequest.md (#17432)
- Update CODEOWNERs
- update extension easydict (#17214)
- Update CODEOWNERs
- Update mailtrap extension (#17157)
- Update CODEOWNERs
- Add parcel extension (#17350)
- Update code-quarkus extension (#17417)
- [United Nations] Routine maintenance (#17427)
- Update CODEOWNERs
- Add diskutil-mac extension (#17396)
- Update CODEOWNERs
- Add neurooo-translate extension (#16949)
- Update CODEOWNERs
- Feature/Todoist: Removing premium features for non-premium users (#17326)
- Add 1bookmark extension (#16482)
- [Brand Icons] Fix AI functions (#17425)
- [Todoist] Close Raycast immediately when creating task/project (#17246)
- Update CODEOWNERs
- Update bitwarden extension (#17153)
- Jira: Fix AI search issue (#17397)
- Todoist: Avoid bloating the AI (#17395)
- Update raycast-explorer extension (#17393)
- Update devdocs extension (#17373)
- Update CODEOWNERs
- [zoo] update: custom model support (#17388)
- Add lingo-rep-raycast extension (#16512)
- Update CODEOWNERs
- Update visual-studio-code extension (#17385)
- Update learn-core-concepts-of-ai-extensions.md (#17381)
- Update follow-best-practices-for-ai-extensions.md (#17372)
- Update CODEOWNERs
- Move myself to past contributors for Safari extension (#17387)
- Update CODEOWNERs
- Update extension ssh-manager (#17109)
- Update `Aiven` extension - view Service Backups & Logs + add "Open in Browser" actions (#17330)
- Update CODEOWNERs
- Update raycast-explorer extension (#17374)
- Update CODEOWNERs
- Update flow extension (#17196)
- Update CODEOWNERs
- Update to note filtering and display (#17192)
- Fix up GitHub Search (#17075)
- Update omnifocus extension (#17133)
- Update CODEOWNERs
- Fix broken link in README & bump deps (#17069)
- [Cursor Recent Projects] improve description (#17367)
- Update CODEOWNERs
- Add scira extension (#17361)
- Perplexity: Add deep research (#17359)
- Create 12.x.json (#17355)
- Update CODEOWNERs
- [SF Symbols Search] Fix issue and revert manual filtering (#17319)
- [Spotify Player] Fix a possibly undefined issue from Select Devices command (#17222)
- Update CODEOWNERs
- Add namuwiki extension (#16873)
- [Todoist] Add Schedule Deadline Actions (#17291)
- feat: enable markdown support in description field (#17243)
- Migration: Add migration for 1.93.0 (#17347)
- Update CODEOWNERs
- Update CODEOWNERs
- Update readwise-reader extension (#17039)
- Miniflux: Add mark as read actions (#17038)
- Docs: update for the new API release
- [Claude] Fix default model override (#17342)
- Slack: Include users.profile:write scope to set status (#17343)
- Update CODEOWNERs
- AI Extensions: Exa (#17337)
- Update CODEOWNERs
- Update yabai extension (#17311)
- Add t3-chat extension (#16961)
- Added a "2FA" keyword for the `Paste Latest OTP Code` command (#17334)
- parse typeid (#17067)
- Update CODEOWNERs
- Update howlongtobeat extension (#17079)
- Update pdf-tools extension (#17329)
- Update CODEOWNERs
- Update CODEOWNERs
- AI Extensions: Google Calendar (#17321)
- AI Extensions: Firecrawl (#17320)
- [Google Chrome] Add "Copy Title" action for Search Tab command (#16968)
- Add support for Sonnet 3.7 (#17307)
- Update ghostty extension (#17266)
- Update setup-bun to v2 (#17265)
- [Brand Icons] Add support for viewing release notes (#17113)
- Update CODEOWNERs
- Add quick-access-for-zeroheight extension (#17284)
- [Raycast Port] Fix documentation path (#16944)
- Update pull_request_template.md (#17316)
- Update CODEOWNERs
- Update raycast-ollama extension (#17282)
- AI Extensions: e2b (#17314)
- [Linear] Fix creation issue (#17312)
- Ignore package.json from root (#17268)
- Support public extensions for e2b and firecrawl (#17318)
- Update CODEOWNERs
- Update tyme-3-time-tracker extension (#16887)
- Update CODEOWNERs
- Add brreg extension (#16927)
- Fix missing `context` parameter in `createDeeplink` doc (#16910)
- Update CODEOWNERs
- Add due date and NLP parsing to todo list extension (#16897)
- Update CODEOWNERs
- Add tmux-cheatsheet extension (#16892)
- Update CODEOWNERs
- Add `OlaCV` extension - View your .cv Domains, Domain Zone + View & Create Contacts (#17251)
- Update CODEOWNERs
- Add `Jotform` extesnsion - List Forms and View Form Submissions (#17228)
- Update CODEOWNERs
- Add designer-excuses extension (#16659)
- Update appcleaner extension (#17115)
- Update CODEOWNERs
- Update timezone-converter extension (#17290)
- Update 1password extension (#17283)
- Update CODEOWNERs
- Ext/deepseeker (#16925)
- Update color-picker extension (#17054)
- Update CODEOWNERs
- Update deepl-api-usage extension (#17229)
- Update audio-device extension (#17220)
- Update downloads-manager extension (#17159)
- Update stale.yml (#17287)
- Update CODEOWNERs
- Add screenpipe extension (#16923)
- Update CODEOWNERs
- [Quick Open Project] Stop transferring environment variables to opened applications (#17158)
- Update CODEOWNERs
- [WhoSampled] - Add functionality for apple music and manual search (#17094)
- update Google Gemini extension (#16881)
- [Image Modification] Add \'Remove Background\' command (#17285)
- Update CODEOWNERs
- feat(vscode-recent-projects): add support for Trae (#17258)
- Various small improvements in the ChatGPT plugin (#16695)
- Update CODEOWNERs
- Update ghostty extension (#17225)
- Update unifi extension (#17101)
- Update CODEOWNERs
- Update google-search extension (#16615)
- [Video Downloader] Improve downloader & installer (#17213)
- added support for safari, firefox, zen, brave, vivaldi, opera and edge (#16914)
- AI Extensions: Linear, Spotify player, Todoist (#17223)
- Update CODEOWNERs
- Update CODEOWNERs
- AI Extensions: Linak Controller, Metronome, Music, Netlify, One thing, Pomodoro, Producthunt, Shell (#17209)
- Update CODEOWNERs
- AI Extensions: Siri, Tableplus, Things, Timers, Toothpick, Vercast, Webpage to Markdown, Wikipedia, Workouts, Zoom (#17211)
- AI Extensions: Messages, Notion, Slack, Safari (#17217)
- AI Extensions: apple-notes, apple-reminders, GitHub, Jira (#17215)
- Update sf-symbols-search extension (#17216)
- Update CODEOWNERs
- Update sf-symbols-search extension (#17212)
- Update CODEOWNERs
- AI Extensions: ClickUp, Coffee, Curl, ffmpeg, git-assistant (#17207)
- Update CODEOWNERs
- AI Extensions: google-workspace, hacker-news, home assistant, item, kill-process (#17208)
- Update CODEOWNERs
- AI Extensions: Media Converter (#17201)
- AI Extensions: Google Chrome (#17202)
- AI Extensions: Sips (#17203)
- AI Extensions: Arc (#17204)
- Update CODEOWNERs
- AI Extensions: Bear (#17205)
- AI Extensions: Better Uptime (#17206)
- Update CODEOWNERs
- update extension myip (#17170)
- Update viacep extension (#17199)
- [Video Downloader] Unlock its full ability (#16845)
- Update svgl extension (#17048)
- feat: rework Ask additional question (#16796)
- Update media-converter extension (#17190)
- Update CODEOWNERs
- Update `linkding` extension - close issue + loads of minor enhancements (#17043)
- Update CODEOWNERs
- Update `Plausible Analytics` extension - Fix URL not being picked up properly (related to issue) (#17064)
- [MyIdlers] Update Server (#17121)
- Update `Neon` extension - Update Project + View Roles & Databases + View Compute Endpoints + Update Database + View Database schema + View Project monitoring (#17181)
- [Raycast Notification] Routine maintenance & add check-prebuilds scripts (#17187)
- Update CODEOWNERs
- [Spotify Playlist] Fix Missing Playlists in Add Playing Song to Playlist command (#16295)
- Update CODEOWNERs
- Option to show start date in Asana create form (#16960)
- [Todoist] - Added Show Next Most Prioirity Task as Menu Bar Title - #16647 (#17100)
- feat: Add Copy Embed Code Command to Spotify Player (#17116)
- Update CODEOWNERs
- [Todoist] - Added Manual Sort Option - #16646 (#17073)
- Update CODEOWNERs
- Update toggl-track extension (#16844)
- Docs: update for the new API release
- Update CODEOWNERs
- Docs: update for the new API release
- Implement skip 15 seconds, back 15 seconds (#16980)
- Update CODEOWNERs
- Revert "Update CODEOWNERs"
- Update CODEOWNERs
- CI: use PAT for generating code owners
- CI: use PAT for generating code owners
- Update pr-bot.ts (#17139)
- Added projecfilter (#17134)
- Brew: Add open formula actions (#17082)
- Todoist - Use time format from Todoist account preferences - #16913  (#16986)
- [YouTube Downloader] Add support for forcing IPv4 (#17128)
- Update `cPanel` extension - copy file contents after viewing + view & add ftp-accounts (#17103)
- [YouTube Downloader] Add preferences to avoid clipboard leaks (#17055)
- update
- [Safari] Disable Pinyin by default (#16802)
- added Toggle Timer Widget Command to tomito-controls (#16800)
- Update pieces-raycast extension (#16797)
- Update CODEOWNERs
- Add daisyui extension (#16782)
- Update CODEOWNERs
- Update iconify extension (#16769)
- Update CODEOWNERs
- Create Metabase extension (#16761)
- Update CODEOWNERs
- Update streamshare-uploader extension (#17046)
- Update sportssync extension (#17042)
- Update CODEOWNERs
- Add pushover extension (#16752)
- Update stale.yml
- Spotify Player: Make Music Only not required
- Update CODEOWNERs
- Update cursor-recent-projects extension (#17050)
- Update CODEOWNERs
- Add appcleaner extension (#16703)
- Update CODEOWNERs
- Add fuel-it extension (#16266)
- [Raynab] Improve support for different currency formats (#17024)
- Update CODEOWNERs
- Add penflow-ai extension (#15881)
- [Color Picker] Add support for showing color name after picking color (#16929)
- Update multi-links extension (#16875)
- [Frame Crop] - New Wallpaper Action (#16851)
- [SF Symbols Search] Add new symbols and minimum OS version per symbol (#16366)
- Update CODEOWNERs
- Add sportssync extension (#16453)
- Update CODEOWNERs
- Update imessage-2fa extension to add support for mail  (#16364)
- Update trakt-manager extension (#16907)
- Added reasoning models (#16863)
- Update CODEOWNERs
- [Oracle Cloud] Instance Actions + handle error gracefully when no config found (close #16962) (#16963)
- Add github-search extension (#16624)
- Bump fast-json-patch and @raycast/api in /extensions/airport (#17036)
- Bump node-fetch from 3.0.0 to 3.2.10 in /extensions/airport (#17035)
- Update figma-files-raycast-extension extension (#16917)
- Cleanup unused project files (#16928)
- Update CODEOWNERs
- Update CODEOWNERs
- [YouTube Downloader] Add preference for toggling BrowserExtension (#16843)
- [n8n] add new search command using API since Desktop App no longer maintained (#16515)
- Update 1password extension (#16830)
- Bump vitest from 1.5.0 to 1.6.1 in /extensions/youtrack (#17016)
- Bump vitest from 1.6.0 to 1.6.1 in /extensions/rectangle (#17015)
- Bump vitest from 2.1.8 to 2.1.9 in /extensions/raynab (#17011)
- OSS Browser: Override urllib version. (#17014)
- Restore Photo: Update Cloudinary to 1.37.3 to fix security vulnerability.
- OSS: Override urllib version. (#17013)
- Update one-time-password extension (#16973)
- Updated dependencies (#17005)
- Update `Sav` extension - Toggle "Auto Renewal" & "Domain/Whois Privacy" (#16987)
- Update safari extension (#16445)
- Update 1password extension (#17001)
- Docs: update for the new API release
- Update doppler.md
- Bump minimist from 1.2.5 to 1.2.8 in /extensions/8ball (#17004)
- Bump minimist from 1.2.5 to 1.2.8 in /extensions/algolia (#17002)
- Bump minimist from 1.2.5 to 1.2.8 in /extensions/android-adb-input (#17000)
- Bump shell-quote from 1.7.2 to 1.8.2 in /extensions/airport (#16972)
- Update CODEOWNERs
- Add sniffer extension (#16587)
- Update CODEOWNERs
- Hide my Email extension: Make it possible to search by email address or note in list emails command (#16919)
- Bump dompurify from 2.3.8 to 2.5.8 in /extensions/gif-search (#16947)
- Update CODEOWNERs
- [Messages] Filter out phone numbers from OTP codes (#16485)
- Apple Reminders: Add option to group by "Upcoming" (#16763)
- refined the implementation to support more layouts (#16811)
- Update Tower and Warp icons (#16895)
- Update CODEOWNERs
- Update package.json
- fix(KeePassXC): use OTPAuth to retrieve TOTP codes (#16815)
- Update CODEOWNERs
- Update raindrop-io extension (#16849)
- Update Deepseeker extension (#16832)
- [Raycast Port] Add port for Browser Extension (#16817)
- [Dashlane-Vault] Improvements (#16857)
- Update adguard-home extension (#16862)
- Launchdarkly improvements (#16915)
- [Groq] updated models + reasoning formatting (#16930)
- Update `Rebrandly` extension - add a new Action to delete link (#16870)
- Update CODEOWNERs
- Update `Sanity` extension - Add "Search Datasets" to "Search Projects" + replace `Cache` with `useCachedPromise` (#16765)
- Add `Spaceship` (spaceship.com) extension - View Domains and View DNS Records (#16828)
- Update CODEOWNERs
- Update `RSS Reader` extension - remember story last read + filter by read status (close issue) (re-open PR) (#16655)
- Add `UptimeRobot` extension - View Monitors + View Account Details (#16727)
- Update CODEOWNERs
- Update `Monday` extension - View items in a board and open in browser + Raycast hooks to simplify caching (#16746)
- [The Blue Cloud] Update `Dropbox` extension - Download files + Open directory in browser (#16901)
- Update CODEOWNERs
- Update hidemyemail extension (#16904)
- Update zen-browser extension (#16937)
- Update CODEOWNERs
- [Apple Reminders] Include overdue list view and default due date for new reminders (#16294)
- Avatars now display with a circular mask (#16916)
- Slack: Add Action: "Copy Message URL" to Search Messages command (#16899)
- Update CODEOWNERs
- Update jira extension to fix Git branch name format (#16883)
- Add Linear focus sub-commands when creating an issue (#16760)
- [Spotify Player] Hide artist\'s name in menu bar player (#16742)
- Docs: update for the new API release
- Add missing migrations
- Docs: update for the new API release
- [Search npm] Fix URL parsing issue (#16824)
- Update CODEOWNERs
- [Spotify Player] Fix a possibly null issue from `getMeAlbums` API (#16787)
- Update vortex extension (#16626)
- Sourcegraph: Branding updates and workspaces (#16793)
- Update zeabur extension (#16807)
- [YouTube Downloader] Improve error message (#16595)
- Update CODEOWNERs
- Update raycast-gemini extension (#16744)
- Update CODEOWNERs
- Update docker extension (#16291)
- Update CODEOWNERs
- Update `coffee`: add "Caffeinate Until" command (#16747)
- Update CODEOWNERs
- Added sort on the browser profile names (#16562)
- Update CODEOWNERs
- Update remove-background-powered-by-mac extension (#16750)
- Update youtube-downloader extension (#16785)
- [Punto] Map russian keyboard layouts (#16799)
- update (#16783)
- Update CODEOWNERs
- update klack extension (#16701)
- Update stock-tracker extension - Fix yahoo finance rate limiting (#16658)
- Update youtube-downloader extension (#16743)
- Update CODEOWNERs
- Update github-gist extension (#16729)
- Update hue-palette extension (#16757)
- Update strapi-raycast-extension extension (#16724)
- Update spiceblow-database extension (#16759)
- Update CODEOWNERs
- [Raycast Port] Fix JavaScript example code (#16754)
- Update rehooks extension (#16748)
- [Obsidian] Add prepend option to append to daily note command (#16745)
- [Tower Repositories] Handle URI Encoding of Repository Paths (#16766)
- Update README.md
- Update CODEOWNERs
- Update nba-game-viewer extension (#16684)
- Document the `showToast()` fallback behavior (#16638)
- Update CODEOWNERs
- Update `UploadThing` extension - add \'List Files\' command + add icons to "Upload Files" actions (#16696)
- Update ekstraklasa extens…
raycastbot added a commit that referenced this pull request Jun 18, 2025
* Upload Open in Trae extension

* typo

* added categories

* fixed error

* Add open-in-trae extension

- fixed error
- added categories
- typo
- Upload Open in Trae extension
- Update CODEOWNERs
- Add whisper-dictation extension (#19532)
- Update CODEOWNERs
- Updated the URL for the Prisma MCP server (#19472)
- Add open-latest-url-from-clipboard extension (#19624)
- Update CODEOWNERs
- Update shadcn-ui extension (#19525)
- Update CODEOWNERs
- Update CODEOWNERs
- Improve Flight Details Layout: Combined Times & Side-by-Side Terminal/Gate (#19521)
- Add analog-film-library extension (#19514)
- Update CODEOWNERs
- Add volumio-control extension (#19504)
- Update CODEOWNERs
- [Color Picker] Fix returned value from callback-launch command (#19619)
- [GitHub] Add preference to exclude repositories from other commands (#17468)
- Update CODEOWNERs
- Add diff-view extension (#19463)
- Add kagimcp server (#19568)
- [Bitwarden] Fix Authenticator "TypeError: t is not a function" (#19616)
- Include Outlook in app description (#19594)
- Update CODEOWNERs
- add Open Documentation (#19500)
- Update sportssync extension (#19483)
- Update CODEOWNERs
- macosicons: include user applications (#19482)
- [Brand Icons] Add compatibility with Simple Icons 15 (#19478)
- Docs: update for the new API release
- Update prism-launcher extension (#19599)
- [United Nations] Maintenance & fix news format (#19584)
- Update prism-launcher extension (#19598)
- Update CODEOWNERs
- Apple reminders/show which list reminder is from (#19343)
- Update battery-optimizer extension (#19190)
- Update awork extension (#19558)
- Update CODEOWNERs
- feat: Add history command (#19589)
- Update system-monitor extension (#19595)
- Update Ext/window sizer (#19580)
- Enhanced Date Format Support (#19539)
- [TRELLO] Allow for unassigned card and update dependencies (#19519)
- Update `Oracle Cloud` extension - (Confirm and) Terminate Instance + Add "Open in OCI" `Action` (#19534)
- Update Ext/window sizer (#19541)
- Update `Cloudflare` extension - Add A,AAAA,TXT DNS Records + Delete any DNS Record + Improve error handling function + Modernize extension to use latest Raycast config (#19552)
- Update wp-cli-command-explorer extension (#19559)
- Update CODEOWNERs
- Update reverso-context extension (#19452)
- Update CODEOWNERs
- Add project-code-to-text extension (#18996)
- Update CODEOWNERs
- Add project-hub extension (#19293)
- Update CODEOWNERs
- Update GemOptions.tsx (#19136)
- Update checksum (#19492)
- Update CODEOWNERs
- Update united-nations extension (#19528)
- Update downloads-manager extension (#19407)
- Update CODEOWNERs
- Move `josephlou` to past contributors (#19522)
- Update aave-search extension (#19366)
- Update CODEOWNERs
- Add dexcom-reader extension (#19141)
- Update CODEOWNERs
- Update digitalocean extension addressing issue displaying automated deployments (#19432)
- Update Fabric extension - location and tag selection (#19470)
- Wikipedia language improvements (#19473)
- Update Ext/window-sizer (#19499)
- Update CODEOWNERs
- Add slugify-file-folder-names extension (#19422)
- Update messages extension (#19426)
- macosicons: fix lint (#19497)
- Update CODEOWNERs
- Add google-scholar extension (#19392)
- Update CODEOWNERs
- Add `SolusVM 2` extension - Manage Servers + View,Update Members + View,Create API Tokens & Settings + View ISOs (#19486)
- Update CODEOWNERs
- feat: add Anytype MCP Server to the registry (#19506)
- Add `Appwrite` extension - Add multiple projects and view various services (#19510)
- Update CODEOWNERs
- Add foodle-recipes extension (#19084)
- Update CODEOWNERs
- Add cangjie extension (#19308)
- Update CODEOWNERs
- feat(google-calendar): create events with natural language duration input (#19317)
- Update CODEOWNERs
- Improved Category Search & Fixed Budget Details (#19451)
- Update qrcode-generator extension (#19455)
- Fix Toggle Grayscale exstension (#19236)
- Add unix-timestamp-converter extension (#18949)
- Update parcel extension (#19466)
- Fix Slack emoji search missing scope error - resolves #19441 (#19447)
- feat: add Thena MCP entry to official entries (#19379)
- Update Ext/Window Sizer (#19459)
- [2FA Directory] filter by category (like the Website) + modernize to use latest Raycast config (#19454)
- Update CODEOWNERs
- Update todoist extension (#19309)
- Update CODEOWNERs
- [git-repos] Fix issue with the path of the repository (#19440)
- Folder search fallback bug fix (#19449)
- Update CODEOWNERs
- Update CODEOWNERs
- Update parcel extension (#19356)
- Add fisher extension (#19213)
- Update CODEOWNERs
- Fix: React Rules of Hooks violation in New Tab command (#19384)
- Docs: update for the new API release
- Update prompt-stash extension - increase character limit and refactor validations (#19428)
- Update stock-tracker extension (#19424)
- feat(deepcast): Return to root state preference (#19430)
- Update subwatch extension (#19433)
- Update CODEOWNERs
- Update linkding extension (#19436)
- Update media-converter extension (#19385)
- Update CODEOWNERs
- [Dock] add MenuBar Item + add metadata image + Modernize (#19393)
- feat: add Grafana MCP to registry (#19240)
- Major improvement to Elgato Key LightsElgato enhancements (#19374)
- Update anytype extension (#19418)
- Update CODEOWNERs
- feat(preferences): Option to Close Raycast After Translation (#19386)
- Update mullvad extension (#19382)
- Update CODEOWNERs
- Update CODEOWNERs
- Update stock-tracker extension (#19411)
- Update t3-chat extension (#19412)
- Update CODEOWNERs
- Add Secret Browser Commands extension (#19396)
- Update CODEOWNERs
- Update linkding extension (#19395)
- Update sql-format extension (#19398)
- Update zeabur extension (#19413)
- Update `Google Books` extension -  feat: filter results by category, use `useFetch` for caching + docs: add CHANGELOG + modernize: use latest Raycast config (#19414)
- Update Ext/window sizer (#19416)
- Update CODEOWNERs
- Ability to copy song\'s artist and title (#19368)
- Update CODEOWNERs
- DEVONthink 4 (#19375)
- Add position-size-calculator extension (#19123)
- Update CODEOWNERs
- Add ratingsdb extension (#19298)
- Update Ext/window sizer (#19348)
- Update `ClickUp` extension - choose status from Dropdown in \'capture\' (close #19331) + update README (#19370)
- Update Extension: Easy New File (#19364)
- Updated openpgp version (#19367)
- Update CODEOWNERs
- Add Claude Sonnet 4 (#19362)
- Update CODEOWNERs
- Add paste-from-kindle extension (#19275)
- Update CODEOWNERs
- Ext/appcleaner (#19355)
- Update prism-launcher extension (#19346)
- Update CODEOWNERs
- Update aws extension (#19347)
- Update 1bookmark extension (#19350)
- Update instagram-media-downloader extension (#19360)
- Docs: update for the new API release
- Antinote: Support for Setapp version (#19345)
- feat(ci): comment when changelog missing (#19305)
- Update CODEOWNERs
- Update jenkins extension (#19286)
- Update prism-launcher extension (#19330)
- Docs: update for the new API release
- Update downloads-manager extension (#19340)
- Update CODEOWNERs
- Add open-gem-documentation extension (#18998)
- Update miro extension (#18702)
- Fix open with IINA action (#19251)
- Update CODEOWNERs
- Add notes limit for AI usage (#19332)
- Update CODEOWNERs
- added searching by permissions (#18817)
- Update CODEOWNERs
- Add Keka extension (#19326)
- Updated the Prisma MCP server entry. (#19334)
- Update CODEOWNERs
- Add AI Budget Tools, Enhanced Natural Language Queries, and Bug FixesF/raynab ai (#18611)
- Add azure-icons extension (#19224)
- Update CODEOWNERs
- Update spotify-player extension (#18815)
- Update CODEOWNERs
- Update Credits for One Thing Extension (#19303)
- Ext/penflow ai (#18799)
- Docs: update for the new API release
- Update clarify extension (#19222)
- Update CODEOWNERs
- Add grammaring extension (#19220)
- Update CODEOWNERs
- Add instagram media downloader extension (#19191)
- Add paperless-ngx MCP server entry to the registry (#19300)
- Update cloud-cli-login-statuses extension (#19284)
- [Dropover] Fix special characters in filenames and update docs (#19318)
- [Rebrandly] Update Links + Modernize (#19319)
- Update Ext/window sizer (#19316)
- Update CODEOWNERs
- Update CODEOWNERs
- Update brand-fetch extension (#19012)
- Update CODEOWNERs
- Update prism-launcher extension (#19117)
- feat(superwhisper): add search history (#18810)
- Add hammerspoon extension (#18922)
- MCP: Fix lint issues (#19310)
- Added the Shopify Dev MCP server (#19307)
- Update CODEOWNERs
- Update obsidian-tasks extension (#19151)
- Add untis extension (#18735)
- Update curl extension (#18931)
- Dovetail extension: Pagination with query filtering (#19163)
- Update CODEOWNERs
- Fix tldraw project URLs (#19291)
- Add Claude PR Assistant workflow (#19292)
- Fix link to Smithery (#19285)
- Update CODEOWNERs
- Add rae-dictionary-raycast extension (#19171)
- Supahabits: New command goals (#19282)
- [Say] Routine maintenance (#19283)
- Update CODEOWNERs
- Update t3-chat extension - add beta checkbox (#19133)
- Add Safari command to close other tabs (#19280)
- When PRs are marked as ready for review, auto assign to Per (#19281)
- Update CODEOWNERs
- Add `Creem` extension - List,Create Products + List Payments (#19205)
- Update CODEOWNERs
- ✨ Add frecency sorting to gitmoji (#18974)
- Update Ext/window-sizer (#19234)
- Apple Mail add new command and AI tool (#19228)
- Update `Unkey` extension - Modernize + Migrate broken endpoints to new ones to prevent crash (#19247)
- Update Markdown Codeblock (#19271)
- Update polymarket extension (#19273)
- Update 1bookmark extension (#19255)
- Update `cPanel` extension - Modernize + Manage API Tokens (create, revoke) + new function wrapping native `fetch` (#19274)
- Init apify mcp server (#19193)
- Update granola extension (#19215)
- Added the Prisma MCP server (#19201)
- Add Zeabur official MCP server to registry (#19217)
- Update CODEOWNERs
- Add are-na extension (#18646)
- Update CODEOWNERs
- Add slack-summarizer extension (#19032)
- Update nostr extension (#19209)
- Update CODEOWNERs
- Update paperless-ngx extension (#19197)
- Update CODEOWNERs
- Add tableau-navigator extension (#19086)
- Update CODEOWNERs
- MCP: fix spawn ... ENOENT issue (#18399)
- Update CODEOWNERs
- Add quikwallet extension (#19047)
- [Markdown Navigator] Remove duplicate files (#19208)
- [Unifi] Remove outdated files (#19207)
- [Trek] Remove outdated files (#19211)
- [Expo] Remove duplicate files (#19210)
- Update CHANGELOG.md (#19227)
- Update danish-tax-calculator extension (#19200)
- Bot: Only allow the OP to close the issue with a comment (#19196)
- Docs: update for the new API release
- Update raycast-icons extension (#18682)
- [Sentry] Show projects for non US Sentry orgs (#18758)
- Update package.json (#19195)
- Update CODEOWNERs
- Danish Tax Calculator (#19194)
- feat: add Nuxt official MCP server to registry (#19034)
- Update zen-browser extension (#19013)
- Update CODEOWNERs
- Add video-converter extension (#19030)
- Update CODEOWNERs
- Update polymarket extension (#19089)
- Add wp-cli-command-explorer extension (#19063)
- update extension raycast-gemini (#19021)
- Update CODEOWNERs
- Add smallpdf extension (#19041)
- Update coin-caster extension (#19166)
- Update CODEOWNERs
- Update vuejs-documentation extension (#19072)
- Update CODEOWNERs
- Update qrcode-generator extension (#18792)
- Update CODEOWNERs
- add(KDE Connect): KDE Connect in Raycast (#18928)
- Update CODEOWNERs
- Add shell-alias extension (#19028)
- Update lift-calculator extension (#19118)
- Update servicenow extension (#19148)
- Fix request loops (#19143)
- Fixing two super small typos on the readme for the Obsidian plugin (#19139)
- Docs: update for the new API release
- Docs: update for the new API release
- Update CODEOWNERs
- Clockify Extension: UX Improvement for "Start new Timer" functionality (#19026)
- Update CODEOWNERs
- Add setlist-fm extension (#19119)
- Update zerion extension (#19132)
- Update CODEOWNERs
- Gitlab Extension: My merge requests & label based filtering (#19007)
- Update CODEOWNERs
- Add file-organizer extension (#18877)
- Update CODEOWNERs
- Update `Two-Factor Authentication Code Generator` - Rename Codes + Modernize + Add README (#19019)
- [NixPkgs Search] Fetch version number from NixOS/nixos-search repo and compose url dynamically (#19025)
- Update flibusta-search extension (#19131)
- Update omnifocus extension (#19024)
- Update tidal-controller extension (#18437)
- Update CODEOWNERs
- Add Mac network location changer (#18961)
- LoL Esports AI tools (#18563)
- Update servicenow extension (#18834)
- Update at-profile extension (#18554)
- Update shopify-theme-resources extension (#18991)
- [Image Modification] Add support for QSpace Pro and ForkLift (#19108)
- Update CODEOWNERs
- Update kill-node-modules extension (#19039)
- Update CODEOWNERs
- Add grok-ai extension (#18566)
- Update CODEOWNERs
- Add subwatch extension (#18929)
- Ente Auth - fix preferred values (#19029)
- Update README.md (#19106)
- Update CODEOWNERs
- Update arc extension (#19062)
- TickTick support AI Extension (#17531)
- Update CODEOWNERs
- Add domain field to fastmail-masked-email extension (#19066)
- Apple Mail: Fix OTP codes across multiple mail accounts (#19033)
- Update hardcover extension (#19065)
- Update how-long-to-beat extension (#19042)
- Update dovetail extension (#19102)
- Update daily-sites extension (#19097)
- Update Ext/window sizer (#19103)
- Update index.tsx (#19067)
- Docs: update for the new API release
- Docs: update for the new API release
- Update OpenVPN description to reflect recent changes (#18788)
- Update CODEOWNERs
- Add raycast-zoxide extension (#18908)
- Update mermaid-to-image extension (#18975)
- Update CODEOWNERs
- fix(docs): mcp incorrect home page link (#19045)
- Add search-domain extension (#18837)
- Update CODEOWNERs
- Add selfhst-icons extension (#18904)
- Update CODEOWNERs
- Update CODEOWNERs
- Add option to automatically create labels in Todoist quick add command (#18892)
- Add daily-sites extension (#18763)
- Update CODEOWNERs
- MCP Registry: Initial commit (#19015)
- Docs: update for the new API release
- feat(font-search): add postscript names menu (#19003)
- Messages Paste OTP Regex Update (#18896)
- Update Ext/window sizer (#19017)
- Update CODEOWNERs
- Add lipsum extension (#18784)
- adding needed changes (#18987)
- Update CODEOWNERs
- feat: Rename NuxtUI extension to just Nuxt (#17887)
- Update CODEOWNERs
- [beszel-extension] Added AI tools for interacting with beszel (#17790)
- Update CODEOWNERs
- Update at-profile extension (#18881)
- Update CODEOWNERs
- Add flibusta-search extension (#18260)
- Update CODEOWNERs
- Update doge-tracker extension (#18950)
- Update CODEOWNERs
- Update CODEOWNERs
- Update raycast-ollama extension (#18910)
- feat(download-manager): add reload action (#18822)
- Add `Name.com` extension - View Account Balance + View Domains + View DNS Records + Delete DNS Record (#18982)
- Update CODEOWNERs
- DeepWiki extension (#18804)
- Update CODEOWNERs
- add primary action switch to `one-time-password` (#18800)
- Update google-chrome extension (#18794)
- Update Ext/window sizer (#18988)
- Update Ext/surge outbound switcher (#18989)
- Update CODEOWNERs
- Update prompt-stash extension (#18887)
- Add geoping extension (#18957)
- Update CODEOWNERs
- Update migadu extension (#18930)
- Update anytype extension (#18993)
- Update CODEOWNERs
- Add cocoa-core-data-timestamp-converter extension (#18656)
- Add macports extension (#18773)
- Update CODEOWNERs
- Things - Set Reminders in Today and Upcoming (#18771)
- Update git-assistant extension with rewrite of search git repositories command (#18948)
- Update Ext/window sizer (#18963)
- Update CODEOWNERs
- Update meme-generator extension (#18844)
- Update granola extension (#18972)
- Update CODEOWNERs
- Update package.json (#18970)
- Update granola extension (#18915)
- Update WIP extension (small typo fix) (#18962)
- Docs: update for the new API release
- Update CODEOWNERs
- Update raindrop-io extension (#18882)
- Update dust-tt extension (#18942)
- Update Ext/window sizer (#18945)
- Update CODEOWNERs
- [Stripe] Fix "Open in Stripe Dashboard" action adding extra leading slash (#18953)
- Update archiver extension (#18685)
- Update CODEOWNERs
- Folder Search Improvements (#18838)
- Added "toggle connection" to tailscale extension (#18409)
- Update esports-pass extension (#18920)
- Update f1-standings extension (#18876)
- Update CODEOWNERs
- Add thock extension (#18618)
- Update CODEOWNERs
- Add tana-paste extension (#18355)
- Update CODEOWNERs
- Update granola extension (#18883)
- Update CODEOWNERs
- Update T3 Chat - new models (#18902)
- Update draft-email.ts (#18895)
- Update CODEOWNERs
- Add zero extension (#18616)
- [Apple Intelligence] Add localization (#18593)
- Update research extension (#18769)
- Update dolar-cripto-ar extension (#18873)
- Update CODEOWNERs
- [Doppler] Update doppler-share-secrets extension (#18523)
- Update CODEOWNERs
- Add barcuts-companion extension (#18737)
- Update CODEOWNERs
- New extension: Granola AI Meeting Notes (#17618)
- [Spotify Player] Enable AI interaction with your queue (#18693)
- Docs: update for the new API release
- feat: replaced Exivo extension iconm due to trademark restrictions (#18868)
- Make some extensions available on Windows (#18869)
- Update animated-window-manager extension (#18865)
- Update lingo-rep-raycast extension (#18721)
- Update ugly-face extension (#18866)
- refactor: respect system appearance (#18856)
- Apple Mail: Paste latest OTP code (#18657)
- Update CODEOWNERs
- Add superhuman extension (#18391)
- Update CODEOWNERs
- Add animated-window-manager extension (#18712)
- Update homeassistant extension (#18234)
- Update CODEOWNERs
- Update swift-command extension (#18761)
- Update CODEOWNERs
- Add tautulli extension (#18023)
- Update CODEOWNERs
- Add qutebrowser-tabs extension (#18694)
- fix: update description in dia extension. (#18853)
- Update CODEOWNERs
- fix: fix not find zsh file (#18854)
- Add nusmods extension (#18757)
- Weather: Fix icon for Fog (#18849)
- refactor: support more offset (#18850)
- refactor: replace keystroke with key code (#18848)
- Update origami extension (#18846)
- Update system-information extension (#18783)
- FIX code extraction imessage-2fa extension (#18836)
- PurpleAir Extension Improvements: Multiple Sensor and Nearest Sensor (#18716)
- Update f1-standings extension (#17861)
- YoutubeMusic: Fixed Issue - remove Like and Like Songs (#18631)
- [YubiKey Code] - Replace usage of WindowManagement.getActiveWindow with getFrontmostApplication (#18831)
- Update CODEOWNERs
- Add gotify extension (#18679)
- Ext/window sizer fix screenshots and README (#18827)
- Update CODEOWNERs
- Add Verification/Sign-in Link Detection (#18695)
- Dia (The Browser Company) extension (#18667)
- Docs: update for the new API release
- Docs: update for the new API release
- Update CODEOWNERs
- Add cloud-cli-login-statuses extension (#18058)
- [YubiKey Code] - Sort accounts by usage (#18781)
- [hacker-news-top-stories] Add notification support (#18798)
- Update threads extension (#18813)
- Update Ext/window sizer (#18814)
- Update CODEOWNERs
- Revert "Update bmrks extension (#18539)" (#18811)
- update extension raycast-gemini (#18666)
- Update tinyimg extension (#18720)
- Update xcode extension (#18746)
- Update 1bookmark extension (#18664)
- Update CODEOWNERs
- Update aws extension (#18650)
- [Things] Fix menu bar `Complete` action (#18641)
- Update CODEOWNERs
- Add nostr extension (#18637)
- Docs: update for the new API release
- Update CODEOWNERs
- Add window-sizer extension (#18635)
- Update CODEOWNERs
- Add hardcover extension (#18628)
- Update CODEOWNERs
- Update quit-applications extension (#18617)
- Update CODEOWNERs
- Mark all extensions which uses AppleScript as macOS only (#18742)
- Slack: enhance Search Emojis command with AI-powered suggestions (#18625)
- Update CODEOWNERs
- Update zen-browser extension (#18751)
- Made use of Search API optional (#18410)
- Update CODEOWNERs
- Add magic-home extension (#18219)
- Update CODEOWNERs
- Add ton-address extension (#18683)
- Update svelte-docs extension (#18749)
- Update CODEOWNERs
- Update hacker-news-top-stories extension (#18747)
- Update bmrks extension (#18539)
- Update CODEOWNERs
- Add lookaway extension (#18589)
- Update CODEOWNERs
- Updating Raycast handle (#18738)
- Update CODEOWNERs
- Update regex-repl extension (#18724)
- Update notis extension (#18727)
- Update CODEOWNERs
- Add `Canva` extension - View Designs and Open in Browser (#18645)
- [SABnzbd] add README + Modernize to use latest config (#18670)
- Update CODEOWNERs
- Add go-to-rewind-timestamp extension (#18514)
- Update CODEOWNERs
- Update toggl-track extension (#18543)
- Update CODEOWNERs
- Update CODEOWNERs
- Update thesaurus extension (#18569)
- Update warp extension (#18504)
- Handle undefined downloads in subtitle formatting (#18729)
- Update mercado-libre extension (#18725)
- Update tuple extension (#18718)
- Update CODEOWNERs
- Add origami extension (#18314)
- Update README.md (#18719)
- Update quick-event extension (#17943)
- Update anytype extension (#18218)
- Update sportssync extension (#18240)
- Update CODEOWNERs
- add new extension Pumble (#18253)
- Update CODEOWNERs
- Add macOSIcons.com extension (#18386)
- fix(pianoman): Cannot read properties of undefined (#18591)
- Update zeabur extension (#18675)
- Supahabits/stats (#18700)
- Update CODEOWNERs
- Update genius-lyrics extension (#18696)
- chore(mcp): improve instruction and examples given (#18537)
- Update CODEOWNERs
- Add donut extension (#18711)
- [Expo] Add support for Two Factor authentication (#18202)
- Update CODEOWNERs
- Update zen-browser extension (#18068)
- Update CODEOWNERs
- Update raindrop-io extension (#18668)
- Update trovu extension (#18277)
- Added "Create new Incognito Window" action for Chrome extension (#18262)
- Update hacker-news-top-stories extension (#18705)
- Update svelte-docs extension (#18686)
- handle non existing file selection (#18674)
- Ext/surge outbound switcher (#18633)
- Update betterdisplay extension (#17535)
- Update CODEOWNERs
- Add lyric-fever-control extension (#18538)
- 🐛 fix(wakatime): Fix Reported Store Issues & Update Dependencies (#18638)
- Update CODEOWNERs
- Update google-calendar extension (#18636)
- fix details block in information doc (#18627)
- Update CODEOWNERs
- Update (#18632)
- Update CODEOWNERs
- Add playtester extension (#18492)
- Docs: update for the new API release
- Update CODEOWNERs
- Add asciimath-to-latex-converter extension (#18496)
- GitHub: Fix pull request filtering logic (#18624)
- feat(search-chatwork): mod scope to use search contacts commands with OAuth (#18542)
- Update CODEOWNERs
- [Asana] modernize + close after creating task (close Issue) (#18531)
- Update CODEOWNERs
- Update package.json (#18483)
- Update CODEOWNERs
- Add dpm-lol extension (#18476)
- Update CODEOWNERs
- Update nba-game-viewer extension (#18623)
- Add liquipedia-matches extension (#18455)
- Update CODEOWNERs
- Add git-worktrees extension (#18418)
- Update CODEOWNERs
- Update linkding extension (#18395)
- Arc extension: (Re-)Add support to open blank incognito window (#18427)
- Update CODEOWNERs
- Update raycast-svgo extension (#18560)
- Auto language detection and some small fixes (#18221)
- Add steam-player-counts extension (#18435)
- Linear: Update API and fixes (#18601)
- Todoist: Fix AI get-tasks (#18603)
- Update awork extension (#18580)
- Update CODEOWNERs
- Update lucide-icons extension (#18428)
- Update aws extension (#18552)
- Update CODEOWNERs
- Add cerebras extension (#18508)
- Update CODEOWNERs
- Add manage runtimes and delete unsupported runtimes commands to Xcode extension (#18463)
- Update CODEOWNERs
- Update link-cleaner extension (#18422)
- Update airpods-noise-control extension (#18126)
- [Github extension] add support for merge queue and "merge when ready" (#18045)
- Update ihosts to support remote hosts (#18176)
- Update CODEOWNERs
- Update CODEOWNERs
- [ADB] Add Uninstall command (#18091)
- Update paste-as-plain-text extension (#18574)
- Update deepcast extension (#18598)
- Update CODEOWNERs
- Add hacker-news-500 extension (#18431)
- GIF Search: Use `Clipboard` API to copy GIF instead of AppleScript. (#18588)
- Todoist: New API, improvements and bug fixes (#18518)
- Update CODEOWNERs
- Update raycast2github.json (#18575)
- Update dust-tt extension (#18578)
- Update cal-com-share-meeting-links extension (#18577)
- Update ns-nl-search extension (#18576)
- Commands and Navigation Enhancements (#18528)
- Update CODEOWNERs
- Add `Netherlands Railways Find a train` extension (#18420)
- Update CODEOWNERs
- Update `CricketCast` extension - Modernize + Better Score Error Handling (#18555)
- Update Connect to VPN extension  (#18406)
- Update CODEOWNERs
- Update jetbrains extension (#18545)
- Update copymoveto extension (#18535)
- Update CODEOWNERs
- Update github-profile extension (#18551)
- Enable Chat Actions When Viewing Previous Conversations (#18547)
- html-colors: add filtering option to group colors by shade (#18529)
- [Things] Display only incomplete todo in the menu bar (#18515)
- Update WeChat (#18345)
- Update `Spaceship` extension - Modernize + DNS Enhancements (#18571)
- Update CODEOWNERs
- Update CODEOWNERs
- parcel: add "Track on Website" and improve client (#18333)
- Add paystack extension (#18375)
- Update CODEOWNERs
- Update gg-deals extension (#18519)
- Update dub extension (#18517)
- Fix 404 error by replacing the repo where we get the name from (#18525)
- Improved fallback command and flickering during search (#18533)
- feat(bento-me): improve UI. (#18521)
- Update CODEOWNERs
- Update clockify extension (#18401)
- Update CODEOWNERs
- Add "Obsidian Tasks" Extension (#18390)
- Ai extensions/elgato key light (#17822)
- Update utilities.md (#18510)
- Update CODEOWNERs
- Add virustotal extension (#18373)
- Update CODEOWNERs
- things: detect URLs in notes (#18362)
- Update CODEOWNERs
- Update deno-deploy extension (#17840)
- Update dad-jokes extension (#18494)
- Slack (#18156)
- Delivery Tracker: Manually Mark as Delivered and Delete All Delivered Deliveries (#18485)
- fix: gcloud path for non homebrew intel package installations (#18493)
- Update CODEOWNERs
- [Canvascast] Fix bugs with announcements and downloads (#18100)
- Update adhan-time extension (#18204)
- Update CODEOWNERs
- Slack: New Command: Send Message (ISSUE-15424) (#16580)
- Update antd-open-browser extension (#18299)
- Update image-flow extension (#18470)
- feat(himalaya): Update for Himalaya `v1.0.0` (#18388)
- Add Find Features and AI Extension Support (#18195)
- Add movie runtime information to Letterboxd (#18089)
- Update CODEOWNERs
- Update evernote extension (#17889)
- Add g-cloud extension (#18093)
- Update CODEOWNERs
- Add awork extension (#17791)
- Update laravel-herd extension (#18477)
- feat(search-composer-packagist): display abandon package (#18307)
- [Polar] Update Polar SDK Version (#18475)
- Update CODEOWNERs
- Add `Pastery` extension - Search Pastes, Create Paste, Delete Paste (#18404)
- [Polar] Fix non-recoverable state when OAuth access tokens expires (#18471)
- Docs: update for the new API release
- Update CODEOWNERs
- Update `Unsplash` extension - add Pagination, Caching + Modernize (close Issue) (#18384)
- Update CODEOWNERs
- Add jsrepo extension (#18346)
- Update producthunt extension (#18442)
- docs: asset folder clearing hint (#18320)
- Update CODEOWNERs
- Update vercast extension (#18297)
- Update pcloud extension (#18291)
- Update CODEOWNERs
- Add image-to-ascii extension (#18282)
- Update Tailscale extension (#18281)
- [braid] Fetch icons dynamically from github (#18469)
- [Bitwarden] Add authenticator primary action preference (#18464)
- Improve URL retrieval with clipboard fallback (#18461)
- Update dict-cc extension (#18443)
- Update CODEOWNERs
- Add valkey-commands-search extension (#18268)
- Update CODEOWNERs
- Update CODEOWNERs
- Update reflect extension (#18294)
- Add pollenflug extension (#17787)
- Update CODEOWNERs
- Add image-flow extension (#17383)
- Update CODEOWNERs
- Add laravel-herd extension (#18318)
- Update 1bookmark extension (#18413)
- [Bitwarden] Authenticator command (#18322)
- Update quick-notes extension (#18389)
- Update `My Idlers` extension - Optimistically delete Server (#18421)
- Update CODEOWNERs
- Update raycast-svgo extension (#18426)
- [Contentful] fix: video assets not showing thumbnail (#18441)
- Docs: update for the new API release
- feat: added logic for properly counting CJK characters as words (#18430)
- Update CODEOWNERs
- Update tidal-controller extension (#18275)
- Update CODEOWNERs
- Update CODEOWNERs
- Update obsidian extension (#18394)
- Add surge-outbound-switcher extension (#18065)
- Update CODEOWNERs
- Add mistral extension (#18237)
- add error handling when user tries to update todo from menu bar (#18047)
- Update producthunt extension (#18352)
- Update CODEOWNERs
- Added Llama 4 models (#18424)
- Add lift-calculator extension (#18245)
- Fix the `mastodon` extension (#18407)
- Update CODEOWNERs
- Update mail extension (#18349)
- feat(KeePassXC): add favicon support and better preference descriptions. (#18278)
- Update CODEOWNERs
- Add caschys-blog extension (#17768)
- Update CODEOWNERs
- Update dub extension (#17813)
- Update whatsapp extension (#17474)
- Fix the `dub` extension (#18292)
- fabric: update description (#18267)
- Update package.json (#18374)
- Update CODEOWNERs
- Add smart-calendars-ai-create-events-using-ai extension (#18235)
- Add handoff-toggle extension (#18228)
- [Folder-Cleaner] feat: Clean One & Hooks (#18360)
- Update CHANGELOG.md (#18372)
- Update CODEOWNERs
- Update gmail-accounts (#18332)
- Update omni-news extension (#18327)
- feat: add `bento.me` extension. (#18354)
- Update CODEOWNERs
- Misc: Update vulnerable version of axios (#18310)
- Update CODEOWNERs
- Add repository favorites feature to Bitbucket extension (#17652)
- Update zed-recent-projects extension (#18340)
- Update CODEOWNERs
- Update tailwindcss extension (#18358)
- Add time-logs extension (#17696)
- python package search fix (#18300)
- Update CODEOWNERs
- [Update Figma Files] Adds ability to clear cache (#18367)
- Add builtbybit extension (#18098)
- Update CODEOWNERs
- Update ssh-manager extension (#17885)
- Update CODEOWNERs
- Clean up split surrogate pairs (#18321)
- noteplan 3 | add quicklink action (#17894)
- Update stockholm-public-transport extension (#18020)
- Update CODEOWNERs
- Update supernotes extension to enable AI tools (#17475)
- Added missing endtab tag (#17986)
- Update CODEOWNERs
- Update raydocs extension (#17450)
- Update google-calendar extension (#17852)
- Update svgl extension (#17527)
- Apple Mail: Support email accounts with multiple sender addresses (#18217)
- Update coin-caster extension (#18315)
- [RSS Reader] fix feeds not moving (close issue) (#18313)
- zed-recent-projects - show git branch label for repositories (#18311)
- Update CODEOWNERs
- Update kagi-search extension (#18191)
- Update CODEOWNERs
- Add Finder File Actions extension (#17705)
- Update CHANGELOG.md (#18293)
- Update: Search Router (#18250)
- Update CODEOWNERs
- Add TinyIMG extension (#18231)
- Update CODEOWNERs
- Add aliyun-flow extension (#18114)
- Update CODEOWNERs
- Add exivo extension (#18078)
- Update CODEOWNERs
- Add fullscreentext extension (#17346)
- [HackMD]: Enable new AI extension capabilities (#17363)
- Update CODEOWNERs
- Add lavinprognoser extension (#17200)
- Update pipedrive extension (#18241)
- Update CODEOWNERs
- Update 1bookmark extension (#18243)
- Update cal-com-share-meeting-links extension (#18273)
- Update Package.json - schoology extension (#18286)
- Docs: update for the new API release
- Add Default Sort MenuBar - #17271 (#18226)
- Update CODEOWNERs
- Add simple-http extension (#18128)
- Update CODEOWNERs
- Update firecrawl extension (#18206)
- Update pcloud extension (#18238)
- [Language Detector] Add new detector - franc (#18246)
- Update memos extension (#18254)
- Update CODEOWNERs
- Update translate extension (#18187)
- Update CODEOWNERs
- Add Translit extension (#17114)
- Update CODEOWNERs
- Add essay extension (#18142)
- Update CODEOWNERs
- Update browser-history extension (#18227)
- Update CODEOWNERs
- Deepseek/fix mar (#18170)
- Update arc extension (#18208)
- Update CODEOWNERs
- Update CODEOWNERs
- Update active contributors (#18222)
- Add ntfy extension (#18188)
- Update CODEOWNERs
- Update aave-search extension (#18263)
- Add create-link extension (#17999)
- Update zeabur extension (#18257)
- Update CODEOWNERs
- Add rename-images-with-ai extension (#17799)
- Update CODEOWNERs
- [Groq] Update models (#18200)
- Update CODEOWNERs
- Add Fabric extension (#18184)
- Update public_raycast_extensions.txt (#18205)
- Update CODEOWNERs
- Support Commas in Filter Query in Todoist extension (#18197)
- Update CODEOWNERs
- Update 1bookmark extension (#18163)
- Update CODEOWNERs
- Update ado-search extension (#18057)
- Add Moneybird time entry extension (#18055)
- Fixed Antinote extention search functionality (#18183)
- Update CODEOWNERs
- Update svgl extension (#18083)
- Update miro extension (#17727)
- Update CODEOWNERs
- Add Antinote extension (#17572)
- Update gleam-packages extension (#18123)
- Update Bartender extension to support Setapp and standalone (#18168)
- Terminal: Add link to YT (#18155)
- update extension raycast-gemini - new model and error code handling (#18150)
- Update terminaldotshop extension (#18149)
- Docs: update for the new API release
- Update search-router (#18117)
- Deliver Tracker: Allow Offline Tracking of FedEx and UPS Deliveries (#18131)
- Fixed error when running command twice in short time (#18133)
- Updating stalebot (#18145)
- README: Update README for Mem0 extension (#18144)
- Docs: update for the new API release
- Update CODEOWNERs
- Update web-audit extension (#18025)
- Update CODEOWNERs
- Update bintools extension (#18022)
- Workflows: Update to version 1.17.0 (#18140)
- Update CODEOWNERs
- Mem0 Integration (#17792)
- Add pkg-swap extension (#17910)
- Update CODEOWNERs
- Terminal (#17998)
- Update aave-search extension (#18036)
- [Copy Skeet Link] Mark this extension as deprecated (#18116)
- Update notis extension (#18077)
- Update CODEOWNERs
- Added Bartender extension (#17941)
- Update CODEOWNERs
- Add epim extension (#17888)
- Migrated bangs to Kagi\'s Bang from DuckDuckGo (#17996)
- update extension ssh con manager (#18084)
- [Zed] Fix removing remote recent projects (#18104)
- Add Inbox View in Menu Bar Tasks - #17098 (#17899)
- Update CODEOWNERs
- Fix typo (#18019)
- Add clip-swap extension (#17166)
- Update CODEOWNERs
- Update mcp extension (#17978)
- Update CODEOWNERs
- Add slowed-reverb extension (#17469)
- Update CODEOWNERs
- Update raycast-gemini extension (#17859)
- Update CODEOWNERs
- New extension: awesome mac (#17675)
- [Bitwarden] Update description, README, and setup instructions (#18046)
- Update CODEOWNERs
- Update jwt-decoder extension (#18033)
- Add midas extension (#17140)
- [Zed] Add remove recent project (#18027)
- [Porkbun] modernize + fix domain pricing crash (close Issue) (#18073)
- Update `Wave` (waveapps.com) extension -  more invoice types in customer statement (#18063)
- Update CODEOWNERs
- Update producthunt extension (#18060)
- [PM2] Upgrade to pm2@6 (#18062)
- Update CODEOWNERs
- Turn Apple Mail into an AI Extension (#17766)
- Update CODEOWNERs
- Update zen-browser extension (#18017)
- Update iconify extension (#17997)
- Update CODEOWNERs
- Add doorstopper extension (#17991)
- Update CODEOWNERs
- Add aave-search extension (#17688)
- Update CODEOWNERs
- Update imessage-2fa extension (#17131)
- Update CODEOWNERs
- Update leetcode extension (#18000)
- [Language Detector] Add support for choosing AI models (#18006)
- update extension ccfddl with performance optimization (#18008)
- Update anonaddy extension (#17685)
- Update CODEOWNERs
- Update CODEOWNERs
- Update linkding extension (#17700)
- Add LLMs Txt extension (#17490)
- Update CODEOWNERs
- [WeChat] Routine maintenance (#17870)
- Update CODEOWNERs
- Add wu-bi-bian-ma extension (#17846)
- Add note to ESLint Customization section (#17871)
- [Examples] Migrate to 1.94.0 with ESLint 9 flat config (#17990)
- Update CODEOWNERs
- Add gokapi extension (#17873)
- [Say] Routine maintenance (#17989)
- Safari: Update AppleScript commands for current tab info (#17965)
- Update notis extension (#17872)
- Update CODEOWNERs
- Update CODEOWNERs
- Update link-bundles extension (#17832)
- Add folder-cleaner extension (#17598)
- Migrations: Add migration for 1.94.0 (#17975)
- Docs: update for the new API release
- Update CODEOWNERs
- [GitHub] Include all collaborators in reviewer selection (#17929)
- Update CODEOWNERs
- Enhance Parcel extension with new "Add Delivery" feature (#17860)
- Update CODEOWNERs
- Add datahub extension (#17828)
- Update 1bookmark extension (#17960)
- Update fingertip extension (#17967)
- Update CODEOWNERs
- Supahabits/support habit colors (#17958)
- Add speech-to-text extension (#17767)
- Update CODEOWNERs
- Add virtual-pet extension (#17821)
- Update CODEOWNERs
- Update connect-to-vpn extension (#17649)
- Update team-time extension (#17968)
- Update CODEOWNERs
- Update system-information extension (#17911)
- Update CODEOWNERs
- Enhance URL unshortening functionality with improved handling for com… (#17932)
- Update write-evals-for-your-ai-extension.md (#17953)
- Update CODEOWNERs
- [todo-list] Move @telmen to past contributors (#17944)
- Update CODEOWNERs
- Update firecrawl extension (#17947)
- Update toggl-track extension (#17819)
- Update CODEOWNERs
- Update markdown-navigator extension (#17925)
- [todo-list] 👥 Move @bkeys818 to pastContributor for Todo List (#17927)
- Update grammari-x extension (#17928)
- update extension GitHub Profile (#17906)
- Update CODEOWNERs
- [Gif Search] Add Localization Support for Giphy and Tenor (#17800)
- Update CODEOWNERs
- Add team-time extension (#17702)
- Update CODEOWNERs
- Update password-store extension (#17693)
- Update CODEOWNERs
- Update CODEOWNERs
- New extension: emojify (#17677)
- Add pinia-docs extension (#17853)
- Update CODEOWNERs
- feat: raycast extension for my mind (#17068)
- Delivery Tracker - Prevent Duplicate Deliveries (#17893)
- Update simulator-manager extension (#17895)
- Update CODEOWNERs
- Update `HestiaCP Admin` extension - Add Mail Domain + View User Backups (#17900)
- [Say] Routine mantenance (#17902)
- Update day-one extension (#17905)
- [System Monitor] Improve `onAction()` (#17908)
- [Bitwarden] Fix CLI downloaded binary hash mismatch (#17915)
- Update CODEOWNERs
- Update CODEOWNERs
- Add vue-router-docs extension (#17855)
- Add markdown-navigator extension (#17820)
- Update CODEOWNERs
- Update wechat extension (#17718)
- Update CODEOWNERs
- Update CODEOWNERS for Todoist extension (#17723)
- Update search-router extension with empty query supports (#17829)
- Add simulator-manager extension (#17867)
- Update extension raycast-gemini (#17850)
- [Bitwarden] Re-enable arm64 CLI bin download (#17866)
- Update CODEOWNERs
- Update omnifocus extension (#17742)
- Update CODEOWNERs
- Add mermaid-to-image extension (#17621)
- Update CODEOWNERs
- Moved to new folder (#17844)
- Update 1bookmark extension (#17731)
- Supahabits/unmark as done habit (#17830)
- Update CODEOWNERs
- Update copy-path extension (#17836)
- Add notis extension (#17662)
- Update CODEOWNERs
- Add copymoveto extension (#16755)
- Update CODEOWNERs
- Add webdav-uploader extension (#17555)
- Add vuetify-docs extension (#17814)
- Update CODEOWNERs
- AI Extensions: Migrate duck-facts beta extension (#17605)
- Update CODEOWNERs
- Update CODEOWNERs
- Update CODEOWNERs
- AI Extensions: Migrate deep-research beta extension (#17604)
- Update CODEOWNERs
- AI Extensions: Migrate app-creator beta extension (#17607)
- AI Extensions: Migrate memory beta extension (#17606)
- AI Extensions: Migrate code-execution beta extension (#17608)
- AI Extensions: Migrate contexts beta extension (#17609)
- AI Extensions: Migrate mcp beta extension (#17610)
- [Daminik] \'copy\' action + chore: update ray deps (#17815)
- Examples: Add tools to todo list example (#17810)
- Update CODEOWNERs
- Update ghostty extension (#17646)
- Update pocket extension (#17678)
- Update CODEOWNERs
- Update tw-colorsearch extension (#17805)
- docs(utilities/react-hooks): update useLocalStorage example (#17645)
- Update mullvad extension (#17789)
- Adding support to move selected items in the finder to a destination folder (#17807)
- Update CODEOWNERs
- [Raycast Notification] Remove unused files (#17809)
- Update homeassistant extension to allow selecting custom dashboard (#17778)
- Update custom-folder extension (#17785)
- Update CODEOWNERs
- New Extension: Github Profile (#17550)
- Update CODEOWNERs
- Add `Namecheap` extension - View domains in your account + View Domain DNS Servers + View Domain DNS Hosts (#17653)
- Update CODEOWNERs
- Update docker extension (#17783)
- Update CODEOWNERs
- Update readwise-reader extension: add category filter to list documents (#17626)
- Update CODEOWNERs
- Update CODEOWNERs
- Update hubspot extension (#17438)
- Update `Lenscast` extension - Modernize + Update URLs & API Endpoint (fix not loading) + chore (#17713)
- Update `Vercast` extension - update components + proper handling when token invalid (#17429)
- Update CODEOWNERs
- Update dub extension (#17736)
- Update keepassxc extension (#17781)
- Update CODEOWNERs
- Update `Confluence` extension - Modernize Extension (`usePromise` hooks) + Fix People Panel failing (#17592)
- Update CODEOWNERs
- Add intermittent-fasting extension (#16525)
- Update drafts extension (#17583)
- Update CODEOWNERs
- Add gmail-accounts extension (#17575)
- Update CODEOWNERs
- Update keepassxc extension (#17758)
- Update scrcpy extension (#17777)
- Update mullvad extension (#17779)
- update: Ext/gemini/feat/history (#17762)
- Update sportssync extension (#17698)
- Unread menubar list (#17759)
- Update `Netlify` extension - ✨AI: Add tools to View Env & DNS Records (#17760)
- Update CODEOWNERs
- Add ultrahuman extension (#17716)
- Update CODEOWNERs
- Add solana-wallets-generation extension (#17129)
- Update CODEOWNERs
- Add coin-caster extension (#17377)
- Update google-tasks extension (#17568)
- Update multi-force extension (#17522)
- Update CODEOWNERs
- Update custom-folder extension (#17710)
- Update CODEOWNERs
- Update doccheck extension (#17394)
- Update CODEOWNERs
- Update linear extension (#17743)
- [github] add repository filter to my pull request menu bar and unread notifications (#17327)
- Ext/deepseeker - March Updates (#17690)
- Update system-monitor extension (#17741)
- Update CODEOWNERs
- Added contributor for claude (#17333)
- Update linkwarden extension (#17656)
- Update README.md (#17650)
- Update CODEOWNERs
- Remove throttling on google maps search (#17661)
- Update Iconify Extension (#17663)
- Update CODEOWNERs
- github: fix label typo (#17734)
- Update music extension (#17726)
- Update media-converter extension (#17733)
- Update CODEOWNERs
- Add swap-commas-dots extension (#17480)
- Update CODEOWNERs
- Add learning-snacks extension (#17477)
- Update CODEOWNERs
- Update at-profile extension (#17680)
- Update advanced-replace extension (#17236)
- Update CODEOWNERs
- Add privatebin extension (#16931)
- Update color-picker extension (#17593)
- Update CODEOWNERs
- Update homeassistant extension (#17570)
- Update CODEOWNERs
- Update CODEOWNERs
- Update zen-browser extension (#16958)
- Add html-colors extension (#17658)
- Update CHANGELOG.md (#17715)
- Update CODEOWNERs
- Update curl extension: add jsonpath copy result feature (#17669)
- Add Remote Project support for zed-recent-projects extension (#17659)
- Update CODEOWNERs
- [Raycast-gemini] Add new command: Ask About Selected Screen Area (#17296)
- Update obsidian-smart-capture extension (#16790)
- Add support for Tokyo region (#17267)
- Update CODEOWNERs
- Add v2raya-control extension (#17294)
- Update CODEOWNERs
- Update CODEOWNERs
- Add fingertip extension (#17328)
- [Video Downloader] Rename extension folder and handle to `video-downloader` (#17714)
- Update CODEOWNERs
- Slack: Retry to auth if some scopes are missing (#17640)
- Add Mood Tracker extension (#17428)
- Update CODEOWNERs
- [Open Link in Browser] Add new command: Open selected text in default browser (#17445)
- Update trek extension (#17616)
- Update Smallweb Extension - Add support for multiple folders/domains (#17634)
- PPL: Improved cached logic and removed unused fields (#17666)
- [YouTube Downloader] Avoid to run run `onSubmit` while fetching video (#17641)
- Update `Coolify` extension - Delete Resource Action + Support DBs in Resources (#17622)
- Delivery Tracker - FedEx Delivery Date Bug Fix (#17627)
- Update CODEOWNERs
- Fix & improve GitHub search (#17504)
- [slack] add search:read to manifest (#17586)
- [Google Workspace] Add "Open Google Drive Home" command (#17174)
- [docs] Document available templates and boilerplates  (#17422)
- fix: fixed performance issue with Create Slack Template command (#17562)
- Docs: update for the new API release
- fix for app crash when user has not granted disk access (#17569)
- Update `Bluesky` extension - chore: update @atproto/api for better typing + in `Notifications`, fix `initialRes.body?.cancel` error (#17561)
- Update CODEOWNERs
- Feat/sendme : Send files/folders directly from one computer to another without needing to upload them to the cloud first (#17415)
- Update CODEOWNERs
- Add raycast-mux extension (#17460)
- visual-studio-code-recent-projects add Trae CN (#17559)
- Youtube downloader/tools (#17576)
- Add history tracking feature to DeepSeeker extension (#17538)
- Save snippet bug (#17519)
- Update CODEOWNERs
- Update CODEOWNERs
- [dotNew] update extension API (#17453)
- Add MacStories extension (#17448)
- Update t3-chat extension (#17574)
- Update mercury extension (#17369)
- Update package-tracker extension (#17240)
- Update real-calc extension (#17565)
- Update CODEOWNERs
- Turn Resend into an AI Extension (#17444)
- Update CODEOWNERs
- Update pieces-raycast extension (#17413)
- Add youtube-search extension (#17408)
- Update CODEOWNERs
- Update find-website extension (#17389)
- Update CODEOWNERs
- [Language Detector] Add extension (#17336)
- Update CODEOWNERs
- [Easy Variable] Enhancements and tweaks (#17551)
- [Raycast Port] Add port for Window Management (#17554)
- Update CODEOWNERs
- Update safari extension (#17227)
- Add command for Ollama (#17526)
- Update CODEOWNERs
- [Video Downloader] Add updater view (#17304)
- Add search-router extension (#17518)
- Update CODEOWNERs
- Update 1bookmark extension (#17542)
- Update CODEOWNERs
- Update music extension (#17545)
- add extension CCFDDL (#17517)
- Updated vitest dependency (#17548)
- Update raycast-explorer extension (#17533)
- Google Calendar: Improve timezones and add Google Meet (#17441)
- Safari improvements (#17446)
- Update CODEOWNERs
- [Video Downloader] Add support for selecting format (#17224)
- Add delivery-tracker extension (#16998)
- Update CODEOWNERs
- Add easyvariable extension (#17302)
- Update CODEOWNERs
- feat: add slack-templated-message extension (#17253)
- Update CODEOWNERs
- Add goodlinks extension (#17335)
- Update CODEOWNERs
- Add image-diff-checker extension (#17275)
- Update beeminder extension (#17150)
- Update qbitorrent extension (#17529)
- Update CODEOWNERs
- Update element extension (#17498)
- Update CODEOWNERs
- Update qbitorrent extension (#17332)
- Update `UptimeRobot` extension - New `Action` to Delete Monitor (optimistically) + New `Action` to "Open in Dashboard" (#17487)
- Update 1bookmark extension (#17521)
- Update CODEOWNERs
- Update bitwarden extension: fix search when vault contains SSH keys (#17492)
- Update CODEOWNERs
- Add board-game-geek extension (#16938)
- Add fronius-inverter extension (#17514)
- Update CODEOWNERs
- Add esports-pass extension (#17269)
- Update CODEOWNERs
- Add save to Readwise Reader integration to Hacker News extension (#16749)
- Docs: update for the new API release
- Update CODEOWNERs
- Add betterdisplay extension (#17512)
- Update CODEOWNERs
- Add inkeep extension (#17495)
- Update CODEOWNERs
- Add git-profile extension (#16983)
- Update CODEOWNERs
- [extensions/get-favicon] new feature: specify icon size (#17472)
- Update personio extension (#17507)
- Misc: Remove root package.json (#17509)
- Update visual-studio-code extension (#17506)
- Update CODEOWNERs
- Add smart-reply extension (#17230)
- Update CODEOWNERs
- Add Prusa Printer Control Extension (#17247)
- Configuring primary and secondary actions (#17155)
- [coffee] show caffeinate duration in menu bar item (#17493)
- Update CODEOWNERs
- Update system-monitor extension (#17499)
- Update flush-dns extension (#17467)
- Update CODEOWNERs
- Update visual-studio-code extension (#17491)
- Bugfix: Ensure fetched data is always mapable (#17464)
- Update CODEOWNERs
- Update raytaskwarrior extension (#17489)
- Update CODEOWNERs
- Add yu-gi-oh-card-lookup extension (#17299)
- Update CODEOWNERs
- qqmusic control add contributor (#17289)
- Update CODEOWNERs
- Add solidtime extension (#17234)
- Update CODEOWNERs
- Add mutedeck extension (#17135)
- Update CODEOWNERs
- Add NuxtUI extension (#17130)
- Add yamli extension (#17127)
- Update CODEOWNERs
- Update visual-studio-code extension (#17473)
- Update appcleaner extension (#17470)
- Update CODEOWNERs
- [MAL] General improvements + API reworks (#16982)
- Add expo extension (#16991)
- Update hidemyemail extension (#17439)
- Update CODEOWNERs
- [Time Tracking] Support Editing Stopped Timers (#17219)
- [Wakatime]: Support customize API base URL (#17118)
- Update can-i-php extension (#17433)
- Update CODEOWNERs
- Add doge-tracker extension (#17180)
- Update CODEOWNERs
- Add Quoterism Extension (#17030)
- Update CODEOWNERs
- Add evaluate-math-expression extension (#17089)
- Docs: Update the utils docs
- Workflows: Use PERSONAL_ACCESS_TOKEN (#17435)
- Update review-pullrequest.md (#17432)
- Update CODEOWNERs
- update extension easydict (#17214)
- Update CODEOWNERs
- Update mailtrap extension (#17157)
- Update CODEOWNERs
- Add parcel extension (#17350)
- Update code-quarkus extension (#17417)
- [United Nations] Routine maintenance (#17427)
- Update CODEOWNERs
- Add diskutil-mac extension (#17396)
- Update CODEOWNERs
- Add neurooo-translate extension (#16949)
- Update CODEOWNERs
- Feature/Todoist: Removing premium features for non-premium users (#17326)
- Add 1bookmark extension (#16482)
- [Brand Icons] Fix AI functions (#17425)
- [Todoist] Close Raycast immediately when creating task/project (#17246)
- Update CODEOWNERs
- Update bitwarden extension (#17153)
- Jira: Fix AI search issue (#17397)
- Todoist: Avoid bloating the AI (#17395)
- Update raycast-explorer extension (#17393)
- Update devdocs extension (#17373)
- Update CODEOWNERs
- [zoo] update: custom model support (#17388)
- Add lingo-rep-raycast extension (#16512)
- Update CODEOWNERs
- Update visual-studio-code extension (#17385)
- Update learn-core-concepts-of-ai-extensions.md (#17381)
- Update follow-best-practices-for-ai-extensions.md (#17372)
- Update CODEOWNERs
- Move myself to past contributors for Safari extension (#17387)
- Update CODEOWNERs
- Update extension ssh-manager (#17109)
- Update `Aiven` extension - view Service Backups & Logs + add "Open in Browser" actions (#17330)
- Update CODEOWNERs
- Update raycast-explorer extension (#17374)
- Update CODEOWNERs
- Update flow extension (#17196)
- Update CODEOWNERs
- Update to note filtering and display (#17192)
- Fix up GitHub Search (#17075)
- Update omnifocus extension (#17133)
- Update CODEOWNERs
- Fix broken link in README & bump deps (#17069)
- [Cursor Recent Projects] improve description (#17367)
- Update CODEOWNERs
- Add scira extension (#17361)
- Perplexity: Add deep research (#17359)
- Create 12.x.json (#17355)
- Update CODEOWNERs
- [SF Symbols Search] Fix issue and revert manual filtering (#17319)
- [Spotify Player] Fix a possibly undefined issue from Select Devices command (#17222)
- Update CODEOWNERs
- Add namuwiki extension (#16873)
- [Todoist] Add Schedule Deadline Actions (#17291)
- feat: enable markdown support in description field (#17243)
- Migration: Add migration for 1.93.0 (#17347)
- Update CODEOWNERs
- Update CODEOWNERs
- Update readwise-reader extension (#17039)
- Miniflux: Add mark as read actions (#17038)
- Docs: update for the new API release
- [Claude] Fix default model override (#17342)
- Slack: Include users.profile:write scope to set status (#17343)
- Update CODEOWNERs
- AI Extensions: Exa (#17337)
- Update CODEOWNERs
- Update yabai extension (#17311)
- Add t3-chat extension (#16961)
- Added a "2FA" keyword for the `Paste Latest OTP Code` command (#17334)
- parse typeid (#17067)
- Update CODEOWNERs
- Update howlongtobeat extension (#17079)
- Update pdf-tools extension (#17329)
- Update CODEOWNERs
- Update CODEOWNERs
- AI Extensions: Google Calendar (#17321)
- AI Extensions: Firecrawl (#17320)
- [Google Chrome] Add "Copy Title" action for Search Tab command (#16968)
- Add support for Sonnet 3.7 (#17307)
- Update ghostty extension (#17266)
- Update setup-bun to v2 (#17265)
- [Brand Icons] Add support for viewing release notes (#17113)
- Update CODEOWNERs
- Add quick-access-for-zeroheight extension (#17284)
- [Raycast Port] Fix documentation path (#16944)
- Update pull_request_template.md (#17316)
- Update CODEOWNERs
- Update raycast-ollama extension (#17282)
- AI Extensions: e2b (#17314)
- [Linear] Fix creation issue (#17312)
- Ignore package.json from root (#17268)
- Support public extensions for e2b and firecrawl (#17318)
- Update CODEOWNERs
- Update tyme-3-time-tracker extension (#16887)
- Update CODEOWNERs
- Add brreg extension (#16927)
- Fix missing `context` parameter in `createDeeplink` doc (#16910)
- Update CODEOWNERs
- Add due date and NLP parsing to todo list extension (#16897)
- Update CODEOWNERs
- Add tmux-cheatsheet extension (#16892)
- Update CODEOWNERs
- Add `OlaCV` extension - View your .cv Domains, Domain Zone + View & Create Contacts (#17251)
- Update CODEOWNERs
- Add `Jotform` extesnsion - List Forms and View Form Submissions (#17228)
- Update CODEOWNERs
- Add designer-excuses extension (#16659)
- Update appcleaner extension (#17115)
- Update CODEOWNERs
- Update timezone-converter extension (#17290)
- Update 1password extension (#17283)
- Update CODEOWNERs
- Ext/deepseeker (#16925)
- Update color-picker extension (#17054)
- Update CODEOWNERs
- Update deepl-api-usage extension (#17229)
- Update audio-device extension (#17220)
- Update downloads-manager extension (#17159)
- Update stale.yml (#17287)
- Update CODEOWNERs
- Add screenpipe extension (#16923)
- Update CODEOWNERs
- [Quick Open Project] Stop transferring environment variables to opened applications (#17158)
- Update CODEOWNERs
- [WhoSampled] - Add functionality for apple music and manual search (#17094)
- update Google Gemini extension (#16881)
- [Image Modification] Add \'Remove Background\' command (#17285)
- Update CODEOWNERs
- feat(vscode-recent-projects): add support for Trae (#17258)
- Various small improvements in the ChatGPT plugin (#16695)
- Update CODEOWNERs
- Update ghostty extension (#17225)
- Update unifi extension (#17101)
- Update CODEOWNERs
- Update google-search extension (#16615)
- [Video Downloader] Improve downloader & installer (#17213)
- added support for safari, firefox, zen, brave, vivaldi, opera and edge (#16914)
- AI Extensions: Linear, Spotify player, Todoist (#17223)
- Update CODEOWNERs
- Update CODEOWNERs
- AI Extensions: Linak Controller, Metronome, Music, Netlify, One thing, Pomodoro, Producthunt, Shell (#17209)
- Update CODEOWNERs
- AI Extensions: Siri, Tableplus, Things, Timers, Toothpick, Vercast, Webpage to Markdown, Wikipedia, Workouts, Zoom (#17211)
- AI Extensions: Messages, Notion, Slack, Safari (#17217)
- AI Extensions: apple-notes, apple-reminders, GitHub, Jira (#17215)
- Update sf-symbols-search extension (#17216)
- Update CODEOWNERs
- Update sf-symbols-search extension (#17212)
- Update CODEOWNERs
- AI Extensions: ClickUp, Coffee, Curl, ffmpeg, git-assistant (#17207)
- Update CODEOWNERs
- AI Extensions: google-workspace, hacker-news, home assistant, item, kill-process (#17208)
- Update CODEOWNERs
- AI Extensions: Media Converter (#17201)
- AI Extensions: Google Chrome (#17202)
- AI Extensions: Sips (#17203)
- AI Extensions: Arc (#17204)
- Update CODEOWNERs
- AI Extensions: Bear (#17205)
- AI Extensions: Better Uptime (#17206)
- Update CODEOWNERs
- update extension myip (#17170)
- Update viacep extension (#17199)
- [Video Downloader] Unlock its full ability (#16845)
- Update svgl extension (#17048)
- feat: rework Ask additional question (#16796)
- Update media-converter extension (#17190)
- Update CODEOWNERs
- Update `linkding` extension - close issue + loads of minor enhancements (#17043)
- Update CODEOWNERs
- Update `Plausible Analytics` extension - Fix URL not being picked up properly (related to issue) (#17064)
- [MyIdlers] Update Server (#17121)
- Update `Neon` extension - Update Project + View Roles & Databases + View Compute Endpoints + Update Database + View Database schema + View Project monitoring (#17181)
- [Raycast Notification] Routine maintenance & add check-prebuilds scripts (#17187)
- Update CODEOWNERs
- [Spotify Playlist] Fix Missing Playlists in Add Playing Song to Playlist command (#16295)
- Update CODEOWNERs
- Option to show start date in Asana create form (#16960)
- [Todoist] - Added Show Next Most Prioirity Task as Menu Bar Title - #16647 (#17100)
- feat: Add Copy Embed Code Command to Spotify Player (#17116)
- Update CODEOWNERs
- [Todoist] - Added Manual Sort Option - #16646 (#17073)
- Update CODEOWNERs
- Update toggl-track extension (#16844)
- Docs: update for the new API release
- Update CODEOWNERs
- Docs: update for the new API release
- Implement skip 15 seconds, back 15 seconds (#16980)
- Update CODEOWNERs
- Revert "Update CODEOWNERs"
- Update CODEOWNERs
- CI: use PAT for generating code owners
- CI: use PAT for generating code owners
- Update pr-bot.ts (#17139)
- Added projecfilter (#17134)
- Brew: Add open formula actions (#17082)
- Todoist - Use time format from Todoist account preferences - #16913  (#16986)
- [YouTube Downloader] Add support for forcing IPv4 (#17128)
- Update `cPanel` extension - copy file contents after viewing + view & add ftp-accounts (#17103)
- [YouTube Downloader] Add preferences to avoid clipboard leaks (#17055)
- update
- [Safari] Disable Pinyin by default (#16802)
- added Toggle Timer Widget Command to tomito-controls (#16800)
- Update pieces-raycast extension (#16797)
- Update CODEOWNERs
- Add daisyui extension (#16782)
- Update CODEOWNERs
- Update iconify extension (#16769)
- Update CODEOWNERs
- Create Metabase extension (#16761)
- Update CODEOWNERs
- Update streamshare-uploader extension (#17046)
- Update sportssync extension (#17042)
- Update CODEOWNERs
- Add pushover extension (#16752)
- Update stale.yml
- Spotify Player: Make Music Only not required
- Update CODEOWNERs
- Update cursor-recent-projects extension (#17050)
- Update CODEOWNERs
- Add appcleaner extension (#16703)
- Update CODEOWNERs
- Add fuel-it extension (#16266)
- [Raynab] Improve support for different currency formats (#17024)
- Update CODEOWNERs
- Add penflow-ai extension (#15881)
- [Color Picker] Add support for showing color name after picking color (#16929)
- Update multi-links extension (#16875)
- [Frame Crop] - New Wallpaper Action (#16851)
- [SF Symbols Search] Add new symbols and minimum OS version per symbol (#16366)
- Update CODEOWNERs
- Add sportssync extension (#16453)
- Update CODEOWNERs
- Update imessage-2fa extension to add support for mail  (#16364)
- Update trakt-manager extension (#16907)
- Added reasoning models (#16863)
- Update CODEOWNERs
- [Oracle Cloud] Instance Actions + handle error gracefully when no config found (close #16962) (#16963)
- Add github-search extension (#16624)
- Bump fast-json-patch and @raycast/api in /extensions/airport (#17036)
- Bump node-fetch from 3.0.0 to 3.2.10 in /extensions/airport (#17035)
- Update figma-files-raycast-extension extension (#16917)
- Cleanup unused project files (#16928)
- Update CODEOWNERs
- Update CODEOWNERs
- [YouTube Downloader] Add preference for toggling BrowserExtension (#16843)
- [n8n] add new search command using API since Desktop App no longer maintained (#16515)
- Update 1password extension (#16830)
- Bump vitest from 1.5.0 to 1.6.1 in /extensions/youtrack (#17016)
- Bump vitest from 1.6.0 to 1.6.1 in /extensions/rectangle (#17015)
- Bump vitest from 2.1.8 to 2.1.9 in /extensions/raynab (#17011)
- OSS Browser: Override urllib version. (#17014)
- Restore Photo: Update Cloudinary to 1.37.3 to fix security vulnerability.
- OSS: Override urllib version. (#17013)
- Update one-time-password extension (#16973)
- Updated dependencies (#17005)
- Update `Sav` extension - Toggle "Auto Renewal" & "Domain/Whois Privacy" (#16987)
- Update safari extension (#16445)
- Update 1password extension (#17001)
- Docs: update for the new API release
- Update doppler.md
- Bump minimist from 1.2.5 to 1.2.8 in /extensions/8ball (#17004)
- Bump minimist from 1.2.5 to 1.2.8 in /extensions/algolia (#17002)
- Bump minimist from 1.2.5 to 1.2.8 in /extensions/android-adb-input (#17000)
- Bump shell-quote from 1.7.2 to 1.8.2 in /extensions/airport (#16972)
- Update CODEOWNERs
- Add sniffer extension (#16587)
- Update CODEOWNERs
- Hide my Email extension: Make it possible to search by email address or note in list emails command (#16919)
- Bump dompurify from 2.3.8 to 2.5.8 in /extensions/gif-search (#16947)
- Update CODEOWNERs
- [Messages] Filter out phone numbers from OTP codes (#16485)
- Apple Reminders: Add option to group by "Upcoming" (#16763)
- refined the implementation to support more layouts (#16811)
- Update Tower and Warp icons (#16895)
- Update CODEOWNERs
- Update package.json
- fix(KeePassXC): use OTPAuth to retrieve TOTP codes (#16815)
- Update CODEOWNERs
- Update raindrop-io extension (#16849)
- Update Deepseeker extension (#16832)
- [Raycast Port] Add port for Browser Extension (#16817)
- [Dashlane-Vault] Improvements (#16857)
- Update adguard-home extension (#16862)
- Launchdarkly improvements (#16915)
- [Groq] updated models + reasoning formatting (#16930)
- Update `Rebrandly` extension - add a new Action to delete link (#16870)
- Update CODEOWNERs
- Update `Sanity` extension - Add "Search Datasets" to "Search Projects" + replace `Cache` with `useCachedPromise` (#16765)
- Add `Spaceship` (spaceship.com) extension - View Domains and View DNS Records (#16828)
- Update CODEOWNERs
- Update `RSS Reader` extension - remember story last read + filter by read status (close issue) (re-open PR) (#16655)
- Add `UptimeRobot` extension - View Monitors + View Account Details (#16727)
- Update CODEOWNERs
- Update `Monday` extension - View items in a board and open in browser + Raycast hooks to simplify caching (#16746)
- [The Blue Cloud] Update `Dropbox` extension - Download files + Open directory in browser (#16901)
- Update CODEOWNERs
- Update hidemyemail extension (#16904)
- Update zen-browser extension (#16937)
- Update CODEOWNERs
- [Apple Reminders] Include overdue list view and default due date for new reminders (#16294)
- Avatars now display with a circular mask (#16916)
- Slack: Add Action: "Copy Message URL" to Search Messages command (#16899)
- Update CODEOWNERs
- Update jira extension to fix Git branch name format (#16883)
- Add Linear focus sub-commands when creating an issue (#16760)
- [Spotify Player] Hide artist\'s name in menu bar player (#16742)
- Docs: update for the new API release
- Add missing migrations
- Docs: update for the new API release
- [Search npm] Fix URL parsing issue (#16824)
- Update CODEOWNERs
- [Spotify Player] Fix a possibly null issue from `getMeAlbums` API (#16787)
- Update vortex extension (#16626)
- Sourcegraph: Branding updates and workspaces (#16793)
- Update zeabur extension (#16807)
- [YouTube Downloader] Improve error message (#16595)
- Update CODEOWNERs
- Update raycast-gemini extension (#16744)
- Update CODEOWNERs
- Update docker extension (#16291)
- Update CODEOWNERs
- Update `coffee`: add "Caffeinate Until" command (#16747)
- Update CODEOWNERs
- Added sort on the browser profile names (#16562)
- Update CODEOWNERs
- Update remove-background-powered-by-mac extension (#16750)
- Update youtube-downloader extension (#16785)
- [Punto] Map russian keyboard layouts (#16799)
- update (#16783)
- Update CODEOWNERs
- update klack extension (#16701)
- Update stock-tracker extension - Fix yahoo finance rate limiting (#16658)
- Update youtube-downloader extension (#16743)
- Update CODEOWNERs
- Update github-gist extension (#16729)
- Update hue-palette extension (#16757)
- Update strapi-raycast-extension extension (#16724)
- Update spiceblow-database extension (#16759)
- Update CODEOWNERs
- [Raycast Port] Fix JavaScript example code (#16754)
- Update rehooks extension (#16748)
- [Obsidian] Add prepend option to append to daily note command (#16745)
- [Tower Repositories] Handle URI Encoding of Repository Paths (#16766)
- Update README.md
- Update CODEOWNERs
- Update nba-game-viewer extension (#16684)
- Document the `showToast()` fallback behavior (#16638)
- Update CODEOWNERs
- Update `UploadThing…
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