$npx -y skills add SafeAI-Lab-X/ClawKeeper --skill camsnapCapture frames or clips from RTSP/ONVIF cameras.
| 1 | # camsnap |
| 2 | |
| 3 | Use `camsnap` to grab snapshots, clips, or motion events from configured cameras. |
| 4 | |
| 5 | Setup |
| 6 | |
| 7 | - Config file: `~/.config/camsnap/config.yaml` |
| 8 | - Add camera: `camsnap add --name kitchen --host 192.168.0.10 --user user --pass pass` |
| 9 | |
| 10 | Common commands |
| 11 | |
| 12 | - Discover: `camsnap discover --info` |
| 13 | - Snapshot: `camsnap snap kitchen --out shot.jpg` |
| 14 | - Clip: `camsnap clip kitchen --dur 5s --out clip.mp4` |
| 15 | - Motion watch: `camsnap watch kitchen --threshold 0.2 --action '...'` |
| 16 | - Doctor: `camsnap doctor --probe` |
| 17 | |
| 18 | Notes |
| 19 | |
| 20 | - Requires `ffmpeg` on PATH. |
| 21 | - Prefer a short test capture before longer clips. |