Version control Claude Code configuration including: - Global instructions (CLAUDE.md) - User settings (settings.json) - Custom agents (architect, designer, engineer, etc.) - Custom skills (create-skill templates and workflows) Excludes session data, secrets, cache, and temporary files per .gitignore. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
39 lines
898 B
Markdown
39 lines
898 B
Markdown
# Paper Dynasty Scripts
|
|
|
|
Portable scripts for Paper Dynasty operations.
|
|
|
|
## Available Scripts
|
|
|
|
### distribute_packs.py
|
|
|
|
Distribute packs to all human-controlled teams in the league.
|
|
|
|
**Usage**:
|
|
```bash
|
|
# Dev environment
|
|
python distribute_packs.py --num-packs 10
|
|
|
|
# Production
|
|
DATABASE=prod python distribute_packs.py --num-packs 11 --exclude-team-abbrev CAR
|
|
```
|
|
|
|
**Features**:
|
|
- Automatically filters AI teams and gauntlet teams
|
|
- Supports team exclusions
|
|
- Works with both prod and dev environments
|
|
- Uses Paper Dynasty API client for all operations
|
|
|
|
**Original Location**: `/mnt/NV2/Development/paper-dynasty/discord-app/manual_pack_distribution.py`
|
|
|
|
### gauntlet_cleanup.py
|
|
|
|
Clean up gauntlet teams after events (wipe cards, delete packs, end runs).
|
|
|
|
### validate_database.py
|
|
|
|
Validate database integrity and relationships.
|
|
|
|
### generate_summary.py
|
|
|
|
Generate release summaries for card updates.
|