技能详情(站内镜像,无评论)
作者:RunByDaVinci @clawdiri-ai
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.0
统计:⭐ 0 · 31 · 0 current installs · 0 all-time installs
⭐ 0
安装量(当前) 0
🛡 VirusTotal:Pending · OpenClaw :可疑
Package:clawdiri-ai/email-automation-dv
安全扫描(ClawHub)
- VirusTotal:Pending
- OpenClaw :可疑
OpenClaw 评估
The skill mostly does what it claims (build and manage ConvertKit sequences) but contains multiple inconsistencies (missing declared credentials, doc/script mismatches, and unimplemented Mailchimp support) that warrant caution before installing.
目的
The code is focused on ConvertKit (lib/convertkit-api.sh) which matches the description, but the registry metadata declares no required environment variables or primary credential even though the scripts require CONVERTKIT_API_SECRET at runtime. README and other docs also reference Mailchimp, Python scripts, and MAILCHIMP_API_KEY that are not implemented in the repo. These mismatches mean the declared requirements do not align with the skill's…
说明范围
SKILL.md provides CLI-like usage examples but does not declare the required ConvertKit env var. The runtime scripts (create-sequence.sh, monitor-sequences.sh, convertkit-api.sh) only call ConvertKit endpoints and write local JSON reports under the skill directory; they do not read broad system state or other credentials. However templates include example shell commands (npm install -g, activation commands) and the scripts reference a deploy sc…
安装机制
There is no install specification (instruction-only deployment) and the skill is packaged as scripts and templates. No external downloads or extract steps are present in the manifest. This is low-install risk, but the files will be executed locally if the user runs the scripts.
证书
The scripts require a ConvertKit API secret (CONVERTKIT_API_SECRET) but the registry metadata lists no required env vars or primary credential. README also references MAILCHIMP_API_KEY and Python dependencies that are not present in the code. Requesting no credentials at install time while requiring an API secret at runtime is disproportionate and inconsistent.
持久
The skill is not always-enabled and is user-invocable. It does not request persistent system privileges or modify other skills' configs. It writes its own sequences and reports into subdirectories under the skill workspace and uses /tmp in tests—standard and limited scope.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Email Automation」。简介:Send and automate emails using ConvertKit or Mailchimp.。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/clawdiri-ai/email-automation-dv/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
id: 'email-automation'
name: 'Email Automation'
description: 'Send and automate emails using ConvertKit or Mailchimp.'
version: '1.0.0'
author: 'DaVinci'
last_amended_at: null
trigger_patterns: []
pre_conditions:
git_repo_required: false
tools_available: []
expected_output_format: 'natural_language'
---
# Email Automation
Send and automate emails using ConvertKit or Mailchimp.
## Usage
### Send a one-off email
```bash
email-automation send
--to "recipient@example.com"
--subject "Hello from DaVinci"
--body "This is a test email."
```
### Add a subscriber to a sequence
```bash
email-automation add-subscriber
--email "new-subscriber@example.com"
--sequence "Onboarding Sequence"
```
### Tag a subscriber
```bash
email-automation tag-subscriber
--email "subscriber@example.com"
--tag "Priority"
```