lix-agents

Obtain 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.

3,891 stars

Best use case

lix-agents is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Obtain 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.

Teams using lix-agents should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/lix-agents/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/aakarim/lix-agents/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/lix-agents/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How lix-agents Compares

Feature / Agentlix-agentsStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Obtain 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.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Lix Agents

Use `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.

## When to use this

- You need to call any `https://api.lix-it.com` endpoint that requires authentication
- You need to enrich LinkedIn profiles, companies, or other data via Lix
- You don't already have a valid Lix API token in your environment

## Step-by-step workflow

Follow these steps in order. Before each step, explain to the user *why* you're running the command.

### Step 1: Check if `lix-agents` is installed

Tell the user: *"First, I'll check if the lix-agents CLI is installed on your machine."*

```bash
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:

```bash
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](https://github.com/lix-it/lix-agents/releases).

### Step 2: Check if the user is already logged in

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."*

```bash
lix-agents auth status
```

- If already logged in, skip to Step 4.
- If not logged in, continue to Step 3.

### Step 3: Log in (only if needed)

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."*

```bash
lix-agents auth login
```

Share the URL with the user and wait for them to confirm they've signed in.

### Step 4: Request a temporary API token

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."*

```bash
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.

### Step 5: Use the token

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](https://lix-it.com/docs) for available endpoints, request formats, and response formats.

## Reference

Run `lix-agents --help` for the full command reference.

Related Skills

HIPAA Compliance for AI Agents

3891
from openclaw/skills

Generate HIPAA compliance checklists, risk assessments, and audit frameworks for healthcare organizations deploying AI agents.

Security

AgentWallet — Non-Custodial Smart Wallets for AI Agents

3891
from openclaw/skills

Non-custodial smart wallets with onchain spending limits and passkey-based human control. Supports **Base** (EVM) and **Solana**. Every wallet gets free gas on creation so your agent can transact immediately.

General Utilities

agents-infra

3783
from openclaw/skills

Infrastructure for AI Agents. Phone, email, Social accounts, compute, domains, and voice calling for AI agents. Pay with USDC on Solana or Base via x402.

Agent Infrastructure

herclaw-agentsystem

3891
from openclaw/skills

A comprehensive self-improving AI agent system that integrates Hermes Agent's core capabilities including autonomous learning loop, skill creation, self-evolution, persistent memory, and nudge system. This skill enables AI agents to create skills from experience, improve them during use, maintain cross-session memory, and continuously evolve their capabilities. Use when building self-improving agents, autonomous learning systems, or AI that grows more capable over time.

AgentOS — Infrastructure for AI Agents

3891
from openclaw/skills

Everything an agent needs: phone, email, compute, domains, voice calling, wallets, and 3500+ skills. Pay with USDC on Solana or Base via x402.

supervising-agents

3891
from openclaw/skills

Use when YOU are dispatching tasks to subagents (Agent tool, openclaw, parallel workers). You become the supervisor by default. This skill guides how to monitor, intervene, and verify your subagents.

orange — Lightning Wallet for AI Agents

3891
from openclaw/skills

> [!WARNING]

agentshield

3891
from openclaw/skills

Trust Infrastructure for AI Agents - Like SSL/TLS for agent-to-agent communication. 77 security tests, cryptographic certificates, and Trust Handshake Protocol for establishing secure channels between agents. Explicit whitelist sanitization + dry-run mode for transparency.

Agents Orchestrator

3891
from openclaw/skills

Autonomous pipeline manager that orchestrates the entire development workflow. You are the leader of this process.

superpowers-parallel-agents

3891
from openclaw/skills

Use when facing 2 or more independent tasks that can be worked on without shared state - dispatches parallel subagents using sessions_spawn for concurrent investigation and execution, adapted for OpenClaw

agentscout

3891
from openclaw/skills

Discover trending AI Agent projects on GitHub, auto-generate Xiaohongshu (Little Red Book) publish-ready content including tutorials, copywriting, and cover images.

dispatch-multiple-agents

3891
from openclaw/skills

Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies. Dispatch subagents to work concurrently.