Davanaa/openenv-spreadsheet-cleanup
1
1from tasks import TASKS2 3print("Available tasks in registry:", list(TASKS.keys()))4 5for task_id, task in TASKS.items():6 print(f"\n--- Task: {task_id} ---")7 print("Description:", task.description)8 print("Dataset Path:", task.dataset_filename)9 print("Max Steps:", task.max_steps)10 print("Expected Issues:", task.expected_issue_types)11 print("Approval Needed For:", task.approval_required_for)