An interactive CLI tool for configuring OpenClaw on Linux.
- 🌍 Multi-language support (English / 简体中文)
- 🔧 Add AI providers
- 🔑 Configure API keys securely
- 🤖 Select and switch between models
- ⚡ Built-in support for PackyCode and custom providers
Run directly without installation:
curl -fsSL https://github.com/packyme/openclaw-configurator/releases/latest/download/index.js -o /tmp/openclaw-config.js && node /tmp/openclaw-config.jsNote: This tool requires interactive terminal input. Do not use
curl ... | nodeas stdin will be occupied by the pipe.
After running the script, you'll be guided through an interactive menu:
- Select Language - Choose English or 简体中文
- Add Provider - Configure a new AI provider with base URL and API key
- Select Model - Switch between configured models
- Exit - Exit the program
- PackyCode - Pre-configured with
https://www.packyapi.com - Other - Custom providers with OpenAI/Anthropic compatible API
# Install dependencies
make install
# Run in development mode
make dev
# Type check and build
make typecheck build
# Build for production
make build-prodMIT