import { Sparkles, X } from 'lucide-react'; import { PRD_DOCS_URL } from '../constants'; type GenerateTasksModalProps = { isOpen: boolean; fileName: string; onClose: () => void; }; export default function GenerateTasksModal({ isOpen, fileName, onClose, }: GenerateTasksModalProps) { if (!isOpen) { return null; } return (

Generate Tasks from PRD

Ask Claude Code directly

Save this PRD, then ask Claude Code in chat to parse the file and create your initial tasks.

Example prompt

I have a PRD at .taskmaster/docs/{fileName}. Parse it and create the initial tasks.

View TaskMaster documentation
); }