# Send DingTalk Push to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "dingtalk-push",
    "name": "DingTalk Push",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/andrewqumm/dingtalk-push",
    "canonicalUrl": "https://clawhub.ai/andrewqumm/dingtalk-push",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/dingtalk-push",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dingtalk-push",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "config.example.json",
      "send.js",
      "tool.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "dingtalk-push",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:13:28.751Z",
      "expiresAt": "2026-05-06T17:13:28.751Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dingtalk-push",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=dingtalk-push",
        "contentDisposition": "attachment; filename=\"dingtalk-push-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "dingtalk-push"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/dingtalk-push"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/dingtalk-push",
    "downloadUrl": "https://openagent3.xyz/downloads/dingtalk-push",
    "agentUrl": "https://openagent3.xyz/skills/dingtalk-push/agent",
    "manifestUrl": "https://openagent3.xyz/skills/dingtalk-push/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/dingtalk-push/agent.md"
  }
}
```
## Documentation

### skill: dingtalk-push

发送钉钉群聊机器人消息的技能。

### 触发条件

用户请求发送钉钉消息
定时任务需要推送通知到钉钉
需要集成钉钉群机器人到其他工作流

### 功能

发送 Markdown 格式消息到钉钉群
支持消息类型（success/warning/error/info）
支持 @指定人员和 @所有人
支持加签验证（安全）

### 直接发送消息

在对话中直接使用：

发送钉钉消息 "定时任务完成"
发送钉钉 "服务器备份成功" --type success
通知钉钉群 "系统维护通知" --all

### 编程调用

// 调用 skill 工具
const result = await tools.dingtalk_push({
  message: "定时任务完成",
  type: "success"
});

### 命令行调用

node skills/dingtalk-push/send.js -m "消息内容"
node skills/dingtalk-push/send.js -m "警告" --type warning
node skills/dingtalk-push/send.js -m "错误" --type error --all

### 配置

需要设置以下环境变量或配置文件：

DINGTALK_WEBHOOK - 钉钉机器人Webhook地址
DINGTALK_SECRET - 加签密钥（可选）

配置文件位置：~/.config/dingtalk-push/config.json

{
  "webhook": "https://oapi.dingtalk.com/robot/send?access_token=xxx",
  "secret": "SEC_xxx"
}

### 消息类型

类型Emoji适用场景infoℹ️普通通知success✅成功完成任务warning⚠️警告、需要关注error❌错误、异常

### 输出

返回发送结果：

{
  "success": true,
  "messageId": "msg_xxx",
  "timestamp": "2026-02-14T12:00:00Z"
}

### 依赖

Node.js 16+
axios (已内置在OpenClaw中)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: andrewqumm
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T17:13:28.751Z
- Expires at: 2026-05-06T17:13:28.751Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/dingtalk-push)
- [Send to Agent page](https://openagent3.xyz/skills/dingtalk-push/agent)
- [JSON manifest](https://openagent3.xyz/skills/dingtalk-push/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/dingtalk-push/agent.md)
- [Download page](https://openagent3.xyz/downloads/dingtalk-push)