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

@ntindle/openclaw-tasks

v0.1.1

Published

Persistent task and plan tracking plugin for OpenClaw

Downloads

164

Readme

@ntindle/openclaw-tasks

Persistent task and plan tracking plugin for OpenClaw.

Features

  • Native tools: task_create, task_update, task_list, task_get
  • File-based storage: Tasks survive context compaction in tasks/{project}.json
  • Plan tracking: Markdown plans in plans/{project}.md
  • Cascading unblocks: When a blocker completes, blocked tasks auto-unblock
  • Auto-inject: Active tasks summary injected into session context on startup

Installation

# From npm
openclaw plugins install @ntindle/openclaw-tasks

# From GitHub
openclaw plugins install ntindle/openclaw-tasks

Usage

Once installed, the plugin provides these tools to the agent:

task_create

Create a new task in a project. Creates the project if it doesn't exist.

task_create(project: "my-project", subject: "Build the thing")
task_create(project: "my-project", subject: "Deploy", blockedBy: ["task-001"])

task_update

Update a task's status or notes. Handles cascading unblocks automatically.

task_update(project: "my-project", taskId: "task-001", status: "completed")
task_update(project: "my-project", taskId: "task-002", notes: "In progress...")

task_list

List tasks for a project or all active projects.

task_list()                           # All active projects
task_list(project: "my-project")      # Specific project
task_list(status: "pending")          # Filter by status

task_get

Get details of a specific task.

task_get(project: "my-project", taskId: "task-001")

File Format

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

{
  "project": "my-project",
  "created": "2026-02-19T20:00:00.000Z",
  "updated": "2026-02-19T21:00:00.000Z",
  "tasks": [
    {
      "id": "task-001",
      "subject": "Build the thing",
      "status": "completed",
      "created": "2026-02-19T20:00:00.000Z",
      "updated": "2026-02-19T21:00:00.000Z",
      "blockedBy": [],
      "notes": ""
    }
  ]
}

Plans are stored as Markdown in plans/{project}.md.

Development

# Install dependencies
bun install

# Run tests
bun test

# Release (patch version)
npm run release

# Release minor/major
npm run release:minor
npm run release:major

See docs/RELEASING.md for detailed release instructions.

License

MIT