imux · 龍imux
AI command center for macOS

Quickstart

Install → sign in → first agent task → optional API call. Structured like Claude Code’s quickstart, written for Clavue / imux.

1. Install imux

Drag imux-v5.0.1-macos.dmg into Applications. If Gatekeeper blocks first launch, allow it under System Settings → Privacy & Security.

curl -L -o ~/Downloads/imux-v5.0.1-macos.dmg https://www.iccjk.com/downloads/imux-v5.0.1-macos.dmg
open ~/Downloads/imux-v5.0.1-macos.dmg

2. Sign in to Clavue

In imux Settings or Agent Chat, pick the official Clavue provider and the same account as www.clavue.com (email / phone OTP / Google / GitHub).

Web: /account

Free includes daily fast / premium quota; after that use check-in, invite, or rush boost packs (1 pack = 20 turns).

3. Your first agent task

  1. Open imux, create a workspace (Cmd+T)
  2. Open Agent Chat (Cmd+Shift+L), mode Agent or Plan
  3. Pick clavue-2.1 or auto, describe a task, e.g.:
Restructure README into bilingual sections and list 3 acceptance checks.

Use @ to mention files or symbols. Verify with tests or icc commands in the terminal.

4. Web Chat (optional)

open https://www.clavue.com/playground

Same membership quota. Good for light Q&A; heavy work stays in imux.

5. API call (optional)

Create an API key in Account, or use a session. Base URL: https://api.clavue.com

export CLAVUE_TOKEN=sk-...
curl -s https://api.clavue.com/v1/models \
  -H "Authorization: Bearer $CLAVUE_TOKEN"

Full CLI / flags reference →

Device-code CLI login

# Start device flow (example)
curl -s -X POST https://www.clavue.com/api/membership/auth/device/start \
  -H "content-type: application/json" \
  -d '{"client":"clavue-cli"}'
# Open verification_uri_complete, approve, then poll with device_code

Next