with one click
daily-capture
// Collect fleeting ideas and thoughts throughout the day, then periodically organize them into structured thematic notes in your Yuque knowledge base. For personal/individual use.
// Collect fleeting ideas and thoughts throughout the day, then periodically organize them into structured thematic notes in your Yuque knowledge base. For personal/individual use.
Analyze documents in your Yuque knowledge base, discover hidden connections between them (similar topics, complementary content), and suggest cross-reference links to build a knowledge network. For personal/individual use.
Extract core insights, golden quotes, and action items from articles, then generate structured reading notes and save them to a specified Yuque knowledge base. For personal/individual use.
Generate summaries of any Yuque document or knowledge base at different granularity levels — one-liner, key points, or detailed summary. For personal/individual use.
Scan a Yuque knowledge base to find stale or potentially outdated documents, analyze their relevance, and generate a maintenance report with update or archive recommendations. For personal/individual use.
Analyze a user's writing style from their Yuque documents — vocabulary habits, sentence patterns, tone characteristics — and generate a style profile that can be used to maintain consistent voice when writing new content. For personal/individual use.
Generate comprehensive monthly knowledge management reports by analyzing team Yuque activity data including group stats, member contributions, knowledge base health, and document trends. For team use — requires team Token with statistic:read permission.
| name | daily-capture |
| description | Collect fleeting ideas and thoughts throughout the day, then periodically organize them into structured thematic notes in your Yuque knowledge base. For personal/individual use. |
| license | Apache-2.0 |
| compatibility | Requires yuque-mcp server connected to a Yuque account with personal Token |
| metadata | {"author":"chen201724","version":"1.0"} |
Capture random thoughts, inspirations, and fragments throughout the day. Periodically organize and merge them into structured thematic notes saved to your Yuque knowledge base.
All tools are from the yuque-mcp server:
yuque_search — Search for existing capture documents or thematic notesyuque_get_doc — Read existing capture log or thematic notesyuque_create_doc — Create new capture log or thematic notesyuque_update_doc — Append to capture log or update thematic notesyuque_list_books — List knowledge bases to find the target repoWhen the user shares a fleeting idea or thought:
Accept the user's input as-is. It can be:
Assign a lightweight tag based on content:
| Tag | When to Use |
|---|---|
| 💡 想法 | Original ideas, hypotheses, "what if" thoughts |
| 📌 待办 | Things to do or follow up on |
| 🔗 参考 | Links, references, things to read later |
| 💬 摘录 | Quotes or snippets from conversations |
| ❓ 问题 | Questions to research or think about |
| 🎯 灵感 | Creative sparks, project ideas |
Find or create a daily capture log document:
Tool: yuque_search
Parameters:
query: "每日碎片 YYYY-MM-DD"
type: "doc"
If no log exists for today, create one:
Tool: yuque_create_doc
Parameters:
repo_id: "<target namespace>"
title: "📝 每日碎片 — YYYY-MM-DD"
body: "<capture log template>"
If the log exists, append the new capture:
Tool: yuque_update_doc
Parameters:
repo_id: "<namespace>"
doc_id: "<slug>"
body: "<existing content + new capture entry>"
Each capture entry format:
### [HH:MM] [Tag] 简短标题
[用户的原始内容]
---
Confirm to the user: "已记录 ✅ — [tag] [简短标题]"
When the user asks to organize their captures, or when there are enough accumulated entries:
Search for recent capture logs:
Tool: yuque_search
Parameters:
query: "每日碎片"
type: "doc"
Fetch the content of recent capture logs (last 7 days or as specified by the user).
Read through all captures and group them by theme:
Present the grouping to the user:
## 📊 碎片整理预览
过去 [N] 天共 [X] 条碎片,归为 [Y] 个主题:
### 主题 1:[主题名称]([N] 条相关)
- [碎片摘要 1]
- [碎片摘要 2]
- [碎片摘要 3]
### 主题 2:[主题名称]([N] 条相关)
- [碎片摘要 1]
- [碎片摘要 2]
### 🔮 未归类([N] 条)
- [碎片摘要]
要把哪些主题合并成正式笔记?
For each theme the user confirms, generate a structured note:
# [主题标题]
> 📅 整理自 YYYY-MM-DD ~ YYYY-MM-DD 的碎片笔记
> 📝 包含 [N] 条相关想法
## 核心想法
[将相关碎片整合成连贯的叙述,保留原始洞察]
## 关键要点
1. **[要点 1]**:[展开说明]
2. **[要点 2]**:[展开说明]
3. **[要点 3]**:[展开说明]
## 待探索
- [ ] [从碎片中提取的待办或待研究项]
- [ ] [延伸问题]
## 原始碎片
<details>
<summary>查看原始记录</summary>
[按时间排列的原始碎片内容]
</details>
Tool: yuque_create_doc
Parameters:
repo_id: "<target namespace>"
title: "[主题标题]"
body: "<structured thematic note>"
Confirm: "主题笔记「[主题标题]」已保存到「[知识库名称]」:[文档链接]"
| Situation | Action |
|---|---|
| Document not found (404) | Create a new capture log for today |
| Permission denied (403) | Tell user they may lack permission to access or edit this document |
| Target repo not found | List user's repos with yuque_list_books and ask them to pick one |
yuque_create_doc fails | Present the capture/note in chat and suggest manual saving |
| No captures found for organization | Inform user: "最近没有找到碎片记录,先随手记几条吧!" |
| Capture content is empty | Ask user: "你想记录什么?" |