安全扫描
OpenClaw
安全
high confidence该技能是一个仅包含指令的小型封装器,将标签更改委托给 Google Workspace 插件,其需求和行为与其声明的目的一致。
评估建议
This skill is a small wrapper that calls a Google Workspace plugin to add/remove Gmail labels. Before installing, confirm you trust the google-workspace-plugin (it will hold the Google credentials and OAuth scopes needed to modify mail). Verify the plugin's exact tool name and required OAuth scopes, and ensure it only has permissions you are comfortable granting. The SKILL.md's 'os: windows' line is unnecessary; it's safe but you may want to confirm the agent runtime will find the plugin tool un...详细分析 ▾
✓ 用途与能力
Name and description match the instructions: the skill's sole purpose is to call a Google Workspace plugin to modify Gmail labels. It does not request unrelated binaries, files, or credentials.
ℹ 指令范围
SKILL.md instructs only to execute the plugin tool (gworkspace_gmail_modify_labels) with an email ID and label lists — scope is narrow. Minor oddities: the frontmatter sets os: windows (unnecessary for an instruction-only skill) and the tool name differs slightly from the plugin name (google-workspace-plugin vs gworkspace_gmail_modify_labels) — likely benign but worth verifying the exact tool name expected by your agent runtime.
✓ 安装机制
No install spec and no code files; the skill is instruction-only, so nothing will be written to disk by the skill itself.
ℹ 凭证需求
The skill does not request environment variables or credentials itself, which is proportionate. However, the operation requires Google Workspace credentials handled by the referenced plugin — you should ensure the google-workspace-plugin is trusted and has only the minimal OAuth scopes/credentials you accept.
✓ 持久化与权限
always is false and the skill does not request persistent system-wide changes. disable-model-invocation is false (agent may invoke autonomously) — this is the platform default and not concerning here by itself.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/4/26
- Gmail Modify Labels 技能首次发布。 - 通过 GoogleWorkspace 插件实现邮件标签的批量添加与移除。 - 提供简洁 JSON 模式,用于指定邮件 ID 与标签变更。 - 操作失败时利用插件错误处理机制报错。
● 无害
安装命令
点击复制官方npx clawhub@latest install gmail-modify-labels
镜像加速npx clawhub@latest install gmail-modify-labels --registry https://cn.longxiaskill.com镜像同步中
技能文档
精益理念(原则)
- Kaizen(改善): 本技能为原子节点,拆解至最简单、最小单元,消除浪费,追求完美。
- 标准化作业(Hyojun Sagyo): 该节点代表自动化前最高效、标准化的作业路径。
- 自働化(Jidoka): 节点具备自主缺陷检测能力,依赖插件的自修复循环,操作失败时自动报错。
# Gmail Modify Labels 本技能允许智能体批量修改指定邮件的标签。
认知指令
当 [提供邮件 ID 且需添加或移除标签] 则 [执行gworkspace_gmail_modify_labels 插件工具] 模式示例
``json
{
"id": "12345abcde67890",
"addLabels": ["IMPORTANT", "WORK"],
"removeLabels": ["UNREAD"]
}
``