Skip to content

Add bettercapture extension - #28828

Merged
raycastbot merged 10 commits into
raycast:mainfrom
qlaffont:ext/bettercapture
Jul 21, 2026
Merged

Add bettercapture extension#28828
raycastbot merged 10 commits into
raycast:mainfrom
qlaffont:ext/bettercapture

Conversation

@qlaffont

@qlaffont qlaffont commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

Description

Adds a new extension to control BetterCapture — a free, open-source macOS screen recorder — from Raycast.

BetterCapture has no CLI or AppleScript API today. This extension integrates via two strategies:

  1. URL scheme (preferred) — When BetterCapture supports bettercapture:// URLs, commands use deep links with no extra permissions.
  2. Keyboard shortcut relay (fallback) — On current releases, Toggle Record relays the user's configured BetterCapture global shortcut via AppleScript.

Commands

Command Action
Toggle Record Stop an active recording, or open content selection (Pick Content / Select Area) to start a new one
Open Recordings Open the BetterCapture output folder in Finder (~/Movies/BetterCapture by default)

Both commands are no-view and show a HUD on success or a failure toast with actionable setup instructions.

Integration details

  • Toggle Record
    • If bettercapture://toggle is available → opens URL (BetterCapture handles stop vs. content selection)
    • Otherwise → launches BetterCapture if needed, reads KeyboardShortcuts_toggleRecording from UserDefaults, relays keystroke via System Events
    • Requires BetterCapture Toggle Recording shortcut configured + Raycast Accessibility permission on current releases
  • Open Recordings
    • If bettercapture://open-recordings is available → opens URL (respects custom output folder inside BetterCapture)
    • Otherwise → opens ~/Movies/BetterCapture in Finder

Upstream URL scheme proposal: jsattler/BetterCapture#170 · Discussion: jsattler/BetterCapture#169

Source repo: qlaffont/bettercapture-raycast

Screencast

Recommended demo flow:

  1. Run Toggle Record while BetterCapture is idle → content picker opens
  2. Select content, run Toggle Record again → recording stops
  3. Run Open Recordings → Finder opens the output folder

Use Raycast Window Capture (Preferences → Advanced) with "Save to Metadata" to add store screenshots.

Setup (for reviewers)

  1. Install BetterCapture: brew install bettercapture
  2. Open BetterCapture → Settings → Shortcuts → set Toggle Recording (required for fallback path)
  3. Grant Raycast Accessibility in System Settings → Privacy & Security (required for fallback path)
  4. Run npm run build in extensions/bettercapture and test the distribution build in Raycast

Checklist

@raycastbot raycastbot added new extension Label for PRs with new extensions platform: macOS labels Jun 17, 2026
@raycastbot

Copy link
Copy Markdown
Collaborator

Congratulations on your new Raycast extension! 🚀

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

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

@qlaffont
qlaffont marked this pull request as ready for review June 17, 2026 08:06
@socket-security

socket-security Bot commented Jun 17, 2026

Copy link
Copy Markdown

Dependency limit exceeded — report not shown.

This pull request scan exceeded the 10,000-dependency limit applied to this scan, so the results are incomplete and may be inaccurate. To avoid reporting false positives, Socket has not posted a report.

Upgrade your plan to raise the dependency limit and get complete reports, or view the partial scan in the dashboard.

Socket is always free for open source. If this is a non-commercial open source project, contact us to request a free Team account.

@greptile-apps

greptile-apps Bot commented Jun 17, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

This PR adds a new bettercapture extension that lets Raycast users control BetterCapture (a macOS screen recorder) via two commands: Toggle Record and Open Recordings. Integration uses a URL-scheme path when BetterCapture supports it, and a keyboard-shortcut-relay fallback via AppleScript when it does not.

  • Toggle Record detects whether bettercapture://toggle is available; if not, it reads the user's configured global shortcut from UserDefaults and relays it through System Events, requiring Accessibility access.
  • Open Recordings similarly prefers the URL scheme, falling back to opening ~/Movies/BetterCapture in Finder using Raycast's open() API.
  • Previous review feedback (category, execSync for Finder open, plain Error wrapping in the shortcut relay) has been addressed in the current diff.

Confidence Score: 5/5

New extension with no existing code to regress; the only outstanding change is a one-line fix to the changelog date placeholder.

The extension is straightforward and all shell command inputs are hardcoded constants with no user-controlled data. The only outstanding item is the hardcoded date in CHANGELOG.md, which has no runtime impact.

CHANGELOG.md — needs the date replaced with {PR_MERGE_DATE}.

Important Files Changed

Filename Overview
extensions/bettercapture/src/lib/bettercapture.ts Core integration logic: URL-scheme detection, UserDefaults shortcut reading, AppleScript relay, and Finder open. Previous review findings (execSync for open, plain Error wrapping) have been addressed.
extensions/bettercapture/src/lib/carbon-keys.ts Carbon key-code to AppleScript translation; correctly prioritises keystroke for printable characters and falls back to key code for special keys.
extensions/bettercapture/src/toggle-record.ts Clean no-view command wrapper; surfaces BetterCaptureError messages to users and shows a generic toast for unexpected errors.
extensions/bettercapture/src/open-recordings.ts Straightforward no-view command; delegates to openRecordings() and shows HUD or failure toast.
extensions/bettercapture/package.json Well-formed; includes $schema, macOS-only platform, category correctly set to Applications, and all dependencies actually imported.
extensions/bettercapture/CHANGELOG.md Heading and bullet content are correct, but the date is a hardcoded literal instead of the required {PR_MERGE_DATE} placeholder.

Reviews (7): Last reviewed commit: "Update CHANGELOG.md and optimise images" | Re-trigger Greptile

Comment thread extensions/bettercapture/package.json
Comment thread extensions/bettercapture/CHANGELOG.md Outdated
Comment thread extensions/bettercapture/src/lib/bettercapture.ts
qlaffont and others added 4 commits June 17, 2026 10:12
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
Comment thread extensions/bettercapture/src/lib/bettercapture.ts Outdated
@raycastbot

Copy link
Copy Markdown
Collaborator

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

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

@raycastbot raycastbot added the status: stalled Stalled due inactivity label Jul 14, 2026
@qlaffont

Copy link
Copy Markdown
Contributor Author

Still waiting review ...

@qlaffont

Copy link
Copy Markdown
Contributor Author

@raycastbot the issue is not stalled

@raycastbot raycastbot removed the status: stalled Stalled due inactivity label Jul 17, 2026
@0xdhrv 0xdhrv self-assigned this Jul 21, 2026
- Upgrade Raycast, TypeScript, ESLint, and type dependencies
- Target ESNext libraries and syntax with Node.js type definitions
- Refresh ignored Raycast build artifacts and remove obsolete metadata

@0xdhrv 0xdhrv left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Looks good to me, approved ✅

@raycastbot
raycastbot merged commit 77f73ec into raycast:main Jul 21, 2026
3 checks passed
@github-actions

Copy link
Copy Markdown
Contributor

Published to the Raycast Store:
https://raycast.com/qlaffont/bettercapture

@raycastbot

Copy link
Copy Markdown
Collaborator

🎉 🎉 🎉

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

@qlaffont
qlaffont deleted the ext/bettercapture branch August 7, 2026 06:29
raycastbot added a commit that referenced this pull request Aug 16, 2026
* Update search-router extension

- Merge branch \'contributions/merge-1786854257501\' into feature/search-router-shortcut-prompt
- Pull contributions
- Fix search router shortcut query prompt
- Update CODEOWNERs (033da259)
- Update `Mac App Store Search` extension - Action to copy id to clipboard (#30234)
- Update `Mailwip` extension (#30237)
- Update gram extension (#30226)
- Update gg-deals extension (#30233)
- Update CODEOWNERs (3b2c9356)
- Add Phaseo extension (#29466)
- Update CODEOWNERs (136bd4bc)
- [Obsidian] Prevent searchNote OOM on oversized Markdown (#30191)
- Update twos extension (#30192)
- Update CODEOWNERs (b4b74217)
- [Agent Usage] Support multiple CODEX_HOME to view additional accounts (#30224)
- [Zed] Fix project launch order (#30174)
- Update CODEOWNERs (9dfafde3)
- Update raycast-language-tool extension (#30166)
- fix(youtube-music): handle AppleScript errors with actionable feedback (#30064)
- Update CODEOWNERs (84833671)
- Add Gold Price extension (#29634)
- Update google-calendar extension (#30213)
- Soundboard: fix "ReferenceError: crypto is not defined" when saving a sound (#30212)
- [1Password] Stop re-authenticating while the desktop app session is usable (#29892)
- Readwise Reader: Add sorting and random shuffle to List Documents (#29720)
- Update YouTrack extension: add live search and autocomplete (#30016)
- Update CODEOWNERs (85baa79f)
- Update github extension (#29919)
- Bunq: Update jsdom dep (#30214)
- Update CODEOWNERs (00440c42)
- feat(coffee): Add auto-caffeinate when Raycast launches (#30113)
- Update CODEOWNERs (5a1be83a)
- Add Oneko extension (#29807)
- Update CODEOWNERs (1cdc5571)
- Add Google Find Hub extension (#29747)
- Update bento-window extension (#30205)
- Update CODEOWNERs (c767d3af)
- Add bart-departures extension (#29750)
- [Agent Usage] Add DeepSeek Provider (#30208)
- Update CODEOWNERs (891551c8)
- Enhance Pins with group launch and import workflows (#30047)
- 2FAS Authenticator: fix import crash on missing algorithm field (#30206)
- Update CODEOWNERs (d1ac4ee0)
- Update soundboard extension (#29885)
- Update git extension (#30197)
- Fix 1Password desktop-app integration failures on Windows (#30195)
- [Karakeep] Add optional title when creating bookmarks (#30194)
- Update CODEOWNERs (f1788370)
- Add wlthy extension (#29722)
- Update CODEOWNERs (e35f16e2)
- Add fxCodex extension (#29538)
- Update CODEOWNERs (5543fe4a)
- Add opencodex-usage extension (#29839)
- Update CODEOWNERs (779e30d8)
- Add U2L Link Shortener extension (#29718)
- Update CODEOWNERs (78c35618)
- Update port-manager extension (#30179)
- Update CODEOWNERs (cac58163)
- Update wikipedia extension (#30187)
- Update CODEOWNERs (ef8a3162)
- Update github extension (#30059)
- [Agent Usage] Fix Antigravity detection on 2.7+ (suffix-less language_server binary) (#30188)
- Added Windows Support for ext Keeper-Security (#30186)
- Update CODEOWNERs (453483ca)
- Add cook extension (#29305)
- Update CODEOWNERs (aecdced7)
- Add extension: Bento Window — per-app window tiling (#27877)
- [Herdr] Expand tilde in binary path (#30184)
- Update CODEOWNERs (b4e8f728)
- [Super Productivity] require access token (#30163)
- Update ssh-image-drop extension (#30177)
- Update CODEOWNERs (41aa46f1)
- Add text-scramble extension (#29547)
- Update CODEOWNERs (464bf5cc)
- Add recent downloads section (#30171)
- Update CODEOWNERs (2c0016aa)
- Add quickforce extension (#29292)
- Fix Doorstopper menu bar status toast (#30170)
- Update CODEOWNERs (1a87cd23)
- Add bit-parser extension (#29643)
- Update karakeep extension (#30151)
- [RAI-26994] Route Create/Search Tasks through 2.0 API for 2.0 users (#30145)
- Update CODEOWNERs (8d213e69)
- [Forked Extensions] Add repository cleanup action (#30138)
- Update easydict extension (#30167)
- Update CODEOWNERs (f838ccb0)
- Add ssh-image-drop extension (#29490)
- Update CODEOWNERs (ddaa080a)
- Update voiceink extension (#30062)
- Update CODEOWNERs (ebb31e51)
- Add Mise Workspace extension (#29834)
- [Slack] Fix Search Emojis memory crash in large workspaces (#29907)
- Add Touch ID authentication to Flush DNS (#30012)
- Update CODEOWNERs (2f43452a)
- Add Central Icons extension (#29859)
- [Safari] Handle large Safari bookmark files (#29740)
- [mymind] Detect the active tab and selection when saving (#30118)
- fix(deps): address axios, brace-expansion, and ws vulnerabilities in extensions (#30155)
- Delete .github/workflows/claude.yml (#30156)
- Update CODEOWNERs (bbb8782b)
- Update convex extension (#29870)
- [GitLab] Derive authentication from configured credentials (#29793)
- Update `DirectAdmin Reseller` extension - add manage panels commands (experimental) (#30154)
- Update CODEOWNERs (a573ae5a)
- Update mutedeck extension: Meeting Deck overhaul (#29770)
- Update CODEOWNERs (317984a6)
- Add Windows support to Browser Tabs (#29719)
- Update CODEOWNERs (c3afb94e)
- [Safari] Restore local tabs in Search Tabs (#29736)
- Update CODEOWNERs (29668e02)
- fix(google-chrome-profiles): don\'t open a window for the previously used profile on cold start (#30041)
- Update CODEOWNERs (3e073fbd)
- Update qrcp extension (#30111)
- [Slack] Add expiration argument to Set Status (#30069)
- Fix nested GitLab repository URLs in Quick Open Project (#30149)
- fix(agent-usage): Fix ClinePass usage limits windows (#30142)
- Update planning-center-api-docs extension (#30144)
- Update CODEOWNERs (340331c1)
- [Browsers Profile] copy deeplink + upd8 images (#30143)
- Update CODEOWNERs (c64209c7)
- Flow Timer: start with a title, default title preference, and Start Previous Session (#30122)
- Update easydict extension (#29809)
- Update CODEOWNERs (22efd400)
- Update lucide-icons extension (#30124)
- Add Elsewhere AI tools (#30129)
- Update CODEOWNERs (e0a3a8e9)
- Update raycast-icons extension (#30123)
- Update Digger extension (#30127)
- Update `BugMeNot` extension - add CHANGELOG + Modernize (#30121)
- [Antinote] major update with Antinote v2.* (beta) support (#30116)
- Update CODEOWNERs (625a30bb)
- Add microsoft-tenant-id extension (#29647)
- Update CODEOWNERs (6b1e9709)
- Add install-fonts extension (#28968)
- Update CODEOWNERs (57de58f1)
- Rename joey-vocab extension to inoh (#29873)
- feat(zoom): add personal meeting ID preference to start meeting (#30081)
- Update CODEOWNERs (d65efcc7)
- feat(claude-code-launcher): add session subcommand  (#29537)
- Update CODEOWNERs (3c12fb89)
- Add ten-four extension (#28780)
- Update CODEOWNERs (16dbdaf5)
- Home Assistant: add mattiacolombomc to contributors (#30110)
- Update sportssync extension (#30045)
- Update CODEOWNERs (c94699a8)
- Fix note prefill in the save form and refresh AI tags (#30097)
- [Helium] Add Windows support (#30101)
- feat(renaming): add undo history for rename operations (#30077)
- Add CI status to GitHub pull request details (#30072)
- Update CODEOWNERs (6662c1e0)
- Add bang-dream-screenshot-search extension (#29620)
- Update CODEOWNERs (e02f1b25)
- Add Chinese Traditional Colors extension (#28674)
- [GitHub] Generate GraphQL types from a checked-in schema (#30056)
- Home Assistant: fix invalid URL when mDNS resolves .local to IPv6 (#30087)
- fix: recover interrupted speech sessions (#30073)
- Update CODEOWNERs (f3105c4b)
- feat(agent-usage): add support for ClinePass & more improvements (#30057)
- Update CODEOWNERs (03a3d4d4)
- Update google translate extension (#30107)
- Update file-tidy extension (#30085)
- Update `HideMail` extension - docs: fix CHANGELOG + cleanup: unused lines (#30096)
- [Badges] Show `labelColor` when `label` is empty (#30083)
- Simplify Uninstall Flow and Fix Reliability Issues (#30079)
- Update file-tidy extension (#30078)
- ci: bump GitHub Actions to latest major versions
- Kesha Voice Kit: make the silence auto-stop actually fire (#29936)
- Update CODEOWNERs (2c6670fa)
- Copy Path: Update icon (#30040)
- Update karakeep extension (#30068)
- Update gh-pr-tracker extension (#30061)
- Update CODEOWNERs (e875fd18)
- Update ticktick-plus extension (#30028)
- feat(bettercapture): add option for toggle recording with copy file (#30052)
- Update try extension (#30053)
- Update CODEOWNERs (e3c38093)
- Update snippetsurfer extension (#30054)
- Docs: Update the utils docs
- [Porkbun] domain status as Dot and domain in tooltip (#30051)
- Update CODEOWNERs (cbb26490)
- Update series-rating-graphs extension (#30029)
- Update CODEOWNERs (3396517b)
- Update two-factor-authentication-code-generator extension (#30030)
- Update typefully extension (#30019)
- [GitHub] Add View Diff action for pull requests (#29886)
- [Ray Code] Support home-relative workspace paths (#30048)
- Update CODEOWNERs (d1e3f6e4)
- Add chmod-lookup extension (#29599)
- Update google-meet extension (#30031)
- Update publico extension (#30032)
- Update finder-file-actions extension (#29977)
- Update CODEOWNERs (9f91f5af)
- Update unsplash extension (#30025)
- Add Structured MCP Server to the Registry (#30033)
- Update CODEOWNERs (058a33dc)
- Update simpletexocr extension (#29241)
- Update CODEOWNERs (d794d2db)
- Add Elsewhere extension (#29827)
- fix(google-meet): launch the resolved application instead of matching by name (#30018)
- [OSS Insight] Update trending repositories API (#29963)
- [github]: Added GitHub CLI clone option (#30003)
- Update CODEOWNERs (a6c364eb)
- feat(google-calendar): show event location in List Events (#29950)
- [Search npm] Add npmx.dev search results provider (#29964)
- fix(prism-launcher): icons broken on Windows (#29969)
- [Asana] Preserve apostrophes in task descriptions (#29962)
- fix(issue-bot): look up the extension with Object.entries (#29982)
- Update CODEOWNERs (34754e96)
- Add xkeen-manager extension (#29449)
- Add Tendem MCP server to the registry (#30002)
- Update CODEOWNERs (c04711d2)
- Add status-nerd extension (#29574)
- Update CODEOWNERs (a13abb66)
- Escape user input in PyPI search query and URL (#29999)
- Update CODEOWNERs (92efe090)
- Add audiocast-control extension (#29527)
- Update CODEOWNERs (92a1665b)
- Add Dondori extension (#29543)
- Update CODEOWNERs (a60ed825)
- fix(bouncer-email-verifier): report what Bouncer returns, and fix four silent faults (#29998)
- Update Qovery extension logo (#29996)
- Add buffer extension (#29944)
- [ElevenLabs TTS] add speak copied text command (#29940)
- Update CODEOWNERs (81f37684)
- Redmine: Open Issues and Created by Me commands, issue editing, project filter, AI Extension (#29941)
- feat(bouncer-email-verifier): add domain checks and Raycast AI tools (#29983)
- fix(google-meet): accept Brave under its real app name (#29981)
- feat(zshrc-manager): unify sixteen views into one search-first home surface (#29980)
- [OSS Insight] Fix truncated contributor usernames (#29961)
- feat(system-monitor): add Disk tab with capacity, SMART health and live throughput (#29973)
- Update CODEOWNERs (168f97f9)
- Add awx-deploy extension (#29519)
- [Tempo] Prefill remaining estimate (#29967)
- Update CODEOWNERs (3acaba11)
- Add Schwab Portfolio extension (#29486)
- Update qovery extension (#29942)
- Update CODEOWNERs (ac1c6096)
- Add focus-automation extension (#29177)
- Update CODEOWNERs (ff01a2c6)
- Add flashcards extension (#28182)
- Update finnish-business-lookup extension (#29721)
- feat(system-monitor): add Apple Silicon fan monitoring via SMC reader (#29958)
- Update CODEOWNERs (2a6ea162)
- Add cold-turkey-blocker extension (#28929)
- Refactor udemy-coupons into modules and add server-side search (#29937)
- refactor(zshrc-manager): unify parsing on one registry and bring the write path under test (#29953)
- Handy: Improve Linux/Vicinae compatibility (#29224)
- fix(downdetector): handle 403 from search URL by falling through to status page (#29955)
- feat(brew): show pinned section, outdated tags and detail pane in Show Installed (#29943)
- Update CODEOWNERs (9cfb89d7)
- Add mule-secure-properties extension (#29461)
- Update CODEOWNERs (5b3d29f6)
- Update tmux-sessioner extension (#29816)
- Update file-tidy extension (#29952)
- Plexus: add browser preference for opening localhost links (#29939)
- Update CODEOWNERs (260f0774)
- Add super-productivity extension (#28825)
- feat(zshrc-manager): surface resolved facts — shadowed commands, missing sources, missing plugins (#29945)
- Update CODEOWNERs (aaba4573)
- fix(system-monitor): repair Network tab and gate polling by active tab (#29868)
- fix(espanso): resolve the binary by probing absolute paths (#29930)
- Update CODEOWNERs (11c8e673)
- Add spacetime extension (#29322)
- Fix VoiceInk render tree JSON failures (#29928)
- Update CODEOWNERs (7fda795a)
- Update visual-studio-code extension (#29926)
- Update CODEOWNERs (69144efe)
- Update one-time-password extension (#29896)
- Add JobYap to MCP registry (official) (#29904)
- Update CODEOWNERs (cd8abce2)
- Multi Links: 2.0.0 — expanded extraction, preferences, safety dialog, history & filter views (#28270)
- fix(brew): stop Show Installed rendering empty from a warm cache (#29891)
- Update vercast extension (#29465)
- Update CODEOWNERs (9920ee01)
- Update slugify extension (#29908)
- Update CODEOWNERs (2265a38d)
- chore(copymoveto): Transfer ownership from Mehdi_Hp to kumamaki (#29391)
- Claude Artifacts: open the artifact galleries on claude.ai (#29927)
- Update CODEOWNERs (a3ef8e80)
- Add media-flow extension (#29378)
- Update CODEOWNERs (966008f9)
- Update idonthavespotify extension (#29467)
- Update CODEOWNERs (4f644d7e)
- Update google-meet extension (#29481)
- Update CODEOWNERs (7c09360d)
- Update bitly-url-shortener extension (#29484)
- Update github extension (#29852)
- Update CODEOWNERs (e12039a4)
- [Hypersonic] Add a create-with-details form with an optional page-body note (#28695)
- Update CODEOWNERs (f2c5370d)
- New WallpaperEngine Extension (#28753)
- Update dev-servers extension (#29924)
- Update desktoprenamer extension (#29011)
- Update CODEOWNERs (d5a2fb23)
- Update deepwiki extension (#29920)
- Update workflowy extension - Add Windows support (#29889)
- feat(zshrc-manager): act on search results, split copy actions and mask secret values (#29895)
- fix(mutedeck): accept `call: "inactive"` so commands work outside a meeting (#29899)
- Kesha Voice Kit: detect setup state from structured CLI output (#29898)
- Update sleevy extension (#29903)
- [Home Assistant] Add multi zone support for person entities (#29909)
- [Badges] Fix badge preview positioning issue (#29911)
- fix(renaming): prevent silent data loss from case-only renames, hard links, and dangling symlinks (#29893)
- Update search-npm extension (#29906)
- Update CODEOWNERs (3d0cc667)
- Add podcast-downloader extension (#29370)
- Update CODEOWNERs (bcc2fc74)
- Add ScreenLex Extension (#29434)
- Update CODEOWNERs (61773b3c)
- Add file-tidy extension (#29437)
- Update CODEOWNERs (2d41064f)
- Add wHost extension (#29409)
- Update CODEOWNERs (9a1a066a)
- Update chess-com extension (#29883)
- Update linkinize extension (#26669)
- Update get-app-icon extension (#29845)
- Docs: update for the new API release
- Update CODEOWNERs (7c24c6cd)
- Add ticktick-plus extension (#29576)
- Update karakeep extension (#29874)
- Update raycast-store-updates extension (#29819)
- Update CODEOWNERs (7c4010ac)
- Update qbitorrent extension (#29848)
- Update zshrc-manager extension (#29867)
- Add Store link to Tutti README (#29877)
- Update CODEOWNERs (9d0118a1)
- Add Clerk extension (#28802)
- Update CODEOWNERs (dce6dc9a)
- Add meeting-room-check extension (#29352)
- Update CODEOWNERs (311bb98c)
- Add cl1p extension (#29345)
- Update git extension (#29857)
- Update CODEOWNERs (9e8f6c30)
- Add average-saham-indonesia extension (#29286)
- Update CODEOWNERs (34440eb3)
- Add tutti extension (#29278)
- [Tapo Smart Devices] Fix crash on unrecognised device types, fix error handling, update dependencies (#29831)
- Add Send Pushover Image command (#29849)
- [Linear] Add My Issues sub views (#29844)
- Update CODEOWNERs (e55b8edf)
- Update nixpkgs search extension (#29847)
- skills: fix runtime detection and root-level SKILL.md lookup (#29825)
- Update Otty extension icon (#29830)
- Update git extension (#29840)
- Update CODEOWNERs (5dc9c418)
- Teleport: window behavior preference and per-connection environment (#29810)
- Update wojak-picker extension (#29103)
- Update CODEOWNERs (62f7b496)
- Update gh-pr-tracker extension (#29801)
- Update CODEOWNERs (067b722f)
- Add atomtick extension (#29195)
- Update CODEOWNERs (1d81ff10)
- Add mobbin extension (#29140)
- Update CODEOWNERs (50c6814e)
- Add putty-sessions extension (#29188)
- Update CODEOWNERs (4f5f7bbb)
- New Extension: Royal TSX (#29817)
- Update CODEOWNERs (f0ccbbcf)
- Add heidisql-sessions extension (#29187)
- Update CODEOWNERs (3218afc1)
- Add raycast-zabbix extension (#28799)
- Add Webhound to MCP Registry (#29710)
- Update CODEOWNERs (8081f648)
- [NeteaseMusic] Add dislike and next track command (#29824)
- ccusage: rename extension to "Claude Usage" (#29814)
- ccusage: add menu bar section visibility toggles (#29813)
- Update CODEOWNERs (0d9b5ee1)
- Aerospace: eliminate startup delay, async rewrite, TOML 1.1 support (#29582)
- Twenty: fix metadata API parsing for current Twenty versions (#29808)
- Update CODEOWNERs (71291494)
- Add downdetector extension (#29099)
- Update CODEOWNERs (c92fda0c)
- Add FMHY Search extension (#29128)
- Update CODEOWNERs (9088e3ee)
- Add mozaika extension (#29123)
- Update CODEOWNERs (bad036d1)
- Add uploadkit extension (#29111)
- Update CODEOWNERs (db2592ca)
- Add Anvil extension (#29101)
- Update CODEOWNERs (0471aeed)
- Add Nepali Typing extension (#29086)
- Update CODEOWNERs (f6ae2e2e)
- Add design-file-finder extension (#29027)
- Update CODEOWNERs (1367309a)
- Add Tesla Clips: Manage dashcam and Sentry clip merging (#28505)
- Update CODEOWNERs (7be03029)
- Add TaskNotes extension (#27431)
- Update CODEOWNERs (0da9ac28)
- Add JWT Debugger command to JWT Decoder (#29705)
- Update CODEOWNERs (79090a77)
- Update typefully extension (#29800)
- Update CODEOWNERs (8c73ceeb)
- Add links-folder extension (#27879)
- [Shottr] Add new "closeMainWindow" preference (#29794)
- Update model-context-protocol-registry: UseMyContext description (#29802)
- Update devdocs extension (#29777)
- Update CODEOWNERs (0796e31f)
- ccusage: add pie chart icon, pies progress style, time remaining display (#29782)
- Model Context Protocol Registry: add UseMyContext MCP server (#29570)
- Update CODEOWNERs (29ac3204)
- Update time-machine extension (#29567)
- Update quarantine-manager extension (#29785)
- [Typefully] Expand AI tool coverage (#29774)
- p00f: fix "crypto is not defined" crash on every command (#29781)
- Update CODEOWNERs (f4c965e1)
- Central Icon System: Remove Extension (#29776)
- Update CODEOWNERs (f5ff05e1)
- Add p00f-raycast extension (#28989)
- [WinGet] Fix stale-data failures and consolidate failure recovery (#29766)
- Update CODEOWNERs (00bafb37)
- Add Reflect Open extension (#29463)
- Bump Node to 22.22.2 in GitHub workflows
- Add Trends MCP to Model Context Protocol Registry (#29746)
- Update ticktick package-lock.json
- Update CODEOWNERs (b4dffdbe)
- Add Central Icon System extension (#29734)
- Update CODEOWNERs (d6a9b94e)
- Add glean-search extension (#28995)
- Update CODEOWNERs (ec6c63b1)
- Add apple-container extension (#29022)
- Update letterboxd extension (#29757)
- Update CODEOWNERs (0b5d5865)
- Add claude-artifacts extension (#29733)
- Update get-app-icon extension (#29739)
- Kesha Voice Kit: setup guidance and faster failure feedback (#29758)
- Update math-functions extension (#29760)
- chore: trigger build (#29761)
- Update CODEOWNERs (13688739)
- Add otty extension (#29014)
- Update CODEOWNERs (8c0e547e)
- Add quran-quick-insert extension (#28926)
- Update CODEOWNERs (ab199462)
- Add glimpse extension (#29010)
- Update list-by-fullforms extension (#29742)
- Update dev-servers extension (#29745)
- Update dev-servers extension (#29726)
- Update CODEOWNERs (f2211188)
- Add rpass extension (#28998)
- [is-it-alive] Fix Statuspage uptime drift against official charts (#29729)
- Update Wrap Unwrap extension (#29727)
- Update codex extension (#29652)
- [Reddit Search] Fix subreddit browse, deeplink arg, and concurrent rate-limit race (#29708)
- Update CODEOWNERs (6bb1ce7c)
- Add sir-golf extension (#28997)
- Update CODEOWNERs (91f4d3ef)
- Add BCUninstaller extension (#28827)
- Update CODEOWNERs (c7cedb63)
- Add cove-cast extension (#28907)
- Update CODEOWNERs (02d65314)
- Add threadlens extension (#28904)
- Update CODEOWNERs (edaea086)
- Add Kesha Voice Kit dictation extension (#29681)
- Update RAE Dictionary: show grammatical gender and enrich word entries (#29694)
- Update safari extension (#29706)
- Update CODEOWNERs (5f7436b4)
- [Reddit Search] Fix broken search (Reddit blocked the JSON API) + rebuild on RSS (#29703)
- Update media-converter extension (#29684)
- Update CODEOWNERs (8e002e2a)
- Update helium extension - Search Bookmarks works without the browser running (#29663)
- Update CODEOWNERs (99cd08ae)
- Add jovida-daily extension (#28987)
- feat(custom-providers): sync OpenAI-compatible models (#29605)
- Update finnish-business-lookup extension (#29679)
- Update file-provider-progress extension (#29674)
- Update CODEOWNERs (d493e47d)
- Add BumpNameMatch Name Meanings Extension (#28978)
- Update CODEOWNERs (e101ac70)
- Add finnish-business-lookup extension (#28982)
- Update CODEOWNERs (723ad094)
- Add OpenSearch DevTools extension (#29666)
- Update CODEOWNERs (45742065)
- Add Herdr extension (#29669)
- Doorstopper: add Touch ID support (#29601)
- Update CODEOWNERs (35a49812)
- Update stock tracker extension (#29668)
- Add Glif to Model Context Protocol Registry (#29654)
- Update CODEOWNERs (2e959489)
- Add tinker extension (#28951)
- Update r2-uploader extension (#29664)
- Update CODEOWNERs (651f3518)
- Add gatherit extension (#28932)
- Update CODEOWNERs (3db9b644)
- Add descript extension (#29381)
- Update CODEOWNERs (6ddfbaed)
- Fix ScreenOCR on macOS 26 (Tahoe) and macOS 27 (Golden Gate) (#29058)
- Update cursors extension (#29662)
- Update file-provider-progress extension (#29658)
- Update CODEOWNERs (4b61890e)
- Add contra extension (#28912)
- Doorstopper: update Raycast dependencies (#29598)
- [Windows Terminal] Always open administrator in a normal window (#29653)
- Update CODEOWNERs (368ac844)
- Add lumen extension (#28909)
- [Windows Terminal] Add non-quake admin action when quake preference is on (#29646)
- [Agent Usage] Support Claude model-scoped limits (i.e. Fable) (#29600)
- Update CODEOWNERs (b586c6e7)
- Add Qobuz extension (#28942)
- Add missing ScreenOCR recognition languages (#29645)
- Update CODEOWNERs (7b5d3c0d)
- Add pixtuoid extension (#28906)
- Update CODEOWNERs (b7e24aa6)
- Update pokedex extension (#29590)
- fix(confluence-search): add Create Whiteboard to README (#29639)
- Update actions/checkout from v4 to v7 in all workflows
- Update CODEOWNERs (c266f65d)
- Add next-game extension (#28873)
- Update CODEOWNERs (e452a7ca)
- Add Snapzy extension (#28862)
- chore: bump Xcode 26.4.x and runner to macos-26 (#29635)
- Update CODEOWNERs (6c50c3a0)
- Add tabstack extension (#28846)
- [Slack] Broadcast thread replies to channels (#29636)
- feat(confluence-search): add Create Whiteboard command (#29619)
- [Slack] Add reaction AI tool (#29630)
- [Slack] Add group DM AI tool (#29629)
- [Coffee] Expand AI caffeination tools (#29575)
- Update CODEOWNERs (7cd0f5c9)
- Add hyperliquid extension (#28834)
- Update CODEOWNERs (b1db6631)
- Update Fastly extension to fix Secret Store operations (#29632)
- feat(google-calendar): expand AI API support (#29588)
- Update todo-list extension (#29633)
- [Things] Fix marking to-dos completed or canceled (#29638)
- Update CODEOWNERs (fe7024e3)
- Add english-irregular-verbs extension (#28833)
- Fix gh-pr-tracker Extension (#29623)
- Update gram extension (#29626)
- Restore site ID generation fix (#29631)
- Update CODEOWNERs (77f73ecb)
- Add bettercapture extension (#28828)
- [Slack] Add Huddle link AI tool (#29618)
- Make `cs` available to zed-recent-projects (#29611)
- Teleport: fix Login command (OTP MFA mode + reliable failure detection) (#29587)
- Remo: infinite scroll in folders and trash, clearer search (#29573)
- Update CODEOWNERs (2f3e8842)
- Update ticktick extension (#29568)
- [Slack] Fix file upload signatures and permissions (#29617)
- Update CODEOWNERs (73a6b030)
- Add mailto-link-generator extension (#28876)
- Update CODEOWNERs (1a751311)
- Add everyapi extension (#28835)
- Update spanish-tv-guide extension (#29577)
- Update planning-center-api-docs extension (#29502)
- [Capacities] Add Deadline field to Create Task (#29585)
- Update raycast-deskly extension (#29592)
- [Badges] Change default social badge style & fix markdown style (#29581)
- Update `Neon` extension - migrate almost all to new SDK (#29591)
- Update CODEOWNERs (eafd2550)
- Add `DocuSeal` extension - Search Templates and Submissions (#29569)
- [mymind] Prepopulate saves from clipboard (#29586)
- Update CODEOWNERs (f70fde1a)
- Add workflowy extension (#28503)
- Update CODEOWNERs (d72d9edd)
- Update cursors extension (#29493)
- [Brave] Fix history search database lock error (#29563)
- Update CODEOWNERs (45dfe28e)
- Add desk.ly extension (#28812)
- Update CODEOWNERs (42a3928f)
- Update scheduler extension (#29560)
- Update CODEOWNERs (afeb35a0)
- Add starline extension (#28809)
- [SteamGridDB] Use Ky instead of built-in fetch (#29558)
- Update CODEOWNERs (d34d599e)
- Add Codex app extension (#28798)
- Update obsidian extension (#29556)
- Update CODEOWNERs (0fa35435)
- Update unicode-symbols extension (#29555)
- Update CODEOWNERs (b57b0e5e)
- Add the-lot-radio extension (#28715)
- fix(jira-search-self-hosted): ignore stale search responses (#29516)
- [Slack] Add file upload AI tool (#29546)
- Render Slack AI messages with standard Markdown (#29531)
- Update gh-pr-tracker Extension (#29515)
- Update CODEOWNERs (4f7911cb)
- Update obsidian extension (#29541)
- Update CODEOWNERs (ceafa217)
- Update linear extension (#29542)
- Fix shopify-dev-docs-search extension (#29544)
- [Tally] paginate submissions (#29553)
- Update CODEOWNERs (c31db913)
- Update steamgriddb extension (#29549)
- [Todoist] Fix menu bar out-of-memory crash (#29552)
- Update todo-list extension (#29536)
- [WinGet] Fix empty lists on non-English Windows and upgrade failures (#29532)
- Update CODEOWNERs (35ebdb68)
- Add claude-session-bookmarks extension (#28793)
- Update CODEOWNERs (db21cc9f)
- Fix PromptCast: add verified node-pty native binaries (#29487)
- Update gitlab extension (#29496)
- fix(zotero): cap rendered results to prevent OOM on large libraries (#29500)
- [Slack] Add signature to updated messages (#29512)
- Update CODEOWNERs (8174a397)
- Add webglossary search (#28769)
- Update `Coolify` extension - handle status is exited (#29510)
- Update CODEOWNERs (d3ab427e)
- Update portfolio tracker extension (#29495)
- Update CODEOWNERs (65a770e8)
- chore: update owner (#29494)
- Update CODEOWNERs (5e218c77)
- Add hack-club-cdn extension (#29273)
- Update CODEOWNERs (bac530c3)
- feat(jira-search-self-hosted): search issues by number (#29491)
- fix(zotero): make Search Zotero concurrency-safe (follow-up to #29478) (#29492)
- Update CODEOWNERs (1cb220a3)
- Add thermostats extension 2 (#28321)
- fix(zotero): avoid OOM crash on large libraries (#29478)
- [Country Lookup] Improve performance of "Search Countries" view by fetching data in parallel and update dependencies (#29489)
- Update `OVHcloud` extension - My messages, Contacts (#29483)
- [Leave Time Calculator] Fix saved shift rollover and icon (#29485)
- [Slack] Add update message AI tool (#29482)
- Update CODEOWNERs (8e402934)
- Add PromptCast for Claude & Codex (#29469)
- Update Picmal extension: Merge Audio, Combine Videos, Split PDF, Generate App Icons (#29480)
- Update CODEOWNERs (35881ce7)
- Add fal-ai extension (#28962)
- Update CODEOWNERs (3dd16f7d)
- Update area-code-search extension (#29399)
- Update CODEOWNERs (015a4624)
- Add picmal extension (#28471)
- Twos: rebuild on the public API + add Search Things and Create List (#29468)
- Update CODEOWNERs (3cb79365)
- Update fix-link-embeds extension (#29470)
- Update read-this-later extension (#29471)
- Update CODEOWNERs (9e47048f)
- Add RedactCast Extension (#28743)
- [Agent Usage] move to useCachedPromise with TTL to reduce API calls (#29227)
- Update CODEOWNERs (2736fd07)
- fix(night-light): apply color temperature before dismissing view (#29450)
- Update dolar-cripto-ar extension (#28792)
- Update CODEOWNERs (62bd9a03)
- Add granite extension (#28899)
- pipedrive: add Copy Deal Email action for deals (#29444)
- Add Agentcard MCP server to model-context-protocol-registry (#29452)
- Update `Shroud.email` extension - add `Action` to delete alias (#29460)
- Update CODEOWNERs (f30a935d)
- Add read-this-later extension (#28790)
- Docs: update for the new API release
- Update reader-mode extension (#29451)
- Update CODEOWNERs (560b740a)
- Update search-npm extension (#29332)
- [Linear] Add attachments to comment AI tools (#29446)
- Update CODEOWNERs (50257796)
- Update google-calendar extension (#29456)
- [Slack] Improve AI messaging and conversation tools (#29443)
- Update CODEOWNERs (f4dfbeba)
- Update filezilla extension (#29433)
- Update CODEOWNERs (d0011c42)
- fix(clipboard-type): improve symbol typing and status feedback (#29348)
- Update CODEOWNERs (da75b911)
- Update WinSCP extension (#29412)
- Update CODEOWNERs (a3f1be35)
- Update keyboard-brightness extension (#29390)
- Update CODEOWNERs (c3349011)
- Update Amphetamine extension: add Quick Start Session command (#29414)
- Update CODEOWNERs (d07ffd45)
- Update `New York Times` extension - fix search api not working (#29400)
- [Slack] Add send message AI tool (#29442)
- fix(keka): await AppleScript operations (#29425)
- Update agent-usage extension (#29428)
- Update CODEOWNERs (95974fef)
- Update WinGet extension (#29441)
- Update CODEOWNERs (d7a862a4)
- google-chrome-profiles: spawn detached osascript before showing HUD (#29432)
- Update `Oracle Cloud Infrastructure` extension -  Manage Email Domains and Approved Senders (#29436)
- Update vesslo extension (#29440)
- Update producthunt extension (#29429)
- Update CODEOWNERs (419a3e9c)
- Update leetcode extension (#29402)
- Update duckduckgo-image-search extension (#29430)
- [Slack] Add thread reply AI tool (#29435)
- fix(deps): address CVE-2026-41907 and CVE-2026-53632 in extensions (#29407)
- [Agent-Usage] Fix Codex Remove 5h Quota Window (#29393)
- Update read-my-screen extension (#29405)
- Add Appwrite MCP Server to the registry (#29397)
- Update CODEOWNERs (a57721e9)
- Update google-search extension (#29392)
- Update bitwarden extension (#29395)
- Add Nika MCP server to model-context-protocol-registry (#29366)
- Update CODEOWNERs (08ff561c)
- fix(handy): find models in the HuggingFace cache (transcribe.cpp) (#29368)
- Update `Horoscope` extension - fix: API not working (#29384)
- Is It Alive: Added Google suppport (#29365)
- Update Messages extension (#29342)
- Thaw: Settings URI actions and store polish (#29362)
- Update raycast-pomodoro-notion extension (#29364)
- [Groq] Update Models (#29369)
- Update list-by-fullforms extension (#29374)
- Cobalt Finance: fall back to logo.dev name lookup for transaction merchant icons (#29375)
- Claude Code Usage (ccusage): add progress bar styles (#29380)
- Update CODEOWNERs (f83fde19)
- Put.io: Clearer setup documentation and preferences help (#29376)
- Claude Code Usage (ccusage): keep rate-limit progress bars visible during backoff (#29379)
- [Agent Usage] Amp Free percent usage (#29383)
- [Agent Usage] Add Grok usage provider (#29382)
- Update CODEOWNERs (9c2ef9e5)
- Update is-it-alive extension (#29360)
- Is It Alive: Add new adapters (#29354)
- Lunch Money: Fix transaction sign, multi-currency totals, and deep links (#29218)
- Update CODEOWNERs (3095c34b)
- Add raycast-pomodoro-notion extension (#28444)
- Update CODEOWNERs (0c0afaf3)
- Add NetEase Mail extension (#28697)
- Update CODEOWNERs (1330f657)
- Add better-screenshoot extension (#28727)
- Update Window-Sizer extension (#29349)
- [Things] Optional database reading and expanded AI tools (#28555)
- brew: Optimistically return stale cache when loading initial search index (#29350)
- Update CODEOWNERs (21120d67)
- Add SpaceJump extension (#29325)
- Cobalt Finance: bundle logo tokens so merchant logos work out of the box (#29334)
- Update Circleback MCP server URL to circleback.ai (#29340)
- Update CODEOWNERs (7b1109db)
- [Is It Alive?] Fix site ID generation (#29343)
- Update CODEOWNERs (9a98a9a0)
- Update google-search extension (#29339)
- ccusage: reconcile menu bar usage readouts (#29338)
- Update wishapp extension (#29337)
- Update CODEOWNERs (72a77c5c)
- Update spotify player extension (#29344)
- Update Beszel extension (fix system detail fields, add metrics) (#29316)
- Update CODEOWNERs (8bfde723)
- Add SnipperApp 3 Extension (#28714)
- Brew manage services (#29330)
- Update CODEOWNERs (8fe12b57)
- Add vocabulary-builder extension (#28470)
- [GitHub] Add "Ready for Review" action for draft pull requests (#29326)
- Update `Resend` extension - OAuth! (#29327)
- Update CODEOWNERs (9abcdbe3)
- Add bcassessment extension (#29274)
- Update CODEOWNERs (a5877194)
- Update kaneo-for-raycast extension (#29321)
- Update CODEOWNERs (49e9e213)
- Update installed-extensions extension (#29324)
- [linkcleaner extension update] Add Bilibili and Spotify support with updated rules (#29318)
- Update CODEOWNERs (f02ca01a)
- Update gitlab extension (#29216)
- Update gh-pr-tracker Extension (#29319)
- Docs: update for the new API release
- Update ente-auth extension (#29295)
- Update CODEOWNERs (cda128ce)
- Add wishapp extension (#28664)
- [Slack Extension README] Fix yaml codeblock (#29317)
- Update CODEOWNERs (2bf9713c)
- Add `deSEC` extension - Modern DNS Hosting for Everyone (#29301)
- Fix Video Downloader transcript extraction failing when Download Path contains ~ (#29308)
- Update CODEOWNERs (61b045f3)
- Add gh-pr-tracker extension (#27558)
- Update CODEOWNERs (9a40a724)
- Add mouseless extension (#29309)
- [codex] Support configuring target key lights (#28885)
- feat(quick-event): add timezone support (ET, CT, GMT-1, UTC+5:30, etc.) (#29310)
- Update dev-servers extension (#29307)
- Add Secret Manager to Google Cloud Platform Search (#29302)
- Update video-downloader extension (#29311)
- Update CODEOWNERs (9a70fb68)
- Add freetogame extension (#29242)
- [codex] Fix Spotify player lyrics command (#29198)
- Update CODEOWNERs (a7a0c9df)
- [mymind] Rebuild around the official API (#29184)
- Update unsplash extension (#29127)
- Update CODEOWNERs (ea202d01)
- Add ddev extension (#29035)
- Enhance documentation for screenshot tool in Raycast (#29300)
- Update CODEOWNERs (d56e0d0f)
- feat(google-calendar): Narrow OAuth scope for least-privilege access (#28925)
- Update CODEOWNERs (19d50413)
- Update switchhosts extension (#29291)
- Updated depedencies (#29290)
- Update raycast-zoxide extension (#29298)
- Update Models.dev extension (#29270)
- Update CODEOWNERs (568ebaba)
- Update `BTTV Emote` extension - Caching + Pagination + Windows Support + Add README.md (#29175)
- Readwise Reader: Add Windows support (#29253)
- Update CODEOWNERs (c5556ac4)
- Add Vaulted Extension (#28354)
- Update quick-jump extension (#29281)
- Fix Clean Text active app paste (#29283)
- Update CODEOWNERs (352b0898)
- Scoop: Add update all and faster search (#29217)
- [Quick Notes] Show clear errors when opening a note externally fails (#29280)
- Update caaals extension (#29271)
- Update shottr extension (#29268)
- docs(google-contacts): add FAQ entries for access_denied / Testing vs Published (#29276)
- [Quick Notes] Add YAML frontmatter and H1 title to markdown files (#29275)
- Update dev-servers extension (#29277)
- Update 1bookmark extension (#29247)
- Update CODEOWNERs (b383df74)
- Add paste-rs extension (#29244)
- Update whisper-dictation extension (#29234)
- Update betterstack-utils extension (#29245)
- Update CODEOWNERs (a4273e29)
- Add stik extension (#28662)
- Update CODEOWNERs (88265bf3)
- Add heatcheck extension (#28665)
- Update model-context-protocol-registry extension: add plori (#29225)
- Update spanish-tv-guide extension (#29248)
- Update CODEOWNERs (3309585b)
- Add integrations-sh extension (#29208)
- Update CODEOWNERs (a83cc5f7)
- Update svgl extension (#29261)
- Update jwt-decoder extension (#29231)
- Update CODEOWNERs (636f89e8)
- Update 0x0 extension (#29228)
- Update CODEOWNERs (1ffc249f)
- Update `dbt Documentation` extension - caching + Windows support (#29230)
- Update CODEOWNERs (14b69e54)
- Update `URL Shortener` extension - update services + centralize code (#29262)
- Update navidrome extension (#29214)
- Update raycast-motion-preview extension (#28450)
- Update CODEOWNERs (9bd64a10)
- Add macshot open command (#29249)
- Add memo to MCP registry community entries (#29256)
- [LLM Stats] Fix crash when sorting the model list by throughput (#29252)
- Update CODEOWNERs (76ebbcc4)
- Update proxyman extension (#29180)
- [Vortex] Fix Web Crypto startup crash (#29238)
- [helium] Improve reliability, search, and tab refresh (#29207)
- Fuzzy File Search: add Cmd+Enter shortcut for Show in Finder (#29239)
- Update `Wave` extension - show subhead in Invoice (one line change) (#29235)
- Update Homey authentication (#29190)
- [Brand Icons] Fix deeplink format (#29237)
- Update instagram media downloader extension (#29229)
- Update teak-raycast extension (#29205)
- Update CODEOWNERs (d44cbd47)
- Add rayterm extension (#28501)
- Update CODEOWNERs (a4dabd91)
- Add memo-to-flomo extension (#28653)
- Update CODEOWNERs (db1efcd5)
- Add cyber-security-pulse extension (#28654)
- Update CODEOWNERs (4ea33062)
- Update `Chakra UI Docs` extension - add version selector (#29209)
- Update CODEOWNERs (156f0cf7)
- fix(trakt-manager): send redirect_uri on token refresh (#29215)
- Update apple-tv-remote extension (#29210)
- Update CODEOWNERs (d7320e31)
- Update pianoman extension (#29189)
- Update CODEOWNERs (b9fe344f)
- Update jwt-decoder extension (#29200)
- Update change-case extension (#28839)
- Update CODEOWNERs (a530fdf7)
- [Country Lookup] Migrate to API v5 (#29013)
- No More Caffeine: Add Backdated Logging and Edit Intake (#28670)
- Update apple-tv-remote extension (#29204)
- Update singularityapp extension (#29192)
- Skills: document custom package registry configuration (#29196)
- Update dev-servers extension (#29186)
- Docs: update for the new API release
- Update whisper-dictation extension (#28535)
- Update dev-servers extension (#29178)
- Update CODEOWNERs (96a1df86)
- Update dynamic-font-size extension (#29142)
- [Agent Usage] Enhance Antigravity to support cli, match agy model order (#29165)
- Update devdocs extension (#29166)
- Update gif-search extension (#29163)
- Update CODEOWNERs (69b14539)
- fix: update to correct author (#29159)
- Update CODEOWNERs (8ac74f6f)
- Add bangumi extension (#28641)
- Update CODEOWNERs (fdd52b7e)
- Update shottr extension (#28642)
- [Agent Usage] Add Cursor usage provider (#29174)
- Improve Agent Usage icons and Codex reset details (#29172)
- [figma-shortcuts] Complete Figma keyboard shortcuts list — fix duplicates, add 4 categories (#28541)
- Update CODEOWNERs (b1e5caee)
- Add apple-tv-remote extension (#28594)
- Update CODEOWNERs (8d17529d)
- Add tinyfish-search extension (#28050)
- [Windows Terminal] Fix profiles opening in System32 (#29156)
- [Messages] Fix contact name resolution and speed up loading (#29161)
- [Agent Usage] Add z.ai weekly limit support (#29137)
- Update plexus extension (#29158)
- Update CODEOWNERs (e1d42689)
- 2FAS Authenticator: correct author handle (#29139)
- Update Circleback extension (#29146)
- Update wifi-password-reveal extension (#29129)
- Update gram extension (#29134)
- Update freeagent extension (#28889)
- Update proxyman extension (#29145)
- Update CODEOWNERs (a7a40ff8)
- [asana] Fix pagination error in large workspaces (#29147)
- Quit Applications: show menu bar apps (#29149)
- Update CODEOWNERs (dd134994)
- Update gif-search extension (#29144)
- Update gif-search extension (#29136)
- fix(security): apply security updates (#29131)
- Update CODEOWNERs (42d40fcc)
- Add file-provider-progress extension (#28624)
- Update another-boring-piece extension (#29106)
- [Agent Usage] Add support for multiple Codex OAuth accounts (#29112)
- Update CODEOWNERs (915d0a93)
- Update `dbtCloud` extension - Modernize + Specify Endpoint + Add README (#29124)
- Update CODEOWNERs (d54c309f)
- Add 2fas-authenticator extension (v1.1.0) (#27908)
- Update Remo: pinned notes section and improved note rendering (#29115)
- Update betterstack-utils extension (#29119)
- Update vesslo extension (#29089)
- Update CODEOWNERs (c24508f9)
- Add wiim-remote extension (#28607)
- Update CODEOWNERs (19e2ba77)
- Update "Open Latest URL from Clipboard": add custom URL schemes for app deep links (#29110)
- Update picgo extension (#29108)
- Update CODEOWNERs (516b8fcd)
- Fix TinyPNG multiple compression command (#29105)
- Update CODEOWNERs (79789e3f)
- Add pdf-expert extension (#28591)
- Add TinyPNG multiple compression command (#29096)
- Update CODEOWNERs (a4bb5682)
- Add habitify-raycast extension (#28490)
- Update CODEOWNERs (09558b10)
- Add from extension (#28559)
- Update CODEOWNERs (bc7a586c)
- Update youtube extension (#29016)
- Update CODEOWNERs (4f3404d1)
- [Unsplash] Add Windows support for wallpaper, clipboard, and save (#28914)
- Update CODEOWNERs (00c85cdb)
- Update zoom extension (#29040)
- Update raycast-svgo extension (#29055)
- Update CODEOWNERs (19eea0a0)
- Update trakt-manager extension (#29085)
- Update jira extension (#29048)
- Update CODEOWNERs (2b8d17fd)
- Update vercast extension (#29061)
- Update CODEOWNERs (a03864d5)
- Update `Cyberduck` extension - show number in dropdown, add icons & port (#29095)
- Update Agent Usage Codex reset credit display (#29090)
- Update CODEOWNERs (a07ceb88)
- Update steam extension (#29064)
- Update CODEOWNERs (7badcd37)
- Update zed-recent-projects extension (#29088)
- Update CODEOWNERs (5babbf2d)
- Update wayback-machine extension (#29067)
- Update microsoft-teams-calling extension (#29083)
- Fix Todoist create task paid fields (#27932)
- Update CODEOWNERs (14455eda)
- Update obsidian extension (#29073)
- Update CODEOWNERs (7ae93c8a)
- [Coffee] expand menu bar dropdown with presets and picker (#27843)
- Prefill TypeWhisper file transcription from Finder (#29069)
- Update CODEOWNERs (2cf08cbb)
- Update `Goodreads` extension - copy book cover url (#29062)
- Update CODEOWNERs (c7bb9d4e)
- Password Generator: Add Copy Random Password command (#29042)
- Ext/scrycast (#29054)
- Update CODEOWNERs (cd54eedb)
- Add Oh-Shoot extension (#28514)
- [sesh] Force UTF-8 locale (#29051)
- Update CODEOWNERs (1862be68)
- Add Typeless Companion extension (#28508)
- Update web-converter extension (#29018)
- [Skills] Use skills audit api (#29049)
- Fix Google Tasks create task success handling (#29030)
- Update subscription-manager extension (#29045)
- Update the-matrix extension (#29041)
- Update GitHub Copilot extension to not open PRs by default for new agent tasks (#29043)
- Update CODEOWNERs (2ce5975f)
- [Google Calendar]: add event color support (#29017)
- Update scrycast extension (#29026)
- Update tuple extension (#29000)
- chore: update gitignore (#29036)
- [Skills] Sync Skills Agent IDs (#29023)
- Update spotify-player extension (#29025)
- [Reclaim] Fix duplicate recurring sync events on calendar view (#29029)
- Update CODEOWNERs (2045c4e6)
- Add Vibelet Search (#28244)
- Update CODEOWNERs (06bf0aff)
- Update todo-list extension (#28893)
- Update CODEOWNERs (11c5dfff)
- Add ROM Launcher extension (#28461)
- Fix Cloudflare Pages crash without latest deployment (#29007)
- Update CODEOWNERs (b2293b09)
- Update kill-process extension (#29012)
- Update logos-launcher extension (#28403)
- Update CODEOWNERs (75653d67)
- New Extension: Fox Hop (#28996)
- Update CODEOWNERs (9408ff19)
- Update web-converter extension - Space-separated `hsl()` values (#28991)
- Fix ShareX library path handling (#29003)
- Fix WhatsApp phone parsing crash (#29004)
- Update CODEOWNERs (bef5605a)
- Update blackr extension (#29005)
- Update diff-view extension (#28985)
- Update quick-latex extension (#28990)
- Unicode Symbols: Center symbols on raycast 2.0 (#28993)
- Update CODEOWNERs (30997c5f)
- Add manglish-keyboard extension (#28950)
- Update CODEOWNERs (4da63ed1)
- Update wifi-password-reveal extension (#28984)
- fix: Todoist revert Quick Add Task fallback change (#28988)
- ado-search: fix My Work Items settings not saving (#28981)
- Update CODEOWNERs (d1c6c86b)
- Add aimeflux extension (#27969)
- Update CODEOWNERs (eb394a91)
- Add ai-voice-studio extension (#28224)
- Update CODEOWNERs (cfe1012c)
- Add hdr-toggle extension (#28433)
- Update CODEOWNERs (a1c7000d)
- Add DinoPass extension (#28497)
- Update CODEOWNERs (7d00ca60)
- Add bouncer-email-verifier extension (#28457)
- Update sap-logon extension (#28679)
- Update CODEOWNERs (5dd37c1b)
- Add PostHog AI analytics tools (#28970)
- Add wise-lens extension (#28317)
- fix: Todoist Quick Add Task fallback command (#28972)
- Update spotify-player extension README (#28969)
- Fix Markdown Converter doing nothing in Raycast 2 (#28974)
- Update picgo extension (#28965)
- refactor: improve qq-mail extension functionality and performance (#28238)
- Update CODEOWNERs (c86123fb)
- Update tuple extension (#28971)
- [Image Modification] Fix Optimize command failing when the assets path contains spaces (#28959)
- Update CODEOWNERs (ed1cbbce)
- Add dns-quick-change extension (#28446)
- Update Bookface extension (#28961)
- Update github-review-requests dependencies and tooling (#28963)
- Update plexus extension (#28964)
- Fix SQL injection in Arc history and download search (#28884)
- chore(deps): security updates (#28830)
- Update CODEOWNERs (2654b8b0)
- Add Techmeme extension (#28420)
- fix: keep easy ocr fallback text (#28960)
- Update CODEOWNERs (fa4a7b30)
- Add delphi-tools extension (#28411)
- Update CODEOWNERs (ac78c4a7)
- Add macshot extension (#28413)
- Update CODEOWNERs (ff4cbdbc)
- Orion: add README and credit contributor (#28947)
- Update polars-documentation-search extension (#28955)
- Update CODEOWNERs (261365cf)
- ✨ Add copy file action (#28948)
- Update CODEOWNERs (507ff260)
- Update rust-docs extension (#28954)
- Update pandas-documentation-search extension (#28956)
- Update scheduler extension (#28936)
- Update blackr extension (#28945)
- Update CODEOWNERs (438e1027)
- Add frc-programming extension (#28849)
- Update getting-started.md to remove Windows note (#28939)
- Docs: update for the new API release
- Update gitlab-docs extension (#28940)
- Update CODEOWNERs (a231a23d)
- Update folder-organizer extension (Add recursive organization and empty folder cleanup) (#28676)
- Orion: add Arc-style Command Bar (unified palette) (#28915)
- Update gitlab-docs extension (#28935)
- Update CODEOWNERs (b4acf91b)
- Add the-matrix extension (#28886)
- Update CODEOWNERs (5c15f45f)
- feat: consolidate osint-toolkit into osint-web-check (#27640)
- Update ente-auth extension (#28930)
- Update CODEOWNERs (a2ebd3e8)
- Add cortisol-meter extension (#28351)
- Vietnamese Calendar: 1.3.6 (#28924)
- [Tempo] Enable to set the estimate remaining duration on worklogs (#28928)
- Update CODEOWNERs (dff73f7a)
- Add sanity-icons extension (#28259)
- Update CODEOWNERs (9f1f104a)
- Add JSON to GCF Converter extension (#28877)
- Warp: Scope Open Directory search to configurable root folders (#28860)
- Orion: fix Search Tabs showing no open tabs (#28911)
- [Visual Studio Code] Revert: Open Windows projects through editor URLs (#28913)
- Update CODEOWNERs (585bd9b0)
- Add read-my-screen extension (#27208)
- fix(spotify-player): fix stale seek position in menu bar skip/back actions (#28882)
- Update CODEOWNERs (8d430b4a)
- [Color Picker] Fix oversized and clipped Color Wheel preview (#28888)
- fix(todoist): guard against empty sync response arrays (#28881)
- Update tasklink extension (#28898)
- fix(grafana): use encodeURIComponent for Explore link panes parameter (#28883)
- Update raycast-mimo-tts extension (#28894)
- World Cup: limit menu bar dropdown to a day window around today (#28895)
- [iTerm] Fix profile parsing for plists with Infinity floats (#28865)
- fix(nextcloud): use correct URL format for opening files (#28869)
- Update CODEOWNERs (a740106c)
- Add raycast-mimo-tts extension (#28369)
- Update CODEOWNERs (9f118434)
- Add kobbe extension (#27829)
- fix(windsurf): support Devin app name after rename (#28868)
- Update CODEOWNERs (86c17ea5)
- Add macos-appearance-changer extension (#26310)
- Update CODEOWNERs (25811553)
- Update todoist extension (#28690)
- Add Jellypod to MCP registry (#28853)
- Update gitea extension (#28786)
- Update CODEOWNERs (6408e760)
- Add saasflow extension (#27867)
- Update CODEOWNERs (5e9d319e)
- Update ultrahuman-insights extension (#28854)
- Update CODEOWNERs (02fc3386)
- feat(ibm-bob): fork cursor-recent-projects extension for IBM Bob (#28494)
- Update android extension (#28867)
- Update CODEOWNERs (d6ded90b)
- Update Try extension (#28872)
- Update CODEOWNERs (9020c9d1)
- Add move-cursor-next-display extension (#27984)
- Update CODEOWNERs (7def5842)
- Add dida365(ticktick for China) extension (#28276)
- Update CODEOWNERs (ea6b73f9)
- Update opencode-sessions extension (#28800)
- Update CODEOWNERs (1c520586)
- Add Ultrahuman Insights extension (#27907)
- toggl-track: Add sum of duration of the running entry\'s project to menu bar (#28843)
- Update Vim Leader Key (#28842)
- Update translate extension (#28831)
- Update qbittorrent (#28844)
- Update linear extension (#28677)
- Update world-cup extension (#28829)
- Update CODEOWNERs (3efd692f)
- Add asafamos-accessibility-scanner extension (#28600)
- Update CODEOWNERs (e993d926)
- feat(devin): add support for Devin Desktop editor (#28719)
- [Toggl Track] Add Quickstart New Timer command (#28757)
- Update CODEOWNERs (03453d9f)
- Fuzzy File Search: add -d/-f directives for directory and file search (#28794)
- Add Slack thread reader tool (#28816)
- [Visual Studio Code] Open Windows projects through editor URLs (#28072)
- Update CODEOWNERs (c7845a5f)
- Update empty-screenshots extension (#27064)
- Update advanced-replace extension (#28815)
- Update CODEOWNERs (3ca64cf9)
- World Cup: add menu bar and live score commands (#28810)
- Update CODEOWNERs (750458b5)
- Add stefan.imbesi to package.json contributors (#28819)
- Update CODEOWNERs (bce90197)
- Add txtodo extension (#28335)
- Update CODEOWNERs (c3b41301)
- Add mach-triage extension (#28324)
- Update slurm extension (#28803)
- Update CODEOWNERs (431ab513)
- Update wordreference extension (#28694)
- Add Olostep entry to built-in registries (#28667)
- Update Quarantine Manager: multi-target selection with one admin prompt (#28806)
- Update skills extension (#28795)
- Update CODEOWNERs (e81a0768)
- fix(iterm): Load profiles when entire prefs plist cannot convert as JSON (#28723)
- Fix discogs extension data display issues (#28760)
- [GitLab] Reduce MR list detail memory usage (#28767)
- Update CODEOWNERs (4289a973)
- [Crypto Price] Add multi-source failover (fixes broken CryptoCompare default) (#28796)
- [Apple Reminders] Tighten optional reminder tool fields (#28772)
- Add OptionsAhoy to MCP Registry (#28744)
- Update CODEOWNERs (f4923fc1)
- Update opencode-sessions extension (#28338)
- Update CODEOWNERs (f92001b0)
- Update spotify-player extension (#28282)
- Update CODEOWNERs (40d0480f)
- Update raycast-store-updates extension (#28774)
- [Agent Usage] Respect CLAUDE_CONFIG_DIR for credentials (#28785)
- Update raycast-ollama extension (#28791)
- Remo: note editing, AI Extension, and performance (#28787)
- Update CODEOWNERs (46081497)
- Cursor: Add Show Active Workspaces command (#26260)
- chore: update scheme to support for raycast beta (#28576)
- Add "Open File URL from Clipboard" command to figma-files extension (#28709)
- ado-search: customisable work item state order (#28784)
- Update CODEOWNERs (fe041b65)
- Update leitnerbox extension (#28646)
- style: run prettier (#28783)
- Update CODEOWNERs (a1768edf)
- Add Commit Streak extension (#26537)
- [Music] Fix album search by artist (#28781)
- [HTTP Status Codes] Fix section label overflow (#28779)
- ado-search: add Windows support (#28782)
- Update CODEOWNERs (dd741bad)
- Add India Toolkit - GST Calculator, IFSC Lookup, Pincode Lookup (#28291)
- Update anytype extension (#28762)
- Update CODEOWNERs (ebd0f103)
- [Monocle] Add commands for app v3.5.1 (#28215)
- Update crypto-price extension (#28592)
- [1Password] Reduce memory usage for large item lists (#28055)
- [amphetamine] Forget "Until Time" dates (#28734)
- Update nixpkgs-search extension (#28773)
- [Apple Mail] Escape compose AppleScript strings (#28776)
- Update lotus-mtg-companion extension (#28404)
- Update CODEOWNERs (f27053dd)
- Trello: open boards/cards in desktop app on Windows + add Default Open Target preference (#28392)
- Update CODEOWNERs (8a0c1115)
- Update microsoft-teams extension (#28388)
- Improve Kalshi market discovery and detail views (#28687)
- Fix Windows Terminal SSH profile launch (#28193)
- Update quick-git extension (#28770)
- Update list-by-fullforms extension (#28755)
- [Copy Notion Markdown Link] Fix URL validation for notion.com domain (#28741)
- [Slack] Fix Set Status deep link erroring on raw emoji (#28728)
- Update CODEOWNERs (de550013)
- Add raycast-anime extension (#28281)
- Update word4you extension (#28722)
- Update CODEOWNERs (0fe72386)
- Add raycall extension (#28280)
- Update CODEOWNERs (9b3476d6)
- Add list-by-fullforms extension (#28267)
- fix(todoist): omit empty paid task fields (#27991)
- Update CODEOWNERs (1880cc41)
- Add sleevy extension (#28262)
- Add configurable search engine for Dia (#28176)
- Update CODEOWNERs (5410ca5d)
- Add is-it-alive extension (#28256)
- Update CODEOWNERs (af51692e)
- Add slurm extension (#28235)
- Update CODEOWNERs (a829a55c)
- Update microsoft-office extension (#28575)
- Update CODEOWNERs (e784fd35)
- Add figa extension (#28228)
- Update Agent Ecosystem Map branding (#28704)
- Update lockdock extension (#28701)
- Update CODEOWNERs (5844f393)
- Update fingertip extension (#28707)
- myip: remove unused ip dependency (clears CVE-2024-29415) (#28705)
- Update CODEOWNERs (b17804fb)
- Add Simple Draw extension (#27905)
- Add OS dropdown to issue template and platform label support (#28136)
- Update CODEOWNERs (928ed515)
- Add rut-generator extension (#28211)
- Update CODEOWNERs (3364b7ad)
- Update wordreference extension (#28633)
- Update Sublime extension to use new v3 endpoints (#28383)
- Update whmcs-client-search extension (#28686)
- Update stock-tracker extension (#28658)
- Update CODEOWNERs (bb29163b)
- Add Cobalt Finance extension (#28151)
- Fix UniRate API key signup link (#28663)
- Update CODEOWNERs (81746b1c)
- Add TaskTick extension (#27758)
- Update CODEOWNERs (6d37893b)
- [Apple Mail] Manually set type of mailbox (#28254)
- Update Quarantine Manager: single command with bulk select (#28685)
- Update CODEOWNERs (66872ffb)
- Add shopify-shop extension (#23803)
- fix(linear): move Set Priority shortcut off the Copy Issue ID slot (#28553)
- Update CODEOWNERs (e4b5cc56)
- Add kofa extension (#28207)
- Update CODEOWNERs (5ac4dd0f)
- [Messages] Add Pagination, Fix Email Contacts, and Async Issues (#28174)
- Update 42-api extension (#28557)
- Update CODEOWNERs (dffff42f)
- Update winget extension (#28191)
- Update CODEOWNERs (fa422272)
- Add tabbit extension (#28178)
- Update CODEOWNERs (6fdfd58a)
- Add cloudflare-images extension (#27859)
- [ccusage] Fix usage-limits rate-limit freeze (#28672)
- Update CODEOWNERs (ae4c57d3)
- Geforce NOW launcher (#28098)
- Update CODEOWNERs (b7305b5c)
- Add greptile extension (#28650)
- Update dev-servers extension (#28673)
- Update no-more-caffeine(Fix blank caffeine amount on initial open) (#28671)
- [Slack] Add deep link arguments to Set Status (#28669)
- Update CODEOWNERs (8cdca412)
- Update linear extension: Add label count preference value (#28623)
- Update CODEOWNERs (8b77f1a9)
- Add blackr extension (#27716)
- Update WindowSizer extension (#28652)
- Update CODEOWNERs (808fa2b7)
- Add betterstack-utils extension (#27987)
- Update CODEOWNERs (69964cda)
- Add spokenly extension (#28036)
- Fix metadata image validation for Raycast v2 screenshots (#28651)
- Update CODEOWNERs (655dfef1)
- Add quick airdrop extension (#28629)
- [Skills] Resolve skill contents for skills in subdirectories (#28648)
- Update CODEOWNERs (99c0c30c)
- feat(large-type): Add Show Selected Text command (#28627)
- fix(superwhisper): apply recordingDir preference to copy/paste commands (#28635)
- fix(superwhisper): paginate history loading to prevent memory crash (#28634)
- feat: update e18e replacement data (#28589)
- Update universal-inbox extension (#28621)
- Rename `Brand.dev` extension to `Context.dev` (#28644)
- Update quarantine-manager extension (#28620)
- Update `MXroute` extension - add Action to remove domain (#28625)
- Update CODEOWNERs (48a5db00)
- Add subscription-manager extension (#28138)
- Update vocabuilder extension (#28569)
- Update CODEOWNERs (9a964421)
- Add daytona extension (#27900)
- Update CODEOWNERs (743367df)
- Add bookface extension (#28614)
- Update CODEOWNERs (e51f39d9)
- [Apple Notes] Fix Rendering, Async, and Keyboard Shortcut Issues (#28143)
- Update CODEOWNERs (f41092f3)
- Update zed-recent-projects extension (#28562)
- Update tokentrack extension (#28596)
- feat(heyclaude): add discovery commands (#28605)
- [QR Code Generator] Fix "[object Object]" error and add color, icons, link shortening & UTM  (#28599)
- Update CODEOWNERs (b4898b4c)
- [Jellyfin] Add windows support (#28595)
- Update raycast-zoxide extension (#28603)
- Update tokentrack extension (#28579)
- [Skills] Add copy skill contents action (#28584)
- Update CODEOWNERs (c371d5c4)
- [Coffee] Fix typo in Caffeinate While command description (#28585)
- [Skills] Add icons to skill confirmation dialogs (#28581)
- Update CODEOWNERs (82815297)
- Add yandex-telemost extension (#27899)
- Update CODEOWNERs (49dc7f7b)
- Update mail extension (#28566)
- Update CODEOWNERs (e054e707)
- Add wipet extension (#28058)
- Update CODEOWNERs (15db1d6f)
- (zen) :bug: migrate workspace storage from SQLite to zen-sessions.jsonlz4 (#28047)
- Update CODEOWNERs (37832247)
- Add tokentrack extension (#27871)
- Update CODEOWNERs (6f7ff80e)
- Add imgbed-uploader extension (#28042)
- Misc: Update some dependencies (#28573)
- GIF Search: add direct Browse Favorite GIFs and Browse Recent GIFs commands (#28564)
- Update CODEOWNERs (c0c2cd66)
- [Karakeep] Fix bookmark preview image rendering (#28543)
- [Visual Studio Code] Resolve Code installs in user Applications (#28003)
- [Tempo] Add autoFocus on time spent field (#28570)
- Update gram extension (#28563)
- Update CODEOWNERs (c1201884)
- Add temporal extension (#27980)
- Update CODEOWNERs (95a2ab85)
- Update video-downloader extension (#28534)
- Update gram extension (#28527)
- Update `Porkbun` extension - new command to retrieve account balance (#28551)
- Update CODEOWNERs (6c98335b)
- ado-search: add My Work Items command (#28544)
- [Word Search] Respect Use Selection preference (#28011)
- Update CODEOWNERs (c0c656a9)
- [blip-raycast] Add Windows cross-platform support (#28540)
- Fix Skills update actions for global installs (#28542)
- Update CODEOWNERs (51e9892a)
- Add gitea extension (#27930)
- Update CODEOWNERs (af5b11b0)
- Add busycal extension (#26520)
- Improve GIF conversion in yafw (fix palette, add quality/fps/speed/loop) (#28532)
- Update CODEOWNERs (9aadb731)
- Allow Metube on Raycast for Windows (#28531)
- things: restore Cmd-Return to Mark as Completed on list rows (#28533)
- Update moneytree extension (#28526)
- Chore(deps): bump openssl in /extensions/lunaris/rust (#28525)
- Update moneytree extension (#28516)
- Memo: Fix axios vulnerability (#28522)
- Update CODEOWNERs (410c3aca)
- Update betterdisplay extension (#28421)
- Update habitica-todos extension (#28045)
- Update CODEOWNERs (07c55274)
- [Display Placer] Fix auto-close after preset loading (#28415)
- Update CODEOWNERs (ca7725df)
- Add Soaring Symbols extensions (#27890)
- Update moneytree extension (#28513)
- Update CODEOWNERs (cb5b8708)
- Add EPUB download actions to Anna\'s Archive (#28374)
- Update CODEOWNERs (f9f335cd)
- Slack: Update message history to fallback to attachment text (#28509)
- Add VC Deal Flow Signal MCP server to model-context-protocol-registry (#28376)
- Update CODEOWNERs (54c0a6f0)
- Update another-boring-piece extension (#28091)
- Update CODEOWNERs (1487e760)
- [Search Router] Make query argument optional to support fallback search (#28474)
- Update CODEOWNERs (85ae3658)
- Add wojak-picker extension (#27015)
- [Tempo] Allow setting start and end time of worklogs (#28500)
- Update CODEOWNERs (61749225)
- Add arcane-wallpaper extension (#28451)
- [ccusage] Tolerate sessions with no activity date (#28502)
- [WordReference Dictionary Translation] Handle WordReference HTTP errors (#28418)
- Fix Pivot preset editor heap spike (#28495)
- Fix shell quoting issues in GitHub Actions workflows
- Fix issue-bot workflow condition expression
- Update CODEOWNERs (f0a76889)
- Add Nibit extension (#27805)
- Update CODEOWNERs (ea516e2c)
- Add lockdock extension (#27768)
- Handle Forked Extensions git index locks (#28187)
- [ccusage] Add monochrome menu bar icon option (#27996)
- chore: update stale duration (#28491)
- Add GitHub Actions workflow for metadata image validation (#27714)
- Update CODEOWNERs (998911f2)
- Update gif-search extension (#28251)
- feat(ibm-bob): add support for IBM Bob editor (#28488)
- Update CODEOWNERs (8c4e8813)
- [Coffee] Fix menu bar icon refresh after caffeination changes (#28469)
- Update visual-studio-code extension (#28477)
- Update producthunt extension (#28476)
- Update CODEOWNERs (8e5e1247)
- feat(skills): add Default Agents preference (#28378)
- Update whois extension (#28475)
- klack: polish stats header and tighten changelog (#28472)
- Update CODEOWNERs (675c6e66)
- Add gist-rocket extension (#28188)
- Ext/game scout (#28439)
- Update leetcode extension (#28432)
- Update CODEOWNERs (10848928)
- [Obsidian Tasks] Add Quick Add Task command (#27785)
- Update joey-vocab extension (#28465)
- Update vocabuilder extension (#28283)
- Update Plexus: Windows + WSL support, detect all localhost web servers (#28459)
- Update producthunt extension (#28445)
- Update dev-servers extension (#28419)
- [Hue] Bug fixes and improvements (#28412)
- Update CODEOWNERs (0de17644)
- Update my-ip extension (#27283)
- Update CODEOWNERs (6e640ebe)
- Add Harness Control Plane extension (#27231)
- Update CODEOWNERs (a1c8fc58)
- Add Pivot extension (#27753)
- fix(clip): handle history errors gracefully in URL shortener (#28458)
- Update phare.io logo (#28453)
- [Team Time] Use Hong Kong and Macau ISO codes for their own flags (#28425)
- Update CODEOWNERs (2b56dcbb)
- Add chinese-converter extension (#27610)
- Update CODEOWNERs (7b42404b)
- [Tiktoken] Add o200k_base tokenizer support (#28402)
- Update CODEOWNERs (829677d1)
- Add Mouse Jiggle extension (#27745)
- [Port Manager] Fix lsof process leaks (#28222)
- feat(granola): prefix exports with sortable date (#28394)
- Keep Bitwarden session active after sync failures (#28150)
- Fix 2FA link URL validation (#28158)
- Update GitHub extension Raycast SDK (#28185)
- Docs: update for the new API release
- [Quit Applications] Handle app discovery timeouts (#28012)
- [Google Chrome] Reset stale profile selection (#28015)
- Fix Copy Path for VS Code active files (#28145)
- Update unsplash extension (#28379)
- Fix JWT Decoder React peer versions (#28022)
- [Todoist] Reduce Menu Bar Tasks sync size (#28005)
- [Toggle Desktop Visibility] Fix Tahoe icon toggling (#28009)
- [Spotify Player] Guard podcast episode navigation (#28063)
- [Jira Search] Surface issue search auth errors (#28053)
- Support Antigravity IDE 2.0 paths (#28152)
- Fix Messages chat list memory usage (#28156)
- [Warp] Add Tab Config support (#28165)
- [Finder File Actions] Add custom names for pinned folders (#28164)
- Update prompt stash extension (#28382)
- [DevUtils] Handle missing app installs (#28170)
- [Sentry] Guard issue details without stack frames (#28056)
- [Espanso] Reduce Search Matches memory usage (#28004)
- [Kill Process] Prevent background refresh timeout errors (#28010)
- [Hide Files] Fix path handling for visibility toggles (#28008)
- Add Edit in iTerm open behavior (#28161)
- [cmux] Improve workspace search metadata (#28163)
- [Terminal Finder] Improve cmux socket error (#28013)
- Add task snooze actions to Reclaim (#28173)
- Add Helium support to Browser History (#28180)
- Fix iMessage Time Sensitive code detection (#28183)
- Update apfel extension (#28375)
- Update vercast extension (#28370)
- Update GetNote Extention (#28361)
- Update CODEOWNERs (6c5db016)
- [Slack] Fix slack:// deep links on Windows (#28367)
- Update CODEOWNERs (230c5e5f)
- Add notaday extension (#27625)
- Update CODEOWNERs (f4392b72)
- Add discussite extension (#27486)
- [Audio Device] Restore enforce command notifications (#28017)
- chore: add readme (#28364)
- Update awork extension (#28337)
- Update lastfm extension (#28350)
- Update CODEOWNERs (5e7e76e4)
- Add vn-textify extension (#27524)
- Update CODEOW…
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 platform: macOS

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants