Skip to main content
The anyware command-line interface runs Claude Code with remote control capabilities.

Installation

npm install -g @diggerhq/anyware
Or use without installing:
npx @diggerhq/anyware

Commands

CommandDescription
anyware (run)Start Claude Code with remote control
anyware loginAuthenticate with Anyware
anyware logoutRemove stored credentials
anyware statusShow login status
anyware configView or set configuration
anyware updateUpdate CLI to latest version

Common Workflows

Start a session

cd my-project
anyware

Use a different model

anyware --model openai/gpt-4o

Resume a Claude session

anyware --resume <session-id>

Continue last conversation

anyware --continue

Global Options

OptionDescription
-h, --helpShow help
-V, --versionShow version

Environment Variables

VariableDescriptionDefault
ANYWARE_MODELDefault model to use(Claude default)

Exit Codes

CodeMeaning
0Success
1General error

Platform Support

PlatformArchitecture
macOSIntel (x64), Apple Silicon (arm64)
Linuxx64, ARM64
Windows is not yet supported.

Authentication

All commands except login, logout, status, version, and update require authentication. Credentials are stored at ~/.anyware/config.json.
# First-time setup
anyware login

# Check if logged in
anyware status

Claude Code Arguments

You can pass additional arguments to Claude Code:
anyware --verbose
anyware --resume abc123
anyware --continue
Run anyware claude-args to see all valid Claude Code arguments.