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
# l1 — run ast binary directly (cargo ecosystem).
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR/../.."
if [[ "${1:-}" == "--dry-run" ]]; then echo "cargo run -p assistant --bin ast"; exit 0; fi
exec cargo run -p assistant --bin ast -- "$@"