diff --git a/README.md b/README.md index 96a529f..e2631a7 100644 --- a/README.md +++ b/README.md @@ -88,9 +88,17 @@ riskkernel audit export # the cost ledger as JSON riskkernel audit tools # governed tool calls as JSON ``` -Prefer a binary? `go build -o riskkernel ./cmd/riskkernel` (or `make build`), then -`riskkernel serve`. Deeper control (loops, checkpoints, approval gates) is the -Python SDK — install it from source (PyPI publish is on the roadmap): +Prefer a native binary to Docker? Install the CLI with one command — no clone +needed — and run it: + +```bash +go install github.com/prashar32/riskkernel/cmd/riskkernel@latest +riskkernel serve +``` + +(or `make build` from a clone). Deeper control (loops, checkpoints, approval +gates) is the Python SDK — install it from source (PyPI publish is on the +roadmap): ```bash pip install "git+https://github.com/prashar32/riskkernel.git#subdirectory=sdks/python" diff --git a/sdks/python/README.md b/sdks/python/README.md index 59788bb..eea4ede 100644 --- a/sdks/python/README.md +++ b/sdks/python/README.md @@ -8,7 +8,8 @@ SDK just makes governed runs ergonomic from Python. **Core install is stdlib-onl (no third-party dependencies). ```bash -pip install riskkernel +# Not on PyPI yet — install from source (the core is stdlib-only, so this is light): +pip install "git+https://github.com/prashar32/riskkernel.git#subdirectory=sdks/python" ``` ## Quickstart