UNPKG

@jjdenhertog/ai-driven-development

Version:

AI-driven development workflow with learning capabilities for Claude

6 lines (5 loc) 256 B
import { fetchJson } from '../http/fetchJson' import { API_BASE } from '../constants' export function getTaskSessions(taskId: string): Promise<{ sessions: string[] }> { return fetchJson<{ sessions: string[] }>(`${API_BASE}/tasks/${taskId}/sessions`) }