hex-install-auth

Featured

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".

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

# Hex Install & Auth ## Overview Configure Hex API authentication using OAuth 2.0 Bearer tokens. The Hex API at `app.hex.tech/api/v1/` lets you programmatically trigger project runs, check status, manage users, and configure connections. Tokens are generated per-user in the Hex workspace settings. ## Prerequisites - Hex account (Team or Enterprise plan) - Workspace admin access for API token generation - At least one published Hex project ## Instructions ### Step 1: Generate API Token 1. Open Hex workspace settings 2. Navigate to **API tokens** section 3. Click **New Token** 4. Set description and expiration 5. Select scopes: "Read projects" and/or "Run projects" ### Step 2: Configure Environment ```bash # .env (NEVER commit) HEX_API_TOKEN=hex_token_abc123... HEX_WORKSPACE_URL=https://app.hex.tech # .gitignore .env .env.local ``` ### Step 3: Verify Connection ```typescript // verify-hex.ts import 'dotenv/config'; const TOKEN = process.env.HEX_API_TOKEN!; async function verify() { const response = await fetch('https://app.hex.tech/api/v1/projects', { headers: { 'Authorization': `Bearer ${TOKEN}`, 'Content-Type': 'application/json' }, }); if (!response.ok) throw new Error(`Hex API ${response.status}`); const projects = await response.json(); console.log(`Connected! Found ${projects.length} projects`); return projects; } verify().catch(console.error); ``` ```bash # curl verification curl -s -H "Authorization: Bearer $HEX_API_TOKEN" \ https://app...

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-security-basics

Apply Hex security best practices for secrets and access control. Use when securing API keys, implementing least privilege access, or auditing Hex security configuration. Trigger with phrases like "hex security", "hex secrets", "secure hex", "hex API key security".

2,266 Updated today
jeremylongshore
AI & Automation Solid

hex-common-errors

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".

2,266 Updated today
jeremylongshore
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

hootsuite-install-auth

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

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