devo 1.0.5

Generate and run tmux workflows from a small YAML DSL
.PHONY: help
help:
	@printf '%s\n' 'targets: build check plan run fmt'

.PHONY: build
build:
	cargo build

.PHONY: check
check:
	cargo check

.PHONY: plan
plan:
	cargo run -- plan -f examples/devo.yaml

.PHONY: run
run:
	cargo run -- run -f examples/devo.yaml --print-script

.PHONY: fmt
fmt:
	nix fmt