# Pixelvault List

> List recently uploaded images on PixelVault with their CDN URLs. Use when the user asks to "see my uploads", "find that image URL", "what images have I hosted", "list my PixelVault images", or needs the link to a previously uploaded image.

- Skill: `pixelvault-dev/pixelvault-list` (Agent Skill)
- Install (CLI): `npx skillmds@latest add pixelvault-dev/pixelvault-list`
- Raw SKILL.md: https://api.skillmd.com/api/skills/pixelvault-dev/pixelvault-list/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: pixelvault-dev (https://skillmd.com/u/pixelvault-dev)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/pixelvault-dev/pixelvault-list

---


# PixelVault List

List uploaded images and their CDN URLs.

## Prerequisites

The `pixelvault` CLI must be installed and configured. If not, tell the user to run `/pixelvault-setup`.

## Steps

1. **List images**:

```bash
# Default: 20 most recent, one URL per line
pixelvault list

# With full metadata
pixelvault list --json

# Pagination
pixelvault list --page 2 --per-page 50
```

2. **Report** — Show the URLs (or metadata if `--json` was used) to the user.

## Output

- Default: one CDN URL per line to stdout
- `--json`: full response with id, url, mime_type, size, filename, folder, created_at, and pagination metadata

