§ install · old-school meets new-school

Install by hand.

No platform sniffing, no accounts, nothing to sell. Pull the script, read it, run it. Then <tool> doctor confirms you are set. Source is always available via wheels or direct download (soon).

§ 01 · install by hand · pull → review → run

Pull it. Read it. Run it.

The installer is an MIT-licensed script written to be read before it is run: it fetches from our index and installs each tool with “uv”, nothing else. Fair warning, it is nearly 500 lines; a skim at least is encouraged. Then run it on your own terms.

macOS · GNU/Linux
$ curl -sSfO https://dist.point53.ai/install.sh
$ less install.sh
$ bash install.sh
Microsoft Windows
PS> irm https://dist.point53.ai/install.ps1 -OutFile install.ps1
PS> Get-Content install.ps1
PS> .\install.ps1
already read it? · one line
$ curl -sSf https://dist.point53.ai/install.sh | bash
PS> irm https://dist.point53.ai/install.ps1 | iex
# prefer “uv” directly? skip the installer → § 03 · python package
§ 02 · local inference · default

Runs on one modern GPU.

Every tool runs fully on-device. Ollama is the default and encouraged path: no key, no account, nothing leaves the machine. The whole roster of defaults fits inside 10 GB of VRAM or unified memory. Cloud stays one [anthropic] extra away when you want it.

feature
default · ollama
7 GB sweep
used by
query-suggest
granite4:1b
granite4.1:8b
intercept
links-to-RSS
granite4.1:8b
granite4.1:8b
collector · courier
summarization
gemma4:e4b
granite4.1:8b
intercept · collector · courier · nightdesk
chat loops
qwen3.5:9b
granite4.1:8b
intercept · collector · courier · nightdesk

pulled manually with "ollama pull <name>" · swap any model in config · all four defaults fit the 10 GB floor together · lower-spec device? one flat granite4.1:8b sweep (a single 5.3 GB download) covers every feature within 7 GB

§ 03 · python package

Or just use uv.

Each tool is a standalone package on our index. Install the ones you want, with the extras you want.

$ uv tool install p53-intercept[anthropic] --index https://dist.point53.ai/simple/
$ uv tool install p53-collector[pdf,anthropic] --index https://dist.point53.ai/simple/
$ uv tool install p53-courier[anthropic] --index https://dist.point53.ai/simple/
$ uv tool install p53-nightdesk[anthropic] --index https://dist.point53.ai/simple/

p53-handler · forthcoming Q3 2026 · not yet published

§ 04 · source

Read it, build it, fork it.

Every tool ships its source under MPL-2.0. Clone the index or pull a tarball; same code we run in-house. We are not accepting outside contributions at this time; please contact hello@point53.ai for feedback and feature requests.

Source tarball (soon) tarball · MPL-2.0