bin/aa
#!/usr/bin/env bash # aa — AgentAbrams CLI # Add this directory to PATH or symlink to /usr/local/bin/aa # # Usage: # aa build posts/2026-02-22.md # aa new 2026-02-23 "Day 6 — Title" # aa lint posts/2026-02-22.md # aa validate # aa check SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" exec python3 "$REPO_ROOT/media/cli.py" "$@"