UNPKG

@jjdenhertog/ai-driven-development

Version:

AI-driven development workflow with learning capabilities for Claude

6 lines (5 loc) 288 B
import { fetchJson } from '../http/fetchJson' import { API_BASE } from '../constants' export function getTaskOutput(taskId: string, file: string): Promise<{ content: string }> { return fetchJson<{ content: string }>(`${API_BASE}/tasks/${taskId}/output/${encodeURIComponent(file)}`) }