A project setup tool powered by mise or devbox.
razd run <task> # Run a task (default task if none specified)
razd list # List tasks
razd list --json # List tasks in JSON
razd up # Install dependencies
razd up --run # Install dependencies and run default task
razd init # Create Razdfile.yml in current directory
razd init --using devbox # Create with devbox provider
razd add node@22 # Add a dependency to Razdfile
razd shell # Start interactive shell with provisioned env
razd trust # Trust current project
razd trust --show # Show trust status
razd trust --untrust # Remove trust-d, --dir <path> # Working directory (default: current)
-y, --yes # Auto-trust project
-v, --verbose # Verbose output
--json # JSON output (list command)
--all # Show all tasks including internals
devbox run go build -o razd .# From project root
./razd run default -d examples/nodejs-devbox -y
./razd list -d examples/nodejs-project
# From example directory
cd examples/nodejs-devbox
../../razd run default -y