.claude/skills/managing-navigator-customers/SKILL.md
Manage customers, initiatives, and capacity allocations in Navigator. Lists customers, service providers, initiatives, node allocations, contracts, and block deliverables. Use when checking who has capacity, viewing customer allocations, tracking initiatives, or managing supply contracts.
npx skillsauth add Dbochman/dotfiles managing-navigator-customersInstall 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.
Manage customers, initiatives, and capacity allocations via navigator-cli - track who has capacity, view allocations, and monitor contracts.
# Check tool is available
navigator-cli --version
# Test API connectivity
navigator-cli customer list --json | head -20
If command not found, build from source: cd ai-pim-utils && make build
Use this skill when users want to:
# List all customers
navigator-cli customer list --json
# Get specific customer by ID
navigator-cli customer get 20 --json
# List service users only
navigator-cli customer service-users --json
# List all initiatives
navigator-cli initiative list --json
# Get specific initiative
navigator-cli initiative get 15 --json
# List all node allocations
navigator-cli node-allocation list --json
# Get specific allocation
navigator-cli node-allocation get 1699 --json
# Use v1.1 API version
navigator-cli node-allocation list --version v1.1 --json
# List all contracts
navigator-cli contract list --json
# List block deliverables
navigator-cli block-deliverable list --json
# Get specific deliverable
navigator-cli block-deliverable get 430 --json
# List all Navigator users
navigator-cli user list --json
Customer (service provider or service user)
│
├── Initiative (project/program)
│ │
│ └── Node Allocation (capacity assigned)
│
└── Contract (supply agreement)
│
└── Block Deliverable (contracted delivery)
# Get customer ID first
navigator-cli customer list --json | jq '.data[] | select(.name | contains("LLM"))'
# Then check allocations for that customer
navigator-cli node-allocation list --json | jq '[.data[] | select(.customer_id == "15")]'
navigator-cli initiative list --json | jq '.data[] | {name, id, description}'
navigator-cli node-allocation list --json | jq '.data | group_by(.status) | map({status: .[0].status, count: length})'
navigator-cli contract list --json | jq '.data | group_by(.status) | map({status: .[0].status, count: length})'
navigator-cli user list --json | jq '.data[] | select(.email | contains("jsmith"))'
Customer Lookup: Find customer and their allocations
Initiative Review: Track active initiatives
Contract Audit: Review supply contracts
Command not found:
cd ai-pim-utils && make build
Customer not found:
customer list to find valid IDsEmpty allocations:
API errors:
--verbose for debug infodevelopment
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".