Install
openclaw skills install lix-agentsObtain temporary Lix API tokens via CLI with human email approval. Use when you need authenticated access to the Lix API, need to enrich data via Lix, or need API credentials for any Lix service.
openclaw skills install lix-agentsUse lix-agents to get temporary API tokens for the Lix API. Tokens require human approval via email, so agents never hold unsupervised credentials.
Always tell the user what you're doing and why before running each command. Don't silently run commands — explain the purpose of each step so the user can follow along.
https://api.lix-it.com endpoint that requires authenticationFollow these steps in order. Before each step, explain to the user why you're running the command.
lix-agents is installedTell the user: "First, I'll check if the lix-agents CLI is installed on your machine."
which lix-agents
If the command is not found, tell the user you need to install it and why — it's a CLI that manages Lix API authentication for AI agents. Then install it:
brew tap lix-it/lix-agents && brew install lix-agents
If brew is unavailable, suggest go install github.com/lix-it/lix-agents@latest or downloading from GitHub Releases.
Tell the user: "Now I'll check if you already have a Lix session. This avoids asking you to log in again if you've done it before."
lix-agents auth status
Tell the user: "You're not logged in yet. I'll start the login flow — this will give you a URL to open in your browser. You only need to do this once; your session will be saved locally."
lix-agents auth login
Share the URL with the user and wait for them to confirm they've signed in.
Tell the user: "Now I'll request a temporary API token. For security, Lix will send you an approval email — please check your inbox and approve the request. I'll wait for the approval before continuing."
lix-agents auth token
The command blocks until the user approves via email. Once approved, it prints the token to stdout. Save this token for use in subsequent API calls.
Set the token in the Authorization header for API requests:
Authorization: Bearer <token>
All requests go to https://api.lix-it.com. See the Lix API docs for available endpoints, request formats, and response formats.
Run lix-agents --help for the full command reference.