Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
breath57 avatar

Dingtalk Contact

  • 284 installs
  • 97 repo stars
  • Updated June 26, 2026
  • breath57/dingtalk-skills

dingtalk-contact is an integration skill that wires Claude agents to DingTalk contact APIs for enterprise directory lookup, sync, and messaging workflows inside SaaS or internal tooling builds.

About

dingtalk-contact is a breath57/dingtalk-skills module for connecting AI agents to DingTalk enterprise contact endpoints. It guides directory lookup, contact sync, and messaging workflow setup when building SaaS or internal tools that must read or act on DingTalk org data. Developers reach for dingtalk-contact when agents need authenticated calls to DingTalk contact APIs instead of manual OpenAPI exploration. The skill fits enterprise integrations where Claude or Cursor agents orchestrate HR directory queries, contact synchronization jobs, or notification flows against DingTalk backends.

  • DingTalk contact API wiring
  • Enterprise directory lookup
  • Agent-driven contact sync
  • Tenant and OAuth scoping
  • Messaging workflow hooks

Dingtalk Contact by the numbers

  • 284 all-time installs (skills.sh)
  • Ranked #499 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/breath57/dingtalk-skills --skill dingtalk-contact

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs284
repo stars97
Last updatedJune 26, 2026
Repositorybreath57/dingtalk-skills

How do you integrate DingTalk contact APIs in agents?

Wire Claude agents to DingTalk contact APIs for enterprise directory lookup, sync, and messaging workflows inside SaaS or internal tooling builds.

Who is it for?

Developers building enterprise SaaS or internal tools that must query or sync DingTalk organizational contacts via agents.

Skip if: Products outside the DingTalk ecosystem or teams without enterprise messaging and directory requirements.

When should I use this skill?

A build task needs DingTalk directory lookup, contact sync, or messaging API integration through an agent.

What you get

DingTalk contact API integration with directory lookup, sync jobs, and messaging workflow hooks.

  • DingTalk contact API client wiring
  • Directory sync or messaging workflow stubs

Files

SKILL.mdMarkdownGitHub ↗

钉钉通讯录技能

负责钉钉通讯录的所有查询操作。本文件为策略指南,仅包含决策逻辑和工作流程。完整 API 请求格式见文末「references/api.md 查阅索引」。

dt_helper.sh 位于本 SKILL.md 同级目录的 scripts/dt_helper.sh

工作流程(每次执行前)

1. 先识别本次任务类型 → 例如:搜索用户、查用户详情、搜索部门、列部门成员、查部门路径、统计员工数 2. 按本次任务校验所需配置 → 通过 bash scripts/dt_helper.sh --get KEY 读取;仅校验本任务必须项 3. 仅收集缺失配置 → 若缺少某项,一次性询问用户所有缺失值,用 bash scripts/dt_helper.sh --set KEY=VALUE 写入 4. 获取 Token → 直接调用 bash scripts/dt_helper.sh 5. 执行操作 → 复杂的创建临时文件再执行,简单的直接执行;禁止 heredoc

按任务校验配置(必须先做)

  • 所有任务通用必需DINGTALK_APP_KEYDINGTALK_APP_SECRET
  • 需要“以当前操作者为起点”或“直接读取本人身份信息”的任务:必须有 DINGTALK_MY_USER_ID
规则:未通过“本次任务配置校验”前,不得进入 API 调用步骤。
凭证禁止在输出中完整打印,确认时仅显示前 4 位 + ****

所需配置

配置键必填说明如何获取
DINGTALK_APP_KEY应用 AppKey钉钉开放平台 → 应用管理 → 凭证信息
DINGTALK_APP_SECRET应用 AppSecret同上
DINGTALK_MY_USER_ID当前操作用户的 userId(即运行此技能的人自己),仅在需要以自身为起点查询时才需要管理后台 → 通讯录 → 成员管理 → 点击姓名查看

身份标识说明

标识说明
userId(= staffId企业内部员工 ID,可通过通过管理后台 -> 通讯录 -> 成员管理 -> 点击姓名查看
unionId跨企业/跨应用唯一标识,可通过 bash scripts/dt_helper.sh --to-unionid <userid> 获取

执行脚本模板

#!/bin/bash
set -e
HELPER="./scripts/dt_helper.sh"
NEW_TOKEN=$(bash "$HELPER" --token)       # api.dingtalk.com 接口用
OLD_TOKEN=$(bash "$HELPER" --old-token)   # oapi.dingtalk.com 接口用
# USER_ID=$(bash "$HELPER" --get DINGTALK_MY_USER_ID)  # 以当前操作用户为起点时启用

# 在此追加具体 API 调用,例如按姓名搜索用户并获取详情:
KEYWORD="张三"
SEARCH=$(curl -s -X POST https://api.dingtalk.com/v1.0/contact/users/search \
  -H "x-acs-dingtalk-access-token: $NEW_TOKEN" \
  -H 'Content-Type: application/json' \
  -d "{\"queryWord\":\"$KEYWORD\",\"offset\":0,\"size\":20}")
echo "搜索结果: $SEARCH"

TARGET_UID=$(echo "$SEARCH" | grep -o '"list":\["[^"]*"' | grep -o '"[^"]*"$' | tr -d '"')
DETAIL=$(curl -s -X POST "https://oapi.dingtalk.com/topapi/v2/user/get?access_token=${OLD_TOKEN}" \
  -H 'Content-Type: application/json' \
  -d "{\"userid\":\"$TARGET_UID\",\"language\":\"zh_CN\"}")
echo "用户详情: $DETAIL"
Token 失效处理:dt_helper 仅按时间缓存,无法感知 token 被提前吊销。若 API 返回 errcode 40001/40014(token 无效/过期),用 --nocache 跳过缓存强制重新获取:
```bash
OLD_TOKEN=$(bash "$HELPER" --old-token --nocache) # 强制重新获取旧版 token
NEW_TOKEN=$(bash "$HELPER" --token --nocache) # 强制重新获取新版 token
```

references/api.md 查阅索引

确定好要做什么之后,用以下命令从 references/api.md 中提取对应章节的完整 API 细节(请求格式、参数说明、返回值示例):

grep -A 30 "^## 1. 按关键词搜索用户" references/api.md
grep -A 50 "^## 2. 获取用户完整详情" references/api.md
grep -A 20 "^## 3. unionId → userId 转换" references/api.md
grep -A 18 "^## 4. 企业员工总人数" references/api.md
grep -A 25 "^## 5. 按关键词搜索部门" references/api.md
grep -A 25 "^## 6. 获取子部门列表" references/api.md
grep -A 20 "^## 7. 获取子部门 ID 列表" references/api.md
grep -A 25 "^## 8. 获取部门详情" references/api.md
grep -A 40 "^## 9. 获取部门成员完整列表" references/api.md
grep -A 18 "^## 10. 获取部门成员 userId 列表" references/api.md
grep -A 20 "^## 11. 获取用户所在部门路径" references/api.md
grep -A 12 "^## 错误码" references/api.md
grep -A 6 "^## 所需应用权限" references/api.md

Related skills

FAQ

What does dingtalk-contact integrate?

dingtalk-contact integrates Claude agents with DingTalk contact APIs for enterprise directory lookup, contact synchronization, and messaging workflows inside SaaS or internal tooling projects.

Who needs dingtalk-contact?

dingtalk-contact suits developers building enterprise applications that must read, sync, or message DingTalk organizational contacts through agent-driven API workflows.

Automation & Workflowsintegrationsbackend

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.