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

yuque-personal-daily-capture语雀个人日常抓拍

Agent Skill

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

总安装

4,039

周安装

165

GitHub Stars

71

下载量

1,294
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yuque/yuque-plugin --skill yuque-personal-daily-capture

简介

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

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

SKILL.md

Daily Capture — Quick Idea & Note Capture to Yuque

Help the user quickly capture ideas, thoughts, meeting insights, reading annotations, and any fleeting information into their personal Yuque knowledge base with minimal friction.

When to Use

  • User wants to quickly jot down an idea or thought
  • User says "记一下", "帮我记录", "capture this", "写个笔记"
  • User shares a fleeting thought, inspiration, or meeting insight
  • User says "这个想法先记下来", "随手记", "快速记录"

Required MCP Tools

All tools are from the yuque-mcp server:

  • yuque_list_repos — List personal repos to find the capture target
  • yuque_search — (Optional) Find today's capture doc if appending
  • yuque_list_docs — (Optional) Check if today's daily note exists
  • yuque_create_doc — Create a new capture document
  • yuque_update_doc — Append to an existing capture document

Workflow

Step 1: Receive the Capture

The user's input can be:

  • A raw idea or thought (1-2 sentences)
  • A longer note with context
  • A quote or snippet from something they read
  • A meeting insight or action item
  • A mix of the above

Classify the capture type:

TypeIconExample
💡 想法/灵感💡"突然想到可以用 Redis 做缓存"
📝 笔记📝"今天学到 Go 的 context 用法..."
📖 阅读批注📖"这篇文章提到的观点很有意思..."
🎯 待办/行动🎯"记得下周跟进 API 设计评审"
💬 会议灵感💬"会上讨论到的架构方案值得深入..."
🔗 链接/资源🔗"这个工具不错:https://..."

Step 2: Determine Capture Strategy

Two strategies based on user preference:

Strategy A: Daily Note (Default)

Append to today's daily capture document. If it doesn't exist, create one.

Strategy B: Standalone Note

Create a separate document for this capture (for longer or topic-specific notes).

If the user's input is short (< 100 words), default to Strategy A. If longer or clearly a standalone topic, use Strategy B. Ask if unclear.

Step 3A: Daily Note — Append Mode

Check if today's daily note exists:

Tool: yuque_search
Parameters:
  query: "每日捕获 YYYY-MM-DD"
  type: "doc"

If found, append to it:

Tool: yuque_update_doc
Parameters:
  repo_id: "<namespace>"
  doc_id: "<slug>"
  body: "<existing content>\n\n---\n\n### [HH:MM] [类型图标] [简短标题]\n\n[捕获内容]\n"

If not found, create today's daily note:

Tool: yuque_create_doc
Parameters:
  repo_id: "<namespace>"
  title: "📥 每日捕获 YYYY-MM-DD"
  body: "<daily note template with first capture>"
  format: "markdown"

Daily note template:

# 📥 每日捕获 YYYY-MM-DD

> 今日碎片化记录,定期整理归档。

---

### [HH:MM] [类型图标] [简短标题]

[捕获内容]

[标签:#tag1 #tag2]

Step 3B: Standalone Note

Tool: yuque_list_repos
Parameters:
  type: "user"
Tool: yuque_create_doc
Parameters:
  repo_id: "<namespace>"
  title: "[类型图标] [标题]"
  body: "<formatted note>"
  format: "markdown"

Step 4: Confirm

For daily note append:

✅ 已捕获!

[类型图标] **[简短标题]** → 已追加到「📥 每日捕获 YYYY-MM-DD」

💡 今日已捕获 X 条记录。

For standalone note:

✅ 笔记已创建!

📄 **[[类型图标] 标题](文档链接)**
📚 已保存到:「知识库名称」

Guidelines

  • Speed is everything — minimize questions, maximize capture
  • If the user just throws a sentence at you, capture it immediately; don't ask for clarification
  • Auto-generate a short title from the content if the user doesn't provide one
  • Add relevant tags based on content analysis (e.g., #技术, #产品, #灵感)
  • Keep the formatting lightweight — this is a quick capture, not a polished document
  • Default to daily note append mode for short captures
  • Suggest periodic review: "你的每日捕获已经积累了不少,要整理一下吗?" (link to note-refine skill)
  • Default language is Chinese

Error Handling

SituationAction
No capture repo foundAsk user which repo to use, or suggest creating a "随手记" repo
yuque_update_doc failsFall back to creating a new standalone note
yuque_search can't find today's noteCreate a new daily note document
User input is ambiguousCapture as-is with 📝 type; don't over-classify
Very long input (>500 words)Switch to standalone note strategy automatically

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.7%
按下载量换算462

Claude

31.41%
按下载量换算406

Cursor

17.85%
按下载量换算231

Gemini CLI

8.63%
按下载量换算112

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills