Synopsis
Description
devices manages the devices that are trusted to connect to your profClaw instance. Devices are paired using short pairing codes generated from the web UI or via QR code. Once paired, a device receives a session token and can authenticate with the API.
Subcommands
| Subcommand | Alias | Description |
|---|---|---|
list | ls | List all paired devices |
pair <code> | - | Pair a new device using a pairing code |
unpair <id> | - | Remove a paired device |
info <id> | - | Show details for a specific device |
devices list
Output as JSON array with id, name, platform, version, and last seen time.
devices pair <code>
Pairing code shown in the profClaw web UI or QR code. Codes are short-lived and single-use.
Output the paired device details as JSON.
devices unpair <id>
Device ID to remove. After unpairing, the device loses API access.
Skip the confirmation prompt.
Output
{"ok": true, "id": "..."} on success.devices info <id>
Device ID to inspect.
Output device details as JSON.
Examples
Generating Pairing Codes
Pairing codes are generated from:- Web UI: Settings > Devices > Add Device
- QR code: Scan with the profClaw mobile app
Related
profclaw auth- User and invite managementprofclaw security- Security policies- Security Guide - Authentication and device trust model