Installs, reselects, restores and removes a complete Grok Build harness configuration, and owns the program lifecycle.
A setup here is the complete harness state — the system-prompt components and the whole configuration — not a pointer to somewhere the content really lives. That is what makes restore mean something: it returns the instructions, skills, agents, commands, hooks, MCP entries and settings together, in one step.
Status: complete for the five core operations.
install,replace,backup,restoreandremoveall work, over the wire and from the local catalog. The software lifecycle andlaunchare optional in the contract and are not declared, because this build does not perform them.
grok-setup-system list
grok-setup-system install baseline --target ~/.tool-config
grok-setup-system status --target ~/.tool-config
grok-setup-system select minimal --target ~/.tool-config
grok-setup-system diff --target ~/.tool-config
grok-setup-system reinstall --target ~/.tool-config
grok-setup-system backups --target ~/.tool-config
grok-setup-system restore --backup slot-000000000002 --target ~/.tool-config
grok-setup-system remove --target ~/.tool-configEvery command takes an explicit --target. There is no default and no fallback
to a configuration home: a change aimed at a guessed path is a change aimed at
someone else's state. The documented home is printed by --help so it can be
copied, not resolved.
A backup is captured before every change, so restore always has something
to return to. restore with no reference means the most recent backup that
existed when you asked — not the one the restore itself just took.
Selecting a setup reaches its complete state, not a merge. If the setup you leave owned a file the one you choose does not, that file goes. A target is always exactly one setup plus whatever this provider never claimed. A bundle arriving over the wire is materialized the same way, for the same reason.
Point GROK_SETUP_SYSTEM_SETUP_CATALOG at a directory to use setups of your own.
| Product | Grok Build (xAI) |
| Documented configuration home | ~/.grok |
| Environment override | GROK_HOME |
| Configuration lifecycle | owned |
| Program lifecycle | owned |
The configuration home above is documentation. Every mutation takes an explicit
absolute --target; nothing is inferred from a home directory or the working
directory.
This is one binary with two callers.
Provider (ai-stp protocol v3). provider-info, validate-bundle,
plan-operation, apply-operation, recover-operation, status, and launch
where the capability is declared. The vocabulary is owned by
provider-kit/v3/manifest.json, vendored here and verified against its
SHA256SUMS.
Human. list, status, install, reinstall, select, backups,
restore [--backup <ref>], remove, diff.
Both go through crates/setup-core. A human command that reached the target
directly would bypass the guarantees the wire surface owes its consumer, so it
does not exist.
resolve target -> acquire lock -> re-check preconditions
-> journal(prepared) -> capture backup -> stage -> promote
-> journal(committed) -> verify -> clear
Each step is durable before the next begins, so an interrupted mutation leaves evidence rather than ambiguity:
- a journal in
preparedmeans the effect may be partial — recovery restores the exact pre-operation target; - a journal in
committedmeans the effect is complete — recovery verifies the result and clears the tails.
While any journal, transaction directory or half-written backup slot is present,
planning refuses with recovery_required instead of guessing. Only
recover-operation may resolve that state.
restore with no reference restores the most recent backup. restore --backup <ref> restores a chosen one. Slots are numbered by a monotonic sequence rather
than a timestamp, so "the last backup" does not change meaning when a clock does.
Linux and macOS:
sh install.shWindows:
powershell -ExecutionPolicy Bypass -File install.ps1Each fetches the release artifact for this platform, checks it against the
release's own SHA256SUMS, and places it at a predictable path: ~/.local/bin
on Linux and macOS, %LOCALAPPDATA%\Programs on Windows. Neither needs
privilege and neither registers anything anywhere.
Releases carry six binaries — Linux, macOS and Windows, on x86_64 and arm64 —
which is what provider-info declares, so the declaration and what you can
download say the same thing.
ai-stp does not search for a provider. Its resolve_executable requires a
real file at a path the caller names and refuses without one, on the stated
ground that it never writes a target itself. So the path is what an installer
owes you, and you hand it over in full:
ai-stp provider conformance --harness grok-build \
--executable ~/.local/bin/grok-setup-system \
--target <dir> --protocol-version 3 --jsonBuilding it yourself is equally supported and produces the same binary; a release is a convenience, not the authorised copy.
docker run --rm -v "$HOME/.config:/config" \
ghcr.io/nddev-opennetwork/grok-setup-system:0.0.1 \
status --target /config/<dir> --jsonDistroless and non-root, holding this binary and nothing else — no shell, no
package manager. linux/amd64 and linux/arm64, built from the same artifacts
the release carries rather than compiled again, so the attestation on the image
and the attestation on the binary are true of the same bytes.
cargo build --locked --all-targets
cargo test --locked --all-targets
cargo clippy --locked --all-targets -- -D warnings
cargo fmt --all --checkThe toolchain is pinned in rust-toolchain.toml. CI runs the same commands on
Linux, macOS and Windows.
AGPL-3.0-or-later. See LICENSE.