# paperdomo player Commands **Load this when**: You need player get or list command syntax. ```bash PD="python ~/.claude/skills/paper-dynasty/cli.py" ``` --- ## Commands ```bash $PD player get ID # Get player by numeric ID $PD player list [--rarity RARITY] [--cardset ID] # List/filter players ``` ## Examples ```bash $PD player get 12345 # Player with ID 12345 $PD player get 12785 --json # Machine-readable output $PD player list --rarity "Hall of Fame" # All Hall of Fame players $PD player list --rarity MVP --cardset 27 # MVP players in cardset 27 $PD player list --cardset 27 # All players in cardset 27 ``` ## Rarity Values (lowest to highest) `Replacement` < `Reserve` < `Starter` < `All-Star` < `MVP` < `Hall of Fame` ## Global Options ```bash --env prod|dev # Environment (default: prod) --json # Output as JSON --verbose / -v # Show API request details ```