Upload, manage, and serve images from your coding workflow — right inside Claude Code.
PixelVault is agent-first image hosting for developers and AI coding agents. This skill lets Claude upload screenshots, diagrams, and generated images to PixelVault and get instant CDN URLs back.
| Skill | Description |
|---|---|
/pixelvault-upload <file> |
Upload image(s) and get CDN URLs |
/pixelvault-setup |
Install CLI and configure API key |
/pixelvault-list |
List recently uploaded images |
- Install the skill in Claude Code
- Run
/pixelvault-setupto configure your API key - Upload images with
/pixelvault-upload screenshot.png
The skill wraps the PixelVault CLI. When you (or Claude) upload an image:
- Image is uploaded to PixelVault's edge infrastructure
- Stored on Cloudflare R2 (zero egress fees)
- Served globally via Cloudflare CDN
- You get a permanent URL like
https://img.pixelvault.dev/proj_abc/img_xyz.png
- Node.js 20+
- A PixelVault account (free tier: 100 images, 5 MB per file)
> /pixelvault-upload screenshot.png
Uploaded: https://img.pixelvault.dev/proj_abc/img_xyz.png
> /pixelvault-upload *.png --folder diagrams
Uploaded: https://img.pixelvault.dev/proj_abc/img_001.png
Uploaded: https://img.pixelvault.dev/proj_abc/img_002.png
> /pixelvault-list --json
[{ "id": "img_xyz", "url": "https://...", "size": 45200, ... }]
- PixelVault — Landing page
- API Docs — Full API reference
- CLI — CLI on npm
- OpenAPI Spec — Machine-readable API spec
MIT