Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

devonthinkdevonthink 搜索

Agent Skill

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

总安装

367

周安装

15

GitHub Stars

14

下载量

118
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dvcrn/devonthink-cli --skill devonthink

简介

用于查找、检索和筛选相关信息,适合在知识库管理或文档溯源场景中快速定位内容。

  • 适用于需要从 DEVONthink 数据库中提取结构化处理结果的场景。
  • 通过 GitHub 安装,具体命令需参考 references/commands.md 和 examples.md。
  • 安装前应确认权限范围、维护状态及是否会触发文件读写或网络请求。
  • 建议使用只读模式先验证标识符,再执行写操作以减少误操作风险。

SKILL.md

DEVONthink CLI

Overview

Use this skill to run the DEVONthink CLI safely and produce exact commands for the current command surface.

Prefer read-only commands first when verifying identifiers or database context. Use JSON output when the result will be piped to other tools or parsed by code.

Read references/commands.md for the supported command surface. Read references/examples.md for concrete examples.

Exact Command Surface

Use these exact command names. Do not invent get_* variants unless they are listed here.

tools
schema <tool>
is_running
open_databases
current_database
selected_records
search [query]
lookup_record [lookupType]
list_group_content [uuid]
record_properties [uuid]
record_content [uuid]
record_by_identifier [uuid]
create_record [name]
create_from_url [url]
rename_record [uuid]
move_record [uuid]
delete_record [uuid]
add_tags [uuid]
remove_tags [uuid]
update_record_content [uuid]
set_record_properties [uuid]
classify [recordUuid]
compare [recordUuid]
replicate_record [uuid]
duplicate_record [uuid]
convert_record [uuid]
check_ai_health
ask_ai_about_documents [question]
create_summary_document
ai_tool_documentation [toolName]

Runbook

  1. Confirm DEVONthink is running with devonthink is_running.
  2. Confirm the active or target database with devonthink current_database or devonthink open_databases.
  3. Resolve record UUIDs with read-only commands before write operations.
  4. Prefer --json for automation and downstream parsing.
  5. Before mutating records, verify the target with record_properties, record_by_identifier, search, or lookup_record.
  6. Use schema <tool> when you need exact parameter names.

Installation And Agent Setup

Install from npm:

npm install -g devonthink

After installation, you can use any equivalent executable:

devonthink --help
dt --help
dt-cli --help

For Claude Desktop, add dvcrn/devonthink-cli as a marketplace plugin, then install the devonthink plugin from that marketplace.

For Claude Code, the equivalent commands are:

claude plugins marketplace add dvcrn/devonthink-cli
claude plugins install devonthink@dvcrn-devonthink-cli --scope user

For npx skills, run:

npx skills add dvcrn/devonthink-cli

Output Strategy

Use default human-readable output for interactive use. Use --json for automation and downstream parsing.

devonthink search invoice --json
devonthink record_properties <uuid> --json

Positional Arguments

Many tools support the first obvious required argument positionally.

devonthink search invoice
devonthink record_content <uuid>
devonthink record_properties <uuid>
devonthink rename_record <uuid> --new-name "Renamed note"
devonthink create_record "New Note" --type markdown --content "Hello"
devonthink create_from_url https://example.com --format markdown

Common Tasks

Use these as canonical examples:

# verify DEVONthink is running
devonthink is_running

# list open databases
devonthink open_databases

# inspect the current database
devonthink current_database

# search for records
devonthink search invoice --database-name Test

# get a record by UUID
devonthink record_properties <uuid>

# read record content
devonthink record_content <uuid>

# create a note
devonthink create_record "Meeting Notes" --type markdown --content "# Notes" --database-name Test

# update content
devonthink update_record_content <uuid> --content "Updated body"

# rename a record
devonthink rename_record <uuid> --new-name "Renamed note"

# add tags
devonthink add_tags <uuid> --tags work --tags important

# remove tags
devonthink remove_tags <uuid> --tags old-tag

Safety Checks

Before write operations:

  1. Confirm the target database with current_database or open_databases.
  2. Confirm the target record with record_properties, record_by_identifier, search, or lookup_record.
  3. Confirm the destination group before move_record, duplicate_record, replicate_record, or convert_record.
  4. Prefer UUIDs over names when mutating records.

Notes

  • devonthink, dt, and dt-cli are equivalent and map to the same implementation.
  • schema <tool> prints the exact JSON schema for a tool.
  • tools lists the available command surface.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.56%
按下载量换算43

Claude

31.36%
按下载量换算37

Cursor

18.97%
按下载量换算22

Gemini CLI

9.17%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills