A community based topic aggregation platform built on atproto

feat(tooling): add lexicon validation script

Add convenient shell script for validating all lexicon schemas and test data.

**Added:**
- scripts/validate-schemas.sh - Wrapper around cmd/validate-lexicon

**Usage:**
```bash
./scripts/validate-schemas.sh
```

**Features:**
- Validates all 58 lexicon schema files
- Validates cross-references between schemas
- Tests all lexicon test data files (15 valid, 11 invalid)
- Reports test coverage per record type

This script makes it easy to verify lexicon changes before committing,
addressing the PR review requirement for lexicon validation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

+13
+13
scripts/validate-schemas.sh
··· 1 + #!/bin/bash 2 + # Validate all lexicon schemas and test data 3 + 4 + set -e 5 + 6 + echo "🔍 Validating Coves lexicon schemas..." 7 + echo "" 8 + 9 + # Run the Go validation tool 10 + go run ./cmd/validate-lexicon/main.go 11 + 12 + echo "" 13 + echo "✅ Schema validation complete!"