assistant_kit 0.2.1

Layer 3 library facade re-exporting all Layer 2 full-featured coding agent crates.
Documentation
1
2
3
4
5
6
7
#!/usr/bin/env bash
# l1 — run cargo clippy directly (cargo ecosystem).
set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR/../.."
if [[ "${1:-}" == "--dry-run" ]]; then echo "cargo clippy -p assistant_kit --all-features -- -D warnings"; exit 0; fi
exec cargo clippy -p assistant_kit --all-features -- -D warnings