Files
openclaw-skill/skills/task-capture/SKILL.md
Selig 4c966a3ad2 Initial commit: OpenClaw Skill Collection
6 custom skills (assign-task, dispatch-webhook, daily-briefing,
task-capture, qmd-brain, tts-voice) with technical documentation.
Compatible with Claude Code, OpenClaw, Codex CLI, and OpenCode.
2026-03-13 10:58:30 +08:00

65 lines
1.4 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
name: task-capture
description: 快速將使用者說的事情記錄到 TODO.md支援優先級、標籤、截止日。
triggers:
- "記住"
- "記一下"
- "待辦"
- "todo"
- "提醒我"
- "別忘了"
- "加到清單"
tools:
- exec
- memory
---
# Task Capture Skill
## 功能說明
快速捕捉待辦事項,記錄到 `workspace/TODO.md`,支援:
- 優先級標記(🔴 緊急 / 🟡 一般 / 🟢 低優先)
- 標籤(#工作 #個人 #專案
- 截止日期(`due: 2026-02-25`
- 自動分類
## 使用方式
```
使用者:「記一下要 review PR #42明天下班前」
Agent 記錄:- [ ] 🟡 review PR #42 due:2026-02-21 #工作
回覆:「✅ 已記錄review PR #42截止明天下班前
```
## TODO.md 格式
```markdown
# TODO
## 🔴 緊急
- [ ] 修復 production 的 nginx 錯誤 due:2026-02-20 #緊急
## 🟡 進行中
- [ ] 完成 CLIProxyAPI 文件 due:2026-02-22 #工作
- [ ] 回覆客戶報告 #工作
## 🟢 稍後
- [ ] 整理 skill 庫 #個人
- [ ] 看 OpenClaw 官方文件 #學習
## ✅ 已完成
- [x] 安裝 OpenClaw ✅ 2026-02-19
- [x] 設定 Telegram Bot ✅ 2026-02-19
```
## 相關指令
```
使用者:「顯示我的待辦」 → 列出 TODO.md 未完成項目
使用者:「完成第一項」 → 將第一項標為 [x]
使用者:「清除已完成」 → 移除 [x] 項目
```