hex-core-workflow-a

Featured

Execute Hex primary workflow: Core Workflow A. Use when implementing primary use case, building main features, or core integration tasks. Trigger with phrases like "hex main workflow", "primary task with hex".

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 Project Orchestration ## Overview Trigger Hex project runs from external orchestration tools (Airflow, Dagster, cron) with input parameters, status polling, and error handling. This is the primary integration pattern for embedding Hex in data pipelines. ## Instructions ### Step 1: Parameterized Project Runs ```typescript import 'dotenv/config'; const TOKEN = process.env.HEX_API_TOKEN!; const BASE = 'https://app.hex.tech/api/v1'; interface RunConfig { projectId: string; inputParams?: Record<string, any>; updateCache?: boolean; killRunning?: boolean; } async function triggerRun(config: RunConfig) { const response = await fetch(`${BASE}/project/${config.projectId}/run`, { method: 'POST', headers: { 'Authorization': `Bearer ${TOKEN}`, 'Content-Type': 'application/json' }, body: JSON.stringify({ inputParams: config.inputParams || {}, updateCacheResult: config.updateCache ?? true, killRunningExecution: config.killRunning ?? false, }), }); if (!response.ok) throw new Error(`Trigger failed: ${response.status} ${await response.text()}`); return response.json(); } ``` ### Step 2: Synchronous Run Helper ```typescript async function runAndWait(config: RunConfig, timeoutMs = 600000): Promise<any> { const { runId, projectId } = await triggerRun(config); const startTime = Date.now(); while (Date.now() - startTime < timeoutMs) { const res = await fetch(`${BASE}/project/${projectId}/run/${runId}`, { 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

hex-core-workflow-b

Execute Hex secondary workflow: Core Workflow B. Use when implementing secondary use case, or complementing primary workflow. Trigger with phrases like "hex secondary workflow", "secondary task with 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

hex-local-dev-loop

Configure Hex local development with hot reload and testing. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Hex. Trigger with phrases like "hex dev setup", "hex local development", "hex dev environment", "develop with hex".

2,266 Updated today
jeremylongshore
AI & Automation Solid

hex-reference-architecture

Implement Hex reference architecture with best-practice project layout. Use when designing new Hex integrations, reviewing project structure, or establishing architecture standards for Hex applications. Trigger with phrases like "hex architecture", "hex best practices", "hex project structure", "how to organize hex", "hex layout".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hex-ci-integration

Configure Hex CI/CD integration with GitHub Actions and testing. Use when setting up automated testing, configuring CI pipelines, or integrating Hex tests into your build process. Trigger with phrases like "hex CI", "hex GitHub Actions", "hex automated tests", "CI hex".

2,266 Updated today
jeremylongshore