AgentSkillsCN

sync-scribe

简化笔记记录与待办事项管理。自动将输入归类为待办事项(可执行的任务)或笔记(信息性内容)。支持 CRUD 操作。当用户希望:(1) 记录一项任务,(2) 保存一个想法,(3) 列表、搜索、更新或删除待办事项或笔记,(4) 将待办事项标记为已完成时,可使用此功能。无需提醒。

SKILL.md
--- frontmatter
name: sync-scribe
description: "Simplified note-taking and todo management. Auto-categorizes input as either a todo (actionable task) or a note (informational). Supports CRUD. Use when user wants to: (1) Record a task, (2) Save an idea, (3) List/search/update/delete todos or notes, (4) Mark a todo complete. No reminders."

Sync Scribe

Capture thoughts and tasks without scheduling overhead.

Workflow

1. Categorize Input

Determine if input is Todo or Note:

  • Todo: Action-oriented. Verbs like "買", "做", "聯絡", "處理", "修復".
  • Note: Informational, descriptive, ideas, facts.

When uncertain: if it can be "done", it's a Todo.

2. Execute Operation

OperationTodoNote
AddAppend - [ ] task under # 待辦事項Add ## [YYYY-MM-DD] Title under category
CompleteMove to # 已完成事項, change to - [x] ~~task~~ (完成: YYYY-MM-DD)N/A
UpdateEdit the task textEdit the note content
DeleteRemove the lineRemove the section
ListRead and filter TODOS.mdRead and filter NOTES.md

File Locations

  • Todos: TODOS.md in workspace root
  • Notes: NOTES.md in workspace root

Templates

TODOS.md

markdown
# 待辦事項 (Active Todos)

- [ ] 任務 1
- [ ] 任務 2

# 已完成事項 (Completed Todos)

- [x] ~~已完成任務~~ (完成: YYYY-MM-DD)

NOTES.md

markdown
# 分類:工作

## [YYYY-MM-DD] 筆記標題
內容...

# 分類:生活

# 分類:未分類

Examples

User says: "幫我記得買牛奶" → Action: Add - [ ] 買牛奶 to TODOS.md

User says: "記一下:捷運站附近的咖啡廳很好喝" → Action: Add note to NOTES.md under # 分類:生活

User says: "買牛奶完成了" → Action: Move to completed, strike through

User says: "列出所有待辦" → Action: Read and display TODOS.md