Skip to content

Add daily-sites extension#18763

Merged
raycastbot merged 14 commits intoraycast:mainfrom
dubsdotla:ext/daily-sites
May 9, 2025
Merged

Add daily-sites extension#18763
raycastbot merged 14 commits intoraycast:mainfrom
dubsdotla:ext/daily-sites

Conversation

@dubsdotla
Copy link
Contributor

@dubsdotla dubsdotla commented Apr 24, 2025

Daily Sites - Site Launcher

Description

Daily Sites lets you collect frequently used websites, filter them by name, URL, and category, and easily open them in your default web browser.

launcher

Setup

The first time you open the extension you will be asked to choose an XML folder, this defaults to your Documents folder. This folder is used by the “Export Sites” and “Import Sites” commands. It’s where exported XML files are saved and the default import directory.

Features

Site Launcher

  • Browse your full collection of saved sites
  • Filter by name, URL or category
  • Open any site in your default web browser
  • Manage Sites entry provides:
    • Add Site
    • Import Sites
    • Export Sites
    • Delete All Sites

Add Site

  • Add a new website to your collection
  • Require only a name and URL (category optional)

Export Sites

  • Export your entire collection to an XML file
  • Use for backups or manual editing outside Raycast

Import Sites

  • Import sites from a previously exported XML file
  • Automatically merge only new entries (skips duplicates)

Usage

As the name implies, Daily Sites was created to make it easier for you to access websites that you view on a daily basis. A prime example of this is technology news sites which may be updated multiple times a day.

We can create a series of sites with the category “News” and then every time you want to browse your tech news sites, you can either type “news” or select the “News” category from the Category dropdown menu.

daily-sites-4
daily-sites-5
daily-sites-2

Author

Developed by Derek William Scott (@dubsdotla on GitHub).

License

Distributed under the MIT License.

Screencast

Kapture.2025-04-28.at.18.15.08.mp4

Checklist

- Fixed issue with addsite.tsx where the form validation errors were always visible for a new site. Now they only only appear if the Name and/or URL textfields are blank when clicking Add.
- Initial Commit
@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.

@raycastbot raycastbot added the new extension Label for PRs with new extensions label Apr 24, 2025
- Fixed code style issues
- Fixed errors that arose when running "npx ray build -e dist" that were due to unnecessary imports and incorrect syntax
@dubsdotla dubsdotla marked this pull request as ready for review April 24, 2025 20:04
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

This PR adds a new Daily Sites extension for managing and quickly accessing frequently visited websites, featuring site management, categorization, and import/export capabilities.

  • README.md needs more detailed documentation about features, usage instructions, and examples to help users understand the extension's capabilities
  • Extension requires a metadata folder with screenshots since it includes view commands in package.json
  • Consider adding URL validation in addsite.tsx to ensure proper URL format before saving
  • Consider using showFailureToast from @raycast/utils in try-catch blocks instead of manual showToast calls for error handling
  • XML parsing in utils.ts could benefit from more robust error handling and input validation to prevent potential security issues

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

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

{
"name": "dailysites",
"title": "Daily Sites",
"subtitle": "Daily Sites",
Copy link
Contributor

Choose a reason for hiding this comment

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

style: The subtitle 'Daily Sites' is redundant with the title. Consider using a more descriptive subtitle that differentiates the command

Comment on lines +57 to +64
// persist
const existing = await loadSites();
const updated = initialValues
? existing.map((s) => (s.url === initialValues.url ? newSite : s))
: [...existing, newSite];

await saveSites(updated);
await showToast(Toast.Style.Success, initialValues ? "Site updated" : "Site added");
Copy link
Contributor

Choose a reason for hiding this comment

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

logic: loadSites and saveSites operations should be wrapped in try-catch to handle potential storage errors

Suggested change
// persist
const existing = await loadSites();
const updated = initialValues
? existing.map((s) => (s.url === initialValues.url ? newSite : s))
: [...existing, newSite];
await saveSites(updated);
await showToast(Toast.Style.Success, initialValues ? "Site updated" : "Site added");
// persist
try {
const existing = await loadSites();
const updated = initialValues
? existing.map((s) => (s.url === initialValues.url ? newSite : s))
: [...existing, newSite];
await saveSites(updated);
await showToast(Toast.Style.Success, initialValues ? "Site updated" : "Site added");
onDone();
} catch (error) {
showFailureToast(error, { title: "Failed to save site" });
}

Comment on lines +24 to +32
// load existing categories
useEffect(() => {
(async () => {
const all = await loadSites();
const baseCategories = getCategories(all);
const merged = Array.from(new Set([initialCat, "custom", ...baseCategories]));
setCategories(merged);
})();
}, [initialCat]);
Copy link
Contributor

Choose a reason for hiding this comment

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

logic: useEffect has no error handling for loadSites failure

Suggested change
// load existing categories
useEffect(() => {
(async () => {
const all = await loadSites();
const baseCategories = getCategories(all);
const merged = Array.from(new Set([initialCat, "custom", ...baseCategories]));
setCategories(merged);
})();
}, [initialCat]);
// load existing categories
useEffect(() => {
(async () => {
try {
const all = await loadSites();
const baseCategories = getCategories(all);
const merged = Array.from(new Set([initialCat, "custom", ...baseCategories]));
setCategories(merged);
} catch (error) {
showFailureToast(error, { title: "Failed to load categories" });
}
})();
}, [initialCat]);

Comment on lines +29 to +33
async function refresh() {
const loaded = await loadSites();
setSites(loaded);
setCategories(getCategories(loaded));
}
Copy link
Contributor

Choose a reason for hiding this comment

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

style: refresh() should be wrapped in try/catch to handle potential loadSites errors

Suggested change
async function refresh() {
const loaded = await loadSites();
setSites(loaded);
setCategories(getCategories(loaded));
}
async function refresh() {
try {
const loaded = await loadSites();
setSites(loaded);
setCategories(getCategories(loaded));
} catch (error) {
console.error('Error loading sites:', error);
await showToast(Toast.Style.Failure, 'Failed to load sites');
}
}

Comment on lines +124 to +137
return (
<List
searchBarPlaceholder="Filter by name, URL or category…"
searchBarAccessory={
<List.Dropdown tooltip="Filter by category" value={filterCategory} onChange={setFilterCategory}>
<List.Dropdown.Item title="All Categories" value="" />
{categories
.filter((cat) => cat !== "uncategorized")
.map((cat) => (
<List.Dropdown.Item key={cat} title={cat} value={cat} />
))}
</List.Dropdown>
}
>
Copy link
Contributor

Choose a reason for hiding this comment

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

style: List should use isLoading prop while sites are being loaded to avoid empty state flicker

Suggested change
return (
<List
searchBarPlaceholder="Filter by name, URL or category…"
searchBarAccessory={
<List.Dropdown tooltip="Filter by category" value={filterCategory} onChange={setFilterCategory}>
<List.Dropdown.Item title="All Categories" value="" />
{categories
.filter((cat) => cat !== "uncategorized")
.map((cat) => (
<List.Dropdown.Item key={cat} title={cat} value={cat} />
))}
</List.Dropdown>
}
>
return (
<List
isLoading={sites.length === 0}
searchBarPlaceholder="Filter by name, URL or category…"
searchBarAccessory={
<List.Dropdown tooltip="Filter by category" value={filterCategory} onChange={setFilterCategory}>
<List.Dropdown.Item title="All Categories" value="" />
{categories
.filter((cat) => cat !== "uncategorized")
.map((cat) => (
<List.Dropdown.Item key={cat} title={cat} value={cat} />
))}
</List.Dropdown>
}
>

Comment on lines +61 to +62
console.error("handleDelete error:", error);
await showToast(Toast.Style.Failure, "Error deleting site");
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Replace with showFailureToast from @raycast/utils for consistent error handling

Suggested change
console.error("handleDelete error:", error);
await showToast(Toast.Style.Failure, "Error deleting site");
console.error("handleDelete error:", error);
showFailureToast(error, { title: "Error deleting site" });

Comment on lines +26 to +29
} catch (e) {
console.error(e);
await showToast(Toast.Style.Failure, "Import failed");
}
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Use showFailureToast from @raycast/utils instead of manual error handling. Example: showFailureToast(error, { title: "Could not import sites" })

Suggested change
} catch (e) {
console.error(e);
await showToast(Toast.Style.Failure, "Import failed");
}
} catch (error) {
console.error(error);
await showFailureToast(error, { title: "Could not import sites" });
}

Comment on lines +21 to +24
} catch (e) {
console.error(e);
await showToast(Toast.Style.Failure, "Export failed");
}
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Use showFailureToast from @raycast/utils instead of manual error handling. Example: showFailureToast(error, { title: 'Could not export sites' })

Suggested change
} catch (e) {
console.error(e);
await showToast(Toast.Style.Failure, "Export failed");
}
} catch (error) {
console.error(error);
await showFailureToast(error, { title: "Could not export sites" });
}


if (!raw || !raw.trim().startsWith("<?xml")) {
const empty = `<?xml version="1.0"?><sites></sites>`;
await LocalStorage.setItem(STORAGE_KEY, empty).catch(() => {});
Copy link
Contributor

Choose a reason for hiding this comment

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

logic: Empty catch block silently ignores storage errors. Use showFailureToast from @raycast/utils instead.

Suggested change
await LocalStorage.setItem(STORAGE_KEY, empty).catch(() => {});
await LocalStorage.setItem(STORAGE_KEY, empty).catch((error) => showFailureToast(error, { title: "Failed to initialize sites storage" }));

export async function saveSites(sites: Site[]): Promise<void> {
const sorted = sortSites(sites);
const xml = sitesToXml(sorted);
await LocalStorage.setItem(STORAGE_KEY, xml);
Copy link
Contributor

Choose a reason for hiding this comment

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

logic: Missing error handling for LocalStorage.setItem. Should wrap in try-catch with showFailureToast.

Suggested change
await LocalStorage.setItem(STORAGE_KEY, xml);
try {
await LocalStorage.setItem(STORAGE_KEY, xml);
} catch (error) {
showFailureToast(error, { title: "Failed to save sites" });
}

- Adding media directory and adding new images to metadata
- Made changes suggested by greptile-apps bot so my PR can be approved. :)
… issue with Site Manager where the isLoading state would continue to be true even when there were no sites to be loaded.
@pernielsentikaer
Copy link
Collaborator

There are still some CI errors you need to look into, do you need help?

I'm waiting until checks complete to review it 🙂

@pernielsentikaer pernielsentikaer self-assigned this Apr 30, 2025
… in my package.json which caused a ci error, so I changed the version number back and properly ran npm install @raycast/api@latest
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)

The PR has been updated with significant improvements to documentation, error handling, and core functionality for the Daily Sites extension.

  • Added comprehensive setup and usage documentation in README.md with clear examples and screenshots
  • Implemented showFailureToast from @raycast/utils across all error handling in exportsites.tsx, importsites.tsx, and utils.ts
  • Added URL validation in addsite.tsx to ensure valid http/https URLs and defaulting new URLs to 'https://'
  • Improved XML handling with proper escaping and error handling in utils.ts
  • All view commands now use consistent "Daily Sites" subtitle in package.json for better organization

Note: The PR now addresses all major points from the previous review and implements proper error handling and validation throughout the codebase.

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

"type": "directory",
"name": "xmlFolder",
"title": "XML Folder",
"description": "Where your exported sites XML file will live",
Copy link
Contributor

Choose a reason for hiding this comment

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

style: The description should end with a period for consistency with other descriptions

Suggested change
"description": "Where your exported sites XML file will live",
"description": "Where your exported sites XML file will live.",


Daily Sites lets you collect frequently used websites, filter them by name, URL, and category, and easily open them in your default web browser.

![launcher.png](media/launcher.png)
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Image path 'media/launcher.png' should be relative to the metadata folder for store submission

Suggested change
![launcher.png](media/launcher.png)
![launcher.png](metadata/launcher.png)


The first time you open the extension you will be asked to choose an XML folder, this defaults to your Documents folder. This folder is used by the “Export Sites” and “Import Sites” commands. It’s where exported XML files are saved and the default import directory.

![setup](media/setup.png)
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Image path 'media/setup.png' should be relative to the metadata folder for store submission

Suggested change
![setup](media/setup.png)
![setup](metadata/setup.png)

Comment on lines +18 to +19
const out = path.join(values.folder[0], `${values.filename || "sites"}.xml`);
fs.writeFileSync(out, xml, "utf8");
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Use fs.promises.writeFile instead of synchronous writeFileSync to avoid blocking the main thread

Comment on lines +65 to +67
const updated = initialValues
? existing.map((s) => (s.url === initialValues.url ? newSite : s))
: [...existing, newSite];
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Consider adding duplicate URL check when updating to prevent accidental duplicates

Suggested change
const updated = initialValues
? existing.map((s) => (s.url === initialValues.url ? newSite : s))
: [...existing, newSite];
const isDuplicate = !initialValues && existing.some(s => s.url === newSite.url);
if (isDuplicate) {
showToast(Toast.Style.Failure, "A site with this URL already exists");
return;
}
const updated = initialValues
? existing.map((s) => (s.url === initialValues.url ? newSite : s))
: [...existing, newSite];


async function handleSubmit(values: { file: string[] }) {
try {
const xmlPath = values.file[0]; /* or `${xmlFolder}/yourfile.xml` */
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Remove commented code suggestion since it's not being used

Suggested change
const xmlPath = values.file[0]; /* or `${xmlFolder}/yourfile.xml` */
const xmlPath = values.file[0];

Comment on lines +46 to +51
useEffect(() => {
setTimeout(() => {
refresh();
setIsLoading(false);
}, 1500);
}, []);
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Consider removing artificial delay of 1500ms - it may make the app feel slow without providing value

@dubsdotla
Copy link
Contributor Author

There are still some CI errors you need to look into, do you need help?

I'm waiting until checks complete to review it 🙂

I appreciate the heads-up! The CI errors should now be resolved, thank you!

…loading indicator won\'t fire if there are no sites to be loaded like on the initial launch.
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)

The PR has been further refined with improvements to the Daily Sites extension's file handling and error management.

  • Implemented non-blocking file operations using fs.promises.writeFile in exportsites.tsx for better performance
  • Added proper file path handling using path.join() in exportsites.tsx for cross-platform compatibility
  • Improved error handling in importsites.tsx with better error messages and validation for XML imports
  • Added default directory handling in exportsites.tsx using user preferences

Note: The changes show continued improvement in code quality and robustness, particularly around file system operations.

5 file(s) reviewed, 1 comment(s)
Edit PR Review Bot Settings | Greptile

Comment on lines +32 to +38
useEffect(() => {
(async () => {
const all = await loadSites();
const baseCats = getCategories(all);
setCategories(Array.from(new Set([initialCat, "custom", ...baseCats])));
})();
}, [initialCat]);
Copy link
Contributor

Choose a reason for hiding this comment

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

style: useEffect has no cleanup function to cancel the async operation if the component unmounts during the load

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)

The PR has been updated with improvements to form handling and state management in the Daily Sites extension.

  • Added cleanup for async operations in addsite.tsx using isActive flag to prevent state updates after unmount
  • Improved form validation in addsite.tsx with separate error states for name and URL fields
  • Implemented proper state management for custom categories with useState and conditional rendering
  • Added proper type definitions for form props and values in addsite.tsx

Note: The changes demonstrate better React practices and form handling, particularly around component lifecycle and validation.

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

Comment on lines +140 to +142
value={customCategory}
onChange={setCustomCategory}
/>
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Consider trimming whitespace from customCategory as it's entered rather than only on submit

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)

Recent changes focus on improving the Daily Sites extension's error handling and storage operations.

  • Implemented proper error handling for LocalStorage operations in utils.ts using showFailureToast
  • Added XML validation in utils.ts to ensure proper format before parsing with startsWith("<?xml")
  • Improved error recovery in loadSites() by resetting to empty XML state on parse failures
  • Added sorting functionality in utils.ts to maintain consistent site ordering

Note: These changes enhance the robustness of data handling and storage operations, particularly around error cases and data consistency.

1 file(s) reviewed, no comment(s)
Edit PR Review Bot Settings | Greptile

@dubsdotla
Copy link
Contributor Author

There are still some CI errors you need to look into, do you need help?
I'm waiting until checks complete to review it 🙂

I appreciate the heads-up! The CI errors should now be resolved, thank you!

@pernielsentikaer I had some other style related changes recommended by the bot after fixing the CI errors, but everything should be ready to go now! 🙌

Copy link
Collaborator

@pernielsentikaer pernielsentikaer left a comment

Choose a reason for hiding this comment

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

Hi 👋

Thanks for your contribution 💪

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

  • You should popToRoot after adding a new site (or add a preference to let the user switch between popToRoot and going back to root

I'm looking forward to testing this extension again 🔥

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

…add. If you choose yes, the fields reset to default values. If you choose no, popToRoot is called if you launched Add Site directly, otherwise it returns to Site Launcher. Import Site now calls popToRoot after a successful import if you launched Import Sites directly, otherwise it returns to Site Launcher. Export Site now calls popToRoot after a successful export if you launched Export Sites directly, otherwise it returns to Site Launcher.
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)

The PR has been updated with improved navigation handling in the Daily Sites extension, particularly around form submission flows.

  • Added popToRoot() after site addition in addsite.tsx to ensure consistent navigation behavior
  • Implemented "Add Another" confirmation dialog in addsite.tsx to improve user workflow
  • Added form reset functionality when adding multiple sites consecutively
  • Standardized navigation behavior across all commands using popToRoot()

Note: These changes provide a more consistent and user-friendly navigation experience throughout the extension.

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

Comment on lines +93 to +99
// Ask user if they want to add another
const again = await confirmAlert({
title: "Add another site?",
message: "Would you like to add one more site?",
primaryAction: { title: "Yes" },
dismissAction: { title: "No" },
});
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Consider moving confirmAlert call before saveSites to prevent showing success toast if user cancels

…t call before saveSites to prevent showing success toast if user cancels
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)

Recent changes to the Daily Sites extension introduce potential issues with the site saving workflow in addsite.tsx.

  • The saveSites operation in addsite.tsx should occur before showing the "Add another site?" dialog to prevent data loss if save fails
  • Consider adding error handling around the confirmAlert call in addsite.tsx to handle potential failures
  • The form reset logic in addsite.tsx should be moved into a separate function to improve code organization

Note: These changes focus on improving the reliability and error handling of the site addition workflow.

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

Comment on lines +90 to +96
// Ask user if they want to add another
const again = await confirmAlert({
title: "Add another site?",
message: "Would you like to add one more site?",
primaryAction: { title: "Yes" },
dismissAction: { title: "No" },
});
Copy link
Contributor

Choose a reason for hiding this comment

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

logic: confirmAlert should only be shown when not in edit mode (initialValues is undefined), as it doesn't make sense to ask about adding another when editing

Suggested change
// Ask user if they want to add another
const again = await confirmAlert({
title: "Add another site?",
message: "Would you like to add one more site?",
primaryAction: { title: "Yes" },
dismissAction: { title: "No" },
});
// Ask user if they want to add another (only in add mode)
const again = !initialValues && await confirmAlert({
title: "Add another site?",
message: "Would you like to add one more site?",
primaryAction: { title: "Yes" },
dismissAction: { title: "No" },
});

… edit mode (initialValues is undefined), as it doesn\'t make sense to ask about adding another when editing
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)

Recent changes to the Daily Sites extension improve the site saving workflow and error handling in addsite.tsx.

  • Reordered operations in addsite.tsx to save sites before showing the "Add another" dialog
  • Added proper error handling around confirmAlert using try-catch in addsite.tsx
  • Improved form state management with proper cleanup and error handling in addsite.tsx

Note: These changes enhance the reliability of the site addition workflow and maintain data consistency.

1 file(s) reviewed, 2 comment(s)
Edit PR Review Bot Settings | Greptile

Comment on lines +100 to +101
await saveSites(updated);
await showToast(Toast.Style.Success, initialValues ? "Site updated" : "Site added");
Copy link
Contributor

Choose a reason for hiding this comment

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

style: Consider moving showToast after the 'again' check to avoid showing success when user might continue adding more

Comment on lines +179 to +182
onDone={async () => {
// runs when Add Site is invoked directly
await popToRoot();
}}
Copy link
Contributor

Choose a reason for hiding this comment

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

logic: popToRoot should be wrapped in try-catch to handle potential navigation errors

…oid showing success when user might continue adding more. Fixed logic issue by wrapping popToRoot in try-catch to handle potential navigation errors.
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)

Recent changes improve error handling and navigation in the Daily Sites extension's core commands.

  • Added proper error handling for popToRoot navigation in all command wrappers (addsite.tsx, importsites.tsx, exportsites.tsx)
  • Improved error feedback using showFailureToast consistently across import/export operations
  • Implemented non-blocking file write operations in exportsites.tsx for better performance

Note: These changes enhance the robustness of navigation and file operations throughout the extension.

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

Comment on lines +48 to +49
defaultValue="dailysites"
placeholder="dailysites"
Copy link
Contributor

Choose a reason for hiding this comment

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

style: defaultValue and placeholder are identical - consider removing placeholder since it's redundant

…e identical, removed placeholder since it was redundant.
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)

Recent changes focus on minor improvements to the export functionality in the Daily Sites extension.

  • Removed redundant placeholder in exportsites.tsx filename field since it matched the defaultValue
  • Improved file path handling in exportsites.tsx by using proper path joining for cross-platform compatibility

Note: These changes represent minor refinements to the export functionality, with no significant changes to core behavior.

1 file(s) reviewed, no comment(s)
Edit PR Review Bot Settings | Greptile

@dubsdotla
Copy link
Contributor Author

Hi 👋

Thanks for your contribution 💪

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

* You should popToRoot after adding a new site (or add a preference to let the user switch between popToRoot and going back to root

I'm looking forward to testing this extension again 🔥

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

@pernielsentikaer

When Add Site is opened directly and you add a new site it now asks if you want to add another site, if yes it replaces fields/popup with default values, if no it does a popToRoot.

When the Add Site action is invoked from Site Launcher and you choose no after adding a site, it returns to Site Launcher.

For consistency sake I updated the functionality of Import Sites and Export Sites to behave in the same manner.

Definitely feels a little bit more polished now, pretty happy with these changes! 😀

@dubsdotla dubsdotla requested a review from pernielsentikaer May 3, 2025 15:14
@dubsdotla
Copy link
Contributor Author

Hi 👋
Thanks for your contribution 💪
I have now tested your extension, and I have some feedback ready for you:

* You should popToRoot after adding a new site (or add a preference to let the user switch between popToRoot and going back to root

I'm looking forward to testing this extension again 🔥
Request a new review when you are ready. Feel free to contact me here or at Slack if you have any questions.

@pernielsentikaer

When Add Site is opened directly and you add a new site it now asks if you want to add another site, if yes it replaces fields/popup with default values, if no it does a popToRoot.

When the Add Site action is invoked from Site Launcher and you choose no after adding a site, it returns to Site Launcher.

For consistency sake I updated the functionality of Import Sites and Export Sites to behave in the same manner.

Definitely feels a little bit more polished now, pretty happy with these changes! 😀

@pernielsentikaer Realizing that I didn't mention that I had requested a new review, figured I would leave a comment here just in case, thank you!

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 merged commit bfb8c95 into raycast:main May 9, 2025
2 checks passed
@github-actions
Copy link
Contributor

github-actions bot commented May 9, 2025

Published to the Raycast Store:
https://raycast.com/dubsdotla/daily-sites

@raycastbot
Copy link
Collaborator

🎉 🎉 🎉

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

@dubsdotla dubsdotla deleted the ext/daily-sites branch May 11, 2025 07:45
robertoalvarezalonso added a commit to robertoalvarezalonso/raycast-extensions that referenced this pull request May 13, 2025
- Merge pull request #1 from robertoalvarezalonso/ext/servicenow
- Update CHANGELOG.md
- Merge branch \'contributions/merge-1747157138244\' into ext/servicenow
- Pull contributions
- Update CHANGELOG.md
- Merge branch \'main\' into ext/servicenow
- Merge branch \'main\' of https://github.com/robertoalvarezalonso/raycast-extensions
- fix: prevent function name minification in background script generation
- 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 (raycast#19026)
- Update CODEOWNERs
- Add setlist-fm extension (raycast#19119)
- Update zerion extension (raycast#19132)
- Update CODEOWNERs
- Gitlab Extension: My merge requests & label based filtering (raycast#19007)
- Update CODEOWNERs
- Add file-organizer extension (raycast#18877)
- Update CODEOWNERs
- Update `Two-Factor Authentication Code Generator` - Rename Codes + Modernize + Add README (raycast#19019)
- [NixPkgs Search] Fetch version number from NixOS/nixos-search repo and compose url dynamically (raycast#19025)
- Update flibusta-search extension (raycast#19131)
- Update omnifocus extension (raycast#19024)
- Update tidal-controller extension (raycast#18437)
- Update CODEOWNERs
- Add Mac network location changer (raycast#18961)
- LoL Esports AI tools (raycast#18563)
- Update servicenow extension (raycast#18834)
- Update CHANGELOG.md and optimise images
- Update at-profile extension (raycast#18554)
- Update shopify-theme-resources extension (raycast#18991)
- [Image Modification] Add support for QSpace Pro and ForkLift (raycast#19108)
- Update CODEOWNERs
- Update kill-node-modules extension (raycast#19039)
- Update CODEOWNERs
- Add grok-ai extension (raycast#18566)
- Update CODEOWNERs
- Add subwatch extension (raycast#18929)
- Ente Auth - fix preferred values (raycast#19029)
- Update README.md (raycast#19106)
- Update CODEOWNERs
- Update arc extension (raycast#19062)
- TickTick support AI Extension (raycast#17531)
- Update CODEOWNERs
- Add domain field to fastmail-masked-email extension (raycast#19066)
- Apple Mail: Fix OTP codes across multiple mail accounts (raycast#19033)
- Update hardcover extension (raycast#19065)
- Update how-long-to-beat extension (raycast#19042)
- Update dovetail extension (raycast#19102)
- Update daily-sites extension (raycast#19097)
- Update Ext/window sizer (raycast#19103)
- Update index.tsx (raycast#19067)
- Docs: update for the new API release
- Docs: update for the new API release
- Update OpenVPN description to reflect recent changes (raycast#18788)
- Update CODEOWNERs
- Add raycast-zoxide extension (raycast#18908)
- Update mermaid-to-image extension (raycast#18975)
- Update CODEOWNERs
- fix(docs): mcp incorrect home page link (raycast#19045)
- Add search-domain extension (raycast#18837)
- Update CODEOWNERs
- Add selfhst-icons extension (raycast#18904)
- Update CODEOWNERs
- Update CODEOWNERs
- Add option to automatically create labels in Todoist quick add command (raycast#18892)
- Add daily-sites extension (raycast#18763)
- Update CODEOWNERs
- MCP Registry: Initial commit (raycast#19015)
- Docs: update for the new API release
- feat(font-search): add postscript names menu (raycast#19003)
- Messages Paste OTP Regex Update (raycast#18896)
- Update Ext/window sizer (raycast#19017)
- Update CODEOWNERs
- Add lipsum extension (raycast#18784)
- adding needed changes (raycast#18987)
- Update login-to-instance.ts
- added try/catch blocks suggested by greptile
- Update extensions/servicenow/src/login-to-instance.ts
- Update extensions/servicenow/src/login-to-instance.ts
- Update CHANGELOG.md
- Update CHANGELOG.md
- Simplified favorites lookup and fixed some greptile comments
- Update CODEOWNERs
- feat: Rename NuxtUI extension to just Nuxt (raycast#17887)
- Update extensions/servicenow/CHANGELOG.md
- Update extensions/servicenow/CHANGELOG.md
- Update CODEOWNERs
- [beszel-extension] Added AI tools for interacting with beszel (raycast#17790)
- Update CODEOWNERs
- Update at-profile extension (raycast#18881)
- Update CODEOWNERs
- Add flibusta-search extension (raycast#18260)
- Update CODEOWNERs
- Update doge-tracker extension (raycast#18950)
- Update CODEOWNERs
- Update CODEOWNERs
- Update raycast-ollama extension (raycast#18910)
- feat(download-manager): add reload action (raycast#18822)
- Add `Name.com` extension - View Account Balance + View Domains + View DNS Records + Delete DNS Record (raycast#18982)
- Update CODEOWNERs
- DeepWiki extension (raycast#18804)
- Update CODEOWNERs
- add primary action switch to `one-time-password` (raycast#18800)
- Update google-chrome extension (raycast#18794)
- Update Ext/window sizer (raycast#18988)
- Update Ext/surge outbound switcher (raycast#18989)
- Update CODEOWNERs
- Update prompt-stash extension (raycast#18887)
- Add geoping extension (raycast#18957)
- Update CODEOWNERs
- Update migadu extension (raycast#18930)
- Update anytype extension (raycast#18993)
- Update CODEOWNERs
- Add cocoa-core-data-timestamp-converter extension (raycast#18656)
- Add macports extension (raycast#18773)
- Update CODEOWNERs
- Things - Set Reminders in Today and Upcoming (raycast#18771)
- Update git-assistant extension with rewrite of search git repositories command (raycast#18948)
- Update Ext/window sizer (raycast#18963)
- Update CODEOWNERs
- Update meme-generator extension (raycast#18844)
- Update granola extension (raycast#18972)
- Update CODEOWNERs
- Update package.json (raycast#18970)
- Update granola extension (raycast#18915)
- Update WIP extension (small typo fix) (raycast#18962)
- Docs: update for the new API release
- Update CODEOWNERs
- Update raindrop-io extension (raycast#18882)
- Update dust-tt extension (raycast#18942)
- Update Ext/window sizer (raycast#18945)
- Update CODEOWNERs
- [Stripe] Fix "Open in Stripe Dashboard" action adding extra leading slash (raycast#18953)
- Update archiver extension (raycast#18685)
- Update CODEOWNERs
- Folder Search Improvements (raycast#18838)
- Added "toggle connection" to tailscale extension (raycast#18409)
- Update esports-pass extension (raycast#18920)
- Update f1-standings extension (raycast#18876)
- Update CODEOWNERs
- Add thock extension (raycast#18618)
- Update CODEOWNERs
- Add tana-paste extension (raycast#18355)
- Update CODEOWNERs
- Update granola extension (raycast#18883)
- Update CODEOWNERs
- Update T3 Chat - new models (raycast#18902)
- Update draft-email.ts (raycast#18895)
- Update CODEOWNERs
- Add zero extension (raycast#18616)
- [Apple Intelligence] Add localization (raycast#18593)
- Update research extension (raycast#18769)
- Update dolar-cripto-ar extension (raycast#18873)
- Update CODEOWNERs
- [Doppler] Update doppler-share-secrets extension (raycast#18523)
- Update CODEOWNERs
- Add barcuts-companion extension (raycast#18737)
- Update CODEOWNERs
- New extension: Granola AI Meeting Notes (raycast#17618)
- [Spotify Player] Enable AI interaction with your queue (raycast#18693)
- Docs: update for the new API release
- feat: replaced Exivo extension iconm due to trademark restrictions (raycast#18868)
- Make some extensions available on Windows (raycast#18869)
- Update animated-window-manager extension (raycast#18865)
- Update lingo-rep-raycast extension (raycast#18721)
- Update ugly-face extension (raycast#18866)
- refactor: respect system appearance (raycast#18856)
- Apple Mail: Paste latest OTP code (raycast#18657)
- Update CODEOWNERs
- Add superhuman extension (raycast#18391)
- Update CODEOWNERs
- Add animated-window-manager extension (raycast#18712)
- Update homeassistant extension (raycast#18234)
- Update CODEOWNERs
- Update swift-command extension (raycast#18761)
- Update CODEOWNERs
- Add tautulli extension (raycast#18023)
- Update CODEOWNERs
- Add qutebrowser-tabs extension (raycast#18694)
- fix: update description in dia extension. (raycast#18853)
- Update CODEOWNERs
- fix: fix not find zsh file (raycast#18854)
- Add nusmods extension (raycast#18757)
- Weather: Fix icon for Fog (raycast#18849)
- refactor: support more offset (raycast#18850)
- refactor: replace keystroke with key code (raycast#18848)
- Update origami extension (raycast#18846)
- Update system-information extension (raycast#18783)
- FIX code extraction imessage-2fa extension (raycast#18836)
- PurpleAir Extension Improvements: Multiple Sensor and Nearest Sensor (raycast#18716)
- Update f1-standings extension (raycast#17861)
- YoutubeMusic: Fixed Issue - remove Like and Like Songs (raycast#18631)
- Update servicenow extension
kaonmir added a commit to kaonmir/raycast-extensions that referenced this pull request May 17, 2025
- Add local-icons extension
- 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 extension (#16721)
- Update lunchmoney extension (#16736)
- Update CODEOWNERs
- Update macrumors extension (#16707)
- Update Kubernetes extension (#16731)
- Update CODEOWNERs
- Todoist: Adding Complete Task shortcut preference (#16633)
- Update CODEOWNERs
- Update CODEOWNERs
- Add hipster-ipsum extension (#16566)
- [Todoist] Support task deadlines alongside due dates (#16564)
- Update CODEOWNERs
- Add gift-stardew-valley extension (#16614)
- Update CODEOWNERs
- "James Webb Space Telescope" Extension (#16607)
- Docs: update for the new API release
- Update CODEOWNERs
- Add strapi-raycast-extension extension (#16599)
- 1.1.1 snooze functionality (#16714)
- Update CODEOWNERs
- Add DeepSeek-R1 model (#16631)
- Update CODEOWNERs
- Update browser-bookmarks extension (#16611)
- Update CODEOWNERs
- Add trenit extension (#16577)
- Humaans: fix url to open person in directory (#16711)
- Update claude extension (#16699)
- Update file-manager extension (#16694)
- Update SVGA Player extension (#16667)
- Update better-uptime extension (#16689)
- Sourcegraph: New logo (#16697)
- [Image Modification] Add new filters, fix several bugs (#16706)
- feat: split AIs into separate commands (#16458)
- Update CODEOWNERs
- Update codeforces-extension extension (#16640)
- Update `OpenStatus` extension - Add "Show Incidents" command + Toggle "Monitor" details (#16676)
- Update CODEOWNERs
- fix(file-manager): hidden files (#16682)
- Update sips extension (#16618)
- Update CODEOWNERs
- Add macrumors extension (#16650)
- Update anytype extension (#16662)
- Update CODEOWNERs
- Update unix-timestamp extension (#16605)
- Update file-manager extension (#16516)
- [perplexity-api] Updated models + added citations (#16656)
- Add DeepSeek R1 70B model to Groq extension (#16649)
- Update f1-standings extension (#16663)
- Update Kubernetes Extensions (#16639)
- Update keepassxc extension (#16642)
- Update how-long-to-beat extension (#16657)
- Update CODEOWNERs
- Add beszel-extension extension (#16437)
- Update README.md
- Update CODEOWNERs
- Update raycast-ollama extension (#16616)
- Update `MacUpdater` extension - cache it all + add README & CHANGELOG + update metadata images (#16563)
- [HetrixTools] show category in uptime monitor + new "Contact Lists" command (#16629)
- feat(kubernetes): support available namespaces (#16591)
- Update roblox extension (#16576)
- Update cider extension (#16523)
- Update CODEOWNERs
- Update huggingcast extension (#16596)
- Update discord-timestamps (#16598)
- Update CODEOWNERs
- Update fancy-text extension (#16404)
- Add `PocketBase` extension - Search Collections (View Collection Schema + View Collection Records) [INITIAL] (#16590)
- Update `Brand.dev` extension - open more than the first logo + proper case address titles (#16603)
- Update mercado-libre extension (#16561)
- [Obsidian] Various bug fixes (#16608)
- Update cursor-directory extension (#16602)
- Update CODEOWNERs
- [Docker] Standardizes the removal shortcut with other extensions (#16574)
- Update CODEOWNERs
- Configuring date format and base time zone (#16454)
- Update rehooks extension (#16583)
- Update CODEOWNERs
- Update devutils extension (#16408)
- Add early-tools-news extension (#16407)
- Update CODEOWNERs
- Add nix-flake-templates extension (#16401)
- Update CODEOWNERs
- Update CODEOWNERs
- Add toggle replay buffer command (#16396)
- Use pagination for fetching Notion users list (#16394)
- Update CODEOWNERs
- Update keepassxc extension (#16578)
- added find-website extension (#16322)
- Update CODEOWNERs
- Update leetcode extension (#16356)
- Update CODEOWNERs
- Add synonyms extension (#15842)
- Update CODEOWNERs
- [YouTube Downloader] Improve URL validator (#16570)
- Simplify Youtube Downloader extension (#16560)
- Update omnifocus extension (#16558)
- Update CHANGELOG.md
- Remove the liba.ro URL shortener because we currently cannot continue supporting this extension (#16557)
- Update seo-lighthouse extension (#16553)
- Reworked punto extension (#16554)
- Docs: update for the new API release
- Update CODEOWNERs
- Update CODEOWNERs
- Update grammari-x extension (#16354)
- Update `Axios Docs` extension - add "Multipart Bodies" + add metadata image (#16347)
- Update glide extension (#16502)
- Fix the issue that configure command does not store the selection and always defaults to "raw" (#16506)
- Update discord-timestamps (#16528)
- Update CODEOWNERs
- [Perplexity-API] Updated LLM models (#16531)
- Fix Sip extension: Check Contrast (#16543)
- Update CODEOWNERs
- [Search npm] Adding a copy package version shortcut (#16547)
- feature: add Folder Action settings (#16550)
- Add the ability to create commands for handling user input (#16170)
- Update CODEOWNERs
- [Tootpick] add new action: `Copy device name` (#16518)
- Update package.json
- Update CODEOWNERs
- Add anytype extension (#16505)
- Ext/pipedrive (#16517)
- Update menu-bar-commands.md
- Update CODEOWNERs
- Add custom-wordle extension (#16306)
- Update ethereum-utils extension (#16297)
- refactor: new time api (#16495)
- Update keepassxc extension (#16498)
- Add project metadata for CoinMarketCap Crawler. (#16508)
- Update CODEOWNERs
- Update ghostty extension (#16296)
- Adding missing screenshots for Time-Converter (#16486)
- Update CODEOWNERs
- Add `Neon` extension - List Projects & Project Branches + - List, Revoke, Create API Keys (#16499)
- Update CODEOWNERs
- Add quicksnip extension (#16500)
- Ignore non-npm lockfiles (#16428)
- Update CODEOWNERs
- Add ring-intercom extension (#16098)
- Update CODEOWNERs
- Update tmux-sessioner extension (#16413)
- Update CODEOWNERs
- feat(#16393): update elevenlabs-tts extension to support speed controls (#16475)
- Add open-in-shopify-admin extension (#16275)
- Update CODEOWNERs
- Update spotify-controls extension (#16439)
- Add pritunl extension (#15965)
- Update CODEOWNERs
- Update battery-menubar extension (#16282)
- [GitHub] Fix Clone and Open action (#16476)
- Update medialister-marketplace-helper extension (#16483)
- Update CODEOWNERs
- Update CODEOWNERs
- Update messages extension (#16484)
- Add time-converter extension (#16183)
- Update spoqify extension (#16463)
- bugfix: fix command crash (#16426)
- Update Kubernetes extension (#16388)
- Update deepseeker extension (#16385)
- Update CODEOWNERs
- Update hue-palette extension (#16316)
- feature: respect HISTFILE (#16429)
- Update `Search Composer Packagist` extension - add Pagination + add metadata images (#16430)
- Update universal-inbox extension (#16424)
- [1Password] Fix types (#16427)
- update extension zoo - add gemini support (#16444)
- Update react-native-directory extension (#16446)
- Fix crawler behaviour issue caused by page structure change. (#16457)
- Update wise-accounts extension (#16440)
- Update Raynab extension (#16210)
- Update CODEOWNERs
- Add adguard-home extension (#16436)
- Update CODEOWNERs
- Update google-chrome extension (#16287)
- Apple Reminders: Upgrade deps
- fix OTP Auth (#16431)
- Update CODEOWNERs
- Jira: Add mikybars as pastContributors
- update
- Update wp-bones extension (#16343)
- Update search-shopify-liquid-documentation extension (#16405)
- Update CODEOWNERs
- Bugfix/issue 16398: Fixing Rabbit Hole Journal error + Adding new Entry types (#16417)
- Add nzbget extension (#16024)
- Update CODEOWNERs
- Update raycast-gemini extension (#16254)
- Docs: update for the new API release
- Update CODEOWNERs
- Add mirror-displays extension (#16205)
- Added support for internal
- update
- [Amphetamine] Fixes Session duration reset when interval changes (#16276)
- Update CODEOWNERs
- Update CODEOWNERs
- Update safari extension (#16351)
- [Time Tracking] Export as CSV (#16395)
- Supahabits/add repeatable habit (#16269)
- Updated cursor css names (#16384)
- Update CODEOWNERs
- Update CODEOWNERs
- Update fancy-text extension (#16233)
- Add CRUD options for gopass (#16073)
- Update CODEOWNERs
- Update ai-text-to-calendar extension (#16186)
- Updated `fastmail-masked-email` extension (#16078)
- Update CODEOWNERs
- Update CODEOWNERs
- Add `Ghostty` support to terminal finder (#16074)
- Add Kubernetes extension (#16179)
- Update CODEOWNERs
- Add openstatus extension (#16168)
- Update CODEOWNERs
- Add translate-send-webpage-to-reader extension (#16108)
- Update CODEOWNERs
- Update CODEOWNERs
- Update mail extension (#16214)
- Add zoo extension (#16153)
- Update CODEOWNERs
- Add Inbox AI extension (#16084)
- Update CODEOWNERs
- Update zeabur extension (#16375)
- Update CODEOWNERs
- Add LGTMeow Extension (#16312)
- Update CODEOWNERs
- Update `Cloudinary` extension - Cache Enhancements + Pagination in `Search` (#15986)
- Update CODEOWNERs
- Add Cursor Extension (#16345)
- feat("android" extension): Add shake action (#16303)
- Update deepseeker extension (#16320)
- Update CODEOWNERs
- [Slack] Add `Copy Huddle Link` Action (#16348)
- Update extensions (#16362)
- Update vercast extension (#16361)
- Update CODEOWNERs
- Add timecrowd-tracker extension (#16178)
- Update CODEOWNERs
- Update timers extension (#16352)
- Update cider extension (#15910) (#16355)
- Update CODEOWNERs
- Update workouts extension (#16338)
- [Easydict v2.10.1] 🐞 fix: update Youdao translate API, limit bing retry count (#16315)
- [Search npm] Hide toast when `historyCount` is zero (#16327)
- Update pick-your-wallpaper extension (#16325)
- Update CODEOWNERs
- Update pdb-explorer extension (#16289)
- Update keepassxc extension (#16143)
- Update CODEOWNERs
- Add elevenlabs-tts extension (#16140)
- Update safari extension (#16260)
- [Rectangle] Add Cascade actions (#16281)
- Update CODEOWNERs
- Nextcloud Search Extension API fix (#16079)
- Update CODEOWNERs
- Add upnote extension (#16141)
- Update CODEOWNERs
- Update json-format extension (#16259)
- Update CODEOWNERs
- Update vortex extension (#16022)
- feat: Add Search Blockchain extension (#160…
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