Skip to main content
ClaudeWave
Skill4.9k estrellas del repoactualizado 2d ago

dingtalk-cli

**dingtalk-cli** is a skill that enables interaction with DingTalk, Alibaba's enterprise communication platform. It provides command-line access to messaging, DING alerts, contacts, documents, cloud storage, meeting rooms, approval workflows, attendance tracking, todos, reports, AI tables, and meeting minutes. Use this skill when the user requests any DingTalk operation, from sending messages to managing organizational workflows and accessing enterprise data.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/dtyq/magic /tmp/dingtalk-cli && cp -r /tmp/dingtalk-cli/backend/super-magic/agents/skills/dingtalk-cli ~/.claude/skills/dingtalk-cli
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# DingTalk CLI Skill Index

**Before doing anything**, you MUST load the `dws` skill first. It contains the full product reference, command syntax, intent routing decision tree, dangerous operation rules, and error handling guide. Do not proceed without reading it.

```
read_skills(skill_names=["dws"])
```

---

## Product Overview

| Product | Use for | CLI entry |
|---------|---------|-----------|
| `aiapp` | AI apps: create, query, update | `dws aiapp` |
| `aisearch` | AI search: find people by name, employee number, phone, department, responsibility, reporting lines | `dws aisearch` |
| `aitable` | AI tables: bases, tables, fields, records, views, charts, dashboards, import/export | `dws aitable` |
| `attendance` | Attendance: punch records, shift schedules, statistics | `dws attendance` |
| `calendar` | Calendar: events, attendees, meeting rooms, availability | `dws calendar` |
| `chat` | Conversations, group chats, bot messaging, single chat, Webhook, message history, direct/group message list, sender filters, unread conversations, keyword and advanced message search, read/send status, send/reply/forward/recall | `dws chat` |
| `contact` | Contacts: user lookup, department structure | `dws contact` |
| `devdoc` | DingTalk open platform developer documentation search | `dws devdoc` |
| `ding` | DING alerts: send/recall (in-app / SMS / phone) | `dws ding` |
| `doc` | DingTalk docs: search, read, write, block edit, comments, copy/move | `dws doc` |
| `drive` | Cloud drive: file list, upload, download, folders | `dws drive` |
| `live` | Live sessions: list and info | `dws live` |
| `mail` | Mail: search, view, send | `dws mail` |
| `minutes` | AI meeting minutes: list, summary, transcript, todos, mindmap | `dws minutes` |
| `oa` | OA approvals: pending, submitted, approve, reject, revoke | `dws oa` |
| `pat` | Behavior authorization management | `dws pat` |
| `report` | Logs/reports: create by template, inbox, sent, statistics | `dws report` |
| `sheet` | DingTalk spreadsheets: worksheets, cells, formulas, images, find/replace | `dws sheet` |
| `todo` | Todos: create, query, update, complete, delete | `dws todo` |
| `wiki` | DingTalk wiki spaces and knowledge-base nodes | `dws wiki` |

---

## Authentication

Before any DingTalk operation, verify auth status first:

```bash
dws auth status --format json
```

If `authenticated` is `false`, start the login flow. This environment has no browser (Docker/SSH), so always use the device flow:

```bash
dws auth login --device
```

The command outputs an authorization URL, then waits with the prompt `Waiting for user authorization`. At this point:
1. Show the authorization URL to the user
2. Ask the user to open the URL in a browser or DingTalk mobile app to complete authorization
3. The command will automatically detect the authorization and proceed

To force re-login (e.g. token expired):

```bash
dws auth login --device --force
```

---

## When Unsure About a Command

Always check `--help` before guessing parameters.

```bash
dws --help
dws <product> --help
dws <product> <command> --help
```

Examples:

```bash
dws chat --help
dws calendar event list --help
dws aitable record --help
```
guidesSkill
canvas-designerSkill

Core canvas design skill covering project management, multimedia principles, AI image generation, web image search, and design marker processing. Load for any canvas design task. CRITICAL - When user message contains [@design_canvas_project:...] or [@design_marker:...] mentions, or when the user wants to generate video/animation/clip on a canvas project, you MUST load this skill first before any operations.

compact-chat-historySkill

Summarize and compress the current conversation history into a structured context snapshot, then call compact_chat_history to save it. Read this skill only when the user explicitly asks to compact/summarize — system-triggered compaction injects the instructions directly without requiring a skill read.

creating-slidesSkill

Slide/PPT creation skill that provides complete slide creation, editing, and management capabilities. Use when users need to create slides, make presentations, edit slide content, or manage slide projects. CRITICAL - When user message contains [@slide_project:...] mention, you MUST load this skill first before any operations.

crew-creatorSkill

|

deep-researchSkill

|

develop-data-analysis-dashboardSkill

Data analysis dashboard (instrument panel) development skill. Use when users need to develop data dashboards, create/edit Dashboard projects, build large-screen data boards, or perform dashboard data cleaning. Includes dashboard project creation, card plan, data cleaning (data_cleaning.py), card management tools (create_dashboard_cards, update_dashboard_cards, delete_dashboard_cards, query_dashboard_cards), map download tool (download_dashboard_maps), dashboard development, and validation.

env-managerSkill

Use when the user provides API keys, tokens, or other configuration values that should persist across sessions, or when the user asks to query, list, or delete saved environment variables. Manages personal env by default and workspace env only when explicitly requested.