UNPKG

@jjdenhertog/ai-driven-development

Version:

AI-driven development workflow with learning capabilities for Claude

6 lines (5 loc) 246 B
import { putJson } from '../http/putJson' import { API_BASE } from '../constants' export function updateTaskSpecification(id: string, content: string): Promise<unknown> { return putJson(`${API_BASE}/tasks/${id}/specification`, { content }) }