task-mcp 0.1.0

MCP server for task runner integration — Agent-safe harness for defined tasks
Documentation
# 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