# task-mcp project tasks
# === Agent-safe tasks ===
[group: 'agent']
build:
cargo build --release
[group: 'agent']
test filter="":
cargo test {{filter}}
[group: 'agent']
check:
cargo clippy -- -D warnings && cargo fmt --check
[group: 'agent']
fmt:
cargo fmt
# === Human-only tasks ===
install:
cargo install --path .
run:
cargo run -- --mcp
clean:
cargo clean