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

yuque-personal-reading-digest语雀个人读书文摘

Agent Skill

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

总安装

4,823

周安装

197

GitHub Stars

71

下载量

1,560
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yuque/yuque-plugin --skill yuque-personal-reading-digest

简介

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

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

SKILL.md

Reading Digest — Document Summarization & Reading Notes

Help the user quickly distill a Yuque document into a structured reading digest with key takeaways, core arguments, and actionable insights.

When to Use

  • User wants a summary of a long Yuque document
  • User says "帮我总结这篇文档", "summarize this doc", "生成阅读摘要"
  • User wants to extract key points from an article for future reference
  • User says "这篇文章讲了什么", "帮我提炼要点"

Required MCP Tools

All tools are from the yuque-mcp server:

  • yuque_search — Find the target document by keyword
  • yuque_get_doc — Read the full document content
  • yuque_list_repos — List personal repos to find the save target
  • yuque_create_doc — Save the reading digest as a new document

Workflow

Step 1: Locate the Document

The user may provide:

  • A document title or keyword
  • A direct Yuque document URL
  • A repo + doc reference

If the user provides a keyword or title:

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

If the user provides a URL or specific reference, extract the repo_id and doc_id directly.

Step 2: Read the Document

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

If the document is very long, note the total length and proceed with the full content.

Step 3: Generate the Reading Digest

Analyze the document and produce a structured digest:

# 📖 阅读摘要:[文档标题]

> **原文**:[文档标题](文档链接)
> **作者**:[作者]
> **阅读日期**:YYYY-MM-DD
> **预计阅读时间**:约 X 分钟

---

## 🎯 一句话总结

[用一句话概括文档的核心观点或目的]

---

## 📌 关键要点

1. **[要点 1]**:[简要说明]
2. **[要点 2]**:[简要说明]
3. **[要点 3]**:[简要说明]
4. **[要点 4]**:[简要说明]
5. **[要点 5]**:[简要说明]

---

## 🧠 核心论点与逻辑

[梳理文档的核心论证逻辑,2-3 段]

---

## 💡 启发与思考

- [这篇文档对我的启发 1]
- [这篇文档对我的启发 2]
- [可以应用到的场景]

---

## 📝 原文金句

> [摘录文档中值得记住的精彩段落 1]

> [摘录文档中值得记住的精彩段落 2]

---

## 🔗 相关延伸

- [可以进一步阅读的方向 1]
- [可以进一步阅读的方向 2]

---

> 本摘要由 AI 助手生成,建议结合原文阅读。

Step 4: Review with User

Present the digest to the user and ask:

  • "摘要是否准确?有需要调整的地方吗?"
  • "要保存到你的语雀知识库吗?"

Step 5: (Optional) Save to Yuque

If the user wants to save:

Tool: yuque_list_repos
Parameters:
  type: "user"

Find or ask for the target repo (often "阅读笔记" or "读书摘要").

Tool: yuque_create_doc
Parameters:
  repo_id: "<namespace>"
  title: "📖 阅读摘要:[原文标题]"
  body: "<formatted digest>"
  format: "markdown"

Step 6: Confirm

✅ 阅读摘要已生成并保存!

📄 **[📖 阅读摘要:原文标题](文档链接)**
📚 已归档到:「知识库名称」

### 摘要概览
- 提炼了 X 个关键要点
- 摘录了 X 条原文金句
- 生成了 X 个延伸阅读方向

Guidelines

  • Preserve the author's original intent — don't distort or over-simplify
  • Key points should be specific and actionable, not vague generalizations
  • Include direct quotes from the original for important claims
  • The "启发与思考" section should be personalized — relate to the user's context if known
  • Default language is Chinese; match the original document's language
  • For very long documents (>5000 words), consider breaking the digest into sections matching the original structure

Error Handling

SituationAction
yuque_search returns no resultsAsk user for the exact document URL or repo/slug
yuque_get_doc fails (404)Document may have been deleted; inform user
yuque_get_doc fails (403)User may lack permission; suggest checking access
Document is very short (<200 words)Generate a brief summary instead of full digest template
Document is non-text (slides, spreadsheet)Inform user this skill works best with text documents

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.32%
按下载量换算567

Claude

31.45%
按下载量换算491

Cursor

17.04%
按下载量换算266

Gemini CLI

8.56%
按下载量换算134

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills