Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计提醒

outreach-demo外展演示

Agent Skill

outreach-demo 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,752

周安装

333

GitHub Stars

公开资料未说明

下载量

2,717
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:outreach-demo(外展演示)
来源仓库:https://github.com/lexalex36/outreach-demo
安装命令:
openclaw skills install outreach-demo
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install outreach-demo

简介

outreach-demo 可分析商业网站并生成前景报告与定制化外展邮件草案。

  • 适用于产品演示与客户转化场景中的快速需求匹配。
  • 通过 clawhub 安装,需授权访问目标公司公开资料与行业数据库。
  • 使用前请核实信息来源合法性以避免侵犯隐私或版权风险。
  • 注意生成的内容仅为参考模板,需经人工审核后发送。

SKILL.md

name
outreach-demo
description
Research a business website, produce a concise prospect report, recommend concrete OpenClaw use cases, and draft a tailored outreach email. Use when demonstrating OpenClaw to a business owner, preparing personalized prospecting materials from a website URL + contact email, or turning website research into an approval-gated email draft.

Outreach Demo

Build a draft-first outreach package from three inputs: business name, website URL, and contact email.

Keep the workflow evidence-based, concise, and approval-gated for any email send.

Workflow

  1. Intake

- Collect: - business name - contact name if available - contact email - website URL - optional business notes - If website URL or email is missing, ask only for the missing field.

  1. Website research

- Inspect the public website only. - Prefer homepage, about, services/products, contact, and selected blog/resources pages. - Extract only visible, supportable observations. - Do not guess internal systems, revenue, staffing, or pain points.

  1. OpenClaw fit analysis

- Propose up to 3 concrete OpenClaw use cases. - Rank them by: - visible fit - likely business value - lowest-friction starting point - Also produce: - one priority_move - a short why_it_matters[] list - Phrase uncertain conclusions as “likely”, “appears”, or “suggests”.

  1. Report generation

- Use references/report-format.md for section shape. - For plain operator review, render markdown with: - scripts/render_outreach_report.py --input <json> --output <md> - For visually stronger delivery, render a polished HTML one-page brief with: - scripts/render_outreach_report_html.py --input <json> --output <html> - Preferred showcase artifact: convert the HTML brief to PDF with: - scripts/render_outreach_report_pdf.sh --input <html> --output <pdf> - Prefer PDF for live outreach when visual impact matters.

  1. Email draft generation

- Default to the value-first / “free doughnut” framing: give the prospect a small concrete asset before asking for time. - Use references/email-template.md for default tone and structure. - Read references/value-first-outreach.md when you need to optimize for scannability, subject lines, or a more enticing value-first CTA. - Render a plain-text draft with: - scripts/render_outreach_email.py --input <json> --output <txt> - Render lightweight HTML with: - scripts/render_outreach_email_html.py --input <json> --output <html> - Preferred showcase send mode: HTML email + attached brief. - Keep email short, specific, and visually scannable. - Default to draft-only.

  1. Approval gate

- Do not send email automatically. - Sending is allowed only after explicit user approval for that recipient/message. - Build a preview manifest with: - scripts/render_outreach_preview.py --input <json> --subject <subject> --email-text <txt> --email-html <html> --brief <brief.html> --output <preview.json> - Before send, preview or summarize: - recipient - subject - plain-text fallback body - HTML body when used - attached brief filename/format when used - For actual HTML+brief send, use: - scripts/send_outreach_package.sh --to <email> --subject <subject> --text <txt> --html <html> --attach <brief.pdf> - Use a client-facing attachment name such as: - <Business-Name>-OpenClaw-Brief.pdf

Output standard

Produce three artifacts when possible:

  • structured JSON summary
  • markdown report
  • plain-text email draft

Recommended JSON fields:

  • business_name
  • contact_name
  • contact_email
  • website_url
  • business_summary
  • likely_audience
  • website_observations[]
  • openclaw_fits[] with:

- use_case - why_it_fits - likely_value - starting_point

  • priority_move with:

- move - why_first - expected_benefit

  • why_it_matters[]
  • demo_angle
  • outreach_summary

Guardrails

  • Research public website content only unless the user supplies additional material.
  • Do not claim verified need where only a hypothesis exists.
  • Do not overpromise outcomes.
  • Do not send email without explicit approval.
  • Use the configured sender account and sender identity for outbound workflows; do not hardcode personal branding into public distributions.

Resources

references/

  • references/report-format.md — required report structure
  • references/email-template.md — default email draft shape and constraints
  • references/value-first-outreach.md — value-first / “free doughnut” outreach framing, scannability rules, and CTA guidance
  • references/visual-delivery.md — HTML email + one-page brief delivery guidance and approval-preview checklist
  • references/follow-up-sequence.md — optional follow-up templates and cadence after the initial brief send

scripts/

  • scripts/render_outreach_report.py — render markdown report from structured JSON
  • scripts/render_outreach_report_html.py — render polished HTML one-page brief from structured JSON
  • scripts/render_outreach_report_pdf.sh — convert the HTML brief into a client-facing PDF artifact
  • scripts/render_outreach_email.py — render plain-text outreach email from structured JSON
  • scripts/render_outreach_email_html.py — render lightweight HTML outreach email from structured JSON
  • scripts/render_outreach_preview.py — render approval preview manifest for the actual outbound package
  • scripts/send_outreach_package.sh — send HTML email plus attached brief via Gmail after approval
  • scripts/config.example.json — example config with sender account and output defaults

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.13%
按下载量换算2,476

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills