# Send lemlist official to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lemlist-official",
    "name": "lemlist official",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/micktaiwan/lemlist-official",
    "canonicalUrl": "https://clawhub.ai/micktaiwan/lemlist-official",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/lemlist-official",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lemlist-official",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-endpoints.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lemlist-official",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T05:47:11.923Z",
      "expiresAt": "2026-05-19T05:47:11.923Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lemlist-official",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lemlist-official",
        "contentDisposition": "attachment; filename=\"lemlist-official-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "lemlist-official"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/lemlist-official"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lemlist-official",
    "downloadUrl": "https://openagent3.xyz/downloads/lemlist-official",
    "agentUrl": "https://openagent3.xyz/skills/lemlist-official/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lemlist-official/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lemlist-official/agent.md"
  }
}
```
## Documentation

### Lemlist

Interact with the Lemlist API to manage campaigns, leads, sequences, schedules, activities, inbox, webhooks, unsubscribes, exports, and enrichment.

Full endpoint reference: references/api-endpoints.md
Official API docs: https://developer.lemlist.com/api-reference

### 1. Get API key

Log in to Lemlist
Go to Settings > Integrations > API Keys
Create a new key — copy immediately, shown only once

### 2. Configure in OpenClaw

Add to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "lemlist": {
        "apiKey": "your-lemlist-api-key"
      }
    }
  }
}

Alternative explicit format:

{
  "skills": {
    "entries": {
      "lemlist": {
        "env": {
          "LEMLIST_API_KEY": "your-lemlist-api-key"
        }
      }
    }
  }
}

### 3. Verify

Run: Get my Lemlist team info

### Docker sandbox

Forward the key explicitly:

{
  "agents": {
    "defaults": {
      "sandbox": {
        "docker": {
          "env": ["LEMLIST_API_KEY"]
        }
      }
    }
  }
}

### Authentication

Base URL: https://api.lemlist.com/api

Basic Auth with empty username (colon before key is mandatory):

Authorization: Basic base64(:LEMLIST_API_KEY)

### Python Helper

Use this pattern for all API calls:

import urllib.request, os, json, base64

API_KEY = os.environ["LEMLIST_API_KEY"]
AUTH = base64.b64encode(f":{API_KEY}".encode()).decode()
BASE = "https://api.lemlist.com/api"

def api(path, method="GET", data=None):
    body = json.dumps(data).encode() if data else None
    req = urllib.request.Request(f"{BASE}{path}", data=body, method=method)
    req.add_header("Authorization", f"Basic {AUTH}")
    req.add_header("User-Agent", "OpenClaw/1.0")
    if data:
        req.add_header("Content-Type", "application/json")
    return json.load(urllib.request.urlopen(req))

### Endpoint Summary

DomainKey endpointsTeamGET /team, /team/members, /team/credits, /team/sendersCampaignsGET/POST /campaigns, PATCH /campaigns/:id, POST pause/startSequencesGET /campaigns/:id/sequences, POST/PATCH/DELETE stepsLeads (campaign)GET/POST/PATCH/DELETE /campaigns/:id/leads/:idOrEmailLeads (global)GET /leads, POST pause/start/interested/notinterestedLead variablesPOST/PATCH/DELETE /leads/:id/variablesActivitiesGET /activities (filter: campaignId, type)SchedulesCRUD /schedules, POST /campaigns/:id/schedulesUnsubscribesGET /unsubscribes, POST/DELETE /unsubscribes/:valueWebhooksGET/POST/DELETE /hooks (max 200/team)InboxGET /inbox, POST email/linkedin/whatsapp/smsInbox labelsCRUD /inbox/labels, assign via /conversations/labels/:contactIdCompaniesGET /companies, /companies/:id/notesContactsGET /contacts, /contacts/:idOrEmailExportsGET /campaigns/:id/export (sync), /export/start (async)EnrichmentPOST /leads/:id/enrich, GET /enrich/:id, POST /enrich (batch)TasksGET/POST/PATCH /tasks, POST /tasks/ignoreLemwarmPOST start/pause, GET/PATCH settings via /lemwarm/:mailboxId

For request/response details, read references/api-endpoints.md.

### Pagination

Params: offset (default 0), limit (max 100), page (1-based, overrides offset).

Paginated responses include pagination: { totalRecords, currentPage, nextPage, totalPage }. Some older endpoints return a plain array.

### ID Prefixes

cam_ campaign, lea_ lead, skd_ schedule, seq_ sequence, tea_ team, usr_ user.

### Gotchas

User-Agent required — set User-Agent: OpenClaw/1.0, Python's default UA is blocked by Cloudflare (403)
Basic Auth format — empty username mandatory: base64(":key"), not base64("key")
No campaign deletion — only pause via API
Email encoding — @ → %40 in URL path params
Webhook auto-deletion — 404/410 response silently removes the webhook
No rate limiting — the public API does not throttle
Variable deletion — DELETE /leads/:id/variables deletes vars, not the lead
Sync vs async export — /export returns CSV directly, /export/start + poll for large volumes
Limits — 100 items/page, 200 webhooks/team, 100 API keys/team
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: micktaiwan
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T05:47:11.923Z
- Expires at: 2026-05-19T05:47:11.923Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lemlist-official)
- [Send to Agent page](https://openagent3.xyz/skills/lemlist-official/agent)
- [JSON manifest](https://openagent3.xyz/skills/lemlist-official/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lemlist-official/agent.md)
- [Download page](https://openagent3.xyz/downloads/lemlist-official)