snowtower-maintainerlisted
Install: claude install-skill aiskillstore/marketplace
# SnowTower Project Maintainer
A specialized skill for maintaining the SnowTower project's documentation, README, and Claude Code configuration.
## Core Responsibilities
### 1. README Maintenance
Keep `README.md` accurate and current:
- **Version badges**: Ensure CI/CD badges point to correct workflows
- **Command references**: Verify all `uv run` commands are valid
- **Architecture diagrams**: Keep mermaid diagrams in sync with actual structure
- **Statistics**: Update user counts, database counts, warehouse counts
- **Links**: Verify all internal links resolve correctly
**Audit checklist:**
```bash
# Verify commands mentioned in README actually exist
uv run --help | grep -E "snowddl-plan|deploy-safe|manage-users"
# Check workflow badge URLs match actual workflow files
ls .github/workflows/
# Verify documentation links
find docs/ -name "*.md" | head -20
```
### 2. Claude Folder Maintenance
Maintain `.claude/` organization:
```
.claude/
├── skills/ # Claude Code skills (like this one)
├── agents/ # Agent definitions for task delegation
├── patterns/ # Reusable patterns and templates
└── settings.local.json
```
**Agent audit tasks:**
- Remove duplicate or redundant agents
- Consolidate agents with overlapping purposes
- Update agent descriptions to match current capabilities
- Ensure agents reference correct file paths
**Pattern audit tasks:**
- Verify patterns match current project conventions
- Update code examples in patterns
- Remov