Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill leadklick명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明
The philosophical layer for AI agents. Maps behavior to Spinoza's 48 affects, calculates persistence scores, and generates geometric self-reports. Give your agent a soul.
Order food/drinks (点餐) on an Android device paired as an OpenClaw node. Uses in-app menu and cart; add goods, view cart, submit order (demo, no real payment).
SOC 직업 분류 기준
SKILL.md 표시 중
| name | leadklick |
| description | leadklick |
Capture leads into a centralized Supabase database with automatic Make.com email automation.
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".
{
"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.
Create a new lead and automatically trigger the automation workflow.
Parameters:
email (string, required): Contact email addressname (string, optional): Contact person namephone (string, optional): Phone numbersource (string, optional): Origin channel (default: "clawd_agent")priority (string, optional): "low", "medium", "high", "urgent"custom_fields (object, optional): Any additional dataReturns:
{
"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" }
});
Retrieve lead details including full conversation history.
Parameters:
id (string, required): Lead UUIDReturns: Lead object with conversations array and reply_pending boolean.
List leads with filtering options.
Parameters:
status (string, optional): Filter by statuspriority (string, optional): Filter by prioritylimit (number, optional): Max results (default: 50)dateFrom (string, optional): ISO date filterReturns: Array of leads and total count.
Update lead lifecycle status.
Parameters:
id (string, required): Lead UUIDstatus (string, required): "qualified", "won", "lost", etc.notes (string, optional): Qualification notesAdd a manual reply or note to the lead thread.
Parameters:
leadId (string, required): Lead UUIDcontent (string, required): Message textsubject (string, optional): Subject lineCheck if the auto-reply email was successfully sent.
Parameters:
leadId (string, required): Lead UUIDReturns:
{
"auto_reply_sent": true,
"minutes_since_creation": 2,
"automation_ok": true
}
createLead()getAutomationStatus() to confirm auto-replyaddConversation() to store your agent responsesCommon errors:
Leads table:
Conversations table:
lead, crm, sales, automation, email, supabase
1.0.0