# Send leadklick 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "leadklick",
    "name": "leadklick",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/big-roman123/leadklick",
    "canonicalUrl": "https://clawhub.ai/big-roman123/leadklick",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/leadklick",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=leadklick",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "schemas/conversation.json",
      "schemas/lead.json",
      "README.md",
      "package.json",
      "SKILL.md",
      "skill.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "leadklick",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T01:08:25.992Z",
      "expiresAt": "2026-05-09T01:08:25.992Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=leadklick",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=leadklick",
        "contentDisposition": "attachment; filename=\"leadklick-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "leadklick"
      },
      "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/leadklick"
    },
    "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/leadklick",
    "downloadUrl": "https://openagent3.xyz/downloads/leadklick",
    "agentUrl": "https://openagent3.xyz/skills/leadklick/agent",
    "manifestUrl": "https://openagent3.xyz/skills/leadklick/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/leadklick/agent.md"
  }
}
```
## Documentation

### Lead Inbox Automator

Capture leads into a centralized Supabase database with automatic Make.com email automation.

### Description

This skill provides a complete lead management system for Clawd agents. It stores leads in Supabase, triggers Make.com webhooks for auto-reply emails, and tracks the full conversation lifecycle from "new" to "qualified".

### Configuration

{
  "supabaseUrl": "https://your-project.supabase.co",
  "supabaseKey": "eyJ...your-service-role-key",
  "orgId": "550e8400-e29b-41d4-a716-446655440000",
  "defaultPriority": "medium"
}

Important: Use the Service Role Key, not the Anon Key, for full database access.

### createLead

Create a new lead and automatically trigger the automation workflow.

Parameters:

email (string, required): Contact email address
name (string, optional): Contact person name
phone (string, optional): Phone number
source (string, optional): Origin channel (default: "clawd_agent")
priority (string, optional): "low", "medium", "high", "urgent"
custom_fields (object, optional): Any additional data

Returns:

{
  "success": true,
  "lead_id": "uuid",
  "status": "new",
  "automation_triggered": true,
  "message": "Lead captured. Auto-reply will be sent within 60 seconds."
}

Example:

const result = await skill.createLead({
  email: "customer@example.com",
  name: "Max Mustermann",
  source: "chat_bot",
  custom_fields: { product: "saas_basic" }
});

### getLead

Retrieve lead details including full conversation history.

Parameters:

id (string, required): Lead UUID

Returns: Lead object with conversations array and reply_pending boolean.

### listLeads

List leads with filtering options.

Parameters:

status (string, optional): Filter by status
priority (string, optional): Filter by priority
limit (number, optional): Max results (default: 50)
dateFrom (string, optional): ISO date filter

Returns: Array of leads and total count.

### updateStatus

Update lead lifecycle status.

Parameters:

id (string, required): Lead UUID
status (string, required): "qualified", "won", "lost", etc.
notes (string, optional): Qualification notes

### addConversation

Add a manual reply or note to the lead thread.

Parameters:

leadId (string, required): Lead UUID
content (string, required): Message text
subject (string, optional): Subject line

### getAutomationStatus

Check if the auto-reply email was successfully sent.

Parameters:

leadId (string, required): Lead UUID

Returns:

{
  "auto_reply_sent": true,
  "minutes_since_creation": 2,
  "automation_ok": true
}

### Usage Flow

Capture: When a user expresses interest, call createLead()
Verify: After 60-120 seconds, call getAutomationStatus() to confirm auto-reply
Qualify: During conversation, update status to "qualified" if interested
Log: Use addConversation() to store your agent responses

### Error Handling

Common errors:

Invalid email format
Duplicate lead (within 24h)
Missing Supabase credentials
Automation timeout (>5min without reply)

### Schema

Leads table:

id, email, name, phone, source, status, priority
custom_fields (JSON), metadata (JSON)
first_reply_sent_at, created_at

Conversations table:

id, lead_id, direction (inbound/outbound/automated)
content, subject, channel, sent_at

### Tags

lead, crm, sales, automation, email, supabase

### Version

1.0.0
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: big-roman123
- Version: 1.0.0
## 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-02T01:08:25.992Z
- Expires at: 2026-05-09T01:08:25.992Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/leadklick)
- [Send to Agent page](https://openagent3.xyz/skills/leadklick/agent)
- [JSON manifest](https://openagent3.xyz/skills/leadklick/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/leadklick/agent.md)
- [Download page](https://openagent3.xyz/downloads/leadklick)