Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

task-runner任务运行者

Agent Skill

task-runner 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

45,770

周安装

1,946

GitHub Stars

1

下载量

16,035
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:task-runner(任务运行者)
来源仓库:https://github.com/johstracke/task-runner
安装命令:
openclaw skills install task-runner
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install task-runner

简介

管理和跟踪任务与项目,支持优先级设置、完成状态更新及跨会话导出功能。

  • 适用于个人或团队协作中持续跟进项目进度与任务分配场景。
  • 通过 clawhub 安装并使用 openclaw skills install task-runner 命令部署。
  • 需合理配置任务字段与过滤规则以提高管理效率。
  • 导出功能可能涉及敏感信息,请谨慎选择共享范围。

SKILL.md

name
task-runner
description
Manage tasks and projects across sessions with persistent task tracking. Use when you need to organize work, track progress, and maintain todo lists that persist between conversations. Features: add tasks with projects and priorities, list pending/completed tasks, mark tasks complete, export projects to markdown. Security: file exports are restricted to safe directories only (workspace, home, /tmp). Perfect for multi-session projects, experiment tracking, and maintaining productivity.

Task Runner

Manage tasks and projects across sessions with persistent tracking.

Quick Start

Add a task

task_runner.py add "<description>" [project] [priority]

List all tasks

task_runner.py list

List tasks for a specific project

task_runner.py list "<project>"

Complete a task

task_runner.py complete <task_id>

Change task priority

task_runner.py priority <task_id> <low|medium|high>

Export project to markdown

task_runner.py export "<project>" "<output_file>"

Features

  • Persistent storage - Tasks survive session restarts (stored in ~/.openclaw/workspace/tasks_db.json)
  • Project organization - Group tasks by project for better organization
  • Priority levels - low, medium (default), high
  • Status tracking - pending vs completed with timestamps
  • Flexible filtering - View all tasks or filter by project
  • Markdown export - Export projects to clean markdown for sharing

Security

Path Validation (v1.0.1+)

The export function validates output paths to prevent malicious writes:

  • ✅ Allowed: ~/.openclaw/workspace/, /tmp/, and home directory
  • ❌ Blocked: System paths (/etc/, /usr/, /var/, etc.)
  • ❌ Blocked: Sensitive dotfiles (~/.bashrc, ~/.ssh, etc.)

This prevents prompt injection attacks that could attempt to write to system files for privilege escalation.

Task Storage

The task storage is JSON-based and only writes to ~/.openclaw/workspace/tasks_db.json.

Usage Patterns

For multi-session projects

# Add experiment tasks
task_runner.py add "Setup development environment" "project-x" "high"
task_runner.py add "Write initial tests" "project-x" "medium"
task_runner.py add "Document API endpoints" "project-x" "low"

# List project progress
task_runner.py list "project-x"

# Complete tasks as you go
task_runner.py complete 1
task_runner.py complete 2

For autonomous agent workflows

Track your own tasks across sessions:

# Plan experiments
task_runner.py add "Build and publish skill" "income-experiments" "high"
task_runner.py add "Test content pipeline" "income-experiments" "medium"

# Update priorities based on learning
task_runner.py priority 2 "high"

# Export progress reports
task_runner.py export "income-experiments" "./progress-report.md"

For sprint planning

# Plan week's work
task_runner.py.py add "Build feature X" "sprint-5" "high"
task_runner.py.py add "Fix bug Y" "sprint-5" "high"
task_runner.py.py add "Update documentation" "sprint-5" "medium"

# Review progress
task_runner.py list "sprint-5"

# Export for standup
task_runner.py export "sprint-5" "./standup.md"

Task Priorities

PriorityEmojiWhen to Use
high🔴Blocking issues, urgent, must do now
medium🟡Normal work, do soon
low🟢Nice to have, backlog items

Output Format

Task listing shows:

  • Status icon (✅ completed, ⏳ pending)
  • Project name
  • Task ID number
  • Priority emoji
  • Creation date
  • Task description
  • Completion date (if completed)

Export Format

Markdown export includes:

  • Project title with task counts
  • Pending tasks section
  • Completed tasks section (most recent first)
  • Task IDs, priorities, and timestamps

Examples

Managing a coding project

# Setup
task_runner.py add "Clone repository" "my-project" "high"
task_runner.py add "Install dependencies" "my-project" "high"
task_runner.py add "Set up database" "my-project" "medium"

# Track progress
task_runner.py list "my-project"
task_runner.py complete 1
task_runner.py complete 2

# Export for documentation
task_runner.py export "my-project" "./my-project-tasks.md"

Tracking autonomous agent experiments

# Plan experiments
task_runner.py add "Experiment 1: Publish skills" "autonomous-income" "high"
task_runner.py add "Experiment 2: Content automation" "autonomous-income" "medium"
task_runner.py add "Experiment 3: Service MVP" "autonomous-income" "low"

# Work through them
task_runner.py list "autonomous-income"
task_runner.py complete 1

# Adjust based on learning
task_runner.py add "Experiment 2a: Research tools without API keys" "autonomous-income" "high"
task_runner.py priority 2 "low"

Daily task management

# Plan the day
task_runner.py add "Review pull requests" "daily" "high"
task_runner.py add "Write documentation" "daily" "medium"
task_runner.py add "Respond to emails" "daily" "low"

# End-of-day review
task_runner.py list

# Archive completed work
task_runner.py export "daily" "./$(date +%Y-%m-%d)-tasks.md"

Best Practices

  1. Use meaningful project names - income-experiments not ideas
  2. Set priorities consistently - helps with focus
  3. Mark tasks complete promptly - keeps list clean
  4. Export before major changes - backup progress
  5. Review and clean up - archive old projects regularly

Integration with Other Skills

Combine with research-assistant for complete project management:

  • Use research-assistant for notes and knowledge
  • Use task-runner for actionable tasks
  • Export both to create comprehensive project docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.41%
按下载量换算11,771

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills