Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

dida-clidida CLI 搜索

Agent Skill

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

总安装

20,143

周安装

807

GitHub Stars

4

下载量

6,521
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install dida-cli

简介

在滴答清单中管理任务和项目。当用户请求任务、待办事项、提醒或事件时使用。

  • 适用于 OpenClaw 宿主环境,主要用于任务管理。
  • 通过 openclaw skills install dida-cli 命令安装。
  • 需确认滴答清单 API 权限,避免误操作。
  • dida-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
dida-cli
description
Manage tasks and projects in 滴答清单. Use when user asks for tasks, to-dos, reminders, or event.
homepage
https://dida365.com
metadata
clawdbot
emoji
requires
bins
["dida"]

Dida CLI — How Agents Should Install, Login, and Use

This skill describes how an agent should reliably use @suibiji/dida-cli to help the user install the CLI, log in with OAuth (PKCE), and perform common task/project operations.

Use this skill whenever the user wants to manage Dida via CLI (e.g. "use dida-cli to create a task").


1. Scope & Intent

  • This skill focuses on:

- Installing @suibiji/dida-cli - Logging in via OAuth PKCE - Common project and task workflows (list, create, update, complete, delete, move)

  • This skill does not cover:

- Rare/advanced or extremely destructive operations - Internal development commands or debugging-only flows

When in doubt, prefer safe, narrow actions and ask the user to clarify ambiguous intent.


2. Prerequisites & Environment

  • The user should have:

- Node.js + npm (preferably latest LTS)

  • The CLI is expected to be installed globally.

Always follow this order:

  1. Check if the CLI already exists:
   dida --version

- If this succeeds, the CLI is installed and usable. - If this fails (command not found or similar), proceed to install.

  1. Install the CLI globally (if needed):
   npm install -g @suibiji/dida-cli
  1. Verify installation:
   dida --help
   dida --version

If installation fails due to environment issues (e.g. missing Node, permissions), explain the error to the user and suggest they fix their Node/npm setup first.


3. Authentication (OAuth PKCE)

The CLI uses OAuth PKCE in a browser to log in.

Standard login flow:

  1. Start login:
   dida auth login

- This should open a browser window/tab. - The user logs in and authorizes the app.

Alternative methods

API token: Get your API token from Settings > Account > API Keys:

   dida auth token <token>   # set access token directly (for headless environments)
  1. Confirm login status:
   dida auth status

- If logged in, you can proceed with project/task operations. - If not logged in, clearly tell the user and suggest retrying dida auth login.

  1. Logout (only when explicitly requested):
   dida auth logout

Guidelines:

  • Do not log the user out unless they explicitly ask for it.
  • If login fails (e.g. browser blocked, network error), inform the user and suggest:

- Checking that the browser window actually opened. - Making sure pop-up blockers or firewalls are not blocking the OAuth page. - Trying again later if the API seems temporarily unavailable.


4. Using Projects and Tasks — Typical Workflows

4.1 Listing Projects

To list all projects:

dida project list

For structured data suitable for filtering:

dida project list --json

Agent rule:

  • When you need to select a project programmatically (by name or other fields),

always prefer the --json variant.

4.2 Selecting a Project by Name

When the user refers to a project by name (e.g. "Inbox", "Work"):

  1. Fetch projects with JSON:
   dida project list --json
  1. Find the project with a matching name field.

- If no project matches, tell the user and ask them to confirm the name. - If multiple projects share the same name, show them to the user and ask which one to use. - Once a single project is selected, use its id in subsequent commands.

Rule:

  • Never guess or invent project IDs.
  • Always derive them from actual project list --json output or from explicit user input.

4.3 Creating a Task in a Project

When the user says "create a task in project X":

  1. Resolve X to a project id (see 4.2).
  2. Use:
   dida task create --title "<task title>" --project <projectId>

Optional recommended flags (only if supported by the CLI and relevant to the request):

  • --content "<detailed description>"
  • --dueDate "<ISO 8601 date/time>"
  • Other fields as documented in the CLI/README.

After creation, you may run (if needed):

dida project list --json
# or a specific command to fetch the created task if available

and summarize the created task (id, title, project, due date) to the user.

4.4 Getting / Updating / Completing / Deleting a Task

Get a task (when you know both projectId and taskId):

dida task get <projectId> <taskId>

Update a task:

dida task update <taskId> \
  --id <taskId> \
  --project <projectId> \
  --title "New title"

Add more flags as needed (content, due date, etc.), based on the user’s request.

Complete a task:

dida task complete <projectId> <taskId>

Delete a task (destructive):

dida task delete <projectId> <taskId>

Safety rules:

  • For delete and other destructive operations, the user must clearly ask for it.
  • If the instruction is vague (e.g. "clean up old tasks"), first:

- Show a short list of candidate tasks (titles, due dates, ids). - Ask the user to confirm which ones to complete/delete.

4.5 Moving a Task Between Projects

To move a task from one project to another:

dida task move \
  --from <sourceProjectId> \
  --to <destProjectId> \
  --task <taskId>

Workflow:

  1. Resolve both projects by name (if supplied as names).
  2. Confirm the taskId (either from user or by listing/searching).
  3. Execute the move command.
  4. Optionally confirm the move by fetching the task and summarizing the result.

5. JSON Mode and Structured Handling

Most commands support a --json flag.

When to use --json:

  • Any time you need to:

- Filter by name. - Select from multiple candidates. - Chain commands based on id or other fields.

Examples:

dida project list --json
dida task get <projectId> <taskId> --json

Agent behavior:

  • Use --json for internal decision-making and selection.
  • Convert JSON results into a short, human-readable summary when responding to the user:

- E.g. "Found project: id=…, name=…, color=…".


6. ID and Selection Rules

  • Projects

- Prefer matching by name from project list --json. - If more than one project matches, present options to the user. - Once a project is chosen, use its id and keep it consistent for this operation.

  • Tasks

- If the user gives a concrete taskId, use it directly. - If the user describes a task (e.g. by title or due date) and multiple tasks may match: - Fetch candidate tasks (via appropriate list/get operations). - Show a small selection (id, title, due date). - Ask the user to choose which one(s) to act on.

  • Never fabricate IDs and never assume "the first one" is correct unless:

- You transparently explain what "first" means (e.g. "sorted by creation time, using the most recent one"), - And the user implicitly or explicitly accepts this.


7. Safety & Destructive Operations

  • Treat the following as destructive and require explicit, unambiguous user confirmation:

- task delete - Bulk completion or deletion (if supported) - Any operation that may remove or irreversibly change multiple tasks

Guidelines:

  • If the user uses vague terms like "remove useless tasks", ask:

- What criteria define "useless"? - Whether they want to see a preview list first.

  • Prefer showing a preview (ids, titles, due dates) before executing bulk changes.

Do not:

  • Log the user out spontaneously (auth logout) without a request.
  • Perform repeated, aggressive retries on failing API calls.

8. Error Handling & Recovery

Common error categories and recommended behavior:

  • Authentication errors (e.g. 401, invalid token):

- Explain that authentication may have expired. - Suggest rerunning:

    dida auth login
    dida auth status
  • Network / connectivity errors:

- Tell the user that the error may be temporary or network-related. - Suggest they check their connection and try again later.

  • Not found / invalid IDs:

- Inform the user that the project or task could not be found. - Show any relevant context (e.g. available projects) and ask them to re-check the ID or name.

  • Ambiguous selections:

- If multiple matching items are found (project or task), show them and ask the user which one they intend.

In all cases, prefer clear explanations and minimal retries over silent failure.


9. Style Notes for Agents

  • Use commands from this skill as your primary reference for Dida CLI usage.
  • When the user asks for "what happened" or "what did you do", respond with:

- A short description of the commands you ran (in natural language). - A short summary of their effects (e.g. "Created task 'Buy milk' in project 'Inbox'").

If existing documentation (such as the package README) disagrees with this skill, follow this skill’s safer, more conservative interpretation unless the user explicitly asks otherwise.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.03%
按下载量换算6,262

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills