mise-task-configuration
Installation
SKILL.md
Mise - Task Configuration
Defining and managing tasks in Mise for build automation, testing, and development workflows.
Basic Task Definition
Simple TOML Tasks
# mise.toml
[tasks.build]
description = "Build the project"
run = "cargo build --release"
[tasks.test]
description = "Run all tests"
run = "cargo test"