TopRank Skills

Official OpenClaw rules 36%

todo

Task and project management with priority-based organization and context-aware surfacing. Use when user mentions tasks, to-do lists, projects, commitments, deadlines, or prioritization. Captures tasks from any context, organizes by urgency/importance, surfaces work based on context and energy, tracks commitments to others, and maintains weekly review system. All data stored locally.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 todo 技能。 若已安装,则直接安装 todo 技能。

Overview

Skill Key
agenticio/todo
Author
agenticio
Source Repo
openclaw/skills
Version
-
Source Path
skills/agenticio/todo
Latest Commit SHA
aa85122194323c7fd05115a1e33a2d15960d07e0

Extracted Content

SKILL.md excerpt

# Todo

Task and project system. Capture everything, do what matters.

## Critical Privacy & Safety

### Data Storage (CRITICAL)
- **All task data stored locally only**: `memory/todo/`
- **No external task apps** connected
- **No cloud sync** - pure local storage
- **No sharing** of tasks or projects
- User controls all data retention and deletion

### Data Structure
Tasks stored in your local workspace:
- `memory/todo/tasks.json` - All tasks and priorities
- `memory/todo/projects.json` - Project definitions and next actions
- `memory/todo/commitments.json` - Commitments to/from others
- `memory/todo/contexts.json` - Context definitions (energy, location, time)
- `memory/todo/reviews.json` - Weekly review history

## Core Workflows

### Capture Task
```
User: "Call the accountant before Thursday"
→ Use scripts/add_task.py --task "Call accountant" --deadline "2024-03-14" --context phone
→ Extract task, identify deadline, store for later
```

### Prioritize Tasks
```
User: "What should I work on now?"
→ Use scripts/what_next.py --energy high --time 120 --location desk
→ Surface tasks matching current context and energy
```

### Track Commitment
```
User: "I promised Sarah I'd send the report by Friday"
→ Use scripts/add_commitment.py --to "Sarah" --what "Send report" --deadline "2024-03-15"
→ Track commitment with deadline and reminder
```

### Weekly Review
```
User: "Run my weekly review"
→ Use scripts/weekly_review.py
→ Guide through closing completed, updating projects, capturing new items
```

### Close Day
```
User: "Close out my day"
→ Use scripts/close_day.py
→ Review what was done, capture loose ends, set up tomorrow
```

## Module Reference
- **Capture System**: See [references/capture.md](references/capture.md)
- **Priority Framework**: See [references/priority.md](references/priority.md)
- **Context & Energy**: See [references/context.md](references/context.md)
- **Commitments**: See [references/commitments.md](references/commitments.md)
- **Weekly Review*...

Related Claw Skills