Installation

Different ways to access and install Claw-Nomad.

Last updated: January 15, 2025

Claw-Nomad is available as a web application, CLI tool, and SDK. Choose the method that best fits your workflow.

Web Application (Recommended)

The easiest way to get started. No installation required.

https://app.clawnomad.com

Command Line Interface

For power users who prefer terminal-based workflows.

terminalbash
# Install via npm
npm install -g @claw-nomad/cli

# Or via yarn
yarn global add @claw-nomad/cli

# Verify installation
claw-nomad --version

Authentication

terminalbash
# Login to your account
claw-nomad login

# This opens a browser for OAuth authentication
# Your token is stored securely in ~/.claw-nomad/config

Basic CLI Usage

terminalbash
# Run a command
claw-nomad run "Check my ETH balance"

# List connected platforms
claw-nomad integrations list

# View recent activity
claw-nomad activity --limit 10

# Interactive mode
claw-nomad interactive

SDK Integration

Integrate Claw-Nomad into your own applications.

example.tstypescript
# Install the SDK
npm install @claw-nomad/sdk

# TypeScript/JavaScript usage
import { ClawNomad } from '@claw-nomad/sdk';

const agent = new ClawNomad({
  apiKey: process.env.CLAW_NOMAD_API_KEY,
});

// Run a command
const result = await agent.run("Check ETH price");
console.log(result);

API Keys

Generate API keys from Dashboard → Settings → API Keys. Never commit keys to version control.

System Requirements

NameTypeRequiredDescription
Node.jsv18+RequiredRequired for CLI and SDK
BrowserModernRequiredChrome, Firefox, Safari, Edge
OSAnyOptionalWindows, macOS, Linux