yuque-personal-daily-capture

yuque/yuque-plugin · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/yuque/yuque-plugin --skill yuque-personal-daily-capture
0 commentsdiscussion
summary

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

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:

Type Icon Example
💡 想法/灵感 💡 "突然想到可以用 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

Situation Action
No capture repo found Ask user which repo to use, or suggest creating a "随手记" repo
yuque_update_doc fails Fall back to creating a new standalone note
yuque_search can't find today's note Create a new daily note document
User input is ambiguous Capture as-is with 📝 type; don't over-classify
Very long input (>500 words) Switch to standalone note strategy automatically
how to use yuque-personal-daily-capture

How to use yuque-personal-daily-capture on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add yuque-personal-daily-capture
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

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

The skills CLI fetches yuque-personal-daily-capture from GitHub repository yuque/yuque-plugin and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/yuque-personal-daily-capture

Reload or restart Cursor to activate yuque-personal-daily-capture. Access the skill through slash commands (e.g., /yuque-personal-daily-capture) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.425 reviews
  • Shikha Mishra· Dec 28, 2024

    yuque-personal-daily-capture has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Kabir Desai· Dec 4, 2024

    Useful defaults in yuque-personal-daily-capture — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Lucas Jackson· Nov 23, 2024

    I recommend yuque-personal-daily-capture for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Soo Robinson· Nov 11, 2024

    yuque-personal-daily-capture reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Sakura Sanchez· Oct 14, 2024

    yuque-personal-daily-capture reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Rahul Santra· Sep 21, 2024

    Solid pick for teams standardizing on skills: yuque-personal-daily-capture is focused, and the summary matches what you get after install.

  • Dev Lopez· Sep 9, 2024

    yuque-personal-daily-capture fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Dev Flores· Aug 28, 2024

    Registry listing for yuque-personal-daily-capture matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Pratham Ware· Aug 12, 2024

    We added yuque-personal-daily-capture from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Emma Liu· Jul 27, 2024

    yuque-personal-daily-capture has been reliable in day-to-day use. Documentation quality is above average for community skills.

showing 1-10 of 25

1 / 3