Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
yuque avatar

Yuque Personal Knowledge Connect

  • 595 installs
  • 74 repo stars
  • Updated February 26, 2026
  • yuque/yuque-plugin

yuque-personal-knowledge-connect is a Claude Code skill that wires personal Yuque documents into a searchable knowledge graph with cross-links and optional knowledge-map pages via yuque-mcp for developers who manage indi

About

yuque-personal-knowledge-connect is version 1.0 skill from yuque/yuque-plugin that discovers relationships across a personal Yuque knowledge base and establishes bidirectional links between related documents. It requires the yuque-mcp server connected with a personal Yuque account token and operates only on individual-owned docs, not team workspaces. Developers reach for yuque-personal-knowledge-connect when personal runbooks, RFCs, and research notes have grown fragmented and need searchable cross-references or knowledge-map visualization. The skill helps agents find related content, propose link gaps, and build a connected documentation network instead of isolated pages.

  • Six-step workflow: anchor doc or topic → search → read → map links → update docs → optional knowledge-map page
  • Uses yuque_search, yuque_get_doc, yuque_list_repos, yuque_list_docs, yuque_update_doc, yuque_create_doc
  • Personal/individual scope only—operates on your own Yuque repos with your token
  • Supports Chinese and English trigger phrases for finding related documents
  • Apache-2.0 licensed Yuque plugin skill paired with yuque-mcp server

Yuque Personal Knowledge Connect by the numbers

  • 595 all-time installs (skills.sh)
  • Ranked #360 of 1,879 Documentation skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/yuque/yuque-plugin --skill yuque-personal-knowledge-connect

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs595
repo stars74
Security audit3 / 3 scanners passed
Last updatedFebruary 26, 2026
Repositoryyuque/yuque-plugin

How do you link related documents in Yuque?

Wire your personal Yuque docs into a connected knowledge graph with search, cross-links, and optional knowledge-map pages via yuque-mcp.

Who is it for?

Developers maintaining a personal Yuque knowledge base who want semantic search, cross-links, and relationship maps across technical notes.

Skip if: Teams needing enterprise Yuque workspace governance or documentation generation without an existing Yuque account and yuque-mcp connection.

When should I use this skill?

The user asks to connect Yuque docs, find related notes, build a knowledge graph, or map relationships in a personal Yuque base.

What you get

Bidirectional Yuque cross-links, a surfaced relationship map, and optional knowledge-map pages across personal documents.

  • Bidirectional document links
  • Related-content discovery results
  • Optional knowledge-map pages

By the numbers

  • Skill version 1.0 under Apache-2.0 license
  • Operates on personal Yuque documents via yuque-mcp integration

Files

SKILL.mdMarkdownGitHub ↗

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

Related skills

How it compares

Use yuque-personal-knowledge-connect over generic note skills when the corpus lives in Yuque and yuque-mcp is already configured.

FAQ

What does yuque-personal-knowledge-connect require to run?

yuque-personal-knowledge-connect requires the yuque-mcp server connected to a Yuque account using a personal token, and operates on individual-owned documents rather than shared team workspaces.

What outputs does yuque-personal-knowledge-connect produce?

yuque-personal-knowledge-connect surfaces related documents, proposes bidirectional links between them, and can generate optional knowledge-map pages that visualize connections across a personal Yuque corpus.

Is Yuque Personal Knowledge Connect safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Documentationpmworkflownotes

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.