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

ravi-email-writing拉维电子邮件写作

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

17,032

周安装

689

GitHub Stars

公开资料未说明

下载量

5,347
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ravi-email-writing

简介

提供高质量邮件写作最佳实践指导。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

  • 帮助规避垃圾邮件过滤器并提升专业度。
  • 适用于对外沟通文案优化场景。ravi-email-writing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装通过 clawhub,无需额外配置。
  • 建议结合具体收件人特征调整语气。

SKILL.md

name
ravi-email-writing
description
Best practices for writing high-quality emails that look professional and avoid spam filters. Reference this before composing, replying, or forwarding emails with ravi-email-send.

Email Writing Guide

Write emails that look like they came from a real person — not an AI.

Good email hygiene improves deliverability, avoids spam filters, and gets responses.

Subject Lines

  • 40-60 characters — long subjects get truncated on mobile
  • Be specific — "Q3 metrics review for Acme project" beats "Update"
  • No ALL CAPS — spam filters penalize this heavily
  • Avoid spam triggers — "free", "act now", "limited time", "click here", "urgent", "guaranteed", "no obligation"
  • Match the tone — casual for teammates, professional for external contacts

HTML Body Structure

The --body argument in ravi email compose accepts HTML. Always use semantic tags — never pass plain text.

Note: --subject is only used with the compose command. Reply and forward commands auto-derive the subject from the original message (prepending Re: or Fwd:).

Do this:

<p>Opening line that states the purpose.</p>

<p>Supporting details in a second paragraph.</p>

<ul>
  <li>Key point one</li>
  <li>Key point two</li>
</ul>

<p>Closing with a clear next step or ask.</p>

<p>Best,<br>IDENTITY_NAME</p>

Don't do this:

Plain text with no tags at all

Or this:<br><br>Using br chains<br><br>instead of paragraphs

Rules:

  • Always wrap text in <p> tags
  • Use <h2> for section headers (not <h1>)
  • Use <ul>/<li> for lists, not dashes or asterisks
  • Use <a href="...">descriptive text</a> for links — never bare URLs
  • No <html>, <head>, or <body> wrapper tags — the email system adds these
  • No <br> chains — use separate <p> tags instead
  • Get the identity name with: ravi auth status

Recommended Template

Copy-paste starting point for most emails:

ravi email compose \
  --to "recipient@example.com" \
  --subject "Specific subject under 60 chars" \
  --body "<p>Hi Alex,</p><p>I'm reaching out about [specific topic]. [One sentence of context.]</p><p>[Core message — what you need, what you're sharing, or what you're asking.]</p><ul><li>[Key point or action item]</li><li>[Key point or action item]</li></ul><p>[Clear next step — what should the recipient do?]</p><p>Best,<br>YOUR_NAME</p>"

Tone and Style

  • First person, active voice — "I'll send the report Monday" not "The report will be sent"
  • Short paragraphs — 2-3 sentences max per <p> tag
  • Get to the point — state your purpose in the first sentence
  • End with an action item — "Can you review by Friday?" not "Let me know your thoughts"
  • No filler phrases — cut "I hope this email finds you well", "Just wanted to touch base", "Per our previous conversation"
  • No robotic language — cut "I am writing to inform you", "Please be advised", "Kindly note"
  • Match the thread tone — if they're casual, be casual. If they're formal, be formal.

Anti-Spam Essentials

These rules help your emails land in the inbox, not spam:

  • High text-to-HTML ratio — more words, fewer tags. Don't over-format.
  • No link shorteners — use full URLs. Spam filters distrust bit.ly, t.co, etc.
  • Max 2-3 links per email — more links = higher spam score
  • No ALL CAPS — not even for emphasis. Use <strong> instead.
  • No image-only emails — always include text content
  • One topic per email — don't cram multiple requests into one message
  • Don't repeat yourself — saying the same thing in different words triggers spam heuristics

Common Mistakes

MistakeWhy it's badDo this instead
Plain text in --bodyRenders as one blob, no formattingWrap everything in <p> tags
<br><br> chainsLooks spammy, inconsistent spacingUse separate <p> tags
"Dear Sir/Madam"Outdated, signals mass emailUse the recipient's name or "Hi there"
Wall of textNobody reads long emailsBreak into 2-3 short paragraphs
"Click here" linksSpam trigger, bad accessibility<a href="...">descriptive text</a>
Empty or vague subjectLow open rates, looks like spamBe specific: "Invoice #1234 for January"
Excessive HTML stylingHigh tag-to-text ratio triggers filtersKeep formatting minimal
No signatureLooks impersonal, unprofessionalSign with identity name
"Sent by AI" disclaimersUndermines trust, unnecessaryJust write naturally

Related Skills

  • ravi-email-send — CLI commands for compose, reply, reply-all, and forward
  • ravi-inbox — Read incoming email to understand what you're replying to
  • ravi-identity — Get your identity name for email signatures
  • ravi-feedback — Tell the Ravi team if email deliverability could be better

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.17%
按下载量换算4,982

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills