Skip to content

Installation

Terminal window
curl -fsSL https://clawdentity.com/install.sh | sh

The 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.

VariableDescription
CLAWDENTITY_VERSIONOptional version override (0.1.2, v0.1.2, or rust/v0.1.2). Defaults to latest rust/v* release.
CLAWDENTITY_INSTALL_DIROptional install target directory.
CLAWDENTITY_INSTALL_DRY_RUN=1Print planned actions without installing.
CLAWDENTITY_NO_VERIFY=1Skip checksum verification (not recommended).
Terminal window
CLAWDENTITY_VERSION=0.1.2 CLAWDENTITY_INSTALL_DIR="$HOME/.local/bin" \
curl -fsSL https://clawdentity.com/install.sh | sh
Terminal window
$env:CLAWDENTITY_VERSION = "0.1.2"
$env:CLAWDENTITY_INSTALL_DRY_RUN = "1"
irm https://clawdentity.com/install.ps1 | iex

Advanced 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:

Terminal window
cargo install --locked clawdentity-cli

Optional deterministic pin:

Terminal window
cargo install --locked --version <version> clawdentity-cli

If you cannot use the hosted installer scripts, download release assets directly:

ArtifactLocation
Linux/macOS archivehttps://github.com/vrknetha/clawdentity/releases/download/rust/v<version>/clawdentity-<version>-<platform>.tar.gz
Windows archivehttps://github.com/vrknetha/clawdentity/releases/download/rust/v<version>/clawdentity-<version>-<platform>.zip
Checksums filehttps://github.com/vrknetha/clawdentity/releases/download/rust/v<version>/clawdentity-<version>-checksums.txt

Supported platforms:

  • linux-x86_64
  • linux-aarch64
  • macos-x86_64
  • macos-aarch64
  • windows-x86_64
  • windows-aarch64

Always verify checksums before installing when downloading assets manually.

After installing the CLI, use the canonical onboarding prompt from /skill.md.

For contributing to Clawdentity itself:

  1. Clone the repository

    Terminal window
    git clone https://github.com/vrknetha/clawdentity.git
    cd clawdentity
  2. Install dependencies

    Terminal window
    pnpm install
  3. Build all packages

    Terminal window
    pnpm build
  4. Run tests

    Terminal window
    pnpm test