hex-core-workflow-b

Featured

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

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 Scheduled Runs & Admin API ## Overview Configure scheduled runs and manage workspace resources via the Hex Admin API. Scheduled runs execute projects on cron-based intervals. The Admin API manages users, groups, and data connections. ## Instructions ### Step 1: List Project Runs ```typescript const TOKEN = process.env.HEX_API_TOKEN!; const BASE = 'https://app.hex.tech/api/v1'; async function getProjectRuns(projectId: string) { const response = await fetch(`${BASE}/project/${projectId}/runs`, { headers: { 'Authorization': `Bearer ${TOKEN}` }, }); const runs = await response.json(); for (const run of runs) { console.log(`${run.runId}: ${run.status} (${run.startTime} → ${run.endTime || 'running'})`); } return runs; } ``` ### Step 2: Scheduled Runs (via Hex UI + API Trigger) Schedules are configured in the Hex UI. For API-based scheduling, use external cron: ```typescript // cron-trigger.ts — run via cron job or CI import cron from 'node-cron'; // Daily at 6 AM UTC cron.schedule('0 6 * * *', async () => { console.log('Triggering daily report...'); await triggerRun({ projectId: 'daily-report-project-id', inputParams: { date: new Date().toISOString().split('T')[0] }, updateCache: true, }); }); // Weekly on Monday at 9 AM cron.schedule('0 9 * * 1', async () => { await triggerRun({ projectId: 'weekly-summary-project-id' }); }); ``` ### Step 3: User Management (Admin API) ```typescript // List workspace users async function li...

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-a

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

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-core-workflow-b

Execute Hootsuite secondary workflow: Core Workflow B. Use when implementing secondary use case, or complementing primary workflow. Trigger with phrases like "hootsuite secondary workflow", "secondary task with hootsuite".

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