Skip to content

Add cloudflare-images extension#27859

Merged
raycastbot merged 9 commits into
raycast:mainfrom
mcdays94:ext/cloudflare-images
Jun 10, 2026
Merged

Add cloudflare-images extension#27859
raycastbot merged 9 commits into
raycast:mainfrom
mcdays94:ext/cloudflare-images

Conversation

@mcdays94

@mcdays94 mcdays94 commented May 13, 2026

Copy link
Copy Markdown
Contributor

Description

Cloudflare Images uploader for Raycast: clipboard-first uploads, multi-select Finder uploads, and an in-Raycast browser for the images already in your Cloudflare Images account.

Inspired by, and a sibling of, my own cloudflare-images-upload VS Code / Cursor / Windsurf extension (also on Open VSX, VS Code username miguelcaetanodias, Raycast username miguel_caetano_dias — same author). The VS Code original uses documentPasteEdits / documentDropEdits to intercept paste and drop inside the editor. This Raycast port brings the same workflow next to the editor so it works in every Mac app, including Zed and other editors that don't expose those VS Code-specific APIs.

Eleven commands grouped under "Cloudflare Images"

  • Setup: Validate Cloudflare Credentials, Set Default Variant (live variant picker from the user's CF account)
  • Upload from clipboard: Upload Clipboard Image (preference-driven, with optional format dropdown argument) + format-locked variants Upload Clipboard as Markdown / as HTML / as URL
  • Upload from Finder: Upload Selected File (handles multi-select sequentially with per-file progress + partial-failure tolerance) + format-locked variants
  • Manage: My Cloudflare Images (list view with thumbnails, keyword search across filename + image ID + custom metadata, detail panel via ⌘ D, destructive-confirm delete)

Feature parity with the VS Code extension

SHA-256 dedupe cache (Raycast LocalStorage, 30-day TTL), sharp-based compression with progressive quality reduction, AVIF → WebP/JPEG/PNG conversion before upload, HMAC-signed URLs with auto-fetched (or manually-overridden) signing key, metadata templating with eight ${...} placeholders. The only VS Code features intentionally dropped are the ones the Raycast extension model can't expose: drag-drop INTO the editor, language-aware paste formatting, and delete-on-removal from documents.

Architecture

Monorepo at https://github.com/mcdays94/cloudflare-images-tools. The Raycast extension consumes a shared TypeScript core published to npm as @mcdays/cloudflare-images-core@0.0.1, so the same logic will be reusable by a planned MCP server (for Zed / Claude Code / Cursor). The core has no editor or Raycast assumptions — it's just the pure upload / dedupe / signed-URL / compression / variants / list / delete / metadata-templating logic.

Screencast

Three still screenshots are attached in metadata/:

  1. cloudflare-images-1.png — My Cloudflare Images list view with thumbnails
  2. cloudflare-images-2.png — My Cloudflare Images detail panel (⌘ D) showing metadata
  3. cloudflare-images-3.png — Set Default Variant live picker

The headline workflow is brief enough that stills capture it: copy image → Raycast → "Upload Clipboard Image" → URL pasted at cursor in the previously-focused app. Happy to add a screencast if the reviewer prefers — let me know.

Checklist

- feat: switch Raycast ext from workspace dep to published @mcdays/cloudflare-images-core@^0.0.1
- chore: rename npm scope @mcdays94@mcdays to match npm username
- chore(core): prep @mcdays94/cloudflare-images-core for npm publish
- docs: drop Roadmap section from root README
- docs: trim repo to README + CHANGELOG only; drop footgun / live-api / acknowledgements
- docs: replace em-dashes in READMEs with commas
- docs: hero icon at top of both READMEs + dedicated per-package Raycast README
- feat(raycast): add Store-listing screenshots + credit VS Code original in README
- chore(raycast): Store-submission compliance fixes
- feat(raycast): adopt \'Stack & Cloud\' icon + add eslint flat config
- docs: refresh README, ROADMAP, CHANGELOG + add CI scaffold + HANDOFF
- feat(raycast): v0.4 — close VS Code parity gap (metadata, manual signing key)
- feat(raycast): v0.3.1 — format-locked variants of upload commands
- feat(raycast): v0.3 — Upload Selected File handles multi-select
- fix(core): let callers override the filename sent to Cloudflare for file uploads
- test(core): add api-smoke-test.mjs for live Cloudflare API validation
- test(core): add smoke-test.mjs covering all pure functions
- feat: v0.2.2/v0.2.3/v0.4 — cache fix, my-images search/detail, format arguments
- feat: v0.2.1 — variant dropdown via \'Set Default Variant\' command
- refactor: rename CF Images → Cloudflare Images across the monorepo
- feat(raycast): v0.2 — Upload Clipboard Image, working end-to-end
- docs: explain Raycast preference persistence and the rename footgun
- chore: initial scaffold for cf-images-tools monorepo
@raycastbot raycastbot added new extension Label for PRs with new extensions platform: macOS labels May 13, 2026
@raycastbot

raycastbot commented May 13, 2026

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.

@mcdays94
mcdays94 marked this pull request as ready for review May 13, 2026 14:07
@greptile-apps

greptile-apps Bot commented May 13, 2026

Copy link
Copy Markdown
Contributor

Greptile Summary

This PR introduces a new Cloudflare Images Raycast extension with 21 commands covering clipboard and Finder uploads, a browsable image list, signed-URL support, SHA-256 deduplication, sharp-based compression, AVIF conversion, and rich metadata templating. The shared upload logic lives in an external npm package (@mcdays/cloudflare-images-core) so no upload or signing logic is duplicated across the many command entry points.

  • All 21 commands delegate to two shared implementations (runUploadClipboard / runUploadFinder), keeping behavior consistent across format-locked and signed-locked hotkey variants.
  • my-images.tsx exposes a Refresh Signing Key action that explicitly clears the cached key and re-fetches — addressing the key-rotation recovery gap noted in a prior review cycle.
  • CHANGELOG.md uses a hard-coded date (2026-06-10) instead of the required {PR_MERGE_DATE} placeholder, and the metadata/ folder is missing the cloudflare-images-2.png screenshot described in the PR.

Confidence Score: 5/5

Safe to merge once the changelog placeholder and the missing screenshot are addressed; the core upload, signing, and caching logic is well-structured and defensive.

The extension is a net-new addition with no impact on existing code. Upload pipelines handle errors gracefully, the dedup cache has TTL and migration logic, signed-URL rotation is recoverable through the exposed action, and credentials are validated before any network call. The two open items are a changelog formatting convention and a missing metadata image — neither affects runtime behaviour.

CHANGELOG.md (hardcoded date) and the missing metadata/cloudflare-images-2.png screenshot.

Important Files Changed

Filename Overview
extensions/cloudflare-images/CHANGELOG.md Initial release entry uses a hardcoded date 2026-06-10 instead of the required {PR_MERGE_DATE} template variable.
extensions/cloudflare-images/src/lib/upload-clipboard-impl.ts Core clipboard upload pipeline — handles clipboard reading (file ref, text path, osascript PNG dump), deduplication, compression, and signed-URL signing. Well-structured; temp file is cleaned via finally block.
extensions/cloudflare-images/src/lib/upload-finder-impl.ts Finder multi-select upload pipeline with partial-failure tolerance; clean structure mirroring the clipboard impl.
extensions/cloudflare-images/src/my-images.tsx Image browser with thumbnail list, detail panel, metadata keyword search, signed-URL handling, and destructive-confirm delete. Logic is sound.
extensions/cloudflare-images/src/lib/signing-key.ts Signing key resolution with manual-override, LocalStorage cache, and API auto-fetch; clearCachedSigningKey exposed and wired to Refresh Signing Key action in my-images.tsx.
extensions/cloudflare-images/src/lib/config.ts Preference reading and config-building helpers; CfImagesPreferences = Preferences alias (addressed from prior review). Numeric textfields parsed with proper clamping helpers.
extensions/cloudflare-images/src/lib/cache.ts 30-day TTL SHA-256 dedup cache with legacy v0.2.1 migration path for URL-only entries.
extensions/cloudflare-images/package.json 21-command manifest with correct $schema, categories, platforms, and preference definitions; @raycast/utils removed (addressed from prior review).
extensions/cloudflare-images/eslint.config.js Correctly uses defineConfig from eslint/config with the Raycast preset (addressed from prior review).
extensions/cloudflare-images/src/validate-credentials.tsx Credential validation view with detailed per-failure-reason Markdown output and actionable retry/prefs actions.
Prompt To Fix All With AI
Fix the following 2 code review issues. Work through them one at a time, proposing concise fixes.

---

### Issue 1 of 2
extensions/cloudflare-images/CHANGELOG.md:7
The initial release entry uses a hard-coded date rather than the `{PR_MERGE_DATE}` template variable required by this repo's changelog convention. If the PR merges on a different calendar day the date will be wrong, and the Raycast tooling expects the placeholder so it can substitute the actual merge date automatically.

```suggestion
## [Initial Version] - {PR_MERGE_DATE}
```

### Issue 2 of 2
extensions/cloudflare-images/metadata/cloudflare-images-1.png:?
**Screenshot #2 referenced in PR description but not committed**

The PR description lists three screenshots — `cloudflare-images-1.png`, `cloudflare-images-2.png` (detail panel), and `cloudflare-images-3.png` — but only #1 and #3 appear in the diff. The `metadata/` folder is missing `cloudflare-images-2.png`. Store reviewers may notice the gap, and the detail panel screenshot is the one that best showcases the metadata feature.

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

Comment thread extensions/cloudflare-images/src/lib/config.ts
Comment thread extensions/cloudflare-images/package.json
Comment thread extensions/cloudflare-images/eslint.config.js Outdated
Comment thread extensions/cloudflare-images/CHANGELOG.md 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 May 27, 2026
@0xdhrv 0xdhrv self-assigned this Jun 2, 2026

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.

suggestion (non-blocking): Remove the metadata screenshot

This screenshot seems redundant since the commands are already listed as a separate tab on the store page.

- `Clipboard.copy` → `Clipboard.paste` in Upload Clipboard Image —
preserves the paste-from-clipboard UX from the VS Code extension.

## [0.1.0] - 2026-05-12

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.

suggestion (non-blocking): Keep the changelog entry user-focused

This initial version should probably contain just one changelog entry. The current wording feels a bit more like a dev update, so it might be clearer to frame it in terms of what changes for end users.

@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.

Hey @mcdays94 👋

I have added a few comments for you to address.

I'm looking forward to testing this extension again 🔥

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


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

@0xdhrv
0xdhrv marked this pull request as draft June 2, 2026 18:45
@raycastbot raycastbot removed the status: stalled Stalled due inactivity label Jun 2, 2026
- fix(raycast): address 0xdhrv review on PR raycast#27859
- fix(ci): run ray build BEFORE typecheck so raycast-env.d.ts exists
- fix(ci): scope rename @mcdays94@mcdays missed our own workflow file
- chore: gitignore local-only working docs (resume.md, HANDOFF.md, NOTES.md)
@mcdays94
mcdays94 marked this pull request as ready for review June 3, 2026 08:32
- docs(changelog): fold v0.5 signed/public + combo work into [Initial Version]
- feat: per-invocation Signed/Public override + format-signed combos
@greptile-apps

greptile-apps Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

Want your agent to iterate on Greptile's feedback? Try greploops.

Comment on lines +43 to +51
const fetched = await fetchSigningKey(ctx.accountId, ctx.apiToken);
if (!fetched) {
throw new Error(
"Couldn't fetch a signing key from Cloudflare. Make sure your API token has the 'Cloudflare Images: Edit' permission, then try again. If you have the signing key from somewhere else (e.g. the CF dashboard), paste it into 'Manual Signing Key' in extension preferences. If you don't use signed URLs at all, turn off the 'Signed URLs' preference.",
);
}

await LocalStorage.setItem(cacheKey, fetched);
return fetched;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P1 Signing key cached indefinitely — no recovery path after key rotation

The signing key is written to LocalStorage at line 50 with no TTL, and there is no UI-accessible action that calls clearCachedSigningKey. If a user rotates their Cloudflare signing key (which CF supports via the dashboard's "Rotate signing key" feature), the extension will permanently serve the stale key, silently generating HMAC-signed URLs that 404. The only workarounds are setting manualSigningKey in preferences or clearing Raycast's LocalStorage externally — neither is obvious from inside the extension.

Consider adding a fixed TTL (e.g., 7 days) to the LocalStorage entry, or exposing a "Refresh Signing Key" action in the My Cloudflare Images action panel (similar to the "Reload List" action already there) so users have a recovery path.

Prompt To Fix With AI
This is a comment left during a code review.
Path: extensions/cloudflare-images/src/lib/signing-key.ts
Line: 43-51

Comment:
**Signing key cached indefinitely — no recovery path after key rotation**

The signing key is written to LocalStorage at line 50 with no TTL, and there is no UI-accessible action that calls `clearCachedSigningKey`. If a user rotates their Cloudflare signing key (which CF supports via the dashboard's "Rotate signing key" feature), the extension will permanently serve the stale key, silently generating HMAC-signed URLs that 404. The only workarounds are setting `manualSigningKey` in preferences or clearing Raycast's LocalStorage externally — neither is obvious from inside the extension.

Consider adding a fixed TTL (e.g., 7 days) to the LocalStorage entry, or exposing a "Refresh Signing Key" action in the `My Cloudflare Images` action panel (similar to the "Reload List" action already there) so users have a recovery path.

How can I resolve this? If you propose a fix, please make it concise.

mcdays94 added a commit to mcdays94/cloudflare-images-tools that referenced this pull request Jun 8, 2026
Adds the Override system so users can choose Signed vs Public URLs per
upload without changing preferences. The base Upload Clipboard Image
command gains a second dropdown; new locked commands cover the
hotkey-bindable workflows.

Architecture:
- New pure helpers in @mcdays/cloudflare-images-core: resolveSignedMode,
  resolveVariant, UploadOverrides type. Future MCP / CLI surfaces share
  the same resolution rules.
- runUploadClipboard / runUploadFinder refactored from positional
  formatOverride to an opts: UploadOverrides object. opts.variant
  threads through to getEffectiveDefaultVariant; opts.copyRawOnly
  controls post-upload delivery (raw copy vs format-wrap + paste).
- buildCloudflareConfig accepts an optional useSignedUrlsOverride.

Raycast surface (15 to 21 commands):
- 4 new signed-mode-locked commands (as Signed Image / as Image), for
  clipboard and Finder. They copy the raw URL to the clipboard with no
  format wrapping and no cursor-paste, intended for 'give me the URL,
  I'll paste it myself' workflows.
- 6 new combo-locked commands (as Signed Markdown / HTML / URL), for
  clipboard and Finder. Single-hotkey path for the 'always signed AND
  always Markdown' case.
- New 'signed' dropdown on the base Upload Clipboard Image alongside
  the existing 'format' dropdown.
- Bug fix: format-locked clipboard commands now populate Raycast
  clipboard history via Clipboard.copy(value) + Clipboard.paste(value)
  instead of just Clipboard.paste(value). The old single-step path
  bypassed history capture.

Domain documentation:
- New CONTEXT.md at the repo root with the glossary of Image, Variant,
  Default Variant, Public URL, Signed URL, Signing Key, Effective
  Signed Mode, Override, Combo-locked commands, and the Raycast
  Quicklinks escape valve for user-defined Override combos.

Testing:
- 14 new smoke tests covering resolveSignedMode (5 cases) and
  resolveVariant (9 cases). Smoke total: 35 to 49 checks, all passing.

READMEs (both root and packages/raycast) restructured around the
4-tier command system (Base / Format-locked / Signed-mode-locked /
Combo-locked) and document the Quicklinks escape valve.

Not shipped yet: this branch is held until PR raycast/extensions#27859
(Initial Version) merges, at which point it ships as v0.5.

@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 6fdfd58 into raycast:main Jun 10, 2026
3 checks passed
@github-actions

Copy link
Copy Markdown
Contributor

Published to the Raycast Store:
https://raycast.com/miguel_caetano_dias/cloudflare-images

@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.

raycastbot added a commit that referenced this pull request Jun 23, 2026
* Update scheduler extension

- Switch scheduler config to ESM and use createdAt for misses
- build: bump npm dependencies
- Update CODEOWNERs (b4acf91)
- Add the-matrix extension (#28886)
- Update CODEOWNERs (5c15f45)
- feat: consolidate osint-toolkit into osint-web-check (#27640)
- Update ente-auth extension (#28930)
- Update CODEOWNERs (a2ebd3e)
- Add cortisol-meter extension (#28351)
- Vietnamese Calendar: 1.3.6 (#28924)
- [Tempo] Enable to set the estimate remaining duration on worklogs (#28928)
- Update CODEOWNERs (dff73f7)
- Add sanity-icons extension (#28259)
- Update CODEOWNERs (9f1f104)
- 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 (585bd9b)
- Add read-my-screen extension (#27208)
- fix(spotify-player): fix stale seek position in menu bar skip/back actions (#28882)
- Update CODEOWNERs (8d430b4)
- [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 (a740106)
- Add raycast-mimo-tts extension (#28369)
- Update CODEOWNERs (9f11843)
- Add kobbe extension (#27829)
- fix(windsurf): support Devin app name after rename (#28868)
- Update CODEOWNERs (86c17ea)
- Add macos-appearance-changer extension (#26310)
- Update CODEOWNERs (2581155)
- Update todoist extension (#28690)
- Add Jellypod to MCP registry (#28853)
- Update gitea extension (#28786)
- Update CODEOWNERs (6408e76)
- Add saasflow extension (#27867)
- Update CODEOWNERs (5e9d319)
- Update ultrahuman-insights extension (#28854)
- Update CODEOWNERs (02fc338)
- feat(ibm-bob): fork cursor-recent-projects extension for IBM Bob (#28494)
- Update android extension (#28867)
- Update CODEOWNERs (d6ded90)
- Update Try extension (#28872)
- Update CODEOWNERs (9020c9d)
- Add move-cursor-next-display extension (#27984)
- Update CODEOWNERs (7def584)
- Add dida365(ticktick for China) extension (#28276)
- Update CODEOWNERs (ea6b73f)
- Update opencode-sessions extension (#28800)
- Update CODEOWNERs (1c52058)
- 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 (3efd692)
- Add asafamos-accessibility-scanner extension (#28600)
- Update CODEOWNERs (e993d92)
- feat(devin): add support for Devin Desktop editor (#28719)
- [Toggl Track] Add Quickstart New Timer command (#28757)
- Update CODEOWNERs (03453d9)
- 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 (c7845a5)
- Update empty-screenshots extension (#27064)
- Update advanced-replace extension (#28815)
- Update CODEOWNERs (3ca64cf)
- World Cup: add menu bar and live score commands (#28810)
- Update CODEOWNERs (750458b)
- Add stefan.imbesi to package.json contributors (#28819)
- Update CODEOWNERs (bce9019)
- Add txtodo extension (#28335)
- Update CODEOWNERs (c3b4130)
- Add mach-triage extension (#28324)
- Update slurm extension (#28803)
- Update CODEOWNERs (431ab51)
- 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 (e81a076)
- 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 (4289a97)
- [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 (f4923fc)
- Update opencode-sessions extension (#28338)
- Update CODEOWNERs (f92001b)
- Update spotify-player extension (#28282)
- Update CODEOWNERs (40d0480)
- 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 (4608149)
- 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 (fe041b6)
- Update leitnerbox extension (#28646)
- style: run prettier (#28783)
- Update CODEOWNERs (a1768ed)
- 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 (dd741ba)
- Add India Toolkit - GST Calculator, IFSC Lookup, Pincode Lookup (#28291)
- Update anytype extension (#28762)
- Update CODEOWNERs (ebd0f10)
- [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 (f27053d)
- Trello: open boards/cards in desktop app on Windows + add Default Open Target preference (#28392)
- Update CODEOWNERs (8a0c111)
- 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 (de55001)
- Add raycast-anime extension (#28281)
- Update word4you extension (#28722)
- Update CODEOWNERs (0fe7238)
- Add raycall extension (#28280)
- Update CODEOWNERs (9b3476d)
- Add list-by-fullforms extension (#28267)
- fix(todoist): omit empty paid task fields (#27991)
- Update CODEOWNERs (1880cc4)
- Add sleevy extension (#28262)
- Add configurable search engine for Dia (#28176)
- Update CODEOWNERs (5410ca5)
- Add is-it-alive extension (#28256)
- Update CODEOWNERs (af51692)
- Add slurm extension (#28235)
- Update CODEOWNERs (a829a55)
- Update microsoft-office extension (#28575)
- Update CODEOWNERs (e784fd3)
- Add figa extension (#28228)
- Update Agent Ecosystem Map branding (#28704)
- Update lockdock extension (#28701)
- Update CODEOWNERs (5844f39)
- Update fingertip extension (#28707)
- myip: remove unused ip dependency (clears CVE-2024-29415) (#28705)
- Update CODEOWNERs (b17804f)
- Add Simple Draw extension (#27905)
- Add OS dropdown to issue template and platform label support (#28136)
- Update CODEOWNERs (928ed51)
- Add rut-generator extension (#28211)
- Update CODEOWNERs (3364b7a)
- 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 (bb29163)
- Add Cobalt Finance extension (#28151)
- Fix UniRate API key signup link (#28663)
- Update CODEOWNERs (81746b1)
- Add TaskTick extension (#27758)
- Update CODEOWNERs (6d37893)
- [Apple Mail] Manually set type of mailbox (#28254)
- Update Quarantine Manager: single command with bulk select (#28685)
- Update CODEOWNERs (66872ff)
- Add shopify-shop extension (#23803)
- fix(linear): move Set Priority shortcut off the Copy Issue ID slot (#28553)
- Update CODEOWNERs (e4b5cc5)
- Add kofa extension (#28207)
- Update CODEOWNERs (5ac4dd0)
- [Messages] Add Pagination, Fix Email Contacts, and Async Issues (#28174)
- Update 42-api extension (#28557)
- Update CODEOWNERs (dffff42)
- Update winget extension (#28191)
- Update CODEOWNERs (fa42227)
- Add tabbit extension (#28178)
- Update CODEOWNERs (6fdfd58)
- Add cloudflare-images extension (#27859)
- [ccusage] Fix usage-limits rate-limit freeze (#28672)
- Update CODEOWNERs (ae4c57d)
- Geforce NOW launcher (#28098)
- Update CODEOWNERs (b7305b5)
- 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 (8cdca41)
- Update linear extension: Add label count preference value (#28623)
- Update CODEOWNERs (8b77f1a)
- Add blackr extension (#27716)
- Update WindowSizer extension (#28652)
- Update CODEOWNERs (808fa2b)
- Add betterstack-utils extension (#27987)
- Update CODEOWNERs (69964cd)
- Add spokenly extension (#28036)
- Fix metadata image validation for Raycast v2 screenshots (#28651)
- Update CODEOWNERs (655dfef)
- Add quick airdrop extension (#28629)
- [Skills] Resolve skill contents for skills in subdirectories (#28648)
- Update CODEOWNERs (99c0c30)
- 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 (48a5db0)
- Add subscription-manager extension (#28138)
- Update vocabuilder extension (#28569)
- Update CODEOWNERs (9a96442)
- Add daytona extension (#27900)
- Update CODEOWNERs (743367d)
- Add bookface extension (#28614)
- Update CODEOWNERs (e51f39d)
- [Apple Notes] Fix Rendering, Async, and Keyboard Shortcut Issues (#28143)
- Update CODEOWNERs (f41092f)
- 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 (b4898b4)
- [Jellyfin] Add windows support (#28595)
- Update raycast-zoxide extension (#28603)
- Update tokentrack extension (#28579)
- [Skills] Add copy skill contents action (#28584)
- Update CODEOWNERs (c371d5c)
- [Coffee] Fix typo in Caffeinate While command description (#28585)
- [Skills] Add icons to skill confirmation dialogs (#28581)
- Update CODEOWNERs (8281529)
- Add yandex-telemost extension (#27899)
- Update CODEOWNERs (49dc7f7)
- Update mail extension (#28566)
- Update CODEOWNERs (e054e70)
- Add wipet extension (#28058)
- Update CODEOWNERs (15db1d6)
- (zen) 🐛 migrate workspace storage from SQLite to zen-sessions.jsonlz4 (#28047)
- Update CODEOWNERs (3783224)
- Add tokentrack extension (#27871)
- Update CODEOWNERs (6f7ff80)
- 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 (c0c2cd6)
- [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 (c120188)
- Add temporal extension (#27980)
- Update CODEOWNERs (95a2ab8)
- Update video-downloader extension (#28534)
- Update gram extension (#28527)
- Update `Porkbun` extension - new command to retrieve account balance (#28551)
- Update CODEOWNERs (6c98335)
- ado-search: add My Work Items command (#28544)
- [Word Search] Respect Use Selection preference (#28011)
- Update CODEOWNERs (c0c656a)
- [blip-raycast] Add Windows cross-platform support (#28540)
- Fix Skills update actions for global installs (#28542)
- Update CODEOWNERs (51e9892)
- Add gitea extension (#27930)
- Update CODEOWNERs (af5b11b)
- Add busycal extension (#26520)
- Improve GIF conversion in yafw (fix palette, add quality/fps/speed/loop) (#28532)
- Update CODEOWNERs (9aadb73)
- 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 (410c3ac)
- Update betterdisplay extension (#28421)
- Update habitica-todos extension (#28045)
- Update CODEOWNERs (07c5527)
- [Display Placer] Fix auto-close after preset loading (#28415)
- Update CODEOWNERs (ca7725d)
- Add Soaring Symbols extensions (#27890)
- Update moneytree extension (#28513)
- Update CODEOWNERs (cb5b870)
- Add EPUB download actions to Anna\'s Archive (#28374)
- Update CODEOWNERs (f9f335c)
- 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 (54c0a6f)
- Update another-boring-piece extension (#28091)
- Update CODEOWNERs (1487e76)
- [Search Router] Make query argument optional to support fallback search (#28474)
- Update CODEOWNERs (85ae365)
- Add wojak-picker extension (#27015)
- [Tempo] Allow setting start and end time of worklogs (#28500)
- Update CODEOWNERs (6174922)
- 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 (f0a7688)
- Add Nibit extension (#27805)
- Update CODEOWNERs (ea516e2)
- 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 (998911f)
- Update gif-search extension (#28251)
- feat(ibm-bob): add support for IBM Bob editor (#28488)
- Update CODEOWNERs (8c4e881)
- [Coffee] Fix menu bar icon refresh after caffeination changes (#28469)
- Update visual-studio-code extension (#28477)
- Update producthunt extension (#28476)
- Update CODEOWNERs (8e5e124)
- feat(skills): add Default Agents preference (#28378)
- Update whois extension (#28475)
- klack: polish stats header and tighten changelog (#28472)
- Update CODEOWNERs (675c6e6)
- Add gist-rocket extension (#28188)
- Ext/game scout (#28439)
- Update leetcode extension (#28432)
- Update CODEOWNERs (1084892)
- [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 (0de1764)
- Update my-ip extension (#27283)
- Update CODEOWNERs (6e640eb)
- Add Harness Control Plane extension (#27231)
- Update CODEOWNERs (a1c8fc5)
- 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 (2b56dcb)
- Add chinese-converter extension (#27610)
- Update CODEOWNERs (7b42404)
- [Tiktoken] Add o200k_base tokenizer support (#28402)
- Update CODEOWNERs (829677d)
- 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 (6c5db01)
- [Slack] Fix slack:// deep links on Windows (#28367)
- Update CODEOWNERs (230c5e5)
- Add notaday extension (#27625)
- Update CODEOWNERs (f4392b7)
- 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 (5e7e76e)
- Add vn-textify extension (#27524)
- Update CODEOWNERs (be6be9b)
- Add minimax-tts extension (#27316)
- Update CODEOWNERs (3a9bc77)
- Add gemini-tts extension (#27612)
- Update CODEOWNERs (aba109c)
- Add terminal-image-paste extension (#27678)
- [Brand Icons] Add support for Raycast beta versions (#28355)
- [Bitwarden] Update CLI version to 2026.4.2 (#28358)
- Update raycast-ollama extension (#28320)
- Update CODEOWNERs (d1f86f0)
- Add utc-workbench extension (#27152)
- Update CODEOWNERs (5c36813)
- Add pinwork extension (#27684)
- Fix useState crash in Withings Sync (sync-to-garmin command) (#28344)
- Update CODEOWNERs (89a6e9e)
- Update dev-servers extension (#28348)
- Granola: Auto-refresh expired tokens and improve error logging (v2.1.4) (#28345)
- Update installed-extensions extension (#28336)
- feat(croc-transfer): add Croc Transfer extension (#27692)
- Update CODEOWNERs (06e4f52)
- Add Bilibili Search extension (#28239)
- Update aws extension (#28252)
- Update dev-servers extension (#28339)
- test (#28334)
- revert test (#28333)
- Update CODEOWNERs (1bff991)
- Update font converter extension (#28305)
- google-chrome-profiles: fix silent failure via detached osascript spawn, fix bookmark crash (#27615)
- test (#28331)
- [Figma] Updated linter (#28329)
- Update CODEOWNERs (f9befa6)
- Zipic: rename, AI Extension, and unified presets (#27650)
- Update CODEOWNERs (64365c1)
- feat: add extension e18e Module Replacements (#27636)
- Update wp-bones extension (#28316)
- Update world-cup extension (#28323)
- Update CODEOWNERs (3f50c6f)
- Add mail-finder extension (#27101)
- Update CODEOWNERs (6337166)
- [Cloudflare] - Improve View Workers command (#28313)
- Update CODEOWNERs (191a3e1)
- Update hakuna extension (#27790)
- Update CODEOWNERs (425388d)
- Apple Developer Docs: filter search history by current query (#28302)
- Update CODEOWNERs (77c3c71)
- Add heyclaude extension (#27505)
- Update git extension (#28205)
- Update dev-servers extension (#28304)
- Update CODEOWNERs (a98c877)
- Fix VSCode Windows recent projects & CLI, WSL, Icon, Shortcut (#27634)
- [GitLab] Add option to hide archived projects in menu bar (#27970)
- Claude/fix figma search extension vi2 cu (#27976)
- [FileZilla] Add support for FileZilla Pro (Mac App Store) (#28268)
- Update CODEOWNERs (26e2007)
- [JetBrains Toolbox Recent Projects] Show current git branch next to projects (#27961)
- Update CODEOWNERs (3193c67)
- Update amphetamine extension (#27701)
- gather: support Gather V2 alongside V1 (#27724)
- Fix VS Code shared storage lookup (#28025)
- Update CODEOWNERs (0d56f75)
- [ccusage] Adopt v20: schema fix and new features (#28299)
- [Open With App] Fix default selection on Raycast 2 (#28295)
- Update list-keyboard-maestro-macros extension (#27893)
- [Things] Add detail view for to-dos (#28298)
- [Git Repos] Reduce scan memory usage (#28054)
- Update another-boring-piece extension (#28208)
- Update CODEOWNERs (f760ec5)
- Update readwise-reader extension (#28264)
- Update CODEOWNERs (c7315aa)
- Add linkace-search extension (#28245)
- Update leafcast extension (#28261)
- Update roblox extension (#28257)
- Buildkite: Build graph view and unblock steps (#28051)
- Update CODEOWNERs (0678565)
- [Windows Terminal] Add Quake Window preference & Fix Administrator issues (#28197)
- [Google Workspace] Guard Drive file list responses (#28061)
- Update CODEOWNERs (2c0fb24)
- Add tablepro extension (#27587)
- Update scheduler extension (#28241)
- Update CODEOWNERs (03dba5d)
- Add copy flight number action (#28249)
- Update CODEOWNERs (d6f0216)
- Add history to word-search (#27575)
- Add Node types and refresh scheduler lockfile
- [Safari] Clarify history permission errors (#28018)
- Update calibre-library extension (#28074)
- set RefreshStatus on all command calls
- fix(scheduler): add missing code changes
- fix: add missing BACKGROUND_REFRESH_STATUS to STORAGE_KEYS
- Pull contributions
- feat: add background refresh status alert to scheduled command form
- Document Raycast 2.0 draft fix
- Fix Raycast drafts for scheduled command creation
- Refresh scheduler lockfile for updated lint stack
- Refactor scheduler configuration UI

* chore(deps): update dependencies in scheduler package
- Downgrade @raycast/api to ^1.104.9 for compatibility issues
- Update cronstrue to ^3.21.0 for new features

* style(scheduler): remove trailing newline in eslint.config.js
- Trim unnecessary whitespace to conform to style guidelines
- Ensure consistent file formatting across the project

* chore(scheduler): update @raycast/api dependency
- Bump version to ^1.104.18 for improved API stability

* Update CHANGELOG.md

---------

Co-authored-by: Charles Symons <dev@realitymanagement.com>
Co-authored-by: Dhruv Suthar <git@dhrv.pw>
Co-authored-by: raycastbot <bot@raycast.com>
almatkai pushed a commit to almatkai/raymes-extensions that referenced this pull request Jul 13, 2026
* Add cloudflare-images extension

- feat: switch Raycast ext from workspace dep to published @mcdays/cloudflare-images-core@^0.0.1
- chore: rename npm scope @mcdays94@mcdays to match npm username
- chore(core): prep @mcdays94/cloudflare-images-core for npm publish
- docs: drop Roadmap section from root README
- docs: trim repo to README + CHANGELOG only; drop footgun / live-api / acknowledgements
- docs: replace em-dashes in READMEs with commas
- docs: hero icon at top of both READMEs + dedicated per-package Raycast README
- feat(raycast): add Store-listing screenshots + credit VS Code original in README
- chore(raycast): Store-submission compliance fixes
- feat(raycast): adopt \'Stack & Cloud\' icon + add eslint flat config
- docs: refresh README, ROADMAP, CHANGELOG + add CI scaffold + HANDOFF
- feat(raycast): v0.4 — close VS Code parity gap (metadata, manual signing key)
- feat(raycast): v0.3.1 — format-locked variants of upload commands
- feat(raycast): v0.3 — Upload Selected File handles multi-select
- fix(core): let callers override the filename sent to Cloudflare for file uploads
- test(core): add api-smoke-test.mjs for live Cloudflare API validation
- test(core): add smoke-test.mjs covering all pure functions
- feat: v0.2.2/v0.2.3/v0.4 — cache fix, my-images search/detail, format arguments
- feat: v0.2.1 — variant dropdown via \'Set Default Variant\' command
- refactor: rename CF Images → Cloudflare Images across the monorepo
- feat(raycast): v0.2 — Upload Clipboard Image, working end-to-end
- docs: explain Raycast preference persistence and the rename footgun
- chore: initial scaffold for cf-images-tools monorepo

* fix(raycast): make extension dir self-contained for Raycast CI sparse checkout

* fix(raycast): address Greptile review on PR raycast#27859

* fix(raycast): remove [Unreleased] section from CHANGELOG so [0.4.0] is the latest

* Update cloudflare-images extension

- fix(raycast): address 0xdhrv review on PR raycast#27859
- fix(ci): run ray build BEFORE typecheck so raycast-env.d.ts exists
- fix(ci): scope rename @mcdays94@mcdays missed our own workflow file
- chore: gitignore local-only working docs (resume.md, HANDOFF.md, NOTES.md)

* Update cloudflare-images extension

- docs(changelog): fold v0.5 signed/public + combo work into [Initial Version]
- feat: per-invocation Signed/Public override + format-signed combos

* chore: release core 0.1.0 and bump Raycast dep to ^0.1.0

* feat(raycast): Refresh Signing Key action + recategorise to Media

* Update CHANGELOG.md and optimise images

---------

Co-authored-by: raycastbot <bot@raycast.com>
almatkai pushed a commit to almatkai/raymes-extensions that referenced this pull request Jul 13, 2026
* Update scheduler extension

- Switch scheduler config to ESM and use createdAt for misses
- build: bump npm dependencies
- Update CODEOWNERs (b4acf91)
- Add the-matrix extension (raycast#28886)
- Update CODEOWNERs (5c15f45)
- feat: consolidate osint-toolkit into osint-web-check (raycast#27640)
- Update ente-auth extension (raycast#28930)
- Update CODEOWNERs (a2ebd3e)
- Add cortisol-meter extension (raycast#28351)
- Vietnamese Calendar: 1.3.6 (raycast#28924)
- [Tempo] Enable to set the estimate remaining duration on worklogs (raycast#28928)
- Update CODEOWNERs (dff73f7)
- Add sanity-icons extension (raycast#28259)
- Update CODEOWNERs (9f1f104)
- Add JSON to GCF Converter extension (raycast#28877)
- Warp: Scope Open Directory search to configurable root folders (raycast#28860)
- Orion: fix Search Tabs showing no open tabs (raycast#28911)
- [Visual Studio Code] Revert: Open Windows projects through editor URLs (raycast#28913)
- Update CODEOWNERs (585bd9b)
- Add read-my-screen extension (raycast#27208)
- fix(spotify-player): fix stale seek position in menu bar skip/back actions (raycast#28882)
- Update CODEOWNERs (8d430b4)
- [Color Picker] Fix oversized and clipped Color Wheel preview (raycast#28888)
- fix(todoist): guard against empty sync response arrays (raycast#28881)
- Update tasklink extension (raycast#28898)
- fix(grafana): use encodeURIComponent for Explore link panes parameter (raycast#28883)
- Update raycast-mimo-tts extension (raycast#28894)
- World Cup: limit menu bar dropdown to a day window around today (raycast#28895)
- [iTerm] Fix profile parsing for plists with Infinity floats (raycast#28865)
- fix(nextcloud): use correct URL format for opening files (raycast#28869)
- Update CODEOWNERs (a740106)
- Add raycast-mimo-tts extension (raycast#28369)
- Update CODEOWNERs (9f11843)
- Add kobbe extension (raycast#27829)
- fix(windsurf): support Devin app name after rename (raycast#28868)
- Update CODEOWNERs (86c17ea)
- Add macos-appearance-changer extension (raycast#26310)
- Update CODEOWNERs (2581155)
- Update todoist extension (raycast#28690)
- Add Jellypod to MCP registry (raycast#28853)
- Update gitea extension (raycast#28786)
- Update CODEOWNERs (6408e76)
- Add saasflow extension (raycast#27867)
- Update CODEOWNERs (5e9d319)
- Update ultrahuman-insights extension (raycast#28854)
- Update CODEOWNERs (02fc338)
- feat(ibm-bob): fork cursor-recent-projects extension for IBM Bob (raycast#28494)
- Update android extension (raycast#28867)
- Update CODEOWNERs (d6ded90)
- Update Try extension (raycast#28872)
- Update CODEOWNERs (9020c9d)
- Add move-cursor-next-display extension (raycast#27984)
- Update CODEOWNERs (7def584)
- Add dida365(ticktick for China) extension (raycast#28276)
- Update CODEOWNERs (ea6b73f)
- Update opencode-sessions extension (raycast#28800)
- Update CODEOWNERs (1c52058)
- Add Ultrahuman Insights extension (raycast#27907)
- toggl-track: Add sum of duration of the running entry\'s project to menu bar (raycast#28843)
- Update Vim Leader Key (raycast#28842)
- Update translate extension (raycast#28831)
- Update qbittorrent (raycast#28844)
- Update linear extension (raycast#28677)
- Update world-cup extension (raycast#28829)
- Update CODEOWNERs (3efd692)
- Add asafamos-accessibility-scanner extension (raycast#28600)
- Update CODEOWNERs (e993d92)
- feat(devin): add support for Devin Desktop editor (raycast#28719)
- [Toggl Track] Add Quickstart New Timer command (raycast#28757)
- Update CODEOWNERs (03453d9)
- Fuzzy File Search: add -d/-f directives for directory and file search (raycast#28794)
- Add Slack thread reader tool (raycast#28816)
- [Visual Studio Code] Open Windows projects through editor URLs (raycast#28072)
- Update CODEOWNERs (c7845a5)
- Update empty-screenshots extension (raycast#27064)
- Update advanced-replace extension (raycast#28815)
- Update CODEOWNERs (3ca64cf)
- World Cup: add menu bar and live score commands (raycast#28810)
- Update CODEOWNERs (750458b)
- Add stefan.imbesi to package.json contributors (raycast#28819)
- Update CODEOWNERs (bce9019)
- Add txtodo extension (raycast#28335)
- Update CODEOWNERs (c3b4130)
- Add mach-triage extension (raycast#28324)
- Update slurm extension (raycast#28803)
- Update CODEOWNERs (431ab51)
- Update wordreference extension (raycast#28694)
- Add Olostep entry to built-in registries (raycast#28667)
- Update Quarantine Manager: multi-target selection with one admin prompt (raycast#28806)
- Update skills extension (raycast#28795)
- Update CODEOWNERs (e81a076)
- fix(iterm): Load profiles when entire prefs plist cannot convert as JSON (raycast#28723)
- Fix discogs extension data display issues (raycast#28760)
- [GitLab] Reduce MR list detail memory usage (raycast#28767)
- Update CODEOWNERs (4289a97)
- [Crypto Price] Add multi-source failover (fixes broken CryptoCompare default) (raycast#28796)
- [Apple Reminders] Tighten optional reminder tool fields (raycast#28772)
- Add OptionsAhoy to MCP Registry (raycast#28744)
- Update CODEOWNERs (f4923fc)
- Update opencode-sessions extension (raycast#28338)
- Update CODEOWNERs (f92001b)
- Update spotify-player extension (raycast#28282)
- Update CODEOWNERs (40d0480)
- Update raycast-store-updates extension (raycast#28774)
- [Agent Usage] Respect CLAUDE_CONFIG_DIR for credentials (raycast#28785)
- Update raycast-ollama extension (raycast#28791)
- Remo: note editing, AI Extension, and performance (raycast#28787)
- Update CODEOWNERs (4608149)
- Cursor: Add Show Active Workspaces command (raycast#26260)
- chore: update scheme to support for raycast beta (raycast#28576)
- Add "Open File URL from Clipboard" command to figma-files extension (raycast#28709)
- ado-search: customisable work item state order (raycast#28784)
- Update CODEOWNERs (fe041b6)
- Update leitnerbox extension (raycast#28646)
- style: run prettier (raycast#28783)
- Update CODEOWNERs (a1768ed)
- Add Commit Streak extension (raycast#26537)
- [Music] Fix album search by artist (raycast#28781)
- [HTTP Status Codes] Fix section label overflow (raycast#28779)
- ado-search: add Windows support (raycast#28782)
- Update CODEOWNERs (dd741ba)
- Add India Toolkit - GST Calculator, IFSC Lookup, Pincode Lookup (raycast#28291)
- Update anytype extension (raycast#28762)
- Update CODEOWNERs (ebd0f10)
- [Monocle] Add commands for app v3.5.1 (raycast#28215)
- Update crypto-price extension (raycast#28592)
- [1Password] Reduce memory usage for large item lists (raycast#28055)
- [amphetamine] Forget "Until Time" dates (raycast#28734)
- Update nixpkgs-search extension (raycast#28773)
- [Apple Mail] Escape compose AppleScript strings (raycast#28776)
- Update lotus-mtg-companion extension (raycast#28404)
- Update CODEOWNERs (f27053d)
- Trello: open boards/cards in desktop app on Windows + add Default Open Target preference (raycast#28392)
- Update CODEOWNERs (8a0c111)
- Update microsoft-teams extension (raycast#28388)
- Improve Kalshi market discovery and detail views (raycast#28687)
- Fix Windows Terminal SSH profile launch (raycast#28193)
- Update quick-git extension (raycast#28770)
- Update list-by-fullforms extension (raycast#28755)
- [Copy Notion Markdown Link] Fix URL validation for notion.com domain (raycast#28741)
- [Slack] Fix Set Status deep link erroring on raw emoji (raycast#28728)
- Update CODEOWNERs (de55001)
- Add raycast-anime extension (raycast#28281)
- Update word4you extension (raycast#28722)
- Update CODEOWNERs (0fe7238)
- Add raycall extension (raycast#28280)
- Update CODEOWNERs (9b3476d)
- Add list-by-fullforms extension (raycast#28267)
- fix(todoist): omit empty paid task fields (raycast#27991)
- Update CODEOWNERs (1880cc4)
- Add sleevy extension (raycast#28262)
- Add configurable search engine for Dia (raycast#28176)
- Update CODEOWNERs (5410ca5)
- Add is-it-alive extension (raycast#28256)
- Update CODEOWNERs (af51692)
- Add slurm extension (raycast#28235)
- Update CODEOWNERs (a829a55)
- Update microsoft-office extension (raycast#28575)
- Update CODEOWNERs (e784fd3)
- Add figa extension (raycast#28228)
- Update Agent Ecosystem Map branding (raycast#28704)
- Update lockdock extension (raycast#28701)
- Update CODEOWNERs (5844f39)
- Update fingertip extension (raycast#28707)
- myip: remove unused ip dependency (clears CVE-2024-29415) (raycast#28705)
- Update CODEOWNERs (b17804f)
- Add Simple Draw extension (raycast#27905)
- Add OS dropdown to issue template and platform label support (raycast#28136)
- Update CODEOWNERs (928ed51)
- Add rut-generator extension (raycast#28211)
- Update CODEOWNERs (3364b7a)
- Update wordreference extension (raycast#28633)
- Update Sublime extension to use new v3 endpoints (raycast#28383)
- Update whmcs-client-search extension (raycast#28686)
- Update stock-tracker extension (raycast#28658)
- Update CODEOWNERs (bb29163)
- Add Cobalt Finance extension (raycast#28151)
- Fix UniRate API key signup link (raycast#28663)
- Update CODEOWNERs (81746b1)
- Add TaskTick extension (raycast#27758)
- Update CODEOWNERs (6d37893)
- [Apple Mail] Manually set type of mailbox (raycast#28254)
- Update Quarantine Manager: single command with bulk select (raycast#28685)
- Update CODEOWNERs (66872ff)
- Add shopify-shop extension (raycast#23803)
- fix(linear): move Set Priority shortcut off the Copy Issue ID slot (raycast#28553)
- Update CODEOWNERs (e4b5cc5)
- Add kofa extension (raycast#28207)
- Update CODEOWNERs (5ac4dd0)
- [Messages] Add Pagination, Fix Email Contacts, and Async Issues (raycast#28174)
- Update 42-api extension (raycast#28557)
- Update CODEOWNERs (dffff42)
- Update winget extension (raycast#28191)
- Update CODEOWNERs (fa42227)
- Add tabbit extension (raycast#28178)
- Update CODEOWNERs (6fdfd58)
- Add cloudflare-images extension (raycast#27859)
- [ccusage] Fix usage-limits rate-limit freeze (raycast#28672)
- Update CODEOWNERs (ae4c57d)
- Geforce NOW launcher (raycast#28098)
- Update CODEOWNERs (b7305b5)
- Add greptile extension (raycast#28650)
- Update dev-servers extension (raycast#28673)
- Update no-more-caffeine(Fix blank caffeine amount on initial open) (raycast#28671)
- [Slack] Add deep link arguments to Set Status (raycast#28669)
- Update CODEOWNERs (8cdca41)
- Update linear extension: Add label count preference value (raycast#28623)
- Update CODEOWNERs (8b77f1a)
- Add blackr extension (raycast#27716)
- Update WindowSizer extension (raycast#28652)
- Update CODEOWNERs (808fa2b)
- Add betterstack-utils extension (raycast#27987)
- Update CODEOWNERs (69964cd)
- Add spokenly extension (raycast#28036)
- Fix metadata image validation for Raycast v2 screenshots (raycast#28651)
- Update CODEOWNERs (655dfef)
- Add quick airdrop extension (raycast#28629)
- [Skills] Resolve skill contents for skills in subdirectories (raycast#28648)
- Update CODEOWNERs (99c0c30)
- feat(large-type): Add Show Selected Text command (raycast#28627)
- fix(superwhisper): apply recordingDir preference to copy/paste commands (raycast#28635)
- fix(superwhisper): paginate history loading to prevent memory crash (raycast#28634)
- feat: update e18e replacement data (raycast#28589)
- Update universal-inbox extension (raycast#28621)
- Rename `Brand.dev` extension to `Context.dev` (raycast#28644)
- Update quarantine-manager extension (raycast#28620)
- Update `MXroute` extension - add Action to remove domain (raycast#28625)
- Update CODEOWNERs (48a5db0)
- Add subscription-manager extension (raycast#28138)
- Update vocabuilder extension (raycast#28569)
- Update CODEOWNERs (9a96442)
- Add daytona extension (raycast#27900)
- Update CODEOWNERs (743367d)
- Add bookface extension (raycast#28614)
- Update CODEOWNERs (e51f39d)
- [Apple Notes] Fix Rendering, Async, and Keyboard Shortcut Issues (raycast#28143)
- Update CODEOWNERs (f41092f)
- Update zed-recent-projects extension (raycast#28562)
- Update tokentrack extension (raycast#28596)
- feat(heyclaude): add discovery commands (raycast#28605)
- [QR Code Generator] Fix "[object Object]" error and add color, icons, link shortening & UTM  (raycast#28599)
- Update CODEOWNERs (b4898b4)
- [Jellyfin] Add windows support (raycast#28595)
- Update raycast-zoxide extension (raycast#28603)
- Update tokentrack extension (raycast#28579)
- [Skills] Add copy skill contents action (raycast#28584)
- Update CODEOWNERs (c371d5c)
- [Coffee] Fix typo in Caffeinate While command description (raycast#28585)
- [Skills] Add icons to skill confirmation dialogs (raycast#28581)
- Update CODEOWNERs (8281529)
- Add yandex-telemost extension (raycast#27899)
- Update CODEOWNERs (49dc7f7)
- Update mail extension (raycast#28566)
- Update CODEOWNERs (e054e70)
- Add wipet extension (raycast#28058)
- Update CODEOWNERs (15db1d6)
- (zen) 🐛 migrate workspace storage from SQLite to zen-sessions.jsonlz4 (raycast#28047)
- Update CODEOWNERs (3783224)
- Add tokentrack extension (raycast#27871)
- Update CODEOWNERs (6f7ff80)
- Add imgbed-uploader extension (raycast#28042)
- Misc: Update some dependencies (raycast#28573)
- GIF Search: add direct Browse Favorite GIFs and Browse Recent GIFs commands (raycast#28564)
- Update CODEOWNERs (c0c2cd6)
- [Karakeep] Fix bookmark preview image rendering (raycast#28543)
- [Visual Studio Code] Resolve Code installs in user Applications (raycast#28003)
- [Tempo] Add autoFocus on time spent field (raycast#28570)
- Update gram extension (raycast#28563)
- Update CODEOWNERs (c120188)
- Add temporal extension (raycast#27980)
- Update CODEOWNERs (95a2ab8)
- Update video-downloader extension (raycast#28534)
- Update gram extension (raycast#28527)
- Update `Porkbun` extension - new command to retrieve account balance (raycast#28551)
- Update CODEOWNERs (6c98335)
- ado-search: add My Work Items command (raycast#28544)
- [Word Search] Respect Use Selection preference (raycast#28011)
- Update CODEOWNERs (c0c656a)
- [blip-raycast] Add Windows cross-platform support (raycast#28540)
- Fix Skills update actions for global installs (raycast#28542)
- Update CODEOWNERs (51e9892)
- Add gitea extension (raycast#27930)
- Update CODEOWNERs (af5b11b)
- Add busycal extension (raycast#26520)
- Improve GIF conversion in yafw (fix palette, add quality/fps/speed/loop) (raycast#28532)
- Update CODEOWNERs (9aadb73)
- Allow Metube on Raycast for Windows (raycast#28531)
- things: restore Cmd-Return to Mark as Completed on list rows (raycast#28533)
- Update moneytree extension (raycast#28526)
- Chore(deps): bump openssl in /extensions/lunaris/rust (raycast#28525)
- Update moneytree extension (raycast#28516)
- Memo: Fix axios vulnerability (raycast#28522)
- Update CODEOWNERs (410c3ac)
- Update betterdisplay extension (raycast#28421)
- Update habitica-todos extension (raycast#28045)
- Update CODEOWNERs (07c5527)
- [Display Placer] Fix auto-close after preset loading (raycast#28415)
- Update CODEOWNERs (ca7725d)
- Add Soaring Symbols extensions (raycast#27890)
- Update moneytree extension (raycast#28513)
- Update CODEOWNERs (cb5b870)
- Add EPUB download actions to Anna\'s Archive (raycast#28374)
- Update CODEOWNERs (f9f335c)
- Slack: Update message history to fallback to attachment text (raycast#28509)
- Add VC Deal Flow Signal MCP server to model-context-protocol-registry (raycast#28376)
- Update CODEOWNERs (54c0a6f)
- Update another-boring-piece extension (raycast#28091)
- Update CODEOWNERs (1487e76)
- [Search Router] Make query argument optional to support fallback search (raycast#28474)
- Update CODEOWNERs (85ae365)
- Add wojak-picker extension (raycast#27015)
- [Tempo] Allow setting start and end time of worklogs (raycast#28500)
- Update CODEOWNERs (6174922)
- Add arcane-wallpaper extension (raycast#28451)
- [ccusage] Tolerate sessions with no activity date (raycast#28502)
- [WordReference Dictionary Translation] Handle WordReference HTTP errors (raycast#28418)
- Fix Pivot preset editor heap spike (raycast#28495)
- Fix shell quoting issues in GitHub Actions workflows
- Fix issue-bot workflow condition expression
- Update CODEOWNERs (f0a7688)
- Add Nibit extension (raycast#27805)
- Update CODEOWNERs (ea516e2)
- Add lockdock extension (raycast#27768)
- Handle Forked Extensions git index locks (raycast#28187)
- [ccusage] Add monochrome menu bar icon option (raycast#27996)
- chore: update stale duration (raycast#28491)
- Add GitHub Actions workflow for metadata image validation (raycast#27714)
- Update CODEOWNERs (998911f)
- Update gif-search extension (raycast#28251)
- feat(ibm-bob): add support for IBM Bob editor (raycast#28488)
- Update CODEOWNERs (8c4e881)
- [Coffee] Fix menu bar icon refresh after caffeination changes (raycast#28469)
- Update visual-studio-code extension (raycast#28477)
- Update producthunt extension (raycast#28476)
- Update CODEOWNERs (8e5e124)
- feat(skills): add Default Agents preference (raycast#28378)
- Update whois extension (raycast#28475)
- klack: polish stats header and tighten changelog (raycast#28472)
- Update CODEOWNERs (675c6e6)
- Add gist-rocket extension (raycast#28188)
- Ext/game scout (raycast#28439)
- Update leetcode extension (raycast#28432)
- Update CODEOWNERs (1084892)
- [Obsidian Tasks] Add Quick Add Task command (raycast#27785)
- Update joey-vocab extension (raycast#28465)
- Update vocabuilder extension (raycast#28283)
- Update Plexus: Windows + WSL support, detect all localhost web servers (raycast#28459)
- Update producthunt extension (raycast#28445)
- Update dev-servers extension (raycast#28419)
- [Hue] Bug fixes and improvements (raycast#28412)
- Update CODEOWNERs (0de1764)
- Update my-ip extension (raycast#27283)
- Update CODEOWNERs (6e640eb)
- Add Harness Control Plane extension (raycast#27231)
- Update CODEOWNERs (a1c8fc5)
- Add Pivot extension (raycast#27753)
- fix(clip): handle history errors gracefully in URL shortener (raycast#28458)
- Update phare.io logo (raycast#28453)
- [Team Time] Use Hong Kong and Macau ISO codes for their own flags (raycast#28425)
- Update CODEOWNERs (2b56dcb)
- Add chinese-converter extension (raycast#27610)
- Update CODEOWNERs (7b42404)
- [Tiktoken] Add o200k_base tokenizer support (raycast#28402)
- Update CODEOWNERs (829677d)
- Add Mouse Jiggle extension (raycast#27745)
- [Port Manager] Fix lsof process leaks (raycast#28222)
- feat(granola): prefix exports with sortable date (raycast#28394)
- Keep Bitwarden session active after sync failures (raycast#28150)
- Fix 2FA link URL validation (raycast#28158)
- Update GitHub extension Raycast SDK (raycast#28185)
- Docs: update for the new API release
- [Quit Applications] Handle app discovery timeouts (raycast#28012)
- [Google Chrome] Reset stale profile selection (raycast#28015)
- Fix Copy Path for VS Code active files (raycast#28145)
- Update unsplash extension (raycast#28379)
- Fix JWT Decoder React peer versions (raycast#28022)
- [Todoist] Reduce Menu Bar Tasks sync size (raycast#28005)
- [Toggle Desktop Visibility] Fix Tahoe icon toggling (raycast#28009)
- [Spotify Player] Guard podcast episode navigation (raycast#28063)
- [Jira Search] Surface issue search auth errors (raycast#28053)
- Support Antigravity IDE 2.0 paths (raycast#28152)
- Fix Messages chat list memory usage (raycast#28156)
- [Warp] Add Tab Config support (raycast#28165)
- [Finder File Actions] Add custom names for pinned folders (raycast#28164)
- Update prompt stash extension (raycast#28382)
- [DevUtils] Handle missing app installs (raycast#28170)
- [Sentry] Guard issue details without stack frames (raycast#28056)
- [Espanso] Reduce Search Matches memory usage (raycast#28004)
- [Kill Process] Prevent background refresh timeout errors (raycast#28010)
- [Hide Files] Fix path handling for visibility toggles (raycast#28008)
- Add Edit in iTerm open behavior (raycast#28161)
- [cmux] Improve workspace search metadata (raycast#28163)
- [Terminal Finder] Improve cmux socket error (raycast#28013)
- Add task snooze actions to Reclaim (raycast#28173)
- Add Helium support to Browser History (raycast#28180)
- Fix iMessage Time Sensitive code detection (raycast#28183)
- Update apfel extension (raycast#28375)
- Update vercast extension (raycast#28370)
- Update GetNote Extention (raycast#28361)
- Update CODEOWNERs (6c5db01)
- [Slack] Fix slack:// deep links on Windows (raycast#28367)
- Update CODEOWNERs (230c5e5)
- Add notaday extension (raycast#27625)
- Update CODEOWNERs (f4392b7)
- Add discussite extension (raycast#27486)
- [Audio Device] Restore enforce command notifications (raycast#28017)
- chore: add readme (raycast#28364)
- Update awork extension (raycast#28337)
- Update lastfm extension (raycast#28350)
- Update CODEOWNERs (5e7e76e)
- Add vn-textify extension (raycast#27524)
- Update CODEOWNERs (be6be9b)
- Add minimax-tts extension (raycast#27316)
- Update CODEOWNERs (3a9bc77)
- Add gemini-tts extension (raycast#27612)
- Update CODEOWNERs (aba109c)
- Add terminal-image-paste extension (raycast#27678)
- [Brand Icons] Add support for Raycast beta versions (raycast#28355)
- [Bitwarden] Update CLI version to 2026.4.2 (raycast#28358)
- Update raycast-ollama extension (raycast#28320)
- Update CODEOWNERs (d1f86f0)
- Add utc-workbench extension (raycast#27152)
- Update CODEOWNERs (5c36813)
- Add pinwork extension (raycast#27684)
- Fix useState crash in Withings Sync (sync-to-garmin command) (raycast#28344)
- Update CODEOWNERs (89a6e9e)
- Update dev-servers extension (raycast#28348)
- Granola: Auto-refresh expired tokens and improve error logging (v2.1.4) (raycast#28345)
- Update installed-extensions extension (raycast#28336)
- feat(croc-transfer): add Croc Transfer extension (raycast#27692)
- Update CODEOWNERs (06e4f52)
- Add Bilibili Search extension (raycast#28239)
- Update aws extension (raycast#28252)
- Update dev-servers extension (raycast#28339)
- test (raycast#28334)
- revert test (raycast#28333)
- Update CODEOWNERs (1bff991)
- Update font converter extension (raycast#28305)
- google-chrome-profiles: fix silent failure via detached osascript spawn, fix bookmark crash (raycast#27615)
- test (raycast#28331)
- [Figma] Updated linter (raycast#28329)
- Update CODEOWNERs (f9befa6)
- Zipic: rename, AI Extension, and unified presets (raycast#27650)
- Update CODEOWNERs (64365c1)
- feat: add extension e18e Module Replacements (raycast#27636)
- Update wp-bones extension (raycast#28316)
- Update world-cup extension (raycast#28323)
- Update CODEOWNERs (3f50c6f)
- Add mail-finder extension (raycast#27101)
- Update CODEOWNERs (6337166)
- [Cloudflare] - Improve View Workers command (raycast#28313)
- Update CODEOWNERs (191a3e1)
- Update hakuna extension (raycast#27790)
- Update CODEOWNERs (425388d)
- Apple Developer Docs: filter search history by current query (raycast#28302)
- Update CODEOWNERs (77c3c71)
- Add heyclaude extension (raycast#27505)
- Update git extension (raycast#28205)
- Update dev-servers extension (raycast#28304)
- Update CODEOWNERs (a98c877)
- Fix VSCode Windows recent projects & CLI, WSL, Icon, Shortcut (raycast#27634)
- [GitLab] Add option to hide archived projects in menu bar (raycast#27970)
- Claude/fix figma search extension vi2 cu (raycast#27976)
- [FileZilla] Add support for FileZilla Pro (Mac App Store) (raycast#28268)
- Update CODEOWNERs (26e2007)
- [JetBrains Toolbox Recent Projects] Show current git branch next to projects (raycast#27961)
- Update CODEOWNERs (3193c67)
- Update amphetamine extension (raycast#27701)
- gather: support Gather V2 alongside V1 (raycast#27724)
- Fix VS Code shared storage lookup (raycast#28025)
- Update CODEOWNERs (0d56f75)
- [ccusage] Adopt v20: schema fix and new features (raycast#28299)
- [Open With App] Fix default selection on Raycast 2 (raycast#28295)
- Update list-keyboard-maestro-macros extension (raycast#27893)
- [Things] Add detail view for to-dos (raycast#28298)
- [Git Repos] Reduce scan memory usage (raycast#28054)
- Update another-boring-piece extension (raycast#28208)
- Update CODEOWNERs (f760ec5)
- Update readwise-reader extension (raycast#28264)
- Update CODEOWNERs (c7315aa)
- Add linkace-search extension (raycast#28245)
- Update leafcast extension (raycast#28261)
- Update roblox extension (raycast#28257)
- Buildkite: Build graph view and unblock steps (raycast#28051)
- Update CODEOWNERs (0678565)
- [Windows Terminal] Add Quake Window preference & Fix Administrator issues (raycast#28197)
- [Google Workspace] Guard Drive file list responses (raycast#28061)
- Update CODEOWNERs (2c0fb24)
- Add tablepro extension (raycast#27587)
- Update scheduler extension (raycast#28241)
- Update CODEOWNERs (03dba5d)
- Add copy flight number action (raycast#28249)
- Update CODEOWNERs (d6f0216)
- Add history to word-search (raycast#27575)
- Add Node types and refresh scheduler lockfile
- [Safari] Clarify history permission errors (raycast#28018)
- Update calibre-library extension (raycast#28074)
- set RefreshStatus on all command calls
- fix(scheduler): add missing code changes
- fix: add missing BACKGROUND_REFRESH_STATUS to STORAGE_KEYS
- Pull contributions
- feat: add background refresh status alert to scheduled command form
- Document Raycast 2.0 draft fix
- Fix Raycast drafts for scheduled command creation
- Refresh scheduler lockfile for updated lint stack
- Refactor scheduler configuration UI

* chore(deps): update dependencies in scheduler package
- Downgrade @raycast/api to ^1.104.9 for compatibility issues
- Update cronstrue to ^3.21.0 for new features

* style(scheduler): remove trailing newline in eslint.config.js
- Trim unnecessary whitespace to conform to style guidelines
- Ensure consistent file formatting across the project

* chore(scheduler): update @raycast/api dependency
- Bump version to ^1.104.18 for improved API stability

* Update CHANGELOG.md

---------

Co-authored-by: Charles Symons <dev@realitymanagement.com>
Co-authored-by: Dhruv Suthar <git@dhrv.pw>
Co-authored-by: raycastbot <bot@raycast.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

new extension Label for PRs with new extensions platform: macOS

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants