skills/database-tycoon/snowtower-maintainer/SKILL.md
Maintains SnowTower project documentation, README, and Claude configuration. Use when updating documentation, auditing .claude folder contents, syncing README with actual project state, or reviewing agent/pattern definitions. Triggers on mentions of documentation, README, maintenance, or .claude folder updates.
npx skillsauth add aiskillstore/marketplace snowtower-maintainerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A specialized skill for maintaining the SnowTower project's documentation, README, and Claude Code configuration.
Keep README.md accurate and current:
uv run commands are validAudit checklist:
# 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
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:
Pattern audit tasks:
Ensure docs reflect actual project state:
| Doc File | Should Match |
|----------|--------------|
| docs/guide/MANAGEMENT_COMMANDS.md | pyproject.toml scripts |
| docs/guide/QUICKSTART.md | Current setup process |
| docs/guide/SCHEMA_GRANTS.md | Current grant handling |
| Agent files in .claude/agents/ | Available functionality |
# 1. Verify project structure
ls -la snowddl/ src/ scripts/ docs/
# 2. Check available commands
uv run --help
# 3. Verify tests pass
uv run pytest --co -q | tail -5
# 4. Check pre-commit status
uv run pre-commit run --all-files
Gather current state:
# Count configured users
grep -c "^ [A-Z]" snowddl/user.yaml
# Count databases
ls -d snowddl/*/ | grep -v __pycache__ | wc -l
# List warehouses
grep "^ [A-Z]" snowddl/warehouse.yaml
Verify commands:
# Extract commands from pyproject.toml
grep -A1 "\[project.scripts\]" pyproject.toml
Update statistics section in README with current counts
Verify all links resolve to existing files
When auditing .claude/agents/:
List all agents:
ls .claude/agents/*.md
Identify overlaps: Look for agents with similar purposes
Consolidation criteria:
Update references: After consolidation, update any docs referencing removed agents
This skill should maintain itself by:
### Status & Metrics
- **Active Users**: [COUNT] configured users with MFA
- **Databases**: [COUNT] production databases managed
- **Warehouses**: [COUNT] warehouses with auto-suspend
Update these by running:
echo "Users: $(grep -c '^ [A-Z]' snowddl/user.yaml)"
echo "Databases: $(ls -d snowddl/*/ 2>/dev/null | grep -v __pycache__ | wc -l)"
echo "Warehouses: $(grep -c '^ [A-Z]' snowddl/warehouse.yaml)"
Check that README badges match actual workflows:
# List workflows
ls .github/workflows/
# Verify badge URLs in README reference these files
grep "actions/workflows" README.md
# List agents and their purposes
for f in .claude/agents/*.md; do
echo "=== $f ==="
head -5 "$f"
echo
done
Remove references to:
This skill works with:
.github/workflows/snowddl/*.yamlsrc/, scripts/docs/.claude/Invoke this skill when:
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.