[]
= "Build and package skill with binary"
= """
cargo build --release
DIST="dist/code-analyze"
rm -rf "$DIST"
mkdir -p "$DIST/scripts"
cp target/release/analyze "$DIST/scripts/"
cp SKILL.md "$DIST/"
echo "Packaged: $DIST/"
ls -lh "$DIST/" "$DIST/scripts/"
"""
[]
= "Run clippy and check formatting"
= "cargo clippy -- -D warnings && cargo fmt --check"