Feature: Tasks file loading
Scenario: .oo/tasks.yaml is loaded at startup
Given after creating the file .oo/tasks.yaml with the following content:
"""
version: 1
tasks:
scale:
type: shell
command: "scale --factor {factor}"
inputs:
factor:
type: number
default: 1
"""
Then the tasks config contains task "scale"
Then the command palette contains task "scale"