From yuque-personal
Captures fleeting ideas with tags into daily Yuque logs, then organizes them into thematic notes. Useful for quick jots via phrases like '记一下' or periodic review.
npx claudepluginhub yuque/yuque-ecosystem --plugin yuque-personalThis skill uses the workspace's default tool permissions.
Capture random thoughts, inspirations, and fragments throughout the day. Periodically organize and merge them into structured thematic notes saved to your Yuque knowledge base.
Captures ideas, thoughts, meeting insights, and notes to personal Yuque knowledge base as daily notes or standalone docs. Triggers on '记一下', 'capture this', '帮我记录'.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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: "你想记录什么?" |