Task Manager

Verified

by Community

Manage a persistent task list in the workspace. Add, complete, prioritize, and review tasks.

taskstodoprojectproductivity

Task Manager Skill

Manage persistent tasks in the workspace.

Add a Task

mkdir -p ~/workspace
echo "- [ ] {task} [priority:{high|medium|low}]" >> ~/workspace/tasks.md

View Tasks

cat ~/workspace/tasks.md

Complete a Task

python3 -c "
lines = open('$HOME/workspace/tasks.md').readlines()
for i, line in enumerate(lines):
    if '{task keyword}' in line:
        lines[i] = line.replace('- [ ]', '- [x]')
        break
open('$HOME/workspace/tasks.md', 'w').writelines(lines)
print('Task completed')
"

Guidelines

  • Keep tasks.md as the single source of truth
  • Group by priority or project
  • Review and clean up completed tasks periodically