- Update blocklist, installed_plugins, known_marketplaces plugin configs - Sync marketplace submodules (claude-code-plugins, claude-plugins-official) - Update settings.json - Update paper-dynasty SKILL.md - Replace cli-reference.md with split cli/ docs (gauntlet.md, pd-cards.md)
53 lines
1.6 KiB
Markdown
53 lines
1.6 KiB
Markdown
# paperdomo gauntlet Commands
|
|
|
|
**Load this when**: You need gauntlet list, teams, or cleanup command syntax.
|
|
|
|
```bash
|
|
PD="python ~/.claude/skills/paper-dynasty/cli.py"
|
|
```
|
|
|
|
---
|
|
|
|
## Commands
|
|
|
|
```bash
|
|
$PD gauntlet list [--event-id N] [--active] # List gauntlet runs
|
|
$PD gauntlet teams [--active] # List gauntlet teams
|
|
$PD gauntlet cleanup TEAM_ABBREV --event-id N --yes # Cleanup a gauntlet team
|
|
```
|
|
|
|
## Examples
|
|
|
|
```bash
|
|
$PD gauntlet list # All gauntlet runs
|
|
$PD gauntlet list --active # Active runs only
|
|
$PD gauntlet list --event-id 8 # Runs for event 8
|
|
$PD gauntlet list --event-id 8 --active # Active runs in event 8
|
|
$PD gauntlet teams # All gauntlet teams
|
|
$PD gauntlet teams --active # Active gauntlet teams only
|
|
$PD gauntlet cleanup Gauntlet-SKB --event-id 8 --yes # Wipe team (skip confirm)
|
|
$PD gauntlet cleanup Gauntlet-SKB -e 9 -y # Short flags
|
|
```
|
|
|
|
## Cleanup Safety
|
|
|
|
**Safe to clean**: Gauntlet teams (temporary), completed runs, eliminated teams
|
|
**Never clean**: Regular season teams, teams with active gameplay, before tournament ends
|
|
|
|
Cleanup effects:
|
|
| Data | Action | Reversible? |
|
|
|------|--------|-------------|
|
|
| Cards | Unassigned (team = NULL) | Yes (reassign) |
|
|
| Packs | Deleted | No |
|
|
| Run Record | Ended (timestamp set) | Kept in DB |
|
|
| Team/Results/Stats | Preserved | Kept in DB |
|
|
|
|
## Global Options
|
|
|
|
```bash
|
|
--env prod|dev # Environment (default: prod)
|
|
--json # Output as JSON
|
|
--verbose / -v # Show API request details
|
|
--yes / -y # Skip confirmation prompt
|
|
```
|