ST
storage-list
List rids currently in Crawlbase Cloud Storage, with scroll-based pagination (up to 1000 rids per call). Useful for enumerating everything stored under a token.
Install
mkdir -p .claude/skills/storage-list && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16994" && unzip -o skill.zip -d .claude/skills/storage-list && rm skill.zipInstalls to .claude/skills/storage-list
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
List rids currently in Crawlbase Cloud Storage, with scroll-based pagination (up to 1000 rids per call). Useful for enumerating everything stored under a token.160 charsno explicit “when” trigger
About this skill
Use the storage_list tool from the Crawlbase MCP server to enumerate stored rids.
When to use
Use this skill when the user wants to see what's in their storage, iterate over every stored item, or find rids they don't remember.
Usage
Call storage_list with:
limit: max rids to return (≤1000)scroll: true on follow-up calls to continue an open scroll sessionscroll_id: opaque continuation token from the previous response — pass it back withscroll: truescroll_order: "asc" or "desc" (default desc)use_js_token: true to list the JS-token silo instead of the normal one. Storage is per-token; each silo is enumerated separately.
Scroll sessions expire after ~15s of inactivity — loop tightly, don't pause between pages.
Example prompts
- "List all stored pages in Crawlbase"
- "Show me the 500 most recent rids in storage"
- "Enumerate everything in my JS-token storage"