version: "2.0" tasks: init: desc: "Initialize the project" cmds: - echo "Initializing project..." - mkdir -p src tests - touch src/main.py tests/test_main.py silent: true