openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Todo Manager

管理待办事项。添加、查看、完成、删除待办。

媒体与内容

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 1.2k · 11 current installs · 12 all-time installs

0

安装量(当前) 12

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aeoleader/todo-manager

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

This is an instruction-only todo manager that is internally consistent and lightweight, but its runtime instructions write to a user file (~/.openclaw/workspace/todos.md) even though the manifest declared no config paths — review that local file access before installing.

目的

Name and description (manage/add/list/complete/delete todos) match the instructions. No extra binaries, env vars, or external services are requested, which is proportionate for a simple todo skill.

说明范围

SKILL.md is narrowly scoped to todo commands and storage. However, it explicitly specifies storing todos at ~/.openclaw/workspace/todos.md. The manifest declared no required config paths, so there is an inconsistency between the metadata and the runtime instructions (the skill will read/write a file in the user's home directory).

安装机制

No install spec and no code files — instruction-only skills have minimal disk footprint and no install-time code is executed.

证书

The skill requests no environment variables or credentials, which is appropriate. The only resource it uses is a local file path for storage; that usage is reasonable for a todo app but should have been declared in required config paths.

持久

always is false and the skill does not request elevated or cross-skill privileges. It will persist data to a single user-owned file (as described), which is expected behavior for a todo manager.

综合结论

This skill appears lightweight and does what it says, but note that SKILL.md instructs the agent to read/write ~/.openclaw/workspace/todos.md even though the package metadata lists no config paths. Before installing: (1) decide whether you’re comfortable letting the agent write a file in your home directory; (2) if you prefer, create or move the file to a sandboxed location and confirm the agent uses that path; (3) because the skill source is …

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Todo Manager」。简介:管理待办事项。添加、查看、完成、删除待办。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aeoleader/todo-manager/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: todo-manager
description: "管理待办事项。添加、查看、完成、删除待办。"
argument-hint: "[add|list|done|rm] <内容>"
---

# Todo Manager - 待办事项管理

## 功能

### 添加待办
```
/todo add <事项>
/todo + <事项>
```

### 查看待办
```
/todo list
/todo ls
```

### 完成待办
```
/todo done <编号>
/todo <编号> done
```

### 删除待办
```
/todo rm <编号>
```

## 存储

待办文件:`~/.openclaw/workspace/todos.md`

格式:
```markdown
# 待办事项

- [ ] 任务1
- [x] 任务2
- [ ] 任务3

## 已完成
- 任务2 (2026-02-24)
```

## 使用示例

用户:"/todo add 健身训练"
→ 添加待办:健身训练

用户:"/todo list"
→ 显示所有待办

用户:"/todo done 1"
→ 标记第一个待办为完成

---
*Todo Manager Skill*