Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

dedao-dl-skill得道 dl 技能

Agent Skill

dedao-dl-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,128

周安装

422

GitHub Stars

1

下载量

3,376
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dedao-dl-skill(得道 dl 技能)
来源仓库:https://github.com/angjustinl/dedao-dl-skill
安装命令:
openclaw skills install dedao-dl-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install dedao-dl-skill

简介

处理 Dedao(得到)应用内容的下载与管理,支持课程列表查询。

  • 通过 CLI 工具实现离线内容获取与本地存储。
  • 适用于知识付费平台内容归档需求。
  • 安装前需确认权限范围、维护状态及是否触发账号认证与文件写入。
  • dedao-dl-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
dedao-dl
description
Handles interactions with the dedao-dl CLI tool for downloading and managing content from the Dedao (得到) App. Use when the user wants to list bought courses, ebooks, audiobooks, or download them in various formats (PDF, MP3, Markdown, EPUB).

dedao-dl

This skill guides the agent in using the dedao-dl CLI tool to interact with the Dedao (得到) app content.

Initialization

MANDATORY FIRST STEP: Before using any dedao-dl commands for the first time, you MUST run the installation script and verify the CLI is available.

Run the script to download the latest binary for the current OS:

python scripts/install_dedao_dl.py

After installation, you should ALWAYS use the helper script scripts/run_dedao.py to execute commands instead of running the raw dedao-dl executable. The helper script cleans up the CLI's terminal formatting, making the output directly readable by you without needing to redirect it to text files. Example: Use python scripts/run_dedao.py -h instead of ./dedao-dl -h.

Prerequisites & Login

Before downloading any content, ensure the user is logged in:

  • Command: python scripts/run_dedao.py login -q (QR code login) or python scripts/run_dedao.py login -c "<cookie_string>"
  • Verify current user: python scripts/run_dedao.py who
  • List logged-in users: python scripts/run_dedao.py users
  • Switch user: python scripts/run_dedao.py su

Dependencies for specific formats (inform the user if they are missing):

  • PDF generation requires wkhtmltopdf
  • Audio generation requires ffmpeg
  • Markdown requires no additional dependencies

General Workflow

For any content download, the typical two-step workflow is:

  1. List the specific type of content to find its ID.
  2. Use the corresponding download command with the ID and format flag (-t).

Key Workflows & Commands

1. Courses (专栏/课程) & Free Content (免费专区)

  • List purchased courses: python scripts/run_dedao.py course
  • List free courses: python scripts/run_dedao.py free (Returns EnID strings instead of integer IDs)
  • List articles in a course:

- For purchased courses (using integer ID): python scripts/run_dedao.py course -i <course_ID> - For free courses (using EnID): python scripts/run_dedao.py article -c <course_EnID>

  • Download a single article (RECOMMENDED): python scripts/run_dedao.py dl <course_ID_or_EnID> <article_ID> -t <format>
  • Download a full course: python scripts/run_dedao.py dl <course_ID_or_EnID> -t <format> [options]

- WARNING: NEVER download a full course (only 1 parameter) without explicit user permission. Full downloads can take hours, consume massive disk space, and trigger anti-bot bans. - Formats (-t): 1 (MP3), 2 (PDF), 3 (Markdown, DEFAULT FOR THE AGENT) - Options for Markdown (-t 3): -m (merge into one file), -c (include hot comments) - Prefix ordering: -o (adds index prefix like 00x.) *Note: When downloading as PDF, be aware of rate limits ("496 NoCertificate"). Add sleep intervals if scripting.*

2. E-Books (电子书)

  • List e-books: python scripts/run_dedao.py ebook
  • Download an e-book: python scripts/run_dedao.py dle <ebook_ID> -t <format>

- Formats (-t): 1 (HTML, default), 2 (PDF), 3 (EPUB), 4 (Markdown Notes)

  • View e-book notes: python scripts/run_dedao.py ebook notes -i <ebook_ID>
  • Export e-book notes: python scripts/run_dedao.py dle <ebook_ID> -t 4 (Downloads notes as Markdown)

3. Audiobooks (每天听本书)

  • List audiobooks: python scripts/run_dedao.py odob
  • Download audiobook audio/text: python scripts/run_dedao.py dlo <audiobook_ID> -t <format>

- Formats (-t): 1 (MP3), 2 (PDF), 3 (Markdown, DEFAULT FOR THE AGENT)

4. Other Content

  • List all categories & stats: python scripts/run_dedao.py cat
  • List 'JinNang' (锦囊): python scripts/run_dedao.py ace
  • List recommended topics (知识城邦): python scripts/run_dedao.py topic

Execution Guidelines

  • Always check python scripts/run_dedao.py -h or python scripts/run_dedao.py <command> -h if unsure of the exact arguments.
  • Always retrieve the correct ID first before executing a download command. Make sure you use the list command corresponding to the content type you want to download (e.g., course ID for dl, ebook ID for dle, odob ID for dlo). Do not mix up IDs across categories.
  • NEVER download an entire course (e.g. python scripts/run_dedao.py dl <course_ID_or_EnID>) unless the user explicitly asks you to. Many courses have hundreds of articles which can lead to account bans.
  • ALWAYS favor downloading a single article: First list the course articles using course -i <course_ID> or article -c <course_EnID>, find the specific article ID, and use python scripts/run_dedao.py dl <course_ID_or_EnID> <article_ID>.
  • DEFAULT FORMAT: Whenever you download content using dl or dlo, default to using -t 3 (Markdown) unless the user explicitly asks for MP3 or PDF. Markdown is safer, faster, and easier to read.
  • When generating markdown for a whole course (if permitted by the user), consider using -m to consolidate files unless the user explicitly asks for individual files.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.62%
按下载量换算2,924

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install dedao-dl-skill 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills