원클릭으로
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