- 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>
36 lines
847 B
Markdown
36 lines
847 B
Markdown
# paperdomo team Commands
|
|
|
|
**Load this when**: You need team list, get, or cards command syntax.
|
|
|
|
```bash
|
|
PD="python ~/.claude/skills/paper-dynasty/cli.py"
|
|
```
|
|
|
|
---
|
|
|
|
## Commands
|
|
|
|
```bash
|
|
$PD team list [--season N] # List all teams, optionally filtered by season
|
|
$PD team get SKB # Get details for a specific team (by abbrev)
|
|
$PD team cards SKB # List cards owned by a team
|
|
```
|
|
|
|
## Examples
|
|
|
|
```bash
|
|
$PD team list # All teams
|
|
$PD team list --season 10 # Teams in season 10
|
|
$PD team get SKB # SKB team details
|
|
$PD team cards SKB # SKB's card collection
|
|
$PD team cards SKB --json # Machine-readable output
|
|
```
|
|
|
|
## Global Options
|
|
|
|
```bash
|
|
--env prod|dev # Environment (default: prod)
|
|
--json # Output as JSON
|
|
--verbose / -v # Show API request details
|
|
```
|