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.comCommand 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 --versionAuthentication
terminalbash
# Login to your account
claw-nomad login
# This opens a browser for OAuth authentication
# Your token is stored securely in ~/.claw-nomad/configBasic 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 interactiveSDK 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
| Name | Type | Required | Description |
|---|---|---|---|
Node.js | v18+ | Required | Required for CLI and SDK |
Browser | Modern | Required | Chrome, Firefox, Safari, Edge |
OS | Any | Optional | Windows, macOS, Linux |