attio-debug-bundle

Featured

Collect Attio integration diagnostic evidence -- API health, scopes, object schema, and rate limit status -- for debugging or support tickets. Trigger: "attio debug", "attio support bundle", "attio diagnostic", "collect attio logs", "attio not working debug".

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

# Attio Debug Bundle ## Overview Collect all diagnostic evidence needed to debug Attio API issues or file a support ticket. Checks auth, scopes, object schema, rate limit headers, and endpoint connectivity. ## Prerequisites - `ATTIO_API_KEY` environment variable set - `curl` and `jq` available - Permissions to read project environment ## Instructions ### Step 1: Run the Full Diagnostic Script ```bash #!/bin/bash # attio-debug-bundle.sh -- Collects Attio diagnostic evidence set -euo pipefail BUNDLE_DIR="attio-debug-$(date +%Y%m%d-%H%M%S)" mkdir -p "$BUNDLE_DIR" SUMMARY="$BUNDLE_DIR/summary.txt" echo "=== Attio Debug Bundle ===" | tee "$SUMMARY" echo "Generated: $(date -u +%Y-%m-%dT%H:%M:%SZ)" | tee -a "$SUMMARY" echo "" | tee -a "$SUMMARY" # 1. Check token is set (never log the actual key) echo "--- Token Status ---" | tee -a "$SUMMARY" if [ -z "${ATTIO_API_KEY:-}" ]; then echo "ATTIO_API_KEY: NOT SET" | tee -a "$SUMMARY" echo "Cannot proceed without API key" | tee -a "$SUMMARY" exit 1 else echo "ATTIO_API_KEY: SET (${#ATTIO_API_KEY} chars, starts with ${ATTIO_API_KEY:0:3}...)" | tee -a "$SUMMARY" fi # 2. API connectivity and auth test echo "" | tee -a "$SUMMARY" echo "--- API Connectivity ---" | tee -a "$SUMMARY" HTTP_CODE=$(curl -s -o "$BUNDLE_DIR/objects-response.json" -w "%{http_code}" \ -H "Authorization: Bearer ${ATTIO_API_KEY}" \ https://api.attio.com/v2/objects) echo "GET /v2/objects: HTTP $HTTP_CODE" | tee -a "$SUMMARY" if [ "$HTTP_CODE" = "200...

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

Code & Development Listed

attio-debug-bundle

Collect Attio integration diagnostic evidence -- API health, scopes, object schema, and rate limit status -- for debugging or support tickets. Trigger: "attio debug", "attio support bundle", "attio diagnostic", "collect attio logs", "attio not working debug".

45 Updated 6 days ago
ComeOnOliver
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
AI & Automation Featured

intercom-debug-bundle

Collect Intercom debug evidence for support tickets and troubleshooting. Use when encountering persistent issues, preparing support tickets, or collecting diagnostic information for Intercom API problems. Trigger with phrases like "intercom debug", "intercom support bundle", "collect intercom logs", "intercom diagnostic", "intercom 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

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