Agent skill
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".
Install this agent skill to your Project
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/main/plugins/saas-packs/hex-pack/skills/hex-install-auth
SKILL.md
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
- Open Hex workspace settings
- Navigate to API tokens section
- Click New Token
- Set description and expiration
- Select scopes: "Read projects" and/or "Run projects"
Step 2: Configure Environment
# .env (NEVER commit)
HEX_API_TOKEN=hex_token_abc123...
HEX_WORKSPACE_URL=https://app.hex.tech
# .gitignore
.env
.env.local
Step 3: Verify Connection
// 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);
# curl verification
curl -s -H "Authorization: Bearer $HEX_API_TOKEN" \
https://app.hex.tech/api/v1/projects | python3 -m json.tool
Token Scopes
| Scope | Endpoints | Use Case |
|---|---|---|
| Read projects | ListProjects, GetProjectRuns, GetRunStatus | Monitoring |
| Run projects | RunProject, CancelRun (+ all read) | Orchestration |
Error Handling
| Error | Cause | Solution |
|---|---|---|
401 Unauthorized |
Invalid or expired token | Regenerate in workspace settings |
403 Forbidden |
Missing scope | Create token with "Run projects" scope |
404 Not Found |
Wrong workspace URL | Verify HEX_WORKSPACE_URL |
Resources
Next Steps
After auth, proceed to hex-hello-world.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?