← Back to Skills Marketplace
tanklive

进度任务管理

by Tanklive · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
14
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install task-board
Description
进度任务管理。记录、追踪、汇报任务进度。触发条件:(1) 用户派任务,(2) 用户说'查看任务'/'任务进度',(3) 用户说'添加任务:xxx',(4) 任务状态变更时自动更新。
README (SKILL.md)

📋 进度任务管理

管理用户的任务清单,追踪进度,随时汇报。

核心文件

  • TASKS.md — 任务看板(工作区根目录)
  • memory/YYYY-MM-DD.md — 每日记录(任务变更记录在此)

任务生命周期

待办(todo) → 进行中(doing) → 已完成(done)
                  ↓
              阻塞(blocked) → 进行中(doing) → 已完成(done)
                  ↓
              已取消(cancelled)

TASKS.md 格式

# 📋 任务看板

## 进行中
| ID | 任务 | 开始时间 | 进度 | 备注 |
|----|------|----------|------|------|
| T001 | 示例任务 | 05-09 10:00 | 60% | 搜集资料中 |

## 待办
| ID | 任务 | 优先级 | 添加时间 |
|----|------|--------|----------|
| T002 | 另一个任务 | 🔴高 | 05-09 |

## 阻塞
| ID | 任务 | 阻塞原因 | 等待中 |
|----|------|----------|--------|
| T003 | 示例 | 等用户确认方案 | 用户回复 |

## 已完成
| ID | 任务 | 完成时间 | 耗时 |
|----|------|----------|------|
| T000 | 建立任务看板 | 05-09 | 5min |

## 已取消
| ID | 任务 | 取消时间 | 原因 |
|----|------|----------|------|

---
> 💡 命令:「查看任务」「任务进度」「添加任务:xxx」「完成任务 Txxx」「取消任务 Txxx」

触发规则

用户说"添加任务:xxx" 或 给我一个明确的任务

  1. 生成任务 ID(T + 三位数递增)
  2. 写入 TASKS.md「待办」或「进行中」
  3. 如果任务明确且可以立即开始,直接放「进行中」
  4. 记录到 memory/今天.md

用户说"查看任务" 或 "任务进度"

  1. 读取 TASKS.md
  2. 汇报:进行中几个、待办几个、阻塞几个
  3. 列出重点任务的最新进展

任务推进时(工作中主动更新)

  1. 更新 TASKS.md 中的进度百分比和备注
  2. 记录关键节点到 memory/今天.md

用户说"完成任务 Txxx"

  1. 从「进行中」移到「已完成」
  2. 记录完成时间和耗时
  3. 更新 memory/今天.md

用户说"取消任务 Txxx"

  1. 从当前状态移到「已取消」
  2. 记录取消原因

任务 ID 规则

  • 格式:T + 三位数字(T001, T002, ...)
  • 全局递增,不重复
  • 读取现有 TASKS.md 中最大的 ID,+1

优先级标记

  • 🔴 高 — 紧急重要,优先处理
  • 🟡 中 — 重要但不紧急
  • 🟢 低 — 有空再做

汇报格式(用户查进度时)

📋 任务汇报

🔄 进行中(2个):
  • T001 对比分析 60% — 搜集中...
  • T005 写文档 20% — 刚开始

📝 待办(1个):
  • T003 优化配置 🟡中

🚧 阻塞(1个):
  • T004 部署 — 等域名解析

✅ 今日完成(3个):
  • T000 建立看板 | T002 更新系统 | T006 修复bug

与记忆系统联动

  • 任务开始 → 记录到 memory/今天.md
  • 任务完成 → 记录到 memory/今天.md
  • 重要决策/教训 → 记录到 .learnings/
  • 跨天的任务 → 在每天的 memory 中追踪进展

注意事项

  • 保持 TASKS.md 简洁,已完成超过 7 天的移到归档区
  • 进度百分比根据实际判断,不要瞎猜
  • 阻塞的任务要明确写等什么、等谁
  • 复杂任务拆成子步骤写在备注里
Usage Guidance
This skill appears safe for its stated purpose. Before installing, be comfortable with it creating and updating TASKS.md, daily memory files, and .learnings/ entries in your workspace, and review those files if tasks contain private information.
Capability Analysis
Type: OpenClaw Skill Name: task-board Version: 1.0.0 The skill bundle implements a standard task management system that tracks progress using local Markdown files (TASKS.md and memory logs). It contains no code execution, network requests, or attempts to access sensitive system data, and its instructions are strictly focused on organizing and reporting task statuses as described in SKILL.md.
Capability Assessment
Purpose & Capability
The stated purpose is task progress management, and the instructions are aligned with creating, updating, viewing, completing, and cancelling tasks.
Instruction Scope
The skill is marked always-on and can proactively update task progress during work, but the behavior is disclosed and scoped to task tracking.
Install Mechanism
There is no install spec, no code files, no required binaries, and no required environment variables.
Credentials
The skill writes to workspace files such as TASKS.md, memory/YYYY-MM-DD.md, and .learnings/, which is proportionate for task tracking but creates local persistent records.
Persistence & Privilege
The skill stores task history and lessons across days, but it does not request credentials, privileged access, external services, or background workers.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install task-board
  3. After installation, invoke the skill by name or use /task-board
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug task-board
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 进度任务管理?

进度任务管理。记录、追踪、汇报任务进度。触发条件:(1) 用户派任务,(2) 用户说'查看任务'/'任务进度',(3) 用户说'添加任务:xxx',(4) 任务状态变更时自动更新。 It is an AI Agent Skill for Claude Code / OpenClaw, with 14 downloads so far.

How do I install 进度任务管理?

Run "/install task-board" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 进度任务管理 free?

Yes, 进度任务管理 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 进度任务管理 support?

进度任务管理 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 进度任务管理?

It is built and maintained by Tanklive (@tanklive); the current version is v1.0.0.

💬 Comments