Hermes Agent can use Lumail through its native skills system. You don't need to run any command yourself — paste this prompt and Hermes sets everything up:

<AgentPrompt
  label="Prompt"
  emphasis
  prompt="Read lumail.io/cli/install and set up Lumail for me."
/>

Hermes fetches the machine-readable guide at [lumail.io/cli/install](https://lumail.io/cli/install), installs the CLI, walks you through the browser sign-in, installs the `lumail` skill, and verifies the connection with a read command before reporting back.

## Setup: by hand

Prefer to run the steps yourself? Install the skill from its open-source `SKILL.md`:

```bash
hermes skills install https://raw.githubusercontent.com/Melvynx/lumail-skills/main/skills/lumail/SKILL.md
```

Hermes discovers the skill automatically and makes it available as `/lumail`.

Then install the CLI and set your API token from your Lumail organization settings:

```bash
npm install -g lumail
lumail auth set lum_your_api_token_here
```

Verify the connection:

```bash
lumail auth test
```

## Try It

Once connected, just ask Hermes naturally:

<AgentPrompt
  label="Try it"
  prompt={[
    "Use Lumail to show me my draft campaigns.",
    "Create a campaign draft for our product launch, but do not send it.",
    "Show me subscriber growth over the last 30 days.",
  ]}
/>

Hermes runs the corresponding Lumail CLI commands in your terminal, so you can review each action and its output.

## What's Included

The skill covers subscribers, campaigns, tags, transactional email, events, analytics, and the organization-aware Lumail tools. Commands that send, schedule, delete, or unsubscribe affect real data, so review them before approval.

## Related

- [Skills (CLI)](/docs/ai-integration/skills-cli) - Learn how the Lumail skill works
- [CLI Reference](/docs/api-reference/cli) - Explore every CLI command
- [OpenClaw](/docs/ai-integration/openclaw) - Install Lumail through ClawHub
