Convert AI-generated plans into structured markdown task lists and manage them efficiently in your repository. Automatically track and organize tasks with descriptive filenames and completion indicators. Enhance your productivity by integrating with Claude for Desktop and streamline your task management process.
Tools
create_task_list
Create a new task list and save it to the .tasks folder. Args: title: Title for the task list description: Short 2-3 word description for the filename (e.g., "refactor-authentication") repo_path: Path to the repository root (defaults to current directory) include_metadata: Whether to include creation date/time Returns: Path to the created task list file
convert_plan_to_tasks
Convert a Cursor agent's plan text into a formatted Markdown task list and save it. Args: plan_text: The plan text from the Cursor agent title: Title for the task list description: Short 2-3 word description for the filename (e.g., "refactor-authentication") repo_path: Path to the repository root (defaults to current directory) include_metadata: Whether to include metadata like date and time Returns: Path to the created task list file
add_task
Add a new task to an existing task list. Args: description: The description identifier of the task list file task_text: Text for the new task repo_path: Path to the repository root (defaults to current directory) section: Which section to add the task to (defaults to "Tasks") Returns: Updated markdown task list
mark_task_complete
Mark a specific task as completed. Args: description: The description identifier of the task list file task_number: The number of the task to mark as complete repo_path: Path to the repository root (defaults to current directory) section: Which section the task is in (defaults to "Tasks") Returns: Updated markdown task list