Open-source command-line client for AntiAlienate. Pipe your case into any LLM, or auto-install MCP for Claude Desktop, Cursor, and Continue.
curl -fsSL https://antialienate.com/install.sh | sh
aa login
aa ask "Find every missed pickup in the last 90 days"This repo is the client only (MIT). The server, AI prompts, forensic engines, and anonymization pipeline stay private — by design, so we can offer a generous free tier and keep iterating on the intelligence layer.
| Tier | Price | Daily reqs | Credits |
|---|---|---|---|
| Free | $0 | 100 | 50 seed + 10/day |
| Starter | $9/mo | 2,000 | 1,000/mo |
| Pro | $29/mo | 10,000 | 5,000/mo |
| Top-up | $10 = 500 credits | — | pay-as-go |
Requires Deno 1.40+.
cd cli
deno compile --allow-net --allow-read --allow-write --allow-env \
--output aa src/main.tsOr build all cross-platform binaries at once:
cd cli
bash scripts/build-all.shTagging v*.*.* on this repo triggers .github/workflows/release.yml, which cross-compiles 5 binaries (macOS x64/arm64, Linux x64/arm64, Windows x64), generates checksums.txt, and publishes them as a GitHub Release.
See RELEASING.md for the full release procedure and docs/GITHUB-SETUP.md for first-time setup.
.
├── cli/ # CLI source (Deno + TypeScript)
│ ├── src/main.ts # entry point
│ ├── scripts/build-all.sh # cross-platform build
│ ├── deno.json # Deno config
│ └── LICENSE # MIT
├── .github/workflows/ # release pipeline
├── RELEASING.md # release procedure
└── docs/ # setup + onboarding docs
- antialienate.com — the web app (closed-source SaaS this CLI talks to)
- AntiAlienate/knowledge — public knowledge base (case law across 84+ jurisdictions, statutes, clinical protocols) that
aa lawqueries
MIT — the CLI client is open source.