From 2a6d4fcb96ce4b77b83b75b21080ac36fb754bf1 Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Sat, 21 Feb 2026 07:57:11 -0800 Subject: [PATCH 1/6] fix(deploy): reuse subblock merge helper in use change detection hook (#3287) * fix(workflow-changes): change detection logic divergence * use shared helper --- .../deploy/hooks/use-change-detection.ts | 39 ++----------------- 1 file changed, 3 insertions(+), 36 deletions(-) diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/deploy/hooks/use-change-detection.ts b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/deploy/hooks/use-change-detection.ts index 529a4e2f92..9a90c66332 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/deploy/hooks/use-change-detection.ts +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/deploy/hooks/use-change-detection.ts @@ -1,5 +1,6 @@ import { useMemo } from 'react' import { hasWorkflowChanged } from '@/lib/workflows/comparison' +import { mergeSubblockStateWithValues } from '@/lib/workflows/subblocks' import { useVariablesStore } from '@/stores/panel/variables/store' import { useSubBlockStore } from '@/stores/workflows/subblock/store' import { useWorkflowStore } from '@/stores/workflows/workflow/store' @@ -42,44 +43,10 @@ export function useChangeDetection({ const currentState = useMemo((): WorkflowState | null => { if (!workflowId) return null - const blocksWithSubBlocks: WorkflowState['blocks'] = {} - for (const [blockId, block] of Object.entries(blocks)) { - const blockSubValues = subBlockValues?.[blockId] || {} - const subBlocks: Record = {} - - if (block.subBlocks) { - for (const [subId, subBlock] of Object.entries(block.subBlocks)) { - const storedValue = blockSubValues[subId] - subBlocks[subId] = { - ...subBlock, - value: storedValue !== undefined ? storedValue : subBlock.value, - } - } - } - - if (block.triggerMode) { - const triggerConfigValue = blockSubValues?.triggerConfig - if ( - triggerConfigValue && - typeof triggerConfigValue === 'object' && - !subBlocks.triggerConfig - ) { - subBlocks.triggerConfig = { - id: 'triggerConfig', - type: 'short-input', - value: triggerConfigValue, - } - } - } - - blocksWithSubBlocks[blockId] = { - ...block, - subBlocks, - } - } + const mergedBlocks = mergeSubblockStateWithValues(blocks, subBlockValues ?? {}) return { - blocks: blocksWithSubBlocks, + blocks: mergedBlocks, edges, loops, parallels, From ccb4f5956d487d54fe593310acede42b127ef027 Mon Sep 17 00:00:00 2001 From: Waleed Date: Sat, 21 Feb 2026 12:20:19 -0800 Subject: [PATCH 2/6] fix(redis): prevent false rate limits and code execution failures during Redis outages (#3289) --- apps/sim/lib/core/config/redis.test.ts | 176 ++++++++++++++++++ apps/sim/lib/core/config/redis.ts | 70 ++++++- .../core/rate-limiter/rate-limiter.test.ts | 6 +- .../sim/lib/core/rate-limiter/rate-limiter.ts | 7 +- .../core/rate-limiter/storage/factory.test.ts | 129 +++++++++++++ .../lib/core/rate-limiter/storage/factory.ts | 20 +- apps/sim/lib/execution/isolated-vm.test.ts | 35 ++-- apps/sim/lib/execution/isolated-vm.ts | 11 +- 8 files changed, 415 insertions(+), 39 deletions(-) create mode 100644 apps/sim/lib/core/config/redis.test.ts create mode 100644 apps/sim/lib/core/rate-limiter/storage/factory.test.ts diff --git a/apps/sim/lib/core/config/redis.test.ts b/apps/sim/lib/core/config/redis.test.ts new file mode 100644 index 0000000000..7c740e2ec4 --- /dev/null +++ b/apps/sim/lib/core/config/redis.test.ts @@ -0,0 +1,176 @@ +import { createEnvMock, createMockRedis, loggerMock } from '@sim/testing' +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' + +const mockRedisInstance = createMockRedis() + +vi.mock('@sim/logger', () => loggerMock) +vi.mock('@/lib/core/config/env', () => createEnvMock({ REDIS_URL: 'redis://localhost:6379' })) +vi.mock('ioredis', () => ({ + default: vi.fn(() => mockRedisInstance), +})) + +describe('redis config', () => { + beforeEach(() => { + vi.clearAllMocks() + vi.useFakeTimers() + }) + + afterEach(() => { + vi.useRealTimers() + vi.resetModules() + }) + + describe('onRedisReconnect', () => { + it('should register and invoke reconnect listeners', async () => { + const { onRedisReconnect, getRedisClient } = await import('./redis') + const listener = vi.fn() + onRedisReconnect(listener) + + getRedisClient() + + mockRedisInstance.ping.mockRejectedValue(new Error('ETIMEDOUT')) + await vi.advanceTimersByTimeAsync(30_000) + await vi.advanceTimersByTimeAsync(30_000) + await vi.advanceTimersByTimeAsync(30_000) + + expect(listener).toHaveBeenCalledTimes(1) + }) + + it('should not invoke listeners when PINGs succeed', async () => { + const { onRedisReconnect, getRedisClient } = await import('./redis') + const listener = vi.fn() + onRedisReconnect(listener) + + getRedisClient() + mockRedisInstance.ping.mockResolvedValue('PONG') + + await vi.advanceTimersByTimeAsync(30_000) + await vi.advanceTimersByTimeAsync(30_000) + await vi.advanceTimersByTimeAsync(30_000) + + expect(listener).not.toHaveBeenCalled() + }) + + it('should reset failure count on successful PING', async () => { + const { onRedisReconnect, getRedisClient } = await import('./redis') + const listener = vi.fn() + onRedisReconnect(listener) + + getRedisClient() + + // 2 failures then a success — should reset counter + mockRedisInstance.ping.mockRejectedValueOnce(new Error('timeout')) + await vi.advanceTimersByTimeAsync(30_000) + mockRedisInstance.ping.mockRejectedValueOnce(new Error('timeout')) + await vi.advanceTimersByTimeAsync(30_000) + mockRedisInstance.ping.mockResolvedValueOnce('PONG') + await vi.advanceTimersByTimeAsync(30_000) + + // 2 more failures — should NOT trigger reconnect (counter was reset) + mockRedisInstance.ping.mockRejectedValueOnce(new Error('timeout')) + await vi.advanceTimersByTimeAsync(30_000) + mockRedisInstance.ping.mockRejectedValueOnce(new Error('timeout')) + await vi.advanceTimersByTimeAsync(30_000) + + expect(listener).not.toHaveBeenCalled() + }) + + it('should call disconnect(true) after 3 consecutive PING failures', async () => { + const { getRedisClient } = await import('./redis') + getRedisClient() + + mockRedisInstance.ping.mockRejectedValue(new Error('ETIMEDOUT')) + await vi.advanceTimersByTimeAsync(30_000) + await vi.advanceTimersByTimeAsync(30_000) + + expect(mockRedisInstance.disconnect).not.toHaveBeenCalled() + + await vi.advanceTimersByTimeAsync(30_000) + expect(mockRedisInstance.disconnect).toHaveBeenCalledWith(true) + }) + + it('should handle listener errors gracefully without breaking health check', async () => { + const { onRedisReconnect, getRedisClient } = await import('./redis') + const badListener = vi.fn(() => { + throw new Error('listener crashed') + }) + const goodListener = vi.fn() + onRedisReconnect(badListener) + onRedisReconnect(goodListener) + + getRedisClient() + mockRedisInstance.ping.mockRejectedValue(new Error('timeout')) + await vi.advanceTimersByTimeAsync(30_000) + await vi.advanceTimersByTimeAsync(30_000) + await vi.advanceTimersByTimeAsync(30_000) + + expect(badListener).toHaveBeenCalledTimes(1) + expect(goodListener).toHaveBeenCalledTimes(1) + }) + }) + + describe('closeRedisConnection', () => { + it('should clear the PING interval', async () => { + const { getRedisClient, closeRedisConnection } = await import('./redis') + getRedisClient() + + mockRedisInstance.quit.mockResolvedValue('OK') + await closeRedisConnection() + + // After closing, PING failures should not trigger disconnect + mockRedisInstance.ping.mockRejectedValue(new Error('timeout')) + await vi.advanceTimersByTimeAsync(30_000 * 5) + expect(mockRedisInstance.disconnect).not.toHaveBeenCalled() + }) + }) + + describe('retryStrategy', () => { + async function captureRetryStrategy(): Promise<(times: number) => number> { + vi.resetModules() + + vi.doMock('@sim/logger', () => loggerMock) + vi.doMock('@/lib/core/config/env', () => + createEnvMock({ REDIS_URL: 'redis://localhost:6379' }) + ) + + let capturedConfig: Record = {} + vi.doMock('ioredis', () => ({ + default: vi.fn((_url: string, config: Record) => { + capturedConfig = config + return { ping: vi.fn(), on: vi.fn() } + }), + })) + + const { getRedisClient } = await import('./redis') + getRedisClient() + + return capturedConfig.retryStrategy as (times: number) => number + } + + it('should use exponential backoff with jitter', async () => { + const retryStrategy = await captureRetryStrategy() + expect(retryStrategy).toBeDefined() + + // Base for attempt 1: min(1000 * 2^0, 10000) = 1000, jitter up to 300 + const delay1 = retryStrategy(1) + expect(delay1).toBeGreaterThanOrEqual(1000) + expect(delay1).toBeLessThanOrEqual(1300) + + // Base for attempt 3: min(1000 * 2^2, 10000) = 4000, jitter up to 1200 + const delay3 = retryStrategy(3) + expect(delay3).toBeGreaterThanOrEqual(4000) + expect(delay3).toBeLessThanOrEqual(5200) + + // Base for attempt 5: min(1000 * 2^4, 10000) = 10000, jitter up to 3000 + const delay5 = retryStrategy(5) + expect(delay5).toBeGreaterThanOrEqual(10000) + expect(delay5).toBeLessThanOrEqual(13000) + }) + + it('should cap at 30s for attempts beyond 10', async () => { + const retryStrategy = await captureRetryStrategy() + expect(retryStrategy(11)).toBe(30000) + expect(retryStrategy(100)).toBe(30000) + }) + }) +}) diff --git a/apps/sim/lib/core/config/redis.ts b/apps/sim/lib/core/config/redis.ts index ede72eaea9..4db71b49b2 100644 --- a/apps/sim/lib/core/config/redis.ts +++ b/apps/sim/lib/core/config/redis.ts @@ -7,6 +7,63 @@ const logger = createLogger('Redis') const redisUrl = env.REDIS_URL let globalRedisClient: Redis | null = null +let pingFailures = 0 +let pingInterval: NodeJS.Timeout | null = null +let pingInFlight = false + +const PING_INTERVAL_MS = 30_000 +const MAX_PING_FAILURES = 3 + +/** Callbacks invoked when the PING health check forces a reconnect. */ +const reconnectListeners: Array<() => void> = [] + +/** + * Register a callback that fires when the PING health check forces a reconnect. + * Useful for resetting cached adapters that hold a stale Redis reference. + */ +export function onRedisReconnect(cb: () => void): void { + reconnectListeners.push(cb) +} + +function startPingHealthCheck(redis: Redis): void { + if (pingInterval) return + + pingInterval = setInterval(async () => { + if (pingInFlight) return + pingInFlight = true + try { + await redis.ping() + pingFailures = 0 + } catch (error) { + pingFailures++ + logger.warn('Redis PING failed', { + consecutiveFailures: pingFailures, + error: error instanceof Error ? error.message : String(error), + }) + + if (pingFailures >= MAX_PING_FAILURES) { + logger.error('Redis PING failed 3 consecutive times — forcing reconnect', { + consecutiveFailures: pingFailures, + }) + pingFailures = 0 + for (const cb of reconnectListeners) { + try { + cb() + } catch (cbError) { + logger.error('Redis reconnect listener error', { error: cbError }) + } + } + try { + redis.disconnect(true) + } catch (disconnectError) { + logger.error('Error during forced Redis disconnect', { error: disconnectError }) + } + } + } finally { + pingInFlight = false + } + }, PING_INTERVAL_MS) +} /** * Get a Redis client instance. @@ -35,8 +92,10 @@ export function getRedisClient(): Redis | null { logger.error(`Redis reconnection attempt ${times}`, { nextRetryMs: 30000 }) return 30000 } - const delay = Math.min(times * 500, 5000) - logger.warn(`Redis reconnecting`, { attempt: times, nextRetryMs: delay }) + const base = Math.min(1000 * 2 ** (times - 1), 10000) + const jitter = Math.random() * base * 0.3 + const delay = Math.round(base + jitter) + logger.warn('Redis reconnecting', { attempt: times, nextRetryMs: delay }) return delay }, @@ -54,6 +113,8 @@ export function getRedisClient(): Redis | null { globalRedisClient.on('close', () => logger.warn('Redis connection closed')) globalRedisClient.on('end', () => logger.error('Redis connection ended')) + startPingHealthCheck(globalRedisClient) + return globalRedisClient } catch (error) { logger.error('Failed to initialize Redis client', { error }) @@ -118,6 +179,11 @@ export async function releaseLock(lockKey: string, value: string): Promise { + if (pingInterval) { + clearInterval(pingInterval) + pingInterval = null + } + if (globalRedisClient) { try { await globalRedisClient.quit() diff --git a/apps/sim/lib/core/rate-limiter/rate-limiter.test.ts b/apps/sim/lib/core/rate-limiter/rate-limiter.test.ts index 6aaf4ef332..658febd7d6 100644 --- a/apps/sim/lib/core/rate-limiter/rate-limiter.test.ts +++ b/apps/sim/lib/core/rate-limiter/rate-limiter.test.ts @@ -172,7 +172,7 @@ describe('RateLimiter', () => { ) }) - it('should deny on storage error (fail closed)', async () => { + it('should allow on storage error (fail open)', async () => { mockAdapter.consumeTokens.mockRejectedValue(new Error('Storage error')) const result = await rateLimiter.checkRateLimitWithSubscription( @@ -182,8 +182,8 @@ describe('RateLimiter', () => { false ) - expect(result.allowed).toBe(false) - expect(result.remaining).toBe(0) + expect(result.allowed).toBe(true) + expect(result.remaining).toBe(1) }) it('should work for all non-manual trigger types', async () => { diff --git a/apps/sim/lib/core/rate-limiter/rate-limiter.ts b/apps/sim/lib/core/rate-limiter/rate-limiter.ts index 53711429f8..a48c33a0ab 100644 --- a/apps/sim/lib/core/rate-limiter/rate-limiter.ts +++ b/apps/sim/lib/core/rate-limiter/rate-limiter.ts @@ -100,17 +100,16 @@ export class RateLimiter { retryAfterMs: result.retryAfterMs, } } catch (error) { - logger.error('Rate limit storage error - failing closed (denying request)', { + logger.error('Rate limit storage error - failing open (allowing request)', { error: error instanceof Error ? error.message : String(error), userId, triggerType, isAsync, }) return { - allowed: false, - remaining: 0, + allowed: true, + remaining: 1, resetAt: new Date(Date.now() + RATE_LIMIT_WINDOW_MS), - retryAfterMs: RATE_LIMIT_WINDOW_MS, } } } diff --git a/apps/sim/lib/core/rate-limiter/storage/factory.test.ts b/apps/sim/lib/core/rate-limiter/storage/factory.test.ts new file mode 100644 index 0000000000..58098b377e --- /dev/null +++ b/apps/sim/lib/core/rate-limiter/storage/factory.test.ts @@ -0,0 +1,129 @@ +import { loggerMock } from '@sim/testing' +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' + +vi.mock('@sim/logger', () => loggerMock) + +const reconnectCallbacks: Array<() => void> = [] + +vi.mock('@/lib/core/config/redis', () => ({ + getRedisClient: vi.fn(() => null), + onRedisReconnect: vi.fn((cb: () => void) => { + reconnectCallbacks.push(cb) + }), +})) + +vi.mock('@/lib/core/storage', () => ({ + getStorageMethod: vi.fn(() => 'db'), +})) + +vi.mock('./db-token-bucket', () => ({ + DbTokenBucket: vi.fn(() => ({ type: 'db' })), +})) + +vi.mock('./redis-token-bucket', () => ({ + RedisTokenBucket: vi.fn(() => ({ type: 'redis' })), +})) + +describe('rate limit storage factory', () => { + beforeEach(() => { + vi.clearAllMocks() + reconnectCallbacks.length = 0 + }) + + afterEach(() => { + vi.resetModules() + }) + + it('should fall back to DbTokenBucket when Redis is configured but client unavailable', async () => { + const { getStorageMethod } = await import('@/lib/core/storage') + vi.mocked(getStorageMethod).mockReturnValue('redis') + + const { getRedisClient } = await import('@/lib/core/config/redis') + vi.mocked(getRedisClient).mockReturnValue(null) + + const { createStorageAdapter, resetStorageAdapter } = await import('./factory') + resetStorageAdapter() + + const adapter = createStorageAdapter() + expect(adapter).toEqual({ type: 'db' }) + }) + + it('should use RedisTokenBucket when Redis client is available', async () => { + const { getStorageMethod } = await import('@/lib/core/storage') + vi.mocked(getStorageMethod).mockReturnValue('redis') + + const { getRedisClient } = await import('@/lib/core/config/redis') + vi.mocked(getRedisClient).mockReturnValue({ ping: vi.fn() } as never) + + const { createStorageAdapter, resetStorageAdapter } = await import('./factory') + resetStorageAdapter() + + const adapter = createStorageAdapter() + expect(adapter).toEqual({ type: 'redis' }) + }) + + it('should use DbTokenBucket when storage method is db', async () => { + const { getStorageMethod } = await import('@/lib/core/storage') + vi.mocked(getStorageMethod).mockReturnValue('db') + + const { createStorageAdapter, resetStorageAdapter } = await import('./factory') + resetStorageAdapter() + + const adapter = createStorageAdapter() + expect(adapter).toEqual({ type: 'db' }) + }) + + it('should cache the adapter and return same instance', async () => { + const { getStorageMethod } = await import('@/lib/core/storage') + vi.mocked(getStorageMethod).mockReturnValue('db') + + const { createStorageAdapter, resetStorageAdapter } = await import('./factory') + resetStorageAdapter() + + const adapter1 = createStorageAdapter() + const adapter2 = createStorageAdapter() + expect(adapter1).toBe(adapter2) + }) + + it('should register a reconnect listener that resets cached adapter', async () => { + const { getStorageMethod } = await import('@/lib/core/storage') + vi.mocked(getStorageMethod).mockReturnValue('db') + + const { createStorageAdapter, resetStorageAdapter } = await import('./factory') + resetStorageAdapter() + + const adapter1 = createStorageAdapter() + + // Simulate Redis reconnect — should reset cached adapter + expect(reconnectCallbacks.length).toBeGreaterThan(0) + reconnectCallbacks[0]() + + // Next call should create a fresh adapter + const adapter2 = createStorageAdapter() + expect(adapter2).not.toBe(adapter1) + }) + + it('should re-evaluate storage on next call after reconnect resets cache', async () => { + const { getStorageMethod } = await import('@/lib/core/storage') + const { getRedisClient } = await import('@/lib/core/config/redis') + + // Start with Redis unavailable — falls back to DB + vi.mocked(getStorageMethod).mockReturnValue('redis') + vi.mocked(getRedisClient).mockReturnValue(null) + + const { createStorageAdapter, resetStorageAdapter } = await import('./factory') + resetStorageAdapter() + + const adapter1 = createStorageAdapter() + expect(adapter1).toEqual({ type: 'db' }) + + // Simulate reconnect + reconnectCallbacks[0]() + + // Now Redis is available + vi.mocked(getRedisClient).mockReturnValue({ ping: vi.fn() } as never) + + const adapter2 = createStorageAdapter() + expect(adapter2).toEqual({ type: 'redis' }) + }) +}) diff --git a/apps/sim/lib/core/rate-limiter/storage/factory.ts b/apps/sim/lib/core/rate-limiter/storage/factory.ts index ff6b9961c1..948e51ad90 100644 --- a/apps/sim/lib/core/rate-limiter/storage/factory.ts +++ b/apps/sim/lib/core/rate-limiter/storage/factory.ts @@ -1,5 +1,5 @@ import { createLogger } from '@sim/logger' -import { getRedisClient } from '@/lib/core/config/redis' +import { getRedisClient, onRedisReconnect } from '@/lib/core/config/redis' import { getStorageMethod, type StorageMethod } from '@/lib/core/storage' import type { RateLimitStorageAdapter } from './adapter' import { DbTokenBucket } from './db-token-bucket' @@ -8,21 +8,33 @@ import { RedisTokenBucket } from './redis-token-bucket' const logger = createLogger('RateLimitStorage') let cachedAdapter: RateLimitStorageAdapter | null = null +let reconnectListenerRegistered = false export function createStorageAdapter(): RateLimitStorageAdapter { if (cachedAdapter) { return cachedAdapter } + if (!reconnectListenerRegistered) { + onRedisReconnect(() => { + cachedAdapter = null + }) + reconnectListenerRegistered = true + } + const storageMethod = getStorageMethod() if (storageMethod === 'redis') { const redis = getRedisClient() if (!redis) { - throw new Error('Redis configured but client unavailable') + logger.warn( + 'Redis configured but client unavailable - falling back to PostgreSQL for rate limiting' + ) + cachedAdapter = new DbTokenBucket() + } else { + logger.info('Rate limiting: Using Redis') + cachedAdapter = new RedisTokenBucket(redis) } - logger.info('Rate limiting: Using Redis') - cachedAdapter = new RedisTokenBucket(redis) } else { logger.info('Rate limiting: Using PostgreSQL') cachedAdapter = new DbTokenBucket() diff --git a/apps/sim/lib/execution/isolated-vm.test.ts b/apps/sim/lib/execution/isolated-vm.test.ts index 17fb20c0d7..0a7059dfb3 100644 --- a/apps/sim/lib/execution/isolated-vm.test.ts +++ b/apps/sim/lib/execution/isolated-vm.test.ts @@ -1,4 +1,5 @@ import { EventEmitter } from 'node:events' +import { createEnvMock, loggerMock } from '@sim/testing' import { afterEach, describe, expect, it, vi } from 'vitest' type MockProc = EventEmitter & { @@ -130,13 +131,7 @@ async function loadExecutionModule(options: { return next() as any }) - vi.doMock('@sim/logger', () => ({ - createLogger: () => ({ - info: vi.fn(), - warn: vi.fn(), - error: vi.fn(), - }), - })) + vi.doMock('@sim/logger', () => loggerMock) const secureFetchMock = vi.fn( options.secureFetchImpl ?? @@ -154,8 +149,12 @@ async function loadExecutionModule(options: { secureFetchWithValidation: secureFetchMock, })) - vi.doMock('@/lib/core/config/env', () => ({ - env: { + vi.doMock('@/lib/core/utils/logging', () => ({ + sanitizeUrlForLog: vi.fn((url: string) => url), + })) + + vi.doMock('@/lib/core/config/env', () => + createEnvMock({ IVM_POOL_SIZE: '1', IVM_MAX_CONCURRENT: '100', IVM_MAX_PER_WORKER: '100', @@ -168,8 +167,8 @@ async function loadExecutionModule(options: { IVM_DISTRIBUTED_LEASE_MIN_TTL_MS: '1000', IVM_QUEUE_TIMEOUT_MS: '1000', ...(options.envOverrides ?? {}), - }, - })) + }) + ) const redisEval = options.redisEvalImpl ? vi.fn(options.redisEvalImpl) : undefined vi.doMock('@/lib/core/config/redis', () => ({ @@ -319,7 +318,7 @@ describe('isolated-vm scheduler', () => { expect(result.error?.message).toContain('Too many concurrent') }) - it('fails closed when Redis is configured but unavailable', async () => { + it('falls back to local execution when Redis is configured but unavailable', async () => { const { executeInIsolatedVM } = await loadExecutionModule({ envOverrides: { REDIS_URL: 'redis://localhost:6379', @@ -328,7 +327,7 @@ describe('isolated-vm scheduler', () => { }) const result = await executeInIsolatedVM({ - code: 'return "blocked"', + code: 'return "ok"', params: {}, envVars: {}, contextVariables: {}, @@ -337,10 +336,11 @@ describe('isolated-vm scheduler', () => { ownerKey: 'user:redis-down', }) - expect(result.error?.message).toContain('temporarily unavailable') + expect(result.error).toBeUndefined() + expect(result.result).toBe('ok') }) - it('fails closed when Redis lease evaluation errors', async () => { + it('falls back to local execution when Redis lease evaluation errors', async () => { const { executeInIsolatedVM } = await loadExecutionModule({ envOverrides: { REDIS_URL: 'redis://localhost:6379', @@ -356,7 +356,7 @@ describe('isolated-vm scheduler', () => { }) const result = await executeInIsolatedVM({ - code: 'return "blocked"', + code: 'return "ok"', params: {}, envVars: {}, contextVariables: {}, @@ -365,7 +365,8 @@ describe('isolated-vm scheduler', () => { ownerKey: 'user:redis-error', }) - expect(result.error?.message).toContain('temporarily unavailable') + expect(result.error).toBeUndefined() + expect(result.result).toBe('ok') }) it('applies weighted owner scheduling when draining queued executions', async () => { diff --git a/apps/sim/lib/execution/isolated-vm.ts b/apps/sim/lib/execution/isolated-vm.ts index ae14cc478a..0efeee09b4 100644 --- a/apps/sim/lib/execution/isolated-vm.ts +++ b/apps/sim/lib/execution/isolated-vm.ts @@ -987,15 +987,8 @@ export async function executeInIsolatedVM( } } if (leaseAcquireResult === 'unavailable') { - maybeCleanupOwner(ownerKey) - return { - result: null, - stdout: '', - error: { - message: 'Code execution is temporarily unavailable. Please try again in a moment.', - name: 'Error', - }, - } + logger.warn('Distributed lease unavailable, falling back to local execution', { ownerKey }) + // Continue execution — local pool still enforces per-process concurrency limits } let settled = false From 4913799a278ba53fef2403ff7e319117215c31a6 Mon Sep 17 00:00:00 2001 From: Waleed Date: Sat, 21 Feb 2026 14:38:05 -0800 Subject: [PATCH 3/6] feat(oauth): add CIMD support for client metadata discovery (#3285) * feat(oauth): add CIMD support for client metadata discovery * fix(oauth): add response size limit, redirect_uri and logo_uri validation to CIMD - Add maxResponseBytes (256KB) to prevent oversized responses - Validate redirect_uri schemes (https/http only) and reject commas - Validate logo_uri requires HTTPS, silently drop invalid logos * fix(oauth): add explicit userId null for CIMD client insert * fix(oauth): fix redirect_uri error handling, skip upsert on cache hit - Move scheme check outside try/catch so specific error isn't swallowed - Return fromCache flag from resolveClientMetadata to skip redundant DB writes * fix(oauth): evict CIMD cache on upsert failure to allow retry --- apps/sim/app/(auth)/oauth/consent/page.tsx | 5 +- apps/sim/lib/auth/auth.ts | 31 ++++ apps/sim/lib/auth/cimd.ts | 168 +++++++++++++++++++++ 3 files changed, 201 insertions(+), 3 deletions(-) create mode 100644 apps/sim/lib/auth/cimd.ts diff --git a/apps/sim/app/(auth)/oauth/consent/page.tsx b/apps/sim/app/(auth)/oauth/consent/page.tsx index bc851ccff7..ff9986d3c8 100644 --- a/apps/sim/app/(auth)/oauth/consent/page.tsx +++ b/apps/sim/app/(auth)/oauth/consent/page.tsx @@ -46,7 +46,7 @@ export default function OAuthConsentPage() { return } - fetch(`/api/auth/oauth2/client/${clientId}`, { credentials: 'include' }) + fetch(`/api/auth/oauth2/client/${encodeURIComponent(clientId)}`, { credentials: 'include' }) .then(async (res) => { if (!res.ok) return const data = await res.json() @@ -164,13 +164,12 @@ export default function OAuthConsentPage() {
{clientInfo?.icon ? ( - {clientName ) : (
diff --git a/apps/sim/lib/auth/auth.ts b/apps/sim/lib/auth/auth.ts index c2e337d6bb..1ad66ab16b 100644 --- a/apps/sim/lib/auth/auth.ts +++ b/apps/sim/lib/auth/auth.ts @@ -25,6 +25,12 @@ import { renderPasswordResetEmail, renderWelcomeEmail, } from '@/components/emails' +import { + evictCachedMetadata, + isMetadataUrl, + resolveClientMetadata, + upsertCimdClient, +} from '@/lib/auth/cimd' import { sendPlanWelcomeEmail } from '@/lib/billing' import { authorizeSubscriptionReference } from '@/lib/billing/authorization' import { handleNewUser } from '@/lib/billing/core/usage' @@ -541,6 +547,28 @@ export const auth = betterAuth({ } } + if (ctx.path === '/oauth2/authorize' || ctx.path === '/oauth2/token') { + const clientId = (ctx.query?.client_id ?? ctx.body?.client_id) as string | undefined + if (clientId && isMetadataUrl(clientId)) { + try { + const { metadata, fromCache } = await resolveClientMetadata(clientId) + if (!fromCache) { + try { + await upsertCimdClient(metadata) + } catch (upsertErr) { + evictCachedMetadata(clientId) + throw upsertErr + } + } + } catch (err) { + logger.warn('CIMD resolution failed', { + clientId, + error: err instanceof Error ? err.message : String(err), + }) + } + } + } + return }), }, @@ -560,6 +588,9 @@ export const auth = betterAuth({ allowDynamicClientRegistration: true, useJWTPlugin: true, scopes: ['openid', 'profile', 'email', 'offline_access', 'mcp:tools'], + metadata: { + client_id_metadata_document_supported: true, + } as Record, }), oneTimeToken({ expiresIn: 24 * 60 * 60, // 24 hours - Socket.IO handles connection persistence with heartbeats diff --git a/apps/sim/lib/auth/cimd.ts b/apps/sim/lib/auth/cimd.ts new file mode 100644 index 0000000000..f3437156ea --- /dev/null +++ b/apps/sim/lib/auth/cimd.ts @@ -0,0 +1,168 @@ +import { randomUUID } from 'node:crypto' +import { db } from '@sim/db' +import { oauthApplication } from '@sim/db/schema' +import { createLogger } from '@sim/logger' +import { secureFetchWithValidation } from '@/lib/core/security/input-validation.server' + +const logger = createLogger('cimd') + +interface ClientMetadataDocument { + client_id: string + client_name: string + logo_uri?: string + redirect_uris: string[] + client_uri?: string + policy_uri?: string + tos_uri?: string + contacts?: string[] + scope?: string +} + +export function isMetadataUrl(clientId: string): boolean { + return clientId.startsWith('https://') +} + +async function fetchClientMetadata(url: string): Promise { + const parsed = new URL(url) + if (parsed.protocol !== 'https:') { + throw new Error('CIMD URL must use HTTPS') + } + + const res = await secureFetchWithValidation(url, { + headers: { Accept: 'application/json' }, + timeout: 5000, + maxResponseBytes: 256 * 1024, + }) + + if (!res.ok) { + throw new Error(`CIMD fetch failed: ${res.status} ${res.statusText}`) + } + + const doc = (await res.json()) as ClientMetadataDocument + + if (doc.client_id !== url) { + throw new Error(`CIMD client_id mismatch: document has "${doc.client_id}", expected "${url}"`) + } + + if (!Array.isArray(doc.redirect_uris) || doc.redirect_uris.length === 0) { + throw new Error('CIMD document must contain at least one redirect_uri') + } + + for (const uri of doc.redirect_uris) { + let parsed: URL + try { + parsed = new URL(uri) + } catch { + throw new Error(`Invalid redirect_uri: ${uri}`) + } + if (parsed.protocol !== 'https:' && parsed.protocol !== 'http:') { + throw new Error(`Invalid redirect_uri scheme: ${parsed.protocol}`) + } + if (uri.includes(',')) { + throw new Error(`redirect_uri must not contain commas: ${uri}`) + } + } + + if (doc.logo_uri) { + try { + const logoParsed = new URL(doc.logo_uri) + if (logoParsed.protocol !== 'https:') { + doc.logo_uri = undefined + } + } catch { + doc.logo_uri = undefined + } + } + + if (!doc.client_name || typeof doc.client_name !== 'string') { + throw new Error('CIMD document must contain a client_name') + } + + return doc +} + +const CACHE_TTL_MS = 5 * 60 * 1000 +const NEGATIVE_CACHE_TTL_MS = 60 * 1000 +const cache = new Map() +const failureCache = new Map() +const inflight = new Map>() + +interface ResolveResult { + metadata: ClientMetadataDocument + fromCache: boolean +} + +export async function resolveClientMetadata(url: string): Promise { + const cached = cache.get(url) + if (cached && Date.now() < cached.expiresAt) { + return { metadata: cached.doc, fromCache: true } + } + + const failed = failureCache.get(url) + if (failed && Date.now() < failed.expiresAt) { + throw new Error(failed.error) + } + + const pending = inflight.get(url) + if (pending) { + return pending.then((doc) => ({ metadata: doc, fromCache: false })) + } + + const promise = fetchClientMetadata(url) + .then((doc) => { + cache.set(url, { doc, expiresAt: Date.now() + CACHE_TTL_MS }) + failureCache.delete(url) + return doc + }) + .catch((err) => { + const message = err instanceof Error ? err.message : String(err) + failureCache.set(url, { error: message, expiresAt: Date.now() + NEGATIVE_CACHE_TTL_MS }) + throw err + }) + .finally(() => { + inflight.delete(url) + }) + + inflight.set(url, promise) + return promise.then((doc) => ({ metadata: doc, fromCache: false })) +} + +export function evictCachedMetadata(url: string): void { + cache.delete(url) +} + +export async function upsertCimdClient(metadata: ClientMetadataDocument): Promise { + const now = new Date() + const redirectURLs = metadata.redirect_uris.join(',') + + await db + .insert(oauthApplication) + .values({ + id: randomUUID(), + clientId: metadata.client_id, + name: metadata.client_name, + icon: metadata.logo_uri ?? null, + redirectURLs, + type: 'public', + clientSecret: null, + userId: null, + createdAt: now, + updatedAt: now, + }) + .onConflictDoUpdate({ + target: oauthApplication.clientId, + set: { + name: metadata.client_name, + icon: metadata.logo_uri ?? null, + redirectURLs, + type: 'public', + clientSecret: null, + updatedAt: now, + }, + }) + + logger.info('Upserted CIMD client', { + clientId: metadata.client_id, + name: metadata.client_name, + }) +} From e318bf2e654a790abf1d9602b5ccd998fdc99ec4 Mon Sep 17 00:00:00 2001 From: Waleed Date: Sat, 21 Feb 2026 16:44:39 -0800 Subject: [PATCH 4/6] feat(tools): added hex (#3293) * feat(tools): added hex * update tool names --- apps/docs/components/icons.tsx | 12 + apps/docs/components/ui/icon-mapping.ts | 2 + apps/docs/content/docs/en/tools/hex.mdx | 459 ++++++++++++++++++++ apps/docs/content/docs/en/tools/meta.json | 1 + apps/sim/blocks/blocks/hex.ts | 440 +++++++++++++++++++ apps/sim/blocks/registry.ts | 2 + apps/sim/components/icons.tsx | 12 + apps/sim/tools/hex/cancel_run.ts | 70 +++ apps/sim/tools/hex/create_collection.ts | 78 ++++ apps/sim/tools/hex/get_collection.ts | 64 +++ apps/sim/tools/hex/get_data_connection.ts | 76 ++++ apps/sim/tools/hex/get_group.ts | 52 +++ apps/sim/tools/hex/get_project.ts | 78 ++++ apps/sim/tools/hex/get_project_runs.ts | 115 +++++ apps/sim/tools/hex/get_queried_tables.ts | 81 ++++ apps/sim/tools/hex/get_run_status.ts | 72 +++ apps/sim/tools/hex/index.ts | 33 ++ apps/sim/tools/hex/list_collections.ts | 94 ++++ apps/sim/tools/hex/list_data_connections.ts | 116 +++++ apps/sim/tools/hex/list_groups.ts | 85 ++++ apps/sim/tools/hex/list_projects.ts | 138 ++++++ apps/sim/tools/hex/list_users.ts | 98 +++++ apps/sim/tools/hex/run_project.ts | 108 +++++ apps/sim/tools/hex/types.ts | 429 ++++++++++++++++++ apps/sim/tools/hex/update_project.ts | 118 +++++ apps/sim/tools/registry.ts | 34 ++ 26 files changed, 2867 insertions(+) create mode 100644 apps/docs/content/docs/en/tools/hex.mdx create mode 100644 apps/sim/blocks/blocks/hex.ts create mode 100644 apps/sim/tools/hex/cancel_run.ts create mode 100644 apps/sim/tools/hex/create_collection.ts create mode 100644 apps/sim/tools/hex/get_collection.ts create mode 100644 apps/sim/tools/hex/get_data_connection.ts create mode 100644 apps/sim/tools/hex/get_group.ts create mode 100644 apps/sim/tools/hex/get_project.ts create mode 100644 apps/sim/tools/hex/get_project_runs.ts create mode 100644 apps/sim/tools/hex/get_queried_tables.ts create mode 100644 apps/sim/tools/hex/get_run_status.ts create mode 100644 apps/sim/tools/hex/index.ts create mode 100644 apps/sim/tools/hex/list_collections.ts create mode 100644 apps/sim/tools/hex/list_data_connections.ts create mode 100644 apps/sim/tools/hex/list_groups.ts create mode 100644 apps/sim/tools/hex/list_projects.ts create mode 100644 apps/sim/tools/hex/list_users.ts create mode 100644 apps/sim/tools/hex/run_project.ts create mode 100644 apps/sim/tools/hex/types.ts create mode 100644 apps/sim/tools/hex/update_project.ts diff --git a/apps/docs/components/icons.tsx b/apps/docs/components/icons.tsx index 16c248b74d..1d50d0d068 100644 --- a/apps/docs/components/icons.tsx +++ b/apps/docs/components/icons.tsx @@ -5819,3 +5819,15 @@ export function RedisIcon(props: SVGProps) { ) } + +export function HexIcon(props: SVGProps) { + return ( + + + + ) +} diff --git a/apps/docs/components/ui/icon-mapping.ts b/apps/docs/components/ui/icon-mapping.ts index 061586caee..5929ccca3d 100644 --- a/apps/docs/components/ui/icon-mapping.ts +++ b/apps/docs/components/ui/icon-mapping.ts @@ -54,6 +54,7 @@ import { GrafanaIcon, GrainIcon, GreptileIcon, + HexIcon, HubspotIcon, HuggingFaceIcon, HunterIOIcon, @@ -196,6 +197,7 @@ export const blockTypeToIconMap: Record = { grafana: GrafanaIcon, grain: GrainIcon, greptile: GreptileIcon, + hex: HexIcon, hubspot: HubspotIcon, huggingface: HuggingFaceIcon, hunter: HunterIOIcon, diff --git a/apps/docs/content/docs/en/tools/hex.mdx b/apps/docs/content/docs/en/tools/hex.mdx new file mode 100644 index 0000000000..c979333847 --- /dev/null +++ b/apps/docs/content/docs/en/tools/hex.mdx @@ -0,0 +1,459 @@ +--- +title: Hex +description: Run and manage Hex projects +--- + +import { BlockInfoCard } from "@/components/ui/block-info-card" + + + +{/* MANUAL-CONTENT-START:intro */} +[Hex](https://hex.tech/) is a collaborative platform for analytics and data science that allows you to build, run, and share interactive data projects and notebooks. Hex lets teams work together on data exploration, transformation, and visualization, making it easy to turn analysis into shareable insights. + +With Hex, you can: + +- **Create and run powerful notebooks**: Blend SQL, Python, and visualizations in a single, interactive workspace. +- **Collaborate and share**: Work together with teammates in real time and publish interactive data apps for broader audiences. +- **Automate and orchestrate workflows**: Schedule notebook runs, parameterize runs with inputs, and automate data tasks. +- **Visualize and communicate results**: Turn analysis results into dashboards or interactive apps that anyone can use. +- **Integrate with your data stack**: Connect easily to data warehouses, APIs, and other sources. + +The Sim Hex integration allows your AI agents or workflows to: + +- List, get, and manage Hex projects directly from Sim. +- Trigger and monitor notebook runs, check their statuses, or cancel them as part of larger automation flows. +- Retrieve run results and use them within Sim-powered processes and decision-making. +- Leverage Hex’s interactive analytics capabilities right inside your automated Sim workflows. + +Whether you’re empowering analysts, automating reporting, or embedding actionable data into your processes, Hex and Sim provide a seamless way to operationalize analytics and bring data-driven insights to your team. +{/* MANUAL-CONTENT-END */} + + +## Usage Instructions + +Integrate Hex into your workflow. Run projects, check run status, manage collections and groups, list users, and view data connections. Requires a Hex API token. + + + +## Tools + +### `hex_cancel_run` + +Cancel an active Hex project run. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `projectId` | string | Yes | The UUID of the Hex project | +| `runId` | string | Yes | The UUID of the run to cancel | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `success` | boolean | Whether the run was successfully cancelled | +| `projectId` | string | Project UUID | +| `runId` | string | Run UUID that was cancelled | + +### `hex_create_collection` + +Create a new collection in the Hex workspace to organize projects. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `name` | string | Yes | Name for the new collection | +| `description` | string | No | Optional description for the collection | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `id` | string | Newly created collection UUID | +| `name` | string | Collection name | +| `description` | string | Collection description | +| `creator` | object | Collection creator | +| ↳ `email` | string | Creator email | +| ↳ `id` | string | Creator UUID | + +### `hex_get_collection` + +Retrieve details for a specific Hex collection by its ID. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `collectionId` | string | Yes | The UUID of the collection | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `id` | string | Collection UUID | +| `name` | string | Collection name | +| `description` | string | Collection description | +| `creator` | object | Collection creator | +| ↳ `email` | string | Creator email | +| ↳ `id` | string | Creator UUID | + +### `hex_get_data_connection` + +Retrieve details for a specific data connection including type, description, and configuration flags. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `dataConnectionId` | string | Yes | The UUID of the data connection | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `id` | string | Connection UUID | +| `name` | string | Connection name | +| `type` | string | Connection type \(e.g., snowflake, postgres, bigquery\) | +| `description` | string | Connection description | +| `connectViaSsh` | boolean | Whether SSH tunneling is enabled | +| `includeMagic` | boolean | Whether Magic AI features are enabled | +| `allowWritebackCells` | boolean | Whether writeback cells are allowed | + +### `hex_get_group` + +Retrieve details for a specific Hex group. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `groupId` | string | Yes | The UUID of the group | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `id` | string | Group UUID | +| `name` | string | Group name | +| `createdAt` | string | Creation timestamp | + +### `hex_get_project` + +Get metadata and details for a specific Hex project by its ID. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `projectId` | string | Yes | The UUID of the Hex project | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `id` | string | Project UUID | +| `title` | string | Project title | +| `description` | string | Project description | +| `status` | object | Project status | +| ↳ `name` | string | Status name \(e.g., PUBLISHED, DRAFT\) | +| `type` | string | Project type \(PROJECT or COMPONENT\) | +| `creator` | object | Project creator | +| ↳ `email` | string | Creator email | +| `owner` | object | Project owner | +| ↳ `email` | string | Owner email | +| `categories` | array | Project categories | +| ↳ `name` | string | Category name | +| ↳ `description` | string | Category description | +| `lastEditedAt` | string | ISO 8601 last edited timestamp | +| `lastPublishedAt` | string | ISO 8601 last published timestamp | +| `createdAt` | string | ISO 8601 creation timestamp | +| `archivedAt` | string | ISO 8601 archived timestamp | +| `trashedAt` | string | ISO 8601 trashed timestamp | + +### `hex_get_project_runs` + +Retrieve API-triggered runs for a Hex project with optional filtering by status and pagination. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `projectId` | string | Yes | The UUID of the Hex project | +| `limit` | number | No | Maximum number of runs to return \(1-100, default: 25\) | +| `offset` | number | No | Offset for paginated results \(default: 0\) | +| `statusFilter` | string | No | Filter by run status: PENDING, RUNNING, ERRORED, COMPLETED, KILLED, UNABLE_TO_ALLOCATE_KERNEL | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `runs` | array | List of project runs | +| ↳ `projectId` | string | Project UUID | +| ↳ `runId` | string | Run UUID | +| ↳ `runUrl` | string | URL to view the run | +| ↳ `status` | string | Run status \(PENDING, RUNNING, COMPLETED, ERRORED, KILLED, UNABLE_TO_ALLOCATE_KERNEL\) | +| ↳ `startTime` | string | Run start time | +| ↳ `endTime` | string | Run end time | +| ↳ `elapsedTime` | number | Elapsed time in seconds | +| ↳ `traceId` | string | Trace ID | +| ↳ `projectVersion` | number | Project version number | +| `total` | number | Total number of runs returned | +| `traceId` | string | Top-level trace ID | + +### `hex_get_queried_tables` + +Return the warehouse tables queried by a Hex project, including data connection and table names. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `projectId` | string | Yes | The UUID of the Hex project | +| `limit` | number | No | Maximum number of tables to return \(1-100\) | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `tables` | array | List of warehouse tables queried by the project | +| ↳ `dataConnectionId` | string | Data connection UUID | +| ↳ `dataConnectionName` | string | Data connection name | +| ↳ `tableName` | string | Table name | +| `total` | number | Total number of tables returned | + +### `hex_get_run_status` + +Check the status of a Hex project run by its run ID. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `projectId` | string | Yes | The UUID of the Hex project | +| `runId` | string | Yes | The UUID of the run to check | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `projectId` | string | Project UUID | +| `runId` | string | Run UUID | +| `runUrl` | string | URL to view the run | +| `status` | string | Run status \(PENDING, RUNNING, COMPLETED, ERRORED, KILLED, UNABLE_TO_ALLOCATE_KERNEL\) | +| `startTime` | string | ISO 8601 run start time | +| `endTime` | string | ISO 8601 run end time | +| `elapsedTime` | number | Elapsed time in seconds | +| `traceId` | string | Trace ID for debugging | +| `projectVersion` | number | Project version number | + +### `hex_list_collections` + +List all collections in the Hex workspace. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `limit` | number | No | Maximum number of collections to return \(1-500, default: 25\) | +| `sortBy` | string | No | Sort by field: NAME | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `collections` | array | List of collections | +| ↳ `id` | string | Collection UUID | +| ↳ `name` | string | Collection name | +| ↳ `description` | string | Collection description | +| ↳ `creator` | object | Collection creator | +| ↳ `email` | string | Creator email | +| ↳ `id` | string | Creator UUID | +| `total` | number | Total number of collections returned | + +### `hex_list_data_connections` + +List all data connections in the Hex workspace (e.g., Snowflake, PostgreSQL, BigQuery). + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `limit` | number | No | Maximum number of connections to return \(1-500, default: 25\) | +| `sortBy` | string | No | Sort by field: CREATED_AT or NAME | +| `sortDirection` | string | No | Sort direction: ASC or DESC | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `connections` | array | List of data connections | +| ↳ `id` | string | Connection UUID | +| ↳ `name` | string | Connection name | +| ↳ `type` | string | Connection type \(e.g., athena, bigquery, databricks, postgres, redshift, snowflake\) | +| ↳ `description` | string | Connection description | +| ↳ `connectViaSsh` | boolean | Whether SSH tunneling is enabled | +| ↳ `includeMagic` | boolean | Whether Magic AI features are enabled | +| ↳ `allowWritebackCells` | boolean | Whether writeback cells are allowed | +| `total` | number | Total number of connections returned | + +### `hex_list_groups` + +List all groups in the Hex workspace with optional sorting. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `limit` | number | No | Maximum number of groups to return \(1-500, default: 25\) | +| `sortBy` | string | No | Sort by field: CREATED_AT or NAME | +| `sortDirection` | string | No | Sort direction: ASC or DESC | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `groups` | array | List of workspace groups | +| ↳ `id` | string | Group UUID | +| ↳ `name` | string | Group name | +| ↳ `createdAt` | string | Creation timestamp | +| `total` | number | Total number of groups returned | + +### `hex_list_projects` + +List all projects in your Hex workspace with optional filtering by status. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `limit` | number | No | Maximum number of projects to return \(1-100\) | +| `includeArchived` | boolean | No | Include archived projects in results | +| `statusFilter` | string | No | Filter by status: PUBLISHED, DRAFT, or ALL | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `projects` | array | List of Hex projects | +| ↳ `id` | string | Project UUID | +| ↳ `title` | string | Project title | +| ↳ `description` | string | Project description | +| ↳ `status` | object | Project status | +| ↳ `name` | string | Status name \(e.g., PUBLISHED, DRAFT\) | +| ↳ `type` | string | Project type \(PROJECT or COMPONENT\) | +| ↳ `creator` | object | Project creator | +| ↳ `email` | string | Creator email | +| ↳ `owner` | object | Project owner | +| ↳ `email` | string | Owner email | +| ↳ `lastEditedAt` | string | Last edited timestamp | +| ↳ `lastPublishedAt` | string | Last published timestamp | +| ↳ `createdAt` | string | Creation timestamp | +| ↳ `archivedAt` | string | Archived timestamp | +| `total` | number | Total number of projects returned | + +### `hex_list_users` + +List all users in the Hex workspace with optional filtering and sorting. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `limit` | number | No | Maximum number of users to return \(1-100, default: 25\) | +| `sortBy` | string | No | Sort by field: NAME or EMAIL | +| `sortDirection` | string | No | Sort direction: ASC or DESC | +| `groupId` | string | No | Filter users by group UUID | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `users` | array | List of workspace users | +| ↳ `id` | string | User UUID | +| ↳ `name` | string | User name | +| ↳ `email` | string | User email | +| ↳ `role` | string | User role \(ADMIN, MANAGER, EDITOR, EXPLORER, MEMBER, GUEST, EMBEDDED_USER, ANONYMOUS\) | +| `total` | number | Total number of users returned | + +### `hex_run_project` + +Execute a published Hex project. Optionally pass input parameters and control caching behavior. + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `projectId` | string | Yes | The UUID of the Hex project to run | +| `inputParams` | json | No | JSON object of input parameters for the project \(e.g., \{"date": "2024-01-01"\}\) | +| `dryRun` | boolean | No | If true, perform a dry run without executing the project | +| `updateCache` | boolean | No | \(Deprecated\) If true, update the cached results after execution | +| `updatePublishedResults` | boolean | No | If true, update the published app results after execution | +| `useCachedSqlResults` | boolean | No | If true, use cached SQL results instead of re-running queries | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `projectId` | string | Project UUID | +| `runId` | string | Run UUID | +| `runUrl` | string | URL to view the run | +| `runStatusUrl` | string | URL to check run status | +| `traceId` | string | Trace ID for debugging | +| `projectVersion` | number | Project version number | + +### `hex_update_project` + +Update a Hex project status label (e.g., endorsement or custom workspace statuses). + +#### Input + +| Parameter | Type | Required | Description | +| --------- | ---- | -------- | ----------- | +| `apiKey` | string | Yes | Hex API token \(Personal or Workspace\) | +| `projectId` | string | Yes | The UUID of the Hex project to update | +| `status` | string | Yes | New project status name \(custom workspace status label\) | + +#### Output + +| Parameter | Type | Description | +| --------- | ---- | ----------- | +| `id` | string | Project UUID | +| `title` | string | Project title | +| `description` | string | Project description | +| `status` | object | Updated project status | +| ↳ `name` | string | Status name \(e.g., PUBLISHED, DRAFT\) | +| `type` | string | Project type \(PROJECT or COMPONENT\) | +| `creator` | object | Project creator | +| ↳ `email` | string | Creator email | +| `owner` | object | Project owner | +| ↳ `email` | string | Owner email | +| `categories` | array | Project categories | +| ↳ `name` | string | Category name | +| ↳ `description` | string | Category description | +| `lastEditedAt` | string | Last edited timestamp | +| `lastPublishedAt` | string | Last published timestamp | +| `createdAt` | string | Creation timestamp | +| `archivedAt` | string | Archived timestamp | +| `trashedAt` | string | Trashed timestamp | + + diff --git a/apps/docs/content/docs/en/tools/meta.json b/apps/docs/content/docs/en/tools/meta.json index 58317bea9f..3a3a1cc16d 100644 --- a/apps/docs/content/docs/en/tools/meta.json +++ b/apps/docs/content/docs/en/tools/meta.json @@ -49,6 +49,7 @@ "grafana", "grain", "greptile", + "hex", "hubspot", "huggingface", "hunter", diff --git a/apps/sim/blocks/blocks/hex.ts b/apps/sim/blocks/blocks/hex.ts new file mode 100644 index 0000000000..8e11c8ff29 --- /dev/null +++ b/apps/sim/blocks/blocks/hex.ts @@ -0,0 +1,440 @@ +import { HexIcon } from '@/components/icons' +import type { BlockConfig } from '@/blocks/types' +import { AuthMode } from '@/blocks/types' +import type { HexResponse } from '@/tools/hex/types' + +export const HexBlock: BlockConfig = { + type: 'hex', + name: 'Hex', + description: 'Run and manage Hex projects', + longDescription: + 'Integrate Hex into your workflow. Run projects, check run status, manage collections and groups, list users, and view data connections. Requires a Hex API token.', + docsLink: 'https://docs.sim.ai/tools/hex', + category: 'tools', + bgColor: '#F5E6FF', + icon: HexIcon, + authMode: AuthMode.ApiKey, + + subBlocks: [ + { + id: 'operation', + title: 'Operation', + type: 'dropdown', + options: [ + { label: 'Run Project', id: 'run_project' }, + { label: 'Get Run Status', id: 'get_run_status' }, + { label: 'Get Project Runs', id: 'get_project_runs' }, + { label: 'Cancel Run', id: 'cancel_run' }, + { label: 'List Projects', id: 'list_projects' }, + { label: 'Get Project', id: 'get_project' }, + { label: 'Update Project', id: 'update_project' }, + { label: 'Get Queried Tables', id: 'get_queried_tables' }, + { label: 'List Users', id: 'list_users' }, + { label: 'List Groups', id: 'list_groups' }, + { label: 'Get Group', id: 'get_group' }, + { label: 'List Collections', id: 'list_collections' }, + { label: 'Get Collection', id: 'get_collection' }, + { label: 'Create Collection', id: 'create_collection' }, + { label: 'List Data Connections', id: 'list_data_connections' }, + { label: 'Get Data Connection', id: 'get_data_connection' }, + ], + value: () => 'run_project', + }, + { + id: 'projectId', + title: 'Project ID', + type: 'short-input', + placeholder: 'Enter project UUID', + condition: { + field: 'operation', + value: [ + 'run_project', + 'get_run_status', + 'get_project_runs', + 'cancel_run', + 'get_project', + 'update_project', + 'get_queried_tables', + ], + }, + required: { + field: 'operation', + value: [ + 'run_project', + 'get_run_status', + 'get_project_runs', + 'cancel_run', + 'get_project', + 'update_project', + 'get_queried_tables', + ], + }, + }, + { + id: 'runId', + title: 'Run ID', + type: 'short-input', + placeholder: 'Enter run UUID', + condition: { field: 'operation', value: ['get_run_status', 'cancel_run'] }, + required: { field: 'operation', value: ['get_run_status', 'cancel_run'] }, + }, + { + id: 'inputParams', + title: 'Input Parameters', + type: 'code', + placeholder: '{"param_name": "value"}', + condition: { field: 'operation', value: 'run_project' }, + wandConfig: { + enabled: true, + maintainHistory: true, + prompt: `You are an expert at creating Hex project input parameters. +Generate ONLY the raw JSON object based on the user's request. +The output MUST be a single, valid JSON object, starting with { and ending with }. + +Current parameters: {context} + +Do not include any explanations, markdown formatting, or other text outside the JSON object. +The keys should match the input parameter names defined in the Hex project. + +Example: +{ + "date_range": "2024-01-01", + "department": "engineering", + "include_inactive": false +}`, + placeholder: 'Describe the input parameters you need...', + generationType: 'json-object', + }, + }, + { + id: 'projectStatus', + title: 'Status', + type: 'short-input', + placeholder: 'Enter status name (e.g., custom workspace status label)', + condition: { field: 'operation', value: 'update_project' }, + required: { field: 'operation', value: 'update_project' }, + }, + { + id: 'runStatusFilter', + title: 'Status Filter', + type: 'dropdown', + options: [ + { label: 'All', id: '' }, + { label: 'Pending', id: 'PENDING' }, + { label: 'Running', id: 'RUNNING' }, + { label: 'Completed', id: 'COMPLETED' }, + { label: 'Errored', id: 'ERRORED' }, + { label: 'Killed', id: 'KILLED' }, + ], + value: () => '', + condition: { field: 'operation', value: 'get_project_runs' }, + }, + { + id: 'groupIdInput', + title: 'Group ID', + type: 'short-input', + placeholder: 'Enter group UUID', + condition: { field: 'operation', value: 'get_group' }, + required: { field: 'operation', value: 'get_group' }, + }, + { + id: 'collectionId', + title: 'Collection ID', + type: 'short-input', + placeholder: 'Enter collection UUID', + condition: { field: 'operation', value: 'get_collection' }, + required: { field: 'operation', value: 'get_collection' }, + }, + { + id: 'collectionName', + title: 'Collection Name', + type: 'short-input', + placeholder: 'Enter collection name', + condition: { field: 'operation', value: 'create_collection' }, + required: { field: 'operation', value: 'create_collection' }, + }, + { + id: 'collectionDescription', + title: 'Description', + type: 'long-input', + placeholder: 'Optional description for the collection', + condition: { field: 'operation', value: 'create_collection' }, + }, + { + id: 'dataConnectionId', + title: 'Data Connection ID', + type: 'short-input', + placeholder: 'Enter data connection UUID', + condition: { field: 'operation', value: 'get_data_connection' }, + required: { field: 'operation', value: 'get_data_connection' }, + }, + { + id: 'apiKey', + title: 'API Key', + type: 'short-input', + placeholder: 'Enter your Hex API token', + password: true, + required: true, + }, + // Advanced fields + { + id: 'dryRun', + title: 'Dry Run', + type: 'switch', + condition: { field: 'operation', value: 'run_project' }, + mode: 'advanced', + }, + { + id: 'updateCache', + title: 'Update Cache', + type: 'switch', + condition: { field: 'operation', value: 'run_project' }, + mode: 'advanced', + }, + { + id: 'updatePublishedResults', + title: 'Update Published Results', + type: 'switch', + condition: { field: 'operation', value: 'run_project' }, + mode: 'advanced', + }, + { + id: 'useCachedSqlResults', + title: 'Use Cached SQL Results', + type: 'switch', + condition: { field: 'operation', value: 'run_project' }, + mode: 'advanced', + }, + { + id: 'limit', + title: 'Limit', + type: 'short-input', + placeholder: '25', + condition: { + field: 'operation', + value: [ + 'list_projects', + 'get_project_runs', + 'get_queried_tables', + 'list_users', + 'list_groups', + 'list_collections', + 'list_data_connections', + ], + }, + mode: 'advanced', + }, + { + id: 'offset', + title: 'Offset', + type: 'short-input', + placeholder: '0', + condition: { field: 'operation', value: 'get_project_runs' }, + mode: 'advanced', + }, + { + id: 'includeArchived', + title: 'Include Archived', + type: 'switch', + condition: { field: 'operation', value: 'list_projects' }, + mode: 'advanced', + }, + { + id: 'statusFilter', + title: 'Status Filter', + type: 'dropdown', + options: [ + { label: 'All', id: '' }, + { label: 'Published', id: 'PUBLISHED' }, + { label: 'Draft', id: 'DRAFT' }, + ], + value: () => '', + condition: { field: 'operation', value: 'list_projects' }, + mode: 'advanced', + }, + { + id: 'groupId', + title: 'Filter by Group', + type: 'short-input', + placeholder: 'Group UUID (optional)', + condition: { field: 'operation', value: 'list_users' }, + mode: 'advanced', + }, + ], + + tools: { + access: [ + 'hex_cancel_run', + 'hex_create_collection', + 'hex_get_collection', + 'hex_get_data_connection', + 'hex_get_group', + 'hex_get_project', + 'hex_get_project_runs', + 'hex_get_queried_tables', + 'hex_get_run_status', + 'hex_list_collections', + 'hex_list_data_connections', + 'hex_list_groups', + 'hex_list_projects', + 'hex_list_users', + 'hex_run_project', + 'hex_update_project', + ], + config: { + tool: (params) => { + switch (params.operation) { + case 'run_project': + return 'hex_run_project' + case 'get_run_status': + return 'hex_get_run_status' + case 'get_project_runs': + return 'hex_get_project_runs' + case 'cancel_run': + return 'hex_cancel_run' + case 'list_projects': + return 'hex_list_projects' + case 'get_project': + return 'hex_get_project' + case 'update_project': + return 'hex_update_project' + case 'get_queried_tables': + return 'hex_get_queried_tables' + case 'list_users': + return 'hex_list_users' + case 'list_groups': + return 'hex_list_groups' + case 'get_group': + return 'hex_get_group' + case 'list_collections': + return 'hex_list_collections' + case 'get_collection': + return 'hex_get_collection' + case 'create_collection': + return 'hex_create_collection' + case 'list_data_connections': + return 'hex_list_data_connections' + case 'get_data_connection': + return 'hex_get_data_connection' + default: + return 'hex_run_project' + } + }, + params: (params) => { + const result: Record = {} + if (params.limit) result.limit = Number(params.limit) + if (params.offset) result.offset = Number(params.offset) + if (params.projectStatus) result.status = params.projectStatus + if (params.runStatusFilter) result.statusFilter = params.runStatusFilter + if (params.groupIdInput) result.groupId = params.groupIdInput + if (params.collectionName) result.name = params.collectionName + if (params.collectionDescription) result.description = params.collectionDescription + return result + }, + }, + }, + + inputs: { + operation: { type: 'string', description: 'Operation to perform' }, + apiKey: { type: 'string', description: 'Hex API token' }, + projectId: { type: 'string', description: 'Project UUID' }, + runId: { type: 'string', description: 'Run UUID' }, + inputParams: { type: 'json', description: 'Input parameters for project run' }, + dryRun: { type: 'boolean', description: 'Perform a dry run without executing the project' }, + updateCache: { + type: 'boolean', + description: '(Deprecated) Update cached results after execution', + }, + updatePublishedResults: { + type: 'boolean', + description: 'Update published app results after execution', + }, + useCachedSqlResults: { + type: 'boolean', + description: 'Use cached SQL results instead of re-running queries', + }, + projectStatus: { + type: 'string', + description: 'New project status name (custom workspace status label)', + }, + limit: { type: 'number', description: 'Max number of results to return' }, + offset: { type: 'number', description: 'Offset for paginated results' }, + includeArchived: { type: 'boolean', description: 'Include archived projects' }, + statusFilter: { type: 'string', description: 'Filter projects by status' }, + runStatusFilter: { type: 'string', description: 'Filter runs by status' }, + groupId: { type: 'string', description: 'Filter users by group UUID' }, + groupIdInput: { type: 'string', description: 'Group UUID for get group' }, + collectionId: { type: 'string', description: 'Collection UUID' }, + collectionName: { type: 'string', description: 'Collection name' }, + collectionDescription: { type: 'string', description: 'Collection description' }, + dataConnectionId: { type: 'string', description: 'Data connection UUID' }, + }, + + outputs: { + // Run creation outputs + projectId: { type: 'string', description: 'Project UUID' }, + runId: { type: 'string', description: 'Run UUID' }, + runUrl: { type: 'string', description: 'URL to view the run' }, + runStatusUrl: { type: 'string', description: 'URL to check run status' }, + projectVersion: { type: 'number', description: 'Project version number' }, + // Run status outputs + status: { + type: 'json', + description: 'Project status object ({ name }) or run status string', + }, + startTime: { type: 'string', description: 'Run start time' }, + endTime: { type: 'string', description: 'Run end time' }, + elapsedTime: { type: 'number', description: 'Elapsed time in seconds' }, + traceId: { type: 'string', description: 'Trace ID for debugging' }, + // Project outputs + id: { type: 'string', description: 'Resource ID' }, + title: { type: 'string', description: 'Project title' }, + name: { type: 'string', description: 'Resource name' }, + description: { type: 'string', description: 'Resource description' }, + type: { type: 'string', description: 'Project type (PROJECT or COMPONENT)' }, + createdAt: { type: 'string', description: 'Creation timestamp' }, + updatedAt: { type: 'string', description: 'Last update timestamp' }, + lastEditedAt: { type: 'string', description: 'Last edited timestamp' }, + lastPublishedAt: { type: 'string', description: 'Last published timestamp' }, + archivedAt: { type: 'string', description: 'Archived timestamp' }, + trashedAt: { type: 'string', description: 'Trashed timestamp' }, + // List outputs + projects: { + type: 'json', + description: 'List of projects with id, title, status, type, creator, owner, createdAt', + }, + runs: { + type: 'json', + description: + 'List of runs with runId, status, runUrl, startTime, endTime, elapsedTime, projectVersion', + }, + users: { type: 'json', description: 'List of users with id, name, email, role' }, + groups: { type: 'json', description: 'List of groups with id, name, createdAt' }, + collections: { + type: 'json', + description: 'List of collections with id, name, description, creator', + }, + connections: { + type: 'json', + description: + 'List of data connections with id, name, type, description, connectViaSsh, includeMagic, allowWritebackCells', + }, + tables: { + type: 'json', + description: 'List of queried tables with dataConnectionId, dataConnectionName, tableName', + }, + categories: { + type: 'json', + description: 'Project categories with name and description', + }, + creator: { type: 'json', description: 'Creator details ({ email, id })' }, + owner: { type: 'json', description: 'Owner details ({ email })' }, + total: { type: 'number', description: 'Total results returned' }, + // Cancel output + success: { type: 'boolean', description: 'Whether the operation succeeded' }, + // Data connection flags + connectViaSsh: { type: 'boolean', description: 'SSH tunneling enabled' }, + includeMagic: { type: 'boolean', description: 'Magic AI features enabled' }, + allowWritebackCells: { type: 'boolean', description: 'Writeback cells allowed' }, + }, +} diff --git a/apps/sim/blocks/registry.ts b/apps/sim/blocks/registry.ts index c4851fe793..70b9e915bf 100644 --- a/apps/sim/blocks/registry.ts +++ b/apps/sim/blocks/registry.ts @@ -55,6 +55,7 @@ import { GrafanaBlock } from '@/blocks/blocks/grafana' import { GrainBlock } from '@/blocks/blocks/grain' import { GreptileBlock } from '@/blocks/blocks/greptile' import { GuardrailsBlock } from '@/blocks/blocks/guardrails' +import { HexBlock } from '@/blocks/blocks/hex' import { HubSpotBlock } from '@/blocks/blocks/hubspot' import { HuggingFaceBlock } from '@/blocks/blocks/huggingface' import { HumanInTheLoopBlock } from '@/blocks/blocks/human_in_the_loop' @@ -240,6 +241,7 @@ export const registry: Record = { grain: GrainBlock, greptile: GreptileBlock, guardrails: GuardrailsBlock, + hex: HexBlock, hubspot: HubSpotBlock, huggingface: HuggingFaceBlock, human_in_the_loop: HumanInTheLoopBlock, diff --git a/apps/sim/components/icons.tsx b/apps/sim/components/icons.tsx index 16c248b74d..1d50d0d068 100644 --- a/apps/sim/components/icons.tsx +++ b/apps/sim/components/icons.tsx @@ -5819,3 +5819,15 @@ export function RedisIcon(props: SVGProps) { ) } + +export function HexIcon(props: SVGProps) { + return ( + + + + ) +} diff --git a/apps/sim/tools/hex/cancel_run.ts b/apps/sim/tools/hex/cancel_run.ts new file mode 100644 index 0000000000..17c65944c3 --- /dev/null +++ b/apps/sim/tools/hex/cancel_run.ts @@ -0,0 +1,70 @@ +import type { HexCancelRunParams, HexCancelRunResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const cancelRunTool: ToolConfig = { + id: 'hex_cancel_run', + name: 'Hex Cancel Run', + description: 'Cancel an active Hex project run.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + projectId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the Hex project', + }, + runId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the run to cancel', + }, + }, + + request: { + url: (params) => + `https://app.hex.tech/api/v1/projects/${params.projectId}/runs/${params.runId}`, + method: 'DELETE', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response, params) => { + if (response.status === 204 || response.ok) { + return { + success: true, + output: { + success: true, + projectId: params?.projectId ?? '', + runId: params?.runId ?? '', + }, + } + } + + const data = await response.json().catch(() => ({})) + return { + success: false, + output: { + success: false, + projectId: params?.projectId ?? '', + runId: params?.runId ?? '', + }, + error: (data as Record).message ?? 'Failed to cancel run', + } + }, + + outputs: { + success: { type: 'boolean', description: 'Whether the run was successfully cancelled' }, + projectId: { type: 'string', description: 'Project UUID' }, + runId: { type: 'string', description: 'Run UUID that was cancelled' }, + }, +} diff --git a/apps/sim/tools/hex/create_collection.ts b/apps/sim/tools/hex/create_collection.ts new file mode 100644 index 0000000000..4a61e08bc2 --- /dev/null +++ b/apps/sim/tools/hex/create_collection.ts @@ -0,0 +1,78 @@ +import type { HexCreateCollectionParams, HexCreateCollectionResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const createCollectionTool: ToolConfig< + HexCreateCollectionParams, + HexCreateCollectionResponse +> = { + id: 'hex_create_collection', + name: 'Hex Create Collection', + description: 'Create a new collection in the Hex workspace to organize projects.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + name: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'Name for the new collection', + }, + description: { + type: 'string', + required: false, + visibility: 'user-or-llm', + description: 'Optional description for the collection', + }, + }, + + request: { + url: 'https://app.hex.tech/api/v1/collections', + method: 'POST', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + body: (params) => { + const body: Record = { name: params.name } + if (params.description) body.description = params.description + return body + }, + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + + return { + success: true, + output: { + id: data.id ?? null, + name: data.name ?? null, + description: data.description ?? null, + creator: data.creator + ? { email: data.creator.email ?? null, id: data.creator.id ?? null } + : null, + }, + } + }, + + outputs: { + id: { type: 'string', description: 'Newly created collection UUID' }, + name: { type: 'string', description: 'Collection name' }, + description: { type: 'string', description: 'Collection description', optional: true }, + creator: { + type: 'object', + description: 'Collection creator', + optional: true, + properties: { + email: { type: 'string', description: 'Creator email' }, + id: { type: 'string', description: 'Creator UUID' }, + }, + }, + }, +} diff --git a/apps/sim/tools/hex/get_collection.ts b/apps/sim/tools/hex/get_collection.ts new file mode 100644 index 0000000000..8222d88a92 --- /dev/null +++ b/apps/sim/tools/hex/get_collection.ts @@ -0,0 +1,64 @@ +import type { HexGetCollectionParams, HexGetCollectionResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const getCollectionTool: ToolConfig = { + id: 'hex_get_collection', + name: 'Hex Get Collection', + description: 'Retrieve details for a specific Hex collection by its ID.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + collectionId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the collection', + }, + }, + + request: { + url: (params) => `https://app.hex.tech/api/v1/collections/${params.collectionId}`, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + + return { + success: true, + output: { + id: data.id ?? null, + name: data.name ?? null, + description: data.description ?? null, + creator: data.creator + ? { email: data.creator.email ?? null, id: data.creator.id ?? null } + : null, + }, + } + }, + + outputs: { + id: { type: 'string', description: 'Collection UUID' }, + name: { type: 'string', description: 'Collection name' }, + description: { type: 'string', description: 'Collection description', optional: true }, + creator: { + type: 'object', + description: 'Collection creator', + optional: true, + properties: { + email: { type: 'string', description: 'Creator email' }, + id: { type: 'string', description: 'Creator UUID' }, + }, + }, + }, +} diff --git a/apps/sim/tools/hex/get_data_connection.ts b/apps/sim/tools/hex/get_data_connection.ts new file mode 100644 index 0000000000..3b9e54b94f --- /dev/null +++ b/apps/sim/tools/hex/get_data_connection.ts @@ -0,0 +1,76 @@ +import type { HexGetDataConnectionParams, HexGetDataConnectionResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const getDataConnectionTool: ToolConfig< + HexGetDataConnectionParams, + HexGetDataConnectionResponse +> = { + id: 'hex_get_data_connection', + name: 'Hex Get Data Connection', + description: + 'Retrieve details for a specific data connection including type, description, and configuration flags.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + dataConnectionId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the data connection', + }, + }, + + request: { + url: (params) => `https://app.hex.tech/api/v1/data-connections/${params.dataConnectionId}`, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + + return { + success: true, + output: { + id: data.id ?? null, + name: data.name ?? null, + type: data.type ?? null, + description: data.description ?? null, + connectViaSsh: data.connectViaSsh ?? null, + includeMagic: data.includeMagic ?? null, + allowWritebackCells: data.allowWritebackCells ?? null, + }, + } + }, + + outputs: { + id: { type: 'string', description: 'Connection UUID' }, + name: { type: 'string', description: 'Connection name' }, + type: { type: 'string', description: 'Connection type (e.g., snowflake, postgres, bigquery)' }, + description: { type: 'string', description: 'Connection description', optional: true }, + connectViaSsh: { + type: 'boolean', + description: 'Whether SSH tunneling is enabled', + optional: true, + }, + includeMagic: { + type: 'boolean', + description: 'Whether Magic AI features are enabled', + optional: true, + }, + allowWritebackCells: { + type: 'boolean', + description: 'Whether writeback cells are allowed', + optional: true, + }, + }, +} diff --git a/apps/sim/tools/hex/get_group.ts b/apps/sim/tools/hex/get_group.ts new file mode 100644 index 0000000000..c649e657a8 --- /dev/null +++ b/apps/sim/tools/hex/get_group.ts @@ -0,0 +1,52 @@ +import type { HexGetGroupParams, HexGetGroupResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const getGroupTool: ToolConfig = { + id: 'hex_get_group', + name: 'Hex Get Group', + description: 'Retrieve details for a specific Hex group.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + groupId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the group', + }, + }, + + request: { + url: (params) => `https://app.hex.tech/api/v1/groups/${params.groupId}`, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + + return { + success: true, + output: { + id: data.id ?? null, + name: data.name ?? null, + createdAt: data.createdAt ?? null, + }, + } + }, + + outputs: { + id: { type: 'string', description: 'Group UUID' }, + name: { type: 'string', description: 'Group name' }, + createdAt: { type: 'string', description: 'Creation timestamp' }, + }, +} diff --git a/apps/sim/tools/hex/get_project.ts b/apps/sim/tools/hex/get_project.ts new file mode 100644 index 0000000000..fda718f2f6 --- /dev/null +++ b/apps/sim/tools/hex/get_project.ts @@ -0,0 +1,78 @@ +import type { HexGetProjectParams, HexGetProjectResponse } from '@/tools/hex/types' +import { HEX_PROJECT_OUTPUT_PROPERTIES } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const getProjectTool: ToolConfig = { + id: 'hex_get_project', + name: 'Hex Get Project', + description: 'Get metadata and details for a specific Hex project by its ID.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + projectId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the Hex project', + }, + }, + + request: { + url: (params) => `https://app.hex.tech/api/v1/projects/${params.projectId}`, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + + return { + success: true, + output: { + id: data.id ?? null, + title: data.title ?? null, + description: data.description ?? null, + status: data.status ? { name: data.status.name ?? null } : null, + type: data.type ?? null, + creator: data.creator ? { email: data.creator.email ?? null } : null, + owner: data.owner ? { email: data.owner.email ?? null } : null, + categories: Array.isArray(data.categories) + ? data.categories.map((c: Record) => ({ + name: c.name ?? null, + description: c.description ?? null, + })) + : [], + lastEditedAt: data.lastEditedAt ?? null, + lastPublishedAt: data.lastPublishedAt ?? null, + createdAt: data.createdAt ?? null, + archivedAt: data.archivedAt ?? null, + trashedAt: data.trashedAt ?? null, + }, + } + }, + + outputs: { + id: HEX_PROJECT_OUTPUT_PROPERTIES.id, + title: HEX_PROJECT_OUTPUT_PROPERTIES.title, + description: HEX_PROJECT_OUTPUT_PROPERTIES.description, + status: HEX_PROJECT_OUTPUT_PROPERTIES.status, + type: HEX_PROJECT_OUTPUT_PROPERTIES.type, + creator: HEX_PROJECT_OUTPUT_PROPERTIES.creator, + owner: HEX_PROJECT_OUTPUT_PROPERTIES.owner, + categories: HEX_PROJECT_OUTPUT_PROPERTIES.categories, + lastEditedAt: HEX_PROJECT_OUTPUT_PROPERTIES.lastEditedAt, + lastPublishedAt: HEX_PROJECT_OUTPUT_PROPERTIES.lastPublishedAt, + createdAt: HEX_PROJECT_OUTPUT_PROPERTIES.createdAt, + archivedAt: HEX_PROJECT_OUTPUT_PROPERTIES.archivedAt, + trashedAt: HEX_PROJECT_OUTPUT_PROPERTIES.trashedAt, + }, +} diff --git a/apps/sim/tools/hex/get_project_runs.ts b/apps/sim/tools/hex/get_project_runs.ts new file mode 100644 index 0000000000..9d2897d900 --- /dev/null +++ b/apps/sim/tools/hex/get_project_runs.ts @@ -0,0 +1,115 @@ +import type { HexGetProjectRunsParams, HexGetProjectRunsResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const getProjectRunsTool: ToolConfig = { + id: 'hex_get_project_runs', + name: 'Hex Get Project Runs', + description: + 'Retrieve API-triggered runs for a Hex project with optional filtering by status and pagination.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + projectId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the Hex project', + }, + limit: { + type: 'number', + required: false, + visibility: 'user-or-llm', + description: 'Maximum number of runs to return (1-100, default: 25)', + }, + offset: { + type: 'number', + required: false, + visibility: 'user-or-llm', + description: 'Offset for paginated results (default: 0)', + }, + statusFilter: { + type: 'string', + required: false, + visibility: 'user-or-llm', + description: + 'Filter by run status: PENDING, RUNNING, ERRORED, COMPLETED, KILLED, UNABLE_TO_ALLOCATE_KERNEL', + }, + }, + + request: { + url: (params) => { + const searchParams = new URLSearchParams() + if (params.limit) searchParams.set('limit', String(params.limit)) + if (params.offset) searchParams.set('offset', String(params.offset)) + if (params.statusFilter) searchParams.set('statusFilter', params.statusFilter) + const qs = searchParams.toString() + return `https://app.hex.tech/api/v1/projects/${params.projectId}/runs${qs ? `?${qs}` : ''}` + }, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + const runs = Array.isArray(data) ? data : (data.runs ?? []) + + return { + success: true, + output: { + runs: runs.map((r: Record) => ({ + projectId: (r.projectId as string) ?? null, + runId: (r.runId as string) ?? null, + runUrl: (r.runUrl as string) ?? null, + status: (r.status as string) ?? null, + startTime: (r.startTime as string) ?? null, + endTime: (r.endTime as string) ?? null, + elapsedTime: (r.elapsedTime as number) ?? null, + traceId: (r.traceId as string) ?? null, + projectVersion: (r.projectVersion as number) ?? null, + })), + total: runs.length, + traceId: data.traceId ?? null, + }, + } + }, + + outputs: { + runs: { + type: 'array', + description: 'List of project runs', + items: { + type: 'object', + properties: { + projectId: { type: 'string', description: 'Project UUID' }, + runId: { type: 'string', description: 'Run UUID' }, + runUrl: { type: 'string', description: 'URL to view the run', optional: true }, + status: { + type: 'string', + description: + 'Run status (PENDING, RUNNING, COMPLETED, ERRORED, KILLED, UNABLE_TO_ALLOCATE_KERNEL)', + }, + startTime: { type: 'string', description: 'Run start time', optional: true }, + endTime: { type: 'string', description: 'Run end time', optional: true }, + elapsedTime: { type: 'number', description: 'Elapsed time in seconds', optional: true }, + traceId: { type: 'string', description: 'Trace ID', optional: true }, + projectVersion: { + type: 'number', + description: 'Project version number', + optional: true, + }, + }, + }, + }, + total: { type: 'number', description: 'Total number of runs returned' }, + traceId: { type: 'string', description: 'Top-level trace ID', optional: true }, + }, +} diff --git a/apps/sim/tools/hex/get_queried_tables.ts b/apps/sim/tools/hex/get_queried_tables.ts new file mode 100644 index 0000000000..2261cd3c27 --- /dev/null +++ b/apps/sim/tools/hex/get_queried_tables.ts @@ -0,0 +1,81 @@ +import type { HexGetQueriedTablesParams, HexGetQueriedTablesResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const getQueriedTablesTool: ToolConfig< + HexGetQueriedTablesParams, + HexGetQueriedTablesResponse +> = { + id: 'hex_get_queried_tables', + name: 'Hex Get Queried Tables', + description: + 'Return the warehouse tables queried by a Hex project, including data connection and table names.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + projectId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the Hex project', + }, + limit: { + type: 'number', + required: false, + visibility: 'user-or-llm', + description: 'Maximum number of tables to return (1-100)', + }, + }, + + request: { + url: (params) => { + const searchParams = new URLSearchParams() + if (params.limit) searchParams.set('limit', String(params.limit)) + const qs = searchParams.toString() + return `https://app.hex.tech/api/v1/projects/${params.projectId}/queriedTables${qs ? `?${qs}` : ''}` + }, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + const tables = Array.isArray(data) ? data : (data.values ?? []) + + return { + success: true, + output: { + tables: tables.map((t: Record) => ({ + dataConnectionId: (t.dataConnectionId as string) ?? null, + dataConnectionName: (t.dataConnectionName as string) ?? null, + tableName: (t.tableName as string) ?? null, + })), + total: tables.length, + }, + } + }, + + outputs: { + tables: { + type: 'array', + description: 'List of warehouse tables queried by the project', + items: { + type: 'object', + properties: { + dataConnectionId: { type: 'string', description: 'Data connection UUID' }, + dataConnectionName: { type: 'string', description: 'Data connection name' }, + tableName: { type: 'string', description: 'Table name' }, + }, + }, + }, + total: { type: 'number', description: 'Total number of tables returned' }, + }, +} diff --git a/apps/sim/tools/hex/get_run_status.ts b/apps/sim/tools/hex/get_run_status.ts new file mode 100644 index 0000000000..90dd26cdb0 --- /dev/null +++ b/apps/sim/tools/hex/get_run_status.ts @@ -0,0 +1,72 @@ +import type { HexGetRunStatusParams, HexGetRunStatusResponse } from '@/tools/hex/types' +import { HEX_RUN_STATUS_OUTPUT_PROPERTIES } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const getRunStatusTool: ToolConfig = { + id: 'hex_get_run_status', + name: 'Hex Get Run Status', + description: 'Check the status of a Hex project run by its run ID.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + projectId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the Hex project', + }, + runId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the run to check', + }, + }, + + request: { + url: (params) => + `https://app.hex.tech/api/v1/projects/${params.projectId}/runs/${params.runId}`, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + + return { + success: true, + output: { + projectId: data.projectId ?? null, + runId: data.runId ?? null, + runUrl: data.runUrl ?? null, + status: data.status ?? null, + startTime: data.startTime ?? null, + endTime: data.endTime ?? null, + elapsedTime: data.elapsedTime ?? null, + traceId: data.traceId ?? null, + projectVersion: data.projectVersion ?? null, + }, + } + }, + + outputs: { + projectId: HEX_RUN_STATUS_OUTPUT_PROPERTIES.projectId, + runId: HEX_RUN_STATUS_OUTPUT_PROPERTIES.runId, + runUrl: HEX_RUN_STATUS_OUTPUT_PROPERTIES.runUrl, + status: HEX_RUN_STATUS_OUTPUT_PROPERTIES.status, + startTime: HEX_RUN_STATUS_OUTPUT_PROPERTIES.startTime, + endTime: HEX_RUN_STATUS_OUTPUT_PROPERTIES.endTime, + elapsedTime: HEX_RUN_STATUS_OUTPUT_PROPERTIES.elapsedTime, + traceId: HEX_RUN_STATUS_OUTPUT_PROPERTIES.traceId, + projectVersion: HEX_RUN_STATUS_OUTPUT_PROPERTIES.projectVersion, + }, +} diff --git a/apps/sim/tools/hex/index.ts b/apps/sim/tools/hex/index.ts new file mode 100644 index 0000000000..9a561587d7 --- /dev/null +++ b/apps/sim/tools/hex/index.ts @@ -0,0 +1,33 @@ +import { cancelRunTool } from '@/tools/hex/cancel_run' +import { createCollectionTool } from '@/tools/hex/create_collection' +import { getCollectionTool } from '@/tools/hex/get_collection' +import { getDataConnectionTool } from '@/tools/hex/get_data_connection' +import { getGroupTool } from '@/tools/hex/get_group' +import { getProjectTool } from '@/tools/hex/get_project' +import { getProjectRunsTool } from '@/tools/hex/get_project_runs' +import { getQueriedTablesTool } from '@/tools/hex/get_queried_tables' +import { getRunStatusTool } from '@/tools/hex/get_run_status' +import { listCollectionsTool } from '@/tools/hex/list_collections' +import { listDataConnectionsTool } from '@/tools/hex/list_data_connections' +import { listGroupsTool } from '@/tools/hex/list_groups' +import { listProjectsTool } from '@/tools/hex/list_projects' +import { listUsersTool } from '@/tools/hex/list_users' +import { runProjectTool } from '@/tools/hex/run_project' +import { updateProjectTool } from '@/tools/hex/update_project' + +export const hexCancelRunTool = cancelRunTool +export const hexCreateCollectionTool = createCollectionTool +export const hexGetCollectionTool = getCollectionTool +export const hexGetDataConnectionTool = getDataConnectionTool +export const hexGetGroupTool = getGroupTool +export const hexGetProjectTool = getProjectTool +export const hexGetProjectRunsTool = getProjectRunsTool +export const hexGetQueriedTablesTool = getQueriedTablesTool +export const hexGetRunStatusTool = getRunStatusTool +export const hexListCollectionsTool = listCollectionsTool +export const hexListDataConnectionsTool = listDataConnectionsTool +export const hexListGroupsTool = listGroupsTool +export const hexListProjectsTool = listProjectsTool +export const hexListUsersTool = listUsersTool +export const hexRunProjectTool = runProjectTool +export const hexUpdateProjectTool = updateProjectTool diff --git a/apps/sim/tools/hex/list_collections.ts b/apps/sim/tools/hex/list_collections.ts new file mode 100644 index 0000000000..9902db0d15 --- /dev/null +++ b/apps/sim/tools/hex/list_collections.ts @@ -0,0 +1,94 @@ +import type { HexListCollectionsParams, HexListCollectionsResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const listCollectionsTool: ToolConfig = + { + id: 'hex_list_collections', + name: 'Hex List Collections', + description: 'List all collections in the Hex workspace.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + limit: { + type: 'number', + required: false, + visibility: 'user-or-llm', + description: 'Maximum number of collections to return (1-500, default: 25)', + }, + sortBy: { + type: 'string', + required: false, + visibility: 'user-only', + description: 'Sort by field: NAME', + }, + }, + + request: { + url: (params) => { + const searchParams = new URLSearchParams() + if (params.limit) searchParams.set('limit', String(params.limit)) + if (params.sortBy) searchParams.set('sortBy', params.sortBy) + const qs = searchParams.toString() + return `https://app.hex.tech/api/v1/collections${qs ? `?${qs}` : ''}` + }, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + const collections = Array.isArray(data) ? data : (data.values ?? []) + + return { + success: true, + output: { + collections: collections.map((c: Record) => ({ + id: (c.id as string) ?? null, + name: (c.name as string) ?? null, + description: (c.description as string) ?? null, + creator: c.creator + ? { + email: (c.creator as Record).email ?? null, + id: (c.creator as Record).id ?? null, + } + : null, + })), + total: collections.length, + }, + } + }, + + outputs: { + collections: { + type: 'array', + description: 'List of collections', + items: { + type: 'object', + properties: { + id: { type: 'string', description: 'Collection UUID' }, + name: { type: 'string', description: 'Collection name' }, + description: { type: 'string', description: 'Collection description', optional: true }, + creator: { + type: 'object', + description: 'Collection creator', + optional: true, + properties: { + email: { type: 'string', description: 'Creator email' }, + id: { type: 'string', description: 'Creator UUID' }, + }, + }, + }, + }, + }, + total: { type: 'number', description: 'Total number of collections returned' }, + }, + } diff --git a/apps/sim/tools/hex/list_data_connections.ts b/apps/sim/tools/hex/list_data_connections.ts new file mode 100644 index 0000000000..24dc97cae0 --- /dev/null +++ b/apps/sim/tools/hex/list_data_connections.ts @@ -0,0 +1,116 @@ +import type { + HexListDataConnectionsParams, + HexListDataConnectionsResponse, +} from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const listDataConnectionsTool: ToolConfig< + HexListDataConnectionsParams, + HexListDataConnectionsResponse +> = { + id: 'hex_list_data_connections', + name: 'Hex List Data Connections', + description: + 'List all data connections in the Hex workspace (e.g., Snowflake, PostgreSQL, BigQuery).', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + limit: { + type: 'number', + required: false, + visibility: 'user-or-llm', + description: 'Maximum number of connections to return (1-500, default: 25)', + }, + sortBy: { + type: 'string', + required: false, + visibility: 'user-only', + description: 'Sort by field: CREATED_AT or NAME', + }, + sortDirection: { + type: 'string', + required: false, + visibility: 'user-only', + description: 'Sort direction: ASC or DESC', + }, + }, + + request: { + url: (params) => { + const searchParams = new URLSearchParams() + if (params.limit) searchParams.set('limit', String(params.limit)) + if (params.sortBy) searchParams.set('sortBy', params.sortBy) + if (params.sortDirection) searchParams.set('sortDirection', params.sortDirection) + const qs = searchParams.toString() + return `https://app.hex.tech/api/v1/data-connections${qs ? `?${qs}` : ''}` + }, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + const connections = Array.isArray(data) ? data : (data.values ?? []) + + return { + success: true, + output: { + connections: connections.map((c: Record) => ({ + id: (c.id as string) ?? null, + name: (c.name as string) ?? null, + type: (c.type as string) ?? null, + description: (c.description as string) ?? null, + connectViaSsh: (c.connectViaSsh as boolean) ?? null, + includeMagic: (c.includeMagic as boolean) ?? null, + allowWritebackCells: (c.allowWritebackCells as boolean) ?? null, + })), + total: connections.length, + }, + } + }, + + outputs: { + connections: { + type: 'array', + description: 'List of data connections', + items: { + type: 'object', + properties: { + id: { type: 'string', description: 'Connection UUID' }, + name: { type: 'string', description: 'Connection name' }, + type: { + type: 'string', + description: + 'Connection type (e.g., athena, bigquery, databricks, postgres, redshift, snowflake)', + }, + description: { type: 'string', description: 'Connection description', optional: true }, + connectViaSsh: { + type: 'boolean', + description: 'Whether SSH tunneling is enabled', + optional: true, + }, + includeMagic: { + type: 'boolean', + description: 'Whether Magic AI features are enabled', + optional: true, + }, + allowWritebackCells: { + type: 'boolean', + description: 'Whether writeback cells are allowed', + optional: true, + }, + }, + }, + }, + total: { type: 'number', description: 'Total number of connections returned' }, + }, +} diff --git a/apps/sim/tools/hex/list_groups.ts b/apps/sim/tools/hex/list_groups.ts new file mode 100644 index 0000000000..c74cebe91f --- /dev/null +++ b/apps/sim/tools/hex/list_groups.ts @@ -0,0 +1,85 @@ +import type { HexListGroupsParams, HexListGroupsResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const listGroupsTool: ToolConfig = { + id: 'hex_list_groups', + name: 'Hex List Groups', + description: 'List all groups in the Hex workspace with optional sorting.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + limit: { + type: 'number', + required: false, + visibility: 'user-or-llm', + description: 'Maximum number of groups to return (1-500, default: 25)', + }, + sortBy: { + type: 'string', + required: false, + visibility: 'user-only', + description: 'Sort by field: CREATED_AT or NAME', + }, + sortDirection: { + type: 'string', + required: false, + visibility: 'user-only', + description: 'Sort direction: ASC or DESC', + }, + }, + + request: { + url: (params) => { + const searchParams = new URLSearchParams() + if (params.limit) searchParams.set('limit', String(params.limit)) + if (params.sortBy) searchParams.set('sortBy', params.sortBy) + if (params.sortDirection) searchParams.set('sortDirection', params.sortDirection) + const qs = searchParams.toString() + return `https://app.hex.tech/api/v1/groups${qs ? `?${qs}` : ''}` + }, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + const groups = Array.isArray(data) ? data : (data.values ?? []) + + return { + success: true, + output: { + groups: groups.map((g: Record) => ({ + id: (g.id as string) ?? null, + name: (g.name as string) ?? null, + createdAt: (g.createdAt as string) ?? null, + })), + total: groups.length, + }, + } + }, + + outputs: { + groups: { + type: 'array', + description: 'List of workspace groups', + items: { + type: 'object', + properties: { + id: { type: 'string', description: 'Group UUID' }, + name: { type: 'string', description: 'Group name' }, + createdAt: { type: 'string', description: 'Creation timestamp' }, + }, + }, + }, + total: { type: 'number', description: 'Total number of groups returned' }, + }, +} diff --git a/apps/sim/tools/hex/list_projects.ts b/apps/sim/tools/hex/list_projects.ts new file mode 100644 index 0000000000..502f954abc --- /dev/null +++ b/apps/sim/tools/hex/list_projects.ts @@ -0,0 +1,138 @@ +import type { HexListProjectsParams, HexListProjectsResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const listProjectsTool: ToolConfig = { + id: 'hex_list_projects', + name: 'Hex List Projects', + description: 'List all projects in your Hex workspace with optional filtering by status.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + limit: { + type: 'number', + required: false, + visibility: 'user-or-llm', + description: 'Maximum number of projects to return (1-100)', + }, + includeArchived: { + type: 'boolean', + required: false, + visibility: 'user-only', + description: 'Include archived projects in results', + }, + statusFilter: { + type: 'string', + required: false, + visibility: 'user-or-llm', + description: 'Filter by status: PUBLISHED, DRAFT, or ALL', + }, + }, + + request: { + url: (params) => { + const searchParams = new URLSearchParams() + if (params.limit) searchParams.set('limit', String(params.limit)) + if (params.includeArchived) searchParams.set('includeArchived', 'true') + if (params.statusFilter) searchParams.append('statuses[]', params.statusFilter) + const qs = searchParams.toString() + return `https://app.hex.tech/api/v1/projects${qs ? `?${qs}` : ''}` + }, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + const projects = Array.isArray(data) ? data : (data.values ?? []) + + return { + success: true, + output: { + projects: projects.map((p: Record) => ({ + id: (p.id as string) ?? null, + title: (p.title as string) ?? null, + description: (p.description as string) ?? null, + status: p.status ? { name: (p.status as Record).name ?? null } : null, + type: (p.type as string) ?? null, + creator: p.creator + ? { email: (p.creator as Record).email ?? null } + : null, + owner: p.owner ? { email: (p.owner as Record).email ?? null } : null, + categories: Array.isArray(p.categories) + ? (p.categories as Array>).map((c) => ({ + name: c.name ?? null, + description: c.description ?? null, + })) + : [], + lastEditedAt: (p.lastEditedAt as string) ?? null, + lastPublishedAt: (p.lastPublishedAt as string) ?? null, + createdAt: (p.createdAt as string) ?? null, + archivedAt: (p.archivedAt as string) ?? null, + trashedAt: (p.trashedAt as string) ?? null, + })), + total: projects.length, + }, + } + }, + + outputs: { + projects: { + type: 'array', + description: 'List of Hex projects', + items: { + type: 'object', + properties: { + id: { type: 'string', description: 'Project UUID' }, + title: { type: 'string', description: 'Project title' }, + description: { type: 'string', description: 'Project description', optional: true }, + status: { + type: 'object', + description: 'Project status', + properties: { + name: { type: 'string', description: 'Status name (e.g., PUBLISHED, DRAFT)' }, + }, + }, + type: { type: 'string', description: 'Project type (PROJECT or COMPONENT)' }, + creator: { + type: 'object', + description: 'Project creator', + optional: true, + properties: { + email: { type: 'string', description: 'Creator email' }, + }, + }, + owner: { + type: 'object', + description: 'Project owner', + optional: true, + properties: { + email: { type: 'string', description: 'Owner email' }, + }, + }, + lastEditedAt: { + type: 'string', + description: 'Last edited timestamp', + optional: true, + }, + lastPublishedAt: { + type: 'string', + description: 'Last published timestamp', + optional: true, + }, + createdAt: { type: 'string', description: 'Creation timestamp' }, + archivedAt: { type: 'string', description: 'Archived timestamp', optional: true }, + }, + }, + }, + total: { type: 'number', description: 'Total number of projects returned' }, + }, +} diff --git a/apps/sim/tools/hex/list_users.ts b/apps/sim/tools/hex/list_users.ts new file mode 100644 index 0000000000..f1ba9af6ad --- /dev/null +++ b/apps/sim/tools/hex/list_users.ts @@ -0,0 +1,98 @@ +import type { HexListUsersParams, HexListUsersResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const listUsersTool: ToolConfig = { + id: 'hex_list_users', + name: 'Hex List Users', + description: 'List all users in the Hex workspace with optional filtering and sorting.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + limit: { + type: 'number', + required: false, + visibility: 'user-or-llm', + description: 'Maximum number of users to return (1-100, default: 25)', + }, + sortBy: { + type: 'string', + required: false, + visibility: 'user-only', + description: 'Sort by field: NAME or EMAIL', + }, + sortDirection: { + type: 'string', + required: false, + visibility: 'user-only', + description: 'Sort direction: ASC or DESC', + }, + groupId: { + type: 'string', + required: false, + visibility: 'user-or-llm', + description: 'Filter users by group UUID', + }, + }, + + request: { + url: (params) => { + const searchParams = new URLSearchParams() + if (params.limit) searchParams.set('limit', String(params.limit)) + if (params.sortBy) searchParams.set('sortBy', params.sortBy) + if (params.sortDirection) searchParams.set('sortDirection', params.sortDirection) + if (params.groupId) searchParams.set('groupId', params.groupId) + const qs = searchParams.toString() + return `https://app.hex.tech/api/v1/users${qs ? `?${qs}` : ''}` + }, + method: 'GET', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + const users = Array.isArray(data) ? data : (data.values ?? []) + + return { + success: true, + output: { + users: users.map((u: Record) => ({ + id: (u.id as string) ?? null, + name: (u.name as string) ?? null, + email: (u.email as string) ?? null, + role: (u.role as string) ?? null, + })), + total: users.length, + }, + } + }, + + outputs: { + users: { + type: 'array', + description: 'List of workspace users', + items: { + type: 'object', + properties: { + id: { type: 'string', description: 'User UUID' }, + name: { type: 'string', description: 'User name' }, + email: { type: 'string', description: 'User email' }, + role: { + type: 'string', + description: + 'User role (ADMIN, MANAGER, EDITOR, EXPLORER, MEMBER, GUEST, EMBEDDED_USER, ANONYMOUS)', + }, + }, + }, + }, + total: { type: 'number', description: 'Total number of users returned' }, + }, +} diff --git a/apps/sim/tools/hex/run_project.ts b/apps/sim/tools/hex/run_project.ts new file mode 100644 index 0000000000..3d11ac0346 --- /dev/null +++ b/apps/sim/tools/hex/run_project.ts @@ -0,0 +1,108 @@ +import type { HexRunProjectParams, HexRunProjectResponse } from '@/tools/hex/types' +import { HEX_RUN_OUTPUT_PROPERTIES } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const runProjectTool: ToolConfig = { + id: 'hex_run_project', + name: 'Hex Run Project', + description: + 'Execute a published Hex project. Optionally pass input parameters and control caching behavior.', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + projectId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the Hex project to run', + }, + inputParams: { + type: 'json', + required: false, + visibility: 'user-or-llm', + description: 'JSON object of input parameters for the project (e.g., {"date": "2024-01-01"})', + }, + dryRun: { + type: 'boolean', + required: false, + visibility: 'user-only', + description: 'If true, perform a dry run without executing the project', + }, + updateCache: { + type: 'boolean', + required: false, + visibility: 'user-only', + description: '(Deprecated) If true, update the cached results after execution', + }, + updatePublishedResults: { + type: 'boolean', + required: false, + visibility: 'user-only', + description: 'If true, update the published app results after execution', + }, + useCachedSqlResults: { + type: 'boolean', + required: false, + visibility: 'user-only', + description: 'If true, use cached SQL results instead of re-running queries', + }, + }, + + request: { + url: (params) => `https://app.hex.tech/api/v1/projects/${params.projectId}/runs`, + method: 'POST', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + body: (params) => { + const body: Record = {} + + if (params.inputParams) { + body.inputParams = + typeof params.inputParams === 'string' + ? JSON.parse(params.inputParams) + : params.inputParams + } + if (params.dryRun !== undefined) body.dryRun = params.dryRun + if (params.updateCache !== undefined) body.updateCache = params.updateCache + if (params.updatePublishedResults !== undefined) + body.updatePublishedResults = params.updatePublishedResults + if (params.useCachedSqlResults !== undefined) + body.useCachedSqlResults = params.useCachedSqlResults + + return body + }, + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + + return { + success: true, + output: { + projectId: data.projectId ?? null, + runId: data.runId ?? null, + runUrl: data.runUrl ?? null, + runStatusUrl: data.runStatusUrl ?? null, + traceId: data.traceId ?? null, + projectVersion: data.projectVersion ?? null, + }, + } + }, + + outputs: { + projectId: HEX_RUN_OUTPUT_PROPERTIES.projectId, + runId: HEX_RUN_OUTPUT_PROPERTIES.runId, + runUrl: HEX_RUN_OUTPUT_PROPERTIES.runUrl, + runStatusUrl: HEX_RUN_OUTPUT_PROPERTIES.runStatusUrl, + traceId: HEX_RUN_OUTPUT_PROPERTIES.traceId, + projectVersion: HEX_RUN_OUTPUT_PROPERTIES.projectVersion, + }, +} diff --git a/apps/sim/tools/hex/types.ts b/apps/sim/tools/hex/types.ts new file mode 100644 index 0000000000..23b4321228 --- /dev/null +++ b/apps/sim/tools/hex/types.ts @@ -0,0 +1,429 @@ +import type { OutputProperty, ToolResponse } from '@/tools/types' + +/** + * Shared output property definitions for Hex API responses. + * Based on Hex API documentation: https://learn.hex.tech/docs/api/api-reference + */ + +/** + * Output definition for project items returned by the Hex API. + * The status field is an object with a name property (e.g., { name: "PUBLISHED" }). + * The type field is a ProjectTypeApiEnum (PROJECT or COMPONENT). + */ +export const HEX_PROJECT_OUTPUT_PROPERTIES = { + id: { type: 'string', description: 'Project UUID' }, + title: { type: 'string', description: 'Project title' }, + description: { type: 'string', description: 'Project description', optional: true }, + status: { + type: 'object', + description: 'Project status', + properties: { + name: { + type: 'string', + description: 'Status name (e.g., PUBLISHED, DRAFT)', + }, + }, + }, + type: { + type: 'string', + description: 'Project type (PROJECT or COMPONENT)', + }, + creator: { + type: 'object', + description: 'Project creator', + optional: true, + properties: { + email: { type: 'string', description: 'Creator email' }, + }, + }, + owner: { + type: 'object', + description: 'Project owner', + optional: true, + properties: { + email: { type: 'string', description: 'Owner email' }, + }, + }, + categories: { + type: 'array', + description: 'Project categories', + optional: true, + items: { + type: 'object', + properties: { + name: { type: 'string', description: 'Category name' }, + description: { type: 'string', description: 'Category description' }, + }, + }, + }, + lastEditedAt: { type: 'string', description: 'ISO 8601 last edited timestamp', optional: true }, + lastPublishedAt: { + type: 'string', + description: 'ISO 8601 last published timestamp', + optional: true, + }, + createdAt: { type: 'string', description: 'ISO 8601 creation timestamp' }, + archivedAt: { type: 'string', description: 'ISO 8601 archived timestamp', optional: true }, + trashedAt: { type: 'string', description: 'ISO 8601 trashed timestamp', optional: true }, +} as const satisfies Record + +/** + * Output definition for run creation responses. + * POST /v1/projects/{projectId}/runs returns projectVersion but no status. + */ +export const HEX_RUN_OUTPUT_PROPERTIES = { + projectId: { type: 'string', description: 'Project UUID' }, + runId: { type: 'string', description: 'Run UUID' }, + runUrl: { type: 'string', description: 'URL to view the run' }, + runStatusUrl: { type: 'string', description: 'URL to check run status' }, + traceId: { type: 'string', description: 'Trace ID for debugging', optional: true }, + projectVersion: { type: 'number', description: 'Project version number', optional: true }, +} as const satisfies Record + +/** + * Output definition for run status responses. + * GET /v1/projects/{projectId}/runs/{runId} returns full run details. + */ +export const HEX_RUN_STATUS_OUTPUT_PROPERTIES = { + projectId: { type: 'string', description: 'Project UUID' }, + runId: { type: 'string', description: 'Run UUID' }, + runUrl: { type: 'string', description: 'URL to view the run' }, + status: { + type: 'string', + description: + 'Run status (PENDING, RUNNING, COMPLETED, ERRORED, KILLED, UNABLE_TO_ALLOCATE_KERNEL)', + }, + startTime: { type: 'string', description: 'ISO 8601 run start time', optional: true }, + endTime: { type: 'string', description: 'ISO 8601 run end time', optional: true }, + elapsedTime: { type: 'number', description: 'Elapsed time in seconds', optional: true }, + traceId: { type: 'string', description: 'Trace ID for debugging', optional: true }, + projectVersion: { type: 'number', description: 'Project version number', optional: true }, +} as const satisfies Record + +export interface HexListProjectsParams { + apiKey: string + limit?: number + includeArchived?: boolean + statusFilter?: string +} + +export interface HexListProjectsResponse extends ToolResponse { + output: { + projects: Array<{ + id: string + title: string + description: string | null + status: { name: string } | null + type: string + creator: { email: string } | null + owner: { email: string } | null + categories: Array<{ name: string; description: string }> + lastEditedAt: string | null + lastPublishedAt: string | null + createdAt: string + archivedAt: string | null + trashedAt: string | null + }> + total: number + } +} + +export interface HexGetProjectParams { + apiKey: string + projectId: string +} + +export interface HexGetProjectResponse extends ToolResponse { + output: { + id: string + title: string + description: string | null + status: { name: string } | null + type: string + creator: { email: string } | null + owner: { email: string } | null + categories: Array<{ name: string; description: string }> + lastEditedAt: string | null + lastPublishedAt: string | null + createdAt: string + archivedAt: string | null + trashedAt: string | null + } +} + +export interface HexRunProjectParams { + apiKey: string + projectId: string + inputParams?: string + dryRun?: boolean + updateCache?: boolean + updatePublishedResults?: boolean + useCachedSqlResults?: boolean +} + +export interface HexRunProjectResponse extends ToolResponse { + output: { + projectId: string + runId: string + runUrl: string + runStatusUrl: string + traceId: string | null + projectVersion: number | null + } +} + +export interface HexGetRunStatusParams { + apiKey: string + projectId: string + runId: string +} + +export interface HexGetRunStatusResponse extends ToolResponse { + output: { + projectId: string + runId: string + runUrl: string | null + status: string + startTime: string | null + endTime: string | null + elapsedTime: number | null + traceId: string | null + projectVersion: number | null + } +} + +export interface HexCancelRunParams { + apiKey: string + projectId: string + runId: string +} + +export interface HexCancelRunResponse extends ToolResponse { + output: { + success: boolean + projectId: string + runId: string + } +} + +export interface HexGetProjectRunsParams { + apiKey: string + projectId: string + limit?: number + offset?: number + statusFilter?: string +} + +export interface HexGetProjectRunsResponse extends ToolResponse { + output: { + runs: Array<{ + projectId: string + runId: string + runUrl: string | null + status: string + startTime: string | null + endTime: string | null + elapsedTime: number | null + traceId: string | null + projectVersion: number | null + }> + total: number + traceId: string | null + } +} + +export interface HexUpdateProjectParams { + apiKey: string + projectId: string + status: string +} + +export interface HexUpdateProjectResponse extends ToolResponse { + output: { + id: string + title: string + description: string | null + status: { name: string } | null + type: string + creator: { email: string } | null + owner: { email: string } | null + categories: Array<{ name: string; description: string }> + lastEditedAt: string | null + lastPublishedAt: string | null + createdAt: string + archivedAt: string | null + trashedAt: string | null + } +} + +export interface HexListUsersParams { + apiKey: string + limit?: number + sortBy?: string + sortDirection?: string + groupId?: string +} + +export interface HexListUsersResponse extends ToolResponse { + output: { + users: Array<{ + id: string + name: string + email: string + role: string + }> + total: number + } +} + +export interface HexListCollectionsParams { + apiKey: string + limit?: number + sortBy?: string +} + +export interface HexListCollectionsResponse extends ToolResponse { + output: { + collections: Array<{ + id: string + name: string + description: string | null + creator: { email: string; id: string } | null + }> + total: number + } +} + +export interface HexListDataConnectionsParams { + apiKey: string + limit?: number + sortBy?: string + sortDirection?: string +} + +export interface HexListDataConnectionsResponse extends ToolResponse { + output: { + connections: Array<{ + id: string + name: string + type: string + description: string | null + connectViaSsh: boolean | null + includeMagic: boolean | null + allowWritebackCells: boolean | null + }> + total: number + } +} + +export interface HexGetQueriedTablesParams { + apiKey: string + projectId: string + limit?: number +} + +export interface HexGetQueriedTablesResponse extends ToolResponse { + output: { + tables: Array<{ + dataConnectionId: string | null + dataConnectionName: string | null + tableName: string | null + }> + total: number + } +} + +export interface HexListGroupsParams { + apiKey: string + limit?: number + sortBy?: string + sortDirection?: string +} + +export interface HexListGroupsResponse extends ToolResponse { + output: { + groups: Array<{ + id: string + name: string + createdAt: string | null + }> + total: number + } +} + +export interface HexGetGroupParams { + apiKey: string + groupId: string +} + +export interface HexGetGroupResponse extends ToolResponse { + output: { + id: string + name: string + createdAt: string | null + } +} + +export interface HexGetDataConnectionParams { + apiKey: string + dataConnectionId: string +} + +export interface HexGetDataConnectionResponse extends ToolResponse { + output: { + id: string + name: string + type: string + description: string | null + connectViaSsh: boolean | null + includeMagic: boolean | null + allowWritebackCells: boolean | null + } +} + +export interface HexGetCollectionParams { + apiKey: string + collectionId: string +} + +export interface HexGetCollectionResponse extends ToolResponse { + output: { + id: string + name: string + description: string | null + creator: { email: string; id: string } | null + } +} + +export interface HexCreateCollectionParams { + apiKey: string + name: string + description?: string +} + +export interface HexCreateCollectionResponse extends ToolResponse { + output: { + id: string + name: string + description: string | null + creator: { email: string; id: string } | null + } +} + +export type HexResponse = + | HexListProjectsResponse + | HexGetProjectResponse + | HexRunProjectResponse + | HexGetRunStatusResponse + | HexCancelRunResponse + | HexGetProjectRunsResponse + | HexUpdateProjectResponse + | HexListUsersResponse + | HexListCollectionsResponse + | HexListDataConnectionsResponse + | HexGetQueriedTablesResponse + | HexListGroupsResponse + | HexGetGroupResponse + | HexGetDataConnectionResponse + | HexGetCollectionResponse + | HexCreateCollectionResponse diff --git a/apps/sim/tools/hex/update_project.ts b/apps/sim/tools/hex/update_project.ts new file mode 100644 index 0000000000..e8da0a3c27 --- /dev/null +++ b/apps/sim/tools/hex/update_project.ts @@ -0,0 +1,118 @@ +import type { HexUpdateProjectParams, HexUpdateProjectResponse } from '@/tools/hex/types' +import type { ToolConfig } from '@/tools/types' + +export const updateProjectTool: ToolConfig = { + id: 'hex_update_project', + name: 'Hex Update Project', + description: + 'Update a Hex project status label (e.g., endorsement or custom workspace statuses).', + version: '1.0.0', + + params: { + apiKey: { + type: 'string', + required: true, + visibility: 'user-only', + description: 'Hex API token (Personal or Workspace)', + }, + projectId: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'The UUID of the Hex project to update', + }, + status: { + type: 'string', + required: true, + visibility: 'user-or-llm', + description: 'New project status name (custom workspace status label)', + }, + }, + + request: { + url: (params) => `https://app.hex.tech/api/v1/projects/${params.projectId}`, + method: 'PATCH', + headers: (params) => ({ + Authorization: `Bearer ${params.apiKey}`, + 'Content-Type': 'application/json', + }), + body: (params) => ({ + status: params.status, + }), + }, + + transformResponse: async (response: Response) => { + const data = await response.json() + + return { + success: true, + output: { + id: data.id ?? null, + title: data.title ?? null, + description: data.description ?? null, + status: data.status ? { name: data.status.name ?? null } : null, + type: data.type ?? null, + creator: data.creator ? { email: data.creator.email ?? null } : null, + owner: data.owner ? { email: data.owner.email ?? null } : null, + categories: Array.isArray(data.categories) + ? data.categories.map((c: Record) => ({ + name: c.name ?? null, + description: c.description ?? null, + })) + : [], + lastEditedAt: data.lastEditedAt ?? null, + lastPublishedAt: data.lastPublishedAt ?? null, + createdAt: data.createdAt ?? null, + archivedAt: data.archivedAt ?? null, + trashedAt: data.trashedAt ?? null, + }, + } + }, + + outputs: { + id: { type: 'string', description: 'Project UUID' }, + title: { type: 'string', description: 'Project title' }, + description: { type: 'string', description: 'Project description', optional: true }, + status: { + type: 'object', + description: 'Updated project status', + properties: { + name: { type: 'string', description: 'Status name (e.g., PUBLISHED, DRAFT)' }, + }, + }, + type: { type: 'string', description: 'Project type (PROJECT or COMPONENT)' }, + creator: { + type: 'object', + description: 'Project creator', + optional: true, + properties: { + email: { type: 'string', description: 'Creator email' }, + }, + }, + owner: { + type: 'object', + description: 'Project owner', + optional: true, + properties: { + email: { type: 'string', description: 'Owner email' }, + }, + }, + categories: { + type: 'array', + description: 'Project categories', + optional: true, + items: { + type: 'object', + properties: { + name: { type: 'string', description: 'Category name' }, + description: { type: 'string', description: 'Category description' }, + }, + }, + }, + lastEditedAt: { type: 'string', description: 'Last edited timestamp', optional: true }, + lastPublishedAt: { type: 'string', description: 'Last published timestamp', optional: true }, + createdAt: { type: 'string', description: 'Creation timestamp' }, + archivedAt: { type: 'string', description: 'Archived timestamp', optional: true }, + trashedAt: { type: 'string', description: 'Trashed timestamp', optional: true }, + }, +} diff --git a/apps/sim/tools/registry.ts b/apps/sim/tools/registry.ts index c206509aca..7642dfa0bb 100644 --- a/apps/sim/tools/registry.ts +++ b/apps/sim/tools/registry.ts @@ -723,6 +723,24 @@ import { greptileStatusTool, } from '@/tools/greptile' import { guardrailsValidateTool } from '@/tools/guardrails' +import { + hexCancelRunTool, + hexCreateCollectionTool, + hexGetCollectionTool, + hexGetDataConnectionTool, + hexGetGroupTool, + hexGetProjectRunsTool, + hexGetProjectTool, + hexGetQueriedTablesTool, + hexGetRunStatusTool, + hexListCollectionsTool, + hexListDataConnectionsTool, + hexListGroupsTool, + hexListProjectsTool, + hexListUsersTool, + hexRunProjectTool, + hexUpdateProjectTool, +} from '@/tools/hex' import { httpRequestTool, webhookRequestTool } from '@/tools/http' import { hubspotCreateCompanyTool, @@ -2058,6 +2076,22 @@ export const tools: Record = { grafana_create_folder: grafanaCreateFolderTool, google_search: googleSearchTool, guardrails_validate: guardrailsValidateTool, + hex_cancel_run: hexCancelRunTool, + hex_create_collection: hexCreateCollectionTool, + hex_get_collection: hexGetCollectionTool, + hex_get_data_connection: hexGetDataConnectionTool, + hex_get_group: hexGetGroupTool, + hex_get_project: hexGetProjectTool, + hex_get_project_runs: hexGetProjectRunsTool, + hex_get_queried_tables: hexGetQueriedTablesTool, + hex_get_run_status: hexGetRunStatusTool, + hex_list_collections: hexListCollectionsTool, + hex_list_data_connections: hexListDataConnectionsTool, + hex_list_groups: hexListGroupsTool, + hex_list_projects: hexListProjectsTool, + hex_list_users: hexListUsersTool, + hex_run_project: hexRunProjectTool, + hex_update_project: hexUpdateProjectTool, jina_read_url: jinaReadUrlTool, jina_search: jinaSearchTool, linkup_search: linkupSearchTool, From c52f78c840b1e6a1ff04b32770f1cd718492d031 Mon Sep 17 00:00:00 2001 From: Waleed Date: Sat, 21 Feb 2026 16:44:54 -0800 Subject: [PATCH 5/6] fix(models): remove retired claude-3-7-sonnet and update default models (#3292) --- .../app/api/tools/stagehand/agent/route.ts | 2 +- .../app/api/tools/stagehand/extract/route.ts | 2 +- apps/sim/blocks/blocks/browser_use.ts | 2 ++ apps/sim/providers/models.ts | 19 ------------------- apps/sim/providers/utils.test.ts | 2 -- 5 files changed, 4 insertions(+), 23 deletions(-) diff --git a/apps/sim/app/api/tools/stagehand/agent/route.ts b/apps/sim/app/api/tools/stagehand/agent/route.ts index 0d6f697658..c0a804a3dd 100644 --- a/apps/sim/app/api/tools/stagehand/agent/route.ts +++ b/apps/sim/app/api/tools/stagehand/agent/route.ts @@ -165,7 +165,7 @@ export async function POST(request: NextRequest) { } const modelName = - provider === 'anthropic' ? 'anthropic/claude-3-7-sonnet-latest' : 'openai/gpt-4.1' + provider === 'anthropic' ? 'anthropic/claude-sonnet-4-5-20250929' : 'openai/gpt-5' try { logger.info('Initializing Stagehand with Browserbase (v3)', { provider, modelName }) diff --git a/apps/sim/app/api/tools/stagehand/extract/route.ts b/apps/sim/app/api/tools/stagehand/extract/route.ts index 8523db6c70..4dd862039b 100644 --- a/apps/sim/app/api/tools/stagehand/extract/route.ts +++ b/apps/sim/app/api/tools/stagehand/extract/route.ts @@ -101,7 +101,7 @@ export async function POST(request: NextRequest) { try { const modelName = - provider === 'anthropic' ? 'anthropic/claude-3-7-sonnet-latest' : 'openai/gpt-4.1' + provider === 'anthropic' ? 'anthropic/claude-sonnet-4-5-20250929' : 'openai/gpt-5' logger.info('Initializing Stagehand with Browserbase (v3)', { provider, modelName }) diff --git a/apps/sim/blocks/blocks/browser_use.ts b/apps/sim/blocks/blocks/browser_use.ts index b9f364e2b9..267aa97299 100644 --- a/apps/sim/blocks/blocks/browser_use.ts +++ b/apps/sim/blocks/blocks/browser_use.ts @@ -33,6 +33,7 @@ export const BrowserUseBlock: BlockConfig = { type: 'dropdown', options: [ { label: 'Browser Use LLM', id: 'browser-use-llm' }, + { label: 'Browser Use 2.0', id: 'browser-use-2.0' }, { label: 'GPT-4o', id: 'gpt-4o' }, { label: 'GPT-4o Mini', id: 'gpt-4o-mini' }, { label: 'GPT-4.1', id: 'gpt-4.1' }, @@ -42,6 +43,7 @@ export const BrowserUseBlock: BlockConfig = { { label: 'Gemini 2.5 Flash', id: 'gemini-2.5-flash' }, { label: 'Gemini 2.5 Pro', id: 'gemini-2.5-pro' }, { label: 'Gemini 3 Pro Preview', id: 'gemini-3-pro-preview' }, + { label: 'Gemini 3 Flash Preview', id: 'gemini-3-flash-preview' }, { label: 'Gemini Flash Latest', id: 'gemini-flash-latest' }, { label: 'Gemini Flash Lite Latest', id: 'gemini-flash-lite-latest' }, { label: 'Claude 3.7 Sonnet', id: 'claude-3-7-sonnet-20250219' }, diff --git a/apps/sim/providers/models.ts b/apps/sim/providers/models.ts index 621daa8701..76a15e0ae9 100644 --- a/apps/sim/providers/models.ts +++ b/apps/sim/providers/models.ts @@ -467,25 +467,6 @@ export const PROVIDER_DEFINITIONS: Record = { }, contextWindow: 200000, }, - { - id: 'claude-3-7-sonnet-latest', - pricing: { - input: 3.0, - cachedInput: 0.3, - output: 15.0, - updatedAt: '2026-02-05', - }, - capabilities: { - temperature: { min: 0, max: 1 }, - computerUse: true, - maxOutputTokens: 64000, - thinking: { - levels: ['low', 'medium', 'high'], - default: 'high', - }, - }, - contextWindow: 200000, - }, ], }, 'azure-openai': { diff --git a/apps/sim/providers/utils.test.ts b/apps/sim/providers/utils.test.ts index 50b5584a60..972bf87173 100644 --- a/apps/sim/providers/utils.test.ts +++ b/apps/sim/providers/utils.test.ts @@ -183,7 +183,6 @@ describe('Model Capabilities', () => { 'gemini-2.5-flash', 'claude-sonnet-4-0', 'claude-opus-4-0', - 'claude-3-7-sonnet-latest', 'grok-3-latest', 'grok-3-fast-latest', 'deepseek-v3', @@ -260,7 +259,6 @@ describe('Model Capabilities', () => { const modelsRange01 = [ 'claude-sonnet-4-0', 'claude-opus-4-0', - 'claude-3-7-sonnet-latest', 'grok-3-latest', 'grok-3-fast-latest', ] From 04286fc16bccbcf5e26728baa206f1d1323e2178 Mon Sep 17 00:00:00 2001 From: Waleed Date: Sat, 21 Feb 2026 17:53:04 -0800 Subject: [PATCH 6/6] fix(hex): scope param renames to their respective operations (#3295) --- apps/sim/blocks/blocks/hex.ts | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/apps/sim/blocks/blocks/hex.ts b/apps/sim/blocks/blocks/hex.ts index 8e11c8ff29..db902fff48 100644 --- a/apps/sim/blocks/blocks/hex.ts +++ b/apps/sim/blocks/blocks/hex.ts @@ -322,13 +322,19 @@ Example: }, params: (params) => { const result: Record = {} + const op = params.operation + if (params.limit) result.limit = Number(params.limit) - if (params.offset) result.offset = Number(params.offset) - if (params.projectStatus) result.status = params.projectStatus - if (params.runStatusFilter) result.statusFilter = params.runStatusFilter - if (params.groupIdInput) result.groupId = params.groupIdInput - if (params.collectionName) result.name = params.collectionName - if (params.collectionDescription) result.description = params.collectionDescription + if (op === 'get_project_runs' && params.offset) result.offset = Number(params.offset) + if (op === 'update_project' && params.projectStatus) result.status = params.projectStatus + if (op === 'get_project_runs' && params.runStatusFilter) + result.statusFilter = params.runStatusFilter + if (op === 'get_group' && params.groupIdInput) result.groupId = params.groupIdInput + if (op === 'list_users' && params.groupId) result.groupId = params.groupId + if (op === 'create_collection' && params.collectionName) result.name = params.collectionName + if (op === 'create_collection' && params.collectionDescription) + result.description = params.collectionDescription + return result }, },