installlisted
Install: claude install-skill paulnsorensen/hallouminate
# Install hallouminate & start your first wiki
You are guiding the user from zero to a working hallouminate install with a
first, indexed wiki page — committed to git. Work through the phases in order.
Narrate briefly; do **not** dump this whole document back to the user.
`hallouminate` is a markdown-corpus indexer: an LLM authors per-repo wikis
through an MCP surface (`add_markdown` / `read_markdown` / `delete_markdown` /
`ground`) and queries them semantically. The filesystem is the source of truth;
wikis live under `<repo>/.hallouminate/wiki/`.
If the user passed a target repo path as an argument, treat that as the wiki's
home and skip the "where" question in Phase 5.
## Phase 1 — Platform check
Run `uname -sm`. Prebuilt binaries exist for:
| `uname -sm` | target |
| --- | --- |
| `Darwin arm64` | aarch64-apple-darwin |
| `Linux aarch64` | aarch64-unknown-linux-gnu |
| `Linux x86_64` | x86_64-unknown-linux-gnu |
Two platforms need special handling — tell the user plainly, don't silently
fall through:
- **Intel macOS (`Darwin x86_64`)**: no prebuilt — the `ort` (ONNX Runtime)
dependency ships no x86_64-darwin binary. Say so loudly and go straight to
the source build (Phase 2, step 4), which needs Rust and `protoc`.
- **Windows**: unsupported entirely (prebuilt *and* source) — the daemon is
Unix-only (Unix domain socket + `flock`). Point at
<https://github.com/paulnsorensen/hallouminate/issues/48> and stop.
## Phase 2 — Install the binary (cascade)
Try each