#!/bin/bash # Check if landing site is in sync with guide # Usage: ./scripts/check-landing-sync.sh # # Verifies: Version, Templates count, Quiz questions, Guide lines set -e GUIDE_DIR="/Users/florianbruniaux/Sites/perso/claude-code-ultimate-guide" LANDING_DIR="/Users/florianbruniaux/Sites/perso/claude-code-ultimate-guide-landing" # Colors RED='\033[0;31m' GREEN='\033[0;32m' YELLOW='\033[1;33m' BLUE='\033[0;34m' NC='\033[0m' # No Color echo "=== Landing Site Sync Check ===" echo "" ISSUES=0 # Check if landing dir exists if [ ! -d "$LANDING_DIR" ]; then echo -e "${RED}ERROR: Landing directory not found at $LANDING_DIR${NC}" exit 1 fi # =================== # 1. VERSION CHECK # =================== GUIDE_VERSION=$(cat "$GUIDE_DIR/VERSION" | tr -d '\n') LANDING_VERSION=$(grep -oE 'v[0-9]+\.[0-9]+\.[0-9]+' "$LANDING_DIR/index.html" | head -1 | sed 's/v//') echo -e "${BLUE}1. Version${NC}" echo " Guide: $GUIDE_VERSION" echo " Landing: $LANDING_VERSION" if [ "$GUIDE_VERSION" != "$LANDING_VERSION" ]; then echo -e " ${RED}MISMATCH${NC} → Update index.html (footer + FAQ)" ISSUES=$((ISSUES + 1)) else echo -e " ${GREEN}OK${NC}" fi echo "" # =================== # 2. TEMPLATES COUNT # =================== TEMPLATE_COUNT=$(find "$GUIDE_DIR/examples" -type f \( -name "*.md" -o -name "*.sh" -o -name "*.ps1" -o -name "*.yml" -o -name "*.yaml" \) | wc -l | tr -d ' ') # Check index.html LANDING_TEMPLATES_INDEX=$(grep -oE '[0-9]+ Templates' "$LANDING_DIR/index.html" | head -1 | grep -oE '[0-9]+') # Check examples/index.html LANDING_TEMPLATES_EXAMPLES=$(grep -oE '[0-9]+ Templates' "$LANDING_DIR/examples/index.html" | head -1 | grep -oE '[0-9]+') echo -e "${BLUE}2. Templates Count${NC}" echo " Guide: $TEMPLATE_COUNT files" echo " index.html: $LANDING_TEMPLATES_INDEX" echo " examples/index.html: $LANDING_TEMPLATES_EXAMPLES" TEMPLATES_OK=true if [ "$TEMPLATE_COUNT" != "$LANDING_TEMPLATES_INDEX" ]; then echo -e " ${YELLOW}MISMATCH in index.html${NC}" TEMPLATES_OK=false fi if [ "$TEMPLATE_COUNT" != "$LANDING_TEMPLATES_EXAMPLES" ]; then echo -e " ${YELLOW}MISMATCH in examples/index.html${NC}" TEMPLATES_OK=false fi if [ "$TEMPLATES_OK" = true ]; then echo -e " ${GREEN}OK${NC}" else ISSUES=$((ISSUES + 1)) fi echo "" # =================== # 3. QUIZ QUESTIONS # =================== # questions.json is in the landing repo (source of truth for quiz) # Question IDs have format "XX-XXX" (e.g., "01-001"), category IDs are just numbers QUESTIONS_COUNT=$(grep -cE '"id": "[0-9]+-[0-9]+"' "$LANDING_DIR/questions.json") # Alternative with jq if available: jq '.questions | length' # Check what landing pages say LANDING_QUESTIONS_INDEX=$(grep -oE '[0-9]+ quiz questions' "$LANDING_DIR/index.html" | head -1 | grep -oE '[0-9]+') LANDING_QUESTIONS_QUIZ=$(grep -oE '[0-9]+ Questions' "$LANDING_DIR/quiz/index.html" | head -1 | grep -oE '[0-9]+') echo -e "${BLUE}3. Quiz Questions${NC}" echo " questions.json: $QUESTIONS_COUNT" echo " index.html: $LANDING_QUESTIONS_INDEX" echo " quiz/index.html: $LANDING_QUESTIONS_QUIZ" QUESTIONS_OK=true if [ "$QUESTIONS_COUNT" != "$LANDING_QUESTIONS_INDEX" ]; then echo -e " ${YELLOW}MISMATCH in index.html${NC}" QUESTIONS_OK=false fi if [ "$QUESTIONS_COUNT" != "$LANDING_QUESTIONS_QUIZ" ]; then echo -e " ${YELLOW}MISMATCH in quiz/index.html${NC}" QUESTIONS_OK=false fi if [ "$QUESTIONS_OK" = true ]; then echo -e " ${GREEN}OK${NC}" else ISSUES=$((ISSUES + 1)) fi echo "" # =================== # 4. GUIDE LINES # =================== GUIDE_LINES=$(wc -l < "$GUIDE_DIR/guide/ultimate-guide.md" | tr -d ' ') # Landing shows approximate (e.g., "9,600+") LANDING_LINES=$(grep -oE '[0-9,]+\+ lines' "$LANDING_DIR/index.html" | head -1 | grep -oE '[0-9,]+' | tr -d ',') echo -e "${BLUE}4. Guide Lines${NC}" echo " Actual: $GUIDE_LINES" echo " Landing: ${LANDING_LINES}+ (approximate)" # Check if landing approximation is reasonable (within 500 lines) LANDING_LINES_NUM=${LANDING_LINES:-0} DIFF=$((GUIDE_LINES - LANDING_LINES_NUM)) if [ $DIFF -lt -500 ] || [ $DIFF -gt 1000 ]; then echo -e " ${YELLOW}UPDATE RECOMMENDED${NC} - Significant difference" # Not counting as hard error, just warning else echo -e " ${GREEN}OK${NC} (within tolerance)" fi echo "" # =================== # SUMMARY # =================== echo "=== Summary ===" if [ $ISSUES -eq 0 ]; then echo -e "${GREEN}All synced!${NC}" else echo -e "${RED}$ISSUES issue(s) found${NC}" echo "" echo "To fix:" echo " 1. Edit: $LANDING_DIR/index.html" echo " 2. Edit: $LANDING_DIR/examples/index.html (if templates changed)" echo " 3. Edit: $LANDING_DIR/quiz/index.html (if questions changed)" echo "" echo "See: $LANDING_DIR/CLAUDE.md for exact line numbers" fi exit $ISSUES