بنقرة واحدة
camsnap
Screen and camera capture for screenshots and webcam snapshots
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Screen and camera capture for screenshots and webcam snapshots
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create new Kirie skills interactively. Use when learning something new that should become a reusable skill.
Retrieve secrets from 1Password vaults via the CLI
Create and search Apple Notes via AppleScript
Create and manage Apple Reminders via AppleScript
Create and search notes in Bear on macOS
Monitor RSS feeds and blogs for new posts
| name | camsnap |
| description | Screen and camera capture for screenshots and webcam snapshots |
| emoji | 📷 |
| version | 1.0.0 |
| os | ["darwin","linux"] |
| invocation | {"userInvocable":true} |
Capture screenshots of the screen or specific windows, and take snapshots from a connected camera/webcam.
Uses platform-native screen capture tools and optional camera utilities to produce image files.
screencapture command.
screencapture output.pngscreencapture -w output.pngscreencapture -R x,y,w,h output.pngscreencapture -D <display_id> output.pngimagesnap to capture a frame from the default or a specified camera device.
imagesnap output.jpgimagesnap -lscrot or ImageMagick import.
scrot output.pngscrot -u output.pngimport -window root -crop WxH+X+Y output.pngscrot -s output.pngffmpeg to grab a single frame from a video device.
ffmpeg -f v4l2 -i /dev/video0 -frames:v 1 output.jpgv4l2-ctl --list-devicesAll captured images are saved to the current working directory or a specified path.
screencapture is built-in. For camera capture, install imagesnap:
brew install imagesnap
Install one of the screenshot tools and optionally ffmpeg for camera:
sudo apt install scrot ffmpeg