Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

yuque-personal-knowledge-connect语雀个人知识连接

Agent Skill

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

总安装

10,306

周安装

421

GitHub Stars

71

下载量

3,301
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yuque/yuque-plugin --skill yuque-personal-knowledge-connect

简介

yuque-personal-knowledge-connect 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位结果。
  • 通过 npx skills add 命令安装,建议参考原始 README 了解具体实现。
  • 使用前需确认权限范围和维护状态,避免不必要的联网或命令执行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Knowledge Connect — Discover Document Relationships & Build Knowledge Networks

Help the user discover hidden connections between their documents, find related content, and build a knowledge network with bidirectional links across their personal Yuque knowledge base.

When to Use

  • User wants to find documents related to a specific topic
  • User says "有哪些相关文档", "find related docs", "帮我建立知识关联"
  • User wants to build a knowledge map or graph for a topic
  • User says "这个主题还有哪些相关的", "帮我串联一下知识", "构建知识图谱"

Required MCP Tools

All tools are from the yuque-mcp server:

  • yuque_search — Search for related documents by keyword
  • yuque_get_doc — Read document content to analyze connections
  • yuque_list_repos — List personal repos to scan
  • yuque_list_docs — List documents in repos for broader discovery
  • yuque_update_doc — Add cross-reference links to documents
  • yuque_create_doc — Create knowledge map documents

Workflow

Step 1: Identify the Starting Point

The user may provide:

  • A specific document to find connections for
  • A topic or keyword to explore
  • A request to map an entire knowledge area

If starting from a document:

Tool: yuque_get_doc
Parameters:
  repo_id: "<namespace>"
  doc_id: "<slug>"

Extract key concepts, terms, and themes from the document.

Step 2: Discover Related Documents

Search for related content using extracted keywords:

Tool: yuque_search
Parameters:
  query: "<keyword 1>"
  type: "doc"

Repeat with different keywords to cast a wider net. Use:

  • Direct topic keywords
  • Synonyms and related terms
  • Key people or project names mentioned
  • Technical terms and concepts

Also scan repos for broader discovery:

Tool: yuque_list_docs
Parameters:
  namespace: "<repo_namespace>"

Step 3: Read and Analyze Connections

For each potentially related document (top 5-10):

Tool: yuque_get_doc
Parameters:
  repo_id: "<namespace>"
  doc_id: "<slug>"

Analyze the relationship type:

RelationshipDescriptionExample
🔗 直接相关Same topic, different angle两篇都讲微服务架构
🧩 互补Fills gaps in each other一篇讲设计,一篇讲实现
📚 前置/后续Sequential knowledge入门篇 → 进阶篇
🔀 交叉引用Shared concepts across topics都提到了 Redis 缓存策略
⚡ 矛盾/对比Conflicting viewpoints两篇对同一问题有不同方案

Step 4: Build the Knowledge Map

Present the discovered connections:

# 🗺️ 知识关联图:[主题/文档标题]

> 基于「[起始文档]」发现的知识网络
> 扫描范围:X 个知识库,XX 篇文档
> 生成时间:YYYY-MM-DD

---

## 🎯 中心节点

**[起始文档标题](链接)**
- 知识库:[库名]
- 核心概念:[概念1]、[概念2]、[概念3]

---

## 🔗 关联文档

### 直接相关

| 文档 | 知识库 | 关联类型 | 关联说明 |
|------|--------|----------|----------|
| [标题](链接) | [库名] | 🔗 直接相关 | [为什么相关] |
| [标题](链接) | [库名] | 🧩 互补 | [互补点说明] |

### 延伸阅读

| 文档 | 知识库 | 关联类型 | 关联说明 |
|------|--------|----------|----------|
| [标题](链接) | [库名] | 📚 前置知识 | [说明] |
| [标题](链接) | [库名] | 🔀 交叉引用 | [共同概念] |

---

## 🧠 知识网络

[中心文档] ├── 🔗 [直接相关文档 1] │ └── 🔀 [交叉引用文档 A] ├── 🧩 [互补文档 2] ├── 📚 [前置文档 3] │ └── 📚 [更前置文档 B] └── ⚡ [对比文档 4]

---

## 💡 发现与建议

- **知识聚类**:[发现的知识聚类模式]
- **知识缺口**:[发现缺少的关联文档或主题]
- **建议行动**:
  1. [建议创建的文档或补充的内容]
  2. [建议建立的新关联]

---

> 本知识图谱由 AI 助手自动生成,关联关系基于内容分析。

Step 5: (Optional) Add Cross-References

If the user agrees, add "相关文档" sections to the connected documents:

Tool: yuque_update_doc
Parameters:
  repo_id: "<namespace>"
  doc_id: "<slug>"
  body: "<original content>\n\n---\n\n## 🔗 相关文档\n\n- [相关文档 1](链接) — [关联说明]\n- [相关文档 2](链接) — [关联说明]\n"

Ask before modifying any existing document:

  • "要在这些文档中添加相互引用链接吗?"

Step 6: (Optional) Save Knowledge Map

Tool: yuque_create_doc
Parameters:
  repo_id: "<namespace>"
  title: "🗺️ 知识图谱:[主题]"
  body: "<knowledge map content>"
  format: "markdown"

Step 7: Confirm

✅ 知识关联分析完成!

🗺️ **发现 X 篇相关文档,建立了 X 个关联**

### 关联概览
- 🔗 直接相关:X 篇
- 🧩 互补文档:X 篇
- 📚 前置/后续:X 篇
- 🔀 交叉引用:X 篇

💡 建议:[最重要的一条建议]

Guidelines

  • Start broad, then narrow — search with multiple keywords to find unexpected connections
  • Quality over quantity — 5 strong connections are better than 20 weak ones
  • Explain why documents are related, not just that they are
  • Always ask before modifying existing documents (adding cross-references)
  • The knowledge map should be actionable — include specific suggestions for strengthening the knowledge network
  • Identify knowledge gaps — what's missing is as valuable as what's connected
  • For large knowledge bases, focus on one topic area at a time
  • Default language is Chinese

Error Handling

SituationAction
yuque_search returns few resultsBroaden keywords; try synonyms and related terms
Starting document has no clear connectionsSuggest the document may be on a new topic; offer to search broader
Too many connections found (>15)Prioritize by relevance strength; group into clusters
yuque_update_doc fails when adding linksSkip that document; note it in the report
User's knowledge base is very smallAcknowledge limited scope; suggest topics to write about to build the network

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.15%
按下载量换算1,094

Claude

31.59%
按下载量换算1,043

Cursor

18.04%
按下载量换算596

Gemini CLI

8.48%
按下载量换算280

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills