hex-local-dev-loop

Featured

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

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 Local Dev Loop ## Overview Set up a development workflow for Hex API orchestration with mocked API responses and testing. ## Instructions ### Step 1: Project Structure ``` hex-orchestrator/ ├── src/hex/ │ ├── client.ts # API client │ ├── orchestrator.ts # Pipeline runner │ └── types.ts # TypeScript interfaces ├── tests/ │ ├── fixtures/ # Mock API responses │ └── orchestrator.test.ts ├── .env.local └── package.json ``` ### Step 2: Typed Hex Client ```typescript // src/hex/client.ts export class HexClient { constructor(private token: string, private baseUrl = 'https://app.hex.tech/api/v1') {} async listProjects() { return this.get('/projects'); } async runProject(projectId: string, inputParams?: Record<string, any>) { return this.post(`/project/${projectId}/run`, { inputParams: inputParams || {}, updateCacheResult: true }); } async getRunStatus(projectId: string, runId: string) { return this.get(`/project/${projectId}/run/${runId}`); } async cancelRun(projectId: string, runId: string) { return this.delete(`/project/${projectId}/run/${runId}`); } private async get(path: string) { const res = await fetch(`${this.baseUrl}${path}`, { headers: { 'Authorization': `Bearer ${this.token}` } }); if (!res.ok) throw new Error(`Hex API ${res.status}`); return res.json(); } private async post(path: string, body: any) { const res = await fetch(`${this.baseUrl}${path}`, { method: 'POST', hea...

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

hootsuite-local-dev-loop

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

cohere-local-dev-loop

Configure Cohere local development with mocking, testing, and hot reload. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Cohere API v2. Trigger with phrases like "cohere dev setup", "cohere local development", "cohere dev environment", "develop with cohere", "mock cohere".

2,266 Updated today
jeremylongshore
AI & Automation Featured

hubspot-local-dev-loop

Configure HubSpot local development with testing and sandbox accounts. Use when setting up a development environment, mocking HubSpot APIs, or establishing a fast iteration cycle for HubSpot integrations. Trigger with phrases like "hubspot dev setup", "hubspot local development", "hubspot test sandbox", "develop with hubspot", "mock hubspot".

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