安全扫描
OpenClaw
安全
high confidence该技能是一个仅含指令、单一用途的封装器,要求智能体调用 Google Workspace 插件创建 Gmail 草稿——其需求与指令均围绕此目的设计。
评估建议
This skill is an atomic instruction that simply tells your agent to call the google-workspace-plugin to create a draft. Before installing, confirm the google-workspace-plugin is a trusted source and review the OAuth scopes it requests (it will need access to your Gmail/drafts). Also note the SKILL.md's small metadata mismatch (os: windows) — harmless but indicative of minimal maintenance. If you don't want agents to create or modify emails autonomously, control agent invocation or avoid enabling...详细分析 ▾
✓ 用途与能力
Name/description state creating a Gmail draft and the SKILL.md explicitly requires the google-workspace-plugin and a single plugin tool (gworkspace_gmail_draft). The declared purpose matches what the instructions ask the agent to do.
✓ 指令范围
Instructions are minimal and scoped: they direct the agent to call the plugin tool when asked to draft an email. The SKILL.md does not ask the agent to read files, environment variables, or other system state outside the plugin call. Minor note: the frontmatter lists os: windows which is unnecessary for an instruction-only skill and may be an accidental mismatch.
✓ 安装机制
No install spec and no code files — the skill only contains runtime instructions. This has the lowest installation risk. The real dependency is the external google-workspace-plugin, which must be present in the agent environment.
ℹ 凭证需求
The skill itself does not request environment variables or credentials (none declared). However, using the google-workspace-plugin will require Google credentials/OAuth scopes to access Gmail; those credentials are managed by the plugin, not this skill. Users should verify the plugin's required OAuth scopes and trustworthiness before enabling it.
✓ 持久化与权限
always:false and no config paths requested. The skill does not request permanent/global presence or modifications to other skills. Autonomous invocation is allowed by default (platform behavior) but the skill itself does not escalate privileges.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/4/26
- Gmail Draft Email 技能首次发布。 - 通过 GoogleWorkspace 插件创建草稿邮件。 - 遵循精益原则:原子节点设计、标准化流程、自主错误检测。 - 接收 "to"、"subject"、"body" 参数;返回含 draft ID 的 JSON 确认。
● Pending
安装命令
点击复制官方npx clawhub@latest install gmail-draft-email
镜像加速npx clawhub@latest install gmail-draft-email --registry https://cn.longxiaskill.com镜像同步中
技能文档
精益理念(原则)
- Kaizen(改善): 本技能为原子节点,拆解至最简单、最小单元,以消除浪费并确保完美。
- 标准化作业(Hyojun Sagyo): 该节点代表自动化前完成此任务最高效、标准化的路径。
- Jidoka(自働化): 节点具备自主缺陷检测能力,依赖插件的自修复循环;若操作失败将报错。
# Gmail Draft Email 本技能允许 agent 创建草稿邮件。
认知指令
当 [被要求起草一封稍后审阅或发送的邮件] 则 [执行gworkspace_gmail_draft 插件工具] 模式示例
``json
{
"to": "client@example.com",
"subject": "Proposal Draft",
"body": "Here is the draft for the upcoming proposal..."
}
``