openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Lead Outreach CRM

Track leads locally, manage outreach campaigns, and export as CSV for download.

通信与消息

作者:pbopps @3rdbrain

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 15 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:3rdbrain/outreach-crm

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is internally coherent: it implements a local, file-based CRM (save/list/log/export/clear) and does not request credentials, external installs, or network access in the files reviewed.

目的

The name/description (local lead tracking, outreach sequences, CSV export) match the code and SKILL.md. The code implements lead scoring, outreach template generation, saving/loading leads to a local JSON file, and CSV export — all expected for a local CRM skill.

说明范围

Runtime instructions are limited to running the provided Node CLI and working with files in the agent workspace (/root/.openclaw/workspace by default). The SKILL.md does not instruct reading unrelated system files or sending data to external endpoints. Note: the skill writes lead data to the agent workspace, so exported/stored leads (which may include PII) reside in container storage until removed.

安装机制

No install spec — instruction-only with a single JS file and package.json. Nothing is downloaded or written during install from external URLs.

证书

The skill declares no required credentials or env vars, which matches its local-only behavior. The code reads OPENCLAW_WORKSPACE (process.env.OPENCLAW_WORKSPACE) as an override for workspace location; this env var is not listed in SKILL.md's 'requires' but its use is low-risk and limited to where data is stored.

持久

The skill does not request always: true and does not modify other skills. It persists data only to its workspace files (leads.json, leads.csv), which is expected for a local CRM.

综合结论

This skill appears to do exactly what it says: store leads locally and export CSVs. Before installing, consider: (1) Stored leads live in the agent workspace (/root/.openclaw/workspace by default) — don't store sensitive PII there unless you're comfortable with that storage. (2) You can change the workspace path with OPENCLAW_WORKSPACE if needed (the code reads that env var). (3) There is no external sync in the code you reviewed (CRM sync is …

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Lead Outreach CRM」。简介:Track leads locally, manage outreach campaigns, and export as CSV for download.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/3rdbrain/outreach-crm/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: outreach-crm
description: Track leads locally, manage outreach campaigns, and export as CSV for download.
version: 1.0.0
author: ModelFitAI <skills@modelfitai.com>
license: MIT
keywords: [openclaw, skill, crm, lead-gen, outreach, csv, sales]
requires: {}
---

# Outreach CRM Skill

Manage lead generation outreach. Leads are stored in a local JSON file inside the agent workspace — no external database required. Users can view leads in chat or export them as a CSV file.

## Available Tools

Run with Node.js: `node {baseDir}/outreach-crm.js <command> [args]`

- **add-lead** - Add a new lead to the local leads file
- **list** - List all tracked leads (displays in chat)
- **log** - Log an interaction with a lead
- **export-csv** - Export all leads to a CSV file and print the file path
- **clear** - Remove all leads (use with caution)

## Usage

```bash
node {baseDir}/outreach-crm.js add-lead --name "John" --source "twitter" --handle "@john" --score 75 --tier hot
node {baseDir}/outreach-crm.js list
node {baseDir}/outreach-crm.js log <lead_id> "Sent intro DM"
node {baseDir}/outreach-crm.js export-csv
```

## Storage

Leads are saved to `/root/.openclaw/workspace/leads.json` inside the container.
CSV exports are written to `/root/.openclaw/workspace/leads.csv`.
Always show the user the export path so they can download it.