UNPKG

@jjdenhertog/ai-driven-development

Version:

AI-driven development workflow with learning capabilities for Claude

6 lines (5 loc) 252 B
import { fetchJson } from '../http/fetchJson' import { API_BASE } from '../constants' export function getTaskSpecification(id: string): Promise<{ content: string }> { return fetchJson<{ content: string }>(`${API_BASE}/tasks/${id}/specification`) }