algolia-debug-bundle

Featured

Collect Algolia debug evidence: index stats, API key ACLs, query logs, and network diagnostics for support tickets. Trigger: "algolia debug", "algolia support bundle", "collect algolia logs", "algolia diagnostic", "algolia troubleshoot".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Algolia Debug Bundle ## Overview Collect all necessary diagnostic information for Algolia support tickets or internal troubleshooting. Uses real Algolia API endpoints to gather index stats, key permissions, and query performance data. ## Prerequisites - `ALGOLIA_APP_ID` and `ALGOLIA_ADMIN_KEY` environment variables set - `curl` and `jq` available - Permission to read API key ACLs and index settings ## Instructions ### Step 1: Create the Debug Bundle Script ```bash #!/bin/bash # algolia-debug-bundle.sh set -euo pipefail APP_ID="${ALGOLIA_APP_ID:?Set ALGOLIA_APP_ID}" API_KEY="${ALGOLIA_ADMIN_KEY:?Set ALGOLIA_ADMIN_KEY}" BUNDLE_DIR="algolia-debug-$(date +%Y%m%d-%H%M%S)" BASE_URL="https://${APP_ID}-dsn.algolia.net" HEADERS=(-H "X-Algolia-Application-Id: ${APP_ID}" -H "X-Algolia-API-Key: ${API_KEY}") mkdir -p "$BUNDLE_DIR" echo "=== Algolia Debug Bundle ===" | tee "$BUNDLE_DIR/summary.txt" echo "Generated: $(date -u +%Y-%m-%dT%H:%M:%SZ)" | tee -a "$BUNDLE_DIR/summary.txt" echo "App ID: $APP_ID" | tee -a "$BUNDLE_DIR/summary.txt" # 1. List all indices with record counts echo "--- Indices ---" >> "$BUNDLE_DIR/summary.txt" curl -s "${BASE_URL}/1/indexes" "${HEADERS[@]}" \ | jq '.items[] | {name, entries, dataSize, lastBuildTimeS}' \ > "$BUNDLE_DIR/indices.json" 2>/dev/null echo "Indices saved" >> "$BUNDLE_DIR/summary.txt" # 2. Check API key permissions (redacted key) echo "--- API Key ACL ---" >> "$BUNDLE_DIR/summary.txt" curl -s "${BASE_URL}/1/keys" "${HEADERS[@]}"...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

salesloft-debug-bundle

Collect SalesLoft debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic info for SalesLoft API problems. Trigger: "salesloft debug", "salesloft diagnostic", "salesloft support bundle".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-debug-bundle

Collect Klaviyo debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Klaviyo API problems. Trigger with phrases like "klaviyo debug", "klaviyo support bundle", "collect klaviyo logs", "klaviyo diagnostic", "klaviyo troubleshoot".

2,266 Updated today
jeremylongshore
AI & Automation Featured

elevenlabs-debug-bundle

Collect ElevenLabs debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for ElevenLabs problems. Trigger: "elevenlabs debug", "elevenlabs support bundle", "collect elevenlabs logs", "elevenlabs diagnostic", "elevenlabs support ticket".

2,266 Updated today
jeremylongshore
AI & Automation Featured

groq-debug-bundle

Collect Groq debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Groq problems. Trigger with phrases like "groq debug", "groq support bundle", "collect groq logs", "groq diagnostic".

2,266 Updated today
jeremylongshore
AI & Automation Featured

assemblyai-debug-bundle

Collect AssemblyAI debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for AssemblyAI problems. Trigger with phrases like "assemblyai debug", "assemblyai support bundle", "collect assemblyai logs", "assemblyai diagnostic".

2,266 Updated today
jeremylongshore