- 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>
59 lines
1.7 KiB
Markdown
59 lines
1.7 KiB
Markdown
# paperdomo pack Commands
|
|
|
|
**Load this when**: You need pack list, today, or distribute command syntax, or pack type IDs.
|
|
|
|
```bash
|
|
PD="python ~/.claude/skills/paper-dynasty/cli.py"
|
|
```
|
|
|
|
---
|
|
|
|
## Commands
|
|
|
|
```bash
|
|
$PD pack list [--team SKB] [--opened] [--unopened] # List packs with optional filters
|
|
$PD pack today # Analytics for packs opened today
|
|
$PD pack distribute --num N # Distribute N packs to all teams
|
|
$PD pack distribute --num N --exclude ABBREV # Distribute with team exclusion
|
|
```
|
|
|
|
## Examples
|
|
|
|
```bash
|
|
$PD pack list # All packs
|
|
$PD pack list --team SKB # SKB's packs only
|
|
$PD pack list --team SKB --unopened # SKB's unopened packs
|
|
$PD pack today # Today's open summary
|
|
$PD pack distribute --num 10 # Give 10 packs to every team
|
|
$PD pack distribute --num 11 --exclude CAR # Skip CAR team
|
|
```
|
|
|
|
## Global Options
|
|
|
|
```bash
|
|
--env prod|dev # Environment (default: prod)
|
|
--json # Output as JSON
|
|
--verbose / -v # Show API request details
|
|
--yes / -y # Skip confirmation for destructive operations
|
|
```
|
|
|
|
---
|
|
|
|
## Pack Types Reference
|
|
|
|
Use these IDs when creating packs via the API or scripts.
|
|
|
|
| ID | Name | Description |
|
|
|----|------|-------------|
|
|
| 1 | Standard | Default pack type |
|
|
| 2 | Starter | Starter deck pack |
|
|
| 3 | Premium | Premium pack |
|
|
| 4 | Check-In Player | Daily check-in reward |
|
|
| 5 | MVP | MVP-only pack |
|
|
| 6 | All Star | All-Star pack |
|
|
| 7 | Mario | Special Mario pack |
|
|
| 8 | Team Choice | 1 card, choice of 4 from selected MLB club |
|
|
| 9 | Promo Choice | Promotional choice pack |
|
|
|
|
**Default Pack Type**: 1 (Standard) for most operations
|