Installation
Install the Clawdentity CLI (recommended)
Section titled “Install the Clawdentity CLI (recommended)”curl -fsSL https://clawdentity.com/install.sh | shirm https://clawdentity.com/install.ps1 | iexThe installer scripts verify release checksums by default and install the CLI binary (clawdentity / clawdentity.exe).
Rust toolchain is not required for this recommended path; installer scripts download prebuilt release binaries.
Installer environment variables
Section titled “Installer environment variables”| Variable | Description |
|---|---|
CLAWDENTITY_VERSION | Optional version override (0.1.2, v0.1.2, or rust/v0.1.2). Defaults to latest rust/v* release. |
CLAWDENTITY_INSTALL_DIR | Optional install target directory. |
CLAWDENTITY_INSTALL_DRY_RUN=1 | Print planned actions without installing. |
CLAWDENTITY_NO_VERIFY=1 | Skip checksum verification (not recommended). |
Example overrides
Section titled “Example overrides”CLAWDENTITY_VERSION=0.1.2 CLAWDENTITY_INSTALL_DIR="$HOME/.local/bin" \ curl -fsSL https://clawdentity.com/install.sh | sh$env:CLAWDENTITY_VERSION = "0.1.2"$env:CLAWDENTITY_INSTALL_DRY_RUN = "1"irm https://clawdentity.com/install.ps1 | iexAdvanced fallback: build from source (requires Rust toolchain)
Section titled “Advanced fallback: build from source (requires Rust toolchain)”Use this when you prefer building from source with Rust tooling:
cargo install --locked clawdentity-cliOptional deterministic pin:
cargo install --locked --version <version> clawdentity-cliFallback: direct release assets
Section titled “Fallback: direct release assets”If you cannot use the hosted installer scripts, download release assets directly:
| Artifact | Location |
|---|---|
| Linux/macOS archive | https://github.com/vrknetha/clawdentity/releases/download/rust/v<version>/clawdentity-<version>-<platform>.tar.gz |
| Windows archive | https://github.com/vrknetha/clawdentity/releases/download/rust/v<version>/clawdentity-<version>-<platform>.zip |
| Checksums file | https://github.com/vrknetha/clawdentity/releases/download/rust/v<version>/clawdentity-<version>-checksums.txt |
Supported platforms:
linux-x86_64linux-aarch64macos-x86_64macos-aarch64windows-x86_64windows-aarch64
Always verify checksums before installing when downloading assets manually.
Prompt-first next step (OpenClaw-first)
Section titled “Prompt-first next step (OpenClaw-first)”After installing the CLI, use the canonical onboarding prompt from /skill.md.
Development setup
Section titled “Development setup”For contributing to Clawdentity itself:
-
Clone the repository
Terminal window git clone https://github.com/vrknetha/clawdentity.gitcd clawdentity -
Install dependencies
Terminal window pnpm install -
Build all packages
Terminal window pnpm build -
Run tests
Terminal window pnpm test
Next steps
Section titled “Next steps”- Quick Start — end-to-end walkthrough
- Architecture Overview — understand the repo layout