- Update agents/issue-worker.md - Update plugins/blocklist.json, installed_plugins.json, known_marketplaces.json - Update plugins/marketplaces/claude-plugins-official - Add skills/paper-dynasty/reference/cli-overview.md and cli/ directory Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
39 lines
1.1 KiB
Markdown
39 lines
1.1 KiB
Markdown
# 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
|
|
```
|