hex-common-errors

Solid

Diagnose and fix Hex common errors and exceptions. Use when encountering Hex errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "hex error", "fix hex", "hex not working", "debug hex".

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

Install

View on GitHub

Quality Score: 97/100

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

Skill Content

# Hex Common Errors ## Error Reference ### 401 Unauthorized **Cause:** Token invalid, expired, or missing. **Fix:** Regenerate token in Hex workspace settings. ### 403 Forbidden — Read-Only Token **Cause:** Token has "Read projects" scope but RunProject requires "Run projects". **Fix:** Create new token with "Run projects" scope. ### 404 Not Found — Project **Cause:** Project ID wrong or project not published. **Fix:** Verify project ID. Only published projects can be run via API. ### 429 Too Many Requests **Cause:** RunProject is limited to 20 requests/min, 60/hr. **Fix:** Queue runs with delays. See `hex-rate-limits`. ### Run Status: ERRORED **Cause:** SQL query, Python code, or connection error in the project. **Fix:** Open the project in Hex UI and check the error in the run history. ### Run Status: KILLED **Cause:** Run exceeded timeout or was manually cancelled. **Fix:** Optimize slow queries. Increase timeout in API trigger. ## Quick Diagnostics ```bash # Test token curl -s -o /dev/null -w "%{http_code}" \ -H "Authorization: Bearer $HEX_API_TOKEN" \ https://app.hex.tech/api/v1/projects # List recent runs for a project curl -s -H "Authorization: Bearer $HEX_API_TOKEN" \ https://app.hex.tech/api/v1/project/PROJECT_ID/runs | python3 -m json.tool ``` ## Resources - [Hex API Reference](https://learn.hex.tech/docs/api/api-reference) ## Next Steps For debugging, see `hex-debug-bundle`.

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

hex-hello-world

Create a minimal working Hex example. Use when starting a new Hex integration, testing your setup, or learning basic Hex API patterns. Trigger with phrases like "hex hello world", "hex example", "hex quick start", "simple hex code".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hex-install-auth

Install and configure Hex SDK/CLI authentication. Use when setting up a new Hex integration, configuring API keys, or initializing Hex in your project. Trigger with phrases like "install hex", "setup hex", "hex auth", "configure hex API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hex-debug-bundle

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

hex-prod-checklist

Execute Hex production deployment checklist and rollback procedures. Use when deploying Hex integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "hex production", "deploy hex", "hex go-live", "hex launch checklist".

2,266 Updated today
jeremylongshore
AI & Automation Solid

hex-performance-tuning

Optimize Hex API performance with caching, batching, and connection pooling. Use when experiencing slow API responses, implementing caching strategies, or optimizing request throughput for Hex integrations. Trigger with phrases like "hex performance", "optimize hex", "hex latency", "hex caching", "hex slow", "hex batch".

2,266 Updated today
jeremylongshore