assistant 1.2.0

Agent-agnostic CLI super-app; aggregates all coding agent CLI tools into a single binary
1
2
3
4
5
6
7
#!/usr/bin/env bash
# do clean — remove generated artifacts and caches (cargo ecosystem)
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR/.."
if [[ "${1:-}" == "--dry-run" ]]; then echo "cargo clean -p assistant"; exit 0; fi
exec cargo clean -p assistant