npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@dengxuan1/openclaw-taskboard

v0.1.0

Published

Task management for AI agents — create, delegate, track, and report on tasks

Downloads

105

Readme

@dengxuan1/openclaw-taskboard

Task management plugin for OpenClaw agents. Create, delegate, track, and report on tasks with dependency management, automatic unblocking, and progress reporting.

Install

openclaw plugins install @dengxuan1/openclaw-taskboard

Or for bundled installations, add taskboard to your plugins.allow and plugins.entries in ~/.openclaw/openclaw.json.

Tools

| Tool | Description | | ----------------- | ------------------------------------------------------------------------------------- | | task_create | Create a task with title, type, priority, assignee, deadline, and parent task support | | task_list | List and filter tasks by status, assignee, priority, type, or parent | | task_update | Update status, progress, assignee; record errors; auto-block on max retries | | task_dependency | Add dependencies between tasks with cycle detection (DAG validation) | | task_report | Generate progress reports; detect overdue tasks; compare against last report |

Task Types

| Type | Label | | --------------- | ------------------------ | | content-ops | Content Ops / 自媒体运营 | | side-business | Side Business / 副业探索 | | open-source | Open Source / 开源开发 | | other | Other / 其他 |

Features

  • Dependency DAG — Tasks can depend on each other. Cycles are rejected. When a dependency completes, blocked tasks are automatically unblocked.
  • Auto-block on failure — Tasks that fail more than maxRetries (default: 3) are automatically marked as blocked.
  • Progress tracking — 0-100% progress with auto-done when hitting 100%.
  • Overdue detection — Tasks past their deadline are flagged in reports.
  • Smart reportingtask_report compares against lastReportedAt to only show changes since the last report.
  • File locking — Concurrent writes are serialized via process-scoped file locks.
  • Crash safe — Atomic writes via temp-file + rename pattern.

Configuration

In ~/.openclaw/openclaw.json:

{
  "plugins": {
    "entries": {
      "taskboard": {
        "enabled": true,
        "storePath": "~/.openclaw/taskboard"
      }
    }
  }
}

| Option | Default | Description | | ----------- | ----------------------- | ---------------------------- | | storePath | ~/.openclaw/taskboard | Directory to store task data |

Data Model

Tasks are stored as JSON in {storePath}/tasks.json:

{
  id: string;           // UUID-based (task-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)
  title: string;
  description: string;
  type: TaskType;
  status: "pending" | "assigned" | "in_progress" | "review" | "done" | "blocked" | "cancelled";
  priority: "low" | "medium" | "high" | "urgent";
  assignee?: string;    // Agent ID (e.g. "claude", "qwen")
  parentTaskId?: string;
  dependencies: string[];
  deadline?: string;    // YYYY-MM-DD
  progress: number;     // 0-100
  history: Array<{ timestamp, action, by, note? }>;
  retryCount: number;
  maxRetries: number;   // Default: 3
  errorLog: string[];
}

License

MIT