todo_management
Manage and track tasks for SRT file processing workflows including parsing, translation, quality checks, and output generation. Create, update, and monitor task progress across different processing stages.
Instructions
Manage tasks for SRT processing workflows.
WHAT IT DOES:
Create, update, and track tasks during SRT processing
Monitor progress across different processing stages
Manage task priorities and dependencies
ACTIONS:
create: Create a new task
update: Update task status
complete: Mark task as completed
list: List all tasks
get_status: Get overall task status
TASK TYPES:
srt_parse: Parse and validate SRT file
conversation_detect: Detect conversation chunks
chunk_optimize: Optimize chunks for AI processing
ai_process: Process with AI model
translate: Translate content
quality_check: Quality assurance
output_generate: Generate final output
EXAMPLE USAGE:
Create task: {"action": "create", "taskType": "srt_parse", "title": "Parse SRT file", "priority": "high"}
Update status: {"action": "update", "taskId": "task-123", "status": "completed"}
List tasks: {"action": "list"}
Get status: {"action": "get_status"}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Todo action to perform | |
description | No | Task description | |
metadata | No | Additional task metadata | |
priority | No | Task priority | medium |
status | No | Task status (for update action) | |
taskId | No | Task ID (for update/complete actions) | |
taskType | No | Type of task | |
title | No | Task title |