Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions extensions/quickpic/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# IDE files
.idea/

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift
compiled_raycast_rust

# misc
.DS_Store
5 changes: 5 additions & 0 deletions extensions/quickpic/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"singleQuote": false,
"semi": true,
"printWidth": 120
}
5 changes: 5 additions & 0 deletions extensions/quickpic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## [Initial Release] - {PR_MERGE_DATE}

- Add a searchable QuickPic library for saved images.
- Add image import from a file picker or the current Finder selection.
- Add file-based paste and clipboard actions for sharing images in any app.
21 changes: 21 additions & 0 deletions extensions/quickpic/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 Anton Kuznetsov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
26 changes: 26 additions & 0 deletions extensions/quickpic/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# QuickPic

QuickPic is a Raycast extension that lets you save images under keywords and later paste them as files into any app.

## Commands

- `QuickPic Library`: search your saved images and paste or copy them as files
- `Add Image`: import an image from a local path
- `Add Selected Finder Image`: import the currently selected Finder image using command arguments

## How it works

- Imported image files are copied into the extension support directory (`environment.supportPath`)
- Metadata is stored in Raycast Local Storage as a JSON index
- Pasting uses Raycast's Clipboard API with `{ file: ... }`, so target apps receive an actual file attachment

## Development

According to the current Raycast docs, extension development requires Node.js 22.14 or higher.

```bash
npm install
npm run dev
```

Then use Raycast's `Import Extension` command and point it at this folder if Raycast does not auto-import it during development.
Binary file added extensions/quickpic/assets/quickpic-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions extensions/quickpic/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
const { defineConfig } = require("eslint/config");
const raycastConfig = require("@raycast/eslint-config");

module.exports = defineConfig(raycastConfig.flat());
Binary file added extensions/quickpic/metadata/quickpic-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/quickpic/metadata/quickpic-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading