import React from 'react'; import { ExternalLink, Terminal, MessageSquare, Plus } from 'lucide-react'; import { TaskMasterLogo } from '../../components/TaskMasterLogo'; interface EmptyStateProps { currentTag: string; } export const EmptyState: React.FC = ({ currentTag }) => { return (
{/* Empty state illustration */}

No tasks in "{currentTag}" tag

Get started by adding tasks to this tag using the commands below

{/* Command suggestions */}

CLI Commands

task-master {' '} parse-prd{' '} <path-to-prd> {' '} --append
Parse a PRD and append tasks to current tag
task-master {' '} add-task{' '} --prompt {' '} "Your task description"
Add a single task with AI assistance
task-master {' '} add-task{' '} --help
View all options for adding tasks

MCP Examples

"Add a task to tag {currentTag}: Implement user authentication"
"Parse this PRD and add tasks to {currentTag}: [paste PRD content]"
"Create 5 tasks for building a REST API in tag {currentTag}"
{/* Documentation link */}
{ e.preventDefault(); // Use VS Code API to open external link if (window.acquireVsCodeApi) { const vscode = window.acquireVsCodeApi(); vscode.postMessage({ type: 'openExternal', url: 'https://docs.task-master.dev' }); } }} > View TaskMaster Documentation
); };