From vastai
Manage Vast.ai persistent storage volumes — search, create, delete, clone, and attach volumes to instances. Use for persistent data across instance lifecycles.
How this skill is triggered — by the user, by Claude, or both
Slash command
/vastai:manage-volumesThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Help the user manage persistent storage volumes on Vast.ai.
Help the user manage persistent storage volumes on Vast.ai.
$ARGUMENTS
vastai search volumes '<QUERY>' -o 'storage_cost' --raw
Key fields: disk_space, disk_bw, storage_cost, geolocation, reliability, duration
vastai create volume <OFFER_ID> -s <SIZE_GB> # Local volume
vastai create network-volume <OFFER_ID> -s <SIZE_GB> # Network volume
Default size: 15 GB.
vastai show volumes # All volumes
vastai show volumes -t local # Local only
vastai show volumes -t network # Network only
vastai clone volume <SOURCE_VOLUME_ID> <DEST_OFFER_ID> -s <SIZE_GB>
vastai delete volume <ID>
Confirm with user first — this is irreversible and deletes all data.
# New volume
vastai create instance <OFFER_ID> --image <IMG> --ssh \
--create-volume <VOLUME_OFFER_ID> --volume-size <GB> --mount-path /root/data
# Existing volume
vastai create instance <OFFER_ID> --image <IMG> --ssh \
--link-volume <VOLUME_ID> --mount-path /root/data
vastai copy local:./data V.<VOLUME_ID>:/data
vastai copy V.<VOLUME_ID>:/results local:./results
vastai show volumes before creating to avoid duplicatesnpx claudepluginhub liorz/vastai-claude-skill --plugin vastaiApplies Vast.ai SDK patterns for Python and REST API: typed GPU queries, managed instance lifecycles, offer scoring, retries. For GPU cloud integrations and refactoring.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.