id stringlengths 17 50 | app stringclasses 18
values | task stringlengths 97 1.79k | env unknown | verification listlengths 1 30 | github_task_path stringlengths 38 71 |
|---|---|---|---|---|---|
obsidian_add_links_to_existing | obsidian | Open the Obsidian vault at /home/user/Documents/LinkVault. The vault has 5 isolated notes with no links between them. Edit each note to add cross-references by appending a '## Related' section at the end:
1. Edit 'Python.md': Add '## Related' section with links to [[JavaScript]] and [[Git]].
2. Edit 'JavaScript.md': A... | {
"files": []
} | [
{
"command": "check-note-links-to /home/user/Documents/LinkVault Python JavaScript",
"key": "links_to",
"expected": true,
"description": "Python links to JavaScript"
},
{
"command": "check-note-links-to /home/user/Documents/LinkVault Python Git",
"key": "links_to",
"expected": true,
... | task_generator/tasks/obsidian_add_links_to_existing |
obsidian_appearance_setup | obsidian | Open Obsidian with the vault at /home/user/Documents/ThemeVault. Using the Settings dialog, configure the appearance:
Change the base theme to light mode (set theme to 'moonstone'), set the base font size to 18
, set the accent color to '#E11D48' (a rose color).
Then create a note called 'ThemeTest.md' in the vault r... | {
"files": []
} | [
{
"command": "appearance /home/user/Documents/ThemeVault theme",
"eval": "result.get('value') == 'moonstone'",
"description": "Theme set to moonstone (light)"
},
{
"command": "appearance /home/user/Documents/ThemeVault baseFontSize",
"eval": "result.get('value') == 18",
"description": "F... | task_generator/tasks/obsidian_appearance_setup |
obsidian_bookmarks_curation | obsidian | Open the Obsidian vault at /home/user/Documents/BookmarkVault. Create a reference library and pin the most important notes as bookmarks:
1. Create 6 reference notes in the vault root. Each note must have a level-1 heading matching its title, a short body paragraph, and the inline tag #reference.
- 'Guide.md' — head... | {
"files": [
{
"filename": "app.json",
"sandbox_path": "/home/user/Documents/BookmarkVault/.obsidian/app.json"
}
]
} | [
{
"command": "check-note-exists /home/user/Documents/BookmarkVault Guide",
"key": "exists",
"expected": true,
"description": "Guide note exists"
},
{
"command": "check-note-exists /home/user/Documents/BookmarkVault Cheatsheet",
"key": "exists",
"expected": true,
"description": "C... | task_generator/tasks/obsidian_bookmarks_curation |
obsidian_bug_tracker | obsidian | Open the Obsidian vault at /home/user/Documents/BugTracker. Create a bug tracking system:
1. Create folders: 'Open', 'InProgress', 'Closed'.
2. Create 'Open/BUG-001.md' with frontmatter 'type: bug', 'severity: high', 'component: auth', 'status: open' and body with heading 'BUG-001: Authentication Failure on Login', de... | {
"files": []
} | [
{
"command": "check-folder-exists /home/user/Documents/BugTracker Open",
"key": "exists",
"expected": true,
"description": "Open folder exists"
},
{
"command": "check-folder-exists /home/user/Documents/BugTracker InProgress",
"key": "exists",
"expected": true,
"description": "InP... | task_generator/tasks/obsidian_bug_tracker |
obsidian_configure_editor | obsidian | Open Obsidian with the vault at /home/user/Documents/EditorVault. Using the Obsidian Settings dialog, configure the following editor settings:
1. Enable 'Spell check' (the spellcheck toggle in Settings > Editor)
2. Enable 'Strict line breaks' (strictLineBreaks)
3. Disable 'Readable line length' (readableLineLength)
4.... | {
"files": []
} | [
{
"command": "check-setting /home/user/Documents/EditorVault spellcheck true",
"key": "match",
"expected": true,
"description": "Spellcheck enabled"
},
{
"command": "check-setting /home/user/Documents/EditorVault strictLineBreaks true",
"key": "match",
"expected": true,
"descript... | task_generator/tasks/obsidian_configure_editor |
obsidian_custom_hotkeys | obsidian | Open Obsidian with the vault at /home/user/Documents/HotkeyVault. Set up the following custom keyboard shortcuts:
1. Set 'Toggle bold' (editor:toggle-bold) to Ctrl+B
2. Set 'Toggle italic' (editor:toggle-italic) to Ctrl+I
3. Set 'Toggle strikethrough' (editor:toggle-strikethrough) to Ctrl+Shift+X
4. Set 'Toggle highli... | {
"files": []
} | [
{
"command": "check-hotkey /home/user/Documents/HotkeyVault editor:toggle-bold",
"key": "has_hotkey",
"expected": true,
"description": "Bold hotkey set"
},
{
"command": "check-hotkey /home/user/Documents/HotkeyVault editor:toggle-italic",
"key": "has_hotkey",
"expected": true,
"d... | task_generator/tasks/obsidian_custom_hotkeys |
obsidian_daily_notes_week | obsidian | Open the Obsidian vault at /home/user/Documents/DailyVault (the daily-notes core plugin is already enabled). Set up a week of daily notes by creating them manually:
1. Create a folder 'Daily' in the vault root.
2. Create 7 daily notes inside 'Daily/' named '2025-03-10.md', '2025-03-11.md', '2025-03-12.md', '2025-03-13... | {
"files": [
{
"filename": "app.json",
"sandbox_path": "/home/user/Documents/DailyVault/.obsidian/app.json"
},
{
"filename": "core-plugins.json",
"sandbox_path": "/home/user/Documents/DailyVault/.obsidian/core-plugins.json"
}
]
} | [
{
"command": "check-folder-exists /home/user/Documents/DailyVault Daily",
"key": "exists",
"expected": true,
"description": "Daily folder exists"
},
{
"command": "check-note-exists /home/user/Documents/DailyVault 'Daily/2025-03-10'",
"key": "exists",
"expected": true,
"descriptio... | task_generator/tasks/obsidian_daily_notes_week |
obsidian_digital_garden | obsidian | Open Obsidian with the vault at /home/user/Documents/GardenVault. Build a digital garden with full configuration:
1. Enable 'Show frontmatter' (showFrontmatter), enable 'Fold heading' (foldHeading), enable 'Spell check' (spellcheck).
2. Set base font size to 17.
3. Set hotkeys for 'Toggle bold' (editor:toggle-bold) an... | {
"files": []
} | [
{
"command": "check-setting /home/user/Documents/GardenVault showFrontmatter true",
"key": "match",
"expected": true,
"description": "showFrontmatter enabled"
},
{
"command": "check-setting /home/user/Documents/GardenVault foldHeading true",
"key": "match",
"expected": true,
"des... | task_generator/tasks/obsidian_digital_garden |
obsidian_enable_core_plugins | obsidian | Open Obsidian with the vault at /home/user/Documents/PluginVault. In Settings > Core plugins, enable the following core plugins:
1. Graph view (graph)
2. Tag pane (tag-pane)
3. Daily notes (daily-notes)
4. Templates (templates)
5. Outline (outline)
6. Word count (word-count)
7. Backlinks (backlinks)
After configuring... | {
"files": []
} | [
{
"command": "check-plugin-enabled /home/user/Documents/PluginVault graph core",
"key": "enabled",
"expected": true,
"description": "Graph view enabled"
},
{
"command": "check-plugin-enabled /home/user/Documents/PluginVault tag-pane core",
"key": "enabled",
"expected": true,
"des... | task_generator/tasks/obsidian_enable_core_plugins |
obsidian_fleeting_to_permanent | obsidian | Open the Obsidian vault at /home/user/Documents/FleetingVault. The vault has 5 fleeting notes in the root (Fleeting-Habits, Fleeting-Focus, Fleeting-Writing, Fleeting-Learning, Fleeting-Systems), each tagged #fleeting. Convert every fleeting note into a corresponding permanent note and archive the source.
Requirements... | {
"files": [
{
"filename": "app.json",
"sandbox_path": "/home/user/Documents/FleetingVault/.obsidian/app.json"
},
{
"filename": "Fleeting-Habits.md",
"sandbox_path": "/home/user/Documents/FleetingVault/Fleeting-Habits.md"
},
{
"filename": "Fleeting-Focus.md",
"s... | [
{
"command": "check-folder-exists /home/user/Documents/FleetingVault Permanent",
"key": "exists",
"expected": true,
"description": "Permanent folder exists"
},
{
"command": "check-note-has-frontmatter /home/user/Documents/FleetingVault 'Permanent/Perm-Habits' type permanent",
"key": "mat... | task_generator/tasks/obsidian_fleeting_to_permanent |
obsidian_frontmatter_normalize | obsidian | Open the Obsidian vault at /home/user/Documents/NormalizeVault. The vault contains 6 pre-existing notes with inconsistent or missing YAML frontmatter. Rewrite the frontmatter of EACH note so that every note has exactly these three keys at the top: 'type', 'status', 'priority'. Do NOT delete the existing level-1 heading... | {
"files": [
{
"filename": "app.json",
"sandbox_path": "/home/user/Documents/NormalizeVault/.obsidian/app.json"
},
{
"filename": "Task-Launch.md",
"sandbox_path": "/home/user/Documents/NormalizeVault/Task-Launch.md"
},
{
"filename": "Idea-DarkMode.md",
"sandbox_... | [
{
"command": "check-note-has-frontmatter /home/user/Documents/NormalizeVault Task-Launch type task",
"key": "match",
"expected": true,
"description": "Task-Launch type=task"
},
{
"command": "check-note-has-frontmatter /home/user/Documents/NormalizeVault Task-Launch status inprogress",
"k... | task_generator/tasks/obsidian_frontmatter_normalize |
obsidian_full_dev_setup | obsidian | Open Obsidian with the vault at /home/user/Documents/FullDevVault. Perform a complete developer vault setup:
1.Enable 'Vim key bindings' (vimMode), enable 'Show line number' (showLineNumber), enable 'Show frontmatter' (showFrontmatter), disable 'Readable line length' (readableLineLength), enable 'Strict line breaks' (... | {
"files": []
} | [
{
"command": "check-setting /home/user/Documents/FullDevVault vimMode true",
"key": "match",
"expected": true,
"description": "Vim mode enabled"
},
{
"command": "check-setting /home/user/Documents/FullDevVault showLineNumber true",
"key": "match",
"expected": true,
"description":... | task_generator/tasks/obsidian_full_dev_setup |
obsidian_interview_prep | obsidian | Open the Obsidian vault at /home/user/Documents/InterviewPrep. Create a technical interview preparation vault:
1. Create folders: 'Topics', 'Problems', 'Companies'.
2. Create 'Topics/Arrays.md' with frontmatter 'type: topic', 'difficulty: easy-medium' and body with heading 'Arrays', key concepts (two pointer, sliding ... | {
"files": []
} | [
{
"command": "check-folder-exists /home/user/Documents/InterviewPrep Topics",
"key": "exists",
"expected": true,
"description": "Topics folder exists"
},
{
"command": "check-folder-exists /home/user/Documents/InterviewPrep Problems",
"key": "exists",
"expected": true,
"descriptio... | task_generator/tasks/obsidian_interview_prep |
obsidian_language_vocab | obsidian | Open the Obsidian vault at /home/user/Documents/SpanishVault. Create a Spanish vocabulary learning vault:
1. Create folders: 'Vocabulary', 'Grammar', 'Lessons'.
2. Create 'Vocabulary/Greetings.md' with frontmatter 'type: vocabulary', 'level: A1' and body with heading 'Greetings', a vocabulary table with Spanish-Englis... | {
"files": []
} | [
{
"command": "check-folder-exists /home/user/Documents/SpanishVault Vocabulary",
"key": "exists",
"expected": true,
"description": "Vocabulary folder exists"
},
{
"command": "check-folder-exists /home/user/Documents/SpanishVault Grammar",
"key": "exists",
"expected": true,
"descr... | task_generator/tasks/obsidian_language_vocab |
obsidian_music_collection | obsidian | Open the Obsidian vault at /home/user/Documents/MusicVault. Create a music collection:
1. Create folders: 'Artists', 'Albums', 'Playlists'.
2. Create 'Artists/Radiohead.md' with frontmatter 'type: artist', 'genre: alternative rock' and body with heading 'Radiohead', description, links to [[OK Computer]] and [[Kid A]],... | {
"files": []
} | [
{
"command": "check-folder-exists /home/user/Documents/MusicVault Artists",
"key": "exists",
"expected": true,
"description": "Artists folder exists"
},
{
"command": "check-folder-exists /home/user/Documents/MusicVault Albums",
"key": "exists",
"expected": true,
"description": "A... | task_generator/tasks/obsidian_music_collection |
obsidian_personal_crm | obsidian | Open the Obsidian vault at /home/user/Documents/PeopleCRM. Build a personal CRM system:
1. Create folders: 'Contacts', 'Companies', 'Interactions'.
2. Create 'Companies/Acme.md' with frontmatter 'type: company', 'industry: technology', 'founded: 2010' and body containing heading 'Acme Corp', description, a link to [[A... | {
"files": []
} | [
{
"command": "check-folder-exists /home/user/Documents/PeopleCRM Contacts",
"key": "exists",
"expected": true,
"description": "Contacts folder exists"
},
{
"command": "check-folder-exists /home/user/Documents/PeopleCRM Companies",
"key": "exists",
"expected": true,
"description":... | task_generator/tasks/obsidian_personal_crm |
obsidian_project_tracker_kanban | obsidian | Open the Obsidian vault at /home/user/Documents/KanbanVault. Build a project tracker that simulates a kanban board using folders and notes:
1. Create folders 'Backlog', 'InProgress', 'Done' in the vault root.
2. Create these 7 task notes, each with YAML frontmatter exactly as listed, a level-1 heading 'Task T-00X: <ti... | {
"files": [
{
"filename": "app.json",
"sandbox_path": "/home/user/Documents/KanbanVault/.obsidian/app.json"
}
]
} | [
{
"command": "check-folder-exists /home/user/Documents/KanbanVault Backlog",
"key": "exists",
"expected": true,
"description": "Backlog folder exists"
},
{
"command": "check-folder-exists /home/user/Documents/KanbanVault InProgress",
"key": "exists",
"expected": true,
"descriptio... | task_generator/tasks/obsidian_project_tracker_kanban |
obsidian_recipe_vault | obsidian | Open the Obsidian vault at /home/user/Documents/RecipeVault. Create a recipe collection:
1. Create folders: 'Italian', 'Asian', 'Desserts'.
2. Create 'Italian/Carbonara.md' with frontmatter 'cuisine: italian', 'servings: 4', 'time: 30' and body containing heading 'Carbonara', ingredient list, instructions, a link to [... | {
"files": []
} | [
{
"command": "check-folder-exists /home/user/Documents/RecipeVault Italian",
"key": "exists",
"expected": true,
"description": "Italian folder exists"
},
{
"command": "check-folder-exists /home/user/Documents/RecipeVault Asian",
"key": "exists",
"expected": true,
"description": "... | task_generator/tasks/obsidian_recipe_vault |
obsidian_reorganize_tags | obsidian | Open the Obsidian vault at /home/user/Documents/TagVault. The vault contains 6 notes that have no frontmatter or tags. Edit each note to add proper metadata:
1. Edit 'Meeting Notes.md': Add frontmatter with type: meeting and date: 2025-03-01 at the top of the file. Add #meeting #work tags at the end of the note body o... | {
"files": []
} | [
{
"command": "check-note-has-frontmatter /home/user/Documents/TagVault 'Meeting Notes' type meeting",
"key": "match",
"expected": true,
"description": "Meeting Notes has type=meeting"
},
{
"command": "check-note-has-tag /home/user/Documents/TagVault 'Meeting Notes' work",
"key": "has_tag... | task_generator/tasks/obsidian_reorganize_tags |
obsidian_research_papers | obsidian | Open the Obsidian vault at /home/user/Documents/ResearchVault. Build a research paper note system:
1. Create folders 'Papers' and 'Topics'.
2. Inside 'Papers', create these 5 paper notes. Each MUST have YAML frontmatter with the listed keys, a level-1 heading matching the title, a level-2 heading 'Summary', a level-2 ... | {
"files": [
{
"filename": "app.json",
"sandbox_path": "/home/user/Documents/ResearchVault/.obsidian/app.json"
}
]
} | [
{
"command": "check-folder-exists /home/user/Documents/ResearchVault Papers",
"key": "exists",
"expected": true,
"description": "Papers folder exists"
},
{
"command": "check-folder-exists /home/user/Documents/ResearchVault Topics",
"key": "exists",
"expected": true,
"description"... | task_generator/tasks/obsidian_research_papers |
obsidian_toggle_core_features | obsidian | Open Obsidian with the vault at /home/user/Documents/ToggleVault. Make the following changes:
In Settings > Core plugins:
1. Disable 'Graph view' (graph)
2. Disable 'Tag pane' (tag-pane)
3. Enable 'Outgoing links' (outgoing-link)
4. Enable 'Page preview' (page-preview)
5. Disable 'Starred' (starred)
In Settings > Edi... | {
"files": []
} | [
{
"command": "check-plugin-enabled /home/user/Documents/ToggleVault graph core",
"key": "enabled",
"expected": false,
"description": "Graph view disabled"
},
{
"command": "check-plugin-enabled /home/user/Documents/ToggleVault tag-pane core",
"key": "enabled",
"expected": false,
"... | task_generator/tasks/obsidian_toggle_core_features |
obsidian_workout_log | obsidian | Open the Obsidian vault at /home/user/Documents/FitnessVault. Create a workout tracking system:
1. Create folders: 'Workouts', 'Exercises', 'Programs'.
2. Create 'Exercises/Squat.md' with frontmatter 'muscle_group: legs', 'type: strength', 'difficulty: intermediate' and body containing heading 'Squat', description, fo... | {
"files": []
} | [
{
"command": "check-folder-exists /home/user/Documents/FitnessVault Workouts",
"key": "exists",
"expected": true,
"description": "Workouts folder exists"
},
{
"command": "check-folder-exists /home/user/Documents/FitnessVault Exercises",
"key": "exists",
"expected": true,
"descrip... | task_generator/tasks/obsidian_workout_log |
obsidian_zettelkasten_atomic | obsidian | Open the Obsidian vault at /home/user/Documents/ZettelVault. Build a Zettelkasten of 6 atomic, ID-prefixed notes plus an index:
1. Create a folder 'Zettels'.
2. Inside 'Zettels', create these 6 notes. Each one must have YAML frontmatter with 'type: zettel' and 'created: 2025-03-15' at the top, then a level-1 heading m... | {
"files": [
{
"filename": "app.json",
"sandbox_path": "/home/user/Documents/ZettelVault/.obsidian/app.json"
}
]
} | [
{
"command": "check-folder-exists /home/user/Documents/ZettelVault Zettels",
"key": "exists",
"expected": true,
"description": "Zettels folder exists"
},
{
"command": "check-note-has-frontmatter /home/user/Documents/ZettelVault 'Zettels/202503150930 - Atomic Notes' type zettel",
"key": "... | task_generator/tasks/obsidian_zettelkasten_atomic |
renderdoc_add_recent_captures | renderdoc | Edit UI.config: set RecentCaptureFiles to triangle.rdc and draw_call.rdc, set DefaultCaptureSaveDirectory to /home/user/captures. Preserve rdocConfigData=1. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
},
{
"filename": "triangle.rdc",
"sandbox_path": "/home/user/captures/triangle.rdc"
},
{
"filename": "draw_call.rdc",
"sandbox_path": "/home/user/captures/draw... | [
{
"command": "check-rdc-valid /home/user/captures/triangle.rdc",
"key": "valid",
"expected": true,
"description": "triangle.rdc is still a valid capture"
},
{
"command": "check-rdc-valid /home/user/captures/draw_call.rdc",
"key": "valid",
"expected": true,
"description": "draw_ca... | task_generator/tasks/renderdoc_add_recent_captures |
renderdoc_appearance_monospace_profile | renderdoc | Configure monospace profile: UIStyle=Light, Font_GlobalScale=1.25, Font_Family='DejaVu Sans', Font_MonoFamily='DejaVu Sans Mono', Font_PreferMonospaced=true. Preserve rdocConfigData. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-theme Light",
"key": "match",
"expected": true,
"description": "UIStyle Light"
},
{
"command": "check-font-scale 1.25",
"key": "match",
"expected": true,
"description": "Font_GlobalScale 1.25"
},
{
"command": "check-setting Font_Family \"DejaVu Sans\""... | task_generator/tasks/renderdoc_appearance_monospace_profile |
renderdoc_cap_env_chain | renderdoc | Create a preset file /home/user/captures/hardened.cap: executable='/usr/local/games/hardened_game', workingDir='/home/user/games/hardened', commandLine='--vulkan --safe-mode --log-level debug', environment with VK_LOADER_LAYERS_ENABLE, RDOC_DEBUG_LOG, MESA_DEBUG, VULKAN_SDK, options APIValidation=true, CaptureCallstack... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/captures/hardened.cap",
"key": "exists",
"expected": true,
"description": "hardened.cap exists"
},
{
"command": "file-info /home/user/captures/hardened.cap",
"eval": "result.get('size', 0) >= 400",
"description": "hardened.cap is at least 40... | task_generator/tasks/renderdoc_cap_env_chain |
renderdoc_cap_extended_frames | renderdoc | Create a preset file /home/user/captures/extended.cap: executable='/usr/local/games/sweep_target', workingDir='/home/user/sweeps', commandLine='--sweep-frames', environment with RDOC_SWEEP_MODE, options APIValidation=true, CaptureAllCmdLists=true, RefAllResources=true, queueFrameCap=10, numQueuedFrames=30. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-cap-executable /home/user/captures/extended.cap /usr/local/games/sweep_target",
"key": "match",
"expected": true,
"description": "executable"
},
{
"command": "check-cap-working-dir /home/user/captures/extended.cap /home/user/sweeps",
"key": "match",
"expected": tr... | task_generator/tasks/renderdoc_cap_extended_frames |
renderdoc_cap_launcher_hook | renderdoc | Create a preset file /home/user/captures/launcher.cap: executable='/usr/local/games/game_launcher', workingDir='/home/user/games', commandLine='--launch-child engine_process', options HookIntoChildren=true, APIValidation=false, CaptureCallstacks=false, CaptureAllCmdLists=false, DebugOutputMute=true, RefAllResources=fal... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/captures/launcher.cap",
"key": "exists",
"expected": true,
"description": "launcher.cap exists"
},
{
"command": "cap-parse /home/user/captures/launcher.cap",
"eval": "isinstance(result, dict) and 'error' not in result",
"description": "launc... | task_generator/tasks/renderdoc_cap_launcher_hook |
renderdoc_cap_perf_profile | renderdoc | Create a preset file /home/user/captures/perf.cap: executable='/usr/local/games/perf_target', workingDir='/home/user/perf', commandLine='--benchmark --frames 1000', options APIValidation=false, CaptureCallstacks=false, CaptureAllCmdLists=false, DebugOutputMute=true, RefAllResources=false, VerifyBufferAccess=false, Hook... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-cap-executable /home/user/captures/perf.cap /usr/local/games/perf_target",
"key": "match",
"expected": true,
"description": "executable"
},
{
"command": "check-cap-working-dir /home/user/captures/perf.cap /home/user/perf",
"key": "match",
"expected": true,
"de... | task_generator/tasks/renderdoc_cap_perf_profile |
renderdoc_cap_preset_full_v2 | renderdoc | Create a preset file /home/user/captures/triangle_demo.cap: executable='/usr/local/games/triangle_demo', workingDir='/home/user/games', commandLine='--width 1280 --height 720 --vulkan', environment with VK_LOADER_LAYERS_ENABLE and RDOC_DEBUG_LOG, options APIValidation=true, CaptureCallstacks=true, RefAllResources=true,... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/captures/triangle_demo.cap",
"key": "exists",
"expected": true,
"description": "triangle_demo.cap was created on disk"
},
{
"command": "file-info /home/user/captures/triangle_demo.cap",
"eval": "result.get('size', 0) >= 300",
"description": ... | task_generator/tasks/renderdoc_cap_preset_full_v2 |
renderdoc_cap_single_env_layer | renderdoc | Create a preset file /home/user/captures/layer_only.cap: executable='/usr/local/games/vk_only', workingDir='/home/user', commandLine='', environment with VK_INSTANCE_LAYERS, options APIValidation=false, HookIntoChildren=false, autoStart=false. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-cap-executable /home/user/captures/layer_only.cap /usr/local/games/vk_only",
"key": "match",
"expected": true,
"description": "executable"
},
{
"command": "check-cap-env /home/user/captures/layer_only.cap VK_INSTANCE_LAYERS",
"key": "present",
"expected": true,
... | task_generator/tasks/renderdoc_cap_single_env_layer |
renderdoc_cap_triple_api_comparison | renderdoc | Create cross-API capture presets: /home/user/captures/app_vulkan.cap (--api vulkan, APIValidation=true), /home/user/captures/app_d3d12.cap (--api d3d12, APIValidation=true), /home/user/captures/app_opengl.cap (--api opengl, APIValidation=false), executable='/usr/local/games/cross_app', workingDir='/home/user/cross', au... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/captures/app_vulkan.cap",
"key": "exists",
"expected": true,
"description": "vulkan preset exists"
},
{
"command": "check-file-exists /home/user/captures/app_d3d12.cap",
"key": "exists",
"expected": true,
"description": "d3d12 preset exi... | task_generator/tasks/renderdoc_cap_triple_api_comparison |
renderdoc_capture_archive_partition | renderdoc | The directory /home/user/staging contains five capture files that must be sorted into a final archive.
Starting files in /home/user/staging:
frame_a.rdc (valid)
frame_b.rdc (valid)
frame_c.rdc (valid)
frame_bad1.rdc (corrupt — bad magic bytes)
frame_bad2.rdc (corrupt — bad magic bytes)
Reorganize them ... | {
"files": [
{
"filename": "frame_a.rdc",
"sandbox_path": "/home/user/staging/frame_a.rdc"
},
{
"filename": "frame_b.rdc",
"sandbox_path": "/home/user/staging/frame_b.rdc"
},
{
"filename": "frame_c.rdc",
"sandbox_path": "/home/user/staging/frame_c.rdc"
},
... | [
{
"command": "check-capture-count /home/user/archive/verified 3",
"key": "match",
"expected": true,
"description": "verified has 3 .rdc files"
},
{
"command": "check-capture-count /home/user/archive/quarantine 2",
"key": "match",
"expected": true,
"description": "quarantine has 2... | task_generator/tasks/renderdoc_capture_archive_partition |
renderdoc_capture_size_audit | renderdoc | Organize capture files by size: create small/medium/large directories, move tiny.rdc to small/, medium.rdc to medium/, large.rdc to large/, configure UI.config RecentCaptureFiles with large then medium, preserve rdocConfigData. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
},
{
"filename": "tiny.rdc",
"sandbox_path": "/home/user/incoming/tiny.rdc"
},
{
"filename": "medium.rdc",
"sandbox_path": "/home/user/incoming/medium.rdc"
... | [
{
"command": "check-rdc-valid /home/user/sized/small/tiny.rdc",
"key": "valid",
"expected": true,
"description": "tiny in small/ is valid"
},
{
"command": "check-rdc-valid /home/user/sized/medium/medium.rdc",
"key": "valid",
"expected": true,
"description": "medium in medium/ is ... | task_generator/tasks/renderdoc_capture_size_audit |
renderdoc_capture_snapshot_tree | renderdoc | Create directory snapshot structure: organize day1a.rdc and day1b.rdc into /home/user/snapshots/day1, day2a.rdc and day2b.rdc into /home/user/snapshots/day2, day3a.rdc and day3b.rdc into /home/user/snapshots/day3, preserving original files in /home/user/captures. | {
"files": [
{
"filename": "day1a.rdc",
"sandbox_path": "/home/user/captures/day1a.rdc"
},
{
"filename": "day1b.rdc",
"sandbox_path": "/home/user/captures/day1b.rdc"
},
{
"filename": "day2a.rdc",
"sandbox_path": "/home/user/captures/day2a.rdc"
},
{
... | [
{
"command": "check-capture-count /home/user/captures 6",
"key": "match",
"expected": true,
"description": "originals still 6"
},
{
"command": "check-file-exists /home/user/snapshots/day1",
"key": "is_dir",
"expected": true,
"description": "day1 dir"
},
{
"command": "chec... | task_generator/tasks/renderdoc_capture_snapshot_tree |
renderdoc_capture_version_prefix_rename | renderdoc | Version-prefix and organize captures: rename unlabeled .rdc files with v258_ prefix, move to labeled directory, set save directory, clear unlabeled folder. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
},
{
"filename": "shadow.rdc",
"sandbox_path": "/home/user/unlabeled/shadow.rdc"
},
{
"filename": "lighting.rdc",
"sandbox_path": "/home/user/unlabeled/lightin... | [
{
"command": "check-capture-count /home/user/labeled 3",
"key": "match",
"expected": true,
"description": "labeled has 3 captures"
},
{
"command": "check-capture-count /home/user/unlabeled 0",
"key": "match",
"expected": true,
"description": "unlabeled empty"
},
{
"comman... | task_generator/tasks/renderdoc_capture_version_prefix_rename |
renderdoc_cleanup_broken_captures | renderdoc | The directory /home/user/captures contains five .rdc files, two corrupt. Delete broken_x.rdc and broken_y.rdc, create quarantine directory, leave valid captures intact. Final state: 3 valid .rdc files, empty quarantine dir. | {
"files": [
{
"filename": "scene_a.rdc",
"sandbox_path": "/home/user/captures/scene_a.rdc"
},
{
"filename": "scene_b.rdc",
"sandbox_path": "/home/user/captures/scene_b.rdc"
},
{
"filename": "scene_c.rdc",
"sandbox_path": "/home/user/captures/scene_c.rdc"
},... | [
{
"command": "check-capture-count /home/user/captures 3",
"key": "match",
"expected": true,
"description": "3 captures remain"
},
{
"command": "check-rdc-valid /home/user/captures/scene_a.rdc",
"key": "valid",
"expected": true,
"description": "scene_a valid"
},
{
"command... | task_generator/tasks/renderdoc_cleanup_broken_captures |
renderdoc_comments_and_eventbrowser | renderdoc | Open /home/user/.local/share/qrenderdoc/UI.config in a text editor. Set Comments_ShowOnLoad=false, EventBrowser_AddFake=false, EventBrowser_ApplyColors=true. Preserve rdocConfigData marker. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_comments_and_eventbrowser |
renderdoc_deduplicate_captures | renderdoc | Remove byte-for-byte duplicate capture files from /home/user/captures/ keeping only unique files. | {
"files": [
{
"filename": "draw1.rdc",
"sandbox_path": "/home/user/captures/draw1.rdc"
},
{
"filename": "draw2.rdc",
"sandbox_path": "/home/user/captures/draw2.rdc"
},
{
"filename": "draw3.rdc",
"sandbox_path": "/home/user/captures/draw3.rdc"
},
{
... | [
{
"command": "check-capture-count /home/user/captures 3",
"key": "match",
"expected": true,
"description": "3 captures remain"
},
{
"command": "check-file-exists /home/user/captures/draw1.rdc",
"key": "exists",
"expected": true,
"description": "draw1 kept"
},
{
"command":... | task_generator/tasks/renderdoc_deduplicate_captures |
renderdoc_default_save_dir_and_recents | renderdoc | Set up a new RenderDoc capture workspace using the capture files currently located in `/home/user/captures`. Move `alpha_test.rdc`, `beta_test.rdc`, and `gamma_test.rdc` into `/home/user/work/rdoc_captures`, creating any required directories. Update the RenderDoc UI configuration at `/home/user/.local/share/qrenderdoc/... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
},
{
"filename": "alpha_test.rdc",
"sandbox_path": "/home/user/captures/alpha_test.rdc"
},
{
"filename": "beta_test.rdc",
"sandbox_path": "/home/user/captures/... | [
{
"command": "check-file-exists /home/user/work/rdoc_captures",
"key": "is_dir",
"expected": true,
"description": "new workspace dir"
},
{
"command": "check-capture-count /home/user/work/rdoc_captures 3",
"key": "match",
"expected": true,
"description": "3 captures in workspace"
... | task_generator/tasks/renderdoc_default_save_dir_and_recents |
renderdoc_disable_telemetry | renderdoc | Open the RenderDoc config file /home/user/.local/share/qrenderdoc/UI.config (JSON, open it in a text editor such as gedit). Change exactly these three keys to fully disable analytics and update checks:
1. Set "Analytics_TotalOptOut" to true.
2. Set "Analytics_ManualCheck" to false.
3. Set "CheckUpdate_AllowChecks" to ... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_disable_telemetry |
renderdoc_font_scale_up | renderdoc | Open /home/user/.local/share/qrenderdoc/UI.config (it is a JSON document even though the extension is .config) in a text editor. Apply these changes and save:
1. Set "Font_GlobalScale" to the number 1.75 (not a string — a JSON float).
2. Set "Font_PreferMonospaced" to true.
Leave every other key, including the "rdocC... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_font_scale_up |
renderdoc_gap_buffer_viewer_defaults | renderdoc | Configure Buffer Formatter: BufferFormatter_ShowHex=true, BufferFormatter_FixedStride=32, BufferFormatter_ShowByteRange=true. Preserve rdocConfigData. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_gap_buffer_viewer_defaults |
renderdoc_gap_capture_comments_export | renderdoc | Edit UI.config: set Comments_ShowOnLoad=false, Comments_FontSize=11, Comments_Monospaced=true, CommentsPanel_History=[0,1,2]. Preserve rdocConfigData=1. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_gap_capture_comments_export |
renderdoc_gap_capture_settings_cap_file | renderdoc | Create /home/user/captures/game.cap with executable='/usr/local/bin/my_game', a RenderDoc capture-settings file existing at /home/user/captures/game.cap, workingDir='/home/user/games/shipping', options APIValidation=true, CaptureCallstacks=true, VerifyBufferAccess=true. Register in UI.config, preserve rdocConfigData=1. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/captures/game.cap",
"key": "exists",
"expected": true,
"description": "game.cap exists"
},
{
"command": "file-info /home/user/captures/game.cap",
"eval": "result.get('size', 0) >= 150",
"description": "game.cap is at least 150 bytes"
},
... | task_generator/tasks/renderdoc_gap_capture_settings_cap_file |
renderdoc_gap_event_browser_deepdive | renderdoc | Configure Event Browser: EventBrowser_ApplyColors=true, EventBrowser_CollapseMarkers=true, EventBrowser_ShowParameterNames=true, EventBrowser_HideEmpty=true, bookmarks=[42,128,377]. Preserve rdocConfigData. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_gap_event_browser_deepdive |
renderdoc_gap_mesh_output_view | renderdoc | Edit UI.config: set Mesh_CurrentStage='VSOut', Mesh_ShowNormals=true, Mesh_Wireframe=true, Mesh_SolidShadeMode='secondary'. Preserve rdocConfigData=1. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_gap_mesh_output_view |
renderdoc_gap_pipeline_state_export | renderdoc | Create a Python script at /home/user/scripts/export_pipeline.py and configure the Python shell in UI.config. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/scripts/export_pipeline.py",
"key": "exists",
"expected": true,
"description": "Python script exists"
},
{
"command": "file-info /home/user/scripts/export_pipeline.py",
"eval": "result.get('size', 0) >= 200",
"description": "Script is at lea... | task_generator/tasks/renderdoc_gap_pipeline_state_export |
renderdoc_gap_pixel_history_debug | renderdoc | Configure Pixel History debug settings: PixelHistory_ShowFailures=true, PixelHistory_ColorByPrimitive=true, ShaderViewer_AutoStep=true. Preserve rdocConfigData. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_gap_pixel_history_debug |
renderdoc_gap_python_shell_history | renderdoc | Create /home/user/.local/share/qrenderdoc/python_history.txt with >=40 bytes text content. Edit UI.config: set PythonShell_AutoLoad=true, preserve rdocConfigData=1. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/python_history.txt",
"key": "exists",
"expected": true,
"description": "Python history file exists"
},
{
"command": "file-info /home/user/.local/share/qrenderdoc/python_history.txt",
"eval": "result.get('size', 0) >= 40",... | task_generator/tasks/renderdoc_gap_python_shell_history |
renderdoc_gap_remote_target_config | renderdoc | Edit UI.config: set RemoteHosts=build-box.lan:39570 and perf-node-01.internal:39570, AdbScabbardPath=/opt/android-sdk/platform-tools/adb, AlwaysReplayLocally=false. Preserve rdocConfigData=1. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_gap_remote_target_config |
renderdoc_gap_texture_mip_selection | renderdoc | Edit UI.config: set TextureViewer_MipLevel=2, TextureViewer_PerTexYFlip=true, TextureViewer_HexDisplay=true, TextureViewer_ResetRange=false. Preserve rdocConfigData=1. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_gap_texture_mip_selection |
renderdoc_gap_timeline_perf_counters | renderdoc | Configure Timeline: Timeline_ShowDrawcalls=true. Performance counters: active=['GPUDuration','VertexCount','PixelCount','IAPrimitives'], ShowDescription=true. Preserve rdocConfigData. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_gap_timeline_perf_counters |
renderdoc_multi_cap_presets | renderdoc | Create three capture presets: /home/user/captures/vk_game.cap (--renderer vulkan, APIValidation=true, autoStart=false), /home/user/captures/gl_demo.cap (--opengl, HookIntoChildren=true, autoStart=false), /home/user/captures/tool_sim.cap (--batch, CaptureCallstacks=true, autoStart=true). Register all three in UI.config ... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/captures/vk_game.cap",
"key": "exists",
"expected": true,
"description": "vk_game.cap exists"
},
{
"command": "check-file-exists /home/user/captures/gl_demo.cap",
"key": "exists",
"expected": true,
"description": "gl_demo.cap exists"
}... | task_generator/tasks/renderdoc_multi_cap_presets |
renderdoc_organize_capture_folder | renderdoc | Create /home/user/captures/archive/. Move raw_dump.rdc and raw_dump2.rdc from /home/user/captures/ to /home/user/captures/archive/. Rename triangle.rdc to main_frame.rdc in /home/user/captures/. Leave notes.txt untouched. Result: /home/user/captures/ has main_frame.rdc and notes.txt; /home/user/captures/archive/ has ra... | {
"files": [
{
"filename": "raw_dump.rdc",
"sandbox_path": "/home/user/captures/raw_dump.rdc"
},
{
"filename": "raw_dump2.rdc",
"sandbox_path": "/home/user/captures/raw_dump2.rdc"
},
{
"filename": "triangle.rdc",
"sandbox_path": "/home/user/captures/triangle.rdc... | [
{
"command": "check-file-exists /home/user/captures/main_frame.rdc",
"key": "exists",
"expected": true,
"description": "main_frame.rdc exists in /home/user/captures"
},
{
"command": "check-rdc-valid /home/user/captures/main_frame.rdc",
"key": "valid",
"expected": true,
"descripti... | task_generator/tasks/renderdoc_organize_capture_folder |
renderdoc_project_save_dir_and_presets | renderdoc | Create /home/user/projects/titan_captures/. Create titan_client.cap (rdocConfigData=1, settings.executable='/usr/local/bin/titan_client', workingDir='/home/user/projects/titan_captures', commandLine='--client', options={APIValidation:true,CaptureCallstacks:false,HookIntoChildren:false}, autoStart=false) and titan_serve... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/projects/titan_captures",
"key": "is_dir",
"expected": true,
"description": "titan_captures directory exists"
},
{
"command": "check-file-exists /home/user/projects/titan_captures/titan_client.cap",
"key": "exists",
"expected": true,
"de... | task_generator/tasks/renderdoc_project_save_dir_and_presets |
renderdoc_recent_capture_history_promote | renderdoc | The UI configuration at /home/user/.local/share/qrenderdoc/UI.config currently has "RecentCaptureFiles" set to a list containing four entries (old_a through old_d under /home/user/captures).
A new capture at /home/user/captures/promoted.rdc has just been produced. Update the recent-captures history so that:
1. "Recen... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
},
{
"filename": "old_a.rdc",
"sandbox_path": "/home/user/captures/old_a.rdc"
},
{
"filename": "old_b.rdc",
"sandbox_path": "/home/user/captures/old_b.rdc"
... | [
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "marker preserved"
},
{
"command": "check-rdc-valid /home/user/captures/promoted.rdc",
"key": "valid",
"expected": true,
"description": "promoted.rdc valid"
},
{
"command": "ch... | task_generator/tasks/renderdoc_recent_capture_history_promote |
renderdoc_rename_project_captures | renderdoc | The directory /home/user/captures contains five capture files with ad-hoc per-developer names:
john_ok.rdc
unnamed.rdc
snapshot_final2.rdc
backup_old.rdc
wip_trial.rdc
Rename them to the canonical project convention (frame_001.rdc through frame_005.rdc), using this exact mapping:
john_ok.rdc -> f... | {
"files": [
{
"filename": "john_ok.rdc",
"sandbox_path": "/home/user/captures/john_ok.rdc"
},
{
"filename": "unnamed.rdc",
"sandbox_path": "/home/user/captures/unnamed.rdc"
},
{
"filename": "snapshot_final2.rdc",
"sandbox_path": "/home/user/captures/snapshot_fi... | [
{
"command": "check-capture-count /home/user/captures 5",
"key": "match",
"expected": true,
"description": "5 captures total"
},
{
"command": "check-file-exists /home/user/captures/frame_001.rdc",
"key": "exists",
"expected": true,
"description": "frame_001 exists"
},
{
"... | task_generator/tasks/renderdoc_rename_project_captures |
renderdoc_security_hardening | renderdoc | Harden the RenderDoc configuration for a shared multi-user workstation. The UI configuration file is at /home/user/.local/share/qrenderdoc/UI.config. It already contains some entries in RecentCaptureFiles and RecentCaptureSettings. Apply all of the following changes in one save:
1. Set "Analytics_TotalOptOut" to true.... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "marker preserved"
},
{
"command": "check-setting Analytics_TotalOptOut true",
"key": "match",
"expected": true,
"description": "opt out"
},
{
"command": "check-setting Analyti... | task_generator/tasks/renderdoc_security_hardening |
renderdoc_set_dark_theme | renderdoc | The RenderDoc UI configuration file is at /home/user/.local/share/qrenderdoc/UI.config. It is a plain JSON document (despite the .config extension). Open it in a text editor (for example with `gedit /home/user/.local/share/qrenderdoc/UI.config`) and make exactly these two changes, leaving every other key unchanged:
1.... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_set_dark_theme |
renderdoc_shader_debug_profile | renderdoc | Edit UI.config: set UIStyle='Dark', Font_GlobalScale=1.4, Font_PreferMonospaced=true, TextureViewer_ResetRange=true, TextureViewer_PerTexSettings=true, EventBrowser_ApplyColors=true, Comments_ShowOnLoad=false. Preserve rdocConfigData=1. | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
}
]
} | [
{
"command": "check-file-exists /home/user/.local/share/qrenderdoc/UI.config",
"key": "exists",
"expected": true,
"description": "UI.config still exists"
},
{
"command": "check-setting rdocConfigData 1",
"key": "match",
"expected": true,
"description": "rdocConfigData marker pres... | task_generator/tasks/renderdoc_shader_debug_profile |
renderdoc_triage_by_version | renderdoc | Create /home/user/captures/current/ and /home/user/captures/legacy/. Move alpha.rdc, beta.rdc, gamma.rdc (version 0x102) to current/. Move delta.rdc, epsilon.rdc, zeta.rdc (version 0x101) to legacy/. Delete bogus.rdc. Edit UI.config RecentCaptureFiles to ['/home/user/captures/current/alpha.rdc','/home/user/captures/cur... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
},
{
"filename": "alpha.rdc",
"sandbox_path": "/home/user/captures/alpha.rdc"
},
{
"filename": "beta.rdc",
"sandbox_path": "/home/user/captures/beta.rdc"
}... | [
{
"command": "check-file-exists /home/user/captures/current",
"key": "is_dir",
"expected": true,
"description": "current/ subdir exists"
},
{
"command": "check-file-exists /home/user/captures/legacy",
"key": "is_dir",
"expected": true,
"description": "legacy/ subdir exists"
},
... | task_generator/tasks/renderdoc_triage_by_version |
renderdoc_verify_capture_integrity | renderdoc | The directory /home/user/captures contains two files:
good_frame.rdc -- a real RenderDoc capture
bad_frame.rdc -- a corrupted file whose first bytes are NOT the RenderDoc magic
Do the following:
1. Rename /home/user/captures/good_frame.rdc to /home/user/captures/verified.rdc (keep its contents byte-identical)... | {
"files": [
{
"filename": "good_frame.rdc",
"sandbox_path": "/home/user/captures/good_frame.rdc"
},
{
"filename": "bad_frame.rdc",
"sandbox_path": "/home/user/captures/bad_frame.rdc"
}
]
} | [
{
"command": "check-file-exists /home/user/captures/verified.rdc",
"key": "exists",
"expected": true,
"description": "verified.rdc exists"
},
{
"command": "check-rdc-valid /home/user/captures/verified.rdc",
"key": "valid",
"expected": true,
"description": "verified.rdc is a valid... | task_generator/tasks/renderdoc_verify_capture_integrity |
renderdoc_workspace_bootstrap | renderdoc | Create /home/user/rdoc_workspace/, /home/user/rdoc_workspace/captures/, /home/user/rdoc_workspace/settings/. Move project_frame1.rdc and project_frame2.rdc from /home/user/staging/ to /home/user/rdoc_workspace/captures/. Edit UI.config: UIStyle='Dark', Font_GlobalScale=1.3, TextureViewer_ResetRange=true, DefaultCapture... | {
"files": [
{
"filename": "UI.config",
"sandbox_path": "/home/user/.local/share/qrenderdoc/UI.config"
},
{
"filename": "project_frame1.rdc",
"sandbox_path": "/home/user/staging/project_frame1.rdc"
},
{
"filename": "project_frame2.rdc",
"sandbox_path": "/home/us... | [
{
"command": "check-file-exists /home/user/rdoc_workspace",
"key": "is_dir",
"expected": true,
"description": "workspace dir"
},
{
"command": "check-file-exists /home/user/rdoc_workspace/captures",
"key": "is_dir",
"expected": true,
"description": "captures subdir"
},
{
"... | task_generator/tasks/renderdoc_workspace_bootstrap |
shotcut_720p_project_single_clip | shotcut | A Shotcut project exists at /home/user/Documents/travel.mlt with 1280x720 resolution and 25 fps. A video file beach.mp4 is located at /home/user/Videos/beach.mp4.
Actions required:
1. Add beach.mp4 to the project.
2. Place beach.mp4 on the V1 timeline track as the only clip.
3. Save the project.
The saved travel.mlt ... | {
"files": [
{
"filename": "travel.mlt",
"sandbox_path": "/home/user/Documents/travel.mlt"
},
{
"filename": "beach.mp4",
"sandbox_path": "/home/user/Videos/beach.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Documents/travel.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-resolution /home/user/Documents/travel.mlt 1280 720",
"key": "match",
"expected": true,
"description": "Project resolut... | task_generator/tasks/shotcut_720p_project_single_clip |
shotcut_add_two_clips_hd | shotcut | A Shotcut project exists at /home/user/Documents/my_project.mlt with 1920x1080 resolution and 30 fps. Two video files exist: clip_a.mp4 and clip_b.mp4 in /home/user/Videos/.
Actions required:
1. Add clip_a.mp4 to the project.
2. Add clip_b.mp4 to the project.
3. Place both clips on the V1 timeline track sequentially, ... | {
"files": [
{
"filename": "my_project.mlt",
"sandbox_path": "/home/user/Documents/my_project.mlt"
},
{
"filename": "clip_a.mp4",
"sandbox_path": "/home/user/Videos/clip_a.mp4"
},
{
"filename": "clip_b.mp4",
"sandbox_path": "/home/user/Videos/clip_b.mp4"
}
... | [
{
"command": "check-file-exists /home/user/Documents/my_project.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists at /home/user/Documents/my_project.mlt"
},
{
"command": "check-resolution /home/user/Documents/my_project.mlt 1920 1080",
"key": "match",
"expe... | task_generator/tasks/shotcut_add_two_clips_hd |
shotcut_apply_brightness_filter | shotcut | Shotcut is already open with /home/user/Documents/filter_project.mlt (1920x1080, 30 fps). The project already contains one clip on the V1 timeline track referencing /home/user/Videos/source.mp4.
Steps:
1. Click the clip on the V1 timeline so it is selected.
2. Open the Filters panel (top toolbar or via the Filters men... | {
"files": [
{
"filename": "filter_project.mlt",
"sandbox_path": "/home/user/Documents/filter_project.mlt"
},
{
"filename": "source.mp4",
"sandbox_path": "/home/user/Videos/source.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Documents/filter_project.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-resolution /home/user/Documents/filter_project.mlt 1920 1080",
"key": "match",
"expected": true,
"description":... | task_generator/tasks/shotcut_apply_brightness_filter |
shotcut_default_profile_atsc | shotcut | Shotcut is open with a placeholder project /home/user/Documents/empty.mlt. Your task is to set Shotcut's default Video Mode to 'HD 1080p 30 fps'.
Steps:
1. Open the Settings menu in the top menu bar.
2. Hover the 'Video Mode' submenu.
3. Under 'ATSC' (or the default HD section), click the 'HD 1080p 30 fps' video mode ... | {
"files": [
{
"filename": "empty.mlt",
"sandbox_path": "/home/user/Documents/empty.mlt"
}
]
} | [
{
"command": "check-file-exists /home/user/.config/Meltytech/Shotcut.conf",
"key": "exists",
"expected": true,
"description": "Shotcut configuration file exists"
},
{
"command": "check-config-value Settings defaultProfile atsc_1080p_30",
"key": "match",
"expected": true,
"descrip... | task_generator/tasks/shotcut_default_profile_atsc |
shotcut_export_720p_resolution | shotcut | A Shotcut project exists at /home/user/Documents/hd_export.mlt with 1280x720 resolution and 25 fps. The V1 timeline track contains one clip referencing /home/user/Videos/master.mp4.
Export the timeline to an MP4 file:
1. Use the default H.264 export preset.
2. The export must inherit the project's 1280x720 resolution ... | {
"files": [
{
"filename": "hd_export.mlt",
"sandbox_path": "/home/user/Documents/hd_export.mlt"
},
{
"filename": "master.mp4",
"sandbox_path": "/home/user/Videos/master.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Videos/output_720p.mp4",
"key": "exists",
"expected": true,
"description": "Exported file exists at /home/user/Videos/output_720p.mp4"
},
{
"command": "check-export-output /home/user/Videos/output_720p.mp4",
"key": "valid",
"expected": true,... | task_generator/tasks/shotcut_export_720p_resolution |
shotcut_export_small_mp4 | shotcut | A Shotcut project exists at /home/user/Documents/export_me.mlt with 640x360 resolution and 30 fps. The V1 timeline track contains one clip referencing /home/user/Videos/source.mp4.
Export the timeline to an MP4 file:
1. Use the default H.264 export preset.
2. The export must inherit the project's 640x360 resolution an... | {
"files": [
{
"filename": "export_me.mlt",
"sandbox_path": "/home/user/Documents/export_me.mlt"
},
{
"filename": "source.mp4",
"sandbox_path": "/home/user/Videos/source.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Videos/final.mp4",
"key": "exists",
"expected": true,
"description": "Exported final.mp4 exists at /home/user/Videos/final.mp4"
},
{
"command": "check-export-output /home/user/Videos/final.mp4",
"key": "valid",
"expected": true,
"descrip... | task_generator/tasks/shotcut_export_small_mp4 |
shotcut_multi_track_audio_video | shotcut | A Shotcut project is open at /home/user/Documents/multi_track.mlt (1920x1080, 30 fps). Three source files are available: /home/user/Videos/video1.mp4, /home/user/Videos/video2.mp4 and /home/user/Music/audio1.mp3.
Actions required:
1. Add video1.mp4, video2.mp4 and audio1.mp3 to the project.
2. Place video1.mp4 on the ... | {
"files": [
{
"filename": "multi_track.mlt",
"sandbox_path": "/home/user/Documents/multi_track.mlt"
},
{
"filename": "video1.mp4",
"sandbox_path": "/home/user/Videos/video1.mp4"
},
{
"filename": "video2.mp4",
"sandbox_path": "/home/user/Videos/video2.mp4"
}... | [
{
"command": "check-file-exists /home/user/Documents/multi_track.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-resolution /home/user/Documents/multi_track.mlt 1920 1080",
"key": "match",
"expected": true,
"description": "Proj... | task_generator/tasks/shotcut_multi_track_audio_video |
shotcut_set_theme_dark | shotcut | Shotcut is open with a placeholder project /home/user/Documents/empty.mlt. Your task is to change the application theme to Dark.
Steps:
1. Open the Settings menu in the top menu bar.
2. Hover the 'Theme' submenu.
3. Click 'Dark' (if it is not already selected).
4. Give Shotcut a moment, then press Ctrl+S on the projec... | {
"files": [
{
"filename": "empty.mlt",
"sandbox_path": "/home/user/Documents/empty.mlt"
}
]
} | [
{
"command": "check-file-exists /home/user/.config/Meltytech/Shotcut.conf",
"key": "exists",
"expected": true,
"description": "Shotcut configuration file exists"
},
{
"command": "check-config-value General theme dark",
"key": "match",
"expected": true,
"description": "General.the... | task_generator/tasks/shotcut_set_theme_dark |
shotcut_three_clip_sequence | shotcut | Shotcut is already open with the empty project /home/user/Documents/sequence.mlt (1920x1080, 30 fps). Three short video files exist at /home/user/Videos/shot1.mp4, /home/user/Videos/shot2.mp4 and /home/user/Videos/shot3.mp4.
Actions required:
1. Add shot1.mp4, shot2.mp4 and shot3.mp4 to the project.
2. Place them on t... | {
"files": [
{
"filename": "sequence.mlt",
"sandbox_path": "/home/user/Documents/sequence.mlt"
},
{
"filename": "shot1.mp4",
"sandbox_path": "/home/user/Videos/shot1.mp4"
},
{
"filename": "shot2.mp4",
"sandbox_path": "/home/user/Videos/shot2.mp4"
},
{
... | [
{
"command": "check-file-exists /home/user/Documents/sequence.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-resolution /home/user/Documents/sequence.mlt 1920 1080",
"key": "match",
"expected": true,
"description": "Project re... | task_generator/tasks/shotcut_three_clip_sequence |
shotcut_two_clips_with_luma_transition | shotcut | Shotcut is already open with /home/user/Documents/transition_project.mlt (1920x1080, 30 fps). Two short video files exist at /home/user/Videos/alpha.mp4 and /home/user/Videos/beta.mp4.
Actions required:
1. Add alpha.mp4 and beta.mp4 to the project.
2. Place alpha.mp4 on the V1 timeline track at the start (time 00:00:0... | {
"files": [
{
"filename": "transition_project.mlt",
"sandbox_path": "/home/user/Documents/transition_project.mlt"
},
{
"filename": "alpha.mp4",
"sandbox_path": "/home/user/Videos/alpha.mp4"
},
{
"filename": "beta.mp4",
"sandbox_path": "/home/user/Videos/beta.mp... | [
{
"command": "check-file-exists /home/user/Documents/transition_project.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-clip-exists /home/user/Documents/transition_project.mlt alpha.mp4",
"key": "exists",
"expected": true,
"des... | task_generator/tasks/shotcut_two_clips_with_luma_transition |
shotcut_v2_crop_filter_on_clip | shotcut | Shotcut is already open with /home/user/Documents/crop_me.mlt (1920x1080 30 fps). The project already contains one clip on the V1 timeline track referencing /home/user/Videos/wide_shot.mp4.
Actions required:
1. Add a crop filter to the clip on V1.
2. Use the default crop parameters (no changes to left/right/top/bottom... | {
"files": [
{
"filename": "crop_me.mlt",
"sandbox_path": "/home/user/Documents/crop_me.mlt"
},
{
"filename": "wide_shot.mp4",
"sandbox_path": "/home/user/Videos/wide_shot.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Documents/crop_me.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-resolution /home/user/Documents/crop_me.mlt 1920 1080",
"key": "match",
"expected": true,
"description": "Project reso... | task_generator/tasks/shotcut_v2_crop_filter_on_clip |
shotcut_v2_default_profile_dv_pal | shotcut | Shotcut is open with a placeholder project /home/user/Documents/pal_prefs.mlt. Your task is to set Shotcut's default Video Mode to 'PAL' (dv_pal).
Steps:
1. Open the Settings menu in the top menu bar.
2. Hover the 'Video Mode' submenu.
3. Under the 'SD' or 'Non-Broadcast' section, click the 'PAL' video mode so it beco... | {
"files": [
{
"filename": "pal_prefs.mlt",
"sandbox_path": "/home/user/Documents/pal_prefs.mlt"
}
]
} | [
{
"command": "check-file-exists /home/user/.config/Meltytech/Shotcut.conf",
"key": "exists",
"expected": true,
"description": "Shotcut configuration file exists"
},
{
"command": "check-config-value Settings defaultProfile dv_pal",
"key": "match",
"expected": true,
"description": ... | task_generator/tasks/shotcut_v2_default_profile_dv_pal |
shotcut_v2_default_profile_uhd_2160p_30 | shotcut | Shotcut is open with a placeholder project /home/user/Documents/prefs_uhd.mlt. Your task is to set Shotcut's default Video Mode to 'UHD 2160p 30 fps'.
Steps:
1. Open the Settings menu in the top menu bar.
2. Hover the 'Video Mode' submenu.
3. Under the 'UHD' section, click the 'UHD 2160p 30 fps' video mode so it becom... | {
"files": [
{
"filename": "prefs_uhd.mlt",
"sandbox_path": "/home/user/Documents/prefs_uhd.mlt"
}
]
} | [
{
"command": "check-file-exists /home/user/.config/Meltytech/Shotcut.conf",
"key": "exists",
"expected": true,
"description": "Shotcut configuration file exists"
},
{
"command": "check-config-value Settings defaultProfile uhd_2160p_30",
"key": "match",
"expected": true,
"descript... | task_generator/tasks/shotcut_v2_default_profile_uhd_2160p_30 |
shotcut_v2_export_audio_aac_mp4 | shotcut | Shotcut is already open with /home/user/Documents/aac_export.mlt — a 1280x720 30 fps project that already contains one clip on the V1 timeline track referencing /home/user/Videos/with_audio.mp4 (which has both video and audio).
Export the timeline to /home/user/Videos/audio_out.mp4 with H.264 video codec and AAC audio... | {
"files": [
{
"filename": "aac_export.mlt",
"sandbox_path": "/home/user/Documents/aac_export.mlt"
},
{
"filename": "with_audio.mp4",
"sandbox_path": "/home/user/Videos/with_audio.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Videos/audio_out.mp4",
"key": "exists",
"expected": true,
"description": "Exported audio_out.mp4 exists"
},
{
"command": "check-export-output /home/user/Videos/audio_out.mp4",
"key": "valid",
"expected": true,
"description": "Exported fi... | task_generator/tasks/shotcut_v2_export_audio_aac_mp4 |
shotcut_v2_five_clip_sequence | shotcut | Shotcut is already open with /home/user/Documents/montage.mlt (1920x1080 30 fps, empty timeline). Five source videos exist: /home/user/Videos/clip1.mp4, /home/user/Videos/clip2.mp4, /home/user/Videos/clip3.mp4, /home/user/Videos/clip4.mp4, and /home/user/Videos/clip5.mp4.
Import all five clips and arrange them on the ... | {
"files": [
{
"filename": "montage.mlt",
"sandbox_path": "/home/user/Documents/montage.mlt"
},
{
"filename": "clip1.mp4",
"sandbox_path": "/home/user/Videos/clip1.mp4"
},
{
"filename": "clip2.mp4",
"sandbox_path": "/home/user/Videos/clip2.mp4"
},
{
... | [
{
"command": "check-file-exists /home/user/Documents/montage.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-resolution /home/user/Documents/montage.mlt 1920 1080",
"key": "match",
"expected": true,
"description": "Project reso... | task_generator/tasks/shotcut_v2_five_clip_sequence |
shotcut_v2_four_track_layered_composite | shotcut | Shotcut is already open with /home/user/Documents/layered.mlt (1920x1080 30 fps, empty timeline). Four source files exist: /home/user/Videos/bg.mp4, /home/user/Videos/overlay.mp4, /home/user/Music/music.mp3, and /home/user/Music/voiceover.mp3.
Import all four media files. Place bg.mp4 on video track V1, overlay.mp4 on... | {
"files": [
{
"filename": "layered.mlt",
"sandbox_path": "/home/user/Documents/layered.mlt"
},
{
"filename": "bg.mp4",
"sandbox_path": "/home/user/Videos/bg.mp4"
},
{
"filename": "overlay.mp4",
"sandbox_path": "/home/user/Videos/overlay.mp4"
},
{
... | [
{
"command": "check-file-exists /home/user/Documents/layered.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-resolution /home/user/Documents/layered.mlt 1920 1080",
"key": "match",
"expected": true,
"description": "Project reso... | task_generator/tasks/shotcut_v2_four_track_layered_composite |
shotcut_v2_transition_and_fadein_filter | shotcut | Shotcut is already open with /home/user/Documents/combo.mlt (1920x1080 30 fps, empty timeline). Two source videos exist: /home/user/Videos/intro.mp4 and /home/user/Videos/outro.mp4.
Import both clips and place them on the V1 timeline track so outro.mp4 overlaps the end of intro.mp4 by approximately half a second (this... | {
"files": [
{
"filename": "combo.mlt",
"sandbox_path": "/home/user/Documents/combo.mlt"
},
{
"filename": "intro.mp4",
"sandbox_path": "/home/user/Videos/intro.mp4"
},
{
"filename": "outro.mp4",
"sandbox_path": "/home/user/Videos/outro.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Documents/combo.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-clip-exists /home/user/Documents/combo.mlt intro.mp4",
"key": "exists",
"expected": true,
"description": "intro.mp4 is r... | task_generator/tasks/shotcut_v2_transition_and_fadein_filter |
shotcut_v2_two_filters_sepia_contrast | shotcut | Shotcut is already open with /home/user/Documents/color_grade.mlt (1920x1080 30 fps). The project already contains one clip on the V1 timeline track referencing /home/user/Videos/landscape.mp4.
Add a 'Sepia Tone' filter and a 'Contrast' filter to the landscape.mp4 clip, both with default parameters. Save the project. | {
"files": [
{
"filename": "color_grade.mlt",
"sandbox_path": "/home/user/Documents/color_grade.mlt"
},
{
"filename": "landscape.mp4",
"sandbox_path": "/home/user/Videos/landscape.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Documents/color_grade.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-resolution /home/user/Documents/color_grade.mlt 1920 1080",
"key": "match",
"expected": true,
"description": "Proj... | task_generator/tasks/shotcut_v2_two_filters_sepia_contrast |
shotcut_v2_uhd_4k_project | shotcut | Shotcut is already open with /home/user/Documents/uhd_project.mlt (currently a 1920x1080 30 fps project). A source video exists at /home/user/Videos/drone.mp4.
Steps:
1. Open Settings > Video Mode > Custom > Add... and create a new custom video mode with resolution 3840x2160, frame rate 30 fps, aspect ratio 16:9, prog... | {
"files": [
{
"filename": "uhd_project.mlt",
"sandbox_path": "/home/user/Documents/uhd_project.mlt"
},
{
"filename": "drone.mp4",
"sandbox_path": "/home/user/Videos/drone.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Documents/uhd_project.mlt",
"key": "exists",
"expected": true,
"description": "Project file exists"
},
{
"command": "check-resolution /home/user/Documents/uhd_project.mlt 3840 2160",
"key": "match",
"expected": true,
"description": "Proj... | task_generator/tasks/shotcut_v2_uhd_4k_project |
shotcut_v2_vertical_9x16_export | shotcut | A Shotcut project exists at /home/user/Documents/reels.mlt with vertical 1080x1920 resolution and 30 fps. The V1 timeline track contains one clip referencing /home/user/Videos/reels_source.mp4.
Export the timeline to a vertical MP4 file:
1. Use the default H.264 export preset.
2. The export must inherit the project's ... | {
"files": [
{
"filename": "reels.mlt",
"sandbox_path": "/home/user/Documents/reels.mlt"
},
{
"filename": "reels_source.mp4",
"sandbox_path": "/home/user/Videos/reels_source.mp4"
}
]
} | [
{
"command": "check-file-exists /home/user/Videos/reels_final.mp4",
"key": "exists",
"expected": true,
"description": "Exported file exists"
},
{
"command": "check-export-output /home/user/Videos/reels_final.mp4",
"key": "valid",
"expected": true,
"description": "Exported file is... | task_generator/tasks/shotcut_v2_vertical_9x16_export |
writer_course_syllabus_formatting | libreoffice_writer | Open the file /home/user/Documents/syllabus_draft.odt in LibreOffice Writer. The document contains a plain-text course syllabus with all paragraphs in Default Paragraph Style and no formatting.
Perform the following formatting and editing tasks:
1. Set the first paragraph 'Introduction to Computer Science - CS101' to... | {
"files": [
{
"filename": "syllabus_draft.odt",
"sandbox_path": "/home/user/Documents/syllabus_draft.odt"
}
]
} | [
{
"command": "check-paragraph-style 0 \"Heading 1\"",
"key": "match",
"expected": true,
"description": "First paragraph has Heading 1 style"
},
{
"command": "check-paragraph-formatted 0 true",
"key": "match",
"expected": true,
"description": "First paragraph is bold"
},
{
... | task_generator/tasks/writer_course_syllabus_formatting |
writer_edit_existing_table_data | libreoffice_writer | Open the file /home/user/Documents/sales_report.odt in LibreOffice Writer. The document has a heading 'Monthly Sales Report' in Heading 1 style and contains a table named 'Table1' with 5 rows and 4 columns of sales data. Some values are incorrect and need correction.
Perform the following edits:
1. In Table1, change ... | {
"files": [
{
"filename": "sales_report.odt",
"sandbox_path": "/home/user/Documents/sales_report.odt"
}
]
} | [
{
"command": "check-table-cell Table1 1 2 175",
"key": "match",
"expected": true,
"description": "Table1 (1,2) is '175'"
},
{
"command": "check-table-cell Table1 2 2 210",
"key": "match",
"expected": true,
"description": "Table1 (2,2) is '210'"
},
{
"command": "check-tabl... | task_generator/tasks/writer_edit_existing_table_data |
writer_employee_directory_table | libreoffice_writer | Create a new document in LibreOffice Writer and build an employee directory.
1. Type 'Employee Directory' as the first paragraph and set it to Heading 1 style.
2. Type 'Last updated: March 2026' as the second paragraph (keep it in Default Paragraph Style).
3. Insert a table with 6 rows and 4 columns (Table > Insert Ta... | {
"files": [],
"reload_files": [
"/home/user/Documents/employee_directory.odt"
]
} | [
{
"command": "check-heading-exists \"Employee Directory\" 1",
"key": "exists",
"expected": true,
"description": "'Employee Directory' exists as Heading 1"
},
{
"command": "check-text-contains \"Last updated: March 2026\"",
"key": "contains",
"expected": true,
"description": "Docu... | task_generator/tasks/writer_employee_directory_table |
writer_find_replace_cleanup | libreoffice_writer | Open the file /home/user/Documents/draft_article.odt in LibreOffice Writer. The document is a draft article about AI written with British English spellings that need to be converted to American English. It also has no heading structure.
Perform the following:
1. Use Find & Replace (Ctrl+H) to replace all occurrences ... | {
"files": [
{
"filename": "draft_article.odt",
"sandbox_path": "/home/user/Documents/draft_article.odt"
}
]
} | [
{
"command": "search colour",
"eval": "result.get('count', 1) == 0",
"description": "No occurrences of 'colour' remain"
},
{
"command": "search color",
"eval": "result.get('count', 0) == 5",
"description": "5 occurrences of 'color' in document"
},
{
"command": "search analyse",
... | task_generator/tasks/writer_find_replace_cleanup |
writer_landscape_page_with_bookmarks | libreoffice_writer | Open the file /home/user/Documents/reference_guide.odt in LibreOffice Writer. The document contains a reference guide with sections but no headings, no page layout changes, and all paragraphs in Default Paragraph Style.
Perform the following formatting and layout tasks:
1. Change the page orientation to Landscape (Fo... | {
"files": [
{
"filename": "reference_guide.odt",
"sandbox_path": "/home/user/Documents/reference_guide.odt"
}
]
} | [
{
"command": "page-style",
"eval": "result.get('orientation', '') == 'landscape'",
"description": "Page orientation is landscape"
},
{
"command": "check-paragraph-style 0 \"Heading 1\"",
"key": "match",
"expected": true,
"description": "First paragraph has Heading 1 style"
},
{
... | task_generator/tasks/writer_landscape_page_with_bookmarks |
writer_meeting_minutes_formatting | libreoffice_writer | Open the file /home/user/Documents/meeting_notes.odt in LibreOffice Writer. It contains raw unformatted meeting minutes with all paragraphs in Default Paragraph Style.
Perform the following formatting and editing tasks:
1. Set the first paragraph 'Project Alpha Meeting Minutes' to Heading 1 style and make it bold.
2.... | {
"files": [
{
"filename": "meeting_notes.odt",
"sandbox_path": "/home/user/Documents/meeting_notes.odt"
}
]
} | [
{
"command": "check-paragraph-style 0 \"Heading 1\"",
"key": "match",
"expected": true,
"description": "First paragraph has Heading 1 style"
},
{
"command": "check-paragraph-formatted 0 true",
"key": "match",
"expected": true,
"description": "First paragraph is bold"
},
{
... | task_generator/tasks/writer_meeting_minutes_formatting |
writer_multi_table_inventory | libreoffice_writer | Create a new document in LibreOffice Writer and build a warehouse inventory report with multiple tables.
1. Type 'Warehouse Inventory Report' as the first paragraph and set it to Heading 1 style.
2. Type 'Electronics' as the next paragraph and set it to Heading 2 style.
3. Insert a table with 4 rows and 3 columns (Tab... | {
"files": [],
"reload_files": [
"/home/user/Documents/inventory_report.odt"
]
} | [
{
"command": "check-heading-exists \"Warehouse Inventory Report\" 1",
"key": "exists",
"expected": true,
"description": "'Warehouse Inventory Report' is Heading 1"
},
{
"command": "check-heading-exists \"Electronics\" 2",
"key": "exists",
"expected": true,
"description": "'Electr... | task_generator/tasks/writer_multi_table_inventory |
writer_product_catalog_tables | libreoffice_writer | Open the file /home/user/Documents/catalog_data.odt in LibreOffice Writer. The document contains product descriptions with no tables and no formatting (all paragraphs in Default Paragraph Style).
Perform the following formatting and table insertion tasks:
1. Set the first paragraph 'Spring 2026 Product Catalog' to He... | {
"files": [
{
"filename": "catalog_data.odt",
"sandbox_path": "/home/user/Documents/catalog_data.odt"
}
]
} | [
{
"command": "check-heading-exists \"Spring 2026 Product Catalog\" 1",
"key": "exists",
"expected": true,
"description": "'Spring 2026 Product Catalog' is Heading 1"
},
{
"command": "check-heading-exists \"Outdoor Collection\" 2",
"key": "exists",
"expected": true,
"description":... | task_generator/tasks/writer_product_catalog_tables |
writer_project_status_document | libreoffice_writer | Open the file /home/user/Documents/project_data.odt in LibreOffice Writer. The document contains plain text about a project with no formatting or structure. Add structure, a table, and headers/footers as follows:
1. Set the first paragraph 'Project Phoenix Status Report' to Heading 1 style.
2. Set the paragraphs 'Time... | {
"files": [
{
"filename": "project_data.odt",
"sandbox_path": "/home/user/Documents/project_data.odt"
}
]
} | [
{
"command": "check-heading-exists \"Project Phoenix Status Report\" 1",
"key": "exists",
"expected": true,
"description": "'Project Phoenix Status Report' is Heading 1"
},
{
"command": "check-heading-exists \"Timeline\" 2",
"key": "exists",
"expected": true,
"description": "'Tim... | task_generator/tasks/writer_project_status_document |
writer_report_restructure | libreoffice_writer | Open the file /home/user/Documents/quarterly_report.odt in LibreOffice Writer. The document contains a quarterly report with all paragraphs in Default Paragraph Style (no headings, no formatting). Restructure and format it as follows:
1. Set the first paragraph 'Q4 2025 Quarterly Report' to Heading 1 style.
2. Set the... | {
"files": [
{
"filename": "quarterly_report.odt",
"sandbox_path": "/home/user/Documents/quarterly_report.odt"
}
]
} | [
{
"command": "check-heading-exists \"Q4 2025 Quarterly Report\" 1",
"key": "exists",
"expected": true,
"description": "'Q4 2025 Quarterly Report' is Heading 1"
},
{
"command": "check-heading-exists \"Revenue Overview\" 2",
"key": "exists",
"expected": true,
"description": "'Reven... | task_generator/tasks/writer_report_restructure |
zoom_accessibility_bundle | zoom | A baseline Zoom config file exists at /home/user/.config/zoomus.conf. Enable Zoom's accessibility features for a low-vision user. Set EnableClosedCaptioning to true, set FontSize to exactly 3 (large), set HighContrast to true, and set AlwaysShowCaptions to true. Save the file in-place at the same path. Do not modify an... | {
"files": [
{
"filename": "zoomus.conf",
"sandbox_path": "/home/user/.config/zoomus.conf"
}
]
} | [
{
"command": "check-config-exists",
"key": "exists",
"expected": true,
"description": "zoomus.conf exists"
},
{
"command": "check-section-exists Accessibility",
"key": "exists",
"expected": true,
"description": "[Accessibility] section exists"
},
{
"command": "check-confi... | task_generator/tasks/zoom_accessibility_bundle |
zoom_audio_device_swap | zoom | A baseline Zoom config file exists at /home/user/.config/zoomus.conf. Switch Zoom's default audio hardware and input levels. Set AudioDevice to exactly USBHeadset (one token, no spaces), set MicrophoneLevel to exactly 65, set SpeakerLevel to exactly 55, and set AutoAdjustMic to false. Save the file in-place at the same... | {
"files": [
{
"filename": "zoomus.conf",
"sandbox_path": "/home/user/.config/zoomus.conf"
}
]
} | [
{
"command": "check-config-exists",
"key": "exists",
"expected": true,
"description": "zoomus.conf exists"
},
{
"command": "check-config Audio AudioDevice USBHeadset",
"key": "match",
"expected": true,
"description": "[Audio]AudioDevice == USBHeadset"
},
{
"command": "che... | task_generator/tasks/zoom_audio_device_swap |
zoom_audio_settings_bundle | zoom | A baseline Zoom config file exists at /home/user/.config/zoomus.conf. MicrophoneLevel is currently 50 and SpeakerLevel is currently 50. Update BOTH keys: set MicrophoneLevel to exactly 80 and SpeakerLevel to exactly 90. Save the file in-place at /home/user/.config/zoomus.conf. Do not modify any other keys or sections. | {
"files": [
{
"filename": "zoomus.conf",
"sandbox_path": "/home/user/.config/zoomus.conf"
}
]
} | [
{
"command": "check-config-exists",
"key": "exists",
"expected": true,
"description": "zoomus.conf exists"
},
{
"command": "check-config Audio MicrophoneLevel 80",
"key": "match",
"expected": true,
"description": "[Audio]MicrophoneLevel == 80"
},
{
"command": "check-confi... | task_generator/tasks/zoom_audio_settings_bundle |
zoom_change_language_german | zoom | A baseline Zoom config file exists at /home/user/.config/zoomus.conf. Change the Zoom UI language to German by setting language=de-DE. Save the updated file in-place at /home/user/.config/zoomus.conf. Do not change any other keys. | {
"files": [
{
"filename": "zoomus.conf",
"sandbox_path": "/home/user/.config/zoomus.conf"
}
]
} | [
{
"command": "check-config-exists",
"key": "exists",
"expected": true,
"description": "zoomus.conf exists"
},
{
"command": "check-language de-DE",
"key": "match",
"expected": true,
"description": "UI language is de-DE"
},
{
"command": "check-config General language de-DE"... | task_generator/tasks/zoom_change_language_german |
zoom_change_recording_path | zoom | A baseline Zoom config file exists at /home/user/.config/zoomus.conf. Currently localRecordingPath=/home/user/Documents/Zoom. Do BOTH of the following: (1) change localRecordingPath of /home/user/.config/zoomus.conf to exactly /home/user/ZoomRecordings. (2) Create the directory /home/user/ZoomRecordings on disk so that... | {
"files": [
{
"filename": "zoomus.conf",
"sandbox_path": "/home/user/.config/zoomus.conf"
}
]
} | [
{
"command": "check-config-exists",
"key": "exists",
"expected": true,
"description": "zoomus.conf exists"
},
{
"command": "check-recording-path /home/user/ZoomRecordings",
"key": "match",
"expected": true,
"description": "Recording path is /home/user/ZoomRecordings"
},
{
... | task_generator/tasks/zoom_change_recording_path |
zoom_chat_client_preferences | zoom | A baseline Zoom config file exists at /home/user/.config/zoomus.conf. Harden the Zoom chat client by updating four keys. Set Theme to dark, EnableSpellCheck to false, ShowLinkPreview to false, and AutoDownloadFiles to false. Save in-place at /home/user/.config/zoomus.conf. Do not modify any other keys or sections. | {
"files": [
{
"filename": "zoomus.conf",
"sandbox_path": "/home/user/.config/zoomus.conf"
}
]
} | [
{
"command": "check-config-exists",
"key": "exists",
"expected": true,
"description": "zoomus.conf exists"
},
{
"command": "check-section-exists chat.client",
"key": "exists",
"expected": true,
"description": "[chat.client] section exists"
},
{
"command": "check-config ch... | task_generator/tasks/zoom_chat_client_preferences |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.