.claude/skills/tracking-gpu-capacity/SKILL.md
Query GPU capacity across OCI, Azure, GCP, AWS, CoreWeave, and Forge via Navigator CLI. Lists reservations, clusters, GPU status, and availability by region. Use when checking GPU availability, viewing capacity reservations, monitoring cloud resources, or comparing capacity across providers.
npx skillsauth add Dbochman/dotfiles tracking-gpu-capacityInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Query GPU capacity across multiple cloud providers via navigator-cli - view reservations, clusters, GPU availability, and regional capacity.
# Check tool is available
navigator-cli --version
# Test API connectivity (no auth required for read operations)
navigator-cli gpu list --json
If command not found, build from source: cd ai-pim-utils && make build
Use this skill when users want to:
# All GPU configurations
navigator-cli gpu list --json
# Human-readable output
navigator-cli gpu list
# All OCI reservations
navigator-cli oci reservation list --json
# Filter by region
navigator-cli oci reservation list --region us-ashburn-1 --json
# Filter by tenant
navigator-cli oci reservation list --tenant nvidiangc --json
# Limit results
navigator-cli oci reservation list -l 20 --json
# All clusters
navigator-cli cluster list --json
# OCI-specific clusters
navigator-cli oci cluster list --json
# Azure subscriptions
navigator-cli azure subscription list --json
# Azure group quotas
navigator-cli azure group-quota list --json
# GCP projects
navigator-cli gcp project list --json
# GCP reservations
navigator-cli gcp reservation list --json
# GCP health status
navigator-cli gcp health --json
# AWS accounts
navigator-cli aws account list --json
# GPU status by region (DFW, LAS1, PDX, etc.)
navigator-cli coreweave gpu-status list --json
# Forge platform tenants
navigator-cli forge tenant list --json
# Get all reservations and cluster counts
echo "=== OCI Reservations ==="
navigator-cli oci reservation list --json | jq 'length'
echo "=== GCP Reservations ==="
navigator-cli gcp reservation list --json | jq '.data | length'
echo "=== Clusters ==="
navigator-cli cluster list --json | jq '.data | length'
Run navigator-cli --help for all commands. Run navigator-cli <provider> --help for provider-specific options.
Capacity Overview: Check GPU availability across all providers
navigator-cli gpu list for GPU typesRegional Deep Dive: Investigate specific region capacity
Provider Comparison: Compare capacity across CSPs
navigator-cli oci reservation list --json | jq '[.data[] | select(.instance_shape | contains("H100"))] | length'
navigator-cli oci reservation list --json | jq '.data | group_by(.region) | map({region: .[0].region, count: length})'
navigator-cli coreweave gpu-status list --json | jq '[.data[].region] | unique'
Command not found:
# Build from source
cd ai-pim-utils && make build
# Binary is in ./bin/navigator-cli
API errors:
--verbose for debug infoEmpty results:
JSON parsing:
--json for structured outputjq for filtering and transformationdevelopment
Search the web for current information, news, facts, and answers. Use when asked questions about current events, needing to look something up, finding websites, researching topics, or when you need up-to-date information beyond your training data.
development
Summarize any URL, YouTube video, podcast, PDF, or file into concise text. Use when asked to read an article, summarize a link, get the gist of a video or podcast, extract content from a URL, or when you need to understand what a web page or document contains.
development
Play music via Spotify and control Google Home speakers. Use when asked to play music, songs, artists, playlists, podcasts, or control speakers/volume/audio.
testing
Create new OpenClaw skills, modify and improve existing skills, and measure skill performance with evals. Use when users want to create a skill from scratch, update or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy. Also use when asked to "make a skill", "turn this into a skill", "improve this skill", or "test this skill".